2022-03-05 16:17:59 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2021-10-27 13:46:41 +00:00
|
|
|
/*
|
|
|
|
* w1-gpio interface to platform code
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Ville Syrjala <syrjala@sci.fi>
|
|
|
|
*/
|
|
|
|
#ifndef _LINUX_W1_GPIO_H
|
|
|
|
#define _LINUX_W1_GPIO_H
|
|
|
|
|
2022-03-05 16:17:59 +00:00
|
|
|
struct gpio_desc;
|
|
|
|
|
2021-10-27 13:46:41 +00:00
|
|
|
/**
|
|
|
|
* struct w1_gpio_platform_data - Platform-dependent data for w1-gpio
|
|
|
|
*/
|
|
|
|
struct w1_gpio_platform_data {
|
2022-03-05 16:17:59 +00:00
|
|
|
struct gpio_desc *gpiod;
|
|
|
|
struct gpio_desc *pullup_gpiod;
|
2021-10-27 13:46:41 +00:00
|
|
|
void (*enable_external_pullup)(int enable);
|
|
|
|
unsigned int pullup_duration;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _LINUX_W1_GPIO_H */
|