1 // SPDX-License-Identifier: GPL-2.0-only
3 * Carsten Langgaard, carstenl@mips.com
4 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
5 * Copyright (C) 2008 Dmitri Vorobiev
8 #include <linux/init.h>
9 #include <linux/sched.h>
10 #include <linux/ioport.h>
11 #include <linux/irq.h>
12 #include <linux/of_fdt.h>
13 #include <linux/pci.h>
14 #include <linux/screen_info.h>
15 #include <linux/time.h>
17 #include <asm/dma-coherence.h>
18 #include <asm/fw/fw.h>
19 #include <asm/mips-cps.h>
20 #include <asm/mips-boards/generic.h>
21 #include <asm/mips-boards/malta.h>
22 #include <asm/mips-boards/maltaint.h>
25 #include <asm/traps.h>
27 #include <linux/console.h>
30 #define ROCIT_CONFIG_GEN0 0x1f403000
31 #define ROCIT_CONFIG_GEN0_PCI_IOCU BIT(7)
33 static struct resource standard_io_resources
[] = {
38 .flags
= IORESOURCE_IO
| IORESOURCE_BUSY
44 .flags
= IORESOURCE_IO
| IORESOURCE_BUSY
50 .flags
= IORESOURCE_IO
| IORESOURCE_BUSY
53 .name
= "dma page reg",
56 .flags
= IORESOURCE_IO
| IORESOURCE_BUSY
62 .flags
= IORESOURCE_IO
| IORESOURCE_BUSY
66 const char *get_system_type(void)
71 #ifdef CONFIG_BLK_DEV_FD
72 static void __init
fd_activate(void)
75 * Activate Floppy Controller in the SMSC FDC37M817 Super I/O
77 * Done by YAMON 2.00 onwards
79 /* Entering config state. */
80 SMSC_WRITE(SMSC_CONFIG_ENTER
, SMSC_CONFIG_REG
);
82 /* Activate floppy controller. */
83 SMSC_WRITE(SMSC_CONFIG_DEVNUM
, SMSC_CONFIG_REG
);
84 SMSC_WRITE(SMSC_CONFIG_DEVNUM_FLOPPY
, SMSC_DATA_REG
);
85 SMSC_WRITE(SMSC_CONFIG_ACTIVATE
, SMSC_CONFIG_REG
);
86 SMSC_WRITE(SMSC_CONFIG_ACTIVATE_ENABLE
, SMSC_DATA_REG
);
88 /* Exit config state. */
89 SMSC_WRITE(SMSC_CONFIG_EXIT
, SMSC_CONFIG_REG
);
93 static int __init
plat_enable_iocoherency(void)
98 if (mips_revision_sconid
== MIPS_REVISION_SCON_BONITO
) {
99 if (BONITO_PCICACHECTRL
& BONITO_PCICACHECTRL_CPUCOH_PRES
) {
100 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_CPUCOH_EN
;
101 pr_info("Enabled Bonito CPU coherency\n");
104 if (strstr(fw_getcmdline(), "iobcuncached")) {
105 BONITO_PCICACHECTRL
&= ~BONITO_PCICACHECTRL_IOBCCOH_EN
;
106 BONITO_PCIMEMBASECFG
= BONITO_PCIMEMBASECFG
&
107 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
108 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
109 pr_info("Disabled Bonito IOBC coherency\n");
111 BONITO_PCICACHECTRL
|= BONITO_PCICACHECTRL_IOBCCOH_EN
;
112 BONITO_PCIMEMBASECFG
|=
113 (BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
114 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
115 pr_info("Enabled Bonito IOBC coherency\n");
117 } else if (mips_cps_numiocu(0) != 0) {
118 /* Nothing special needs to be done to enable coherency */
119 pr_info("CMP IOCU detected\n");
120 cfg
= __raw_readl((u32
*)CKSEG1ADDR(ROCIT_CONFIG_GEN0
));
121 if (!(cfg
& ROCIT_CONFIG_GEN0_PCI_IOCU
)) {
122 pr_crit("IOCU OPERATION DISABLED BY SWITCH - DEFAULTING TO SW IO COHERENCY\n");
127 hw_coherentio
= supported
;
131 static void __init
plat_setup_iocoherency(void)
133 if (plat_enable_iocoherency()) {
134 if (coherentio
== IO_COHERENCE_DISABLED
)
135 pr_info("Hardware DMA cache coherency disabled\n");
137 pr_info("Hardware DMA cache coherency enabled\n");
139 if (coherentio
== IO_COHERENCE_ENABLED
)
140 pr_info("Hardware DMA cache coherency unsupported, but enabled from command line!\n");
142 pr_info("Software DMA cache coherency enabled\n");
146 static void __init
pci_clock_check(void)
148 unsigned int __iomem
*jmpr_p
=
149 (unsigned int *) ioremap(MALTA_JMPRS_REG
, sizeof(unsigned int));
150 int jmpr
= (__raw_readl(jmpr_p
) >> 2) & 0x07;
151 static const int pciclocks
[] __initconst
= {
152 33, 20, 25, 30, 12, 16, 37, 10
154 int pciclock
= pciclocks
[jmpr
];
155 char *optptr
, *argptr
= fw_getcmdline();
158 * If user passed a pci_clock= option, don't tack on another one
160 optptr
= strstr(argptr
, "pci_clock=");
161 if (optptr
&& (optptr
== argptr
|| optptr
[-1] == ' '))
164 if (pciclock
!= 33) {
165 pr_warn("WARNING: PCI clock is %dMHz, setting pci_clock\n",
167 argptr
+= strlen(argptr
);
168 sprintf(argptr
, " pci_clock=%d", pciclock
);
169 if (pciclock
< 20 || pciclock
> 66)
170 pr_warn("WARNING: IDE timing calculations will be "
175 #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
176 static void __init
screen_info_setup(void)
178 screen_info
= (struct screen_info
) {
182 .orig_video_page
= 0,
183 .orig_video_mode
= 0,
184 .orig_video_cols
= 80,
186 .orig_video_ega_bx
= 0,
188 .orig_video_lines
= 25,
189 .orig_video_isVGA
= VIDEO_TYPE_VGAC
,
190 .orig_video_points
= 16
195 static void __init
bonito_quirks_setup(void)
199 argptr
= fw_getcmdline();
200 if (strstr(argptr
, "debug")) {
201 BONITO_BONGENCFG
|= BONITO_BONGENCFG_DEBUGMODE
;
202 pr_info("Enabled Bonito debug mode\n");
204 BONITO_BONGENCFG
&= ~BONITO_BONGENCFG_DEBUGMODE
;
207 void __init
*plat_get_fdt(void)
209 return (void *)__dtb_start
;
212 void __init
plat_mem_setup(void)
215 void *fdt
= plat_get_fdt();
217 fdt
= malta_dt_shim(fdt
);
218 __dt_setup_arch(fdt
);
220 if (IS_ENABLED(CONFIG_EVA
))
221 /* EVA has already been configured in mach-malta/kernel-init.h */
222 pr_info("Enhanced Virtual Addressing (EVA) activated\n");
226 /* Request I/O space for devices used on the Malta board. */
227 for (i
= 0; i
< ARRAY_SIZE(standard_io_resources
); i
++)
228 request_resource(&ioport_resource
, standard_io_resources
+i
);
231 * Enable DMA channel 4 (cascade channel) in the PIIX4 south bridge.
235 if (mips_revision_sconid
== MIPS_REVISION_SCON_BONITO
)
236 bonito_quirks_setup();
238 plat_setup_iocoherency();
242 #ifdef CONFIG_BLK_DEV_FD
246 #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)