blob: 742669fab8a915d9372d10f7b1b619e3d7912b73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m32r/boot/setup.S -- A setup code.
3 *
4 * Copyright (C) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
5 * and Hitoshi Yamamoto
6 *
7 */
8/* $Id$ */
9
10#include <linux/linkage.h>
11#include <asm/segment.h>
12#include <asm/page.h>
13#include <asm/pgtable.h>
14
15#include <linux/config.h>
16#include <asm/assembler.h>
17#include <asm/mmu_context.h>
18#include <asm/m32r.h>
19
20/*
21 * References to members of the boot_cpu_data structure.
22 */
23
24#define CPU_PARAMS boot_cpu_data
25#define M32R_MCICAR 0xfffffff0
26#define M32R_MCDCAR 0xfffffff4
27#define M32R_MCCR 0xfffffffc
28#define M32R_BSCR0 0xffffffd2
29
30;BSEL
31#define BSEL0CR0 0x00ef5000
32#define BSEL0CR1 0x00ef5004
33#define BSEL1CR0 0x00ef5100
34#define BSEL1CR1 0x00ef5104
35#define BSEL0CR0_VAL 0x00000000
36#define BSEL0CR1_VAL 0x01200100
37#define BSEL1CR0_VAL 0x01018000
38#define BSEL1CR1_VAL 0x00200001
39
40;SDRAMC
41#define SDRAMC_SDRF0 0x00ef6000
42#define SDRAMC_SDRF1 0x00ef6004
43#define SDRAMC_SDIR0 0x00ef6008
44#define SDRAMC_SDIR1 0x00ef600c
45#define SDRAMC_SD0ADR 0x00ef6020
46#define SDRAMC_SD0ER 0x00ef6024
47#define SDRAMC_SD0TR 0x00ef6028
48#define SDRAMC_SD0MOD 0x00ef602c
49#define SDRAMC_SD1ADR 0x00ef6040
50#define SDRAMC_SD1ER 0x00ef6044
51#define SDRAMC_SD1TR 0x00ef6048
52#define SDRAMC_SD1MOD 0x00ef604c
53#define SDRAM0 0x18000000
54#define SDRAM1 0x1c000000
55
56/*------------------------------------------------------------------------
57 * start up
58 */
59
60/*------------------------------------------------------------------------
61 * Kernel entry
62 */
63 .section .boot, "ax"
64ENTRY(boot)
65
66/* Set cache mode */
67#if defined(CONFIG_CHIP_XNUX2)
68 ldi r0, #-2 ;LDIMM (r0, M32R_MCCR)
69 ldi r1, #0x0101 ; cache on (with invalidation)
70; ldi r1, #0x00 ; cache off
71 sth r1, @r0
72#elif defined(CONFIG_CHIP_M32700) || defined(CONFIG_CHIP_VDEC2) \
73 || defined(CONFIG_CHIP_OPSP)
74 ldi r0, #-4 ;LDIMM (r0, M32R_MCCR)
75 ldi r1, #0x73 ; cache on (with invalidation)
76; ldi r1, #0x00 ; cache off
77 st r1, @r0
78#elif defined(CONFIG_CHIP_M32102)
79 ldi r0, #-4 ;LDIMM (r0, M32R_MCCR)
80 ldi r1, #0x101 ; cache on (with invalidation)
81; ldi r1, #0x00 ; cache off
82 st r1, @r0
Hirokazu Takata9287d952006-01-06 00:18:41 -080083#elif defined(CONFIG_CHIP_M32104)
84 ldi r0, #-4 ;LDIMM (r0, M32R_MCCR)
85 ldi r1, #0x703 ; cache on (with invalidation)
86 st r1, @r0
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#else
88#error unknown chip configuration
89#endif
90
91#ifdef CONFIG_SMP
92 ;; if not BSP (CPU#0) goto AP_loop
93 seth r5, #shigh(M32R_CPUID_PORTL)
94 ld r5, @(low(M32R_CPUID_PORTL), r5)
95 bnez r5, AP_loop
96#if !defined(CONFIG_PLAT_USRV)
97 ;; boot AP
98 ld24 r5, #0xeff2f8 ; IPICR7
99 ldi r6, #0x2 ; IPI to CPU1
100 st r6, @r5
101#endif
102#endif
103
104/*
105 * Now, Jump to stext
106 * if with MMU, TLB on.
107 * if with no MMU, only jump.
108 */
109 .global eit_vector
110mmu_on:
111 LDIMM (r13, stext)
112#ifdef CONFIG_MMU
113 bl init_tlb
114 LDIMM (r2, eit_vector) ; set EVB(cr5)
115 mvtc r2, cr5
116 seth r0, #high(MMU_REG_BASE) ; Set MMU_REG_BASE higher
117 or3 r0, r0, #low(MMU_REG_BASE) ; Set MMU_REG_BASE lower
118 ldi r1, #0x01
119 st r1, @(MATM_offset,r0) ; Set MATM (T bit ON)
120 ld r0, @(MATM_offset,r0) ; Check
121#else
Hirokazu Takata9287d952006-01-06 00:18:41 -0800122#if defined(CONFIG_CHIP_M32700)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 seth r0,#high(M32R_MCDCAR)
124 or3 r0,r0,#low(M32R_MCDCAR)
125 ld24 r1,#0x8080
126 st r1,@r0
Hirokazu Takata9287d952006-01-06 00:18:41 -0800127#elif defined(CONFIG_CHIP_M32104)
128 LDIMM (r2, eit_vector) ; set EVB(cr5)
129 mvtc r2, cr5
130#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif /* CONFIG_MMU */
132 jmp r13
133 nop
134 nop
135
136#ifdef CONFIG_SMP
137/*
138 * AP wait loop
139 */
140ENTRY(AP_loop)
141 ;; disable interrupt
142 clrpsw #0x40
143 ;; reset EVB
144 LDIMM (r4, _AP_RE)
145 seth r5, #high(__PAGE_OFFSET)
146 or3 r5, r5, #low(__PAGE_OFFSET)
147 not r5, r5
148 and r4, r5
149 mvtc r4, cr5
150 ;; disable maskable interrupt
151 seth r4, #high(M32R_ICU_IMASK_PORTL)
152 or3 r4, r4, #low(M32R_ICU_IMASK_PORTL)
153 ldi r5, #0
154 st r5, @r4
155 ld r5, @r4
156 ;; enable only IPI
157 setpsw #0x40
158 ;; LOOOOOOOOOOOOOOP!!!
159 .fillinsn
1602:
161 nop
162 nop
163 bra 2b
164 nop
165 nop
166
167#ifdef CONFIG_CHIP_M32700_TS1
168 .global dcache_dummy
169 .balign 16, 0
170dcache_dummy:
171 .byte 16
172#endif /* CONFIG_CHIP_M32700_TS1 */
173#endif /* CONFIG_SMP */
174
175 .end
176