setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*  $Id: setup.c,v 1.71.2.1 2002/02/27 21:31:38 davem Exp $
  2.  *  linux/arch/sparc64/kernel/setup.c
  3.  *
  4.  *  Copyright (C) 1995,1996  David S. Miller (davem@caip.rutgers.edu)
  5.  *  Copyright (C) 1997       Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  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/inet.h>
  29. #include <linux/console.h>
  30. #include <asm/segment.h>
  31. #include <asm/system.h>
  32. #include <asm/io.h>
  33. #include <asm/processor.h>
  34. #include <asm/oplib.h>
  35. #include <asm/page.h>
  36. #include <asm/pgtable.h>
  37. #include <asm/idprom.h>
  38. #include <asm/head.h>
  39. #include <asm/starfire.h>
  40. #include <asm/hardirq.h>
  41. #ifdef CONFIG_IP_PNP
  42. #include <net/ipconfig.h>
  43. #endif
  44. struct screen_info screen_info = {
  45. 0, 0, /* orig-x, orig-y */
  46. 0, /* unused */
  47. 0, /* orig-video-page */
  48. 0, /* orig-video-mode */
  49. 128, /* orig-video-cols */
  50. 0, 0, 0, /* unused, ega_bx, unused */
  51. 54, /* orig-video-lines */
  52. 0,                      /* orig-video-isVGA */
  53. 16                      /* orig-video-points */
  54. };
  55. /* Typing sync at the prom prompt calls the function pointed to by
  56.  * the sync callback which I set to the following function.
  57.  * This should sync all filesystems and return, for now it just
  58.  * prints out pretty messages and returns.
  59.  */
  60. #if CONFIG_SUN_CONSOLE
  61. void (*prom_palette)(int);
  62. #endif
  63. void (*prom_keyboard)(void);
  64. asmlinkage void sys_sync(void); /* it's really int */
  65. static void
  66. prom_console_write(struct console *con, const char *s, unsigned n)
  67. {
  68. prom_printf("%s", s);
  69. }
  70. static struct console prom_console = {
  71. name: "prom",
  72. write: prom_console_write,
  73. flags: CON_CONSDEV | CON_ENABLED,
  74. index: -1,
  75. };
  76. #define PROM_TRUE -1
  77. #define PROM_FALSE 0
  78. /* Pretty sick eh? */
  79. int prom_callback(long *args)
  80. {
  81. struct console *cons, *saved_console = NULL;
  82. unsigned long flags;
  83. char *cmd;
  84. extern spinlock_t prom_entry_lock;
  85. if (!args)
  86. return -1;
  87. if (!(cmd = (char *)args[0]))
  88. return -1;
  89. /*
  90.  * The callback can be invoked on the cpu that first dropped 
  91.  * into prom_cmdline after taking the serial interrupt, or on 
  92.  * a slave processor that was smp_captured() if the 
  93.  * administrator has done a switch-cpu inside obp. In either 
  94.  * case, the cpu is marked as in-interrupt. Drop IRQ locks.
  95.  */
  96. irq_exit(smp_processor_id(), 0);
  97. save_and_cli(flags);
  98. spin_unlock(&prom_entry_lock);
  99. cons = console_drivers;
  100. while (cons) {
  101. unregister_console(cons);
  102. cons->flags &= ~(CON_PRINTBUFFER);
  103. cons->next = saved_console;
  104. saved_console = cons;
  105. cons = console_drivers;
  106. }
  107. register_console(&prom_console);
  108. if (!strcmp(cmd, "sync")) {
  109. prom_printf("PROM `%s' command...n", cmd);
  110. show_free_areas();
  111. if(current->pid != 0) {
  112. sti();
  113. sys_sync();
  114. cli();
  115. }
  116. args[2] = 0;
  117. args[args[1] + 3] = -1;
  118. prom_printf("Returning to PROMn");
  119. } else if (!strcmp(cmd, "va>tte-data")) {
  120. unsigned long ctx, va;
  121. unsigned long tte = 0;
  122. long res = PROM_FALSE;
  123. ctx = args[3];
  124. va = args[4];
  125. if (ctx) {
  126. /*
  127.  * Find process owning ctx, lookup mapping.
  128.  */
  129. struct task_struct *p;
  130. struct mm_struct *mm = NULL;
  131. pgd_t *pgdp;
  132. pmd_t *pmdp;
  133. pte_t *ptep;
  134. for_each_task(p) {
  135. mm = p->mm;
  136. if (CTX_HWBITS(mm->context) == ctx)
  137. break;
  138. }
  139. if (!mm ||
  140.     CTX_HWBITS(mm->context) != ctx)
  141. goto done;
  142. pgdp = pgd_offset(mm, va);
  143. if (pgd_none(*pgdp))
  144. goto done;
  145. pmdp = pmd_offset(pgdp, va);
  146. if (pmd_none(*pmdp))
  147. goto done;
  148. ptep = pte_offset(pmdp, va);
  149. if (!pte_present(*ptep))
  150. goto done;
  151. tte = pte_val(*ptep);
  152. res = PROM_TRUE;
  153. goto done;
  154. }
  155. if ((va >= KERNBASE) && (va < (KERNBASE + (4 * 1024 * 1024)))) {
  156. /* Spitfire Errata #32 workaround */
  157. __asm__ __volatile__("stxa %0, [%1] %2nt"
  158.      "flush %%g6"
  159.      : /* No outputs */
  160.      : "r" (0),
  161.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  162. /*
  163.  * Locked down tlb entry.
  164.  */
  165. if (tlb_type == spitfire)
  166. tte = spitfire_get_dtlb_data(SPITFIRE_HIGHEST_LOCKED_TLBENT);
  167. else if (tlb_type == cheetah || tlb_type == cheetah_plus)
  168. tte = cheetah_get_ldtlb_data(CHEETAH_HIGHEST_LOCKED_TLBENT);
  169. res = PROM_TRUE;
  170. goto done;
  171. }
  172. if (va < PGDIR_SIZE) {
  173. /*
  174.  * vmalloc or prom_inherited mapping.
  175.  */
  176. pgd_t *pgdp;
  177. pmd_t *pmdp;
  178. pte_t *ptep;
  179. int error;
  180. if ((va >= LOW_OBP_ADDRESS) && (va < HI_OBP_ADDRESS)) {
  181. tte = prom_virt_to_phys(va, &error);
  182. if (!error)
  183. res = PROM_TRUE;
  184. goto done;
  185. }
  186. pgdp = pgd_offset_k(va);
  187. if (pgd_none(*pgdp))
  188. goto done;
  189. pmdp = pmd_offset(pgdp, va);
  190. if (pmd_none(*pmdp))
  191. goto done;
  192. ptep = pte_offset(pmdp, va);
  193. if (!pte_present(*ptep))
  194. goto done;
  195. tte = pte_val(*ptep);
  196. res = PROM_TRUE;
  197. goto done;
  198. }
  199. if (va < PAGE_OFFSET) {
  200. /*
  201.  * No mappings here.
  202.  */
  203. goto done;
  204. }
  205. if (va & (1UL << 40)) {
  206. /*
  207.  * I/O page.
  208.  */
  209. tte = (__pa(va) & _PAGE_PADDR) |
  210.       _PAGE_VALID | _PAGE_SZ4MB |
  211.       _PAGE_E | _PAGE_P | _PAGE_W;
  212. res = PROM_TRUE;
  213. goto done;
  214. }
  215. /*
  216.  * Normal page.
  217.  */
  218. tte = (__pa(va) & _PAGE_PADDR) |
  219.       _PAGE_VALID | _PAGE_SZ4MB |
  220.       _PAGE_CP | _PAGE_CV | _PAGE_P | _PAGE_W;
  221. res = PROM_TRUE;
  222. done:
  223. if (res == PROM_TRUE) {
  224. args[2] = 3;
  225. args[args[1] + 3] = 0;
  226. args[args[1] + 4] = res;
  227. args[args[1] + 5] = tte;
  228. } else {
  229. args[2] = 2;
  230. args[args[1] + 3] = 0;
  231. args[args[1] + 4] = res;
  232. }
  233. } else if (!strcmp(cmd, ".soft1")) {
  234. unsigned long tte;
  235. tte = args[3];
  236. prom_printf("%lx:"%s%s%s%s%s" ",
  237.     (tte & _PAGE_SOFT) >> 7,
  238.     tte & _PAGE_MODIFIED ? "M" : "-",
  239.     tte & _PAGE_ACCESSED ? "A" : "-",
  240.     tte & _PAGE_READ     ? "W" : "-",
  241.     tte & _PAGE_WRITE    ? "R" : "-",
  242.     tte & _PAGE_PRESENT  ? "P" : "-");
  243. args[2] = 2;
  244. args[args[1] + 3] = 0;
  245. args[args[1] + 4] = PROM_TRUE;
  246. } else if (!strcmp(cmd, ".soft2")) {
  247. unsigned long tte;
  248. tte = args[3];
  249. prom_printf("%lx ", (tte & 0x07FC000000000000) >> 50);
  250. args[2] = 2;
  251. args[args[1] + 3] = 0;
  252. args[args[1] + 4] = PROM_TRUE;
  253. } else {
  254. prom_printf("unknown PROM `%s' command...n", cmd);
  255. }
  256. unregister_console(&prom_console);
  257. while (saved_console) {
  258. cons = saved_console;
  259. saved_console = cons->next;
  260. register_console(cons);
  261. }
  262. spin_lock(&prom_entry_lock);
  263. restore_flags(flags);
  264. /*
  265.  * Restore in-interrupt status for a resume from obp.
  266.  */
  267. irq_enter(smp_processor_id(), 0);
  268. return 0;
  269. }
  270. extern void rs_kgdb_hook(int tty_num); /* sparc/serial.c */
  271. unsigned int boot_flags = 0;
  272. #define BOOTME_DEBUG  0x1
  273. #define BOOTME_SINGLE 0x2
  274. #define BOOTME_KGDB   0x4
  275. #ifdef CONFIG_SUN_CONSOLE
  276. static int console_fb __initdata = 0;
  277. #endif
  278. /* Exported for mm/init.c:paging_init. */
  279. unsigned long cmdline_memory_size = 0;
  280. static struct console prom_debug_console = {
  281. name: "debug",
  282. write: prom_console_write,
  283. flags: CON_PRINTBUFFER,
  284. index: -1,
  285. };
  286. /* XXX Implement this at some point... */
  287. void kernel_enter_debugger(void)
  288. {
  289. }
  290. int obp_system_intr(void)
  291. {
  292. if (boot_flags & BOOTME_DEBUG) {
  293. printk("OBP: system interruptedn");
  294. prom_halt();
  295. return 1;
  296. }
  297. return 0;
  298. }
  299. /* 
  300.  * Process kernel command line switches that are specific to the
  301.  * SPARC or that require special low-level processing.
  302.  */
  303. static void __init process_switch(char c)
  304. {
  305. switch (c) {
  306. case 'd':
  307. boot_flags |= BOOTME_DEBUG;
  308. break;
  309. case 's':
  310. boot_flags |= BOOTME_SINGLE;
  311. break;
  312. case 'h':
  313. prom_printf("boot_flags_init: Halt!n");
  314. prom_halt();
  315. break;
  316. case 'p':
  317. /* Use PROM debug console. */
  318. register_console(&prom_debug_console);
  319. break;
  320. default:
  321. printk("Unknown boot switch (-%c)n", c);
  322. break;
  323. }
  324. }
  325. static void __init boot_flags_init(char *commands)
  326. {
  327. while (*commands) {
  328. /* Move to the start of the next "argument". */
  329. while (*commands && *commands == ' ')
  330. commands++;
  331. /* Process any command switches, otherwise skip it. */
  332. if (*commands == '')
  333. break;
  334. else if (*commands == '-') {
  335. commands++;
  336. while (*commands && *commands != ' ')
  337. process_switch(*commands++);
  338. } else if (strlen(commands) >= 9
  339.    && !strncmp(commands, "kgdb=tty", 8)) {
  340. boot_flags |= BOOTME_KGDB;
  341. switch (commands[8]) {
  342. #ifdef CONFIG_SUN_SERIAL
  343. case 'a':
  344. rs_kgdb_hook(0);
  345. prom_printf("KGDB: Using serial line /dev/ttya.n");
  346. break;
  347. case 'b':
  348. rs_kgdb_hook(1);
  349. prom_printf("KGDB: Using serial line /dev/ttyb.n");
  350. break;
  351. #endif
  352. default:
  353. printk("KGDB: Unknown tty line.n");
  354. boot_flags &= ~BOOTME_KGDB;
  355. break;
  356. }
  357. commands += 9;
  358. } else {
  359. #if CONFIG_SUN_CONSOLE
  360. if (!strncmp(commands, "console=", 8)) {
  361. commands += 8;
  362. if (!strncmp (commands, "ttya", 4)) {
  363. console_fb = 2;
  364. prom_printf ("Using /dev/ttya as console.n");
  365. } else if (!strncmp (commands, "ttyb", 4)) {
  366. console_fb = 3;
  367. prom_printf ("Using /dev/ttyb as console.n");
  368. #if defined(CONFIG_PROM_CONSOLE)
  369. } else if (!strncmp (commands, "prom", 4)) {
  370. char *p;
  371. for (p = commands - 8; *p && *p != ' '; p++)
  372. *p = ' ';
  373. conswitchp = &prom_con;
  374. console_fb = 1;
  375. #endif
  376. } else {
  377. console_fb = 1;
  378. }
  379. } else
  380. #endif
  381. if (!strncmp(commands, "mem=", 4)) {
  382. /*
  383.  * "mem=XXX[kKmM]" overrides the PROM-reported
  384.  * memory size.
  385.  */
  386. cmdline_memory_size = simple_strtoul(commands + 4,
  387.      &commands, 0);
  388. if (*commands == 'K' || *commands == 'k') {
  389. cmdline_memory_size <<= 10;
  390. commands++;
  391. } else if (*commands=='M' || *commands=='m') {
  392. cmdline_memory_size <<= 20;
  393. commands++;
  394. }
  395. }
  396. while (*commands && *commands != ' ')
  397. commands++;
  398. }
  399. }
  400. }
  401. extern int prom_probe_memory(void);
  402. extern unsigned long start, end;
  403. extern void panic_setup(char *, int *);
  404. extern unsigned short root_flags;
  405. extern unsigned short root_dev;
  406. extern unsigned short ram_flags;
  407. #define RAMDISK_IMAGE_START_MASK 0x07FF
  408. #define RAMDISK_PROMPT_FLAG 0x8000
  409. #define RAMDISK_LOAD_FLAG 0x4000
  410. extern int root_mountflags;
  411. char saved_command_line[256];
  412. char reboot_command[256];
  413. extern unsigned long phys_base;
  414. static struct pt_regs fake_swapper_regs = { { 0, }, 0, 0, 0, 0 };
  415. void register_prom_callbacks(void)
  416. {
  417. prom_setcallback(prom_callback);
  418. prom_feval(": linux-va>tte-data 2 " va>tte-data" $callback drop ; "
  419.    "' linux-va>tte-data to va>tte-data");
  420. prom_feval(": linux-.soft1 1 " .soft1" $callback 2drop ; "
  421.    "' linux-.soft1 to .soft1");
  422. prom_feval(": linux-.soft2 1 " .soft2" $callback 2drop ; "
  423.    "' linux-.soft2 to .soft2");
  424. }
  425. extern void paging_init(void);
  426. void __init setup_arch(char **cmdline_p)
  427. {
  428. extern int serial_console;  /* in console.c, of course */
  429. unsigned long highest_paddr;
  430. int i;
  431. /* Initialize PROM console and command line. */
  432. *cmdline_p = prom_getbootargs();
  433. strcpy(saved_command_line, *cmdline_p);
  434. printk("ARCH: SUN4Un");
  435. #ifdef CONFIG_DUMMY_CONSOLE
  436. conswitchp = &dummy_con;
  437. #elif defined(CONFIG_PROM_CONSOLE)
  438. conswitchp = &prom_con;
  439. #endif
  440. #ifdef CONFIG_SMP
  441. i = (unsigned long)&irq_stat[1] - (unsigned long)&irq_stat[0];
  442. if ((i == SMP_CACHE_BYTES) || (i == (2 * SMP_CACHE_BYTES))) {
  443. extern unsigned int irqsz_patchme[1];
  444. irqsz_patchme[0] |= ((i == SMP_CACHE_BYTES) ? SMP_CACHE_BYTES_SHIFT : 
  445. SMP_CACHE_BYTES_SHIFT + 1);
  446. flushi((long)&irqsz_patchme[0]);
  447. } else {
  448. prom_printf("Unexpected size of irq_stat[] elementsn");
  449. prom_halt();
  450. }
  451. #endif
  452. /* Work out if we are starfire early on */
  453. check_if_starfire();
  454. boot_flags_init(*cmdline_p);
  455. idprom_init();
  456. (void) prom_probe_memory();
  457. /* In paging_init() we tip off this value to see if we need
  458.  * to change init_mm.pgd to point to the real alias mapping.
  459.  */
  460. phys_base = 0xffffffffffffffffUL;
  461. highest_paddr = 0UL;
  462. for (i = 0; sp_banks[i].num_bytes != 0; i++) {
  463. unsigned long top;
  464. if (sp_banks[i].base_addr < phys_base)
  465. phys_base = sp_banks[i].base_addr;
  466. top = sp_banks[i].base_addr +
  467. sp_banks[i].num_bytes;
  468. if (highest_paddr < top)
  469. highest_paddr = top;
  470. }
  471. if (!root_flags)
  472. root_mountflags &= ~MS_RDONLY;
  473. ROOT_DEV = to_kdev_t(root_dev);
  474. #ifdef CONFIG_BLK_DEV_INITRD
  475. rd_image_start = ram_flags & RAMDISK_IMAGE_START_MASK;
  476. rd_prompt = ((ram_flags & RAMDISK_PROMPT_FLAG) != 0);
  477. rd_doload = ((ram_flags & RAMDISK_LOAD_FLAG) != 0);
  478. #endif
  479. init_task.thread.kregs = &fake_swapper_regs;
  480. #ifdef CONFIG_IP_PNP
  481. if (!ic_set_manually) {
  482. int chosen = prom_finddevice ("/chosen");
  483. u32 cl, sv, gw;
  484. cl = prom_getintdefault (chosen, "client-ip", 0);
  485. sv = prom_getintdefault (chosen, "server-ip", 0);
  486. gw = prom_getintdefault (chosen, "gateway-ip", 0);
  487. if (cl && sv) {
  488. ic_myaddr = cl;
  489. ic_servaddr = sv;
  490. if (gw)
  491. ic_gateway = gw;
  492. #if defined(CONFIG_IP_PNP_BOOTP) || defined(CONFIG_IP_PNP_RARP)
  493. ic_proto_enabled = 0;
  494. #endif
  495. }
  496. }
  497. #endif
  498. #ifdef CONFIG_SUN_SERIAL
  499. switch (console_fb) {
  500. case 0: /* Let's get our io devices from prom */
  501. {
  502. int idev = prom_query_input_device();
  503. int odev = prom_query_output_device();
  504. if (idev == PROMDEV_IKBD && odev == PROMDEV_OSCREEN) {
  505. serial_console = 0;
  506. } else if (idev == PROMDEV_ITTYA && odev == PROMDEV_OTTYA) {
  507. serial_console = 1;
  508. } else if (idev == PROMDEV_ITTYB && odev == PROMDEV_OTTYB) {
  509. serial_console = 2;
  510. } else {
  511. prom_printf("Inconsistent console: "
  512.     "input %d, output %dn",
  513.     idev, odev);
  514. prom_halt();
  515. }
  516. }
  517. break;
  518. case 1: /* Force one of the framebuffers as console */
  519. serial_console = 0;
  520. break;
  521. case 2: /* Force ttya as console */
  522. serial_console = 1;
  523. break;
  524. case 3: /* Force ttyb as console */
  525. serial_console = 2;
  526. break;
  527. }
  528. #else
  529. serial_console = 0;
  530. #endif
  531. if (serial_console)
  532. conswitchp = NULL;
  533. paging_init();
  534. }
  535. asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
  536. {
  537. return -EIO;
  538. }
  539. /* BUFFER is PAGE_SIZE bytes long. */
  540. extern char *sparc_cpu_type[];
  541. extern char *sparc_fpu_type[];
  542. extern void smp_info(struct seq_file *);
  543. extern void smp_bogo(struct seq_file *);
  544. extern void mmu_info(struct seq_file *);
  545. #ifndef CONFIG_SMP
  546. unsigned long up_clock_tick;
  547. #endif
  548. static int show_cpuinfo(struct seq_file *m, void *__unused)
  549. {
  550. int cpuid = smp_processor_id();
  551. seq_printf(m, 
  552.    "cputt: %sn"
  553.    "fputt: %sn"
  554.    "promlibtt: Version 3 Revision %dn"
  555.    "promtt: %d.%d.%dn"
  556.    "typett: sun4un"
  557.    "ncpus probedt: %dn"
  558.    "ncpus activet: %dn"
  559. #ifndef CONFIG_SMP
  560.    "Cpu0Bogot: %lu.%02lun"
  561.    "Cpu0ClkTckt: %016lxn"
  562. #endif
  563.    ,
  564.    sparc_cpu_type[cpuid],
  565.    sparc_fpu_type[cpuid],
  566.    prom_rev,
  567.    prom_prev >> 16,
  568.    (prom_prev >> 8) & 0xff,
  569.    prom_prev & 0xff,
  570.    linux_num_cpus,
  571.    smp_num_cpus
  572. #ifndef CONFIG_SMP
  573.    , loops_per_jiffy/(500000/HZ),
  574.    (loops_per_jiffy/(5000/HZ)) % 100,
  575.    up_clock_tick
  576. #endif
  577. );
  578. #ifdef CONFIG_SMP
  579. smp_bogo(m);
  580. #endif
  581. mmu_info(m);
  582. #ifdef CONFIG_SMP
  583. smp_info(m);
  584. #endif
  585. return 0;
  586. }
  587. static void *c_start(struct seq_file *m, loff_t *pos)
  588. {
  589. /* The pointer we are returning is arbitrary,
  590.  * it just has to be non-NULL and not IS_ERR
  591.  * in the success case.
  592.  */
  593. return *pos == 0 ? &c_start : NULL;
  594. }
  595. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  596. {
  597. ++*pos;
  598. return c_start(m, pos);
  599. }
  600. static void c_stop(struct seq_file *m, void *v)
  601. {
  602. }
  603. struct seq_operations cpuinfo_op = {
  604. start: c_start,
  605. next: c_next,
  606. stop: c_stop,
  607. show: show_cpuinfo,
  608. };