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/export.h>
13 #include <linux/interrupt.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>
25 #include <asm/processor.h>
26 #include <asm/reboot.h>
27 #include <asm/smp-ops.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>
35 #include <asm/octeon/pci-octeon.h>
36 #include <asm/octeon/cvmx-mio-defs.h>
38 #ifdef CONFIG_CAVIUM_DECODE_RSL
39 extern void cvmx_interrupt_rsl_decode(void);
40 extern int __cvmx_interrupt_ecc_report_single_bit_errors
;
41 extern void cvmx_interrupt_rsl_enable(void);
44 extern struct plat_smp_ops octeon_smp_ops
;
47 extern void pci_console_init(const char *arg
);
50 static unsigned long long MAX_MEMORY
= 512ull << 20;
52 struct octeon_boot_descriptor
*octeon_boot_desc_ptr
;
54 struct cvmx_bootinfo
*octeon_bootinfo
;
55 EXPORT_SYMBOL(octeon_bootinfo
);
57 #ifdef CONFIG_CAVIUM_RESERVE32
58 uint64_t octeon_reserve32_memory
;
59 EXPORT_SYMBOL(octeon_reserve32_memory
);
62 static int octeon_uart
;
64 extern asmlinkage
void handle_int(void);
65 extern asmlinkage
void plat_irq_dispatch(void);
68 * Return non zero if we are currently running in the Octeon simulator
72 int octeon_is_simulation(void)
74 return octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_SIM
;
76 EXPORT_SYMBOL(octeon_is_simulation
);
79 * Return true if Octeon is in PCI Host mode. This means
80 * Linux can control the PCI bus.
82 * Returns Non zero if Octeon in host mode.
84 int octeon_is_pci_host(void)
87 return octeon_bootinfo
->config_flags
& CVMX_BOOTINFO_CFG_FLAG_PCI_HOST
;
94 * Get the clock rate of Octeon
96 * Returns Clock rate in HZ
98 uint64_t octeon_get_clock_rate(void)
100 struct cvmx_sysinfo
*sysinfo
= cvmx_sysinfo_get();
102 return sysinfo
->cpu_clock_hz
;
104 EXPORT_SYMBOL(octeon_get_clock_rate
);
106 static u64 octeon_io_clock_rate
;
108 u64
octeon_get_io_clock_rate(void)
110 return octeon_io_clock_rate
;
112 EXPORT_SYMBOL(octeon_get_io_clock_rate
);
116 * Write to the LCD display connected to the bootbus. This display
117 * exists on most Cavium evaluation boards. If it doesn't exist, then
118 * this function doesn't do anything.
120 * @s: String to write
122 void octeon_write_lcd(const char *s
)
124 if (octeon_bootinfo
->led_display_base_addr
) {
125 void __iomem
*lcd_address
=
126 ioremap_nocache(octeon_bootinfo
->led_display_base_addr
,
129 for (i
= 0; i
< 8; i
++, s
++) {
131 iowrite8(*s
, lcd_address
+ i
);
133 iowrite8(' ', lcd_address
+ i
);
135 iounmap(lcd_address
);
140 * Return the console uart passed by the bootloader
142 * Returns uart (0 or 1)
144 int octeon_get_boot_uart(void)
147 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
150 uart
= (octeon_boot_desc_ptr
->flags
& OCTEON_BL_FLAG_CONSOLE_UART1
) ?
157 * Get the coremask Linux was booted on.
161 int octeon_get_boot_coremask(void)
163 return octeon_boot_desc_ptr
->core_mask
;
167 * Check the hardware BIST results for a CPU
169 void octeon_check_cpu_bist(void)
171 const int coreid
= cvmx_get_core_num();
172 unsigned long long mask
;
173 unsigned long long bist_val
;
175 /* Check BIST results for COP0 registers */
176 mask
= 0x1f00000000ull
;
177 bist_val
= read_octeon_c0_icacheerr();
179 pr_err("Core%d BIST Failure: CacheErr(icache) = 0x%llx\n",
182 bist_val
= read_octeon_c0_dcacheerr();
184 pr_err("Core%d L1 Dcache parity error: "
185 "CacheErr(dcache) = 0x%llx\n",
188 mask
= 0xfc00000000000000ull
;
189 bist_val
= read_c0_cvmmemctl();
191 pr_err("Core%d BIST Failure: COP0_CVM_MEM_CTL = 0x%llx\n",
194 write_octeon_c0_dcacheerr(0);
200 * @command: Command to pass to the bootloader. Currently ignored.
202 static void octeon_restart(char *command
)
204 /* Disable all watchdogs before soft reset. They don't get cleared */
207 for_each_online_cpu(cpu
)
208 cvmx_write_csr(CVMX_CIU_WDOGX(cpu_logical_map(cpu
)), 0);
210 cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
215 cvmx_write_csr(CVMX_CIU_SOFT_RST
, 1);
220 * Permanently stop a core.
224 static void octeon_kill_core(void *arg
)
227 if (octeon_is_simulation()) {
228 /* The simulator needs the watchdog to stop for dead cores */
229 cvmx_write_csr(CVMX_CIU_WDOGX(cvmx_get_core_num()), 0);
230 /* A break instruction causes the simulator stop a core */
231 asm volatile ("sync\nbreak");
239 static void octeon_halt(void)
241 smp_call_function(octeon_kill_core
, NULL
, 0);
243 switch (octeon_bootinfo
->board_type
) {
244 case CVMX_BOARD_TYPE_NAO38
:
245 /* Driving a 1 to GPIO 12 shuts off this board */
246 cvmx_write_csr(CVMX_GPIO_BIT_CFGX(12), 1);
247 cvmx_write_csr(CVMX_GPIO_TX_SET
, 0x1000);
250 octeon_write_lcd("PowerOff");
254 octeon_kill_core(NULL
);
258 * Handle all the error condition interrupts that might occur.
261 #ifdef CONFIG_CAVIUM_DECODE_RSL
262 static irqreturn_t
octeon_rlm_interrupt(int cpl
, void *dev_id
)
264 cvmx_interrupt_rsl_decode();
270 * Return a string representing the system type
274 const char *octeon_board_type_string(void)
276 static char name
[80];
277 sprintf(name
, "%s (%s)",
278 cvmx_board_type_to_string(octeon_bootinfo
->board_type
),
279 octeon_model_get_string(read_c0_prid()));
283 const char *get_system_type(void)
284 __attribute__ ((alias("octeon_board_type_string")));
286 void octeon_user_io_init(void)
288 union octeon_cvmemctl cvmmemctl
;
289 union cvmx_iob_fau_timeout fau_timeout
;
290 union cvmx_pow_nw_tim nm_tim
;
292 /* Get the current settings for CP0_CVMMEMCTL_REG */
293 cvmmemctl
.u64
= read_c0_cvmmemctl();
294 /* R/W If set, marked write-buffer entries time out the same
295 * as as other entries; if clear, marked write-buffer entries
296 * use the maximum timeout. */
297 cvmmemctl
.s
.dismarkwblongto
= 1;
298 /* R/W If set, a merged store does not clear the write-buffer
299 * entry timeout state. */
300 cvmmemctl
.s
.dismrgclrwbto
= 0;
301 /* R/W Two bits that are the MSBs of the resultant CVMSEG LM
302 * word location for an IOBDMA. The other 8 bits come from the
303 * SCRADDR field of the IOBDMA. */
304 cvmmemctl
.s
.iobdmascrmsb
= 0;
305 /* R/W If set, SYNCWS and SYNCS only order marked stores; if
306 * clear, SYNCWS and SYNCS only order unmarked
307 * stores. SYNCWSMARKED has no effect when DISSYNCWS is
309 cvmmemctl
.s
.syncwsmarked
= 0;
310 /* R/W If set, SYNCWS acts as SYNCW and SYNCS acts as SYNC. */
311 cvmmemctl
.s
.dissyncws
= 0;
312 /* R/W If set, no stall happens on write buffer full. */
313 if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2
))
314 cvmmemctl
.s
.diswbfst
= 1;
316 cvmmemctl
.s
.diswbfst
= 0;
317 /* R/W If set (and SX set), supervisor-level loads/stores can
318 * use XKPHYS addresses with <48>==0 */
319 cvmmemctl
.s
.xkmemenas
= 0;
321 /* R/W If set (and UX set), user-level loads/stores can use
322 * XKPHYS addresses with VA<48>==0 */
323 cvmmemctl
.s
.xkmemenau
= 0;
325 /* R/W If set (and SX set), supervisor-level loads/stores can
326 * use XKPHYS addresses with VA<48>==1 */
327 cvmmemctl
.s
.xkioenas
= 0;
329 /* R/W If set (and UX set), user-level loads/stores can use
330 * XKPHYS addresses with VA<48>==1 */
331 cvmmemctl
.s
.xkioenau
= 0;
333 /* R/W If set, all stores act as SYNCW (NOMERGE must be set
334 * when this is set) RW, reset to 0. */
335 cvmmemctl
.s
.allsyncw
= 0;
337 /* R/W If set, no stores merge, and all stores reach the
338 * coherent bus in order. */
339 cvmmemctl
.s
.nomerge
= 0;
340 /* R/W Selects the bit in the counter used for DID time-outs 0
341 * = 231, 1 = 230, 2 = 229, 3 = 214. Actual time-out is
342 * between 1x and 2x this interval. For example, with
343 * DIDTTO=3, expiration interval is between 16K and 32K. */
344 cvmmemctl
.s
.didtto
= 0;
345 /* R/W If set, the (mem) CSR clock never turns off. */
346 cvmmemctl
.s
.csrckalwys
= 0;
347 /* R/W If set, mclk never turns off. */
348 cvmmemctl
.s
.mclkalwys
= 0;
349 /* R/W Selects the bit in the counter used for write buffer
350 * flush time-outs (WBFLT+11) is the bit position in an
351 * internal counter used to determine expiration. The write
352 * buffer expires between 1x and 2x this interval. For
353 * example, with WBFLT = 0, a write buffer expires between 2K
354 * and 4K cycles after the write buffer entry is allocated. */
355 cvmmemctl
.s
.wbfltime
= 0;
356 /* R/W If set, do not put Istream in the L2 cache. */
357 cvmmemctl
.s
.istrnol2
= 0;
360 * R/W The write buffer threshold. As per erratum Core-14752
361 * for CN63XX, a sc/scd might fail if the write buffer is
362 * full. Lowering WBTHRESH greatly lowers the chances of the
363 * write buffer ever being full and triggering the erratum.
365 if (OCTEON_IS_MODEL(OCTEON_CN63XX_PASS1_X
))
366 cvmmemctl
.s
.wbthresh
= 4;
368 cvmmemctl
.s
.wbthresh
= 10;
370 /* R/W If set, CVMSEG is available for loads/stores in
371 * kernel/debug mode. */
372 #if CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE > 0
373 cvmmemctl
.s
.cvmsegenak
= 1;
375 cvmmemctl
.s
.cvmsegenak
= 0;
377 /* R/W If set, CVMSEG is available for loads/stores in
378 * supervisor mode. */
379 cvmmemctl
.s
.cvmsegenas
= 0;
380 /* R/W If set, CVMSEG is available for loads/stores in user
382 cvmmemctl
.s
.cvmsegenau
= 0;
383 /* R/W Size of local memory in cache blocks, 54 (6912 bytes)
384 * is max legal value. */
385 cvmmemctl
.s
.lmemsz
= CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
;
387 write_c0_cvmmemctl(cvmmemctl
.u64
);
389 if (smp_processor_id() == 0)
390 pr_notice("CVMSEG size: %d cache lines (%d bytes)\n",
391 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
,
392 CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
* 128);
394 /* Set a default for the hardware timeouts */
396 fau_timeout
.s
.tout_val
= 0xfff;
397 /* Disable tagwait FAU timeout */
398 fau_timeout
.s
.tout_enb
= 0;
399 cvmx_write_csr(CVMX_IOB_FAU_TIMEOUT
, fau_timeout
.u64
);
404 cvmx_write_csr(CVMX_POW_NW_TIM
, nm_tim
.u64
);
406 write_octeon_c0_icacheerr(0);
407 write_c0_derraddr1(0);
411 * Early entry point for arch setup
413 void __init
prom_init(void)
415 struct cvmx_sysinfo
*sysinfo
;
418 #ifdef CONFIG_CAVIUM_RESERVE32
422 * The bootloader passes a pointer to the boot descriptor in
423 * $a3, this is available as fw_arg3.
425 octeon_boot_desc_ptr
= (struct octeon_boot_descriptor
*)fw_arg3
;
427 cvmx_phys_to_ptr(octeon_boot_desc_ptr
->cvmx_desc_vaddr
);
428 cvmx_bootmem_init(cvmx_phys_to_ptr(octeon_bootinfo
->phy_mem_desc_addr
));
430 sysinfo
= cvmx_sysinfo_get();
431 memset(sysinfo
, 0, sizeof(*sysinfo
));
432 sysinfo
->system_dram_size
= octeon_bootinfo
->dram_size
<< 20;
433 sysinfo
->phy_mem_desc_ptr
=
434 cvmx_phys_to_ptr(octeon_bootinfo
->phy_mem_desc_addr
);
435 sysinfo
->core_mask
= octeon_bootinfo
->core_mask
;
436 sysinfo
->exception_base_addr
= octeon_bootinfo
->exception_base_addr
;
437 sysinfo
->cpu_clock_hz
= octeon_bootinfo
->eclock_hz
;
438 sysinfo
->dram_data_rate_hz
= octeon_bootinfo
->dclock_hz
* 2;
439 sysinfo
->board_type
= octeon_bootinfo
->board_type
;
440 sysinfo
->board_rev_major
= octeon_bootinfo
->board_rev_major
;
441 sysinfo
->board_rev_minor
= octeon_bootinfo
->board_rev_minor
;
442 memcpy(sysinfo
->mac_addr_base
, octeon_bootinfo
->mac_addr_base
,
443 sizeof(sysinfo
->mac_addr_base
));
444 sysinfo
->mac_addr_count
= octeon_bootinfo
->mac_addr_count
;
445 memcpy(sysinfo
->board_serial_number
,
446 octeon_bootinfo
->board_serial_number
,
447 sizeof(sysinfo
->board_serial_number
));
448 sysinfo
->compact_flash_common_base_addr
=
449 octeon_bootinfo
->compact_flash_common_base_addr
;
450 sysinfo
->compact_flash_attribute_base_addr
=
451 octeon_bootinfo
->compact_flash_attribute_base_addr
;
452 sysinfo
->led_display_base_addr
= octeon_bootinfo
->led_display_base_addr
;
453 sysinfo
->dfa_ref_clock_hz
= octeon_bootinfo
->dfa_ref_clock_hz
;
454 sysinfo
->bootloader_config_flags
= octeon_bootinfo
->config_flags
;
456 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
457 /* I/O clock runs at a different rate than the CPU. */
458 union cvmx_mio_rst_boot rst_boot
;
459 rst_boot
.u64
= cvmx_read_csr(CVMX_MIO_RST_BOOT
);
460 octeon_io_clock_rate
= 50000000 * rst_boot
.s
.pnr_mul
;
462 octeon_io_clock_rate
= sysinfo
->cpu_clock_hz
;
466 * Only enable the LED controller if we're running on a CN38XX, CN58XX,
467 * or CN56XX. The CN30XX and CN31XX don't have an LED controller.
469 if (!octeon_is_simulation() &&
470 octeon_has_feature(OCTEON_FEATURE_LED_CONTROLLER
)) {
471 cvmx_write_csr(CVMX_LED_EN
, 0);
472 cvmx_write_csr(CVMX_LED_PRT
, 0);
473 cvmx_write_csr(CVMX_LED_DBG
, 0);
474 cvmx_write_csr(CVMX_LED_PRT_FMT
, 0);
475 cvmx_write_csr(CVMX_LED_UDD_CNTX(0), 32);
476 cvmx_write_csr(CVMX_LED_UDD_CNTX(1), 32);
477 cvmx_write_csr(CVMX_LED_UDD_DATX(0), 0);
478 cvmx_write_csr(CVMX_LED_UDD_DATX(1), 0);
479 cvmx_write_csr(CVMX_LED_EN
, 1);
481 #ifdef CONFIG_CAVIUM_RESERVE32
483 * We need to temporarily allocate all memory in the reserve32
484 * region. This makes sure the kernel doesn't allocate this
485 * memory when it is getting memory from the
486 * bootloader. Later, after the memory allocations are
487 * complete, the reserve32 will be freed.
489 * Allocate memory for RESERVED32 aligned on 2MB boundary. This
490 * is in case we later use hugetlb entries with it.
492 addr
= cvmx_bootmem_phy_named_block_alloc(CONFIG_CAVIUM_RESERVE32
<< 20,
494 "CAVIUM_RESERVE32", 0);
496 pr_err("Failed to allocate CAVIUM_RESERVE32 memory area\n");
498 octeon_reserve32_memory
= addr
;
501 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2
502 if (cvmx_read_csr(CVMX_L2D_FUS3
) & (3ull << 34)) {
503 pr_info("Skipping L2 locking due to reduced L2 cache size\n");
505 uint32_t ebase
= read_c0_ebase() & 0x3ffff000;
506 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_TLB
508 cvmx_l2c_lock_mem_region(ebase
, 0x100);
510 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_EXCEPTION
511 /* General exception */
512 cvmx_l2c_lock_mem_region(ebase
+ 0x180, 0x80);
514 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_LOW_LEVEL_INTERRUPT
515 /* Interrupt handler */
516 cvmx_l2c_lock_mem_region(ebase
+ 0x200, 0x80);
518 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_INTERRUPT
519 cvmx_l2c_lock_mem_region(__pa_symbol(handle_int
), 0x100);
520 cvmx_l2c_lock_mem_region(__pa_symbol(plat_irq_dispatch
), 0x80);
522 #ifdef CONFIG_CAVIUM_OCTEON_LOCK_L2_MEMCPY
523 cvmx_l2c_lock_mem_region(__pa_symbol(memcpy
), 0x480);
528 octeon_check_cpu_bist();
530 octeon_uart
= octeon_get_boot_uart();
533 octeon_write_lcd("LinuxSMP");
535 octeon_write_lcd("Linux");
538 #ifdef CONFIG_CAVIUM_GDB
540 * When debugging the linux kernel, force the cores to enter
541 * the debug exception handler to break in.
543 if (octeon_get_boot_debug_flag()) {
544 cvmx_write_csr(CVMX_CIU_DINT
, 1 << cvmx_get_core_num());
545 cvmx_read_csr(CVMX_CIU_DINT
);
550 * BIST should always be enabled when doing a soft reset. L2
551 * Cache locking for instance is not cleared unless BIST is
552 * enabled. Unfortunately due to a chip errata G-200 for
553 * Cn38XX and CN31XX, BIST msut be disabled on these parts.
555 if (OCTEON_IS_MODEL(OCTEON_CN38XX_PASS2
) ||
556 OCTEON_IS_MODEL(OCTEON_CN31XX
))
557 cvmx_write_csr(CVMX_CIU_SOFT_BIST
, 0);
559 cvmx_write_csr(CVMX_CIU_SOFT_BIST
, 1);
561 /* Default to 64MB in the simulator to speed things up */
562 if (octeon_is_simulation())
563 MAX_MEMORY
= 64ull << 20;
566 argc
= octeon_boot_desc_ptr
->argc
;
567 for (i
= 0; i
< argc
; i
++) {
569 cvmx_phys_to_ptr(octeon_boot_desc_ptr
->argv
[i
]);
570 if ((strncmp(arg
, "MEM=", 4) == 0) ||
571 (strncmp(arg
, "mem=", 4) == 0)) {
572 sscanf(arg
+ 4, "%llu", &MAX_MEMORY
);
575 MAX_MEMORY
= 32ull << 30;
576 } else if (strcmp(arg
, "ecc_verbose") == 0) {
577 #ifdef CONFIG_CAVIUM_REPORT_SINGLE_BIT_ECC
578 __cvmx_interrupt_ecc_report_single_bit_errors
= 1;
579 pr_notice("Reporting of single bit ECC errors is "
582 } else if (strlen(arcs_cmdline
) + strlen(arg
) + 1 <
583 sizeof(arcs_cmdline
) - 1) {
584 strcat(arcs_cmdline
, " ");
585 strcat(arcs_cmdline
, arg
);
589 if (strstr(arcs_cmdline
, "console=") == NULL
) {
590 #ifdef CONFIG_CAVIUM_OCTEON_2ND_KERNEL
591 strcat(arcs_cmdline
, " console=ttyS0,115200");
593 if (octeon_uart
== 1)
594 strcat(arcs_cmdline
, " console=ttyS1,115200");
596 strcat(arcs_cmdline
, " console=ttyS0,115200");
600 if (octeon_is_simulation()) {
602 * The simulator uses a mtdram device pre filled with
603 * the filesystem. Also specify the calibration delay
604 * to avoid calculating it every time.
606 strcat(arcs_cmdline
, " rw root=1f00 slram=root,0x40000000,+1073741824");
609 mips_hpt_frequency
= octeon_get_clock_rate();
611 octeon_init_cvmcount();
612 octeon_setup_delays();
614 _machine_restart
= octeon_restart
;
615 _machine_halt
= octeon_halt
;
617 octeon_user_io_init();
618 register_smp_ops(&octeon_smp_ops
);
621 /* Exclude a single page from the regions obtained in plat_mem_setup. */
622 static __init
void memory_exclude_page(u64 addr
, u64
*mem
, u64
*size
)
624 if (addr
> *mem
&& addr
< *mem
+ *size
) {
625 u64 inc
= addr
- *mem
;
626 add_memory_region(*mem
, inc
, BOOT_MEM_RAM
);
631 if (addr
== *mem
&& *size
> PAGE_SIZE
) {
637 void __init
plat_mem_setup(void)
639 uint64_t mem_alloc_size
;
646 * The Mips memory init uses the first memory location for
647 * some memory vectors. When SPARSEMEM is in use, it doesn't
648 * verify that the size is big enough for the final
649 * vectors. Making the smallest chuck 4MB seems to be enough
650 * to consistently work.
652 mem_alloc_size
= 4 << 20;
653 if (mem_alloc_size
> MAX_MEMORY
)
654 mem_alloc_size
= MAX_MEMORY
;
657 * When allocating memory, we want incrementing addresses from
658 * bootmem_alloc so the code in add_memory_region can merge
659 * regions next to each other.
662 while ((boot_mem_map
.nr_map
< BOOT_MEM_MAP_MAX
)
663 && (total
< MAX_MEMORY
)) {
664 #if defined(CONFIG_64BIT) || defined(CONFIG_64BIT_PHYS_ADDR)
665 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
,
666 __pa_symbol(&__init_end
), -1,
668 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
669 #elif defined(CONFIG_HIGHMEM)
670 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
, 0, 1ull << 31,
672 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
674 memory
= cvmx_bootmem_phy_alloc(mem_alloc_size
, 0, 512 << 20,
676 CVMX_BOOTMEM_FLAG_NO_LOCKING
);
679 u64 size
= mem_alloc_size
;
682 * exclude a page at the beginning and end of
683 * the 256MB PCIe 'hole' so the kernel will not
684 * try to allocate multi-page buffers that
685 * span the discontinuity.
687 memory_exclude_page(CVMX_PCIE_BAR1_PHYS_BASE
,
689 memory_exclude_page(CVMX_PCIE_BAR1_PHYS_BASE
+
690 CVMX_PCIE_BAR1_PHYS_SIZE
,
694 * This function automatically merges address
695 * regions next to each other if they are
696 * received in incrementing order.
699 add_memory_region(memory
, size
, BOOT_MEM_RAM
);
700 total
+= mem_alloc_size
;
705 cvmx_bootmem_unlock();
707 #ifdef CONFIG_CAVIUM_RESERVE32
709 * Now that we've allocated the kernel memory it is safe to
710 * free the reserved region. We free it here so that builtin
711 * drivers can use the memory.
713 if (octeon_reserve32_memory
)
714 cvmx_bootmem_free_named("CAVIUM_RESERVE32");
715 #endif /* CONFIG_CAVIUM_RESERVE32 */
718 panic("Unable to allocate memory from "
719 "cvmx_bootmem_phy_alloc\n");
723 * Emit one character to the boot UART. Exported for use by the
726 int prom_putchar(char c
)
730 /* Spin until there is room */
732 lsrval
= cvmx_read_csr(CVMX_MIO_UARTX_LSR(octeon_uart
));
733 } while ((lsrval
& 0x20) == 0);
736 cvmx_write_csr(CVMX_MIO_UARTX_THR(octeon_uart
), c
& 0xffull
);
739 EXPORT_SYMBOL(prom_putchar
);
741 void prom_free_prom_memory(void)
743 if (OCTEON_IS_MODEL(OCTEON_CN63XX_PASS1_X
)) {
744 /* Check for presence of Core-14449 fix. */
750 asm volatile("# before" : : : "memory");
757 "1:\tlw %0,-12($31)\n\t"
759 : "=r" (insn
) : : "$31", "memory");
761 if ((insn
>> 26) != 0x33)
762 panic("No PREF instruction at Core-14449 probe point.");
764 if (((insn
>> 16) & 0x1f) != 28)
765 panic("Core-14449 WAR not in place (%04x).\n"
766 "Please build kernel with proper options (CONFIG_CAVIUM_CN63XXP1).", insn
);
768 #ifdef CONFIG_CAVIUM_DECODE_RSL
769 cvmx_interrupt_rsl_enable();
771 /* Add an interrupt handler for general failures. */
772 if (request_irq(OCTEON_IRQ_RML
, octeon_rlm_interrupt
, IRQF_SHARED
,
773 "RML/RSL", octeon_rlm_interrupt
)) {
774 panic("Unable to request_irq(OCTEON_IRQ_RML)");