1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
5 * Modified from arch/mips/pnx833x/common/prom.c.
9 #include <linux/init.h>
10 #include <linux/memblock.h>
11 #include <linux/serial_reg.h>
12 #include <asm/fw/fw.h>
14 #include <loongson1.h>
16 unsigned long memsize
;
18 void __init
prom_init(void)
20 void __iomem
*uart_base
;
24 memsize
= fw_getenvl("memsize");
26 memsize
= DEFAULT_MEMSIZE
;
28 if (strstr(arcs_cmdline
, "console=ttyS3"))
29 uart_base
= ioremap(LS1X_UART3_BASE
, 0x0f);
30 else if (strstr(arcs_cmdline
, "console=ttyS2"))
31 uart_base
= ioremap(LS1X_UART2_BASE
, 0x0f);
32 else if (strstr(arcs_cmdline
, "console=ttyS1"))
33 uart_base
= ioremap(LS1X_UART1_BASE
, 0x0f);
35 uart_base
= ioremap(LS1X_UART0_BASE
, 0x0f);
36 setup_8250_early_printk_port((unsigned long)uart_base
, 0, 0);
39 void __init
plat_mem_setup(void)
41 memblock_add(0x0, (memsize
<< 20));