| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * arch/score/kernel/setup.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Score Processor version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2009 Sunplus Core Technology Co., Ltd. | 
					
						
							|  |  |  |  *  Chen Liqin <liqin.chen@sunplusct.com> | 
					
						
							|  |  |  |  *  Lennox Wu <lennox.wu@sunplusct.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, see the file COPYING, or write | 
					
						
							|  |  |  |  * to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/bootmem.h>
 | 
					
						
							|  |  |  | #include <linux/initrd.h>
 | 
					
						
							|  |  |  | #include <linux/ioport.h>
 | 
					
						
							| 
									
										
										
										
											2011-12-08 10:22:09 -08:00
										 |  |  | #include <linux/memblock.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | #include <linux/mm.h>
 | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | #include <linux/seq_file.h>
 | 
					
						
							|  |  |  | #include <linux/screen_info.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm-generic/sections.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | #include <asm/setup.h>
 | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct screen_info screen_info; | 
					
						
							|  |  |  | unsigned long kernelsp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static char command_line[COMMAND_LINE_SIZE]; | 
					
						
							|  |  |  | static struct resource code_resource = { .name = "Kernel code",}; | 
					
						
							|  |  |  | static struct resource data_resource = { .name = "Kernel data",}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init bootmem_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	unsigned long start_pfn, bootmap_size; | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 	unsigned long size = initrd_end - initrd_start; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	start_pfn = PFN_UP(__pa(&_end)); | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	min_low_pfn = PFN_UP(MEMORY_START); | 
					
						
							|  |  |  | 	max_low_pfn = PFN_UP(MEMORY_START + MEMORY_SIZE); | 
					
						
							| 
									
										
										
										
											2009-11-18 13:28:13 +08:00
										 |  |  | 	max_mapnr = max_low_pfn - min_low_pfn; | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Initialize the boot-time allocator with low memory only. */ | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	bootmap_size = init_bootmem_node(NODE_DATA(0), start_pfn, | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 					 min_low_pfn, max_low_pfn); | 
					
						
							| 
									
										
										
										
											2011-12-08 10:22:09 -08:00
										 |  |  | 	memblock_add_node(PFN_PHYS(min_low_pfn), | 
					
						
							|  |  |  | 			  PFN_PHYS(max_low_pfn - min_low_pfn), 0); | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	free_bootmem(PFN_PHYS(start_pfn), | 
					
						
							|  |  |  | 		     (max_low_pfn - start_pfn) << PAGE_SHIFT); | 
					
						
							|  |  |  | 	memory_present(0, start_pfn, max_low_pfn); | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Reserve space for the bootmem bitmap. */ | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	reserve_bootmem(PFN_PHYS(start_pfn), bootmap_size, BOOTMEM_DEFAULT); | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (size == 0) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "Initrd not found or empty"); | 
					
						
							|  |  |  | 		goto disable; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) { | 
					
						
							|  |  |  | 		printk(KERN_ERR "Initrd extends beyond end of memory"); | 
					
						
							|  |  |  | 		goto disable; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Reserve space for the initrd bitmap. */ | 
					
						
							|  |  |  | 	reserve_bootmem(__pa(initrd_start), size, BOOTMEM_DEFAULT); | 
					
						
							|  |  |  | 	initrd_below_start_ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n", | 
					
						
							|  |  |  | 		 initrd_start, size); | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | disable: | 
					
						
							|  |  |  | 	printk(KERN_CONT " - disabling initrd\n"); | 
					
						
							|  |  |  | 	initrd_start = 0; | 
					
						
							|  |  |  | 	initrd_end = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init resource_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct resource *res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	code_resource.start = __pa(&_text); | 
					
						
							|  |  |  | 	code_resource.end = __pa(&_etext) - 1; | 
					
						
							|  |  |  | 	data_resource.start = __pa(&_etext); | 
					
						
							|  |  |  | 	data_resource.end = __pa(&_edata) - 1; | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	res = alloc_bootmem(sizeof(struct resource)); | 
					
						
							|  |  |  | 	res->name = "System RAM"; | 
					
						
							| 
									
										
										
										
											2009-08-30 12:31:58 +08:00
										 |  |  | 	res->start = MEMORY_START; | 
					
						
							|  |  |  | 	res->end = MEMORY_START + MEMORY_SIZE - 1; | 
					
						
							| 
									
										
										
										
											2009-06-12 22:01:00 +08:00
										 |  |  | 	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; | 
					
						
							|  |  |  | 	request_resource(&iomem_resource, res); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	request_resource(res, &code_resource); | 
					
						
							|  |  |  | 	request_resource(res, &data_resource); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __init setup_arch(char **cmdline_p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	randomize_va_space = 0; | 
					
						
							|  |  |  | 	*cmdline_p = command_line; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cpu_cache_init(); | 
					
						
							|  |  |  | 	tlb_init(); | 
					
						
							|  |  |  | 	bootmem_init(); | 
					
						
							|  |  |  | 	paging_init(); | 
					
						
							|  |  |  | 	resource_init(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int show_cpuinfo(struct seq_file *m, void *v) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long n = (unsigned long) v - 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	seq_printf(m, "processor\t\t: %ld\n", n); | 
					
						
							|  |  |  | 	seq_printf(m, "\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void *c_start(struct seq_file *m, loff_t *pos) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned long i = *pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return i < 1 ? (void *) (i + 1) : NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void *c_next(struct seq_file *m, void *v, loff_t *pos) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	++*pos; | 
					
						
							|  |  |  | 	return c_start(m, pos); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void c_stop(struct seq_file *m, void *v) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct seq_operations cpuinfo_op = { | 
					
						
							|  |  |  | 	.start	= c_start, | 
					
						
							|  |  |  | 	.next	= c_next, | 
					
						
							|  |  |  | 	.stop	= c_stop, | 
					
						
							|  |  |  | 	.show	= show_cpuinfo, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init topology_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | subsys_initcall(topology_init); |