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) 2005-2008 Cavium Networks, Inc
8 #ifndef __ASM_MACH_CAVIUM_OCTEON_KERNEL_ENTRY_H
9 #define __ASM_MACH_CAVIUM_OCTEON_KERNEL_ENTRY_H
12 #define CP0_CYCLE_COUNTER $9, 6
13 #define CP0_CVMCTL_REG $9, 7
14 #define CP0_CVMMEMCTL_REG $11,7
15 #define CP0_PRID_REG $15, 0
16 #define CP0_PRID_OCTEON_PASS1 0x000d0000
17 #define CP0_PRID_OCTEON_CN30XX 0x000d0200
19 .macro kernel_entry_setup
20 # Registers set by bootloader:
21 # (only 32 bits set by bootloader, all addresses are physical
22 # addresses, and need to have the appropriate memory region set
25 # a1 = argv (kseg0 compat addr)
26 # a2 = 1 if init core, zero otherwise
27 # a3 = address of boot descriptor block
30 # Read the cavium mem control register
31 dmfc0 v0
, CP0_CVMMEMCTL_REG
32 # Clear the lower 6 bits, the CVMSEG size
34 ori v0
, CONFIG_CAVIUM_OCTEON_CVMSEG_SIZE
35 dmtc0 v0
, CP0_CVMMEMCTL_REG
# Write the cavium mem control register
36 dmfc0 v0
, CP0_CVMCTL_REG
# Read the cavium control register
37 #ifdef CONFIG_CAVIUM_OCTEON_HW_FIX_UNALIGNED
38 # Disable unaligned load/store support but leave HW fixup enabled
42 # Disable unaligned load/store and HW fixup support
46 # Read the processor ID register
48 # Disable instruction prefetching (Octeon Pass1 errata)
50 # Skip reenable of prefetching for Octeon Pass1
51 beq v1
, CP0_PRID_OCTEON_PASS1
, skip
53 # Reenable instruction prefetching, not on Pass1
55 # Strip off pass number off of processor id
58 # CN30XX needs some extra stuff turned off for better performance
59 bne v1
, CP0_PRID_OCTEON_CN30XX
, skip
61 # CN30XX Use random Icache replacement
63 # CN30XX Disable instruction prefetching
66 # First clear off CvmCtl[IPPCI] bit and move the performance
67 # counters interrupt to IRQ 6
71 # Write the cavium control register
72 dmtc0 v0
, CP0_CVMCTL_REG
74 # Flush dcache after config change
78 # Jump the master to kernel_entry
79 bne a2
, zero
, octeon_main_processor
85 # All cores other than the master need to wait here for SMP bootstrap
89 # This is the variable where the next core to boot os stored
90 PTR_LA t0
, octeon_processor_boot
91 octeon_spin_wait_boot
:
92 # Get the core id of the next to be booted
94 # Keep looping if it isn't me
95 bne t1, v0, octeon_spin_wait_boot
97 # Get my GP from the global variable
98 PTR_LA t0, octeon_processor_gp
100 # Get my SP from the global variable
101 PTR_LA t0, octeon_processor_sp
103 # Set the SP global variable to zero so the master knows we've started
111 # Jump to the normal Linux SMP entry point
114 #else /* CONFIG_SMP */
117 # Someone tried to boot SMP with a non SMP kernel. All extra cores
122 b octeon_wait_forever
125 #endif /* CONFIG_SMP */
126 octeon_main_processor
:
131 * Do SMP slave processor setup necessary before we can savely execute C code.
133 .macro smp_slave_setup
136 #endif /* __ASM_MACH_CAVIUM_OCTEON_KERNEL_ENTRY_H */