2 * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
4 * Modified from arch/mips/pnx833x/common/prom.c.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/serial_reg.h>
13 #include <asm/bootinfo.h>
15 #include <loongson1.h>
19 char **prom_argv
, **prom_envp
;
20 unsigned long memsize
, highmemsize
;
22 char *prom_getenv(char *envname
)
24 char **env
= prom_envp
;
30 if (strncmp(envname
, *env
, i
) == 0 && *(*env
+i
) == '=')
38 static inline unsigned long env_or_default(char *env
, unsigned long dfl
)
40 char *str
= prom_getenv(env
);
41 return str
? simple_strtol(str
, 0, 0) : dfl
;
44 void __init
prom_init_cmdline(void)
46 char *c
= &(arcs_cmdline
[0]);
49 for (i
= 1; i
< prom_argc
; i
++) {
50 strcpy(c
, prom_argv
[i
]);
51 c
+= strlen(prom_argv
[i
]);
58 void __init
prom_init(void)
61 prom_argv
= (char **)fw_arg1
;
62 prom_envp
= (char **)fw_arg2
;
66 memsize
= env_or_default("memsize", DEFAULT_MEMSIZE
);
67 highmemsize
= env_or_default("highmemsize", 0x0);
70 void __init
prom_free_prom_memory(void)
74 #define PORT(offset) (u8 *)(KSEG1ADDR(LS1X_UART0_BASE + offset))
76 void prom_putchar(char c
)
82 while (((readb(PORT(UART_LSR
)) & UART_LSR_THRE
) == 0)
86 writeb(c
, PORT(UART_TX
));