[ramips] initial support for RT288x/RT305x
[openwrt.git] / target / linux / ramips / files / arch / mips / ralink / rt288x / setup.c
1 /*
2  * Ralink RT288x SoC specific setup
3  *
4  * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5  * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6  *
7  * Parts of this file are based on Ralink's 2.6.21 BSP
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License version 2 as published
11  * by the Free Software Foundation.
12  */
13
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/io.h>
17 #include <linux/serial_8250.h>
18
19 #include <asm/bootinfo.h>
20 #include <asm/mips_machine.h>
21 #include <asm/reboot.h>
22 #include <asm/time.h>
23
24 #include <asm/mach-ralink/rt288x.h>
25 #include <asm/mach-ralink/rt288x_regs.h>
26
27 #define RT288X_MEM_SIZE_MIN (2 * 1024 * 1024)
28 #define RT288X_MEM_SIZE_MAX (128 * 1024 * 1024)
29
30 unsigned long rt288x_mach_type;
31
32 static void rt288x_restart(char *command)
33 {
34         rt288x_sysc_wr(RT2880_RESET_SYSTEM, SYSC_REG_RESET_CTRL);
35         while (1)
36                 if (cpu_wait)
37                         cpu_wait();
38 }
39
40 static void rt288x_halt(void)
41 {
42         while (1)
43                 cpu_wait();
44 }
45
46 static void __init rt288x_detect_mem_size(void)
47 {
48         unsigned long size;
49
50         for (size = RT288X_MEM_SIZE_MIN; size < RT288X_MEM_SIZE_MAX;
51              size <<= 1 ) {
52                 if (!memcmp(rt288x_detect_mem_size,
53                             rt288x_detect_mem_size + size, 1024))
54                         break;
55         }
56
57         add_memory_region(RT2880_SDRAM_BASE, size, BOOT_MEM_RAM);
58 }
59
60 #ifdef CONFIG_RT288X_EARLY_SERIAL
61 static void __init rt288x_early_serial_setup(void)
62 {
63         struct uart_port p;
64         int err;
65
66         memset(&p, 0, sizeof(p));
67         p.flags         = UPF_SKIP_TEST;
68         p.iotype        = UPIO_AU;
69         p.uartclk       = rt288x_sys_freq;
70         p.regshift      = 2;
71         p.type          = PORT_16550A;
72
73         p.mapbase       = RT2880_UART0_BASE;
74         p.membase       = ioremap_nocache(p.mapbase, RT2880_UART0_SIZE);
75         p.line          = 0;
76         p.irq           = RT2880_INTC_IRQ_UART0;
77
78         err = early_serial_setup(&p);
79         if (err)
80                 printk(KERN_ERR "RT288x: early UART0 registration failed %d\n",
81                         err);
82
83         p.mapbase       = RT2880_UART1_BASE;
84         p.membase       = ioremap_nocache(p.mapbase, RT2880_UART1_SIZE);
85         p.line          = 1;
86         p.irq           = RT2880_INTC_IRQ_UART1;
87
88         err = early_serial_setup(&p);
89         if (err)
90                 printk(KERN_ERR "RT288x: early UART1 registration failed %d\n",
91                         err);
92 }
93 #else
94 static inline void rt288x_early_serial_setup(void) {};
95 #endif /* CONFIG_RT288X_EARLY_SERIAL */
96
97 const char *get_system_type(void)
98 {
99         return rt288x_sys_type;
100 }
101
102 unsigned int __cpuinit get_c0_compare_irq(void)
103 {
104         return CP0_LEGACY_COMPARE_IRQ;
105 }
106
107 void __init plat_mem_setup(void)
108 {
109         set_io_port_base(KSEG1);
110
111         rt288x_intc_base = ioremap_nocache(RT2880_INTC_BASE, RT2880_INTC_SIZE);
112         rt288x_sysc_base = ioremap_nocache(RT2880_SYSC_BASE, RT2880_SYSC_SIZE);
113         rt288x_memc_base = ioremap_nocache(RT2880_MEMC_BASE, RT2880_MEMC_SIZE);
114
115         rt288x_detect_mem_size();
116         rt288x_detect_sys_type();
117         rt288x_detect_sys_freq();
118
119         printk(KERN_INFO "%s running at %lu.%02lu MHz\n", get_system_type(),
120                 rt288x_cpu_freq / 1000000,
121                 (rt288x_cpu_freq % 1000000) * 100 / 1000000);
122
123         _machine_restart = rt288x_restart;
124         _machine_halt = rt288x_halt;
125         pm_power_off = rt288x_halt;
126
127         rt288x_early_serial_setup();
128 }
129
130 void __init plat_time_init(void)
131 {
132         mips_hpt_frequency = rt288x_cpu_freq / 2;
133 }
134
135 static int __init rt288x_machine_setup(void)
136 {
137         mips_machine_setup(rt288x_mach_type);
138
139         return 0;
140 }
141
142 arch_initcall(rt288x_machine_setup);