blob: 494fb0a475acd41a202cb71f711764abd71c7ad2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Isaacsonf137e462005-10-19 23:56:38 -07002 * Copyright (C) 2000, 2001, 2002, 2003, 2004 Broadcom Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20/*
21 * Setup code for the SWARM board
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/spinlock.h>
25#include <linux/mm.h>
26#include <linux/bootmem.h>
27#include <linux/blkdev.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
Jon Smirl894673e2006-07-10 04:44:13 -070030#include <linux/screen_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/initrd.h>
32
33#include <asm/irq.h>
34#include <asm/io.h>
35#include <asm/bootinfo.h>
36#include <asm/mipsregs.h>
37#include <asm/reboot.h>
38#include <asm/time.h>
39#include <asm/traps.h>
40#include <asm/sibyte/sb1250.h>
Andrew Isaacsonf137e462005-10-19 23:56:38 -070041#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
42#include <asm/sibyte/bcm1480_regs.h>
43#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/sibyte/sb1250_regs.h>
Andrew Isaacsonf137e462005-10-19 23:56:38 -070045#else
Maciej W. Rozycki03dbd2e2006-11-30 13:45:32 +000046#error invalid SiByte board configuration
Andrew Isaacsonf137e462005-10-19 23:56:38 -070047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/sibyte/sb1250_genbus.h>
49#include <asm/sibyte/board.h>
50
Andrew Isaacsonf137e462005-10-19 23:56:38 -070051#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
52extern void bcm1480_setup(void);
53#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054extern void sb1250_setup(void);
Andrew Isaacsonf137e462005-10-19 23:56:38 -070055#else
Maciej W. Rozycki03dbd2e2006-11-30 13:45:32 +000056#error invalid SiByte board configuration
Andrew Isaacsonf137e462005-10-19 23:56:38 -070057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59extern int xicor_probe(void);
60extern int xicor_set_time(unsigned long);
61extern unsigned long xicor_get_time(void);
62
63extern int m41t81_probe(void);
64extern int m41t81_set_time(unsigned long);
65extern unsigned long m41t81_get_time(void);
66
67const char *get_system_type(void)
68{
69 return "SiByte " SIBYTE_BOARD_NAME;
70}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int swarm_be_handler(struct pt_regs *regs, int is_fixup)
73{
74 if (!is_fixup && (regs->cp0_cause & 4)) {
75 /* Data bus error - print PA */
Ralf Baechle6aaf7782005-10-01 13:14:58 +010076 printk("DBE physical address: %010Lx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 __read_64bit_c0_register($26, 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
Ralf Baechle635c99072014-10-21 14:12:49 +020079 return is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Ralf Baechle4b550482007-10-11 23:46:08 +010082enum swarm_rtc_type {
83 RTC_NONE,
84 RTC_XICOR,
Ralf Baechle2b3e5022010-11-02 19:38:53 +000085 RTC_M41T81,
Ralf Baechle4b550482007-10-11 23:46:08 +010086};
87
88enum swarm_rtc_type swarm_rtc_type;
89
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020090void read_persistent_clock(struct timespec *ts)
Ralf Baechle4b550482007-10-11 23:46:08 +010091{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020092 unsigned long sec;
93
Ralf Baechle4b550482007-10-11 23:46:08 +010094 switch (swarm_rtc_type) {
95 case RTC_XICOR:
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020096 sec = xicor_get_time();
97 break;
Ralf Baechle4b550482007-10-11 23:46:08 +010098
Ralf Baechle2b3e5022010-11-02 19:38:53 +000099 case RTC_M41T81:
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200100 sec = m41t81_get_time();
101 break;
Ralf Baechle4b550482007-10-11 23:46:08 +0100102
103 case RTC_NONE:
104 default:
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200105 sec = mktime(2000, 1, 1, 0, 0, 0);
106 break;
Ralf Baechle4b550482007-10-11 23:46:08 +0100107 }
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200108 ts->tv_sec = sec;
Mark Masona648e812009-09-23 13:35:09 -0700109 ts->tv_nsec = 0;
Ralf Baechle4b550482007-10-11 23:46:08 +0100110}
111
112int rtc_mips_set_time(unsigned long sec)
113{
114 switch (swarm_rtc_type) {
115 case RTC_XICOR:
116 return xicor_set_time(sec);
117
Ralf Baechle2b3e5022010-11-02 19:38:53 +0000118 case RTC_M41T81:
Ralf Baechle4b550482007-10-11 23:46:08 +0100119 return m41t81_set_time(sec);
120
121 case RTC_NONE:
122 default:
123 return -1;
124 }
125}
126
Ralf Baechle2925aba2006-06-18 01:32:22 +0100127void __init plat_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Andrew Isaacsonf137e462005-10-19 23:56:38 -0700129#if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
130 bcm1480_setup();
131#elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 sb1250_setup();
Andrew Isaacsonf137e462005-10-19 23:56:38 -0700133#else
Maciej W. Rozycki03dbd2e2006-11-30 13:45:32 +0000134#error invalid SiByte board configuration
Andrew Isaacsonf137e462005-10-19 23:56:38 -0700135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 board_be_handler = swarm_be_handler;
138
Ralf Baechle4b550482007-10-11 23:46:08 +0100139 if (xicor_probe())
140 swarm_rtc_type = RTC_XICOR;
141 if (m41t81_probe())
Ralf Baechle2b3e5022010-11-02 19:38:53 +0000142 swarm_rtc_type = RTC_M41T81;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#ifdef CONFIG_VT
145 screen_info = (struct screen_info) {
Sebastian Andrzej Siewiorb20947a2010-04-21 22:36:47 +0200146 .orig_video_page = 52,
147 .orig_video_mode = 3,
148 .orig_video_cols = 80,
149 .flags = 12,
150 .orig_video_ega_bx = 3,
151 .orig_video_lines = 25,
152 .orig_video_isVGA = 0x22,
153 .orig_video_points = 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 };
155 /* XXXKW for CFE, get lines/cols from environment */
156#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#ifdef LEDS_PHYS
160
161#ifdef CONFIG_SIBYTE_CARMEL
162/* XXXKW need to detect Monterey/LittleSur/etc */
163#undef LEDS_PHYS
164#define LEDS_PHYS MLEDS_PHYS
165#endif
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167void setleds(char *str)
168{
Ralf Baechle8fb303c2007-03-24 14:26:13 +0000169 void *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int i;
Ralf Baechle8fb303c2007-03-24 14:26:13 +0000171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 for (i = 0; i < 4; i++) {
Ralf Baechle8fb303c2007-03-24 14:26:13 +0000173 reg = IOADDR(LEDS_PHYS) + 0x20 + ((3 - i) << 3);
174
175 if (!str[i])
176 writeb(' ', reg);
177 else
178 writeb(str[i], reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
180}
Ralf Baechle8fb303c2007-03-24 14:26:13 +0000181
182#endif /* LEDS_PHYS */