Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 1 | /* |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 2 | * arch/sh/kernel/setup.c |
| 3 | * |
| 4 | * This file handles the architecture-dependent parts of initialization |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (C) 1999 Niibe Yutaka |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 7 | * Copyright (C) 2002 - 2007 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
Jon Smirl | 894673e | 2006-07-10 04:44:13 -0700 | [diff] [blame] | 9 | #include <linux/screen_info.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/ioport.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/initrd.h> |
| 13 | #include <linux/bootmem.h> |
| 14 | #include <linux/console.h> |
| 15 | #include <linux/seq_file.h> |
| 16 | #include <linux/root_dev.h> |
| 17 | #include <linux/utsname.h> |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 18 | #include <linux/nodemask.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Dave Hansen | 22a9835 | 2006-03-27 01:16:04 -0800 | [diff] [blame] | 20 | #include <linux/pfn.h> |
Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 21 | #include <linux/fs.h> |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 22 | #include <linux/mm.h> |
Paul Mundt | 4d5ade5 | 2007-04-27 11:25:57 +0900 | [diff] [blame] | 23 | #include <linux/kexec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/uaccess.h> |
| 25 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <asm/sections.h> |
| 27 | #include <asm/irq.h> |
| 28 | #include <asm/setup.h> |
Paul Mundt | de02797 | 2006-02-01 03:06:02 -0800 | [diff] [blame] | 29 | #include <asm/clock.h> |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 30 | #include <asm/mmu_context.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | extern void * __rd_start, * __rd_end; |
Paul Mundt | fa5da2f | 2007-03-08 17:27:37 +0900 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
| 35 | * Machine setup.. |
| 36 | */ |
| 37 | |
| 38 | /* |
| 39 | * Initialize loops_per_jiffy as 10000000 (1000MIPS). |
| 40 | * This value will be used at the very early stage of serial setup. |
| 41 | * The bigger value means no problem. |
| 42 | */ |
Paul Mundt | de02797 | 2006-02-01 03:06:02 -0800 | [diff] [blame] | 43 | struct sh_cpuinfo boot_cpu_data = { CPU_SH_NONE, 10000000, }; |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 44 | #ifdef CONFIG_VT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct screen_info screen_info; |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 46 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | #if defined(CONFIG_SH_UNKNOWN) |
| 49 | struct sh_machine_vector sh_mv; |
| 50 | #endif |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | extern int root_mountflags; |
| 53 | |
| 54 | #define MV_NAME_SIZE 32 |
| 55 | |
| 56 | static struct sh_machine_vector* __init get_mv_byname(const char* name); |
| 57 | |
| 58 | /* |
| 59 | * This is set up by the setup-routine at boot-time |
| 60 | */ |
| 61 | #define PARAM ((unsigned char *)empty_zero_page) |
| 62 | |
| 63 | #define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000)) |
| 64 | #define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004)) |
| 65 | #define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008)) |
| 66 | #define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c)) |
| 67 | #define INITRD_START (*(unsigned long *) (PARAM+0x010)) |
| 68 | #define INITRD_SIZE (*(unsigned long *) (PARAM+0x014)) |
| 69 | /* ... */ |
| 70 | #define COMMAND_LINE ((char *) (PARAM+0x100)) |
| 71 | |
Paul Mundt | 65463b7 | 2005-11-07 00:58:24 -0800 | [diff] [blame] | 72 | #define RAMDISK_IMAGE_START_MASK 0x07FF |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define RAMDISK_PROMPT_FLAG 0x8000 |
Paul Mundt | 65463b7 | 2005-11-07 00:58:24 -0800 | [diff] [blame] | 74 | #define RAMDISK_LOAD_FLAG 0x4000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Alon Bar-Lev | 53c8262 | 2007-02-12 00:54:19 -0800 | [diff] [blame] | 76 | static char __initdata command_line[COMMAND_LINE_SIZE] = { 0, }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 78 | static struct resource code_resource = { .name = "Kernel code", }; |
| 79 | static struct resource data_resource = { .name = "Kernel data", }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | unsigned long memory_start, memory_end; |
| 82 | |
| 83 | static inline void parse_cmdline (char ** cmdline_p, char mv_name[MV_NAME_SIZE], |
| 84 | struct sh_machine_vector** mvp, |
Paul Mundt | b641fe0 | 2006-12-12 09:00:47 +0900 | [diff] [blame] | 85 | unsigned long *mv_io_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
| 87 | char c = ' ', *to = command_line, *from = COMMAND_LINE; |
| 88 | int len = 0; |
| 89 | |
| 90 | /* Save unparsed command line copy for /proc/cmdline */ |
Alon Bar-Lev | 53c8262 | 2007-02-12 00:54:19 -0800 | [diff] [blame] | 91 | memcpy(boot_command_line, COMMAND_LINE, COMMAND_LINE_SIZE); |
| 92 | boot_command_line[COMMAND_LINE_SIZE-1] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | memory_start = (unsigned long)PAGE_OFFSET+__MEMORY_START; |
| 95 | memory_end = memory_start + __MEMORY_SIZE; |
| 96 | |
| 97 | for (;;) { |
| 98 | /* |
| 99 | * "mem=XXX[kKmM]" defines a size of memory. |
| 100 | */ |
| 101 | if (c == ' ' && !memcmp(from, "mem=", 4)) { |
| 102 | if (to != command_line) |
| 103 | to--; |
| 104 | { |
| 105 | unsigned long mem_size; |
| 106 | |
| 107 | mem_size = memparse(from+4, &from); |
| 108 | memory_end = memory_start + mem_size; |
| 109 | } |
| 110 | } |
Paul Mundt | a80fd21 | 2006-09-27 14:26:53 +0900 | [diff] [blame] | 111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | if (c == ' ' && !memcmp(from, "sh_mv=", 6)) { |
| 113 | char* mv_end; |
| 114 | char* mv_comma; |
| 115 | int mv_len; |
| 116 | if (to != command_line) |
| 117 | to--; |
| 118 | from += 6; |
| 119 | mv_end = strchr(from, ' '); |
| 120 | if (mv_end == NULL) |
| 121 | mv_end = from + strlen(from); |
| 122 | |
| 123 | mv_comma = strchr(from, ','); |
| 124 | if ((mv_comma != NULL) && (mv_comma < mv_end)) { |
| 125 | int ints[3]; |
| 126 | get_options(mv_comma+1, ARRAY_SIZE(ints), ints); |
| 127 | *mv_io_base = ints[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | mv_len = mv_comma - from; |
| 129 | } else { |
| 130 | mv_len = mv_end - from; |
| 131 | } |
| 132 | if (mv_len > (MV_NAME_SIZE-1)) |
| 133 | mv_len = MV_NAME_SIZE-1; |
| 134 | memcpy(mv_name, from, mv_len); |
| 135 | mv_name[mv_len] = '\0'; |
| 136 | from = mv_end; |
| 137 | |
| 138 | *mvp = get_mv_byname(mv_name); |
| 139 | } |
Paul Mundt | b641fe0 | 2006-12-12 09:00:47 +0900 | [diff] [blame] | 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | c = *(from++); |
| 142 | if (!c) |
| 143 | break; |
| 144 | if (COMMAND_LINE_SIZE <= ++len) |
| 145 | break; |
| 146 | *(to++) = c; |
| 147 | } |
| 148 | *to = '\0'; |
| 149 | *cmdline_p = command_line; |
| 150 | } |
| 151 | |
| 152 | static int __init sh_mv_setup(char **cmdline_p) |
| 153 | { |
Paul Mundt | 50373c1 | 2006-02-01 03:06:03 -0800 | [diff] [blame] | 154 | #ifdef CONFIG_SH_UNKNOWN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | extern struct sh_machine_vector mv_unknown; |
| 156 | #endif |
| 157 | struct sh_machine_vector *mv = NULL; |
| 158 | char mv_name[MV_NAME_SIZE] = ""; |
| 159 | unsigned long mv_io_base = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Paul Mundt | b641fe0 | 2006-12-12 09:00:47 +0900 | [diff] [blame] | 161 | parse_cmdline(cmdline_p, mv_name, &mv, &mv_io_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Paul Mundt | 50373c1 | 2006-02-01 03:06:03 -0800 | [diff] [blame] | 163 | #ifdef CONFIG_SH_UNKNOWN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (mv == NULL) { |
| 165 | mv = &mv_unknown; |
| 166 | if (*mv_name != '\0') { |
| 167 | printk("Warning: Unsupported machine %s, using unknown\n", |
| 168 | mv_name); |
| 169 | } |
| 170 | } |
| 171 | sh_mv = *mv; |
| 172 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | /* |
| 175 | * Manually walk the vec, fill in anything that the board hasn't yet |
| 176 | * by hand, wrapping to the generic implementation. |
| 177 | */ |
| 178 | #define mv_set(elem) do { \ |
| 179 | if (!sh_mv.mv_##elem) \ |
| 180 | sh_mv.mv_##elem = generic_##elem; \ |
| 181 | } while (0) |
| 182 | |
| 183 | mv_set(inb); mv_set(inw); mv_set(inl); |
| 184 | mv_set(outb); mv_set(outw); mv_set(outl); |
| 185 | |
| 186 | mv_set(inb_p); mv_set(inw_p); mv_set(inl_p); |
| 187 | mv_set(outb_p); mv_set(outw_p); mv_set(outl_p); |
| 188 | |
| 189 | mv_set(insb); mv_set(insw); mv_set(insl); |
| 190 | mv_set(outsb); mv_set(outsw); mv_set(outsl); |
| 191 | |
| 192 | mv_set(readb); mv_set(readw); mv_set(readl); |
| 193 | mv_set(writeb); mv_set(writew); mv_set(writel); |
| 194 | |
Paul Mundt | 50373c1 | 2006-02-01 03:06:03 -0800 | [diff] [blame] | 195 | mv_set(ioport_map); |
| 196 | mv_set(ioport_unmap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | mv_set(irq_demux); |
| 198 | |
| 199 | #ifdef CONFIG_SH_UNKNOWN |
| 200 | __set_io_port_base(mv_io_base); |
| 201 | #endif |
| 202 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 203 | if (!sh_mv.mv_nr_irqs) |
| 204 | sh_mv.mv_nr_irqs = NR_IRQS; |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | return 0; |
| 207 | } |
| 208 | |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 209 | /* |
| 210 | * Register fully available low RAM pages with the bootmem allocator. |
| 211 | */ |
| 212 | static void __init register_bootmem_low_pages(void) |
| 213 | { |
| 214 | unsigned long curr_pfn, last_pfn, pages; |
| 215 | |
| 216 | /* |
| 217 | * We are rounding up the start address of usable memory: |
| 218 | */ |
| 219 | curr_pfn = PFN_UP(__MEMORY_START); |
| 220 | |
| 221 | /* |
| 222 | * ... and at the end of the usable range downwards: |
| 223 | */ |
| 224 | last_pfn = PFN_DOWN(__pa(memory_end)); |
| 225 | |
| 226 | if (last_pfn > max_low_pfn) |
| 227 | last_pfn = max_low_pfn; |
| 228 | |
| 229 | pages = last_pfn - curr_pfn; |
| 230 | free_bootmem(PFN_PHYS(curr_pfn), PFN_PHYS(pages)); |
| 231 | } |
| 232 | |
| 233 | void __init setup_bootmem_allocator(unsigned long start_pfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | { |
| 235 | unsigned long bootmap_size; |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * Find a proper area for the bootmem bitmap. After this |
| 239 | * bootstrap step all allocations (until the page allocator |
| 240 | * is intact) must be done via bootmem_alloc(). |
| 241 | */ |
| 242 | bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn, |
| 243 | min_low_pfn, max_low_pfn); |
| 244 | |
| 245 | register_bootmem_low_pages(); |
| 246 | |
| 247 | node_set_online(0); |
| 248 | |
| 249 | /* |
| 250 | * Reserve the kernel text and |
| 251 | * Reserve the bootmem bitmap. We do this in two steps (first step |
| 252 | * was init_bootmem()), because this catches the (definitely buggy) |
| 253 | * case of us accidentally initializing the bootmem allocator with |
| 254 | * an invalid RAM area. |
| 255 | */ |
| 256 | reserve_bootmem(__MEMORY_START+PAGE_SIZE, |
| 257 | (PFN_PHYS(start_pfn)+bootmap_size+PAGE_SIZE-1)-__MEMORY_START); |
| 258 | |
| 259 | /* |
| 260 | * reserve physical page 0 - it's a special BIOS page on many boxes, |
| 261 | * enabling clean reboots, SMP operation, laptop functions. |
| 262 | */ |
| 263 | reserve_bootmem(__MEMORY_START, PAGE_SIZE); |
| 264 | |
| 265 | #ifdef CONFIG_BLK_DEV_INITRD |
| 266 | ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0); |
| 267 | if (&__rd_start != &__rd_end) { |
| 268 | LOADER_TYPE = 1; |
| 269 | INITRD_START = PHYSADDR((unsigned long)&__rd_start) - |
| 270 | __MEMORY_START; |
| 271 | INITRD_SIZE = (unsigned long)&__rd_end - |
| 272 | (unsigned long)&__rd_start; |
| 273 | } |
| 274 | |
| 275 | if (LOADER_TYPE && INITRD_START) { |
| 276 | if (INITRD_START + INITRD_SIZE <= (max_low_pfn << PAGE_SHIFT)) { |
| 277 | reserve_bootmem(INITRD_START + __MEMORY_START, |
| 278 | INITRD_SIZE); |
| 279 | initrd_start = INITRD_START + PAGE_OFFSET + |
| 280 | __MEMORY_START; |
| 281 | initrd_end = initrd_start + INITRD_SIZE; |
| 282 | } else { |
| 283 | printk("initrd extends beyond end of memory " |
| 284 | "(0x%08lx > 0x%08lx)\ndisabling initrd\n", |
| 285 | INITRD_START + INITRD_SIZE, |
| 286 | max_low_pfn << PAGE_SHIFT); |
| 287 | initrd_start = 0; |
| 288 | } |
| 289 | } |
| 290 | #endif |
Paul Mundt | 4d5ade5 | 2007-04-27 11:25:57 +0900 | [diff] [blame] | 291 | #ifdef CONFIG_KEXEC |
| 292 | if (crashk_res.start != crashk_res.end) |
| 293 | reserve_bootmem(crashk_res.start, |
| 294 | crashk_res.end - crashk_res.start + 1); |
| 295 | #endif |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | #ifndef CONFIG_NEED_MULTIPLE_NODES |
| 299 | static void __init setup_memory(void) |
| 300 | { |
| 301 | unsigned long start_pfn; |
| 302 | |
| 303 | /* |
| 304 | * Partially used pages are not usable - thus |
| 305 | * we are rounding upwards: |
| 306 | */ |
| 307 | start_pfn = PFN_UP(__pa(_end)); |
| 308 | setup_bootmem_allocator(start_pfn); |
| 309 | } |
| 310 | #else |
| 311 | extern void __init setup_memory(void); |
| 312 | #endif |
| 313 | |
| 314 | void __init setup_arch(char **cmdline_p) |
| 315 | { |
| 316 | enable_mmu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | #ifdef CONFIG_CMDLINE_BOOL |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 319 | strcpy(COMMAND_LINE, CONFIG_CMDLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | #endif |
| 321 | |
| 322 | ROOT_DEV = old_decode_dev(ORIG_ROOT_DEV); |
| 323 | |
| 324 | #ifdef CONFIG_BLK_DEV_RAM |
| 325 | rd_image_start = RAMDISK_FLAGS & RAMDISK_IMAGE_START_MASK; |
| 326 | rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0); |
| 327 | rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0); |
| 328 | #endif |
| 329 | |
| 330 | if (!MOUNT_ROOT_RDONLY) |
| 331 | root_mountflags &= ~MS_RDONLY; |
| 332 | init_mm.start_code = (unsigned long) _text; |
| 333 | init_mm.end_code = (unsigned long) _etext; |
| 334 | init_mm.end_data = (unsigned long) _edata; |
| 335 | init_mm.brk = (unsigned long) _end; |
| 336 | |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 337 | code_resource.start = virt_to_phys(_text); |
| 338 | code_resource.end = virt_to_phys(_etext)-1; |
| 339 | data_resource.start = virt_to_phys(_etext); |
| 340 | data_resource.end = virt_to_phys(_edata)-1; |
| 341 | |
| 342 | parse_early_param(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | sh_mv_setup(cmdline_p); |
| 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | /* |
| 347 | * Find the highest page frame number we have available |
| 348 | */ |
| 349 | max_pfn = PFN_DOWN(__pa(memory_end)); |
| 350 | |
| 351 | /* |
| 352 | * Determine low and high memory ranges: |
| 353 | */ |
| 354 | max_low_pfn = max_pfn; |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 355 | min_low_pfn = __MEMORY_START >> PAGE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Paul Mundt | 0106662 | 2007-03-28 16:38:13 +0900 | [diff] [blame] | 357 | nodes_clear(node_online_map); |
| 358 | setup_memory(); |
| 359 | paging_init(); |
| 360 | sparse_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | |
| 362 | #ifdef CONFIG_DUMMY_CONSOLE |
| 363 | conswitchp = &dummy_con; |
| 364 | #endif |
| 365 | |
| 366 | /* Perform the machine specific initialisation */ |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 367 | if (likely(sh_mv.mv_setup)) |
| 368 | sh_mv.mv_setup(cmdline_p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | struct sh_machine_vector* __init get_mv_byname(const char* name) |
| 372 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | extern long __machvec_start, __machvec_end; |
| 374 | struct sh_machine_vector *all_vecs = |
| 375 | (struct sh_machine_vector *)&__machvec_start; |
| 376 | |
| 377 | int i, n = ((unsigned long)&__machvec_end |
| 378 | - (unsigned long)&__machvec_start)/ |
| 379 | sizeof(struct sh_machine_vector); |
| 380 | |
| 381 | for (i = 0; i < n; ++i) { |
| 382 | struct sh_machine_vector *mv = &all_vecs[i]; |
| 383 | if (mv == NULL) |
| 384 | continue; |
| 385 | if (strcasecmp(name, get_system_type()) == 0) { |
| 386 | return mv; |
| 387 | } |
| 388 | } |
| 389 | return NULL; |
| 390 | } |
| 391 | |
| 392 | static struct cpu cpu[NR_CPUS]; |
| 393 | |
| 394 | static int __init topology_init(void) |
| 395 | { |
| 396 | int cpu_id; |
| 397 | |
KAMEZAWA Hiroyuki | bc83db4 | 2006-03-31 02:30:02 -0800 | [diff] [blame] | 398 | for_each_possible_cpu(cpu_id) |
KAMEZAWA Hiroyuki | 76b67ed | 2006-06-27 02:53:41 -0700 | [diff] [blame] | 399 | register_cpu(&cpu[cpu_id], cpu_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
| 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | subsys_initcall(topology_init); |
| 405 | |
| 406 | static const char *cpu_name[] = { |
Paul Mundt | b552c7e | 2006-11-20 14:14:29 +0900 | [diff] [blame] | 407 | [CPU_SH7206] = "SH7206", [CPU_SH7619] = "SH7619", |
Paul Mundt | e5723e0 | 2006-09-27 17:38:11 +0900 | [diff] [blame] | 408 | [CPU_SH7604] = "SH7604", [CPU_SH7300] = "SH7300", |
| 409 | [CPU_SH7705] = "SH7705", [CPU_SH7706] = "SH7706", |
| 410 | [CPU_SH7707] = "SH7707", [CPU_SH7708] = "SH7708", |
| 411 | [CPU_SH7709] = "SH7709", [CPU_SH7710] = "SH7710", |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 412 | [CPU_SH7712] = "SH7712", |
Paul Mundt | e5723e0 | 2006-09-27 17:38:11 +0900 | [diff] [blame] | 413 | [CPU_SH7729] = "SH7729", [CPU_SH7750] = "SH7750", |
| 414 | [CPU_SH7750S] = "SH7750S", [CPU_SH7750R] = "SH7750R", |
| 415 | [CPU_SH7751] = "SH7751", [CPU_SH7751R] = "SH7751R", |
| 416 | [CPU_SH7760] = "SH7760", [CPU_SH73180] = "SH73180", |
| 417 | [CPU_ST40RA] = "ST40RA", [CPU_ST40GX1] = "ST40GX1", |
| 418 | [CPU_SH4_202] = "SH4-202", [CPU_SH4_501] = "SH4-501", |
| 419 | [CPU_SH7770] = "SH7770", [CPU_SH7780] = "SH7780", |
| 420 | [CPU_SH7781] = "SH7781", [CPU_SH7343] = "SH7343", |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 421 | [CPU_SH7785] = "SH7785", [CPU_SH7722] = "SH7722", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | [CPU_SH_NONE] = "Unknown" |
| 423 | }; |
| 424 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 425 | const char *get_cpu_subtype(struct sh_cpuinfo *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | { |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 427 | return cpu_name[c->type]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | #ifdef CONFIG_PROC_FS |
Paul Mundt | 2220d16 | 2006-09-27 18:24:28 +0900 | [diff] [blame] | 431 | /* Symbolic CPU flags, keep in sync with asm/cpu-features.h */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | static const char *cpu_flags[] = { |
Paul Mundt | 2220d16 | 2006-09-27 18:24:28 +0900 | [diff] [blame] | 433 | "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr", |
Paul Mundt | 72c3554 | 2006-09-27 18:27:43 +0900 | [diff] [blame] | 434 | "ptea", "llsc", "l2", NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | }; |
| 436 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 437 | static void show_cpuflags(struct seq_file *m, struct sh_cpuinfo *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
| 439 | unsigned long i; |
| 440 | |
| 441 | seq_printf(m, "cpu flags\t:"); |
| 442 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 443 | if (!c->flags) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | seq_printf(m, " %s\n", cpu_flags[0]); |
| 445 | return; |
| 446 | } |
| 447 | |
Paul Mundt | de02797 | 2006-02-01 03:06:02 -0800 | [diff] [blame] | 448 | for (i = 0; cpu_flags[i]; i++) |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 449 | if ((c->flags & (1 << i))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | seq_printf(m, " %s", cpu_flags[i+1]); |
| 451 | |
| 452 | seq_printf(m, "\n"); |
| 453 | } |
| 454 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 455 | static void show_cacheinfo(struct seq_file *m, const char *type, |
| 456 | struct cache_info info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
| 458 | unsigned int cache_size; |
| 459 | |
| 460 | cache_size = info.ways * info.sets * info.linesz; |
| 461 | |
Paul Mundt | de02797 | 2006-02-01 03:06:02 -0800 | [diff] [blame] | 462 | seq_printf(m, "%s size\t: %2dKiB (%d-way)\n", |
| 463 | type, cache_size >> 10, info.ways); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | /* |
| 467 | * Get CPU information for use by the procfs. |
| 468 | */ |
| 469 | static int show_cpuinfo(struct seq_file *m, void *v) |
| 470 | { |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 471 | struct sh_cpuinfo *c = v; |
| 472 | unsigned int cpu = c - cpu_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 474 | if (!cpu_online(cpu)) |
| 475 | return 0; |
| 476 | |
| 477 | if (cpu == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | seq_printf(m, "machine\t\t: %s\n", get_system_type()); |
| 479 | |
| 480 | seq_printf(m, "processor\t: %d\n", cpu); |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 481 | seq_printf(m, "cpu family\t: %s\n", init_utsname()->machine); |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 482 | seq_printf(m, "cpu type\t: %s\n", get_cpu_subtype(c)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 484 | show_cpuflags(m, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
| 486 | seq_printf(m, "cache type\t: "); |
| 487 | |
| 488 | /* |
| 489 | * Check for what type of cache we have, we support both the |
| 490 | * unified cache on the SH-2 and SH-3, as well as the harvard |
| 491 | * style cache on the SH-4. |
| 492 | */ |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 493 | if (c->icache.flags & SH_CACHE_COMBINED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | seq_printf(m, "unified\n"); |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 495 | show_cacheinfo(m, "cache", c->icache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | } else { |
| 497 | seq_printf(m, "split (harvard)\n"); |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 498 | show_cacheinfo(m, "icache", c->icache); |
| 499 | show_cacheinfo(m, "dcache", c->dcache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Paul Mundt | 72c3554 | 2006-09-27 18:27:43 +0900 | [diff] [blame] | 502 | /* Optional secondary cache */ |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 503 | if (c->flags & CPU_HAS_L2_CACHE) |
| 504 | show_cacheinfo(m, "scache", c->scache); |
Paul Mundt | 72c3554 | 2006-09-27 18:27:43 +0900 | [diff] [blame] | 505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | seq_printf(m, "bogomips\t: %lu.%02lu\n", |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 507 | c->loops_per_jiffy/(500000/HZ), |
| 508 | (c->loops_per_jiffy/(5000/HZ)) % 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Paul Mundt | db62e5b | 2007-04-26 12:17:20 +0900 | [diff] [blame] | 510 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | } |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | static void *c_start(struct seq_file *m, loff_t *pos) |
| 514 | { |
| 515 | return *pos < NR_CPUS ? cpu_data + *pos : NULL; |
| 516 | } |
| 517 | static void *c_next(struct seq_file *m, void *v, loff_t *pos) |
| 518 | { |
| 519 | ++*pos; |
| 520 | return c_start(m, pos); |
| 521 | } |
| 522 | static void c_stop(struct seq_file *m, void *v) |
| 523 | { |
| 524 | } |
| 525 | struct seq_operations cpuinfo_op = { |
| 526 | .start = c_start, |
| 527 | .next = c_next, |
| 528 | .stop = c_stop, |
| 529 | .show = show_cpuinfo, |
| 530 | }; |
| 531 | #endif /* CONFIG_PROC_FS */ |