2 * Copyright (C) 1999, 2000, 2004, 2005 MIPS Technologies, Inc.
4 * Authors: Carsten Langgaard <carstenl@mips.com>
5 * Maciej W. Rozycki <macro@mips.com>
7 * This program is free software; you can distribute it and/or modify it
8 * under the terms of the GNU General Public License (Version 2) as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
20 * PROM library initialisation code.
22 #include <linux/init.h>
23 #include <linux/string.h>
24 #include <linux/kernel.h>
26 #include <asm/bootinfo.h>
27 #include <asm/gt64120.h>
29 #include <asm/system.h>
30 #include <asm/cacheflush.h>
31 #include <asm/traps.h>
33 #include <asm/gcmpregs.h>
34 #include <asm/mips-boards/prom.h>
35 #include <asm/mips-boards/generic.h>
36 #include <asm/mips-boards/bonito64.h>
37 #include <asm/mips-boards/msc01_pci.h>
39 #include <asm/mips-boards/malta.h>
42 int *_prom_argv
, *_prom_envp
;
45 * YAMON (32-bit PROM) pass arguments and environment as 32-bit pointer.
46 * This macro take care of sign extension, if running in 64-bit mode.
48 #define prom_envp(index) ((char *)(long)_prom_envp[(index)])
52 static int mips_revision_corid
;
53 int mips_revision_sconid
;
55 /* Bonito64 system controller register base. */
56 unsigned long _pcictrl_bonito
;
57 unsigned long _pcictrl_bonito_pcicfg
;
59 /* GT64120 system controller register base */
60 unsigned long _pcictrl_gt64120
;
62 /* MIPS System controller register base */
63 unsigned long _pcictrl_msc
;
65 char *prom_getenv(char *envname
)
68 * Return a pointer to the given environment variable.
69 * In 64-bit mode: we're using 64-bit pointers, but all pointers
70 * in the PROM structures are only 32-bit, so we need some
71 * workarounds, if we are running in 64-bit mode.
77 while (prom_envp(index
)) {
78 if(strncmp(envname
, prom_envp(index
), i
) == 0) {
79 return(prom_envp(index
+1));
87 static inline unsigned char str2hexnum(unsigned char c
)
89 if (c
>= '0' && c
<= '9')
91 if (c
>= 'a' && c
<= 'f')
96 static inline void str2eaddr(unsigned char *ea
, unsigned char *str
)
100 for (i
= 0; i
< 6; i
++) {
103 if((*str
== '.') || (*str
== ':'))
105 num
= str2hexnum(*str
++) << 4;
106 num
|= (str2hexnum(*str
++));
111 int get_ethernet_addr(char *ethernet_addr
)
115 ethaddr_str
= prom_getenv("ethaddr");
117 printk("ethaddr not set in boot prom\n");
120 str2eaddr(ethernet_addr
, ethaddr_str
);
122 if (init_debug
> 1) {
124 printk("get_ethernet_addr: ");
126 printk("%02x:", (unsigned char)*(ethernet_addr
+i
));
127 printk("%02x\n", *(ethernet_addr
+i
));
133 #ifdef CONFIG_SERIAL_8250_CONSOLE
134 static void __init
console_config(void)
136 char console_string
[40];
138 char parity
= '\0', bits
= '\0', flow
= '\0';
141 if ((strstr(prom_getcmdline(), "console=")) == NULL
) {
142 s
= prom_getenv("modetty0");
144 while (*s
>= '0' && *s
<= '9')
145 baud
= baud
*10 + *s
++ - '0';
147 if (*s
) parity
= *s
++;
151 if (*s
== 'h') flow
= 'r';
155 if (parity
!= 'n' && parity
!= 'o' && parity
!= 'e')
157 if (bits
!= '7' && bits
!= '8')
161 sprintf(console_string
, " console=ttyS0,%d%c%c%c", baud
, parity
, bits
, flow
);
162 strcat(prom_getcmdline(), console_string
);
163 pr_info("Config serial console:%s\n", console_string
);
168 static void __init
mips_nmi_setup(void)
171 extern char except_vec_nmi
;
173 base
= cpu_has_veic
?
174 (void *)(CAC_BASE
+ 0xa80) :
175 (void *)(CAC_BASE
+ 0x380);
176 memcpy(base
, &except_vec_nmi
, 0x80);
177 flush_icache_range((unsigned long)base
, (unsigned long)base
+ 0x80);
180 static void __init
mips_ejtag_setup(void)
183 extern char except_vec_ejtag_debug
;
185 base
= cpu_has_veic
?
186 (void *)(CAC_BASE
+ 0xa00) :
187 (void *)(CAC_BASE
+ 0x300);
188 memcpy(base
, &except_vec_ejtag_debug
, 0x80);
189 flush_icache_range((unsigned long)base
, (unsigned long)base
+ 0x80);
192 extern struct plat_smp_ops msmtc_smp_ops
;
194 void __init
prom_init(void)
199 _prom_argv
= (int *) fw_arg1
;
200 _prom_envp
= (int *) fw_arg2
;
202 mips_display_message("LINUX");
205 * early setup of _pcictrl_bonito so that we can determine
206 * the system controller on a CORE_EMUL board
208 _pcictrl_bonito
= (unsigned long)ioremap(BONITO_REG_BASE
, BONITO_REG_SIZE
);
210 mips_revision_corid
= MIPS_REVISION_CORID
;
212 if (mips_revision_corid
== MIPS_REVISION_CORID_CORE_EMUL
) {
213 if (BONITO_PCIDID
== 0x0001df53 ||
214 BONITO_PCIDID
== 0x0003df53)
215 mips_revision_corid
= MIPS_REVISION_CORID_CORE_EMUL_BON
;
217 mips_revision_corid
= MIPS_REVISION_CORID_CORE_EMUL_MSC
;
220 mips_revision_sconid
= MIPS_REVISION_SCONID
;
221 if (mips_revision_sconid
== MIPS_REVISION_SCON_OTHER
) {
222 switch (mips_revision_corid
) {
223 case MIPS_REVISION_CORID_QED_RM5261
:
224 case MIPS_REVISION_CORID_CORE_LV
:
225 case MIPS_REVISION_CORID_CORE_FPGA
:
226 case MIPS_REVISION_CORID_CORE_FPGAR2
:
227 mips_revision_sconid
= MIPS_REVISION_SCON_GT64120
;
229 case MIPS_REVISION_CORID_CORE_EMUL_BON
:
230 case MIPS_REVISION_CORID_BONITO64
:
231 case MIPS_REVISION_CORID_CORE_20K
:
232 mips_revision_sconid
= MIPS_REVISION_SCON_BONITO
;
234 case MIPS_REVISION_CORID_CORE_MSC
:
235 case MIPS_REVISION_CORID_CORE_FPGA2
:
236 case MIPS_REVISION_CORID_CORE_24K
:
238 * SOCit/ROCit support is essentially identical
239 * but make an attempt to distinguish them
241 mips_revision_sconid
= MIPS_REVISION_SCON_SOCIT
;
243 case MIPS_REVISION_CORID_CORE_FPGA3
:
244 case MIPS_REVISION_CORID_CORE_FPGA4
:
245 case MIPS_REVISION_CORID_CORE_FPGA5
:
246 case MIPS_REVISION_CORID_CORE_EMUL_MSC
:
249 mips_revision_sconid
= MIPS_REVISION_SCON_ROCIT
;
254 switch (mips_revision_sconid
) {
255 u32 start
, map
, mask
, data
;
257 case MIPS_REVISION_SCON_GT64120
:
259 * Setup the North bridge to do Master byte-lane swapping
260 * when running in bigendian.
262 _pcictrl_gt64120
= (unsigned long)ioremap(MIPS_GT_BASE
, 0x2000);
264 #ifdef CONFIG_CPU_LITTLE_ENDIAN
265 GT_WRITE(GT_PCI0_CMD_OFS
, GT_PCI0_CMD_MBYTESWAP_BIT
|
266 GT_PCI0_CMD_SBYTESWAP_BIT
);
268 GT_WRITE(GT_PCI0_CMD_OFS
, 0);
270 /* Fix up PCI I/O mapping if necessary (for Atlas). */
271 start
= GT_READ(GT_PCI0IOLD_OFS
);
272 map
= GT_READ(GT_PCI0IOREMAP_OFS
);
273 if ((start
& map
) != 0) {
275 GT_WRITE(GT_PCI0IOREMAP_OFS
, map
);
278 set_io_port_base(MALTA_GT_PORT_BASE
);
281 case MIPS_REVISION_SCON_BONITO
:
282 _pcictrl_bonito_pcicfg
= (unsigned long)ioremap(BONITO_PCICFG_BASE
, BONITO_PCICFG_SIZE
);
285 * Disable Bonito IOBC.
287 BONITO_PCIMEMBASECFG
= BONITO_PCIMEMBASECFG
&
288 ~(BONITO_PCIMEMBASECFG_MEMBASE0_CACHED
|
289 BONITO_PCIMEMBASECFG_MEMBASE1_CACHED
);
292 * Setup the North bridge to do Master byte-lane swapping
293 * when running in bigendian.
295 #ifdef CONFIG_CPU_LITTLE_ENDIAN
296 BONITO_BONGENCFG
= BONITO_BONGENCFG
&
297 ~(BONITO_BONGENCFG_MSTRBYTESWAP
|
298 BONITO_BONGENCFG_BYTESWAP
);
300 BONITO_BONGENCFG
= BONITO_BONGENCFG
|
301 BONITO_BONGENCFG_MSTRBYTESWAP
|
302 BONITO_BONGENCFG_BYTESWAP
;
305 set_io_port_base(MALTA_BONITO_PORT_BASE
);
308 case MIPS_REVISION_SCON_SOCIT
:
309 case MIPS_REVISION_SCON_ROCIT
:
310 _pcictrl_msc
= (unsigned long)ioremap(MIPS_MSC01_PCI_REG_BASE
, 0x2000);
313 MSC_READ(MSC01_PCI_CFG
, data
);
314 MSC_WRITE(MSC01_PCI_CFG
, data
& ~MSC01_PCI_CFG_EN_BIT
);
317 /* Fix up lane swapping. */
318 #ifdef CONFIG_CPU_LITTLE_ENDIAN
319 MSC_WRITE(MSC01_PCI_SWAP
, MSC01_PCI_SWAP_NOSWAP
);
321 MSC_WRITE(MSC01_PCI_SWAP
,
322 MSC01_PCI_SWAP_BYTESWAP
<< MSC01_PCI_SWAP_IO_SHF
|
323 MSC01_PCI_SWAP_BYTESWAP
<< MSC01_PCI_SWAP_MEM_SHF
|
324 MSC01_PCI_SWAP_BYTESWAP
<< MSC01_PCI_SWAP_BAR0_SHF
);
326 /* Fix up target memory mapping. */
327 MSC_READ(MSC01_PCI_BAR0
, mask
);
328 MSC_WRITE(MSC01_PCI_P2SCMSKL
, mask
& MSC01_PCI_BAR0_SIZE_MSK
);
330 /* Don't handle target retries indefinitely. */
331 if ((data
& MSC01_PCI_CFG_MAXRTRY_MSK
) ==
332 MSC01_PCI_CFG_MAXRTRY_MSK
)
333 data
= (data
& ~(MSC01_PCI_CFG_MAXRTRY_MSK
<<
334 MSC01_PCI_CFG_MAXRTRY_SHF
)) |
335 ((MSC01_PCI_CFG_MAXRTRY_MSK
- 1) <<
336 MSC01_PCI_CFG_MAXRTRY_SHF
);
339 MSC_WRITE(MSC01_PCI_CFG
, data
);
342 set_io_port_base(MALTA_MSC_PORT_BASE
);
345 case MIPS_REVISION_SCON_SOCITSC
:
346 case MIPS_REVISION_SCON_SOCITSCP
:
347 _pcictrl_msc
= (unsigned long)ioremap(MIPS_SOCITSC_PCI_REG_BASE
, 0x2000);
348 goto mips_pci_controller
;
351 /* Unknown system controller */
352 mips_display_message("SC Error");
353 while (1); /* We die here... */
355 board_nmi_handler_setup
= mips_nmi_setup
;
356 board_ejtag_handler_setup
= mips_ejtag_setup
;
360 #ifdef CONFIG_SERIAL_8250_CONSOLE
363 /* Early detection of CMP support */
364 result
= gcmp_probe(GCMP_BASE_ADDR
, GCMP_ADDRSPACE_SZ
);
366 #ifdef CONFIG_MIPS_CMP
368 register_smp_ops(&cmp_smp_ops
);
370 #ifdef CONFIG_MIPS_MT_SMP
371 #ifdef CONFIG_MIPS_CMP
373 register_smp_ops(&vsmp_smp_ops
);
375 register_smp_ops(&vsmp_smp_ops
);
378 #ifdef CONFIG_MIPS_MT_SMTC
379 register_smp_ops(&msmtc_smp_ops
);