thinkpad-acpi: volume subdriver rewrite
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / mips / lemote / lm2e / prom.c
blob7edc15dfed6cf44f94b180165cb51bc25ac01e7d
1 /*
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);
26 static int argc;
27 /* pmon passes arguments in 32bit pointers */
28 static int *arg;
29 static int *env;
31 const char *get_system_type(void)
33 return "lemote-fulong";
36 void __init prom_init_cmdline(void)
38 int i;
39 long l;
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, " ");
53 void __init prom_init(void)
55 long l;
56 argc = fw_arg0;
57 arg = (int *)fw_arg1;
58 env = (int *)fw_arg2;
60 prom_init_cmdline();
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) \
68 do { \
69 if (strncmp(option, (char *)p, strlen(option)) == 0) \
70 res = simple_strtol((char *)p + strlen(option"="), \
71 NULL, 10); \
72 } while (0)
74 l = (long)*env;
75 while (l != 0) {
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);
80 env++;
81 l = (long)*env;
83 if (memsize == 0)
84 memsize = 256;
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)
96 putDebugChar(c);