diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-02-17 00:16:22 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-02-21 13:42:52 +0800 |
commit | 98af34f897a6ef5de253806049d033471b02479f (patch) | |
tree | feff8600946694c48cca4eacc26418af62d98b7d /drivers/misc/Makefile | |
parent | 437413962744cc9c80551ca253a20472856551f2 (diff) | |
download | u-boot-imx-98af34f897a6ef5de253806049d033471b02479f.zip u-boot-imx-98af34f897a6ef5de253806049d033471b02479f.tar.gz u-boot-imx-98af34f897a6ef5de253806049d033471b02479f.tar.bz2 |
superio: Add SMSC SIO1007 driver
The SMSC SIO1007 superio chipset integrates two ns16550 compatible
serial ports for legacy applications, 16 GPIO pins and some other
functionalities like power management.
This adds a simple driver to enable serial port and handle GPIO.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/misc/Makefile')
-rw-r--r-- | drivers/misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index e1e3c6b..f2b08ab 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -32,6 +32,7 @@ ifdef CONFIG_DM_I2C obj-$(CONFIG_SANDBOX) += i2c_eeprom_emul.o endif obj-$(CONFIG_SMSC_LPC47M) += smsc_lpc47m.o +obj-$(CONFIG_SMSC_SIO1007) += smsc_sio1007.o obj-$(CONFIG_STATUS_LED) += status_led.o obj-$(CONFIG_SANDBOX) += swap_case.o obj-$(CONFIG_SANDBOX) += syscon_sandbox.o |