1 From 5219981646071abb6731634bf47781a53e248764 Mon Sep 17 00:00:00 2001
2 From: Hauke Mehrtens <hauke@hauke-m.de>
3 Date: Sun, 18 Jul 2010 15:11:26 +0200
4 Subject: [PATCH 6/6] MIPS: BCM47xx: Remove CFE console
6 Do not use the CFE console. It causes hangs on some devices like the
8 This was reported in https://dev.openwrt.org/ticket/4061 and
9 https://forum.openwrt.org/viewtopic.php?id=17063
11 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
13 arch/mips/Kconfig | 1 -
14 arch/mips/bcm47xx/prom.c | 82 +++------------------------------------------
15 2 files changed, 6 insertions(+), 77 deletions(-)
17 --- a/arch/mips/Kconfig
18 +++ b/arch/mips/Kconfig
19 @@ -101,7 +101,6 @@ config BCM47XX
20 select SSB_B43_PCI_BRIDGE if PCI
21 select SSB_PCICORE_HOSTMODE if PCI
23 - select SYS_HAS_EARLY_PRINTK
26 Support for BCM47XX based boards
27 --- a/arch/mips/bcm47xx/prom.c
28 +++ b/arch/mips/bcm47xx/prom.c
30 #include <asm/fw/cfe/cfe_api.h>
31 #include <asm/fw/cfe/cfe_error.h>
33 -static int cfe_cons_handle;
35 const char *get_system_type(void)
37 return "Broadcom BCM47XX";
40 -void prom_putchar(char c)
42 - while (cfe_write(cfe_cons_handle, &c, 1) == 0)
46 -static __init void prom_init_cfe(void)
47 +static __init int prom_init_cfe(void)
53 - char **envp = (char **) fw_arg2;
54 - int *prom_vec = (int *) fw_arg3;
57 - * Check if a loader was used; if NOT, the 4 arguments are
58 - * what CFE gives us (handle, 0, EPT and EPTSEAL)
61 - cfe_handle = (uint32_t)argc;
62 - cfe_ept = (uint32_t)envp;
63 - cfe_eptseal = (uint32_t)prom_vec;
65 - if ((int)prom_vec < 0) {
67 - * Old loader; all it gives us is the handle,
68 - * so use the "known" entrypoint and assume
71 - cfe_handle = (uint32_t)prom_vec;
72 - cfe_ept = 0xBFC00500;
73 - cfe_eptseal = CFE_EPTSEAL;
76 - * Newer loaders bundle the handle/ept/eptseal
77 - * Note: prom_vec is in the loader's useg
78 - * which is still alive in the TLB.
80 - cfe_handle = prom_vec[0];
81 - cfe_ept = prom_vec[2];
82 - cfe_eptseal = prom_vec[3];
86 + cfe_eptseal = (uint32_t) fw_arg3;
87 + cfe_handle = (uint32_t) fw_arg0;
88 + cfe_ept = (uint32_t) fw_arg2;
90 if (cfe_eptseal != CFE_EPTSEAL) {
91 - /* too early for panic to do any good */
92 printk(KERN_ERR "CFE's entrypoint seal doesn't match.");
97 cfe_init(cfe_handle, cfe_ept);
100 -static __init void prom_init_console(void)
102 - /* Initialize CFE console */
103 - cfe_cons_handle = cfe_getstdhandle(CFE_STDHANDLE_CONSOLE);
106 -static __init void prom_init_cmdline(void)
108 - static char buf[COMMAND_LINE_SIZE] __initdata;
110 - /* Get the kernel command line from CFE */
111 - if (cfe_getenv("LINUX_CMDLINE", buf, COMMAND_LINE_SIZE) >= 0) {
112 - buf[COMMAND_LINE_SIZE - 1] = 0;
113 - strcpy(arcs_cmdline, buf);
116 - /* Force a console handover by adding a console= argument if needed,
117 - * as CFE is not available anymore later in the boot process. */
118 - if ((strstr(arcs_cmdline, "console=")) == NULL) {
119 - /* Try to read the default serial port used by CFE */
120 - if ((cfe_getenv("BOOT_CONSOLE", buf, COMMAND_LINE_SIZE) < 0)
121 - || (strncmp("uart", buf, 4)))
122 - /* Default to uart0 */
123 - strcpy(buf, "uart0");
125 - /* Compute the new command line */
126 - snprintf(arcs_cmdline, COMMAND_LINE_SIZE, "%s console=ttyS%c,115200",
127 - arcs_cmdline, buf[4]);
132 static __init void prom_init_mem(void)
133 @@ -161,8 +93,6 @@ static __init void prom_init_mem(void)
134 void __init prom_init(void)
137 - prom_init_console();
138 - prom_init_cmdline();