blob: 6a6e15e400095cd0c3c42a920f1f64960f51d147 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 PMC-Sierra Inc.
3 * Author: Manish Lachwani (lachwani@pmc-sierra.com)
4 *
5 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
13 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
15 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
16 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
17 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
18 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
19 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
20 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
21 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27#include <linux/bcd.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
30#include <linux/types.h>
31#include <linux/mm.h>
32#include <linux/bootmem.h>
33#include <linux/swap.h>
34#include <linux/ioport.h>
35#include <linux/sched.h>
36#include <linux/interrupt.h>
37#include <linux/timex.h>
38#include <linux/termios.h>
39#include <linux/tty.h>
40#include <linux/serial.h>
41#include <linux/serial_core.h>
42
43#include <asm/time.h>
44#include <asm/bootinfo.h>
45#include <asm/page.h>
46#include <asm/io.h>
47#include <asm/irq.h>
48#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/reboot.h>
50#include <asm/serial.h>
51#include <asm/titan_dep.h>
52#include <asm/m48t37.h>
53
54#include "setup.h"
55
56unsigned char titan_ge_mac_addr_base[6] = {
57 // 0x00, 0x03, 0xcc, 0x1d, 0x22, 0x00
58 0x00, 0xe0, 0x04, 0x00, 0x00, 0x21
59};
60
61unsigned long cpu_clock;
62unsigned long yosemite_base;
63
64static struct m48t37_rtc *m48t37_base;
65
66void __init bus_error_init(void)
67{
68 /* Do nothing */
69}
70
71
72unsigned long m48t37y_get_time(void)
73{
74 unsigned int year, month, day, hour, min, sec;
Atsushi Nemoto53c2df22005-11-03 01:01:15 +090075 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Atsushi Nemoto53c2df22005-11-03 01:01:15 +090077 spin_lock_irqsave(&rtc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 /* Stop the update to the time */
79 m48t37_base->control = 0x40;
80
81 year = BCD2BIN(m48t37_base->year);
82 year += BCD2BIN(m48t37_base->century) * 100;
83
84 month = BCD2BIN(m48t37_base->month);
85 day = BCD2BIN(m48t37_base->date);
86 hour = BCD2BIN(m48t37_base->hour);
87 min = BCD2BIN(m48t37_base->min);
88 sec = BCD2BIN(m48t37_base->sec);
89
90 /* Start the update to the time again */
91 m48t37_base->control = 0x00;
Atsushi Nemoto53c2df22005-11-03 01:01:15 +090092 spin_unlock_irqrestore(&rtc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 return mktime(year, month, day, hour, min, sec);
95}
96
97int m48t37y_set_time(unsigned long sec)
98{
99 struct rtc_time tm;
Atsushi Nemoto53c2df22005-11-03 01:01:15 +0900100 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 /* convert to a more useful format -- note months count from 0 */
103 to_tm(sec, &tm);
104 tm.tm_mon += 1;
105
Atsushi Nemoto53c2df22005-11-03 01:01:15 +0900106 spin_lock_irqsave(&rtc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* enable writing */
108 m48t37_base->control = 0x80;
109
110 /* year */
111 m48t37_base->year = BIN2BCD(tm.tm_year % 100);
112 m48t37_base->century = BIN2BCD(tm.tm_year / 100);
113
114 /* month */
115 m48t37_base->month = BIN2BCD(tm.tm_mon);
116
117 /* day */
118 m48t37_base->date = BIN2BCD(tm.tm_mday);
119
120 /* hour/min/sec */
121 m48t37_base->hour = BIN2BCD(tm.tm_hour);
122 m48t37_base->min = BIN2BCD(tm.tm_min);
123 m48t37_base->sec = BIN2BCD(tm.tm_sec);
124
125 /* day of week -- not really used, but let's keep it up-to-date */
126 m48t37_base->day = BIN2BCD(tm.tm_wday + 1);
127
128 /* disable writing */
129 m48t37_base->control = 0x00;
Atsushi Nemoto53c2df22005-11-03 01:01:15 +0900130 spin_unlock_irqrestore(&rtc_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 return 0;
133}
134
Ralf Baechle54d0a212006-07-09 21:38:56 +0100135void __init plat_timer_setup(struct irqaction *irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 setup_irq(7, irq);
138}
139
140void yosemite_time_init(void)
141{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 mips_hpt_frequency = cpu_clock / 2;
143mips_hpt_frequency = 33000000 * 3 * 5;
144}
145
146/* No other usable initialization hook than this ... */
147extern void (*late_time_init)(void);
148
149unsigned long ocd_base;
150
151EXPORT_SYMBOL(ocd_base);
152
153/*
154 * Common setup before any secondaries are started
155 */
156
157#define TITAN_UART_CLK 3686400
158#define TITAN_SERIAL_BASE_BAUD (TITAN_UART_CLK / 16)
159#define TITAN_SERIAL_IRQ 4
160#define TITAN_SERIAL_BASE 0xfd000008UL
161
162static void __init py_map_ocd(void)
163{
164 ocd_base = (unsigned long) ioremap(OCD_BASE, OCD_SIZE);
165 if (!ocd_base)
166 panic("Mapping OCD failed - game over. Your score is 0.");
167
168 /* Kludge for PMON bug ... */
169 OCD_WRITE(0x0710, 0x0ffff029);
170}
171
172static void __init py_uart_setup(void)
173{
Mathieu Desnoyers811d9442007-02-03 23:16:51 -0500174#ifdef CONFIG_SERIAL_8250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct uart_port up;
176
177 /*
178 * Register to interrupt zero because we share the interrupt with
179 * the serial driver which we don't properly support yet.
180 */
181 memset(&up, 0, sizeof(up));
182 up.membase = (unsigned char *) ioremap(TITAN_SERIAL_BASE, 8);
183 up.irq = TITAN_SERIAL_IRQ;
184 up.uartclk = TITAN_UART_CLK;
185 up.regshift = 0;
186 up.iotype = UPIO_MEM;
Russell King59a675b2006-02-05 10:52:29 +0000187 up.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 up.line = 0;
189
190 if (early_serial_setup(&up))
191 printk(KERN_ERR "Early serial init of port 0 failed\n");
Mathieu Desnoyers811d9442007-02-03 23:16:51 -0500192#endif /* CONFIG_SERIAL_8250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195static void __init py_rtc_setup(void)
196{
197 m48t37_base = ioremap(YOSEMITE_RTC_BASE, YOSEMITE_RTC_SIZE);
198 if (!m48t37_base)
199 printk(KERN_ERR "Mapping the RTC failed\n");
200
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800201 rtc_mips_get_time = m48t37y_get_time;
202 rtc_mips_set_time = m48t37y_set_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 write_seqlock(&xtime_lock);
205 xtime.tv_sec = m48t37y_get_time();
206 xtime.tv_nsec = 0;
207
208 set_normalized_timespec(&wall_to_monotonic,
209 -xtime.tv_sec, -xtime.tv_nsec);
210 write_sequnlock(&xtime_lock);
211}
212
213/* Not only time init but that's what the hook it's called through is named */
214static void __init py_late_time_init(void)
215{
216 py_map_ocd();
217 py_uart_setup();
218 py_rtc_setup();
219}
220
Ralf Baechle2925aba2006-06-18 01:32:22 +0100221void __init plat_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 board_time_init = yosemite_time_init;
224 late_time_init = py_late_time_init;
225
226 /* Add memory regions */
227 add_memory_region(0x00000000, 0x10000000, BOOT_MEM_RAM);
228
229#if 0 /* XXX Crash ... */
230 OCD_WRITE(RM9000x2_OCD_HTSC,
231 OCD_READ(RM9000x2_OCD_HTSC) | HYPERTRANSPORT_ENABLE);
232
233 /* Set the BAR. Shifted mode */
234 OCD_WRITE(RM9000x2_OCD_HTBAR0, HYPERTRANSPORT_BAR0_ADDR);
235 OCD_WRITE(RM9000x2_OCD_HTMASK0, HYPERTRANSPORT_SIZE0);
236#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}