1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_GPIO_MACHINE_H
3 #define __LINUX_GPIO_MACHINE_H
5 #include <linux/types.h>
6 #include <linux/list.h>
8 enum gpio_lookup_flags
{
9 GPIO_ACTIVE_HIGH
= (0 << 0),
10 GPIO_ACTIVE_LOW
= (1 << 0),
11 GPIO_OPEN_DRAIN
= (1 << 1),
12 GPIO_OPEN_SOURCE
= (1 << 2),
13 GPIO_PERSISTENT
= (0 << 3),
14 GPIO_TRANSITORY
= (1 << 3),
18 * struct gpiod_lookup - lookup table
19 * @chip_label: name of the chip the GPIO belongs to
20 * @chip_hwnum: hardware number (i.e. relative to the chip) of the GPIO
21 * @con_id: name of the GPIO from the device's point of view
22 * @idx: index of the GPIO in case several GPIOs share the same name
23 * @flags: mask of GPIO_* values
25 * gpiod_lookup is a lookup table for associating GPIOs to specific devices and
26 * functions using platform data.
29 const char *chip_label
;
33 enum gpio_lookup_flags flags
;
36 struct gpiod_lookup_table
{
37 struct list_head list
;
39 struct gpiod_lookup table
[];
43 * Simple definition of a single GPIO under a con_id
45 #define GPIO_LOOKUP(_chip_label, _chip_hwnum, _con_id, _flags) \
46 GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, 0, _flags)
49 * Use this macro if you need to have several GPIOs under the same con_id.
50 * Each GPIO needs to use a different index and can be accessed using
53 #define GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, _idx, _flags) \
55 .chip_label = _chip_label, \
56 .chip_hwnum = _chip_hwnum, \
63 void gpiod_add_lookup_table(struct gpiod_lookup_table
*table
);
64 void gpiod_add_lookup_tables(struct gpiod_lookup_table
**tables
, size_t n
);
65 void gpiod_remove_lookup_table(struct gpiod_lookup_table
*table
);
68 void gpiod_add_lookup_table(struct gpiod_lookup_table
*table
) {}
70 void gpiod_add_lookup_tables(struct gpiod_lookup_table
**tables
, size_t n
) {}
72 void gpiod_remove_lookup_table(struct gpiod_lookup_table
*table
) {}
75 #endif /* __LINUX_GPIO_MACHINE_H */