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

嵌入式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.         ROOT_DEV = to_kdev_t(0x0100);
  254.         memory_start = (unsigned long) &_end;    /* fixit if use $CODELO etc*/
  255. memory_end = memory_size & ~0x200000UL;  /* detected in head.s */
  256.         init_mm.start_code = PAGE_OFFSET;
  257.         init_mm.end_code = (unsigned long) &_etext;
  258.         init_mm.end_data = (unsigned long) &_edata;
  259.         init_mm.brk = (unsigned long) &_end;
  260. code_resource.start = (unsigned long) &_text;
  261. code_resource.end = (unsigned long) &_etext - 1;
  262. data_resource.start = (unsigned long) &_etext;
  263. data_resource.end = (unsigned long) &_edata - 1;
  264.         /* Save unparsed command line copy for /proc/cmdline */
  265.         memcpy(saved_command_line, COMMAND_LINE, COMMAND_LINE_SIZE);
  266.         saved_command_line[COMMAND_LINE_SIZE-1] = '';
  267.         for (;;) {
  268.                 /*
  269.                  * "mem=XXX[kKmM]" sets memsize 
  270.                  */
  271.                 if (c == ' ' && strncmp(from, "mem=", 4) == 0) {
  272.                         memory_end = simple_strtoul(from+4, &from, 0);
  273.                         if ( *from == 'K' || *from == 'k' ) {
  274.                                 memory_end = memory_end << 10;
  275.                                 from++;
  276.                         } else if ( *from == 'M' || *from == 'm' ) {
  277.                                 memory_end = memory_end << 20;
  278.                                 from++;
  279.                         }
  280.                 }
  281.                 /*
  282.                  * "ipldelay=XXX[sm]" sets ipl delay in seconds or minutes
  283.                  */
  284.                 if (c == ' ' && strncmp(from, "ipldelay=", 9) == 0) {
  285.                         delay = simple_strtoul(from+9, &from, 0);
  286. if (*from == 's' || *from == 'S') {
  287. delay = delay*1000000;
  288. from++;
  289. } else if (*from == 'm' || *from == 'M') {
  290. delay = delay*60*1000000;
  291. from++;
  292. }
  293. /* now wait for the requested amount of time */
  294. udelay(delay);
  295.                 }
  296.                 cn = *(from++);
  297.                 if (!cn)
  298.                         break;
  299.                 if (cn == 'n')
  300.                         cn = ' ';  /* replace newlines with space */
  301. if (cn == 0x0d)
  302. cn = ' ';  /* replace 0x0d with space */
  303.                 if (cn == ' ' && c == ' ')
  304.                         continue;  /* remove additional spaces */
  305.                 c = cn;
  306.                 if (to - command_line >= COMMAND_LINE_SIZE)
  307.                         break;
  308.                 *(to++) = c;
  309.         }
  310.         if (c == ' ' && to > command_line) to--;
  311.         *to = '';
  312.         *cmdline_p = command_line;
  313. /*
  314.  * partially used pages are not usable - thus
  315.  * we are rounding upwards:
  316.  */
  317. start_pfn = (__pa(&_end) + PAGE_SIZE - 1) >> PAGE_SHIFT;
  318. end_pfn = memory_end >> PAGE_SHIFT;
  319. /*
  320.  * Initialize the boot-time allocator
  321.  */
  322. bootmap_size = init_bootmem(start_pfn, end_pfn);
  323. /*
  324.  * Register RAM areas with the bootmem allocator.
  325.  */
  326. for (i = 0; i < 16 && memory_chunk[i].size > 0; i++) {
  327. unsigned long start_chunk, end_chunk;
  328. if (memory_chunk[i].type != CHUNK_READ_WRITE)
  329. continue;
  330. start_chunk = (memory_chunk[i].addr + PAGE_SIZE - 1);
  331. start_chunk >>= PAGE_SHIFT;
  332. end_chunk = (memory_chunk[i].addr + memory_chunk[i].size);
  333. end_chunk >>= PAGE_SHIFT;
  334. if (start_chunk < start_pfn)
  335. start_chunk = start_pfn;
  336. if (end_chunk > end_pfn)
  337. end_chunk = end_pfn;
  338. if (start_chunk < end_chunk)
  339. free_bootmem(start_chunk << PAGE_SHIFT,
  340.      (end_chunk - start_chunk) << PAGE_SHIFT);
  341. }
  342.         /*
  343.          * Reserve the bootmem bitmap itself as well. We do this in two
  344.          * steps (first step was init_bootmem()) because this catches
  345.          * the (very unlikely) case of us accidentally initializing the
  346.          * bootmem allocator with an invalid RAM area.
  347.          */
  348.         reserve_bootmem(start_pfn << PAGE_SHIFT, bootmap_size);
  349. #ifdef CONFIG_BLK_DEV_INITRD
  350.         if (INITRD_START) {
  351. if (INITRD_START + INITRD_SIZE <= memory_end) {
  352. reserve_bootmem(INITRD_START, INITRD_SIZE);
  353. initrd_start = INITRD_START;
  354. initrd_end = initrd_start + INITRD_SIZE;
  355. } else {
  356.                         printk("initrd extends beyond end of memory "
  357.                                "(0x%08lx > 0x%08lx)ndisabling initrdn",
  358.                                initrd_start + INITRD_SIZE, memory_end);
  359.                         initrd_start = initrd_end = 0;
  360. }
  361.         }
  362. #endif
  363.         /*
  364.          * Setup lowcore for boot cpu
  365.          */
  366. lowcore = (struct _lowcore *) 
  367. __alloc_bootmem(2*PAGE_SIZE, 2*PAGE_SIZE, 0);
  368. memset(lowcore, 0, 2*PAGE_SIZE);
  369. lowcore->restart_psw.mask = _RESTART_PSW_MASK;
  370. lowcore->restart_psw.addr = (addr_t) &restart_int_handler;
  371. lowcore->external_new_psw.mask = _EXT_PSW_MASK;
  372. lowcore->external_new_psw.addr = (addr_t) &ext_int_handler;
  373. lowcore->svc_new_psw.mask = _SVC_PSW_MASK;
  374. lowcore->svc_new_psw.addr = (addr_t) &system_call;
  375. lowcore->program_new_psw.mask = _PGM_PSW_MASK;
  376. lowcore->program_new_psw.addr = (addr_t) &pgm_check_handler;
  377. lowcore->mcck_new_psw.mask = _MCCK_PSW_MASK;
  378. lowcore->mcck_new_psw.addr = (addr_t) &mcck_int_handler;
  379. lowcore->io_new_psw.mask = _IO_PSW_MASK;
  380. lowcore->io_new_psw.addr = (addr_t) &io_int_handler;
  381. lowcore->ipl_device = S390_lowcore.ipl_device;
  382. lowcore->kernel_stack = ((__u64) &init_task_union) + 16384;
  383. lowcore->async_stack = (__u64)
  384. __alloc_bootmem(4*PAGE_SIZE, 4*PAGE_SIZE, 0) + 16384;
  385. lowcore->jiffy_timer = -1LL;
  386. set_prefix((__u32)(__u64) lowcore);
  387.         cpu_init();
  388.         boot_cpu_addr = S390_lowcore.cpu_data.cpu_addr;
  389.         __cpu_logical_map[0] = boot_cpu_addr;
  390. /*
  391.  * Create kernel page tables and switch to virtual addressing.
  392.  */
  393.         paging_init();
  394. res = alloc_bootmem_low(sizeof(struct resource));
  395. res->start = 0;
  396. res->end = memory_end;
  397. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  398. request_resource(&iomem_resource, res);
  399. request_resource(res, &code_resource);
  400. request_resource(res, &data_resource);
  401.         /* Setup default console */
  402. conmode_default();
  403. }
  404. void print_cpu_info(struct cpuinfo_S390 *cpuinfo)
  405. {
  406.    printk("cpu %d "
  407. #ifdef CONFIG_SMP
  408.            "phys_idx=%d "
  409. #endif
  410.            "vers=%02X ident=%06X machine=%04X unused=%04Xn",
  411.            cpuinfo->cpu_nr,
  412. #ifdef CONFIG_SMP
  413.            cpuinfo->cpu_addr,
  414. #endif
  415.            cpuinfo->cpu_id.version,
  416.            cpuinfo->cpu_id.ident,
  417.            cpuinfo->cpu_id.machine,
  418.            cpuinfo->cpu_id.unused);
  419. }
  420. /*
  421.  * show_cpuinfo - Get information on one CPU for use by procfs.
  422.  */
  423. static int show_cpuinfo(struct seq_file *m, void *v)
  424. {
  425.         struct cpuinfo_S390 *cpuinfo;
  426. unsigned long n = (unsigned long) v - 1;
  427. if (!n) {
  428. seq_printf(m, "vendor_id       : IBM/S390n"
  429. "# processors    : %in"
  430. "bogomips per cpu: %lu.%02lun",
  431. smp_num_cpus, loops_per_jiffy/(500000/HZ),
  432. (loops_per_jiffy/(5000/HZ))%100);
  433. }
  434. if (cpu_online_map & (1 << n)) {
  435. cpuinfo = &safe_get_cpu_lowcore(n).cpu_data;
  436. seq_printf(m, "processor %i: "
  437. "version = %02X,  "
  438. "identification = %06X,  "
  439. "machine = %04Xn",
  440. n, cpuinfo->cpu_id.version,
  441. cpuinfo->cpu_id.ident,
  442. cpuinfo->cpu_id.machine);
  443. }
  444.         return 0;
  445. }
  446. static void *c_start(struct seq_file *m, loff_t *pos)
  447. {
  448. return *pos <= NR_CPUS ? (void *)((unsigned long) *pos + 1) : NULL;
  449. }
  450. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  451. {
  452. ++*pos;
  453. return c_start(m, pos);
  454. }
  455. static void c_stop(struct seq_file *m, void *v)
  456. {
  457. }
  458. struct seq_operations cpuinfo_op = {
  459. start: c_start,
  460. next: c_next,
  461. stop: c_stop,
  462. show: show_cpuinfo,
  463. };