blob: 3efb1cf111f2e0838d745a94a2b56f949eb14946 [file] [log] [blame]
Songmao Tian42d226c2007-06-06 14:52:38 +08001/*
2 * Based on Ocelot Linux port, which is
3 * Copyright 2001 MontaVista Software Inc.
4 * Author: jsun@mvista.com or jsun@junsun.net
5 *
6 * Copyright 2003 ICT CAS
7 * Author: Michael Guo <guoyi@ict.ac.cn>
8 *
9 * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
10 * Author: Fuxin Zhang, zhangfx@lemote.com
11 *
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.
16 */
17#include <linux/init.h>
Songmao Tian42d226c2007-06-06 14:52:38 +080018#include <linux/bootmem.h>
Songmao Tian42d226c2007-06-06 14:52:38 +080019#include <asm/bootinfo.h>
20
21extern unsigned long bus_clock;
Ralf Baechle348c9132007-07-28 11:46:15 +010022extern unsigned long cpu_clock_freq;
Songmao Tian42d226c2007-06-06 14:52:38 +080023extern unsigned int memsize, highmemsize;
24extern int putDebugChar(unsigned char byte);
25
26static int argc;
27/* pmon passes arguments in 32bit pointers */
28static int *arg;
29static int *env;
30
31const char *get_system_type(void)
32{
33 return "lemote-fulong";
34}
35
36void __init prom_init_cmdline(void)
37{
38 int i;
39 long l;
40
41 /* arg[0] is "g", the rest is boot parameters */
42 arcs_cmdline[0] = '\0';
43 for (i = 1; i < argc; i++) {
44 l = (long)arg[i];
45 if (strlen(arcs_cmdline) + strlen(((char *)l) + 1)
46 >= sizeof(arcs_cmdline))
47 break;
48 strcat(arcs_cmdline, ((char *)l));
49 strcat(arcs_cmdline, " ");
50 }
51}
52
53void __init prom_init(void)
54{
55 long l;
56 argc = fw_arg0;
57 arg = (int *)fw_arg1;
58 env = (int *)fw_arg2;
59
60 mips_machgroup = MACH_GROUP_LEMOTE;
61 mips_machtype = MACH_LEMOTE_FULONG;
62
63 prom_init_cmdline();
64
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");
69
70#define parse_even_earlier(res, option, p) \
71do { \
72 if (strncmp(option, (char *)p, strlen(option)) == 0) \
73 res = simple_strtol((char *)p + strlen(option"="), \
74 NULL, 10); \
75} while (0)
76
77 l = (long)*env;
78 while (l != 0) {
79 parse_even_earlier(bus_clock, "busclock", l);
Ralf Baechle348c9132007-07-28 11:46:15 +010080 parse_even_earlier(cpu_clock_freq, "cpuclock", l);
Songmao Tian42d226c2007-06-06 14:52:38 +080081 parse_even_earlier(memsize, "memsize", l);
82 parse_even_earlier(highmemsize, "highmemsize", l);
83 env++;
84 l = (long)*env;
85 }
86 if (memsize == 0)
87 memsize = 256;
88
89 pr_info("busclock=%ld, cpuclock=%ld,memsize=%d,highmemsize=%d\n",
Ralf Baechle348c9132007-07-28 11:46:15 +010090 bus_clock, cpu_clock_freq, memsize, highmemsize);
Songmao Tian42d226c2007-06-06 14:52:38 +080091}
92
93void __init prom_free_prom_memory(void)
94{
95}
96
97void prom_putchar(char c)
98{
99 putDebugChar(c);
100}