2019-05-27 06:55:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2006-05-21 10:53:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) NEC Electronics Corporation 2004-2006
|
|
|
|
*
|
|
|
|
* This file is based on the arch/mips/ddb5xxx/common/prom.c
|
|
|
|
*
|
|
|
|
* Copyright 2001 MontaVista Software Inc.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/sched.h>
|
2018-10-30 22:09:49 +00:00
|
|
|
#include <linux/memblock.h>
|
2006-05-21 10:53:06 +00:00
|
|
|
|
|
|
|
#include <asm/addrspace.h>
|
|
|
|
#include <asm/bootinfo.h>
|
2008-10-23 16:30:20 +00:00
|
|
|
#include <asm/emma/emma2rh.h>
|
2006-05-21 10:53:06 +00:00
|
|
|
|
|
|
|
const char *get_system_type(void)
|
|
|
|
{
|
2008-10-23 21:00:01 +00:00
|
|
|
#ifdef CONFIG_NEC_MARKEINS
|
2008-07-14 13:54:30 +00:00
|
|
|
return "NEC EMMA2RH Mark-eins";
|
|
|
|
#else
|
|
|
|
#error Unknown NEC board
|
|
|
|
#endif
|
2006-05-21 10:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* [jsun@junsun.net] PMON passes arguments in C main() style */
|
|
|
|
void __init prom_init(void)
|
|
|
|
{
|
|
|
|
int argc = fw_arg0;
|
|
|
|
char **arg = (char **)fw_arg1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* if user passes kernel args, ignore the default one */
|
|
|
|
if (argc > 1)
|
|
|
|
arcs_cmdline[0] = '\0';
|
|
|
|
|
|
|
|
/* arg[0] is "g", the rest is boot parameters */
|
|
|
|
for (i = 1; i < argc; i++) {
|
2011-10-29 13:45:56 +00:00
|
|
|
if (strlen(arcs_cmdline) + strlen(arg[i]) + 1
|
2006-05-21 10:53:06 +00:00
|
|
|
>= sizeof(arcs_cmdline))
|
|
|
|
break;
|
|
|
|
strcat(arcs_cmdline, arg[i]);
|
|
|
|
strcat(arcs_cmdline, " ");
|
|
|
|
}
|
|
|
|
|
2008-10-23 21:00:01 +00:00
|
|
|
#ifdef CONFIG_NEC_MARKEINS
|
2006-05-21 10:53:06 +00:00
|
|
|
add_memory_region(0, EMMA2RH_RAM_SIZE, BOOT_MEM_RAM);
|
2008-07-14 13:54:30 +00:00
|
|
|
#else
|
|
|
|
#error Unknown NEC board
|
2006-05-21 10:53:06 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init prom_free_prom_memory(void)
|
|
|
|
{
|
|
|
|
}
|