diff options
author | maxims@google.com <maxims@google.com> | 2017-04-17 12:00:30 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-08 11:57:34 -0400 |
commit | 4dc038f3a1c1b88b9b77afdcb1081fc399e5085a (patch) | |
tree | 043237ad99cedda15de3f550e9d7d60ea7d02c24 /drivers/i2c/Makefile | |
parent | 4999bb06cc2f21d3a517a068b183fb11827f49a7 (diff) | |
download | u-boot-4dc038f3a1c1b88b9b77afdcb1081fc399e5085a.tar.gz u-boot-4dc038f3a1c1b88b9b77afdcb1081fc399e5085a.tar.xz u-boot-4dc038f3a1c1b88b9b77afdcb1081fc399e5085a.zip |
aspeed: Add I2C Driver
Add Device Model based I2C driver for ast2500/ast2400 SoCs.
The driver is very limited, it only supports master mode and
synchronous byte-by-byte reads/writes, no DMA or Pool Buffers.
Signed-off-by: Maxim Sloyko <maxims@google.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/i2c/Makefile')
-rw-r--r-- | drivers/i2c/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/Makefile b/drivers/i2c/Makefile index 4872c1d702..d20fe7bb4a 100644 --- a/drivers/i2c/Makefile +++ b/drivers/i2c/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_I2C_MV) += mv_i2c.o obj-$(CONFIG_TSI108_I2C) += tsi108_i2c.o obj-$(CONFIG_SH_SH7734_I2C) += sh_sh7734_i2c.o obj-$(CONFIG_SYS_I2C) += i2c_core.o +obj-$(CONFIG_SYS_I2C_ASPEED) += ast_i2c.o obj-$(CONFIG_SYS_I2C_AT91) += at91_i2c.o obj-$(CONFIG_SYS_I2C_CADENCE) += i2c-cdns.o obj-$(CONFIG_SYS_I2C_DAVINCI) += davinci_i2c.o |