Release 4.14 arch/mips/emma/common/prom.c
/*
* Copyright (C) NEC Electronics Corporation 2004-2006
*
* This file is based on the arch/mips/ddb5xxx/common/prom.c
*
* Copyright 2001 MontaVista Software Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/bootmem.h>
#include <asm/addrspace.h>
#include <asm/bootinfo.h>
#include <asm/emma/emma2rh.h>
const char *get_system_type(void)
{
#ifdef CONFIG_NEC_MARKEINS
return "NEC EMMA2RH Mark-eins";
#else
#error Unknown NEC board
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Pervushin | 12 | 54.55% | 1 | 33.33% |
Thomas Bogendoerfer | 7 | 31.82% | 1 | 33.33% |
Shinya Kuribayashi | 3 | 13.64% | 1 | 33.33% |
Total | 22 | 100.00% | 3 | 100.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++) {
if (strlen(arcs_cmdline) + strlen(arg[i]) + 1
>= sizeof(arcs_cmdline))
break;
strcat(arcs_cmdline, arg[i]);
strcat(arcs_cmdline, " ");
}
#ifdef CONFIG_NEC_MARKEINS
add_memory_region(0, EMMA2RH_RAM_SIZE, BOOT_MEM_RAM);
#else
#error Unknown NEC board
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Pervushin | 108 | 92.31% | 1 | 25.00% |
Thomas Bogendoerfer | 5 | 4.27% | 1 | 25.00% |
Shinya Kuribayashi | 3 | 2.56% | 1 | 25.00% |
Thomas Jarosch | 1 | 0.85% | 1 | 25.00% |
Total | 117 | 100.00% | 4 | 100.00% |
void __init prom_free_prom_memory(void)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Pervushin | 7 | 100.00% | 1 | 100.00% |
Total | 7 | 100.00% | 1 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Pervushin | 148 | 87.57% | 1 | 16.67% |
Thomas Bogendoerfer | 12 | 7.10% | 1 | 16.67% |
Shinya Kuribayashi | 7 | 4.14% | 2 | 33.33% |
Thomas Jarosch | 1 | 0.59% | 1 | 16.67% |
Ralf Bächle | 1 | 0.59% | 1 | 16.67% |
Total | 169 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.