diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-04-25 18:53:49 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-04-25 18:53:49 +0000 |
commit | d8c7ac8a8ab8ef8fe2bbb254ca6ca5c83a898068 (patch) | |
tree | d46d96b37404e8e02e20cdc0fc276ca51a297c05 /target/linux/adm8668/patches-3.3/002-adm8668_uart.patch | |
parent | 7f09ba740af1f8f964009114ee10cfd8ad0ec787 (diff) | |
download | upstream-d8c7ac8a8ab8ef8fe2bbb254ca6ca5c83a898068.tar.gz upstream-d8c7ac8a8ab8ef8fe2bbb254ca6ca5c83a898068.tar.bz2 upstream-d8c7ac8a8ab8ef8fe2bbb254ca6ca5c83a898068.zip |
adm8668: add support for 3.3
SVN-Revision: 31480
Diffstat (limited to 'target/linux/adm8668/patches-3.3/002-adm8668_uart.patch')
-rw-r--r-- | target/linux/adm8668/patches-3.3/002-adm8668_uart.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/target/linux/adm8668/patches-3.3/002-adm8668_uart.patch b/target/linux/adm8668/patches-3.3/002-adm8668_uart.patch new file mode 100644 index 0000000000..ed55cbbaa8 --- /dev/null +++ b/target/linux/adm8668/patches-3.3/002-adm8668_uart.patch @@ -0,0 +1,40 @@ +--- a/drivers/tty/serial/Kconfig ++++ b/drivers/tty/serial/Kconfig +@@ -1192,6 +1192,25 @@ config SERIAL_BCM63XX_CONSOLE + If you have enabled the serial port on the bcm63xx CPU + you can make it the console by answering Y to this option. + ++config SERIAL_ADM8668 ++ tristate "ADM8668 serial port support" ++ select SERIAL_CORE ++ depends on ADM8668 ++ help ++ If you have an adm8668 CPU, you can enable its onboard ++ serial port by enabling this options. ++ ++ To compile this driver as a module, choose M here: the ++ module will be called adm8668_uart. ++ ++config SERIAL_ADM8668_CONSOLE ++ bool "Console on adm8668 serial port" ++ depends on SERIAL_ADM8668=y ++ select SERIAL_CORE_CONSOLE ++ help ++ If you have enabled the serial port on the adm8668 CPU ++ you can make it the console by answering Y to this option. ++ + config SERIAL_GRLIB_GAISLER_APBUART + tristate "GRLIB APBUART serial support" + depends on OF && SPARC +--- a/include/linux/serial_core.h ++++ b/include/linux/serial_core.h +@@ -211,6 +211,9 @@ + #define PORT_AR933X 99 + + ++/* ADM8668 UART */ ++#define PORT_ADM8668 100 ++ + #ifdef __KERNEL__ + + #include <linux/compiler.h> |