1 /* MN10300 Arch-specific initialisation
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #include <linux/errno.h>
12 #include <linux/sched.h>
13 #include <linux/kernel.h>
15 #include <linux/stddef.h>
16 #include <linux/unistd.h>
17 #include <linux/ptrace.h>
18 #include <linux/user.h>
19 #include <linux/tty.h>
20 #include <linux/ioport.h>
21 #include <linux/delay.h>
22 #include <linux/init.h>
23 #include <linux/bootmem.h>
24 #include <linux/seq_file.h>
25 #include <linux/cpu.h>
26 #include <asm/processor.h>
27 #include <linux/console.h>
28 #include <asm/uaccess.h>
29 #include <asm/setup.h>
32 #include <proc/proc.h>
34 #include <asm/sections.h>
36 struct mn10300_cpuinfo boot_cpu_data
;
38 /* For PCI or other memory-mapped resources */
39 unsigned long pci_mem_start
= 0x18000000;
41 char redboot_command_line
[COMMAND_LINE_SIZE
] =
42 "console=ttyS0,115200 root=/dev/mtdblock3 rw";
44 char __initdata redboot_platform_name
[COMMAND_LINE_SIZE
];
46 static struct resource code_resource
= {
49 .name
= "Kernel code",
52 static struct resource data_resource
= {
55 .name
= "Kernel data",
58 static unsigned long __initdata phys_memory_base
;
59 static unsigned long __initdata phys_memory_end
;
60 static unsigned long __initdata memory_end
;
61 unsigned long memory_size
;
63 struct thread_info
*__current_ti
= &init_thread_union
.thread_info
;
64 struct task_struct
*__current
= &init_task
;
66 #define mn10300_known_cpus 5
67 static const char *const mn10300_cputypes
[] = {
79 static void __init
parse_mem_cmdline(char **cmdline_p
)
83 /* save unparsed command line copy for /proc/cmdline */
84 strcpy(boot_command_line
, redboot_command_line
);
86 /* see if there's an explicit memory size option */
87 from
= redboot_command_line
;
88 to
= redboot_command_line
;
92 if (c
== ' ' && !memcmp(from
, "mem=", 4)) {
93 if (to
!= redboot_command_line
)
95 memory_size
= memparse(from
+ 4, &from
);
106 *cmdline_p
= redboot_command_line
;
108 if (memory_size
== 0)
109 panic("Memory size not known\n");
111 memory_end
= (unsigned long) CONFIG_KERNEL_RAM_BASE_ADDRESS
+
113 if (memory_end
> phys_memory_end
)
114 memory_end
= phys_memory_end
;
118 * architecture specific setup
120 void __init
setup_arch(char **cmdline_p
)
122 unsigned long bootmap_size
;
123 unsigned long kstart_pfn
, start_pfn
, free_pfn
, end_pfn
;
128 parse_mem_cmdline(cmdline_p
);
130 init_mm
.start_code
= (unsigned long)&_text
;
131 init_mm
.end_code
= (unsigned long) &_etext
;
132 init_mm
.end_data
= (unsigned long) &_edata
;
133 init_mm
.brk
= (unsigned long) &_end
;
135 code_resource
.start
= virt_to_bus(&_text
);
136 code_resource
.end
= virt_to_bus(&_etext
)-1;
137 data_resource
.start
= virt_to_bus(&_etext
);
138 data_resource
.end
= virt_to_bus(&_edata
)-1;
140 start_pfn
= (CONFIG_KERNEL_RAM_BASE_ADDRESS
>> PAGE_SHIFT
);
141 kstart_pfn
= PFN_UP(__pa(&_text
));
142 free_pfn
= PFN_UP(__pa(&_end
));
143 end_pfn
= PFN_DOWN(__pa(memory_end
));
145 bootmap_size
= init_bootmem_node(&contig_page_data
,
150 if (kstart_pfn
> start_pfn
)
151 free_bootmem(PFN_PHYS(start_pfn
),
152 PFN_PHYS(kstart_pfn
- start_pfn
));
154 free_bootmem(PFN_PHYS(free_pfn
),
155 PFN_PHYS(end_pfn
- free_pfn
));
157 /* If interrupt vector table is in main ram, then we need to
158 reserve the page it is occupying. */
159 if (CONFIG_INTERRUPT_VECTOR_BASE
>= CONFIG_KERNEL_RAM_BASE_ADDRESS
&&
160 CONFIG_INTERRUPT_VECTOR_BASE
< memory_end
)
161 reserve_bootmem(CONFIG_INTERRUPT_VECTOR_BASE
, PAGE_SIZE
,
164 reserve_bootmem(PAGE_ALIGN(PFN_PHYS(free_pfn
)), bootmap_size
,
168 #if defined(CONFIG_VGA_CONSOLE)
169 conswitchp
= &vga_con
;
170 #elif defined(CONFIG_DUMMY_CONSOLE)
171 conswitchp
= &dummy_con
;
179 * perform CPU initialisation
181 void __init
cpu_init(void)
183 unsigned long cpurev
= CPUREV
, type
;
185 type
= (CPUREV
& CPUREV_TYPE
) >> CPUREV_TYPE_S
;
186 if (type
> mn10300_known_cpus
)
187 type
= mn10300_known_cpus
;
189 printk(KERN_INFO
"Panasonic %s, rev %ld\n",
190 mn10300_cputypes
[type
],
191 (cpurev
& CPUREV_REVISION
) >> CPUREV_REVISION_S
);
193 get_mem_info(&phys_memory_base
, &memory_size
);
194 phys_memory_end
= phys_memory_base
+ memory_size
;
199 static struct cpu cpu_devices
[NR_CPUS
];
201 static int __init
topology_init(void)
205 for_each_present_cpu(i
)
206 register_cpu(&cpu_devices
[i
], i
);
211 subsys_initcall(topology_init
);
214 * Get CPU information for use by the procfs.
216 static int show_cpuinfo(struct seq_file
*m
, void *v
)
219 struct mn10300_cpuinfo
*c
= v
;
220 unsigned long cpu_id
= c
- cpu_data
;
221 unsigned long cpurev
= c
->type
, type
, icachesz
, dcachesz
;
222 #else /* CONFIG_SMP */
223 unsigned long cpu_id
= 0;
224 unsigned long cpurev
= CPUREV
, type
, icachesz
, dcachesz
;
225 #endif /* CONFIG_SMP */
228 if (!cpu_online(cpu_id
))
232 type
= (cpurev
& CPUREV_TYPE
) >> CPUREV_TYPE_S
;
233 if (type
> mn10300_known_cpus
)
234 type
= mn10300_known_cpus
;
237 ((cpurev
& CPUREV_ICWAY
) >> CPUREV_ICWAY_S
) *
238 ((cpurev
& CPUREV_ICSIZE
) >> CPUREV_ICSIZE_S
) *
242 ((cpurev
& CPUREV_DCWAY
) >> CPUREV_DCWAY_S
) *
243 ((cpurev
& CPUREV_DCSIZE
) >> CPUREV_DCSIZE_S
) *
248 "vendor_id : " PROCESSOR_VENDOR_NAME
"\n"
251 "model name : " PROCESSOR_MODEL_NAME
"\n"
253 "dcache size: %lu\n",
255 mn10300_cputypes
[type
],
256 (cpurev
& CPUREV_REVISION
) >> CPUREV_REVISION_S
,
262 "ioclk speed: %lu.%02luMHz\n"
263 "bogomips : %lu.%02lu\n\n",
264 MN10300_IOCLK
/ 1000000,
265 (MN10300_IOCLK
/ 10000) % 100,
267 c
->loops_per_jiffy
/ (500000 / HZ
),
268 (c
->loops_per_jiffy
/ (5000 / HZ
)) % 100
269 #else /* CONFIG_SMP */
270 loops_per_jiffy
/ (500000 / HZ
),
271 (loops_per_jiffy
/ (5000 / HZ
)) % 100
272 #endif /* CONFIG_SMP */
278 static void *c_start(struct seq_file
*m
, loff_t
*pos
)
280 return *pos
< NR_CPUS
? cpu_data
+ *pos
: NULL
;
283 static void *c_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
286 return c_start(m
, pos
);
289 static void c_stop(struct seq_file
*m
, void *v
)
293 const struct seq_operations cpuinfo_op
= {
297 .show
= show_cpuinfo
,