Use the cmdline hacked's prom.c and disable this patching part accordingly
[openwrt/svn-archive/archive.git] / target / linux / adm5120-2.6 / files / arch / mips / adm5120 / prom.c
1 /*****************************************************************************
2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
4 * Copyright (C) 2003 ADMtek Incorporated.
5 * daniell@admtek.com.tw
6 * Copyright (C) 2007 OpenWrt.org
7 *
8 * This program is free software; you can distribute it and/or modify it
9 * under the terms of the GNU General Public License (Version 2) as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
20 *
21 *****************************************************************************/
22
23 #include <linux/init.h>
24 #include <linux/autoconf.h>
25 #include <linux/kernel.h>
26 #include <linux/string.h>
27 #include <linux/mm.h>
28 #include <linux/bootmem.h>
29
30 #include <asm/bootinfo.h>
31 #include <asm/addrspace.h>
32
33 #include <asm/mach-adm5120/adm5120_info.h>
34
35 void setup_prom_printf(int);
36 void prom_printf(char *, ...);
37 void prom_meminit(void);
38
39 #define ADM5120_ENVC 1
40
41 char *adm5120_envp[2*ADM5120_ENVC] = {"memsize","0x001000000"};
42
43 #define READCSR(r) *(volatile unsigned long *)(0xB2600000+(r))
44 #define WRITECSR(r,v) *(volatile unsigned long *)(0xB2600000+(r)) = v
45
46 #define UART_DR_REG 0x00
47 #define UART_FR_REG 0x18
48 #define UART_TX_FIFO_FULL 0x20
49
50 int putPromChar(char c)
51 {
52 WRITECSR(UART_DR_REG, c);
53 while ( (READCSR(UART_FR_REG) & UART_TX_FIFO_FULL) );
54 return 0;
55 }
56
57 /*
58 * Ugly prom_printf used for debugging
59 */
60
61 void prom_printf(char *fmt, ...)
62 {
63 va_list args;
64 int l;
65 char *p, *buf_end;
66 char buf[1024];
67
68 va_start(args, fmt);
69 l = vsprintf(buf, fmt, args); /* hopefully i < sizeof(buf) */
70 va_end(args);
71
72 buf_end = buf + l;
73
74 for (p = buf; p < buf_end; p++) {
75 /* Crude cr/nl handling is better than none */
76 if (*p == '\n')
77 putPromChar('\r');
78 putPromChar(*p);
79 }
80 }
81
82 char *prom_getenv(char *envname)
83 {
84 int i, index=0;
85
86 i = strlen(envname);
87
88 printk(KERN_INFO "GETENV: envname is %s\n", envname);
89
90 while(index < (2*ADM5120_ENVC)) {
91 if(strncmp(envname, adm5120_envp[index], i) == 0) {
92 printk(KERN_INFO "GETENV: returning %s\n", adm5120_envp[index+1]);
93 return(adm5120_envp[index+1]);
94 }
95 index += 2;
96 }
97
98 printk(KERN_INFO "GETENV: not found.\n");
99 return(NULL);
100 }
101
102
103 extern char _image_cmdline;
104 /*
105 * initialize the prom module.
106 */
107 void __init prom_init(void)
108 {
109 char *cmd;
110
111 adm5120_info_init();
112
113 /* you should these macros defined in include/asm/bootinfo.h */
114 mips_machgroup = MACH_GROUP_ADM5120;
115 mips_machtype = adm5120_board.mach_type;
116
117 /* init command line, register a default kernel command line */
118 cmd = &_image_cmdline + 8;
119 if( strlen(cmd) > 0) strcpy( &(arcs_cmdline[0]), cmd);
120 else strcpy(&(arcs_cmdline[0]), CONFIG_CMDLINE);
121
122 /* init memory map */
123 prom_meminit();
124 }