2 * linux/arch/m32r/kernel/setup.c
4 * Setup routines for Renesas M32R
6 * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
10 #include <linux/init.h>
11 #include <linux/kernel.h>
12 #include <linux/stddef.h>
14 #include <linux/sched.h>
15 #include <linux/ioport.h>
17 #include <linux/bootmem.h>
18 #include <linux/console.h>
19 #include <linux/initrd.h>
20 #include <linux/major.h>
21 #include <linux/root_dev.h>
22 #include <linux/seq_file.h>
23 #include <linux/timex.h>
24 #include <linux/screen_info.h>
25 #include <linux/cpu.h>
26 #include <linux/nodemask.h>
27 #include <linux/pfn.h>
29 #include <asm/processor.h>
30 #include <asm/pgtable.h>
32 #include <asm/mmu_context.h>
34 #include <asm/setup.h>
35 #include <asm/sections.h>
38 extern void init_mmu(void);
46 struct cpuinfo_m32r boot_cpu_data
;
48 #ifdef CONFIG_BLK_DEV_RAM
49 extern int rd_doload
; /* 1 = load ramdisk, 0 = don't load */
50 extern int rd_prompt
; /* 1 = prompt for ramdisk, 0 = don't prompt */
51 extern int rd_image_start
; /* starting block # of image */
54 #if defined(CONFIG_VGA_CONSOLE)
55 struct screen_info screen_info
= {
56 .orig_video_lines
= 25,
57 .orig_video_cols
= 80,
59 .orig_video_ega_bx
= 0,
60 .orig_video_isVGA
= 1,
61 .orig_video_points
= 8
65 extern int root_mountflags
;
67 static char __initdata command_line
[COMMAND_LINE_SIZE
];
69 static struct resource data_resource
= {
70 .name
= "Kernel data",
73 .flags
= IORESOURCE_BUSY
| IORESOURCE_MEM
76 static struct resource code_resource
= {
77 .name
= "Kernel code",
80 .flags
= IORESOURCE_BUSY
| IORESOURCE_MEM
83 unsigned long memory_start
;
84 unsigned long memory_end
;
86 void __init
setup_arch(char **);
87 int get_cpuinfo(char *);
89 static __inline__
void parse_mem_cmdline(char ** cmdline_p
)
92 char *to
= command_line
;
93 char *from
= COMMAND_LINE
;
97 /* Save unparsed command line copy for /proc/cmdline */
98 memcpy(boot_command_line
, COMMAND_LINE
, COMMAND_LINE_SIZE
);
99 boot_command_line
[COMMAND_LINE_SIZE
-1] = '\0';
101 memory_start
= (unsigned long)CONFIG_MEMORY_START
+PAGE_OFFSET
;
102 memory_end
= memory_start
+(unsigned long)CONFIG_MEMORY_SIZE
;
105 if (c
== ' ' && !memcmp(from
, "mem=", 4)) {
106 if (to
!= command_line
)
110 unsigned long mem_size
;
113 mem_size
= memparse(from
+4, &from
);
114 memory_end
= memory_start
+ mem_size
;
121 if (COMMAND_LINE_SIZE
<= ++len
)
127 *cmdline_p
= command_line
;
129 printk(KERN_INFO
"user-defined physical RAM map:\n");
132 #ifndef CONFIG_DISCONTIGMEM
133 static unsigned long __init
setup_memory(void)
135 unsigned long start_pfn
, max_low_pfn
, bootmap_size
;
137 start_pfn
= PFN_UP( __pa(_end
) );
138 max_low_pfn
= PFN_DOWN( __pa(memory_end
) );
141 * Initialize the boot-time allocator (with low memory only):
143 bootmap_size
= init_bootmem_node(NODE_DATA(0), start_pfn
,
144 CONFIG_MEMORY_START
>>PAGE_SHIFT
, max_low_pfn
);
147 * Register fully available low RAM pages with the bootmem allocator.
150 unsigned long curr_pfn
;
151 unsigned long last_pfn
;
155 * We are rounding up the start address of usable memory:
157 curr_pfn
= PFN_UP(__pa(memory_start
));
160 * ... and at the end of the usable range downwards:
162 last_pfn
= PFN_DOWN(__pa(memory_end
));
164 if (last_pfn
> max_low_pfn
)
165 last_pfn
= max_low_pfn
;
167 pages
= last_pfn
- curr_pfn
;
168 free_bootmem(PFN_PHYS(curr_pfn
), PFN_PHYS(pages
));
172 * Reserve the kernel text and
173 * Reserve the bootmem bitmap. We do this in two steps (first step
174 * was init_bootmem()), because this catches the (definitely buggy)
175 * case of us accidentally initializing the bootmem allocator with
176 * an invalid RAM area.
178 reserve_bootmem(CONFIG_MEMORY_START
+ PAGE_SIZE
,
179 (PFN_PHYS(start_pfn
) + bootmap_size
+ PAGE_SIZE
- 1)
180 - CONFIG_MEMORY_START
);
183 * reserve physical page 0 - it's a special BIOS page on many boxes,
184 * enabling clean reboots, SMP operation, laptop functions.
186 reserve_bootmem(CONFIG_MEMORY_START
, PAGE_SIZE
);
189 * reserve memory hole
191 #ifdef CONFIG_MEMHOLE
192 reserve_bootmem(CONFIG_MEMHOLE_START
, CONFIG_MEMHOLE_SIZE
);
195 #ifdef CONFIG_BLK_DEV_INITRD
196 if (LOADER_TYPE
&& INITRD_START
) {
197 if (INITRD_START
+ INITRD_SIZE
<= (max_low_pfn
<< PAGE_SHIFT
)) {
198 reserve_bootmem(INITRD_START
, INITRD_SIZE
);
199 initrd_start
= INITRD_START
+ PAGE_OFFSET
;
200 initrd_end
= initrd_start
+ INITRD_SIZE
;
201 printk("initrd:start[%08lx],size[%08lx]\n",
202 initrd_start
, INITRD_SIZE
);
204 printk("initrd extends beyond end of memory "
205 "(0x%08lx > 0x%08lx)\ndisabling initrd\n",
206 INITRD_START
+ INITRD_SIZE
,
207 max_low_pfn
<< PAGE_SHIFT
);
216 #else /* CONFIG_DISCONTIGMEM */
217 extern unsigned long setup_memory(void);
218 #endif /* CONFIG_DISCONTIGMEM */
220 void __init
setup_arch(char **cmdline_p
)
222 ROOT_DEV
= old_decode_dev(ORIG_ROOT_DEV
);
224 boot_cpu_data
.cpu_clock
= M32R_CPUCLK
;
225 boot_cpu_data
.bus_clock
= M32R_BUSCLK
;
226 boot_cpu_data
.timer_divide
= M32R_TIMER_DIVIDE
;
228 #ifdef CONFIG_BLK_DEV_RAM
229 rd_image_start
= RAMDISK_FLAGS
& RAMDISK_IMAGE_START_MASK
;
230 rd_prompt
= ((RAMDISK_FLAGS
& RAMDISK_PROMPT_FLAG
) != 0);
231 rd_doload
= ((RAMDISK_FLAGS
& RAMDISK_LOAD_FLAG
) != 0);
234 if (!MOUNT_ROOT_RDONLY
)
235 root_mountflags
&= ~MS_RDONLY
;
238 #if defined(CONFIG_VGA_CONSOLE)
239 conswitchp
= &vga_con
;
240 #elif defined(CONFIG_DUMMY_CONSOLE)
241 conswitchp
= &dummy_con
;
245 #ifdef CONFIG_DISCONTIGMEM
246 nodes_clear(node_online_map
);
249 #endif /* CONFIG_DISCONTIGMEM */
251 init_mm
.start_code
= (unsigned long) _text
;
252 init_mm
.end_code
= (unsigned long) _etext
;
253 init_mm
.end_data
= (unsigned long) _edata
;
254 init_mm
.brk
= (unsigned long) _end
;
256 code_resource
.start
= virt_to_phys(_text
);
257 code_resource
.end
= virt_to_phys(_etext
)-1;
258 data_resource
.start
= virt_to_phys(_etext
);
259 data_resource
.end
= virt_to_phys(_edata
)-1;
261 parse_mem_cmdline(cmdline_p
);
268 static struct cpu cpu_devices
[NR_CPUS
];
270 static int __init
topology_init(void)
274 for_each_present_cpu(i
)
275 register_cpu(&cpu_devices
[i
], i
);
280 subsys_initcall(topology_init
);
282 #ifdef CONFIG_PROC_FS
284 * Get CPU information for use by the procfs.
286 static int show_cpuinfo(struct seq_file
*m
, void *v
)
288 struct cpuinfo_m32r
*c
= v
;
289 unsigned long cpu
= c
- cpu_data
;
292 if (!cpu_online(cpu
))
294 #endif /* CONFIG_SMP */
296 seq_printf(m
, "processor\t: %ld\n", cpu
);
298 #if defined(CONFIG_CHIP_VDEC2)
299 seq_printf(m
, "cpu family\t: VDEC2\n"
300 "cache size\t: Unknown\n");
301 #elif defined(CONFIG_CHIP_M32700)
302 seq_printf(m
,"cpu family\t: M32700\n"
303 "cache size\t: I-8KB/D-8KB\n");
304 #elif defined(CONFIG_CHIP_M32102)
305 seq_printf(m
,"cpu family\t: M32102\n"
306 "cache size\t: I-8KB\n");
307 #elif defined(CONFIG_CHIP_OPSP)
308 seq_printf(m
,"cpu family\t: OPSP\n"
309 "cache size\t: I-8KB/D-8KB\n");
310 #elif defined(CONFIG_CHIP_MP)
311 seq_printf(m
, "cpu family\t: M32R-MP\n"
312 "cache size\t: I-xxKB/D-xxKB\n");
313 #elif defined(CONFIG_CHIP_M32104)
314 seq_printf(m
,"cpu family\t: M32104\n"
315 "cache size\t: I-8KB/D-8KB\n");
317 seq_printf(m
, "cpu family\t: Unknown\n");
319 seq_printf(m
, "bogomips\t: %lu.%02lu\n",
320 c
->loops_per_jiffy
/(500000/HZ
),
321 (c
->loops_per_jiffy
/(5000/HZ
)) % 100);
322 #if defined(CONFIG_PLAT_MAPPI)
323 seq_printf(m
, "Machine\t\t: Mappi Evaluation board\n");
324 #elif defined(CONFIG_PLAT_MAPPI2)
325 seq_printf(m
, "Machine\t\t: Mappi-II Evaluation board\n");
326 #elif defined(CONFIG_PLAT_MAPPI3)
327 seq_printf(m
, "Machine\t\t: Mappi-III Evaluation board\n");
328 #elif defined(CONFIG_PLAT_M32700UT)
329 seq_printf(m
, "Machine\t\t: M32700UT Evaluation board\n");
330 #elif defined(CONFIG_PLAT_OPSPUT)
331 seq_printf(m
, "Machine\t\t: OPSPUT Evaluation board\n");
332 #elif defined(CONFIG_PLAT_USRV)
333 seq_printf(m
, "Machine\t\t: uServer\n");
334 #elif defined(CONFIG_PLAT_OAKS32R)
335 seq_printf(m
, "Machine\t\t: OAKS32R\n");
336 #elif defined(CONFIG_PLAT_M32104UT)
337 seq_printf(m
, "Machine\t\t: M3T-M32104UT uT Engine board\n");
339 seq_printf(m
, "Machine\t\t: Unknown\n");
342 #define PRINT_CLOCK(name, value) \
343 seq_printf(m, name " clock\t: %d.%02dMHz\n", \
344 ((value) / 1000000), ((value) % 1000000)/10000)
346 PRINT_CLOCK("CPU", (int)c
->cpu_clock
);
347 PRINT_CLOCK("Bus", (int)c
->bus_clock
);
354 static void *c_start(struct seq_file
*m
, loff_t
*pos
)
356 return *pos
< NR_CPUS
? cpu_data
+ *pos
: NULL
;
359 static void *c_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
362 return c_start(m
, pos
);
365 static void c_stop(struct seq_file
*m
, void *v
)
369 struct seq_operations cpuinfo_op
= {
373 .show
= show_cpuinfo
,
375 #endif /* CONFIG_PROC_FS */
377 unsigned long cpu_initialized __initdata
= 0;
380 * cpu_init() initializes state that is per-CPU. Some data is already
381 * initialized (naturally) in the bootstrap process.
382 * We reload them nevertheless, this function acts as a
383 * 'CPU state barrier', nothing should get across.
385 #if defined(CONFIG_CHIP_VDEC2) || defined(CONFIG_CHIP_XNUX2) \
386 || defined(CONFIG_CHIP_M32700) || defined(CONFIG_CHIP_M32102) \
387 || defined(CONFIG_CHIP_OPSP) || defined(CONFIG_CHIP_M32104)
388 void __init
cpu_init (void)
390 int cpu_id
= smp_processor_id();
392 if (test_and_set_bit(cpu_id
, &cpu_initialized
)) {
393 printk(KERN_WARNING
"CPU#%d already initialized!\n", cpu_id
);
397 printk(KERN_INFO
"Initializing CPU#%d\n", cpu_id
);
399 /* Set up and load the per-CPU TSS and LDT */
400 atomic_inc(&init_mm
.mm_count
);
401 current
->active_mm
= &init_mm
;
405 /* Force FPU initialization */
406 current_thread_info()->status
= 0;
414 /* Set up ICUIMASK */
415 outl(0x00070000, M32R_ICU_IMASK_PORTL
); /* imask=111 */
417 #endif /* defined(CONFIG_CHIP_VDEC2) ... */