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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  $Id: setup.c,v 1.126 2001/11/13 00:49:27 davem Exp $
  2.  *  linux/arch/sparc/kernel/setup.c
  3.  *
  4.  *  Copyright (C) 1995  David S. Miller (davem@caip.rutgers.edu)
  5.  *  Copyright (C) 2000  Anton Blanchard (anton@samba.org)
  6.  */
  7. #include <linux/errno.h>
  8. #include <linux/sched.h>
  9. #include <linux/kernel.h>
  10. #include <linux/mm.h>
  11. #include <linux/stddef.h>
  12. #include <linux/unistd.h>
  13. #include <linux/ptrace.h>
  14. #include <linux/slab.h>
  15. #include <asm/smp.h>
  16. #include <linux/user.h>
  17. #include <linux/a.out.h>
  18. #include <linux/tty.h>
  19. #include <linux/delay.h>
  20. #include <linux/config.h>
  21. #include <linux/fs.h>
  22. #include <linux/seq_file.h>
  23. #include <linux/kdev_t.h>
  24. #include <linux/major.h>
  25. #include <linux/string.h>
  26. #include <linux/blk.h>
  27. #include <linux/init.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/console.h>
  30. #include <linux/spinlock.h>
  31. #include <asm/segment.h>
  32. #include <asm/system.h>
  33. #include <asm/io.h>
  34. #include <asm/kgdb.h>
  35. #include <asm/processor.h>
  36. #include <asm/oplib.h>
  37. #include <asm/page.h>
  38. #include <asm/pgtable.h>
  39. #include <asm/traps.h>
  40. #include <asm/vaddrs.h>
  41. #include <asm/kdebug.h>
  42. #include <asm/mbus.h>
  43. #include <asm/idprom.h>
  44. #include <asm/softirq.h>
  45. #include <asm/hardirq.h>
  46. #include <asm/machines.h>
  47. #undef PROM_DEBUG_CONSOLE
  48. struct screen_info screen_info = {
  49. 0, 0, /* orig-x, orig-y */
  50. 0, /* unused */
  51. 0, /* orig-video-page */
  52. 0, /* orig-video-mode */
  53. 128, /* orig-video-cols */
  54. 0,0,0, /* ega_ax, ega_bx, ega_cx */
  55. 54, /* orig-video-lines */
  56. 0,                      /* orig-video-isVGA */
  57. 16                      /* orig-video-points */
  58. };
  59. /* Typing sync at the prom prompt calls the function pointed to by
  60.  * romvec->pv_synchook which I set to the following function.
  61.  * This should sync all filesystems and return, for now it just
  62.  * prints out pretty messages and returns.
  63.  */
  64. extern unsigned long trapbase;
  65. extern int serial_console;
  66. extern void breakpoint(void);
  67. #if CONFIG_SUN_CONSOLE
  68. void (*prom_palette)(int);
  69. #endif
  70. asmlinkage void sys_sync(void); /* it's really int */
  71. /* Pretty sick eh? */
  72. void prom_sync_me(void)
  73. {
  74. unsigned long prom_tbr, flags;
  75. /* XXX Badly broken. FIX! - Anton */
  76. save_and_cli(flags);
  77. __asm__ __volatile__("rd %%tbr, %0nt" : "=r" (prom_tbr));
  78. __asm__ __volatile__("wr %0, 0x0, %%tbrnt"
  79.      "nopnt"
  80.      "nopnt"
  81.      "nopnt" : : "r" (&trapbase));
  82. #ifdef CONFIG_SUN_CONSOLE
  83. if (prom_palette)
  84. prom_palette(1);
  85. #endif
  86. prom_printf("PROM SYNC COMMAND...n");
  87. show_free_areas();
  88. if(current->pid != 0) {
  89. sti();
  90. sys_sync();
  91. cli();
  92. }
  93. prom_printf("Returning to promn");
  94. __asm__ __volatile__("wr %0, 0x0, %%tbrnt"
  95.      "nopnt"
  96.      "nopnt"
  97.      "nopnt" : : "r" (prom_tbr));
  98. restore_flags(flags);
  99. return;
  100. }
  101. extern void rs_kgdb_hook(int tty_num); /* sparc/serial.c */
  102. unsigned int boot_flags __initdata = 0;
  103. #define BOOTME_DEBUG  0x1
  104. #define BOOTME_SINGLE 0x2
  105. #define BOOTME_KGDBA  0x4
  106. #define BOOTME_KGDBB  0x8
  107. #define BOOTME_KGDB   0xc
  108. #ifdef CONFIG_SUN_CONSOLE
  109. static int console_fb __initdata = 0;
  110. #endif
  111. /* Exported for mm/init.c:paging_init. */
  112. unsigned long cmdline_memory_size __initdata = 0;
  113. void kernel_enter_debugger(void)
  114. {
  115. if (boot_flags & BOOTME_KGDB) {
  116. printk("KGDB: Enteredn");
  117. breakpoint();
  118. }
  119. }
  120. int obp_system_intr(void)
  121. {
  122. if (boot_flags & BOOTME_KGDB) {
  123. printk("KGDB: system interruptedn");
  124. breakpoint();
  125. return 1;
  126. }
  127. if (boot_flags & BOOTME_DEBUG) {
  128. printk("OBP: system interruptedn");
  129. prom_halt();
  130. return 1;
  131. }
  132. return 0;
  133. }
  134. /* 
  135.  * Process kernel command line switches that are specific to the
  136.  * SPARC or that require special low-level processing.
  137.  */
  138. static void __init process_switch(char c)
  139. {
  140. switch (c) {
  141. case 'd':
  142. boot_flags |= BOOTME_DEBUG;
  143. break;
  144. case 's':
  145. boot_flags |= BOOTME_SINGLE;
  146. break;
  147. case 'h':
  148. prom_printf("boot_flags_init: Halt!n");
  149. prom_halt();
  150. break;
  151. default:
  152. printk("Unknown boot switch (-%c)n", c);
  153. break;
  154. }
  155. }
  156. static void __init boot_flags_init(char *commands)
  157. {
  158. while (*commands) {
  159. /* Move to the start of the next "argument". */
  160. while (*commands && *commands == ' ')
  161. commands++;
  162. /* Process any command switches, otherwise skip it. */
  163. if (*commands == '')
  164. break;
  165. else if (*commands == '-') {
  166. commands++;
  167. while (*commands && *commands != ' ')
  168. process_switch(*commands++);
  169. } else if (strlen(commands) >= 9
  170.    && !strncmp(commands, "kgdb=tty", 8)) {
  171. switch (commands[8]) {
  172. #ifdef CONFIG_SUN_SERIAL
  173. case 'a':
  174. boot_flags |= BOOTME_KGDBA;
  175. prom_printf("KGDB: Using serial line /dev/ttya.n");
  176. break;
  177. case 'b':
  178. boot_flags |= BOOTME_KGDBB;
  179. prom_printf("KGDB: Using serial line /dev/ttyb.n");
  180. break;
  181. #endif
  182. default:
  183. printk("KGDB: Unknown tty line.n");
  184. break;
  185. }
  186. commands += 9;
  187. } else {
  188. #if CONFIG_SUN_CONSOLE
  189. if (!strncmp(commands, "console=", 8)) {
  190. commands += 8;
  191. if (!strncmp (commands, "ttya", 4)) {
  192. console_fb = 2;
  193. prom_printf ("Using /dev/ttya as console.n");
  194. } else if (!strncmp (commands, "ttyb", 4)) {
  195. console_fb = 3;
  196. prom_printf ("Using /dev/ttyb as console.n");
  197. #if defined(CONFIG_PROM_CONSOLE)
  198. } else if (!strncmp (commands, "prom", 4)) {
  199. char *p;
  200. for (p = commands - 8; *p && *p != ' '; p++)
  201. *p = ' ';
  202. conswitchp = &prom_con;
  203. console_fb = 1;
  204. #endif
  205. } else {
  206. console_fb = 1;
  207. }
  208. } else
  209. #endif
  210. if (!strncmp(commands, "mem=", 4)) {
  211. /*
  212.  * "mem=XXX[kKmM] overrides the PROM-reported
  213.  * memory size.
  214.  */
  215. cmdline_memory_size = simple_strtoul(commands + 4,
  216.      &commands, 0);
  217. if (*commands == 'K' || *commands == 'k') {
  218. cmdline_memory_size <<= 10;
  219. commands++;
  220. } else if (*commands=='M' || *commands=='m') {
  221. cmdline_memory_size <<= 20;
  222. commands++;
  223. }
  224. }
  225. while (*commands && *commands != ' ')
  226. commands++;
  227. }
  228. }
  229. }
  230. /* This routine will in the future do all the nasty prom stuff
  231.  * to probe for the mmu type and its parameters, etc. This will
  232.  * also be where SMP things happen plus the Sparc specific memory
  233.  * physical memory probe as on the alpha.
  234.  */
  235. extern int prom_probe_memory(void);
  236. extern void sun4c_probe_vac(void);
  237. extern char cputypval;
  238. extern unsigned long start, end;
  239. extern void panic_setup(char *, int *);
  240. extern void srmmu_end_memory(unsigned long, unsigned long *);
  241. extern void sun_serial_setup(void);
  242. extern unsigned short root_flags;
  243. extern unsigned short root_dev;
  244. extern unsigned short ram_flags;
  245. #define RAMDISK_IMAGE_START_MASK 0x07FF
  246. #define RAMDISK_PROMPT_FLAG 0x8000
  247. #define RAMDISK_LOAD_FLAG 0x4000
  248. extern int root_mountflags;
  249. char saved_command_line[256];
  250. char reboot_command[256];
  251. enum sparc_cpu sparc_cpu_model;
  252. struct tt_entry *sparc_ttable;
  253. struct pt_regs fake_swapper_regs;
  254. #ifdef PROM_DEBUG_CONSOLE
  255. static void
  256. prom_console_write(struct console *con, const char *s, unsigned n)
  257. {
  258. prom_printf("%s", s);
  259. }
  260. static struct console prom_console = {
  261. name: "debug",
  262. write: prom_console_write,
  263. flags: CON_PRINTBUFFER,
  264. index: -1,
  265. };
  266. #endif
  267. extern void paging_init(void);
  268. void __init setup_arch(char **cmdline_p)
  269. {
  270. int i;
  271. unsigned long highest_paddr;
  272. sparc_ttable = (struct tt_entry *) &start;
  273. /* Initialize PROM console and command line. */
  274. *cmdline_p = prom_getbootargs();
  275. strcpy(saved_command_line, *cmdline_p);
  276. /* Set sparc_cpu_model */
  277. sparc_cpu_model = sun_unknown;
  278. if(!strcmp(&cputypval,"sun4 ")) { sparc_cpu_model=sun4; }
  279. if(!strcmp(&cputypval,"sun4c")) { sparc_cpu_model=sun4c; }
  280. if(!strcmp(&cputypval,"sun4m")) { sparc_cpu_model=sun4m; }
  281. if(!strcmp(&cputypval,"sun4s")) { sparc_cpu_model=sun4m; }  /* CP-1200 with PROM 2.30 -E */
  282. if(!strcmp(&cputypval,"sun4d")) { sparc_cpu_model=sun4d; }
  283. if(!strcmp(&cputypval,"sun4e")) { sparc_cpu_model=sun4e; }
  284. if(!strcmp(&cputypval,"sun4u")) { sparc_cpu_model=sun4u; }
  285. #ifdef CONFIG_SUN4
  286. if (sparc_cpu_model != sun4) {
  287. prom_printf("This kernel is for Sun4 architecture only.n");
  288. prom_halt();
  289. }
  290. #endif
  291. printk("ARCH: ");
  292. switch(sparc_cpu_model) {
  293. case sun4:
  294. printk("SUN4n");
  295. break;
  296. case sun4c:
  297. printk("SUN4Cn");
  298. break;
  299. case sun4m:
  300. printk("SUN4Mn");
  301. break;
  302. case sun4d:
  303. printk("SUN4Dn");
  304. break;
  305. case sun4e:
  306. printk("SUN4En");
  307. break;
  308. case sun4u:
  309. printk("SUN4Un");
  310. break;
  311. default:
  312. printk("UNKNOWN!n");
  313. break;
  314. };
  315. #ifdef PROM_DEBUG_CONSOLE
  316. register_console(&prom_console);
  317. #endif
  318. #ifdef CONFIG_DUMMY_CONSOLE
  319. conswitchp = &dummy_con;
  320. #elif defined(CONFIG_PROM_CONSOLE)
  321. conswitchp = &prom_con;
  322. #endif
  323. boot_flags_init(*cmdline_p);
  324. idprom_init();
  325. if (ARCH_SUN4C_SUN4)
  326. sun4c_probe_vac();
  327. load_mmu();
  328. (void) prom_probe_memory();
  329. phys_base = 0xffffffffUL;
  330. highest_paddr = 0UL;
  331. for (i = 0; sp_banks[i].num_bytes != 0; i++) {
  332. unsigned long top;
  333. if (sp_banks[i].base_addr < phys_base)
  334. phys_base = sp_banks[i].base_addr;
  335. top = sp_banks[i].base_addr +
  336. sp_banks[i].num_bytes;
  337. if (highest_paddr < top)
  338. highest_paddr = top;
  339. }
  340. if (!root_flags)
  341. root_mountflags &= ~MS_RDONLY;
  342. ROOT_DEV = to_kdev_t(root_dev);
  343. #ifdef CONFIG_BLK_DEV_RAM
  344. rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
  345. rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
  346. rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);
  347. #endif
  348. prom_setsync(prom_sync_me);
  349. {
  350. #if !CONFIG_SUN_SERIAL
  351. serial_console = 0;
  352. #else
  353. switch (console_fb) {
  354. case 0: /* Let get our io devices from prom */
  355. {
  356. int idev = prom_query_input_device();
  357. int odev = prom_query_output_device();
  358. if (idev == PROMDEV_IKBD && odev == PROMDEV_OSCREEN) {
  359. serial_console = 0;
  360. } else if (idev == PROMDEV_ITTYA && odev == PROMDEV_OTTYA) {
  361. serial_console = 1;
  362. } else if (idev == PROMDEV_ITTYB && odev == PROMDEV_OTTYB) {
  363. serial_console = 2;
  364. } else if (idev == PROMDEV_I_UNK && odev == PROMDEV_OTTYA) {
  365. prom_printf("MrCoffee ttyan");
  366. serial_console = 1;
  367. } else if (idev == PROMDEV_I_UNK && odev == PROMDEV_OSCREEN) {
  368. serial_console = 0;
  369. prom_printf("MrCoffee keyboardn");
  370. } else {
  371. prom_printf("Inconsistent or unknown consolen");
  372. prom_printf("You cannot mix serial and non serial input/output devicesn");
  373. prom_halt();
  374. }
  375. }
  376. break;
  377. case 1: serial_console = 0; break; /* Force one of the framebuffers as console */
  378. case 2: serial_console = 1; break; /* Force ttya as console */
  379. case 3: serial_console = 2; break; /* Force ttyb as console */
  380. }
  381. #endif
  382. }
  383. if ((boot_flags & BOOTME_KGDBA)) {
  384. rs_kgdb_hook(0);
  385. }
  386. if ((boot_flags & BOOTME_KGDBB)) {
  387. rs_kgdb_hook(1);
  388. }
  389. if((boot_flags&BOOTME_DEBUG) && (linux_dbvec!=0) && 
  390.    ((*(short *)linux_dbvec) != -1)) {
  391. printk("Booted under KADB. Syncing trap table.n");
  392. (*(linux_dbvec->teach_debugger))();
  393. }
  394. if((boot_flags & BOOTME_KGDB)) {
  395. set_debug_traps();
  396. prom_printf ("Breakpoint!n");
  397. breakpoint();
  398. }
  399. init_mm.context = (unsigned long) NO_CONTEXT;
  400. init_task.thread.kregs = &fake_swapper_regs;
  401. if (serial_console)
  402. conswitchp = NULL;
  403. paging_init();
  404. }
  405. asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
  406. {
  407. return -EIO;
  408. }
  409. extern char *sparc_cpu_type[];
  410. extern char *sparc_fpu_type[];
  411. static int show_cpuinfo(struct seq_file *m, void *__unused)
  412. {
  413. int cpuid = hard_smp_processor_id();
  414. seq_printf(m,
  415.    "cputt: %sn"
  416.    "fputt: %sn"
  417.    "promlibtt: Version %d Revision %dn"
  418.    "promtt: %d.%dn"
  419.    "typett: %sn"
  420.    "ncpus probedt: %dn"
  421.    "ncpus activet: %dn"
  422. #ifndef CONFIG_SMP
  423.    "BogoMipst: %lu.%02lun"
  424. #endif
  425.    ,
  426.    sparc_cpu_type[cpuid] ? : "undetermined",
  427.    sparc_fpu_type[cpuid] ? : "undetermined",
  428.    romvec->pv_romvers,
  429.    prom_rev,
  430.    romvec->pv_printrev >> 16,
  431.    (short) romvec->pv_printrev,
  432.    &cputypval,
  433.    linux_num_cpus,
  434.    smp_num_cpus
  435. #ifndef CONFIG_SMP
  436.    , loops_per_jiffy/(500000/HZ),
  437.    (loops_per_jiffy/(5000/HZ)) % 100
  438. #endif
  439. );
  440. #ifdef CONFIG_SMP
  441. smp_bogo_info(m);
  442. #endif
  443. mmu_info(m);
  444. #ifdef CONFIG_SMP
  445. smp_info(m);
  446. #endif
  447. return 0;
  448. }
  449. static void *c_start(struct seq_file *m, loff_t *pos)
  450. {
  451. /* The pointer we are returning is arbitrary,
  452.  * it just has to be non-NULL and not IS_ERR
  453.  * in the success case.
  454.  */
  455. return *pos == 0 ? &c_start : NULL;
  456. }
  457. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  458. {
  459. ++*pos;
  460. return c_start(m, pos);
  461. }
  462. static void c_stop(struct seq_file *m, void *v)
  463. {
  464. }
  465. struct seq_operations cpuinfo_op = {
  466. start: c_start,
  467. next: c_next,
  468. stop: c_stop,
  469. show: show_cpuinfo,
  470. };