2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * PROM library initialisation code.
8 * Copyright (C) 1999,2000,2004,2005,2012 MIPS Technologies, Inc.
10 * Authors: Carsten Langgaard <carstenl@mips.com>
11 * Maciej W. Rozycki <macro@mips.com>
12 * Steven J. Hill <sjhill@mips.com>
14 #include <linux/init.h>
15 #include <linux/string.h>
16 #include <linux/kernel.h>
17 #include <linux/pci_regs.h>
18 #include <linux/serial_core.h>
20 #include <asm/cacheflush.h>
21 #include <asm/smp-ops.h>
22 #include <asm/traps.h>
23 #include <asm/fw/fw.h>
24 #include <asm/mips-cps.h>
25 #include <asm/mips-boards/generic.h>
26 #include <asm/mips-boards/malta.h>
28 static int mips_revision_corid;
29 int mips_revision_sconid;
31 /* Bonito64 system controller register base. */
32 unsigned long _pcictrl_bonito;
33 unsigned long _pcictrl_bonito_pcicfg;
35 /* GT64120 system controller register base */
36 unsigned long _pcictrl_gt64120;
38 /* MIPS System controller register base */
39 unsigned long _pcictrl_msc;
41 #ifdef CONFIG_SERIAL_8250_CONSOLE
42 static void __init console_config(void)
44 char console_string[40];
46 char parity = '\0', bits = '\0', flow = '\0';
49 s = fw_getenv("modetty0");
51 while (*s >= '0' && *s <= '9')
52 baud = baud*10 + *s++ - '0';
68 if (parity != 'n' && parity != 'o' && parity != 'e')
70 if (bits != '7' && bits != '8')
75 if ((strstr(fw_getcmdline(), "earlycon=")) == NULL) {
76 sprintf(console_string, "uart8250,io,0x3f8,%d%c%c", baud,
78 setup_earlycon(console_string);
81 if ((strstr(fw_getcmdline(), "console=")) == NULL) {
82 sprintf(console_string, " console=ttyS0,%d%c%c%c", baud,
84 strcat(fw_getcmdline(), console_string);
85 pr_info("Config serial console:%s\n", console_string);
90 static void __init mips_nmi_setup(void)
93 extern char except_vec_nmi;
96 (void *)(CAC_BASE + 0xa80) :
97 (void *)(CAC_BASE + 0x380);
98 memcpy(base, &except_vec_nmi, 0x80);
99 flush_icache_range((unsigned long)base, (unsigned long)base + 0x80);
102 static void __init mips_ejtag_setup(void)
105 extern char except_vec_ejtag_debug;
107 base = cpu_has_veic ?
108 (void *)(CAC_BASE + 0xa00) :
109 (void *)(CAC_BASE + 0x300);
110 memcpy(base, &except_vec_ejtag_debug, 0x80);
111 flush_icache_range((unsigned long)base, (unsigned long)base + 0x80);
114 phys_addr_t mips_cpc_default_phys_base(void)
116 return CPC_BASE_ADDR;
119 void __init prom_init(void)
121 mips_display_message("LINUX");
124 * early setup of _pcictrl_bonito so that we can determine
125 * the system controller on a CORE_EMUL board
127 _pcictrl_bonito = (unsigned long)ioremap(BONITO_REG_BASE, BONITO_REG_SIZE);
129 mips_revision_corid = MIPS_REVISION_CORID;
131 if (mips_revision_corid == MIPS_REVISION_CORID_CORE_EMUL) {
132 if (BONITO_PCIDID == 0x0001df53 ||
133 BONITO_PCIDID == 0x0003df53)
134 mips_revision_corid = MIPS_REVISION_CORID_CORE_EMUL_BON;
136 mips_revision_corid = MIPS_REVISION_CORID_CORE_EMUL_MSC;
139 mips_revision_sconid = MIPS_REVISION_SCONID;
140 if (mips_revision_sconid == MIPS_REVISION_SCON_OTHER) {
141 switch (mips_revision_corid) {
142 case MIPS_REVISION_CORID_QED_RM5261:
143 case MIPS_REVISION_CORID_CORE_LV:
144 case MIPS_REVISION_CORID_CORE_FPGA:
145 case MIPS_REVISION_CORID_CORE_FPGAR2:
146 mips_revision_sconid = MIPS_REVISION_SCON_GT64120;
148 case MIPS_REVISION_CORID_CORE_EMUL_BON:
149 case MIPS_REVISION_CORID_BONITO64:
150 case MIPS_REVISION_CORID_CORE_20K:
151 mips_revision_sconid = MIPS_REVISION_SCON_BONITO;
153 case MIPS_REVISION_CORID_CORE_MSC:
154 case MIPS_REVISION_CORID_CORE_FPGA2:
155 case MIPS_REVISION_CORID_CORE_24K:
157 * SOCit/ROCit support is essentially identical
158 * but make an attempt to distinguish them
160 mips_revision_sconid = MIPS_REVISION_SCON_SOCIT;
162 case MIPS_REVISION_CORID_CORE_FPGA3:
163 case MIPS_REVISION_CORID_CORE_FPGA4:
164 case MIPS_REVISION_CORID_CORE_FPGA5:
165 case MIPS_REVISION_CORID_CORE_EMUL_MSC:
168 mips_revision_sconid = MIPS_REVISION_SCON_ROCIT;
173 switch (mips_revision_sconid) {
174 u32 start, map, mask, data;
176 case MIPS_REVISION_SCON_GT64120:
178 * Setup the North bridge to do Master byte-lane swapping
179 * when running in bigendian.
181 _pcictrl_gt64120 = (unsigned long)ioremap(MIPS_GT_BASE, 0x2000);
183 #ifdef CONFIG_CPU_LITTLE_ENDIAN
184 GT_WRITE(GT_PCI0_CMD_OFS, GT_PCI0_CMD_MBYTESWAP_BIT |
185 GT_PCI0_CMD_SBYTESWAP_BIT);
187 GT_WRITE(GT_PCI0_CMD_OFS, 0);
189 /* Fix up PCI I/O mapping if necessary (for Atlas). */
190 start = GT_READ(GT_PCI0IOLD_OFS);
191 map = GT_READ(GT_PCI0IOREMAP_OFS);
192 if ((start & map) != 0) {
194 GT_WRITE(GT_PCI0IOREMAP_OFS, map);
197 set_io_port_base(MALTA_GT_PORT_BASE);
200 case MIPS_REVISION_SCON_BONITO:
201 _pcictrl_bonito_pcicfg = (unsigned long)ioremap(BONITO_PCICFG_BASE, BONITO_PCICFG_SIZE);
204 * Disable Bonito IOBC.
206 BONITO_PCIMEMBASECFG = BONITO_PCIMEMBASECFG &
207 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED |
208 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED);
211 * Setup the North bridge to do Master byte-lane swapping
212 * when running in bigendian.
214 #ifdef CONFIG_CPU_LITTLE_ENDIAN
215 BONITO_BONGENCFG = BONITO_BONGENCFG &
216 ~(BONITO_BONGENCFG_MSTRBYTESWAP |
217 BONITO_BONGENCFG_BYTESWAP);
219 BONITO_BONGENCFG = BONITO_BONGENCFG |
220 BONITO_BONGENCFG_MSTRBYTESWAP |
221 BONITO_BONGENCFG_BYTESWAP;
224 set_io_port_base(MALTA_BONITO_PORT_BASE);
227 case MIPS_REVISION_SCON_SOCIT:
228 case MIPS_REVISION_SCON_ROCIT:
229 _pcictrl_msc = (unsigned long)ioremap(MIPS_MSC01_PCI_REG_BASE, 0x2000);
232 MSC_READ(MSC01_PCI_CFG, data);
233 MSC_WRITE(MSC01_PCI_CFG, data & ~MSC01_PCI_CFG_EN_BIT);
236 /* Fix up lane swapping. */
237 #ifdef CONFIG_CPU_LITTLE_ENDIAN
238 MSC_WRITE(MSC01_PCI_SWAP, MSC01_PCI_SWAP_NOSWAP);
240 MSC_WRITE(MSC01_PCI_SWAP,
241 MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_IO_SHF |
242 MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_MEM_SHF |
243 MSC01_PCI_SWAP_BYTESWAP << MSC01_PCI_SWAP_BAR0_SHF);
247 * Setup the Malta max (2GB) memory for PCI DMA in host bridge
248 * in transparent addressing mode.
250 mask = PHYS_OFFSET | PCI_BASE_ADDRESS_MEM_PREFETCH;
251 MSC_WRITE(MSC01_PCI_BAR0, mask);
252 MSC_WRITE(MSC01_PCI_HEAD4, mask);
254 mask &= MSC01_PCI_BAR0_SIZE_MSK;
255 MSC_WRITE(MSC01_PCI_P2SCMSKL, mask);
256 MSC_WRITE(MSC01_PCI_P2SCMAPL, mask);
258 /* Don't handle target retries indefinitely. */
259 if ((data & MSC01_PCI_CFG_MAXRTRY_MSK) ==
260 MSC01_PCI_CFG_MAXRTRY_MSK)
261 data = (data & ~(MSC01_PCI_CFG_MAXRTRY_MSK <<
262 MSC01_PCI_CFG_MAXRTRY_SHF)) |
263 ((MSC01_PCI_CFG_MAXRTRY_MSK - 1) <<
264 MSC01_PCI_CFG_MAXRTRY_SHF);
267 MSC_WRITE(MSC01_PCI_CFG, data);
270 set_io_port_base(MALTA_MSC_PORT_BASE);
273 case MIPS_REVISION_SCON_SOCITSC:
274 case MIPS_REVISION_SCON_SOCITSCP:
275 _pcictrl_msc = (unsigned long)ioremap(MIPS_SOCITSC_PCI_REG_BASE, 0x2000);
276 goto mips_pci_controller;
279 /* Unknown system controller */
280 mips_display_message("SC Error");
281 while (1); /* We die here... */
283 board_nmi_handler_setup = mips_nmi_setup;
284 board_ejtag_handler_setup = mips_ejtag_setup;
288 #ifdef CONFIG_SERIAL_8250_CONSOLE
291 /* Early detection of CMP support */
294 if (!register_cps_smp_ops())
296 if (!register_cmp_smp_ops())
298 if (!register_vsmp_smp_ops())
300 register_up_smp_ops();