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)
60 mips_machgroup
= MACH_GROUP_LEMOTE
;
61 mips_machtype
= MACH_LEMOTE_FULONG
;
65 if ((strstr(arcs_cmdline
, "console=")) == NULL
)
66 strcat(arcs_cmdline
, " console=ttyS0,115200");
67 if ((strstr(arcs_cmdline
, "root=")) == NULL
)
68 strcat(arcs_cmdline
, " root=/dev/hda1");
70 #define parse_even_earlier(res, option, p) \
72 if (strncmp(option, (char *)p, strlen(option)) == 0) \
73 res = simple_strtol((char *)p + strlen(option"="), \
79 parse_even_earlier(bus_clock
, "busclock", l
);
80 parse_even_earlier(cpu_clock_freq
, "cpuclock", l
);
81 parse_even_earlier(memsize
, "memsize", l
);
82 parse_even_earlier(highmemsize
, "highmemsize", l
);
89 pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n",
90 bus_clock
, cpu_clock_freq
, memsize
, highmemsize
);
93 void __init
prom_free_prom_memory(void)
97 void prom_putchar(char c
)