setup.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:15k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/setup.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com),
  7.  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
  8.  *
  9.  *  Derived from "arch/i386/kernel/setup.c"
  10.  *    Copyright (C) 1995, Linus Torvalds
  11.  */
  12. /*
  13.  * This file handles the architecture-dependent parts of initialization
  14.  */
  15. #include <linux/errno.h>
  16. #include <linux/sched.h>
  17. #include <linux/kernel.h>
  18. #include <linux/mm.h>
  19. #include <linux/stddef.h>
  20. #include <linux/unistd.h>
  21. #include <linux/ptrace.h>
  22. #include <linux/slab.h>
  23. #include <linux/user.h>
  24. #include <linux/a.out.h>
  25. #include <linux/tty.h>
  26. #include <linux/ioport.h>
  27. #include <linux/delay.h>
  28. #include <linux/config.h>
  29. #include <linux/init.h>
  30. #ifdef CONFIG_BLK_DEV_RAM
  31. #include <linux/blk.h>
  32. #endif
  33. #include <linux/bootmem.h>
  34. #include <linux/console.h>
  35. #include <linux/seq_file.h>
  36. #include <asm/uaccess.h>
  37. #include <asm/system.h>
  38. #include <asm/smp.h>
  39. #include <asm/mmu_context.h>
  40. #include <asm/cpcmd.h>
  41. /*
  42.  * Machine setup..
  43.  */
  44. unsigned int console_mode = 0;
  45. unsigned int console_device = -1;
  46. unsigned long memory_size = 0;
  47. unsigned long machine_flags = 0;
  48. struct { unsigned long addr, size, type; } memory_chunk[16];
  49. #define CHUNK_READ_WRITE 0
  50. #define CHUNK_READ_ONLY 1
  51. __u16 boot_cpu_addr;
  52. int cpus_initialized = 0;
  53. unsigned long cpu_initialized = 0;
  54. volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */
  55. /*
  56.  * Setup options
  57.  */
  58. extern int _text,_etext, _edata, _end;
  59. /*
  60.  * This is set up by the setup-routine at boot-time
  61.  * for S390 need to find out, what we have to setup
  62.  * using address 0x10400 ...
  63.  */
  64. #include <asm/setup.h>
  65. static char command_line[COMMAND_LINE_SIZE] = { 0, };
  66.        char saved_command_line[COMMAND_LINE_SIZE];
  67. static struct resource code_resource = { "Kernel code", 0x100000, 0 };
  68. static struct resource data_resource = { "Kernel data", 0, 0 };
  69. /*
  70.  * cpu_init() initializes state that is per-CPU.
  71.  */
  72. void __init cpu_init (void)
  73. {
  74.         int nr = smp_processor_id();
  75.         int addr = hard_smp_processor_id();
  76.         if (test_and_set_bit(nr,&cpu_initialized)) {
  77.                 printk("CPU#%d ALREADY INITIALIZED!!!!!!!!!n", nr);
  78.                 for (;;) __sti();
  79.         }
  80.         cpus_initialized++;
  81.         /*
  82.          * Store processor id in lowcore (used e.g. in timer_interrupt)
  83.          */
  84.         asm volatile ("stidp %0": "=m" (S390_lowcore.cpu_data.cpu_id));
  85.         S390_lowcore.cpu_data.cpu_addr = addr;
  86.         S390_lowcore.cpu_data.cpu_nr = nr;
  87.         /*
  88.          * Force FPU initialization:
  89.          */
  90.         current->flags &= ~PF_USEDFPU;
  91.         current->used_math = 0;
  92.         /* Setup active_mm for idle_task  */
  93.         atomic_inc(&init_mm.mm_count);
  94.         current->active_mm = &init_mm;
  95.         if (current->mm)
  96.                 BUG();
  97.         enter_lazy_tlb(&init_mm, current, nr);
  98. }
  99. /*
  100.  * VM halt and poweroff setup routines
  101.  */
  102. char vmhalt_cmd[128] = "";
  103. char vmpoff_cmd[128] = "";
  104. static inline void strncpy_skip_quote(char *dst, char *src, int n)
  105. {
  106.         int sx, dx;
  107.         dx = 0;
  108.         for (sx = 0; src[sx] != 0; sx++) {
  109.                 if (src[sx] == '"') continue;
  110.                 dst[dx++] = src[sx];
  111.                 if (dx >= n) break;
  112.         }
  113. }
  114. static int __init vmhalt_setup(char *str)
  115. {
  116.         strncpy_skip_quote(vmhalt_cmd, str, 127);
  117.         vmhalt_cmd[127] = 0;
  118.         return 1;
  119. }
  120. __setup("vmhalt=", vmhalt_setup);
  121. static int __init vmpoff_setup(char *str)
  122. {
  123.         strncpy_skip_quote(vmpoff_cmd, str, 127);
  124.         vmpoff_cmd[127] = 0;
  125.         return 1;
  126. }
  127. __setup("vmpoff=", vmpoff_setup);
  128. /*
  129.  * condev= and conmode= setup parameter.
  130.  */
  131. static int __init condev_setup(char *str)
  132. {
  133. int vdev;
  134. vdev = simple_strtoul(str, &str, 0);
  135. if (vdev >= 0 && vdev < 65536)
  136. console_device = vdev;
  137. return 1;
  138. }
  139. __setup("condev=", condev_setup);
  140. static int __init conmode_setup(char *str)
  141. {
  142. #if defined(CONFIG_HWC_CONSOLE)
  143. if (strncmp(str, "hwc", 4) == 0 && !MACHINE_IS_P390)
  144.                 SET_CONSOLE_HWC;
  145. #endif
  146. #if defined(CONFIG_TN3215_CONSOLE)
  147. if (strncmp(str, "3215", 5) == 0 && (MACHINE_IS_VM || MACHINE_IS_P390))
  148. SET_CONSOLE_3215;
  149. #endif
  150. #if defined(CONFIG_TN3270_CONSOLE)
  151. if (strncmp(str, "3270", 5) == 0 && (MACHINE_IS_VM || MACHINE_IS_P390))
  152. SET_CONSOLE_3270;
  153. #endif
  154.         return 1;
  155. }
  156. __setup("conmode=", conmode_setup);
  157. static void __init conmode_default(void)
  158. {
  159. char query_buffer[1024];
  160. char *ptr;
  161.         if (MACHINE_IS_VM) {
  162. cpcmd("QUERY TERM", query_buffer, 1024);
  163. ptr = strstr(query_buffer, "CONMODE");
  164. /*
  165.  * Set the conmode to 3215 so that the device recognition 
  166.  * will set the cu_type of the console to 3215. If the
  167.  * conmode is 3270 and we don't set it back then both
  168.  * 3215 and the 3270 driver will try to access the console
  169.  * device (3215 as console and 3270 as normal tty).
  170.  */
  171. cpcmd("TERM CONMODE 3215", NULL, 0);
  172. if (ptr == NULL) {
  173. #if defined(CONFIG_HWC_CONSOLE)
  174. SET_CONSOLE_HWC;
  175. #endif
  176. return;
  177. }
  178. if (strncmp(ptr + 8, "3270", 4) == 0) {
  179. #if defined(CONFIG_TN3270_CONSOLE)
  180. SET_CONSOLE_3270;
  181. #elif defined(CONFIG_TN3215_CONSOLE)
  182. SET_CONSOLE_3215;
  183. #elif defined(CONFIG_HWC_CONSOLE)
  184. SET_CONSOLE_HWC;
  185. #endif
  186. } else if (strncmp(ptr + 8, "3215", 4) == 0) {
  187. #if defined(CONFIG_TN3215_CONSOLE)
  188. SET_CONSOLE_3215;
  189. #elif defined(CONFIG_TN3270_CONSOLE)
  190. SET_CONSOLE_3270;
  191. #elif defined(CONFIG_HWC_CONSOLE)
  192. SET_CONSOLE_HWC;
  193. #endif
  194. }
  195.         } else if (MACHINE_IS_P390) {
  196. #if defined(CONFIG_TN3215_CONSOLE)
  197. SET_CONSOLE_3215;
  198. #elif defined(CONFIG_TN3270_CONSOLE)
  199. SET_CONSOLE_3270;
  200. #endif
  201. } else {
  202. #if defined(CONFIG_HWC_CONSOLE)
  203. SET_CONSOLE_HWC;
  204. #endif
  205. }
  206. }
  207. /*
  208.  * Reboot, halt and power_off routines for non SMP.
  209.  */
  210. #ifndef CONFIG_SMP
  211. void machine_restart(char * __unused)
  212. {
  213. reipl(S390_lowcore.ipl_device);
  214. }
  215. void machine_halt(void)
  216. {
  217.         if (MACHINE_IS_VM && strlen(vmhalt_cmd) > 0)
  218.                 cpcmd(vmhalt_cmd, NULL, 0);
  219.         signal_processor(smp_processor_id(), sigp_stop_and_store_status);
  220. }
  221. void machine_power_off(void)
  222. {
  223.         if (MACHINE_IS_VM && strlen(vmpoff_cmd) > 0)
  224.                 cpcmd(vmpoff_cmd, NULL, 0);
  225.         signal_processor(smp_processor_id(), sigp_stop_and_store_status);
  226. }
  227. #endif
  228. /*
  229.  * Setup function called from init/main.c just after the banner
  230.  * was printed.
  231.  */
  232. extern char _pstart, _pend, _stext;
  233. void __init setup_arch(char **cmdline_p)
  234. {
  235.         unsigned long bootmap_size;
  236.         unsigned long memory_start, memory_end;
  237.         char c = ' ', cn, *to = command_line, *from = COMMAND_LINE;
  238. struct resource *res;
  239. unsigned long start_pfn, end_pfn;
  240.         static unsigned int smptrap=0;
  241.         unsigned long delay = 0;
  242. struct _lowcore *lowcore;
  243. int i;
  244.         if (smptrap)
  245.                 return;
  246.         smptrap=1;
  247.         /*
  248.          * print what head.S has found out about the machine 
  249.          */
  250. printk((MACHINE_IS_VM) ?
  251.        "We are running under VMn" :
  252.        "We are running nativen");
  253. printk((MACHINE_HAS_IEEE) ?
  254.        "This machine has an IEEE fpun" :
  255.        "This machine has no IEEE fpun");
  256.         ROOT_DEV = to_kdev_t(0x0100);
  257.         memory_start = (unsigned long) &_end;    /* fixit if use $CODELO etc*/
  258. memory_end = memory_size & ~0x400000UL;  /* align memory end to 4MB */
  259.         /*
  260.          * We need some free virtual space to be able to do vmalloc.
  261.          * On a machine with 2GB memory we make sure that we have at
  262.          * least 128 MB free space for vmalloc.
  263.          */
  264.         if (memory_end > 1920*1024*1024)
  265.                 memory_end = 1920*1024*1024;
  266.         init_mm.start_code = PAGE_OFFSET;
  267.         init_mm.end_code = (unsigned long) &_etext;
  268.         init_mm.end_data = (unsigned long) &_edata;
  269.         init_mm.brk = (unsigned long) &_end;
  270. code_resource.start = (unsigned long) &_text;
  271. code_resource.end = (unsigned long) &_etext - 1;
  272. data_resource.start = (unsigned long) &_etext;
  273. data_resource.end = (unsigned long) &_edata - 1;
  274.         /* Save unparsed command line copy for /proc/cmdline */
  275.         memcpy(saved_command_line, COMMAND_LINE, COMMAND_LINE_SIZE);
  276.         saved_command_line[COMMAND_LINE_SIZE-1] = '';
  277.         for (;;) {
  278.                 /*
  279.                  * "mem=XXX[kKmM]" sets memsize 
  280.                  */
  281.                 if (c == ' ' && strncmp(from, "mem=", 4) == 0) {
  282.                         memory_end = simple_strtoul(from+4, &from, 0);
  283.                         if ( *from == 'K' || *from == 'k' ) {
  284.                                 memory_end = memory_end << 10;
  285.                                 from++;
  286.                         } else if ( *from == 'M' || *from == 'm' ) {
  287.                                 memory_end = memory_end << 20;
  288.                                 from++;
  289.                         }
  290.                 }
  291.                 /*
  292.                  * "ipldelay=XXX[sm]" sets ipl delay in seconds or minutes
  293.                  */
  294.                 if (c == ' ' && strncmp(from, "ipldelay=", 9) == 0) {
  295.                         delay = simple_strtoul(from+9, &from, 0);
  296. if (*from == 's' || *from == 'S') {
  297. delay = delay*1000000;
  298. from++;
  299. } else if (*from == 'm' || *from == 'M') {
  300. delay = delay*60*1000000;
  301. from++;
  302. }
  303. /* now wait for the requested amount of time */
  304. udelay(delay);
  305.                 }
  306.                 cn = *(from++);
  307.                 if (!cn)
  308.                         break;
  309.                 if (cn == 'n')
  310.                         cn = ' ';  /* replace newlines with space */
  311. if (cn == 0x0d)
  312. cn = ' ';  /* replace 0x0d with space */
  313.                 if (cn == ' ' && c == ' ')
  314.                         continue;  /* remove additional spaces */
  315.                 c = cn;
  316.                 if (to - command_line >= COMMAND_LINE_SIZE)
  317.                         break;
  318.                 *(to++) = c;
  319.         }
  320.         if (c == ' ' && to > command_line) to--;
  321.         *to = '';
  322.         *cmdline_p = command_line;
  323. /*
  324.  * partially used pages are not usable - thus
  325.  * we are rounding upwards:
  326.  */
  327. start_pfn = (__pa(&_end) + PAGE_SIZE - 1) >> PAGE_SHIFT;
  328. end_pfn = memory_end >> PAGE_SHIFT;
  329. /*
  330.  * Initialize the boot-time allocator (with low memory only):
  331.  */
  332. bootmap_size = init_bootmem(start_pfn, end_pfn);
  333. /*
  334.  * Register RAM areas with the bootmem allocator.
  335.  */
  336. for (i = 0; i < 16 && memory_chunk[i].size > 0; i++) {
  337. unsigned long start_chunk, end_chunk;
  338. if (memory_chunk[i].type != CHUNK_READ_WRITE)
  339. continue;
  340. start_chunk = (memory_chunk[i].addr + PAGE_SIZE - 1);
  341. start_chunk >>= PAGE_SHIFT;
  342. end_chunk = (memory_chunk[i].addr + memory_chunk[i].size);
  343. end_chunk >>= PAGE_SHIFT;
  344. if (start_chunk < start_pfn)
  345. start_chunk = start_pfn;
  346. if (end_chunk > end_pfn)
  347. end_chunk = end_pfn;
  348. if (start_chunk < end_chunk)
  349. free_bootmem(start_chunk << PAGE_SHIFT,
  350.      (end_chunk - start_chunk) << PAGE_SHIFT);
  351. }
  352.         /*
  353.          * Reserve the bootmem bitmap itself as well. We do this in two
  354.          * steps (first step was init_bootmem()) because this catches
  355.          * the (very unlikely) case of us accidentally initializing the
  356.          * bootmem allocator with an invalid RAM area.
  357.          */
  358.         reserve_bootmem(start_pfn << PAGE_SHIFT, bootmap_size);
  359. #ifdef CONFIG_BLK_DEV_INITRD
  360.         if (INITRD_START) {
  361. if (INITRD_START + INITRD_SIZE <= memory_end) {
  362. reserve_bootmem(INITRD_START, INITRD_SIZE);
  363. initrd_start = INITRD_START;
  364. initrd_end = initrd_start + INITRD_SIZE;
  365. } else {
  366.                         printk("initrd extends beyond end of memory "
  367.                                "(0x%08lx > 0x%08lx)ndisabling initrdn",
  368.                                initrd_start + INITRD_SIZE, memory_end);
  369.                         initrd_start = initrd_end = 0;
  370. }
  371.         }
  372. #endif
  373.         /*
  374.          * Setup lowcore for boot cpu
  375.          */
  376. lowcore = (struct _lowcore *)
  377. __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, 0);
  378. memset(lowcore, 0, PAGE_SIZE);
  379. lowcore->restart_psw.mask = _RESTART_PSW_MASK;
  380. lowcore->restart_psw.addr = _ADDR_31 + (addr_t) &restart_int_handler;
  381. lowcore->external_new_psw.mask = _EXT_PSW_MASK;
  382. lowcore->external_new_psw.addr = _ADDR_31 + (addr_t) &ext_int_handler;
  383. lowcore->svc_new_psw.mask = _SVC_PSW_MASK;
  384. lowcore->svc_new_psw.addr = _ADDR_31 + (addr_t) &system_call;
  385. lowcore->program_new_psw.mask = _PGM_PSW_MASK;
  386. lowcore->program_new_psw.addr = _ADDR_31 + (addr_t) &pgm_check_handler;
  387.         lowcore->mcck_new_psw.mask = _MCCK_PSW_MASK;
  388. lowcore->mcck_new_psw.addr = _ADDR_31 + (addr_t) &mcck_int_handler;
  389. lowcore->io_new_psw.mask = _IO_PSW_MASK;
  390. lowcore->io_new_psw.addr = _ADDR_31 + (addr_t) &io_int_handler;
  391. lowcore->ipl_device = S390_lowcore.ipl_device;
  392. lowcore->kernel_stack = ((__u32) &init_task_union) + 8192;
  393. lowcore->async_stack = (__u32)
  394. __alloc_bootmem(2*PAGE_SIZE, 2*PAGE_SIZE, 0) + 8192;
  395. lowcore->jiffy_timer = -1LL;
  396. set_prefix((__u32) lowcore);
  397.         cpu_init();
  398.         boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
  399.         __cpu_logical_map[0] = boot_cpu_addr;
  400. /*
  401.  * Create kernel page tables and switch to virtual addressing.
  402.  */
  403.         paging_init();
  404. res = alloc_bootmem_low(sizeof(struct resource));
  405. res->start = 0;
  406. res->end = memory_end;
  407. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  408. request_resource(&iomem_resource, res);
  409. request_resource(res, &code_resource);
  410. request_resource(res, &data_resource);
  411.         /* Setup default console */
  412. conmode_default();
  413. }
  414. void print_cpu_info(struct cpuinfo_S390 *cpuinfo)
  415. {
  416.    printk("cpu %d "
  417. #ifdef CONFIG_SMP
  418.            "phys_idx=%d "
  419. #endif
  420.            "vers=%02X ident=%06X machine=%04X unused=%04Xn",
  421.            cpuinfo->cpu_nr,
  422. #ifdef CONFIG_SMP
  423.            cpuinfo->cpu_addr,
  424. #endif
  425.            cpuinfo->cpu_id.version,
  426.            cpuinfo->cpu_id.ident,
  427.            cpuinfo->cpu_id.machine,
  428.            cpuinfo->cpu_id.unused);
  429. }
  430. /*
  431.  * show_cpuinfo - Get information on one CPU for use by procfs.
  432.  */
  433. static int show_cpuinfo(struct seq_file *m, void *v)
  434. {
  435.         struct cpuinfo_S390 *cpuinfo;
  436. unsigned long n = (unsigned long) v - 1;
  437. if (!n) {
  438. seq_printf(m, "vendor_id       : IBM/S390n"
  439.        "# processors    : %in"
  440.        "bogomips per cpu: %lu.%02lun",
  441.        smp_num_cpus, loops_per_jiffy/(500000/HZ),
  442.        (loops_per_jiffy/(5000/HZ))%100);
  443. if (cpu_online_map & (1 << n)) {
  444. cpuinfo = &safe_get_cpu_lowcore(n).cpu_data;
  445. seq_printf(m, "processor %i: "
  446.        "version = %02X,  "
  447.        "identification = %06X,  "
  448.        "machine = %04Xn",
  449.        n, cpuinfo->cpu_id.version,
  450.        cpuinfo->cpu_id.ident,
  451.        cpuinfo->cpu_id.machine);
  452. }
  453.         return 0;
  454. }
  455. static void *c_start(struct seq_file *m, loff_t *pos)
  456. {
  457. return *pos <= NR_CPUS ? (void *)((unsigned long) *pos + 1) : NULL;
  458. }
  459. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  460. {
  461. ++*pos;
  462. return c_start(m, pos);
  463. }
  464. static void c_stop(struct seq_file *m, void *v)
  465. {
  466. }
  467. struct seq_operations cpuinfo_op = {
  468. start: c_start,
  469. next: c_next,
  470. stop: c_stop,
  471. show: show_cpuinfo,
  472. };