blob: 78901ecd2f957a0ca171ac980cb77b7166a2f047 [file] [log] [blame]
Ville Syrjalaad8dc962008-02-06 01:39:01 -08001/*
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 Walleije0fc62a2017-09-26 20:27:09 +020013struct gpio_desc;
14
Ville Syrjalaad8dc962008-02-06 01:39:01 -080015/**
16 * struct w1_gpio_platform_data - Platform-dependent data for w1-gpio
Ville Syrjalaad8dc962008-02-06 01:39:01 -080017 */
18struct w1_gpio_platform_data {
Linus Walleije0fc62a2017-09-26 20:27:09 +020019 struct gpio_desc *gpiod;
20 struct gpio_desc *pullup_gpiod;
Daniel Mackc8a06c12009-06-17 16:28:15 -070021 void (*enable_external_pullup)(int enable);
Evgeny Boger3089a4c2014-01-23 15:56:18 -080022 unsigned int pullup_duration;
Ville Syrjalaad8dc962008-02-06 01:39:01 -080023};
24
25#endif /* _LINUX_W1_GPIO_H */