2 * Based on Ocelot Linux port, which is
3 * Copyright 2001 MontaVista Software Inc.
4 * Author: jsun@mvista.com or jsun@junsun.net
6 * Copyright 2003 ICT CAS
7 * Author: Michael Guo <guoyi@ict.ac.cn>
9 * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
10 * Author: Fuxin Zhang, zhangfx@lemote.com
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
17 #include <linux/init.h>
18 #include <linux/bootmem.h>
19 #include <asm/bootinfo.h>
21 extern unsigned long bus_clock
;
22 extern unsigned long cpu_clock_freq
;
23 extern unsigned int memsize
, highmemsize
;
24 extern int putDebugChar(unsigned char byte
);
27 /* pmon passes arguments in 32bit pointers */
31 const char *get_system_type(void)
33 return "lemote-fulong";
36 void __init
prom_init_cmdline(void)
41 /* arg[0] is "g", the rest is boot parameters */
42 arcs_cmdline
[0] = '\0';
43 for (i
= 1; i
< argc
; i
++) {
45 if (strlen(arcs_cmdline
) + strlen(((char *)l
) + 1)
46 >= sizeof(arcs_cmdline
))
48 strcat(arcs_cmdline
, ((char *)l
));
49 strcat(arcs_cmdline
, " ");
53 void __init
prom_init(void)
62 if ((strstr(arcs_cmdline
, "console=")) == NULL
)
63 strcat(arcs_cmdline
, " console=ttyS0,115200");
64 if ((strstr(arcs_cmdline
, "root=")) == NULL
)
65 strcat(arcs_cmdline
, " root=/dev/hda1");
67 #define parse_even_earlier(res, option, p) \
69 if (strncmp(option, (char *)p, strlen(option)) == 0) \
70 res = simple_strtol((char *)p + strlen(option"="), \
76 parse_even_earlier(bus_clock
, "busclock", l
);
77 parse_even_earlier(cpu_clock_freq
, "cpuclock", l
);
78 parse_even_earlier(memsize
, "memsize", l
);
79 parse_even_earlier(highmemsize
, "highmemsize", l
);
86 pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n",
87 bus_clock
, cpu_clock_freq
, memsize
, highmemsize
);
90 void __init
prom_free_prom_memory(void)
94 void prom_putchar(char c
)