MIPS: EMMA: Kconfig reorganization
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / mips / emma2rh / common / prom.c
blob97bf29e755a043b797779085c7e4cbde8ef42de7
1 /*
2 * arch/mips/emma2rh/common/prom.c
3 * This file is prom file.
5 * Copyright (C) NEC Electronics Corporation 2004-2006
7 * This file is based on the arch/mips/ddb5xxx/common/prom.c
9 * Copyright 2001 MontaVista Software Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/init.h>
26 #include <linux/mm.h>
27 #include <linux/sched.h>
28 #include <linux/bootmem.h>
30 #include <asm/addrspace.h>
31 #include <asm/bootinfo.h>
32 #include <asm/emma2rh/emma2rh.h>
34 const char *get_system_type(void)
36 #ifdef CONFIG_NEC_MARKEINS
37 return "NEC EMMA2RH Mark-eins";
38 #else
39 #error Unknown NEC board
40 #endif
43 /* [jsun@junsun.net] PMON passes arguments in C main() style */
44 void __init prom_init(void)
46 int argc = fw_arg0;
47 char **arg = (char **)fw_arg1;
48 int i;
50 /* if user passes kernel args, ignore the default one */
51 if (argc > 1)
52 arcs_cmdline[0] = '\0';
54 /* arg[0] is "g", the rest is boot parameters */
55 for (i = 1; i < argc; i++) {
56 if (strlen(arcs_cmdline) + strlen(arg[i] + 1)
57 >= sizeof(arcs_cmdline))
58 break;
59 strcat(arcs_cmdline, arg[i]);
60 strcat(arcs_cmdline, " ");
63 #ifdef CONFIG_NEC_MARKEINS
64 add_memory_region(0, EMMA2RH_RAM_SIZE, BOOT_MEM_RAM);
65 #else
66 #error Unknown NEC board
67 #endif
70 void __init prom_free_prom_memory(void)