blob: c14b7bf89950cb131445c509ef0dbec189645417 [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);
39extern void mips_time_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040extern unsigned long mips_rtc_get_time(void);
41
42#ifdef CONFIG_KGDB
43extern void kgdb_config(void);
44#endif
45
46struct resource standard_io_resources[] = {
Ralf Baechle5e46c3a2006-06-04 15:14:05 -070047 { .name = "dma1", .start = 0x00, .end = 0x1f, .flags = IORESOURCE_BUSY },
48 { .name = "timer", .start = 0x40, .end = 0x5f, .flags = IORESOURCE_BUSY },
49 { .name = "keyboard", .start = 0x60, .end = 0x6f, .flags = IORESOURCE_BUSY },
50 { .name = "dma page reg", .start = 0x80, .end = 0x8f, .flags = IORESOURCE_BUSY },
51 { .name = "dma2", .start = 0xc0, .end = 0xdf, .flags = IORESOURCE_BUSY },
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054const char *get_system_type(void)
55{
56 return "MIPS Malta";
57}
58
Ralf Baechle79894c72007-05-16 17:54:08 +020059#if defined(CONFIG_MIPS_MT_SMTC)
60const char display_string[] = " SMTC LINUX ON MALTA ";
61#else
62const char display_string[] = " LINUX ON MALTA ";
63#endif /* CONFIG_MIPS_MT_SMTC */
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifdef CONFIG_BLK_DEV_FD
66void __init fd_activate(void)
67{
68 /*
69 * Activate Floppy Controller in the SMSC FDC37M817 Super I/O
70 * Controller.
71 * Done by YAMON 2.00 onwards
72 */
73 /* Entering config state. */
74 SMSC_WRITE(SMSC_CONFIG_ENTER, SMSC_CONFIG_REG);
75
76 /* Activate floppy controller. */
77 SMSC_WRITE(SMSC_CONFIG_DEVNUM, SMSC_CONFIG_REG);
78 SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY, SMSC_DATA_REG);
79 SMSC_WRITE(SMSC_CONFIG_ACTIVATE, SMSC_CONFIG_REG);
80 SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE, SMSC_DATA_REG);
81
82 /* Exit config state. */
83 SMSC_WRITE(SMSC_CONFIG_EXIT, SMSC_CONFIG_REG);
84}
85#endif
86
Ralf Baechle2925aba2006-06-18 01:32:22 +010087void __init plat_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 unsigned int i;
90
Ralf Baechlec83cfc92005-06-21 13:56:30 +000091 mips_pcibios_init();
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* Request I/O space for devices used on the Malta board. */
94 for (i = 0; i < ARRAY_SIZE(standard_io_resources); i++)
95 request_resource(&ioport_resource, standard_io_resources+i);
96
97 /*
98 * Enable DMA channel 4 (cascade channel) in the PIIX4 south bridge.
99 */
100 enable_dma(4);
101
102#ifdef CONFIG_KGDB
103 kgdb_config ();
104#endif
105
106 if ((mips_revision_corid == MIPS_REVISION_CORID_BONITO64) ||
107 (mips_revision_corid == MIPS_REVISION_CORID_CORE_20K) ||
108 (mips_revision_corid == MIPS_REVISION_CORID_CORE_EMUL_BON)) {
109 char *argptr;
110
111 argptr = prom_getcmdline();
112 if (strstr(argptr, "debug")) {
113 BONITO_BONGENCFG |= BONITO_BONGENCFG_DEBUGMODE;
114 printk ("Enabled Bonito debug mode\n");
115 }
116 else
117 BONITO_BONGENCFG &= ~BONITO_BONGENCFG_DEBUGMODE;
118
119#ifdef CONFIG_DMA_COHERENT
120 if (BONITO_PCICACHECTRL & BONITO_PCICACHECTRL_CPUCOH_PRES) {
121 BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_CPUCOH_EN;
122 printk("Enabled Bonito CPU coherency\n");
123
124 argptr = prom_getcmdline();
125 if (strstr(argptr, "iobcuncached")) {
126 BONITO_PCICACHECTRL &= ~BONITO_PCICACHECTRL_IOBCCOH_EN;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700127 BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
129 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
130 printk("Disabled Bonito IOBC coherency\n");
131 }
132 else {
133 BONITO_PCICACHECTRL |= BONITO_PCICACHECTRL_IOBCCOH_EN;
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700134 BONITO_PCIMEMBASECFG |=
135 (BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
Ralf Baechle177b2922006-11-24 12:17:51 +0000137 printk("Enabled Bonito IOBC coherency\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 }
140 else
141 panic("Hardware DMA cache coherency not supported");
142
143#endif
144 }
145#ifdef CONFIG_DMA_COHERENT
146 else {
147 panic("Hardware DMA cache coherency not supported");
148 }
149#endif
150
151#ifdef CONFIG_BLK_DEV_IDE
152 /* Check PCI clock */
153 {
Ralf Baechlef1974652007-04-26 15:46:24 +0100154 unsigned int __iomem *jmpr_p = (unsigned int *) ioremap(MALTA_JMPRS_REG, sizeof(unsigned int));
155 int jmpr = (readw(jmpr_p) >> 2) & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 static const int pciclocks[] __initdata = {
157 33, 20, 25, 30, 12, 16, 37, 10
158 };
159 int pciclock = pciclocks[jmpr];
160 char *argptr = prom_getcmdline();
161
162 if (pciclock != 33 && !strstr (argptr, "idebus=")) {
163 printk("WARNING: PCI clock is %dMHz, setting idebus\n", pciclock);
164 argptr += strlen(argptr);
165 sprintf (argptr, " idebus=%d", pciclock);
166 if (pciclock < 20 || pciclock > 66)
167 printk ("WARNING: IDE timing calculations will be incorrect\n");
168 }
169 }
170#endif
171#ifdef CONFIG_BLK_DEV_FD
172 fd_activate ();
173#endif
174#ifdef CONFIG_VT
175#if defined(CONFIG_VGA_CONSOLE)
176 screen_info = (struct screen_info) {
177 0, 25, /* orig-x, orig-y */
178 0, /* unused */
179 0, /* orig-video-page */
180 0, /* orig-video-mode */
181 80, /* orig-video-cols */
182 0,0,0, /* ega_ax, ega_bx, ega_cx */
183 25, /* orig-video-lines */
184 VIDEO_TYPE_VGAC, /* orig-video-isVGA */
185 16 /* orig-video-points */
186 };
187#endif
188#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 mips_reboot_setup();
190
191 board_time_init = mips_time_init;
Yoichi Yuasad23ee8f2006-03-27 01:16:33 -0800192 rtc_mips_get_time = mips_rtc_get_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}