2009-08-31 18:53:22 +00:00
|
|
|
/*
|
|
|
|
* Ralink SoC common setup
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
|
|
|
|
* Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
2009-09-02 12:44:17 +00:00
|
|
|
#include <linux/serial_8250.h>
|
2009-08-31 18:53:22 +00:00
|
|
|
|
2009-08-31 18:53:26 +00:00
|
|
|
#include <asm/bootinfo.h>
|
2009-08-31 18:53:22 +00:00
|
|
|
#include <asm/addrspace.h>
|
2009-08-31 18:53:26 +00:00
|
|
|
|
2009-08-31 18:53:22 +00:00
|
|
|
#include <asm/mach-ralink/common.h>
|
2009-08-31 18:53:34 +00:00
|
|
|
#include <asm/mach-ralink/machine.h>
|
2009-08-31 18:53:26 +00:00
|
|
|
#include <ralink_soc.h>
|
|
|
|
|
2009-08-31 18:53:31 +00:00
|
|
|
unsigned char ramips_sys_type[RAMIPS_SYS_TYPE_LEN];
|
|
|
|
|
|
|
|
const char *get_system_type(void)
|
|
|
|
{
|
|
|
|
return ramips_sys_type;
|
|
|
|
}
|
|
|
|
|
2009-08-31 18:53:26 +00:00
|
|
|
static void __init detect_mem_size(void)
|
|
|
|
{
|
|
|
|
unsigned long size;
|
2012-02-11 15:11:45 +00:00
|
|
|
void *base;
|
2009-08-31 18:53:26 +00:00
|
|
|
|
2012-02-11 15:11:45 +00:00
|
|
|
base = (void *) KSEG1ADDR(detect_mem_size);
|
2009-08-31 18:53:26 +00:00
|
|
|
for (size = RALINK_SOC_MEM_SIZE_MIN; size < RALINK_SOC_MEM_SIZE_MAX;
|
|
|
|
size <<= 1 ) {
|
2012-02-11 15:11:45 +00:00
|
|
|
if (!memcmp(base, base + size, 1024))
|
2009-08-31 18:53:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_memory_region(RALINK_SOC_SDRAM_BASE, size, BOOT_MEM_RAM);
|
|
|
|
}
|
2009-08-31 18:53:22 +00:00
|
|
|
|
2009-09-02 12:44:17 +00:00
|
|
|
void __init ramips_early_serial_setup(int line, unsigned base, unsigned freq,
|
|
|
|
unsigned irq)
|
|
|
|
{
|
|
|
|
struct uart_port p;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
memset(&p, 0, sizeof(p));
|
2011-03-27 19:20:03 +00:00
|
|
|
p.flags = UPF_SKIP_TEST | UPF_FIXED_TYPE;
|
2009-09-02 12:44:17 +00:00
|
|
|
p.iotype = UPIO_AU;
|
|
|
|
p.uartclk = freq;
|
|
|
|
p.regshift = 2;
|
|
|
|
p.type = PORT_16550A;
|
|
|
|
|
|
|
|
p.mapbase = base;
|
|
|
|
p.membase = ioremap_nocache(p.mapbase, PAGE_SIZE);
|
|
|
|
p.line = line;
|
|
|
|
p.irq = irq;
|
|
|
|
|
|
|
|
err = early_serial_setup(&p);
|
|
|
|
if (err)
|
|
|
|
printk(KERN_ERR "early serial%d registration failed %d\n",
|
|
|
|
line, err);
|
|
|
|
}
|
|
|
|
|
2009-08-31 18:53:22 +00:00
|
|
|
void __init plat_mem_setup(void)
|
|
|
|
{
|
|
|
|
set_io_port_base(KSEG1);
|
|
|
|
|
2009-08-31 18:53:26 +00:00
|
|
|
detect_mem_size();
|
2009-08-31 18:53:22 +00:00
|
|
|
ramips_soc_setup();
|
|
|
|
}
|
2009-08-31 18:53:34 +00:00
|
|
|
|
2010-01-30 15:25:03 +00:00
|
|
|
__setup("board=", mips_machtype_setup);
|
|
|
|
|
2009-08-31 18:53:34 +00:00
|
|
|
static int __init ramips_machine_setup(void)
|
|
|
|
{
|
2010-01-30 15:25:03 +00:00
|
|
|
mips_machine_setup();
|
2009-08-31 18:53:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
arch_initcall(ramips_machine_setup);
|
|
|
|
|
|
|
|
static void __init ramips_generic_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-30 15:25:03 +00:00
|
|
|
MIPS_MACHINE(RAMIPS_MACH_GENERIC, "Generic", "Generic Ralink board",
|
|
|
|
ramips_generic_init);
|