diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-14 20:52:21 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-14 20:52:21 -0500 |
| commit | 4008e6a9bcee2f3b61bb11951de0fb0ed764cb91 (patch) | |
| tree | e7e3202d6d156acb57845a1824c9a8249f288c53 /include/linux/gpio | |
| parent | 6aa2f9441f1ef21f10c41f45e6453b135e9cd736 (diff) | |
| parent | d82e99a6f9b38cb1a044b4cd979bd49fd3f67cd2 (diff) | |
Merge branch 'i2c/for-4.15' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull i2c updates from Wolfram Sang:
"This contains two bigger than usual tree-wide changes this time. They
all have proper acks, caused no merge conflicts in linux-next where
they have been for a while. They are namely:
- to-gpiod conversion of the i2c-gpio driver and its users (touching
arch/* and drivers/mfd/*)
- adding a sbs-manager based on I2C core updates to SMBus alerts
(touching drivers/power/*)
Other notable changes:
- i2c_boardinfo can now carry a dev_name to be used when the device
is created. This is because some devices in ACPI world need fixed
names to find the regulators.
- the designware driver got a long discussed overhaul of its PM
handling. img-scb and davinci got PM support, too.
- at24 driver has way better OF support. And it has a new maintainer.
Thanks Bartosz for stepping up!
The rest is regular driver updates and fixes"
* 'i2c/for-4.15' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wsa/linux: (55 commits)
ARM: sa1100: simpad: Correct I2C GPIO offsets
i2c: aspeed: Deassert reset in probe
eeprom: at24: Add OF device ID table
MAINTAINERS: new maintainer for AT24 driver
i2c: nuc900: remove platform_data, too
i2c: thunderx: Remove duplicate NULL check
i2c: taos-evm: Remove duplicate NULL check
i2c: Make i2c_unregister_device() NULL-aware
i2c: xgene-slimpro: Support v2
i2c: mpc: remove useless variable initialization
i2c: omap: Trigger bus recovery in lockup case
i2c: gpio: Add support for named gpios in DT
dt-bindings: i2c: i2c-gpio: Add support for named gpios
i2c: gpio: Local vars in probe
i2c: gpio: Augment all boardfiles to use open drain
i2c: gpio: Enforce open drain through gpiolib
gpio: Make it possible for consumers to enforce open drain
i2c: gpio: Convert to use descriptors
power: supply: sbs-message: fix some code style issues
power: supply: sbs-battery: remove unchecked return var
...
Diffstat (limited to 'include/linux/gpio')
| -rw-r--r-- | include/linux/gpio/consumer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/gpio/consumer.h b/include/linux/gpio/consumer.h index 6d236656aaef..7447d85dbe2f 100644 --- a/include/linux/gpio/consumer.h +++ b/include/linux/gpio/consumer.h | |||
| @@ -29,6 +29,7 @@ struct gpio_descs { | |||
| 29 | #define GPIOD_FLAGS_BIT_DIR_SET BIT(0) | 29 | #define GPIOD_FLAGS_BIT_DIR_SET BIT(0) |
| 30 | #define GPIOD_FLAGS_BIT_DIR_OUT BIT(1) | 30 | #define GPIOD_FLAGS_BIT_DIR_OUT BIT(1) |
| 31 | #define GPIOD_FLAGS_BIT_DIR_VAL BIT(2) | 31 | #define GPIOD_FLAGS_BIT_DIR_VAL BIT(2) |
| 32 | #define GPIOD_FLAGS_BIT_OPEN_DRAIN BIT(3) | ||
| 32 | 33 | ||
| 33 | /** | 34 | /** |
| 34 | * Optional flags that can be passed to one of gpiod_* to configure direction | 35 | * Optional flags that can be passed to one of gpiod_* to configure direction |
| @@ -40,6 +41,11 @@ enum gpiod_flags { | |||
| 40 | GPIOD_OUT_LOW = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT, | 41 | GPIOD_OUT_LOW = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT, |
| 41 | GPIOD_OUT_HIGH = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT | | 42 | GPIOD_OUT_HIGH = GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT | |
| 42 | GPIOD_FLAGS_BIT_DIR_VAL, | 43 | GPIOD_FLAGS_BIT_DIR_VAL, |
| 44 | GPIOD_OUT_LOW_OPEN_DRAIN = GPIOD_FLAGS_BIT_DIR_SET | | ||
| 45 | GPIOD_FLAGS_BIT_DIR_OUT | GPIOD_FLAGS_BIT_OPEN_DRAIN, | ||
| 46 | GPIOD_OUT_HIGH_OPEN_DRAIN = GPIOD_FLAGS_BIT_DIR_SET | | ||
| 47 | GPIOD_FLAGS_BIT_DIR_OUT | GPIOD_FLAGS_BIT_DIR_VAL | | ||
| 48 | GPIOD_FLAGS_BIT_OPEN_DRAIN, | ||
| 43 | }; | 49 | }; |
| 44 | 50 | ||
| 45 | #ifdef CONFIG_GPIOLIB | 51 | #ifdef CONFIG_GPIOLIB |
