make the serial poirt used by prom.c configurable for ifxmips
authorJohn Crispin <john@openwrt.org>
Sat, 28 Jun 2008 22:01:37 +0000 (22:01 +0000)
committerJohn Crispin <john@openwrt.org>
Sat, 28 Jun 2008 22:01:37 +0000 (22:01 +0000)
SVN-Revision: 11606

target/linux/ifxmips/config-2.6.25
target/linux/ifxmips/files/arch/mips/ifxmips/Kconfig
target/linux/ifxmips/files/arch/mips/ifxmips/prom.c

index 080ebbdd6984f379f9253c44b926fa68e7868cd5..f209038c4a11aed59135524519f543d4d0766618 100644 (file)
@@ -84,6 +84,8 @@ CONFIG_IFXMIPS=y
 CONFIG_IFXMIPS_EEPROM=y
 CONFIG_IFXMIPS_MEI=y
 CONFIG_IFXMIPS_MII0=y
+# CONFIG_IFXMIPS_PROM_ASC0 is not set
+CONFIG_IFXMIPS_PROM_ASC1=y
 CONFIG_IFXMIPS_SSC=y
 CONFIG_IFXMIPS_WDT=y
 CONFIG_INITRAMFS_SOURCE=""
index 3e68f7f9b976392a352f85991afe9d34dd35ab4f..d4e96af32e2a8731edc761b0506eb87aef211d9e 100644 (file)
@@ -18,5 +18,19 @@ config IFXMIPS_MEI
        bool "IFXMips mei"
        default y
 
+choice
+       prompt "prom_printf ASC"
+       help
+         Choose which serial port is used, until the console driver is loaded
+
+config IFXMIPS_PROM_ASC0
+       bool "ASC0"
+
+config IFXMIPS_PROM_ASC1
+       bool "ASC1"
+
+endchoice
+
+
 endmenu
 
index 4e307d0443ca0c8bdd28fb07acc68184cf3c4a19..cbfcb75f0d82b7d8e336d08aed2d4f2c226d82e4 100644 (file)
@@ -26,16 +26,22 @@ static char buf[1024];
 unsigned int *prom_cp1_base = NULL;
 unsigned int prom_cp1_size = 0;
 
+#ifdef IFXMIPS_PROM_ASC0
+#define IFXMIPS_ASC_DIFF       0
+#else
+#define IFXMIPS_ASC_DIFF       IFXMIPS_ASC_BASE_DIFF
+#endif
+
 static inline u32
 asc_r32(unsigned long r)
 {
-       return ifxmips_r32((u32*)(IFXMIPS_ASC_BASE_ADDR + IFXMIPS_ASC_BASE_DIFF + r));
+       return ifxmips_r32((u32*)(IFXMIPS_ASC_BASE_ADDR + IFXMIPS_ASC_DIFF + r));
 }
 
 static inline void
 asc_w32(u32 v, unsigned long r)
 {
-       ifxmips_w32(v, (u32*)(IFXMIPS_ASC_BASE_ADDR + IFXMIPS_ASC_BASE_DIFF + r));
+       ifxmips_w32(v, (u32*)(IFXMIPS_ASC_BASE_ADDR + IFXMIPS_ASC_DIFF + r));
 }
 
 void