2 * Carsten Langgaard, carstenl@mips.com
3 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
4 * Copyright (C) 2008 Dmitri Vorobiev
6 * This program is free software; you can distribute it and/or modify it
7 * under the terms of the GNU General Public License (Version 2) as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
19 #include <linux/cpu.h>
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/ioport.h>
23 #include <linux/irq.h>
24 #include <linux/pci.h>
25 #include <linux/screen_info.h>
26 #include <linux/time.h>
28 #include <asm/fw/fw.h>
29 #include <asm/mips-boards/generic.h>
30 #include <asm/mips-boards/malta.h>
31 #include <asm/mips-boards/maltaint.h>
33 #include <asm/traps.h>
34 #include <asm/gcmpregs.h>
36 #include <linux/console.h>
39 extern void malta_be_init(void);
40 extern int malta_be_handler(struct pt_regs
*regs
, int is_fixup
);
42 static struct resource standard_io_resources
[] = {
47 .flags
= IORESOURCE_BUSY
53 .flags
= IORESOURCE_BUSY
59 .flags
= IORESOURCE_BUSY
62 .name
= "dma page reg",
65 .flags
= IORESOURCE_BUSY
71 .flags
= IORESOURCE_BUSY
75 const char *get_system_type(void)
80 #if defined(CONFIG_MIPS_MT_SMTC)
81 const char display_string
[] = " SMTC LINUX ON MALTA ";
83 const char display_string
[] = " LINUX ON MALTA ";
84 #endif /* CONFIG_MIPS_MT_SMTC */
86 #ifdef CONFIG_BLK_DEV_FD
87 static void __init
fd_activate(void)
90 * Activate Floppy Controller in the SMSC FDC37M817 Super I/O
92 * Done by YAMON 2.00 onwards
94 /* Entering config state. */
95 SMSC_WRITE(SMSC_CONFIG_ENTER
, SMSC_CONFIG_REG
);
97 /* Activate floppy controller. */
98 SMSC_WRITE(SMSC_CONFIG_DEVNUM
, SMSC_CONFIG_REG
);
99 SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY
, SMSC_DATA_REG
);
100 SMSC_WRITE(SMSC_CONFIG_ACTIVATE
, SMSC_CONFIG_REG
);
101 SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE
, SMSC_DATA_REG
);
103 /* Exit config state. */
104 SMSC_WRITE(SMSC_CONFIG_EXIT
, SMSC_CONFIG_REG
);
108 static int __init
plat_enable_iocoherency(void)
111 if (mips_revision_sconid
== MIPS_REVISION_SCON_BONITO
) {
112 if (BONITO_PCICACHECTRL
& BONITO_PCICACHECTRL_CPUCOH_PRES
) {
113 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_CPUCOH_EN
;
114 pr_info("Enabled Bonito CPU coherency\n");
117 if (strstr(fw_getcmdline(), "iobcuncached")) {
118 BONITO_PCICACHECTRL
&= ~BONITO_PCICACHECTRL_IOBCCOH_EN
;
119 BONITO_PCIMEMBASECFG
= BONITO_PCIMEMBASECFG
&
120 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
121 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
122 pr_info("Disabled Bonito IOBC coherency\n");
124 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_IOBCCOH_EN
;
125 BONITO_PCIMEMBASECFG
|=
126 (BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
127 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
128 pr_info("Enabled Bonito IOBC coherency\n");
130 } else if (gcmp_niocu() != 0) {
131 /* Nothing special needs to be done to enable coherency */
132 pr_info("CMP IOCU detected\n");
133 if ((*(unsigned int *)0xbf403000 & 0x81) != 0x81) {
134 pr_crit("IOCU OPERATION DISABLED BY SWITCH - DEFAULTING TO SW IO COHERENCY\n");
139 hw_coherentio
= supported
;
143 static void __init
plat_setup_iocoherency(void)
145 #ifdef CONFIG_DMA_NONCOHERENT
147 * Kernel has been configured with software coherency
148 * but we might choose to turn it off and use hardware
151 if (plat_enable_iocoherency()) {
153 pr_info("Hardware DMA cache coherency disabled\n");
155 pr_info("Hardware DMA cache coherency enabled\n");
158 pr_info("Hardware DMA cache coherency unsupported, but enabled from command line!\n");
160 pr_info("Software DMA cache coherency enabled\n");
163 if (!plat_enable_iocoherency())
164 panic("Hardware DMA cache coherency not supported!");
168 #ifdef CONFIG_BLK_DEV_IDE
169 static void __init
pci_clock_check(void)
171 unsigned int __iomem
*jmpr_p
=
172 (unsigned int *) ioremap(MALTA_JMPRS_REG
, sizeof(unsigned int));
173 int jmpr
= (__raw_readl(jmpr_p
) >> 2) & 0x07;
174 static const int pciclocks
[] __initconst
= {
175 33, 20, 25, 30, 12, 16, 37, 10
177 int pciclock
= pciclocks
[jmpr
];
178 char *argptr
= fw_getcmdline();
180 if (pciclock
!= 33 && !strstr(argptr
, "idebus=")) {
181 pr_warn("WARNING: PCI clock is %dMHz, setting idebus\n",
183 argptr
+= strlen(argptr
);
184 sprintf(argptr
, " idebus=%d", pciclock
);
185 if (pciclock
< 20 || pciclock
> 66)
186 pr_warn("WARNING: IDE timing calculations will be incorrect\n");
191 #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
192 static void __init
screen_info_setup(void)
194 screen_info
= (struct screen_info
) {
198 .orig_video_page
= 0,
199 .orig_video_mode
= 0,
200 .orig_video_cols
= 80,
202 .orig_video_ega_bx
= 0,
204 .orig_video_lines
= 25,
205 .orig_video_isVGA
= VIDEO_TYPE_VGAC
,
206 .orig_video_points
= 16
211 static void __init
bonito_quirks_setup(void)
215 argptr
= fw_getcmdline();
216 if (strstr(argptr
, "debug")) {
217 BONITO_BONGENCFG
|= BONITO_BONGENCFG_DEBUGMODE
;
218 pr_info("Enabled Bonito debug mode\n");
220 BONITO_BONGENCFG
&= ~BONITO_BONGENCFG_DEBUGMODE
;
222 #ifdef CONFIG_DMA_COHERENT
223 if (BONITO_PCICACHECTRL
& BONITO_PCICACHECTRL_CPUCOH_PRES
) {
224 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_CPUCOH_EN
;
225 pr_info("Enabled Bonito CPU coherency\n");
227 argptr
= fw_getcmdline();
228 if (strstr(argptr
, "iobcuncached")) {
229 BONITO_PCICACHECTRL
&= ~BONITO_PCICACHECTRL_IOBCCOH_EN
;
230 BONITO_PCIMEMBASECFG
= BONITO_PCIMEMBASECFG
&
231 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
232 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
233 pr_info("Disabled Bonito IOBC coherency\n");
235 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_IOBCCOH_EN
;
236 BONITO_PCIMEMBASECFG
|=
237 (BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
238 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
239 pr_info("Enabled Bonito IOBC coherency\n");
242 panic("Hardware DMA cache coherency not supported");
246 void __init
plat_mem_setup(void)
252 /* Request I/O space for devices used on the Malta board. */
253 for (i
= 0; i
< ARRAY_SIZE(standard_io_resources
); i
++)
254 request_resource(&ioport_resource
, standard_io_resources
+i
);
257 * Enable DMA channel 4 (cascade channel) in the PIIX4 south bridge.
261 #ifdef CONFIG_DMA_COHERENT
262 if (mips_revision_sconid
!= MIPS_REVISION_SCON_BONITO
)
263 panic("Hardware DMA cache coherency not supported");
266 if (mips_revision_sconid
== MIPS_REVISION_SCON_BONITO
)
267 bonito_quirks_setup();
269 plat_setup_iocoherency();
271 #ifdef CONFIG_BLK_DEV_IDE
275 #ifdef CONFIG_BLK_DEV_FD
279 #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
283 board_be_init
= malta_be_init
;
284 board_be_handler
= malta_be_handler
;