diff options
author | Mike Baker <mbm@openwrt.org> | 2006-04-21 23:25:46 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-04-21 23:25:46 +0000 |
commit | f7348b25b459c78874f52e1ec622e05d7becd4ff (patch) | |
tree | ccf2b9a36a9cd060fe10185c199430bd340ebb45 /openwrt/target/linux/sibyte-2.6/patches | |
parent | 4a6c17a89b0791ede8844a8d85a40018cb2af174 (diff) | |
download | mtk-20170518-f7348b25b459c78874f52e1ec622e05d7becd4ff.zip mtk-20170518-f7348b25b459c78874f52e1ec622e05d7becd4ff.tar.gz mtk-20170518-f7348b25b459c78874f52e1ec622e05d7becd4ff.tar.bz2 |
preliminary sibyte support
SVN-Revision: 3701
Diffstat (limited to 'openwrt/target/linux/sibyte-2.6/patches')
-rw-r--r-- | openwrt/target/linux/sibyte-2.6/patches/000-DUART.patch | 17 | ||||
-rw-r--r-- | openwrt/target/linux/sibyte-2.6/patches/001-bcm112x_ax.patch | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/openwrt/target/linux/sibyte-2.6/patches/000-DUART.patch b/openwrt/target/linux/sibyte-2.6/patches/000-DUART.patch new file mode 100644 index 0000000..e9cefad --- /dev/null +++ b/openwrt/target/linux/sibyte-2.6/patches/000-DUART.patch @@ -0,0 +1,17 @@ +--- linux-2.6.16.4/drivers/char/Kconfig 2006-04-21 14:38:30.000000000 -0700 ++++ linux-2.6.16.4/drivers/char/Kconfig 2006-04-21 14:39:29.000000000 -0700 +@@ -340,6 +340,14 @@ + To compile this driver as a module, choose M here: the + module will be called istallion. + ++config SIBYTE_SB1250_DUART ++ bool "Support for BCM1xxx onchip DUART" ++ depends on MIPS && SIBYTE_SB1xxx_SOC=y ++ ++config SIBYTE_SB1250_DUART_CONSOLE ++ bool "Console on BCM1xxx DUART" ++ depends on SIBYTE_SB1250_DUART ++ + config AU1000_UART + bool "Enable Au1000 UART Support" + depends on SERIAL_NONSTANDARD && MIPS diff --git a/openwrt/target/linux/sibyte-2.6/patches/001-bcm112x_ax.patch b/openwrt/target/linux/sibyte-2.6/patches/001-bcm112x_ax.patch new file mode 100644 index 0000000..c80d4ae --- /dev/null +++ b/openwrt/target/linux/sibyte-2.6/patches/001-bcm112x_ax.patch @@ -0,0 +1,17 @@ +--- linux-2.6.16.4/arch/mips/sibyte/sb1250/setup.c 2006-04-21 16:16:18.000000000 -0700 ++++ linux-2.6.16.4/arch/mips/sibyte/sb1250/setup.c 2006-04-21 16:15:22.000000000 -0700 +@@ -140,6 +140,14 @@ + periph_rev = 3; + pass_str = "A2"; + break; ++ case K_SYS_REVISION_BCM112x_A3: ++ periph_rev = 3; ++ pass_str = "A3"; ++ break; ++ case K_SYS_REVISION_BCM112x_A4: ++ periph_rev = 3; ++ pass_str = "A4"; ++ break; + default: + prom_printf("Unknown %s rev %x\n", soc_str, soc_pass); + ret = 1; |