hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/include/linux/gpio/machine.h
....@@ -6,31 +6,38 @@
66 #include <linux/list.h>
77
88 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),
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),
15
+ GPIO_PULL_UP = (1 << 4),
16
+ GPIO_PULL_DOWN = (1 << 5),
17
+
18
+ GPIO_LOOKUP_FLAGS_DEFAULT = GPIO_ACTIVE_HIGH | GPIO_PERSISTENT,
1519 };
1620
1721 /**
1822 * 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
23
+ * @key: either the name of the chip the GPIO belongs to, or the GPIO line name
24
+ * Note that GPIO line names are not guaranteed to be globally unique,
25
+ * so this will use the first match found!
26
+ * @chip_hwnum: hardware number (i.e. relative to the chip) of the GPIO, or
27
+ * U16_MAX to indicate that @key is a GPIO line name
2128 * @con_id: name of the GPIO from the device's point of view
2229 * @idx: index of the GPIO in case several GPIOs share the same name
23
- * @flags: mask of GPIO_* values
30
+ * @flags: bitmask of gpio_lookup_flags GPIO_* values
2431 *
2532 * gpiod_lookup is a lookup table for associating GPIOs to specific devices and
2633 * functions using platform data.
2734 */
2835 struct gpiod_lookup {
29
- const char *chip_label;
36
+ const char *key;
3037 u16 chip_hwnum;
3138 const char *con_id;
3239 unsigned int idx;
33
- enum gpio_lookup_flags flags;
40
+ unsigned long flags;
3441 };
3542
3643 struct gpiod_lookup_table {
....@@ -44,7 +51,7 @@
4451 * @chip_label: name of the chip the GPIO belongs to
4552 * @chip_hwnum: hardware number (i.e. relative to the chip) of the GPIO
4653 * @line_name: consumer name for the hogged line
47
- * @lflags: mask of GPIO lookup flags
54
+ * @lflags: bitmask of gpio_lookup_flags GPIO_* values
4855 * @dflags: GPIO flags used to specify the direction and value
4956 */
5057 struct gpiod_hog {
....@@ -52,24 +59,24 @@
5259 const char *chip_label;
5360 u16 chip_hwnum;
5461 const char *line_name;
55
- enum gpio_lookup_flags lflags;
62
+ unsigned long lflags;
5663 int dflags;
5764 };
5865
5966 /*
6067 * Simple definition of a single GPIO under a con_id
6168 */
62
-#define GPIO_LOOKUP(_chip_label, _chip_hwnum, _con_id, _flags) \
63
- GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, 0, _flags)
69
+#define GPIO_LOOKUP(_key, _chip_hwnum, _con_id, _flags) \
70
+ GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, 0, _flags)
6471
6572 /*
6673 * Use this macro if you need to have several GPIOs under the same con_id.
6774 * Each GPIO needs to use a different index and can be accessed using
6875 * gpiod_get_index()
6976 */
70
-#define GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, _idx, _flags) \
77
+#define GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, _idx, _flags) \
7178 { \
72
- .chip_label = _chip_label, \
79
+ .key = _key, \
7380 .chip_hwnum = _chip_hwnum, \
7481 .con_id = _con_id, \
7582 .idx = _idx, \
....@@ -93,7 +100,7 @@
93100 void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n);
94101 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table);
95102 void gpiod_add_hogs(struct gpiod_hog *hogs);
96
-#else
103
+#else /* ! CONFIG_GPIOLIB */
97104 static inline
98105 void gpiod_add_lookup_table(struct gpiod_lookup_table *table) {}
99106 static inline
....@@ -101,6 +108,6 @@
101108 static inline
102109 void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) {}
103110 static inline void gpiod_add_hogs(struct gpiod_hog *hogs) {}
104
-#endif
111
+#endif /* CONFIG_GPIOLIB */
105112
106113 #endif /* __LINUX_GPIO_MACHINE_H */