Skip to content

Commit 0240778

Browse files
committed
add driver for the bouffalolabs bl808 i2c bus
1 parent ebcb860 commit 0240778

File tree

3 files changed

+829
-0
lines changed

3 files changed

+829
-0
lines changed

drivers/i2c/busses/Kconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,6 +1221,16 @@ config I2C_RCAR
12211221
This driver can also be built as a module. If so, the module
12221222
will be called i2c-rcar.
12231223

1224+
config I2C_BL808
1225+
tristate "Bouffalo Lab BL808 I2C driver"
1226+
depends on SOC_BOUFFALOLAB
1227+
help
1228+
This driver provides support for the I2C bus
1229+
hardware found on Bouffalo Lab BL808 SoCs.
1230+
1231+
To compile this driver as a module, choose M here. The
1232+
module will be called i2c-bl808. If unsure, say N.
1233+
12241234
comment "External I2C/SMBus adapter drivers"
12251235

12261236
config I2C_DIOLAN_U2C

drivers/i2c/busses/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ obj-$(CONFIG_I2C_AU1550) += i2c-au1550.o
4747
obj-$(CONFIG_I2C_AXXIA) += i2c-axxia.o
4848
obj-$(CONFIG_I2C_BCM2835) += i2c-bcm2835.o
4949
obj-$(CONFIG_I2C_BCM_IPROC) += i2c-bcm-iproc.o
50+
obj-$(CONFIG_I2C_BL808) += i2c-bl808.o
5051
obj-$(CONFIG_I2C_CADENCE) += i2c-cadence.o
5152
obj-$(CONFIG_I2C_CBUS_GPIO) += i2c-cbus-gpio.o
5253
obj-$(CONFIG_I2C_CPM) += i2c-cpm.o

0 commit comments

Comments
 (0)