diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-01-30 15:25:48 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-01-30 15:25:48 +0000 |
commit | 128bb0967a612a4359d29173f4d11a1716e5bf2a (patch) | |
tree | d4aa6c5844db9d0bef508776694aac64ebe22352 /target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch | |
parent | 9bfca5ce18c5d02afc66a1c61fd85288d7af5d9e (diff) | |
download | upstream-128bb0967a612a4359d29173f4d11a1716e5bf2a.tar.gz upstream-128bb0967a612a4359d29173f4d11a1716e5bf2a.tar.bz2 upstream-128bb0967a612a4359d29173f4d11a1716e5bf2a.zip |
add preliminary support for 2.6.24
SVN-Revision: 10329
Diffstat (limited to 'target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch')
-rw-r--r-- | target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch b/target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch new file mode 100644 index 0000000000..c08239a39c --- /dev/null +++ b/target/linux/adm5120/patches-2.6.24/008-adm5120_uart.patch @@ -0,0 +1,53 @@ +Index: linux-2.6.24/drivers/serial/Makefile +=================================================================== +--- linux-2.6.24.orig/drivers/serial/Makefile ++++ linux-2.6.24/drivers/serial/Makefile +@@ -21,6 +21,7 @@ obj-$(CONFIG_SERIAL_8250_EXAR_ST16C554) + obj-$(CONFIG_SERIAL_8250_HUB6) += 8250_hub6.o + obj-$(CONFIG_SERIAL_8250_MCA) += 8250_mca.o + obj-$(CONFIG_SERIAL_8250_AU1X00) += 8250_au1x00.o ++obj-$(CONFIG_SERIAL_ADM5120) += adm5120_uart.o + obj-$(CONFIG_SERIAL_AMBA_PL010) += amba-pl010.o + obj-$(CONFIG_SERIAL_AMBA_PL011) += amba-pl011.o + obj-$(CONFIG_SERIAL_CLPS711X) += clps711x.o +Index: linux-2.6.24/include/linux/serial_core.h +=================================================================== +--- linux-2.6.24.orig/include/linux/serial_core.h ++++ linux-2.6.24/include/linux/serial_core.h +@@ -150,6 +150,9 @@ + #define PORT_MCF 78 + + ++/* ADMtek ADM5120 SoC */ ++#define PORT_ADM5120 77 ++ + #ifdef __KERNEL__ + + #include <linux/compiler.h> +Index: linux-2.6.24/drivers/serial/Kconfig +=================================================================== +--- linux-2.6.24.orig/drivers/serial/Kconfig ++++ linux-2.6.24/drivers/serial/Kconfig +@@ -280,6 +280,22 @@ config SERIAL_8250_RM9K + + comment "Non-8250 serial port support" + ++config SERIAL_ADM5120 ++ bool "ADM5120 serial port support" ++ depends on MIPS_ADM5120 ++ select SERIAL_CORE ++ select SERIAL_CORE_CONSOLE ++ help ++ Driver for the on chip UARTs on the ADM5120 SoC ++ ++config ADM5120_NR_UARTS ++ int "Maximum number of ADM5120 serial ports" ++ depends on SERIAL_ADM5120 ++ default "2" ++ ---help--- ++ Set this to the number of serial ports you want the driver to ++ support. ++ + config SERIAL_AMBA_PL010 + tristate "ARM AMBA PL010 serial port support" + depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE) |