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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/kernel/setup.c
  3.  *
  4.  *  Copyright (C) 1995  Hamish Macdonald
  5.  */
  6. /*
  7.  * This file handles the architecture-dependent parts of system setup
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/kernel.h>
  11. #include <linux/mm.h>
  12. #include <linux/sched.h>
  13. #include <linux/delay.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/fs.h>
  16. #include <linux/console.h>
  17. #include <linux/genhd.h>
  18. #include <linux/errno.h>
  19. #include <linux/string.h>
  20. #include <linux/init.h>
  21. #include <linux/bootmem.h>
  22. #include <linux/seq_file.h>
  23. #include <linux/module.h>
  24. #include <asm/bootinfo.h>
  25. #include <asm/setup.h>
  26. #include <asm/irq.h>
  27. #include <asm/io.h>
  28. #include <asm/machdep.h>
  29. #ifdef CONFIG_AMIGA
  30. #include <asm/amigahw.h>
  31. #endif
  32. #ifdef CONFIG_ATARI
  33. #include <asm/atarihw.h>
  34. #include <asm/atari_stram.h>
  35. #endif
  36. #ifdef CONFIG_SUN3X
  37. #include <asm/dvma.h>
  38. extern void sun_serial_setup(void);
  39. #endif
  40. #ifdef CONFIG_BLK_DEV_INITRD
  41. #include <linux/blk.h>
  42. #endif
  43. unsigned long m68k_machtype;
  44. unsigned long m68k_cputype;
  45. unsigned long m68k_fputype;
  46. unsigned long m68k_mmutype;
  47. #ifdef CONFIG_VME
  48. unsigned long vme_brdtype;
  49. #endif
  50. int m68k_is040or060 = 0;
  51. extern int end;
  52. extern unsigned long availmem;
  53. int m68k_num_memory = 0;
  54. int m68k_realnum_memory = 0;
  55. unsigned long m68k_memoffset;
  56. struct mem_info m68k_memory[NUM_MEMINFO];
  57. static struct mem_info m68k_ramdisk = { 0, 0 };
  58. static char m68k_command_line[CL_SIZE];
  59. char saved_command_line[CL_SIZE];
  60. char m68k_debug_device[6] = "";
  61. void (*mach_sched_init) (void (*handler)(int, void *, struct pt_regs *)) __initdata = NULL;
  62. /* machine dependent keyboard functions */
  63. #ifdef CONFIG_VT
  64. int (*mach_keyb_init) (void) __initdata = NULL;
  65. int (*mach_kbdrate) (struct kbd_repeat *) = NULL;
  66. void (*mach_kbd_leds) (unsigned int) = NULL;
  67. int (*mach_kbd_translate)(unsigned char scancode, unsigned char *keycode, char raw_mode) = NULL;
  68. #endif
  69. /* machine dependent irq functions */
  70. void (*mach_init_IRQ) (void) __initdata = NULL;
  71. void (*(*mach_default_handler)[]) (int, void *, struct pt_regs *) = NULL;
  72. void (*mach_get_model) (char *model) = NULL;
  73. int (*mach_get_hardware_list) (char *buffer) = NULL;
  74. int (*mach_get_irq_list) (char *) = NULL;
  75. void (*mach_process_int) (int, struct pt_regs *) = NULL;
  76. /* machine dependent timer functions */
  77. unsigned long (*mach_gettimeoffset) (void);
  78. void (*mach_gettod) (int*, int*, int*, int*, int*, int*);
  79. int (*mach_hwclk) (int, struct rtc_time*) = NULL;
  80. int (*mach_set_clock_mmss) (unsigned long) = NULL;
  81. void (*mach_reset)( void );
  82. void (*mach_halt)( void ) = NULL;
  83. void (*mach_power_off)( void ) = NULL;
  84. long mach_max_dma_address = 0x00ffffff; /* default set to the lower 16MB */
  85. #if defined(CONFIG_AMIGA_FLOPPY) || defined(CONFIG_ATARI_FLOPPY) 
  86. void (*mach_floppy_setup) (char *, int *) __initdata = NULL;
  87. #endif
  88. #ifdef CONFIG_HEARTBEAT
  89. void (*mach_heartbeat) (int) = NULL;
  90. EXPORT_SYMBOL(mach_heartbeat);
  91. #endif
  92. #ifdef CONFIG_M68K_L2_CACHE
  93. void (*mach_l2_flush) (int) = NULL;
  94. #endif
  95. #ifdef CONFIG_MAGIC_SYSRQ
  96. unsigned int SYSRQ_KEY;
  97. int mach_sysrq_key = -1;
  98. int mach_sysrq_shift_state = 0;
  99. int mach_sysrq_shift_mask = 0;
  100. char *mach_sysrq_xlate = NULL;
  101. #endif
  102. #if defined(CONFIG_ISA) && defined(MULTI_ISA)
  103. int isa_type;
  104. int isa_sex;
  105. #endif
  106. extern int amiga_parse_bootinfo(const struct bi_record *);
  107. extern int atari_parse_bootinfo(const struct bi_record *);
  108. extern int mac_parse_bootinfo(const struct bi_record *);
  109. extern int q40_parse_bootinfo(const struct bi_record *);
  110. extern int bvme6000_parse_bootinfo(const struct bi_record *);
  111. extern int mvme16x_parse_bootinfo(const struct bi_record *);
  112. extern int mvme147_parse_bootinfo(const struct bi_record *);
  113. extern void config_amiga(void);
  114. extern void config_atari(void);
  115. extern void config_mac(void);
  116. extern void config_sun3(void);
  117. extern void config_apollo(void);
  118. extern void config_mvme147(void);
  119. extern void config_mvme16x(void);
  120. extern void config_bvme6000(void);
  121. extern void config_hp300(void);
  122. extern void config_q40(void);
  123. extern void config_sun3x(void);
  124. extern void mac_debugging_short (int, short);
  125. extern void mac_debugging_long  (int, long);
  126. #define MASK_256K 0xfffc0000
  127. extern void paging_init(void);
  128. static void __init m68k_parse_bootinfo(const struct bi_record *record)
  129. {
  130.     while (record->tag != BI_LAST) {
  131. int unknown = 0;
  132. const unsigned long *data = record->data;
  133. switch (record->tag) {
  134.     case BI_MACHTYPE:
  135.     case BI_CPUTYPE:
  136.     case BI_FPUTYPE:
  137.     case BI_MMUTYPE:
  138. /* Already set up by head.S */
  139. break;
  140.       case BI_MEMCHUNK:
  141. if (m68k_num_memory < NUM_MEMINFO) {
  142.     m68k_memory[m68k_num_memory].addr = data[0];
  143.     m68k_memory[m68k_num_memory].size = data[1];
  144.     m68k_num_memory++;
  145. } else
  146.     printk("m68k_parse_bootinfo: too many memory chunksn");
  147. break;
  148.     case BI_RAMDISK:
  149. m68k_ramdisk.addr = data[0];
  150. m68k_ramdisk.size = data[1];
  151. break;
  152.     case BI_COMMAND_LINE:
  153. strncpy(m68k_command_line, (const char *)data, CL_SIZE);
  154. m68k_command_line[CL_SIZE-1] = '';
  155. break;
  156.     default:
  157. if (MACH_IS_AMIGA)
  158.     unknown = amiga_parse_bootinfo(record);
  159. else if (MACH_IS_ATARI)
  160.     unknown = atari_parse_bootinfo(record);
  161. else if (MACH_IS_MAC)
  162.     unknown = mac_parse_bootinfo(record);
  163. else if (MACH_IS_Q40)
  164.     unknown = q40_parse_bootinfo(record);
  165. else if (MACH_IS_BVME6000)
  166.     unknown = bvme6000_parse_bootinfo(record);
  167. else if (MACH_IS_MVME16x)
  168.     unknown = mvme16x_parse_bootinfo(record);
  169. else if (MACH_IS_MVME147)
  170.     unknown = mvme147_parse_bootinfo(record);
  171. else
  172.     unknown = 1;
  173. }
  174. if (unknown)
  175.     printk("m68k_parse_bootinfo: unknown tag 0x%04x ignoredn",
  176.    record->tag);
  177. record = (struct bi_record *)((unsigned long)record+record->size);
  178.     }
  179.     m68k_realnum_memory = m68k_num_memory;
  180. #ifdef CONFIG_SINGLE_MEMORY_CHUNK
  181.     if (m68k_num_memory > 1) {
  182. printk("Ignoring last %i chunks of physical memoryn",
  183.        (m68k_num_memory - 1));
  184. m68k_num_memory = 1;
  185.     }
  186.     m68k_memoffset = m68k_memory[0].addr-PAGE_OFFSET;
  187. #endif
  188. }
  189. void __init setup_arch(char **cmdline_p)
  190. {
  191. extern int _etext, _edata, _end;
  192. #ifndef CONFIG_SUN3
  193. unsigned long endmem, startmem;
  194. #endif
  195. int i;
  196. char *p, *q;
  197. if (!MACH_IS_HP300) {
  198. /* The bootinfo is located right after the kernel bss */
  199. m68k_parse_bootinfo((const struct bi_record *)&_end);
  200. } else {
  201. /* FIXME HP300 doesn't use bootinfo yet */
  202. extern unsigned long hp300_phys_ram_base;
  203. unsigned long hp300_mem_size = 0xffffffff-hp300_phys_ram_base;
  204. m68k_cputype = CPU_68030;
  205. m68k_fputype = FPU_68882;
  206. m68k_memory[0].addr = hp300_phys_ram_base;
  207. /* 0.5M fudge factor */
  208. m68k_memory[0].size = hp300_mem_size-512*1024;
  209. m68k_num_memory++;
  210. }
  211. if (CPU_IS_040)
  212. m68k_is040or060 = 4;
  213. else if (CPU_IS_060)
  214. m68k_is040or060 = 6;
  215. /* FIXME: m68k_fputype is passed in by Penguin booter, which can
  216.  * be confused by software FPU emulation. BEWARE.
  217.  * We should really do our own FPU check at startup.
  218.  * [what do we do with buggy 68LC040s? if we have problems
  219.  *  with them, we should add a test to check_bugs() below] */
  220. #ifndef CONFIG_M68KFPU_EMU_ONLY
  221. /* clear the fpu if we have one */
  222. if (m68k_fputype & (FPU_68881|FPU_68882|FPU_68040|FPU_68060)) {
  223. volatile int zero = 0;
  224. asm __volatile__ ("frestore %0" : : "m" (zero));
  225. }
  226. #endif
  227. init_mm.start_code = PAGE_OFFSET;
  228. init_mm.end_code = (unsigned long) &_etext;
  229. init_mm.end_data = (unsigned long) &_edata;
  230. init_mm.brk = (unsigned long) &_end;
  231. *cmdline_p = m68k_command_line;
  232. memcpy(saved_command_line, *cmdline_p, CL_SIZE);
  233. /* Parse the command line for arch-specific options.
  234.  * For the m68k, this is currently only "debug=xxx" to enable printing
  235.  * certain kernel messages to some machine-specific device.
  236.  */
  237. for( p = *cmdline_p; p && *p; ) {
  238.     i = 0;
  239.     if (!strncmp( p, "debug=", 6 )) {
  240. strncpy( m68k_debug_device, p+6, sizeof(m68k_debug_device)-1 );
  241. m68k_debug_device[sizeof(m68k_debug_device)-1] = 0;
  242. if ((q = strchr( m68k_debug_device, ' ' ))) *q = 0;
  243. i = 1;
  244.     }
  245. #ifdef CONFIG_ATARI
  246.     /* This option must be parsed very early */
  247.     if (!strncmp( p, "switches=", 9 )) {
  248. extern void atari_switches_setup( const char *, int );
  249. atari_switches_setup( p+9, (q = strchr( p+9, ' ' )) ?
  250.            (q - (p+9)) : strlen(p+9) );
  251. i = 1;
  252.     }
  253. #endif
  254.     if (i) {
  255. /* option processed, delete it */
  256. if ((q = strchr( p, ' ' )))
  257.     strcpy( p, q+1 );
  258. else
  259.     *p = 0;
  260.     } else {
  261. if ((p = strchr( p, ' ' ))) ++p;
  262.     }
  263. }
  264. switch (m68k_machtype) {
  265. #ifdef CONFIG_AMIGA
  266.     case MACH_AMIGA:
  267. config_amiga();
  268. break;
  269. #endif
  270. #ifdef CONFIG_ATARI
  271.     case MACH_ATARI:
  272. config_atari();
  273. break;
  274. #endif
  275. #ifdef CONFIG_MAC
  276.     case MACH_MAC:
  277. config_mac();
  278. break;
  279. #endif
  280. #ifdef CONFIG_SUN3
  281.     case MACH_SUN3:
  282.      config_sun3();
  283.      break;
  284. #endif
  285. #ifdef CONFIG_APOLLO
  286.     case MACH_APOLLO:
  287.      config_apollo();
  288.      break;
  289. #endif
  290. #ifdef CONFIG_MVME147
  291.     case MACH_MVME147:
  292.      config_mvme147();
  293.      break;
  294. #endif
  295. #ifdef CONFIG_MVME16x
  296.     case MACH_MVME16x:
  297.      config_mvme16x();
  298.      break;
  299. #endif
  300. #ifdef CONFIG_BVME6000
  301.     case MACH_BVME6000:
  302.      config_bvme6000();
  303.      break;
  304. #endif
  305. #ifdef CONFIG_HP300
  306.     case MACH_HP300:
  307. config_hp300();
  308. break;
  309. #endif
  310. #ifdef CONFIG_Q40
  311.     case MACH_Q40:
  312.         config_q40();
  313. break;
  314. #endif
  315. #ifdef CONFIG_SUN3X
  316.     case MACH_SUN3X:
  317. config_sun3x();
  318. break;
  319. #endif
  320.     default:
  321. panic ("No configuration setup");
  322. }
  323. #ifndef CONFIG_SUN3
  324. startmem= m68k_memory[0].addr;
  325. endmem = startmem + m68k_memory[0].size;
  326. high_memory = PAGE_OFFSET;
  327. for (i = 0; i < m68k_num_memory; i++) {
  328. m68k_memory[i].size &= MASK_256K;
  329. if (m68k_memory[i].addr < startmem)
  330. startmem = m68k_memory[i].addr;
  331. if (m68k_memory[i].addr+m68k_memory[i].size > endmem)
  332. endmem = m68k_memory[i].addr+m68k_memory[i].size;
  333. high_memory += m68k_memory[i].size;
  334. }
  335. availmem += init_bootmem_node(NODE_DATA(0), availmem >> PAGE_SHIFT,
  336.       startmem >> PAGE_SHIFT, endmem >> PAGE_SHIFT);
  337. for (i = 0; i < m68k_num_memory; i++)
  338. free_bootmem(m68k_memory[i].addr, m68k_memory[i].size);
  339. reserve_bootmem(m68k_memory[0].addr, availmem - m68k_memory[0].addr);
  340. #ifdef CONFIG_BLK_DEV_INITRD
  341. if (m68k_ramdisk.size) {
  342. reserve_bootmem(m68k_ramdisk.addr, m68k_ramdisk.size);
  343. initrd_start = (unsigned long)phys_to_virt(m68k_ramdisk.addr);
  344. initrd_end = initrd_start + m68k_ramdisk.size;
  345. printk ("initrd: %08lx - %08lxn", initrd_start, initrd_end);
  346. }
  347. #endif
  348. #ifdef CONFIG_ATARI
  349. if (MACH_IS_ATARI)
  350. atari_stram_reserve_pages((void *)availmem);
  351. #endif
  352. #ifdef CONFIG_SUN3X
  353. if (MACH_IS_SUN3X) {
  354. dvma_init();
  355. #ifdef CONFIG_SUN3X_ZS
  356. sun_serial_setup();
  357. #endif
  358. }
  359. #endif
  360. #endif /* !CONFIG_SUN3 */
  361. paging_init();
  362. /* set ISA defs early as possible */
  363. #if defined(CONFIG_ISA) && defined(MULTI_ISA)
  364. #if defined(CONFIG_Q40) 
  365. if (MACH_IS_Q40) {
  366.     isa_type = Q40_ISA;
  367.     isa_sex = 0;
  368. #elif defined(CONFIG_GG2)
  369. if (MACH_IS_AMIGA && AMIGAHW_PRESENT(GG2_ISA)){
  370.     isa_type = GG2_ISA;
  371.     isa_sex = 0;
  372. }
  373. #elif defined(CONFIG_AMIGA_PCMCIA)
  374. if (MACH_IS_AMIGA && AMIGAHW_PRESENT(PCMCIA)){
  375.     isa_type = AG_ISA;
  376.     isa_sex = 1;
  377. }
  378. #endif
  379. #endif
  380. }
  381. static int show_cpuinfo(struct seq_file *m, void *v)
  382. {
  383.     const char *cpu, *mmu, *fpu;
  384.     unsigned long clockfreq, clockfactor;
  385. #define LOOP_CYCLES_68020 (8)
  386. #define LOOP_CYCLES_68030 (8)
  387. #define LOOP_CYCLES_68040 (3)
  388. #define LOOP_CYCLES_68060 (1)
  389.     if (CPU_IS_020) {
  390. cpu = "68020";
  391. clockfactor = LOOP_CYCLES_68020;
  392.     } else if (CPU_IS_030) {
  393. cpu = "68030";
  394. clockfactor = LOOP_CYCLES_68030;
  395.     } else if (CPU_IS_040) {
  396. cpu = "68040";
  397. clockfactor = LOOP_CYCLES_68040;
  398.     } else if (CPU_IS_060) {
  399. cpu = "68060";
  400. clockfactor = LOOP_CYCLES_68060;
  401.     } else {
  402. cpu = "680x0";
  403. clockfactor = 0;
  404.     }
  405. #ifdef CONFIG_M68KFPU_EMU_ONLY
  406.     fpu="none(soft float)";
  407. #else
  408.     if (m68k_fputype & FPU_68881)
  409. fpu = "68881";
  410.     else if (m68k_fputype & FPU_68882)
  411. fpu = "68882";
  412.     else if (m68k_fputype & FPU_68040)
  413. fpu = "68040";
  414.     else if (m68k_fputype & FPU_68060)
  415. fpu = "68060";
  416.     else if (m68k_fputype & FPU_SUNFPA)
  417. fpu = "Sun FPA";
  418.     else
  419. fpu = "none";
  420. #endif
  421.     if (m68k_mmutype & MMU_68851)
  422. mmu = "68851";
  423.     else if (m68k_mmutype & MMU_68030)
  424. mmu = "68030";
  425.     else if (m68k_mmutype & MMU_68040)
  426. mmu = "68040";
  427.     else if (m68k_mmutype & MMU_68060)
  428. mmu = "68060";
  429.     else if (m68k_mmutype & MMU_SUN3)
  430. mmu = "Sun-3";
  431.     else if (m68k_mmutype & MMU_APOLLO)
  432. mmu = "Apollo";
  433.     else
  434. mmu = "unknown";
  435.     clockfreq = loops_per_jiffy*HZ*clockfactor;
  436.     seq_printf(m, "CPU:tt%sn"
  437.    "MMU:tt%sn"
  438.    "FPU:tt%sn"
  439.    "Clocking:t%lu.%1luMHzn"
  440.    "BogoMips:t%lu.%02lun"
  441.    "Calibration:t%lu loopsn",
  442.    cpu, mmu, fpu,
  443.    clockfreq/1000000,(clockfreq/100000)%10,
  444.    loops_per_jiffy/(500000/HZ),(loops_per_jiffy/(5000/HZ))%100,
  445.    loops_per_jiffy);
  446.     return 0;
  447. }
  448. static void *c_start(struct seq_file *m, loff_t *pos)
  449. {
  450. return *pos < 1 ? (void *)1 : NULL;
  451. }
  452. static void *c_next(struct seq_file *m, void *v, loff_t *pos)
  453. {
  454. ++*pos;
  455. return NULL;
  456. }
  457. static void c_stop(struct seq_file *m, void *v)
  458. {
  459. }
  460. struct seq_operations cpuinfo_op = {
  461. start: c_start,
  462. next: c_next,
  463. stop: c_stop,
  464. show: show_cpuinfo,
  465. };
  466. int get_hardware_list(char *buffer)
  467. {
  468.     int len = 0;
  469.     char model[80];
  470.     unsigned long mem;
  471.     int i;
  472.     if (mach_get_model)
  473. mach_get_model(model);
  474.     else
  475. strcpy(model, "Unknown m68k");
  476.     len += sprintf(buffer+len, "Model:tt%sn", model);
  477.     //len += get_cpuinfo(buffer+len);
  478.     for (mem = 0, i = 0; i < m68k_num_memory; i++)
  479. mem += m68k_memory[i].size;
  480.     len += sprintf(buffer+len, "System Memory:t%ldKn", mem>>10);
  481.     if (mach_get_hardware_list)
  482. len += mach_get_hardware_list(buffer+len);
  483.     return(len);
  484. }
  485. #if defined(CONFIG_AMIGA_FLOPPY) || defined(CONFIG_ATARI_FLOPPY)
  486. void __init floppy_setup(char *str, int *ints)
  487. {
  488. if (mach_floppy_setup)
  489. mach_floppy_setup (str, ints);
  490. }
  491. #endif
  492. /* for "kbd-reset" cmdline param */
  493. void __init kbd_reset_setup(char *str, int *ints)
  494. {
  495. }
  496. void arch_gettod(int *year, int *mon, int *day, int *hour,
  497.  int *min, int *sec)
  498. {
  499. if (mach_gettod)
  500. mach_gettod(year, mon, day, hour, min, sec);
  501. else
  502. *year = *mon = *day = *hour = *min = *sec = 0;
  503. }
  504. void check_bugs(void)
  505. {
  506. #ifndef CONFIG_M68KFPU_EMU
  507. if (m68k_fputype == 0) {
  508. printk( KERN_EMERG "*** YOU DO NOT HAVE A FLOATING POINT UNIT, "
  509. "WHICH IS REQUIRED BY LINUX/M68K ***n" );
  510. printk( KERN_EMERG "Upgrade your hardware or join the FPU "
  511. "emulation projectn" );
  512. printk( KERN_EMERG "(see http://no-fpu.linux-m68k.org)n" );
  513. panic( "no FPU" );
  514. }
  515. #endif /* CONFIG_SUN3 */
  516. }