Source
212
212
#define FLAG_IS_OUT 1
213
213
#define FLAG_EXPORT 2 /* protected by sysfs_lock */
214
214
#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
215
215
#define FLAG_ACTIVE_LOW 6 /* value has active low */
216
216
#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
217
217
#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
218
218
#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
219
219
#define FLAG_IRQ_IS_ENABLED 10 /* GPIO is connected to an enabled IRQ */
220
220
#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
221
221
#define FLAG_TRANSITORY 12 /* GPIO may lose value in sleep or reset */
222
+
#define FLAG_PULL_UP 13 /* GPIO has pull up enabled */
223
+
#define FLAG_PULL_DOWN 14 /* GPIO has pull down enabled */
222
224
223
225
/* Connection label */
224
226
const char *label;
225
227
/* Name of the GPIO */
226
228
const char *name;
227
229
};
228
230
229
231
int gpiod_request(struct gpio_desc *desc, const char *label);
230
232
void gpiod_free(struct gpio_desc *desc);
231
233
int gpiod_configure_flags(struct gpio_desc *desc, const char *con_id,