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

嵌入式Linux

开发平台:

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