Ville Syrjala | ad8dc96 | 2008-02-06 01:39:01 -0800 | [diff] [blame] | 1 | /* |
| 2 | * w1-gpio interface to platform code |
| 3 | * |
| 4 | * Copyright (C) 2007 Ville Syrjala <syrjala@sci.fi> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 |
| 8 | * as published by the Free Software Foundation. |
| 9 | */ |
| 10 | #ifndef _LINUX_W1_GPIO_H |
| 11 | #define _LINUX_W1_GPIO_H |
| 12 | |
Linus Walleij | e0fc62a | 2017-09-26 20:27:09 +0200 | [diff] [blame] | 13 | struct gpio_desc; |
| 14 | |
Ville Syrjala | ad8dc96 | 2008-02-06 01:39:01 -0800 | [diff] [blame] | 15 | /** |
| 16 | * struct w1_gpio_platform_data - Platform-dependent data for w1-gpio |
Ville Syrjala | ad8dc96 | 2008-02-06 01:39:01 -0800 | [diff] [blame] | 17 | */ |
| 18 | struct w1_gpio_platform_data { |
Linus Walleij | e0fc62a | 2017-09-26 20:27:09 +0200 | [diff] [blame] | 19 | struct gpio_desc *gpiod; |
| 20 | struct gpio_desc *pullup_gpiod; |
Daniel Mack | c8a06c1 | 2009-06-17 16:28:15 -0700 | [diff] [blame] | 21 | void (*enable_external_pullup)(int enable); |
Evgeny Boger | 3089a4c | 2014-01-23 15:56:18 -0800 | [diff] [blame] | 22 | unsigned int pullup_duration; |
Ville Syrjala | ad8dc96 | 2008-02-06 01:39:01 -0800 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | #endif /* _LINUX_W1_GPIO_H */ |