blob: 489b27320dfaa85d515841af36b6f472d67f2ad1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1995 Linus Torvalds
7 * Copyright (C) 1995 Waldorf Electronics
8 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 Ralf Baechle
9 * Copyright (C) 1996 Stoned Elipot
10 * Copyright (C) 1999 Silicon Graphics, Inc.
11 * Copyright (C) 2000 2001, 2002 Maciej W. Rozycki
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/errno.h>
14#include <linux/init.h>
15#include <linux/ioport.h>
16#include <linux/sched.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19#include <linux/module.h>
20#include <linux/stddef.h>
21#include <linux/string.h>
22#include <linux/unistd.h>
23#include <linux/slab.h>
24#include <linux/user.h>
25#include <linux/utsname.h>
26#include <linux/a.out.h>
Jon Smirl894673e2006-07-10 04:44:13 -070027#include <linux/screen_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/bootmem.h>
29#include <linux/initrd.h>
30#include <linux/major.h>
31#include <linux/kdev_t.h>
32#include <linux/root_dev.h>
33#include <linux/highmem.h>
34#include <linux/console.h>
Yoichi Yuasab4819b52005-06-25 14:54:31 -070035#include <linux/mmzone.h>
Dave Hansen22a98352006-03-27 01:16:04 -080036#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/addrspace.h>
39#include <asm/bootinfo.h>
Ralf Baechleec74e362005-07-13 11:48:45 +000040#include <asm/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/cpu.h>
42#include <asm/sections.h>
43#include <asm/setup.h>
44#include <asm/system.h>
45
Ralf Baechleec74e362005-07-13 11:48:45 +000046struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48EXPORT_SYMBOL(cpu_data);
49
50#ifdef CONFIG_VT
51struct screen_info screen_info;
52#endif
53
54/*
55 * Despite it's name this variable is even if we don't have PCI
56 */
57unsigned int PCI_DMA_BUS_IS_PHYS;
58
59EXPORT_SYMBOL(PCI_DMA_BUS_IS_PHYS);
60
61/*
62 * Setup information
63 *
64 * These are initialized so they are in the .data section
65 */
Ralf Baechleec74e362005-07-13 11:48:45 +000066unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
67unsigned long mips_machgroup __read_mostly = MACH_GROUP_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69EXPORT_SYMBOL(mips_machtype);
70EXPORT_SYMBOL(mips_machgroup);
71
72struct boot_mem_map boot_mem_map;
73
74static char command_line[CL_SIZE];
75 char arcs_cmdline[CL_SIZE]=CONFIG_CMDLINE;
76
77/*
78 * mips_io_port_base is the begin of the address space to which x86 style
79 * I/O ports are mapped.
80 */
Ralf Baechleec74e362005-07-13 11:48:45 +000081const unsigned long mips_io_port_base __read_mostly = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082EXPORT_SYMBOL(mips_io_port_base);
83
84/*
85 * isa_slot_offset is the address where E(ISA) busaddress 0 is mapped
86 * for the processor.
87 */
88unsigned long isa_slot_offset;
89EXPORT_SYMBOL(isa_slot_offset);
90
91static struct resource code_resource = { .name = "Kernel code", };
92static struct resource data_resource = { .name = "Kernel data", };
93
94void __init add_memory_region(phys_t start, phys_t size, long type)
95{
96 int x = boot_mem_map.nr_map;
97 struct boot_mem_map_entry *prev = boot_mem_map.map + x - 1;
98
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +020099 /* Sanity check */
100 if (start + size < start) {
101 printk("Trying to add an invalid memory region, skipped\n");
102 return;
103 }
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /*
106 * Try to merge with previous entry if any. This is far less than
107 * perfect but is sufficient for most real world cases.
108 */
109 if (x && prev->addr + prev->size == start && prev->type == type) {
110 prev->size += size;
111 return;
112 }
113
114 if (x == BOOT_MEM_MAP_MAX) {
115 printk("Ooops! Too many entries in the memory map!\n");
116 return;
117 }
118
119 boot_mem_map.map[x].addr = start;
120 boot_mem_map.map[x].size = size;
121 boot_mem_map.map[x].type = type;
122 boot_mem_map.nr_map++;
123}
124
125static void __init print_memory_map(void)
126{
127 int i;
128 const int field = 2 * sizeof(unsigned long);
129
130 for (i = 0; i < boot_mem_map.nr_map; i++) {
131 printk(" memory: %0*Lx @ %0*Lx ",
132 field, (unsigned long long) boot_mem_map.map[i].size,
133 field, (unsigned long long) boot_mem_map.map[i].addr);
134
135 switch (boot_mem_map.map[i].type) {
136 case BOOT_MEM_RAM:
137 printk("(usable)\n");
138 break;
139 case BOOT_MEM_ROM_DATA:
140 printk("(ROM data)\n");
141 break;
142 case BOOT_MEM_RESERVED:
143 printk("(reserved)\n");
144 break;
145 default:
146 printk("type %lu\n", boot_mem_map.map[i].type);
147 break;
148 }
149 }
150}
151
152static inline void parse_cmdline_early(void)
153{
154 char c = ' ', *to = command_line, *from = saved_command_line;
155 unsigned long start_at, mem_size;
156 int len = 0;
157 int usermem = 0;
158
159 printk("Determined physical RAM map:\n");
160 print_memory_map();
161
162 for (;;) {
163 /*
164 * "mem=XXX[kKmM]" defines a memory region from
165 * 0 to <XXX>, overriding the determined size.
166 * "mem=XXX[KkmM]@YYY[KkmM]" defines a memory region from
167 * <YYY> to <YYY>+<XXX>, overriding the determined size.
168 */
169 if (c == ' ' && !memcmp(from, "mem=", 4)) {
170 if (to != command_line)
171 to--;
172 /*
173 * If a user specifies memory size, we
174 * blow away any automatically generated
175 * size.
176 */
177 if (usermem == 0) {
178 boot_mem_map.nr_map = 0;
179 usermem = 1;
180 }
181 mem_size = memparse(from + 4, &from);
182 if (*from == '@')
183 start_at = memparse(from + 1, &from);
184 else
185 start_at = 0;
186 add_memory_region(start_at, mem_size, BOOT_MEM_RAM);
187 }
188 c = *(from++);
189 if (!c)
190 break;
191 if (CL_SIZE <= ++len)
192 break;
193 *(to++) = c;
194 }
195 *to = '\0';
196
197 if (usermem) {
198 printk("User-defined physical RAM map:\n");
199 print_memory_map();
200 }
201}
202
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200203/*
204 * Manage initrd
205 */
206#ifdef CONFIG_BLK_DEV_INITRD
207
208static int __init parse_rd_cmdline(unsigned long *rd_start, unsigned long *rd_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 /*
211 * "rd_start=0xNNNNNNNN" defines the memory address of an initrd
212 * "rd_size=0xNN" it's size
213 */
214 unsigned long start = 0;
215 unsigned long size = 0;
216 unsigned long end;
217 char cmd_line[CL_SIZE];
218 char *start_str;
219 char *size_str;
220 char *tmp;
221
222 strcpy(cmd_line, command_line);
223 *command_line = 0;
224 tmp = cmd_line;
225 /* Ignore "rd_start=" strings in other parameters. */
226 start_str = strstr(cmd_line, "rd_start=");
227 if (start_str && start_str != cmd_line && *(start_str - 1) != ' ')
228 start_str = strstr(start_str, " rd_start=");
229 while (start_str) {
230 if (start_str != cmd_line)
231 strncat(command_line, tmp, start_str - tmp);
232 start = memparse(start_str + 9, &start_str);
233 tmp = start_str + 1;
234 start_str = strstr(start_str, " rd_start=");
235 }
236 if (*tmp)
237 strcat(command_line, tmp);
238
239 strcpy(cmd_line, command_line);
240 *command_line = 0;
241 tmp = cmd_line;
242 /* Ignore "rd_size" strings in other parameters. */
243 size_str = strstr(cmd_line, "rd_size=");
244 if (size_str && size_str != cmd_line && *(size_str - 1) != ' ')
245 size_str = strstr(size_str, " rd_size=");
246 while (size_str) {
247 if (size_str != cmd_line)
248 strncat(command_line, tmp, size_str - tmp);
249 size = memparse(size_str + 8, &size_str);
250 tmp = size_str + 1;
251 size_str = strstr(size_str, " rd_size=");
252 }
253 if (*tmp)
254 strcat(command_line, tmp);
255
Ralf Baechle875d43e2005-09-03 15:56:16 -0700256#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /* HACK: Guess if the sign extension was forgotten */
258 if (start > 0x0000000080000000 && start < 0x00000000ffffffff)
Atsushi Nemoto460c0422006-06-01 01:00:39 +0900259 start |= 0xffffffff00000000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif
261
262 end = start + size;
263 if (start && end) {
264 *rd_start = start;
265 *rd_end = end;
266 return 1;
267 }
268 return 0;
269}
270
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200271static unsigned long __init init_initrd(void)
272{
273 unsigned long tmp, end;
274 u32 *initrd_header;
275
276 ROOT_DEV = Root_RAM0;
277
278 if (parse_rd_cmdline(&initrd_start, &initrd_end))
279 return initrd_end;
280 /*
281 * Board specific code should have set up initrd_start
282 * and initrd_end...
283 */
284 end = (unsigned long)&_end;
285 tmp = PAGE_ALIGN(end) - sizeof(u32) * 2;
286 if (tmp < end)
287 tmp += PAGE_SIZE;
288
289 initrd_header = (u32 *)tmp;
290 if (initrd_header[0] == 0x494E5244) {
291 initrd_start = (unsigned long)&initrd_header[2];
292 initrd_end = initrd_start + initrd_header[1];
293 }
294 return initrd_end;
295}
296
297static void __init finalize_initrd(void)
298{
299 unsigned long size = initrd_end - initrd_start;
300
301 if (size == 0) {
302 printk(KERN_INFO "Initrd not found or empty");
303 goto disable;
304 }
305 if (CPHYSADDR(initrd_end) > PFN_PHYS(max_low_pfn)) {
306 printk("Initrd extends beyond end of memory");
307 goto disable;
308 }
309
310 reserve_bootmem(CPHYSADDR(initrd_start), size);
311 initrd_below_start_ok = 1;
312
313 printk(KERN_INFO "Initial ramdisk at: 0x%lx (%lu bytes)\n",
314 initrd_start, size);
315 return;
316disable:
317 printk(" - disabling initrd\n");
318 initrd_start = 0;
319 initrd_end = 0;
320}
321
322#else /* !CONFIG_BLK_DEV_INITRD */
323
324#define init_initrd() 0
325#define finalize_initrd() do {} while (0)
326
327#endif
328
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200329/*
330 * Initialize the bootmem allocator. It also setup initrd related data
331 * if needed.
332 */
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200333#ifdef CONFIG_SGI_IP27
334
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200335static void __init bootmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200337 init_initrd();
338 finalize_initrd();
339}
340
341#else /* !CONFIG_SGI_IP27 */
342
343static void __init bootmem_init(void)
344{
345 unsigned long reserved_end;
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200346 unsigned long highest = 0;
347 unsigned long mapstart = -1UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned long bootmap_size;
349 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200351 /*
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200352 * Init any data related to initrd. It's a nop if INITRD is
353 * not selected. Once that done we can determine the low bound
354 * of usable memory.
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200355 */
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200356 reserved_end = init_initrd();
357 reserved_end = PFN_UP(CPHYSADDR(max(reserved_end, (unsigned long)&_end)));
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200358
359 /*
360 * Find the highest page frame number we have available.
361 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 for (i = 0; i < boot_mem_map.nr_map; i++) {
363 unsigned long start, end;
364
365 if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
366 continue;
367
368 start = PFN_UP(boot_mem_map.map[i].addr);
369 end = PFN_DOWN(boot_mem_map.map[i].addr
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200370 + boot_mem_map.map[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200372 if (end > highest)
373 highest = end;
374 if (end <= reserved_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 continue;
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200376 if (start >= mapstart)
377 continue;
378 mapstart = max(reserved_end, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 /*
382 * Determine low and high memory ranges
383 */
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200384 if (highest > PFN_DOWN(HIGHMEM_START)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_HIGHMEM
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200386 highstart_pfn = PFN_DOWN(HIGHMEM_START);
387 highend_pfn = highest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#endif
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200389 highest = PFN_DOWN(HIGHMEM_START);
390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200392 /*
393 * Initialize the boot-time allocator with low memory only.
394 */
395 bootmap_size = init_bootmem(mapstart, highest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * Register fully available low RAM pages with the bootmem allocator.
399 */
400 for (i = 0; i < boot_mem_map.nr_map; i++) {
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200401 unsigned long start, end, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /*
404 * Reserve usable memory.
405 */
406 if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
407 continue;
408
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200409 start = PFN_UP(boot_mem_map.map[i].addr);
410 end = PFN_DOWN(boot_mem_map.map[i].addr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 + boot_mem_map.map[i].size);
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200412 /*
413 * We are rounding up the start address of usable memory
414 * and at the end of the usable range downwards.
415 */
416 if (start >= max_low_pfn)
417 continue;
418 if (start < reserved_end)
419 start = reserved_end;
420 if (end > max_low_pfn)
421 end = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /*
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200424 * ... finally, is the area going away?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200426 if (end <= start)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 continue;
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200428 size = end - start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* Register lowmem ranges */
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200431 free_bootmem(PFN_PHYS(start), size << PAGE_SHIFT);
432 memory_present(0, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200435 /*
436 * Reserve the bootmap memory.
437 */
438 reserve_bootmem(PFN_PHYS(mapstart), bootmap_size);
439
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200440 /*
441 * Reserve initrd memory if needed.
442 */
443 finalize_initrd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200446#endif /* CONFIG_SGI_IP27 */
447
Ralf Baechle2925aba2006-06-18 01:32:22 +0100448/*
449 * arch_mem_init - initialize memory managment subsystem
450 *
451 * o plat_mem_setup() detects the memory configuration and will record detected
452 * memory areas using add_memory_region.
453 * o parse_cmdline_early() parses the command line for mem= options which,
454 * iff detected, will override the results of the automatic detection.
455 *
456 * At this stage the memory configuration of the system is known to the
457 * kernel but generic memory managment system is still entirely uninitialized.
458 *
459 * o bootmem_init()
460 * o sparse_init()
461 * o paging_init()
462 *
463 * At this stage the bootmem allocator is ready to use.
464 *
465 * NOTE: historically plat_mem_setup did the entire platform initialization.
466 * This was rather impractical because it meant plat_mem_setup had to
467 * get away without any kind of memory allocator. To keep old code from
468 * breaking plat_setup was just renamed to plat_setup and a second platform
469 * initialization hook for anything else was introduced.
470 */
471
472extern void plat_mem_setup(void);
473
474static void __init arch_mem_init(char **cmdline_p)
475{
476 /* call board setup routine */
477 plat_mem_setup();
478
479 strlcpy(command_line, arcs_cmdline, sizeof(command_line));
480 strlcpy(saved_command_line, command_line, COMMAND_LINE_SIZE);
481
482 *cmdline_p = command_line;
483
484 parse_cmdline_early();
485 bootmem_init();
486 sparse_init();
487 paging_init();
488}
489
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200490#define MAXMEM HIGHMEM_START
491#define MAXMEM_PFN PFN_DOWN(MAXMEM)
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493static inline void resource_init(void)
494{
495 int i;
496
Ralf Baechle6adb5fe2006-06-20 12:47:53 +0100497 if (UNCAC_BASE != IO_BASE)
498 return;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 code_resource.start = virt_to_phys(&_text);
501 code_resource.end = virt_to_phys(&_etext) - 1;
502 data_resource.start = virt_to_phys(&_etext);
503 data_resource.end = virt_to_phys(&_edata) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 /*
506 * Request address space for all standard RAM.
507 */
508 for (i = 0; i < boot_mem_map.nr_map; i++) {
509 struct resource *res;
510 unsigned long start, end;
511
512 start = boot_mem_map.map[i].addr;
513 end = boot_mem_map.map[i].addr + boot_mem_map.map[i].size - 1;
514 if (start >= MAXMEM)
515 continue;
516 if (end >= MAXMEM)
517 end = MAXMEM - 1;
518
519 res = alloc_bootmem(sizeof(struct resource));
520 switch (boot_mem_map.map[i].type) {
521 case BOOT_MEM_RAM:
522 case BOOT_MEM_ROM_DATA:
523 res->name = "System RAM";
524 break;
525 case BOOT_MEM_RESERVED:
526 default:
527 res->name = "reserved";
528 }
529
530 res->start = start;
531 res->end = end;
532
533 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
534 request_resource(&iomem_resource, res);
535
536 /*
537 * We don't know which RAM region contains kernel data,
538 * so we try it repeatedly and let the resource manager
539 * test it.
540 */
541 request_resource(res, &code_resource);
542 request_resource(res, &data_resource);
543 }
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#undef MAXMEM
547#undef MAXMEM_PFN
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549void __init setup_arch(char **cmdline_p)
550{
551 cpu_probe();
552 prom_init();
553 cpu_report();
554
555#if defined(CONFIG_VT)
556#if defined(CONFIG_VGA_CONSOLE)
557 conswitchp = &vga_con;
558#elif defined(CONFIG_DUMMY_CONSOLE)
559 conswitchp = &dummy_con;
560#endif
561#endif
562
Ralf Baechle2925aba2006-06-18 01:32:22 +0100563 arch_mem_init(cmdline_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 resource_init();
Ralf Baechle9b6695a2006-02-23 12:23:27 +0000566#ifdef CONFIG_SMP
567 plat_smp_setup();
568#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571int __init fpu_disable(char *s)
572{
Ralf Baechlef088fc82006-04-05 09:45:47 +0100573 int i;
574
575 for (i = 0; i < NR_CPUS; i++)
576 cpu_data[i].options &= ~MIPS_CPU_FPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 return 1;
579}
580
581__setup("nofpu", fpu_disable);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000582
583int __init dsp_disable(char *s)
584{
585 cpu_data[0].ases &= ~MIPS_ASE_DSP;
586
587 return 1;
588}
589
590__setup("nodsp", dsp_disable);