xref: /openbmc/linux/arch/mips/cavium-octeon/setup.c (revision 05bcf503)
1 /*
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
4  * for more details.
5  *
6  * Copyright (C) 2004-2007 Cavium Networks
7  * Copyright (C) 2008 Wind River Systems
8  */
9 #include <linux/init.h>
10 #include <linux/console.h>
11 #include <linux/delay.h>
12 #include <linux/export.h>
13 #include <linux/interrupt.h>
14 #include <linux/io.h>
15 #include <linux/serial.h>
16 #include <linux/smp.h>
17 #include <linux/types.h>
18 #include <linux/string.h>	/* for memset */
19 #include <linux/tty.h>
20 #include <linux/time.h>
21 #include <linux/platform_device.h>
22 #include <linux/serial_core.h>
23 #include <linux/serial_8250.h>
24 #include <linux/of_fdt.h>
25 #include <linux/libfdt.h>
26 
27 #include <asm/processor.h>
28 #include <asm/reboot.h>
29 #include <asm/smp-ops.h>
30 #include <asm/irq_cpu.h>
31 #include <asm/mipsregs.h>
32 #include <asm/bootinfo.h>
33 #include <asm/sections.h>
34 #include <asm/time.h>
35 
36 #include <asm/octeon/octeon.h>
37 #include <asm/octeon/pci-octeon.h>
38 #include <asm/octeon/cvmx-mio-defs.h>
39 
40 #ifdef CONFIG_CAVIUM_DECODE_RSL
41 extern void cvmx_interrupt_rsl_decode(void);
42 extern int __cvmx_interrupt_ecc_report_single_bit_errors;
43 extern void cvmx_interrupt_rsl_enable(void);
44 #endif
45 
46 extern struct plat_smp_ops octeon_smp_ops;
47 
48 #ifdef CONFIG_PCI
49 extern void pci_console_init(const char *arg);
50 #endif
51 
52 static unsigned long long MAX_MEMORY = 512ull << 20;
53 
54 struct octeon_boot_descriptor *octeon_boot_desc_ptr;
55 
56 struct cvmx_bootinfo *octeon_bootinfo;
57 EXPORT_SYMBOL(octeon_bootinfo);
58 
59 #ifdef CONFIG_CAVIUM_RESERVE32
60 uint64_t octeon_reserve32_memory;
61 EXPORT_SYMBOL(octeon_reserve32_memory);
62 #endif
63 
64 static int octeon_uart;
65 
66 extern asmlinkage void handle_int(void);
67 extern asmlinkage void plat_irq_dispatch(void);
68 
69 /**
70  * Return non zero if we are currently running in the Octeon simulator
71  *
72  * Returns
73  */
74 int octeon_is_simulation(void)
75 {
76 	return octeon_bootinfo->board_type == CVMX_BOARD_TYPE_SIM;
77 }
78 EXPORT_SYMBOL(octeon_is_simulation);
79 
80 /**
81  * Return true if Octeon is in PCI Host mode. This means
82  * Linux can control the PCI bus.
83  *
84  * Returns Non zero if Octeon in host mode.
85  */
86 int octeon_is_pci_host(void)
87 {
88 #ifdef CONFIG_PCI
89 	return octeon_bootinfo->config_flags & CVMX_BOOTINFO_CFG_FLAG_PCI_HOST;
90 #else
91 	return 0;
92 #endif
93 }
94 
95 /**
96  * Get the clock rate of Octeon
97  *
98  * Returns Clock rate in HZ
99  */
100 uint64_t octeon_get_clock_rate(void)
101 {
102 	struct cvmx_sysinfo *sysinfo = cvmx_sysinfo_get();
103 
104 	return sysinfo->cpu_clock_hz;
105 }
106 EXPORT_SYMBOL(octeon_get_clock_rate);
107 
108 static u64 octeon_io_clock_rate;
109 
110 u64 octeon_get_io_clock_rate(void)
111 {
112 	return octeon_io_clock_rate;
113 }
114 EXPORT_SYMBOL(octeon_get_io_clock_rate);
115 
116 
117 /**
118  * Write to the LCD display connected to the bootbus. This display
119  * exists on most Cavium evaluation boards. If it doesn't exist, then
120  * this function doesn't do anything.
121  *
122  * @s:      String to write
123  */
124 void octeon_write_lcd(const char *s)
125 {
126 	if (octeon_bootinfo->led_display_base_addr) {
127 		void __iomem *lcd_address =
128 			ioremap_nocache(octeon_bootinfo->led_display_base_addr,
129 					8);
130 		int i;
131 		for (i = 0; i < 8; i++, s++) {
132 			if (*s)
133 				iowrite8(*s, lcd_address + i);
134 			else
135 				iowrite8(' ', lcd_address + i);
136 		}
137 		iounmap(lcd_address);
138 	}
139 }
140 
141 /**
142  * Return the console uart passed by the bootloader
143  *
144  * Returns uart   (0 or 1)
145  */
146 int octeon_get_boot_uart(void)
147 {
148 	int uart;
149 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
150 	uart = 1;
151 #else
152 	uart = (octeon_boot_desc_ptr->flags & OCTEON_BL_FLAG_CONSOLE_UART1) ?
153 		1 : 0;
154 #endif
155 	return uart;
156 }
157 
158 /**
159  * Get the coremask Linux was booted on.
160  *
161  * Returns Core mask
162  */
163 int octeon_get_boot_coremask(void)
164 {
165 	return octeon_boot_desc_ptr->core_mask;
166 }
167 
168 /**
169  * Check the hardware BIST results for a CPU
170  */
171 void octeon_check_cpu_bist(void)
172 {
173 	const int coreid = cvmx_get_core_num();
174 	unsigned long long mask;
175 	unsigned long long bist_val;
176 
177 	/* Check BIST results for COP0 registers */
178 	mask = 0x1f00000000ull;
179 	bist_val = read_octeon_c0_icacheerr();
180 	if (bist_val & mask)
181 		pr_err("Core%d BIST Failure: CacheErr(icache) = 0x%llx\n",
182 		       coreid, bist_val);
183 
184 	bist_val = read_octeon_c0_dcacheerr();
185 	if (bist_val & 1)
186 		pr_err("Core%d L1 Dcache parity error: "
187 		       "CacheErr(dcache) = 0x%llx\n",
188 		       coreid, bist_val);
189 
190 	mask = 0xfc00000000000000ull;
191 	bist_val = read_c0_cvmmemctl();
192 	if (bist_val & mask)
193 		pr_err("Core%d BIST Failure: COP0_CVM_MEM_CTL = 0x%llx\n",
194 		       coreid, bist_val);
195 
196 	write_octeon_c0_dcacheerr(0);
197 }
198 
199 /**
200  * Reboot Octeon
201  *
202  * @command: Command to pass to the bootloader. Currently ignored.
203  */
204 static void octeon_restart(char *command)
205 {
206 	/* Disable all watchdogs before soft reset. They don't get cleared */
207 #ifdef CONFIG_SMP
208 	int cpu;
209 	for_each_online_cpu(cpu)
210 		cvmx_write_csr(CVMX_CIU_WDOGX(cpu_logical_map(cpu)), 0);
211 #else
212 	cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
213 #endif
214 
215 	mb();
216 	while (1)
217 		cvmx_write_csr(CVMX_CIU_SOFT_RST, 1);
218 }
219 
220 
221 /**
222  * Permanently stop a core.
223  *
224  * @arg: Ignored.
225  */
226 static void octeon_kill_core(void *arg)
227 {
228 	mb();
229 	if (octeon_is_simulation()) {
230 		/* The simulator needs the watchdog to stop for dead cores */
231 		cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
232 		/* A break instruction causes the simulator stop a core */
233 		asm volatile ("sync\nbreak");
234 	}
235 }
236 
237 
238 /**
239  * Halt the system
240  */
241 static void octeon_halt(void)
242 {
243 	smp_call_function(octeon_kill_core, NULL, 0);
244 
245 	switch (octeon_bootinfo->board_type) {
246 	case CVMX_BOARD_TYPE_NAO38:
247 		/* Driving a 1 to GPIO 12 shuts off this board */
248 		cvmx_write_csr(CVMX_GPIO_BIT_CFGX(12), 1);
249 		cvmx_write_csr(CVMX_GPIO_TX_SET, 0x1000);
250 		break;
251 	default:
252 		octeon_write_lcd("PowerOff");
253 		break;
254 	}
255 
256 	octeon_kill_core(NULL);
257 }
258 
259 /**
260  * Handle all the error condition interrupts that might occur.
261  *
262  */
263 #ifdef CONFIG_CAVIUM_DECODE_RSL
264 static irqreturn_t octeon_rlm_interrupt(int cpl, void *dev_id)
265 {
266 	cvmx_interrupt_rsl_decode();
267 	return IRQ_HANDLED;
268 }
269 #endif
270 
271 /**
272  * Return a string representing the system type
273  *
274  * Returns
275  */
276 const char *octeon_board_type_string(void)
277 {
278 	static char name[80];
279 	sprintf(name, "%s (%s)",
280 		cvmx_board_type_to_string(octeon_bootinfo->board_type),
281 		octeon_model_get_string(read_c0_prid()));
282 	return name;
283 }
284 
285 const char *get_system_type(void)
286 	__attribute__ ((alias("octeon_board_type_string")));
287 
288 void octeon_user_io_init(void)
289 {
290 	union octeon_cvmemctl cvmmemctl;
291 	union cvmx_iob_fau_timeout fau_timeout;
292 	union cvmx_pow_nw_tim nm_tim;
293 
294 	/* Get the current settings for CP0_CVMMEMCTL_REG */
295 	cvmmemctl.u64 = read_c0_cvmmemctl();
296 	/* R/W If set, marked write-buffer entries time out the same
297 	 * as as other entries; if clear, marked write-buffer entries
298 	 * use the maximum timeout. */
299 	cvmmemctl.s.dismarkwblongto = 1;
300 	/* R/W If set, a merged store does not clear the write-buffer
301 	 * entry timeout state. */
302 	cvmmemctl.s.dismrgclrwbto = 0;
303 	/* R/W Two bits that are the MSBs of the resultant CVMSEG LM
304 	 * word location for an IOBDMA. The other 8 bits come from the
305 	 * SCRADDR field of the IOBDMA. */
306 	cvmmemctl.s.iobdmascrmsb = 0;
307 	/* R/W If set, SYNCWS and SYNCS only order marked stores; if
308 	 * clear, SYNCWS and SYNCS only order unmarked
309 	 * stores. SYNCWSMARKED has no effect when DISSYNCWS is
310 	 * set. */
311 	cvmmemctl.s.syncwsmarked = 0;
312 	/* R/W If set, SYNCWS acts as SYNCW and SYNCS acts as SYNC. */
313 	cvmmemctl.s.dissyncws = 0;
314 	/* R/W If set, no stall happens on write buffer full. */
315 	if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2))
316 		cvmmemctl.s.diswbfst = 1;
317 	else
318 		cvmmemctl.s.diswbfst = 0;
319 	/* R/W If set (and SX set), supervisor-level loads/stores can
320 	 * use XKPHYS addresses with <48>==0 */
321 	cvmmemctl.s.xkmemenas = 0;
322 
323 	/* R/W If set (and UX set), user-level loads/stores can use
324 	 * XKPHYS addresses with VA<48>==0 */
325 	cvmmemctl.s.xkmemenau = 0;
326 
327 	/* R/W If set (and SX set), supervisor-level loads/stores can
328 	 * use XKPHYS addresses with VA<48>==1 */
329 	cvmmemctl.s.xkioenas = 0;
330 
331 	/* R/W If set (and UX set), user-level loads/stores can use
332 	 * XKPHYS addresses with VA<48>==1 */
333 	cvmmemctl.s.xkioenau = 0;
334 
335 	/* R/W If set, all stores act as SYNCW (NOMERGE must be set
336 	 * when this is set) RW, reset to 0. */
337 	cvmmemctl.s.allsyncw = 0;
338 
339 	/* R/W If set, no stores merge, and all stores reach the
340 	 * coherent bus in order. */
341 	cvmmemctl.s.nomerge = 0;
342 	/* R/W Selects the bit in the counter used for DID time-outs 0
343 	 * = 231, 1 = 230, 2 = 229, 3 = 214. Actual time-out is
344 	 * between 1x and 2x this interval. For example, with
345 	 * DIDTTO=3, expiration interval is between 16K and 32K. */
346 	cvmmemctl.s.didtto = 0;
347 	/* R/W If set, the (mem) CSR clock never turns off. */
348 	cvmmemctl.s.csrckalwys = 0;
349 	/* R/W If set, mclk never turns off. */
350 	cvmmemctl.s.mclkalwys = 0;
351 	/* R/W Selects the bit in the counter used for write buffer
352 	 * flush time-outs (WBFLT+11) is the bit position in an
353 	 * internal counter used to determine expiration. The write
354 	 * buffer expires between 1x and 2x this interval. For
355 	 * example, with WBFLT = 0, a write buffer expires between 2K
356 	 * and 4K cycles after the write buffer entry is allocated. */
357 	cvmmemctl.s.wbfltime = 0;
358 	/* R/W If set, do not put Istream in the L2 cache. */
359 	cvmmemctl.s.istrnol2 = 0;
360 
361 	/*
362 	 * R/W The write buffer threshold. As per erratum Core-14752
363 	 * for CN63XX, a sc/scd might fail if the write buffer is
364 	 * full.  Lowering WBTHRESH greatly lowers the chances of the
365 	 * write buffer ever being full and triggering the erratum.
366 	 */
367 	if (OCTEON_IS_MODEL(OCTEON_CN63XX_PASS1_X))
368 		cvmmemctl.s.wbthresh = 4;
369 	else
370 		cvmmemctl.s.wbthresh = 10;
371 
372 	/* R/W If set, CVMSEG is available for loads/stores in
373 	 * kernel/debug mode. */
374 #if CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
375 	cvmmemctl.s.cvmsegenak = 1;
376 #else
377 	cvmmemctl.s.cvmsegenak = 0;
378 #endif
379 	/* R/W If set, CVMSEG is available for loads/stores in
380 	 * supervisor mode. */
381 	cvmmemctl.s.cvmsegenas = 0;
382 	/* R/W If set, CVMSEG is available for loads/stores in user
383 	 * mode. */
384 	cvmmemctl.s.cvmsegenau = 0;
385 	/* R/W Size of local memory in cache blocks, 54 (6912 bytes)
386 	 * is max legal value. */
387 	cvmmemctl.s.lmemsz = CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE;
388 
389 	write_c0_cvmmemctl(cvmmemctl.u64);
390 
391 	if (smp_processor_id() == 0)
392 		pr_notice("CVMSEG size: %d cache lines (%d bytes)\n",
393 			  CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE,
394 			  CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE * 128);
395 
396 	/* Set a default for the hardware timeouts */
397 	fau_timeout.u64 = 0;
398 	fau_timeout.s.tout_val = 0xfff;
399 	/* Disable tagwait FAU timeout */
400 	fau_timeout.s.tout_enb = 0;
401 	cvmx_write_csr(CVMX_IOB_FAU_TIMEOUT, fau_timeout.u64);
402 
403 	nm_tim.u64 = 0;
404 	/* 4096 cycles */
405 	nm_tim.s.nw_tim = 3;
406 	cvmx_write_csr(CVMX_POW_NW_TIM, nm_tim.u64);
407 
408 	write_octeon_c0_icacheerr(0);
409 	write_c0_derraddr1(0);
410 }
411 
412 /**
413  * Early entry point for arch setup
414  */
415 void __init prom_init(void)
416 {
417 	struct cvmx_sysinfo *sysinfo;
418 	int i;
419 	int argc;
420 #ifdef CONFIG_CAVIUM_RESERVE32
421 	int64_t addr = -1;
422 #endif
423 	/*
424 	 * The bootloader passes a pointer to the boot descriptor in
425 	 * $a3, this is available as fw_arg3.
426 	 */
427 	octeon_boot_desc_ptr = (struct octeon_boot_descriptor *)fw_arg3;
428 	octeon_bootinfo =
429 		cvmx_phys_to_ptr(octeon_boot_desc_ptr->cvmx_desc_vaddr);
430 	cvmx_bootmem_init(cvmx_phys_to_ptr(octeon_bootinfo->phy_mem_desc_addr));
431 
432 	sysinfo = cvmx_sysinfo_get();
433 	memset(sysinfo, 0, sizeof(*sysinfo));
434 	sysinfo->system_dram_size = octeon_bootinfo->dram_size << 20;
435 	sysinfo->phy_mem_desc_ptr =
436 		cvmx_phys_to_ptr(octeon_bootinfo->phy_mem_desc_addr);
437 	sysinfo->core_mask = octeon_bootinfo->core_mask;
438 	sysinfo->exception_base_addr = octeon_bootinfo->exception_base_addr;
439 	sysinfo->cpu_clock_hz = octeon_bootinfo->eclock_hz;
440 	sysinfo->dram_data_rate_hz = octeon_bootinfo->dclock_hz * 2;
441 	sysinfo->board_type = octeon_bootinfo->board_type;
442 	sysinfo->board_rev_major = octeon_bootinfo->board_rev_major;
443 	sysinfo->board_rev_minor = octeon_bootinfo->board_rev_minor;
444 	memcpy(sysinfo->mac_addr_base, octeon_bootinfo->mac_addr_base,
445 	       sizeof(sysinfo->mac_addr_base));
446 	sysinfo->mac_addr_count = octeon_bootinfo->mac_addr_count;
447 	memcpy(sysinfo->board_serial_number,
448 	       octeon_bootinfo->board_serial_number,
449 	       sizeof(sysinfo->board_serial_number));
450 	sysinfo->compact_flash_common_base_addr =
451 		octeon_bootinfo->compact_flash_common_base_addr;
452 	sysinfo->compact_flash_attribute_base_addr =
453 		octeon_bootinfo->compact_flash_attribute_base_addr;
454 	sysinfo->led_display_base_addr = octeon_bootinfo->led_display_base_addr;
455 	sysinfo->dfa_ref_clock_hz = octeon_bootinfo->dfa_ref_clock_hz;
456 	sysinfo->bootloader_config_flags = octeon_bootinfo->config_flags;
457 
458 	if (OCTEON_IS_MODEL(OCTEON_CN6XXX)) {
459 		/* I/O clock runs at a different rate than the CPU. */
460 		union cvmx_mio_rst_boot rst_boot;
461 		rst_boot.u64 = cvmx_read_csr(CVMX_MIO_RST_BOOT);
462 		octeon_io_clock_rate = 50000000 * rst_boot.s.pnr_mul;
463 	} else {
464 		octeon_io_clock_rate = sysinfo->cpu_clock_hz;
465 	}
466 
467 	/*
468 	 * Only enable the LED controller if we're running on a CN38XX, CN58XX,
469 	 * or CN56XX. The CN30XX and CN31XX don't have an LED controller.
470 	 */
471 	if (!octeon_is_simulation() &&
472 	    octeon_has_feature(OCTEON_FEATURE_LED_CONTROLLER)) {
473 		cvmx_write_csr(CVMX_LED_EN, 0);
474 		cvmx_write_csr(CVMX_LED_PRT, 0);
475 		cvmx_write_csr(CVMX_LED_DBG, 0);
476 		cvmx_write_csr(CVMX_LED_PRT_FMT, 0);
477 		cvmx_write_csr(CVMX_LED_UDD_CNTX(0), 32);
478 		cvmx_write_csr(CVMX_LED_UDD_CNTX(1), 32);
479 		cvmx_write_csr(CVMX_LED_UDD_DATX(0), 0);
480 		cvmx_write_csr(CVMX_LED_UDD_DATX(1), 0);
481 		cvmx_write_csr(CVMX_LED_EN, 1);
482 	}
483 #ifdef CONFIG_CAVIUM_RESERVE32
484 	/*
485 	 * We need to temporarily allocate all memory in the reserve32
486 	 * region. This makes sure the kernel doesn't allocate this
487 	 * memory when it is getting memory from the
488 	 * bootloader. Later, after the memory allocations are
489 	 * complete, the reserve32 will be freed.
490 	 *
491 	 * Allocate memory for RESERVED32 aligned on 2MB boundary. This
492 	 * is in case we later use hugetlb entries with it.
493 	 */
494 	addr = cvmx_bootmem_phy_named_block_alloc(CONFIG_CAVIUM_RESERVE32 << 20,
495 						0, 0, 2 << 20,
496 						"CAVIUM_RESERVE32", 0);
497 	if (addr < 0)
498 		pr_err("Failed to allocate CAVIUM_RESERVE32 memory area\n");
499 	else
500 		octeon_reserve32_memory = addr;
501 #endif
502 
503 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2
504 	if (cvmx_read_csr(CVMX_L2D_FUS3) & (3ull << 34)) {
505 		pr_info("Skipping L2 locking due to reduced L2 cache size\n");
506 	} else {
507 		uint32_t ebase = read_c0_ebase() & 0x3ffff000;
508 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_TLB
509 		/* TLB refill */
510 		cvmx_l2c_lock_mem_region(ebase, 0x100);
511 #endif
512 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_EXCEPTION
513 		/* General exception */
514 		cvmx_l2c_lock_mem_region(ebase + 0x180, 0x80);
515 #endif
516 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_LOW_LEVEL_INTERRUPT
517 		/* Interrupt handler */
518 		cvmx_l2c_lock_mem_region(ebase + 0x200, 0x80);
519 #endif
520 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_INTERRUPT
521 		cvmx_l2c_lock_mem_region(__pa_symbol(handle_int), 0x100);
522 		cvmx_l2c_lock_mem_region(__pa_symbol(plat_irq_dispatch), 0x80);
523 #endif
524 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_MEMCPY
525 		cvmx_l2c_lock_mem_region(__pa_symbol(memcpy), 0x480);
526 #endif
527 	}
528 #endif
529 
530 	octeon_check_cpu_bist();
531 
532 	octeon_uart = octeon_get_boot_uart();
533 
534 #ifdef CONFIG_SMP
535 	octeon_write_lcd("LinuxSMP");
536 #else
537 	octeon_write_lcd("Linux");
538 #endif
539 
540 #ifdef CONFIG_CAVIUM_GDB
541 	/*
542 	 * When debugging the linux kernel, force the cores to enter
543 	 * the debug exception handler to break in.
544 	 */
545 	if (octeon_get_boot_debug_flag()) {
546 		cvmx_write_csr(CVMX_CIU_DINT, 1 << cvmx_get_core_num());
547 		cvmx_read_csr(CVMX_CIU_DINT);
548 	}
549 #endif
550 
551 	octeon_setup_delays();
552 
553 	/*
554 	 * BIST should always be enabled when doing a soft reset. L2
555 	 * Cache locking for instance is not cleared unless BIST is
556 	 * enabled.  Unfortunately due to a chip errata G-200 for
557 	 * Cn38XX and CN31XX, BIST msut be disabled on these parts.
558 	 */
559 	if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2) ||
560 	    OCTEON_IS_MODEL(OCTEON_CN31XX))
561 		cvmx_write_csr(CVMX_CIU_SOFT_BIST, 0);
562 	else
563 		cvmx_write_csr(CVMX_CIU_SOFT_BIST, 1);
564 
565 	/* Default to 64MB in the simulator to speed things up */
566 	if (octeon_is_simulation())
567 		MAX_MEMORY = 64ull << 20;
568 
569 	arcs_cmdline[0] = 0;
570 	argc = octeon_boot_desc_ptr->argc;
571 	for (i = 0; i < argc; i++) {
572 		const char *arg =
573 			cvmx_phys_to_ptr(octeon_boot_desc_ptr->argv[i]);
574 		if ((strncmp(arg, "MEM=", 4) == 0) ||
575 		    (strncmp(arg, "mem=", 4) == 0)) {
576 			sscanf(arg + 4, "%llu", &MAX_MEMORY);
577 			MAX_MEMORY <<= 20;
578 			if (MAX_MEMORY == 0)
579 				MAX_MEMORY = 32ull << 30;
580 		} else if (strcmp(arg, "ecc_verbose") == 0) {
581 #ifdef CONFIG_CAVIUM_REPORT_SINGLE_BIT_ECC
582 			__cvmx_interrupt_ecc_report_single_bit_errors = 1;
583 			pr_notice("Reporting of single bit ECC errors is "
584 				  "turned on\n");
585 #endif
586 		} else if (strlen(arcs_cmdline) + strlen(arg) + 1 <
587 			   sizeof(arcs_cmdline) - 1) {
588 			strcat(arcs_cmdline, " ");
589 			strcat(arcs_cmdline, arg);
590 		}
591 	}
592 
593 	if (strstr(arcs_cmdline, "console=") == NULL) {
594 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
595 		strcat(arcs_cmdline, " console=ttyS0,115200");
596 #else
597 		if (octeon_uart == 1)
598 			strcat(arcs_cmdline, " console=ttyS1,115200");
599 		else
600 			strcat(arcs_cmdline, " console=ttyS0,115200");
601 #endif
602 	}
603 
604 	if (octeon_is_simulation()) {
605 		/*
606 		 * The simulator uses a mtdram device pre filled with
607 		 * the filesystem. Also specify the calibration delay
608 		 * to avoid calculating it every time.
609 		 */
610 		strcat(arcs_cmdline, " rw root=1f00 slram=root,0x40000000,+1073741824");
611 	}
612 
613 	mips_hpt_frequency = octeon_get_clock_rate();
614 
615 	octeon_init_cvmcount();
616 
617 	_machine_restart = octeon_restart;
618 	_machine_halt = octeon_halt;
619 
620 	octeon_user_io_init();
621 	register_smp_ops(&octeon_smp_ops);
622 }
623 
624 /* Exclude a single page from the regions obtained in plat_mem_setup. */
625 static __init void memory_exclude_page(u64 addr, u64 *mem, u64 *size)
626 {
627 	if (addr > *mem && addr < *mem + *size) {
628 		u64 inc = addr - *mem;
629 		add_memory_region(*mem, inc, BOOT_MEM_RAM);
630 		*mem += inc;
631 		*size -= inc;
632 	}
633 
634 	if (addr == *mem && *size > PAGE_SIZE) {
635 		*mem += PAGE_SIZE;
636 		*size -= PAGE_SIZE;
637 	}
638 }
639 
640 void __init plat_mem_setup(void)
641 {
642 	uint64_t mem_alloc_size;
643 	uint64_t total;
644 	int64_t memory;
645 
646 	total = 0;
647 
648 	/*
649 	 * The Mips memory init uses the first memory location for
650 	 * some memory vectors. When SPARSEMEM is in use, it doesn't
651 	 * verify that the size is big enough for the final
652 	 * vectors. Making the smallest chuck 4MB seems to be enough
653 	 * to consistently work.
654 	 */
655 	mem_alloc_size = 4 << 20;
656 	if (mem_alloc_size > MAX_MEMORY)
657 		mem_alloc_size = MAX_MEMORY;
658 
659 	/*
660 	 * When allocating memory, we want incrementing addresses from
661 	 * bootmem_alloc so the code in add_memory_region can merge
662 	 * regions next to each other.
663 	 */
664 	cvmx_bootmem_lock();
665 	while ((boot_mem_map.nr_map < BOOT_MEM_MAP_MAX)
666 		&& (total < MAX_MEMORY)) {
667 #if defined(CONFIG_64BIT) || defined(CONFIG_64BIT_PHYS_ADDR)
668 		memory = cvmx_bootmem_phy_alloc(mem_alloc_size,
669 						__pa_symbol(&__init_end), -1,
670 						0x100000,
671 						CVMX_BOOTMEM_FLAG_NO_LOCKING);
672 #elif defined(CONFIG_HIGHMEM)
673 		memory = cvmx_bootmem_phy_alloc(mem_alloc_size, 0, 1ull << 31,
674 						0x100000,
675 						CVMX_BOOTMEM_FLAG_NO_LOCKING);
676 #else
677 		memory = cvmx_bootmem_phy_alloc(mem_alloc_size, 0, 512 << 20,
678 						0x100000,
679 						CVMX_BOOTMEM_FLAG_NO_LOCKING);
680 #endif
681 		if (memory >= 0) {
682 			u64 size = mem_alloc_size;
683 
684 			/*
685 			 * exclude a page at the beginning and end of
686 			 * the 256MB PCIe 'hole' so the kernel will not
687 			 * try to allocate multi-page buffers that
688 			 * span the discontinuity.
689 			 */
690 			memory_exclude_page(CVMX_PCIE_BAR1_PHYS_BASE,
691 					    &memory, &size);
692 			memory_exclude_page(CVMX_PCIE_BAR1_PHYS_BASE +
693 					    CVMX_PCIE_BAR1_PHYS_SIZE,
694 					    &memory, &size);
695 
696 			/*
697 			 * This function automatically merges address
698 			 * regions next to each other if they are
699 			 * received in incrementing order.
700 			 */
701 			if (size)
702 				add_memory_region(memory, size, BOOT_MEM_RAM);
703 			total += mem_alloc_size;
704 		} else {
705 			break;
706 		}
707 	}
708 	cvmx_bootmem_unlock();
709 
710 #ifdef CONFIG_CAVIUM_RESERVE32
711 	/*
712 	 * Now that we've allocated the kernel memory it is safe to
713 	 * free the reserved region. We free it here so that builtin
714 	 * drivers can use the memory.
715 	 */
716 	if (octeon_reserve32_memory)
717 		cvmx_bootmem_free_named("CAVIUM_RESERVE32");
718 #endif /* CONFIG_CAVIUM_RESERVE32 */
719 
720 	if (total == 0)
721 		panic("Unable to allocate memory from "
722 		      "cvmx_bootmem_phy_alloc\n");
723 }
724 
725 /*
726  * Emit one character to the boot UART.  Exported for use by the
727  * watchdog timer.
728  */
729 int prom_putchar(char c)
730 {
731 	uint64_t lsrval;
732 
733 	/* Spin until there is room */
734 	do {
735 		lsrval = cvmx_read_csr(CVMX_MIO_UARTX_LSR(octeon_uart));
736 	} while ((lsrval & 0x20) == 0);
737 
738 	/* Write the byte */
739 	cvmx_write_csr(CVMX_MIO_UARTX_THR(octeon_uart), c & 0xffull);
740 	return 1;
741 }
742 EXPORT_SYMBOL(prom_putchar);
743 
744 void prom_free_prom_memory(void)
745 {
746 	if (OCTEON_IS_MODEL(OCTEON_CN63XX_PASS1_X)) {
747 		/* Check for presence of Core-14449 fix.  */
748 		u32 insn;
749 		u32 *foo;
750 
751 		foo = &insn;
752 
753 		asm volatile("# before" : : : "memory");
754 		prefetch(foo);
755 		asm volatile(
756 			".set push\n\t"
757 			".set noreorder\n\t"
758 			"bal 1f\n\t"
759 			"nop\n"
760 			"1:\tlw %0,-12($31)\n\t"
761 			".set pop\n\t"
762 			: "=r" (insn) : : "$31", "memory");
763 
764 		if ((insn >> 26) != 0x33)
765 			panic("No PREF instruction at Core-14449 probe point.");
766 
767 		if (((insn >> 16) & 0x1f) != 28)
768 			panic("Core-14449 WAR not in place (%04x).\n"
769 			      "Please build kernel with proper options (CONFIG_CAVIUM_CN63XXP1).", insn);
770 	}
771 #ifdef CONFIG_CAVIUM_DECODE_RSL
772 	cvmx_interrupt_rsl_enable();
773 
774 	/* Add an interrupt handler for general failures. */
775 	if (request_irq(OCTEON_IRQ_RML, octeon_rlm_interrupt, IRQF_SHARED,
776 			"RML/RSL", octeon_rlm_interrupt)) {
777 		panic("Unable to request_irq(OCTEON_IRQ_RML)");
778 	}
779 #endif
780 }
781 
782 int octeon_prune_device_tree(void);
783 
784 extern const char __dtb_octeon_3xxx_begin;
785 extern const char __dtb_octeon_3xxx_end;
786 extern const char __dtb_octeon_68xx_begin;
787 extern const char __dtb_octeon_68xx_end;
788 void __init device_tree_init(void)
789 {
790 	int dt_size;
791 	struct boot_param_header *fdt;
792 	bool do_prune;
793 
794 	if (octeon_bootinfo->minor_version >= 3 && octeon_bootinfo->fdt_addr) {
795 		fdt = phys_to_virt(octeon_bootinfo->fdt_addr);
796 		if (fdt_check_header(fdt))
797 			panic("Corrupt Device Tree passed to kernel.");
798 		dt_size = be32_to_cpu(fdt->totalsize);
799 		do_prune = false;
800 	} else if (OCTEON_IS_MODEL(OCTEON_CN68XX)) {
801 		fdt = (struct boot_param_header *)&__dtb_octeon_68xx_begin;
802 		dt_size = &__dtb_octeon_68xx_end - &__dtb_octeon_68xx_begin;
803 		do_prune = true;
804 	} else {
805 		fdt = (struct boot_param_header *)&__dtb_octeon_3xxx_begin;
806 		dt_size = &__dtb_octeon_3xxx_end - &__dtb_octeon_3xxx_begin;
807 		do_prune = true;
808 	}
809 
810 	/* Copy the default tree from init memory. */
811 	initial_boot_params = early_init_dt_alloc_memory_arch(dt_size, 8);
812 	if (initial_boot_params == NULL)
813 		panic("Could not allocate initial_boot_params\n");
814 	memcpy(initial_boot_params, fdt, dt_size);
815 
816 	if (do_prune) {
817 		octeon_prune_device_tree();
818 		pr_info("Using internal Device Tree.\n");
819 	} else {
820 		pr_info("Using passed Device Tree.\n");
821 	}
822 	unflatten_device_tree();
823 }
824