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 * Copyright (C) 2004-2007 Cavium Networks
7 * Copyright (C) 2008 Wind River Systems
9 #include <linux/init.h>
10 #include <linux/console.h>
11 #include <linux/delay.h>
12 #include <linux/interrupt.h>
14 #include <linux/serial.h>
15 #include <linux/smp.h>
16 #include <linux/types.h>
17 #include <linux/string.h> /* for memset */
18 #include <linux/tty.h>
19 #include <linux/time.h>
20 #include <linux/platform_device.h>
21 #include <linux/serial_core.h>
22 #include <linux/serial_8250.h>
24 #include <asm/processor.h>
25 #include <asm/reboot.h>
26 #include <asm/smp-ops.h>
27 #include <asm/system.h>
28 #include <asm/irq_cpu.h>
29 #include <asm/mipsregs.h>
30 #include <asm/bootinfo.h>
31 #include <asm/sections.h>
34 #include <asm/octeon/octeon.h>
36 #ifdef CONFIG_CAVIUM_DECODE_RSL
37 extern void cvmx_interrupt_rsl_decode(void);
38 extern int __cvmx_interrupt_ecc_report_single_bit_errors
;
39 extern void cvmx_interrupt_rsl_enable(void);
42 extern struct plat_smp_ops octeon_smp_ops
;
45 extern void pci_console_init(const char *arg
);
48 #ifdef CONFIG_CAVIUM_RESERVE32
49 extern uint64_t octeon_reserve32_memory
;
51 static unsigned long long MAX_MEMORY
= 512ull << 20;
53 struct octeon_boot_descriptor
*octeon_boot_desc_ptr
;
55 struct cvmx_bootinfo
*octeon_bootinfo
;
56 EXPORT_SYMBOL(octeon_bootinfo
);
58 #ifdef CONFIG_CAVIUM_RESERVE32
59 uint64_t octeon_reserve32_memory
;
60 EXPORT_SYMBOL(octeon_reserve32_memory
);
63 static int octeon_uart
;
65 extern asmlinkage
void handle_int(void);
66 extern asmlinkage
void plat_irq_dispatch(void);
69 * Return non zero if we are currently running in the Octeon simulator
73 int octeon_is_simulation(void)
75 return octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_SIM
;
77 EXPORT_SYMBOL(octeon_is_simulation
);
80 * Return true if Octeon is in PCI Host mode. This means
81 * Linux can control the PCI bus.
83 * Returns Non zero if Octeon in host mode.
85 int octeon_is_pci_host(void)
88 return octeon_bootinfo
->config_flags
& CVMX_BOOTINFO_CFG_FLAG_PCI_HOST
;
95 * Get the clock rate of Octeon
97 * Returns Clock rate in HZ
99 uint64_t octeon_get_clock_rate(void)
101 if (octeon_is_simulation())
102 octeon_bootinfo
->eclock_hz
= 6000000;
103 return octeon_bootinfo
->eclock_hz
;
105 EXPORT_SYMBOL(octeon_get_clock_rate
);
108 * Write to the LCD display connected to the bootbus. This display
109 * exists on most Cavium evaluation boards. If it doesn't exist, then
110 * this function doesn't do anything.
112 * @s: String to write
114 void octeon_write_lcd(const char *s
)
116 if (octeon_bootinfo
->led_display_base_addr
) {
117 void __iomem
*lcd_address
=
118 ioremap_nocache(octeon_bootinfo
->led_display_base_addr
,
121 for (i
= 0; i
< 8; i
++, s
++) {
123 iowrite8(*s
, lcd_address
+ i
);
125 iowrite8(' ', lcd_address
+ i
);
127 iounmap(lcd_address
);
132 * Return the console uart passed by the bootloader
134 * Returns uart (0 or 1)
136 int octeon_get_boot_uart(void)
139 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
142 uart
= (octeon_boot_desc_ptr
->flags
& OCTEON_BL_FLAG_CONSOLE_UART1
) ?
149 * Get the coremask Linux was booted on.
153 int octeon_get_boot_coremask(void)
155 return octeon_boot_desc_ptr
->core_mask
;
159 * Check the hardware BIST results for a CPU
161 void octeon_check_cpu_bist(void)
163 const int coreid
= cvmx_get_core_num();
164 unsigned long long mask
;
165 unsigned long long bist_val
;
167 /* Check BIST results for COP0 registers */
168 mask
= 0x1f00000000ull
;
169 bist_val
= read_octeon_c0_icacheerr();
171 pr_err("Core%d BIST Failure: CacheErr(icache) = 0x%llx\n",
174 bist_val
= read_octeon_c0_dcacheerr();
176 pr_err("Core%d L1 Dcache parity error: "
177 "CacheErr(dcache) = 0x%llx\n",
180 mask
= 0xfc00000000000000ull
;
181 bist_val
= read_c0_cvmmemctl();
183 pr_err("Core%d BIST Failure: COP0_CVM_MEM_CTL = 0x%llx\n",
186 write_octeon_c0_dcacheerr(0);
189 #ifdef CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB
191 * Called on every core to setup the wired tlb entry needed
192 * if CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB is set.
195 static void octeon_hal_setup_per_cpu_reserved32(void *unused
)
198 * The config has selected to wire the reserve32 memory for all
199 * userspace applications. We need to put a wired TLB entry in for each
200 * 512MB of reserve32 memory. We only handle double 256MB pages here,
201 * so reserve32 must be multiple of 512MB.
203 uint32_t size
= CONFIG_CAVIUM_RESERVE32
;
205 0x7 | ((octeon_reserve32_memory
& ((1ul << 40) - 1)) >> 6);
206 uint32_t entrylo1
= entrylo0
+ (256 << 14);
207 uint32_t entryhi
= (0x80000000UL
- (CONFIG_CAVIUM_RESERVE32
<< 20));
208 while (size
>= 512) {
210 pr_info("CPU%d: Adding double wired TLB entry for 0x%lx\n",
211 smp_processor_id(), entryhi
);
213 add_wired_entry(entrylo0
, entrylo1
, entryhi
, PM_256M
);
214 entrylo0
+= 512 << 14;
215 entrylo1
+= 512 << 14;
216 entryhi
+= 512 << 20;
220 #endif /* CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB */
223 * Called to release the named block which was used to made sure
224 * that nobody used the memory for something else during
225 * init. Now we'll free it so userspace apps can use this
226 * memory region with bootmem_alloc.
228 * This function is called only once from prom_free_prom_memory().
230 void octeon_hal_setup_reserved32(void)
232 #ifdef CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB
233 on_each_cpu(octeon_hal_setup_per_cpu_reserved32
, NULL
, 0, 1);
240 * @command: Command to pass to the bootloader. Currently ignored.
242 static void octeon_restart(char *command
)
244 /* Disable all watchdogs before soft reset. They don't get cleared */
247 for_each_online_cpu(cpu
)
248 cvmx_write_csr(CVMX_CIU_WDOGX(cpu_logical_map(cpu
)), 0);
250 cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
255 cvmx_write_csr(CVMX_CIU_SOFT_RST
, 1);
260 * Permanently stop a core.
264 static void octeon_kill_core(void *arg
)
267 if (octeon_is_simulation()) {
268 /* The simulator needs the watchdog to stop for dead cores */
269 cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
270 /* A break instruction causes the simulator stop a core */
271 asm volatile ("sync\nbreak");
279 static void octeon_halt(void)
281 smp_call_function(octeon_kill_core
, NULL
, 0);
283 switch (octeon_bootinfo
->board_type
) {
284 case CVMX_BOARD_TYPE_NAO38
:
285 /* Driving a 1 to GPIO 12 shuts off this board */
286 cvmx_write_csr(CVMX_GPIO_BIT_CFGX(12), 1);
287 cvmx_write_csr(CVMX_GPIO_TX_SET
, 0x1000);
290 octeon_write_lcd("PowerOff");
294 octeon_kill_core(NULL
);
299 * Platform time init specifics.
302 void __init
plat_time_init(void)
304 /* Nothing special here, but we are required to have one */
310 * Handle all the error condition interrupts that might occur.
313 #ifdef CONFIG_CAVIUM_DECODE_RSL
314 static irqreturn_t
octeon_rlm_interrupt(int cpl
, void *dev_id
)
316 cvmx_interrupt_rsl_decode();
322 * Return a string representing the system type
326 const char *octeon_board_type_string(void)
328 static char name
[80];
329 sprintf(name
, "%s (%s)",
330 cvmx_board_type_to_string(octeon_bootinfo
->board_type
),
331 octeon_model_get_string(read_c0_prid()));
335 const char *get_system_type(void)
336 __attribute__ ((alias("octeon_board_type_string")));
338 void octeon_user_io_init(void)
340 union octeon_cvmemctl cvmmemctl
;
341 union cvmx_iob_fau_timeout fau_timeout
;
342 union cvmx_pow_nw_tim nm_tim
;
345 /* Get the current settings for CP0_CVMMEMCTL_REG */
346 cvmmemctl
.u64
= read_c0_cvmmemctl();
347 /* R/W If set, marked write-buffer entries time out the same
348 * as as other entries; if clear, marked write-buffer entries
349 * use the maximum timeout. */
350 cvmmemctl
.s
.dismarkwblongto
= 1;
351 /* R/W If set, a merged store does not clear the write-buffer
352 * entry timeout state. */
353 cvmmemctl
.s
.dismrgclrwbto
= 0;
354 /* R/W Two bits that are the MSBs of the resultant CVMSEG LM
355 * word location for an IOBDMA. The other 8 bits come from the
356 * SCRADDR field of the IOBDMA. */
357 cvmmemctl
.s
.iobdmascrmsb
= 0;
358 /* R/W If set, SYNCWS and SYNCS only order marked stores; if
359 * clear, SYNCWS and SYNCS only order unmarked
360 * stores. SYNCWSMARKED has no effect when DISSYNCWS is
362 cvmmemctl
.s
.syncwsmarked
= 0;
363 /* R/W If set, SYNCWS acts as SYNCW and SYNCS acts as SYNC. */
364 cvmmemctl
.s
.dissyncws
= 0;
365 /* R/W If set, no stall happens on write buffer full. */
366 if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2
))
367 cvmmemctl
.s
.diswbfst
= 1;
369 cvmmemctl
.s
.diswbfst
= 0;
370 /* R/W If set (and SX set), supervisor-level loads/stores can
371 * use XKPHYS addresses with <48>==0 */
372 cvmmemctl
.s
.xkmemenas
= 0;
374 /* R/W If set (and UX set), user-level loads/stores can use
375 * XKPHYS addresses with VA<48>==0 */
376 cvmmemctl
.s
.xkmemenau
= 0;
378 /* R/W If set (and SX set), supervisor-level loads/stores can
379 * use XKPHYS addresses with VA<48>==1 */
380 cvmmemctl
.s
.xkioenas
= 0;
382 /* R/W If set (and UX set), user-level loads/stores can use
383 * XKPHYS addresses with VA<48>==1 */
384 cvmmemctl
.s
.xkioenau
= 0;
386 /* R/W If set, all stores act as SYNCW (NOMERGE must be set
387 * when this is set) RW, reset to 0. */
388 cvmmemctl
.s
.allsyncw
= 0;
390 /* R/W If set, no stores merge, and all stores reach the
391 * coherent bus in order. */
392 cvmmemctl
.s
.nomerge
= 0;
393 /* R/W Selects the bit in the counter used for DID time-outs 0
394 * = 231, 1 = 230, 2 = 229, 3 = 214. Actual time-out is
395 * between 1x and 2x this interval. For example, with
396 * DIDTTO=3, expiration interval is between 16K and 32K. */
397 cvmmemctl
.s
.didtto
= 0;
398 /* R/W If set, the (mem) CSR clock never turns off. */
399 cvmmemctl
.s
.csrckalwys
= 0;
400 /* R/W If set, mclk never turns off. */
401 cvmmemctl
.s
.mclkalwys
= 0;
402 /* R/W Selects the bit in the counter used for write buffer
403 * flush time-outs (WBFLT+11) is the bit position in an
404 * internal counter used to determine expiration. The write
405 * buffer expires between 1x and 2x this interval. For
406 * example, with WBFLT = 0, a write buffer expires between 2K
407 * and 4K cycles after the write buffer entry is allocated. */
408 cvmmemctl
.s
.wbfltime
= 0;
409 /* R/W If set, do not put Istream in the L2 cache. */
410 cvmmemctl
.s
.istrnol2
= 0;
411 /* R/W The write buffer threshold. */
412 cvmmemctl
.s
.wbthresh
= 10;
413 /* R/W If set, CVMSEG is available for loads/stores in
414 * kernel/debug mode. */
415 #if CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
416 cvmmemctl
.s
.cvmsegenak
= 1;
418 cvmmemctl
.s
.cvmsegenak
= 0;
420 /* R/W If set, CVMSEG is available for loads/stores in
421 * supervisor mode. */
422 cvmmemctl
.s
.cvmsegenas
= 0;
423 /* R/W If set, CVMSEG is available for loads/stores in user
425 cvmmemctl
.s
.cvmsegenau
= 0;
426 /* R/W Size of local memory in cache blocks, 54 (6912 bytes)
427 * is max legal value. */
428 cvmmemctl
.s
.lmemsz
= CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
;
431 if (smp_processor_id() == 0)
432 pr_notice("CVMSEG size: %d cache lines (%d bytes)\n",
433 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
,
434 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
* 128);
436 write_c0_cvmmemctl(cvmmemctl
.u64
);
438 /* Move the performance counter interrupts to IRQ 6 */
439 cvmctl
= read_c0_cvmctl();
442 write_c0_cvmctl(cvmctl
);
444 /* Set a default for the hardware timeouts */
446 fau_timeout
.s
.tout_val
= 0xfff;
447 /* Disable tagwait FAU timeout */
448 fau_timeout
.s
.tout_enb
= 0;
449 cvmx_write_csr(CVMX_IOB_FAU_TIMEOUT
, fau_timeout
.u64
);
454 cvmx_write_csr(CVMX_POW_NW_TIM
, nm_tim
.u64
);
456 write_octeon_c0_icacheerr(0);
457 write_c0_derraddr1(0);
461 * Early entry point for arch setup
463 void __init
prom_init(void)
465 struct cvmx_sysinfo
*sysinfo
;
466 const int coreid
= cvmx_get_core_num();
469 struct uart_port octeon_port
;
470 #ifdef CONFIG_CAVIUM_RESERVE32
474 * The bootloader passes a pointer to the boot descriptor in
475 * $a3, this is available as fw_arg3.
477 octeon_boot_desc_ptr
= (struct octeon_boot_descriptor
*)fw_arg3
;
479 cvmx_phys_to_ptr(octeon_boot_desc_ptr
->cvmx_desc_vaddr
);
480 cvmx_bootmem_init(cvmx_phys_to_ptr(octeon_bootinfo
->phy_mem_desc_addr
));
483 * Only enable the LED controller if we're running on a CN38XX, CN58XX,
484 * or CN56XX. The CN30XX and CN31XX don't have an LED controller.
486 if (!octeon_is_simulation() &&
487 octeon_has_feature(OCTEON_FEATURE_LED_CONTROLLER
)) {
488 cvmx_write_csr(CVMX_LED_EN
, 0);
489 cvmx_write_csr(CVMX_LED_PRT
, 0);
490 cvmx_write_csr(CVMX_LED_DBG
, 0);
491 cvmx_write_csr(CVMX_LED_PRT_FMT
, 0);
492 cvmx_write_csr(CVMX_LED_UDD_CNTX(0), 32);
493 cvmx_write_csr(CVMX_LED_UDD_CNTX(1), 32);
494 cvmx_write_csr(CVMX_LED_UDD_DATX(0), 0);
495 cvmx_write_csr(CVMX_LED_UDD_DATX(1), 0);
496 cvmx_write_csr(CVMX_LED_EN
, 1);
498 #ifdef CONFIG_CAVIUM_RESERVE32
500 * We need to temporarily allocate all memory in the reserve32
501 * region. This makes sure the kernel doesn't allocate this
502 * memory when it is getting memory from the
503 * bootloader. Later, after the memory allocations are
504 * complete, the reserve32 will be freed.
506 #ifdef CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB
507 if (CONFIG_CAVIUM_RESERVE32
& 0x1ff)
508 pr_err("CAVIUM_RESERVE32 isn't a multiple of 512MB. "
509 "This is required if CAVIUM_RESERVE32_USE_WIRED_TLB "
512 addr
= cvmx_bootmem_phy_named_block_alloc(CONFIG_CAVIUM_RESERVE32
<< 20,
514 "CAVIUM_RESERVE32", 0);
517 * Allocate memory for RESERVED32 aligned on 2MB boundary. This
518 * is in case we later use hugetlb entries with it.
520 addr
= cvmx_bootmem_phy_named_block_alloc(CONFIG_CAVIUM_RESERVE32
<< 20,
522 "CAVIUM_RESERVE32", 0);
525 pr_err("Failed to allocate CAVIUM_RESERVE32 memory area\n");
527 octeon_reserve32_memory
= addr
;
530 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2
531 if (cvmx_read_csr(CVMX_L2D_FUS3
) & (3ull << 34)) {
532 pr_info("Skipping L2 locking due to reduced L2 cache size\n");
534 uint32_t ebase
= read_c0_ebase() & 0x3ffff000;
535 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_TLB
537 cvmx_l2c_lock_mem_region(ebase
, 0x100);
539 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_EXCEPTION
540 /* General exception */
541 cvmx_l2c_lock_mem_region(ebase
+ 0x180, 0x80);
543 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_LOW_LEVEL_INTERRUPT
544 /* Interrupt handler */
545 cvmx_l2c_lock_mem_region(ebase
+ 0x200, 0x80);
547 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_INTERRUPT
548 cvmx_l2c_lock_mem_region(__pa_symbol(handle_int
), 0x100);
549 cvmx_l2c_lock_mem_region(__pa_symbol(plat_irq_dispatch
), 0x80);
551 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_MEMCPY
552 cvmx_l2c_lock_mem_region(__pa_symbol(memcpy
), 0x480);
557 sysinfo
= cvmx_sysinfo_get();
558 memset(sysinfo
, 0, sizeof(*sysinfo
));
559 sysinfo
->system_dram_size
= octeon_bootinfo
->dram_size
<< 20;
560 sysinfo
->phy_mem_desc_ptr
=
561 cvmx_phys_to_ptr(octeon_bootinfo
->phy_mem_desc_addr
);
562 sysinfo
->core_mask
= octeon_bootinfo
->core_mask
;
563 sysinfo
->exception_base_addr
= octeon_bootinfo
->exception_base_addr
;
564 sysinfo
->cpu_clock_hz
= octeon_bootinfo
->eclock_hz
;
565 sysinfo
->dram_data_rate_hz
= octeon_bootinfo
->dclock_hz
* 2;
566 sysinfo
->board_type
= octeon_bootinfo
->board_type
;
567 sysinfo
->board_rev_major
= octeon_bootinfo
->board_rev_major
;
568 sysinfo
->board_rev_minor
= octeon_bootinfo
->board_rev_minor
;
569 memcpy(sysinfo
->mac_addr_base
, octeon_bootinfo
->mac_addr_base
,
570 sizeof(sysinfo
->mac_addr_base
));
571 sysinfo
->mac_addr_count
= octeon_bootinfo
->mac_addr_count
;
572 memcpy(sysinfo
->board_serial_number
,
573 octeon_bootinfo
->board_serial_number
,
574 sizeof(sysinfo
->board_serial_number
));
575 sysinfo
->compact_flash_common_base_addr
=
576 octeon_bootinfo
->compact_flash_common_base_addr
;
577 sysinfo
->compact_flash_attribute_base_addr
=
578 octeon_bootinfo
->compact_flash_attribute_base_addr
;
579 sysinfo
->led_display_base_addr
= octeon_bootinfo
->led_display_base_addr
;
580 sysinfo
->dfa_ref_clock_hz
= octeon_bootinfo
->dfa_ref_clock_hz
;
581 sysinfo
->bootloader_config_flags
= octeon_bootinfo
->config_flags
;
584 octeon_check_cpu_bist();
586 octeon_uart
= octeon_get_boot_uart();
589 * Disable All CIU Interrupts. The ones we need will be
590 * enabled later. Read the SUM register so we know the write
593 cvmx_write_csr(CVMX_CIU_INTX_EN0((coreid
* 2)), 0);
594 cvmx_write_csr(CVMX_CIU_INTX_EN0((coreid
* 2 + 1)), 0);
595 cvmx_write_csr(CVMX_CIU_INTX_EN1((coreid
* 2)), 0);
596 cvmx_write_csr(CVMX_CIU_INTX_EN1((coreid
* 2 + 1)), 0);
597 cvmx_read_csr(CVMX_CIU_INTX_SUM0((coreid
* 2)));
600 octeon_write_lcd("LinuxSMP");
602 octeon_write_lcd("Linux");
605 #ifdef CONFIG_CAVIUM_GDB
607 * When debugging the linux kernel, force the cores to enter
608 * the debug exception handler to break in.
610 if (octeon_get_boot_debug_flag()) {
611 cvmx_write_csr(CVMX_CIU_DINT
, 1 << cvmx_get_core_num());
612 cvmx_read_csr(CVMX_CIU_DINT
);
617 * BIST should always be enabled when doing a soft reset. L2
618 * Cache locking for instance is not cleared unless BIST is
619 * enabled. Unfortunately due to a chip errata G-200 for
620 * Cn38XX and CN31XX, BIST msut be disabled on these parts.
622 if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2
) ||
623 OCTEON_IS_MODEL(OCTEON_CN31XX
))
624 cvmx_write_csr(CVMX_CIU_SOFT_BIST
, 0);
626 cvmx_write_csr(CVMX_CIU_SOFT_BIST
, 1);
628 /* Default to 64MB in the simulator to speed things up */
629 if (octeon_is_simulation())
630 MAX_MEMORY
= 64ull << 20;
633 argc
= octeon_boot_desc_ptr
->argc
;
634 for (i
= 0; i
< argc
; i
++) {
636 cvmx_phys_to_ptr(octeon_boot_desc_ptr
->argv
[i
]);
637 if ((strncmp(arg
, "MEM=", 4) == 0) ||
638 (strncmp(arg
, "mem=", 4) == 0)) {
639 sscanf(arg
+ 4, "%llu", &MAX_MEMORY
);
642 MAX_MEMORY
= 32ull << 30;
643 } else if (strcmp(arg
, "ecc_verbose") == 0) {
644 #ifdef CONFIG_CAVIUM_REPORT_SINGLE_BIT_ECC
645 __cvmx_interrupt_ecc_report_single_bit_errors
= 1;
646 pr_notice("Reporting of single bit ECC errors is "
649 } else if (strlen(arcs_cmdline
) + strlen(arg
) + 1 <
650 sizeof(arcs_cmdline
) - 1) {
651 strcat(arcs_cmdline
, " ");
652 strcat(arcs_cmdline
, arg
);
656 if (strstr(arcs_cmdline
, "console=") == NULL
) {
657 #ifdef CONFIG_GDB_CONSOLE
658 strcat(arcs_cmdline
, " console=gdb");
660 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
661 strcat(arcs_cmdline
, " console=ttyS0,115200");
663 if (octeon_uart
== 1)
664 strcat(arcs_cmdline
, " console=ttyS1,115200");
666 strcat(arcs_cmdline
, " console=ttyS0,115200");
671 if (octeon_is_simulation()) {
673 * The simulator uses a mtdram device pre filled with
674 * the filesystem. Also specify the calibration delay
675 * to avoid calculating it every time.
677 strcat(arcs_cmdline
, " rw root=1f00"
678 " lpj=60176 slram=root,0x40000000,+1073741824");
681 mips_hpt_frequency
= octeon_get_clock_rate();
683 octeon_init_cvmcount();
685 _machine_restart
= octeon_restart
;
686 _machine_halt
= octeon_halt
;
688 memset(&octeon_port
, 0, sizeof(octeon_port
));
690 * For early_serial_setup we don't set the port type or
693 octeon_port
.flags
= ASYNC_SKIP_TEST
| UPF_SHARE_IRQ
;
694 octeon_port
.iotype
= UPIO_MEM
;
695 /* I/O addresses are every 8 bytes */
696 octeon_port
.regshift
= 3;
697 /* Clock rate of the chip */
698 octeon_port
.uartclk
= mips_hpt_frequency
;
699 octeon_port
.fifosize
= 64;
700 octeon_port
.mapbase
= 0x0001180000000800ull
+ (1024 * octeon_uart
);
701 octeon_port
.membase
= cvmx_phys_to_ptr(octeon_port
.mapbase
);
702 octeon_port
.serial_in
= octeon_serial_in
;
703 octeon_port
.serial_out
= octeon_serial_out
;
704 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
705 octeon_port
.line
= 0;
707 octeon_port
.line
= octeon_uart
;
709 octeon_port
.irq
= 42 + octeon_uart
;
710 early_serial_setup(&octeon_port
);
712 octeon_user_io_init();
713 register_smp_ops(&octeon_smp_ops
);
716 void __init
plat_mem_setup(void)
718 uint64_t mem_alloc_size
;
724 /* First add the init memory we will be returning. */
725 memory
= __pa_symbol(&__init_begin
) & PAGE_MASK
;
726 mem_alloc_size
= (__pa_symbol(&__init_end
) & PAGE_MASK
) - memory
;
727 if (mem_alloc_size
> 0) {
728 add_memory_region(memory
, mem_alloc_size
, BOOT_MEM_RAM
);
729 total
+= mem_alloc_size
;
733 * The Mips memory init uses the first memory location for
734 * some memory vectors. When SPARSEMEM is in use, it doesn't
735 * verify that the size is big enough for the final
736 * vectors. Making the smallest chuck 4MB seems to be enough
737 * to consistantly work.
739 mem_alloc_size
= 4 << 20;
740 if (mem_alloc_size
> MAX_MEMORY
)
741 mem_alloc_size
= MAX_MEMORY
;
744 * When allocating memory, we want incrementing addresses from
745 * bootmem_alloc so the code in add_memory_region can merge
746 * regions next to each other.
749 while ((boot_mem_map
.nr_map
< BOOT_MEM_MAP_MAX
)
750 && (total
< MAX_MEMORY
)) {
751 #if defined(CONFIG_64BIT) || defined(CONFIG_64BIT_PHYS_ADDR)
752 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
,
753 __pa_symbol(&__init_end
), -1,
755 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
756 #elif defined(CONFIG_HIGHMEM)
757 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
, 0, 1ull << 31,
759 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
761 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
, 0, 512 << 20,
763 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
767 * This function automatically merges address
768 * regions next to each other if they are
769 * received in incrementing order.
771 add_memory_region(memory
, mem_alloc_size
, BOOT_MEM_RAM
);
772 total
+= mem_alloc_size
;
777 cvmx_bootmem_unlock();
779 #ifdef CONFIG_CAVIUM_RESERVE32
781 * Now that we've allocated the kernel memory it is safe to
782 * free the reserved region. We free it here so that builtin
783 * drivers can use the memory.
785 if (octeon_reserve32_memory
)
786 cvmx_bootmem_free_named("CAVIUM_RESERVE32");
787 #endif /* CONFIG_CAVIUM_RESERVE32 */
790 panic("Unable to allocate memory from "
791 "cvmx_bootmem_phy_alloc\n");
795 int prom_putchar(char c
)
799 /* Spin until there is room */
801 lsrval
= cvmx_read_csr(CVMX_MIO_UARTX_LSR(octeon_uart
));
802 } while ((lsrval
& 0x20) == 0);
805 cvmx_write_csr(CVMX_MIO_UARTX_THR(octeon_uart
), c
);
809 void prom_free_prom_memory(void)
811 #ifdef CONFIG_CAVIUM_DECODE_RSL
812 cvmx_interrupt_rsl_enable();
814 /* Add an interrupt handler for general failures. */
815 if (request_irq(OCTEON_IRQ_RML
, octeon_rlm_interrupt
, IRQF_SHARED
,
816 "RML/RSL", octeon_rlm_interrupt
)) {
817 panic("Unable to request_irq(OCTEON_IRQ_RML)\n");
821 /* This call is here so that it is performed after any TLB
822 initializations. It needs to be after these in case the
823 CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB option is set */
824 octeon_hal_setup_reserved32();