2 * linux/arch/h8300/kernel/setup.c
8 * This file handles the architecture-dependent parts of system setup
11 #include <linux/kernel.h>
12 #include <linux/sched.h>
13 #include <linux/delay.h>
14 #include <linux/interrupt.h>
17 #include <linux/console.h>
18 #include <linux/errno.h>
19 #include <linux/string.h>
20 #include <linux/bootmem.h>
21 #include <linux/seq_file.h>
22 #include <linux/init.h>
23 #include <linux/platform_device.h>
24 #include <linux/module.h>
26 #include <linux/of_fdt.h>
27 #include <linux/of_platform.h>
28 #include <linux/of_address.h>
29 #include <linux/clk-provider.h>
30 #include <linux/memblock.h>
31 #include <linux/screen_info.h>
32 #include <linux/clocksource.h>
34 #include <asm/setup.h>
36 #include <asm/pgtable.h>
37 #include <asm/sections.h>
40 #if defined(CONFIG_CPU_H8300H)
42 #elif defined(CONFIG_CPU_H8S)
48 unsigned long memory_start;
49 unsigned long memory_end;
50 EXPORT_SYMBOL(memory_end);
51 static unsigned long freq;
52 extern char __dtb_start[];
55 struct screen_info screen_info;
58 char __initdata command_line[COMMAND_LINE_SIZE];
60 void sim_console_register(void);
62 void __init h8300_fdt_init(void *fdt, char *bootargs)
67 strcpy(command_line, bootargs);
69 early_init_dt_scan(fdt);
70 memblock_allow_resize();
73 static void __init bootmem_init(void)
76 unsigned long ram_start_pfn;
77 unsigned long free_ram_start_pfn;
78 unsigned long ram_end_pfn;
79 struct memblock_region *region;
81 memory_end = memory_start = 0;
83 /* Find main memory where is the kernel */
84 for_each_memblock(memory, region) {
85 memory_start = region->base;
86 memory_end = region->base + region->size;
92 ram_start_pfn = PFN_UP(memory_start);
93 /* free_ram_start_pfn is first page after kernel */
94 free_ram_start_pfn = PFN_UP(__pa(_end));
95 ram_end_pfn = PFN_DOWN(memblock_end_of_DRAM());
97 max_pfn = ram_end_pfn;
100 * give all the memory to the bootmap allocator, tell it to put the
101 * boot mem_map at the start of memory
103 bootmap_size = init_bootmem_node(NODE_DATA(0),
108 * free the usable memory, we have to make sure we do not free
109 * the bootmem bitmap so we then reserve it after freeing it :-)
111 free_bootmem(PFN_PHYS(free_ram_start_pfn),
112 (ram_end_pfn - free_ram_start_pfn) << PAGE_SHIFT);
113 reserve_bootmem(PFN_PHYS(free_ram_start_pfn), bootmap_size,
116 for_each_memblock(reserved, region) {
117 reserve_bootmem(region->base, region->size, BOOTMEM_DEFAULT);
121 void __init setup_arch(char **cmdline_p)
123 unflatten_and_copy_device_tree();
125 init_mm.start_code = (unsigned long) _stext;
126 init_mm.end_code = (unsigned long) _etext;
127 init_mm.end_data = (unsigned long) _edata;
128 init_mm.brk = (unsigned long) 0;
130 pr_notice("\r\n\nuClinux " CPU "\n");
131 pr_notice("Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne\n");
134 strcpy(boot_command_line, command_line);
135 *cmdline_p = boot_command_line;
140 #if defined(CONFIG_H8300H_SIM) || defined(CONFIG_H8S_SIM)
141 sim_console_register();
144 early_platform_driver_probe("earlyprintk", 1, 0);
146 * get kmalloc into gear
152 * Get CPU information for use by the procfs.
155 static int show_cpuinfo(struct seq_file *m, void *v)
161 seq_printf(m, "CPU:\t\t%s\n"
162 "Clock:\t\t%lu.%1luMHz\n"
163 "BogoMips:\t%lu.%02lu\n"
164 "Calibration:\t%lu loops\n",
166 freq/1000, freq%1000,
167 (loops_per_jiffy*HZ)/500000,
168 ((loops_per_jiffy*HZ)/5000)%100,
169 (loops_per_jiffy*HZ));
174 static void *c_start(struct seq_file *m, loff_t *pos)
176 return *pos < num_possible_cpus() ?
177 ((void *) 0x12345678) : NULL;
180 static void *c_next(struct seq_file *m, void *v, loff_t *pos)
183 return c_start(m, pos);
186 static void c_stop(struct seq_file *m, void *v)
190 const struct seq_operations cpuinfo_op = {
194 .show = show_cpuinfo,
197 static int __init device_probe(void)
199 of_platform_populate(NULL, NULL, NULL, NULL);
204 device_initcall(device_probe);
206 #if defined(CONFIG_CPU_H8300H)
207 #define get_wait(base, addr) ({ \
209 baddr = ((addr) / 0x200000 * 2); \
210 w *= (readw((base) + 2) & (3 << baddr)) + 1; \
213 #if defined(CONFIG_CPU_H8S)
214 #define get_wait(base, addr) ({ \
216 baddr = ((addr) / 0x200000 * 16); \
217 w *= (readl((base) + 2) & (7 << baddr)) + 1; \
221 static __init int access_timing(void)
223 struct device_node *bsc;
225 unsigned long addr = (unsigned long)&__delay;
226 int bit = 1 << (addr / 0x200000);
229 bsc = of_find_compatible_node(NULL, NULL, "renesas,h8300-bsc");
230 base = of_iomap(bsc, 0);
231 w = (readb(base + 0) & bit)?2:1;
232 if (readb(base + 1) & bit)
233 w *= get_wait(base, addr);
239 void __init calibrate_delay(void)
241 struct device_node *cpu;
244 cpu = of_find_compatible_node(NULL, NULL, "renesas,h8300");
245 of_property_read_s32(cpu, "clock-frequency", &freq);
246 loops_per_jiffy = freq / HZ / (access_timing() * 2);
247 pr_cont("%lu.%02lu BogoMIPS (lpj=%lu)\n",
248 loops_per_jiffy / (500000 / HZ),
249 (loops_per_jiffy / (5000 / HZ)) % 100, loops_per_jiffy);
253 void __init time_init(void)