blob: 79d74ea75bc41e60f05ac1040af0cd5fd67a0bad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
4 *
5 * This program is free software; you can distribute it and/or modify it
6 * under the terms of the GNU General Public License (Version 2) as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/sched.h>
20#include <linux/ioport.h>
21#include <linux/pci.h>
Jon Smirl894673e2006-07-10 04:44:13 -070022#include <linux/screen_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/cpu.h>
25#include <asm/bootinfo.h>
26#include <asm/irq.h>
27#include <asm/mips-boards/generic.h>
28#include <asm/mips-boards/prom.h>
29#include <asm/mips-boards/malta.h>
30#include <asm/mips-boards/maltaint.h>
31#include <asm/dma.h>
32#include <asm/time.h>
33#include <asm/traps.h>
34#ifdef CONFIG_VT
35#include <linux/console.h>
36#endif
37
38extern void mips_reboot_setup(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039extern unsigned long mips_rtc_get_time(void);
40
41#ifdef CONFIG_KGDB
42extern void kgdb_config(void);
43#endif
44
45struct resource standard_io_resources[] = {
Dmitri Vorobiev4ca76512008-01-24 19:52:41 +030046 {
47 .name = "dma1",
48 .start = 0x00,
49 .end = 0x1f,
50 .flags = IORESOURCE_BUSY
51 },
52 {
53 .name = "timer",
54 .start = 0x40,
55 .end = 0x5f,
56 .flags = IORESOURCE_BUSY
57 },
58 {
59 .name = "keyboard",
60 .start = 0x60,
61 .end = 0x6f,
62 .flags = IORESOURCE_BUSY
63 },
64 {
65 .name = "dma page reg",
66 .start = 0x80,
67 .end = 0x8f,
68 .flags = IORESOURCE_BUSY
69 },
70 {
71 .name = "dma2",
72 .start = 0xc0,
73 .end = 0xdf,
74 .flags = IORESOURCE_BUSY
75 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078const char *get_system_type(void)
79{
80 return "MIPS Malta";
81}
82
Ralf Baechle79894c72007-05-16 17:54:08 +020083#if defined(CONFIG_MIPS_MT_SMTC)
84const char display_string[] = " SMTC LINUX ON MALTA ";
85#else
86const char display_string[] = " LINUX ON MALTA ";
87#endif /* CONFIG_MIPS_MT_SMTC */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#ifdef CONFIG_BLK_DEV_FD
90void __init fd_activate(void)
91{
92 /*
93 * Activate Floppy Controller in the SMSC FDC37M817 Super I/O
94 * Controller.
95 * Done by YAMON 2.00 onwards
96 */
97 /* Entering config state. */
98 SMSC_WRITE(SMSC_CONFIG_ENTER, SMSC_CONFIG_REG);
99
100 /* Activate floppy controller. */
101 SMSC_WRITE(SMSC_CONFIG_DEVNUM, SMSC_CONFIG_REG);
102 SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY, SMSC_DATA_REG);
103 SMSC_WRITE(SMSC_CONFIG_ACTIVATE, SMSC_CONFIG_REG);
104 SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE, SMSC_DATA_REG);
105
106 /* Exit config state. */
107 SMSC_WRITE(SMSC_CONFIG_EXIT, SMSC_CONFIG_REG);
108}
109#endif
110
Dmitri Vorobievf3a4ce92008-01-24 19:52:43 +0300111#ifdef CONFIG_BLK_DEV_IDE
112static void __init pci_clock_check(void)
113{
114 unsigned int __iomem *jmpr_p =
115 (unsigned int *) ioremap(MALTA_JMPRS_REG, sizeof(unsigned int));
116 int jmpr = (__raw_readl(jmpr_p) >> 2) & 0x07;
117 static const int pciclocks[] __initdata = {
118 33, 20, 25, 30, 12, 16, 37, 10
119 };
120 int pciclock = pciclocks[jmpr];
121 char *argptr = prom_getcmdline();
122
123 if (pciclock != 33 && !strstr(argptr, "idebus=")) {
124 printk(KERN_WARNING "WARNING: PCI clock is %dMHz, "
125 "setting idebus\n", pciclock);
126 argptr += strlen(argptr);
127 sprintf(argptr, " idebus=%d", pciclock);
128 if (pciclock < 20 || pciclock > 66)
129 printk(KERN_WARNING "WARNING: IDE timing "
130 "calculations will be incorrect\n");
131 }
132}
133#endif
134
Ralf Baechle2925aba2006-06-18 01:32:22 +0100135void __init plat_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 unsigned int i;
138
Ralf Baechlec83cfc92005-06-21 13:56:30 +0000139 mips_pcibios_init();
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* Request I/O space for devices used on the Malta board. */
142 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
143 request_resource(&ioport_resource, standard_io_resources+i);
144
145 /*
146 * Enable DMA channel 4 (cascade channel) in the PIIX4 south bridge.
147 */
148 enable_dma(4);
149
150#ifdef CONFIG_KGDB
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100151 kgdb_config();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif
153
Chris Dearmanb72c0522007-04-27 15:58:41 +0100154 if (mips_revision_sconid == MIPS_REVISION_SCON_BONITO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 char *argptr;
156
157 argptr = prom_getcmdline();
158 if (strstr(argptr, "debug")) {
159 BONITO_BONGENCFG |= BONITO_BONGENCFG_DEBUGMODE;
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100160 printk("Enabled Bonito debug mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162 else
163 BONITO_BONGENCFG &= ~BONITO_BONGENCFG_DEBUGMODE;
164
165#ifdef CONFIG_DMA_COHERENT
166 if (BONITO_PCICACHECTRL & BONITO_PCICACHECTRL_CPUCOH_PRES) {
167 BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_CPUCOH_EN;
168 printk("Enabled Bonito CPU coherency\n");
169
170 argptr = prom_getcmdline();
171 if (strstr(argptr, "iobcuncached")) {
172 BONITO_PCICACHECTRL &= ~BONITO_PCICACHECTRL_IOBCCOH_EN;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700173 BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
175 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
176 printk("Disabled Bonito IOBC coherency\n");
177 }
178 else {
179 BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_IOBCCOH_EN;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700180 BONITO_PCIMEMBASECFG |=
181 (BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
Ralf Baechle177b2922006-11-24 12:17:51 +0000183 printk("Enabled Bonito IOBC coherency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185 }
186 else
187 panic("Hardware DMA cache coherency not supported");
188
189#endif
190 }
191#ifdef CONFIG_DMA_COHERENT
192 else {
193 panic("Hardware DMA cache coherency not supported");
194 }
195#endif
196
197#ifdef CONFIG_BLK_DEV_IDE
Dmitri Vorobievf3a4ce92008-01-24 19:52:43 +0300198 pci_clock_check();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200#ifdef CONFIG_BLK_DEV_FD
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100201 fd_activate();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#endif
203#ifdef CONFIG_VT
204#if defined(CONFIG_VGA_CONSOLE)
205 screen_info = (struct screen_info) {
Dmitri Vorobiev4ca76512008-01-24 19:52:41 +0300206 .orig_x = 0,
207 .orig_y = 25,
208 .ext_mem_k = 0,
209 .orig_video_page = 0,
210 .orig_video_mode = 0,
211 .orig_video_cols = 80,
212 .unused2 = 0,
213 .orig_video_ega_bx = 0,
214 .unused3 = 0,
215 .orig_video_lines = 25,
216 .orig_video_isVGA = VIDEO_TYPE_VGAC,
217 .orig_video_points = 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 };
219#endif
220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 mips_reboot_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}