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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/sun3/config.c
  3.  *
  4.  *  Copyright (C) 1996,1997 Pekka Pietik{inen
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive
  8.  * for more details.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/types.h>
  12. #include <linux/kernel.h>
  13. #include <linux/mm.h>
  14. #include <linux/tty.h>
  15. #include <linux/console.h>
  16. #include <linux/init.h>
  17. #include <linux/bootmem.h>
  18. #include <asm/oplib.h>
  19. #include <asm/setup.h>
  20. #include <asm/contregs.h>
  21. #include <asm/movs.h>
  22. #include <asm/pgtable.h>
  23. #include <asm/sun3-head.h>
  24. #include <asm/sun3mmu.h>
  25. #include <asm/rtc.h>
  26. #include <asm/machdep.h>
  27. #include <asm/intersil.h>
  28. #include <asm/irq.h>
  29. #include <asm/segment.h>
  30. #include <asm/sun3ints.h>
  31. extern char _text, _end;
  32. char sun3_reserved_pmeg[SUN3_PMEGS_NUM];
  33. extern unsigned long sun3_gettimeoffset(void);
  34. extern int sun3_get_irq_list (char *);
  35. extern void sun3_sched_init(void (*handler)(int, void *, struct pt_regs *));
  36. extern void sun3_get_model (char* model);
  37. extern void idprom_init (void);
  38. extern void sun3_gettod (int *yearp, int *monp, int *dayp,
  39.                    int *hourp, int *minp, int *secp);
  40. extern int sun3_hwclk(int set, struct hwclk_time *t);
  41. extern void sun_serial_setup(void);
  42. volatile char* clock_va; 
  43. extern volatile unsigned char* sun3_intreg;
  44. extern unsigned long availmem;
  45. unsigned long num_pages;
  46. void __init sun3_init(void)
  47. {
  48. unsigned char enable_register;
  49. int i;
  50. m68k_machtype= MACH_SUN3;
  51. m68k_cputype = CPU_68020;
  52. m68k_fputype = FPU_68881; /* mc68881 actually */
  53. m68k_mmutype = MMU_SUN3;
  54. clock_va    =          (char *) 0xfe06000; /* dark  */
  55. sun3_intreg = (unsigned char *) 0xfe0a000; /* magic */
  56. sun3_disable_interrupts();
  57. prom_init((void *)LINUX_OPPROM_BEGVM);
  58. GET_CONTROL_BYTE(AC_SENABLE,enable_register);
  59. enable_register |= 0x50; /* Enable FPU */
  60. SET_CONTROL_BYTE(AC_SENABLE,enable_register);
  61. GET_CONTROL_BYTE(AC_SENABLE,enable_register);
  62. /* This code looks suspicious, because it doesn't subtract
  63.            memory belonging to the kernel from the available space */
  64. memset(sun3_reserved_pmeg, 0, sizeof(sun3_reserved_pmeg));
  65. /* Reserve important PMEGS */
  66. /* FIXME: These should be probed instead of hardcoded */
  67. for (i=0; i<8; i++) /* Kernel PMEGs */
  68. sun3_reserved_pmeg[i] = 1;
  69. sun3_reserved_pmeg[247] = 1; /* ROM mapping  */
  70. sun3_reserved_pmeg[248] = 1; /* AMD Ethernet */
  71. sun3_reserved_pmeg[251] = 1; /* VB area      */
  72. sun3_reserved_pmeg[254] = 1; /* main I/O     */
  73. sun3_reserved_pmeg[249] = 1;
  74. sun3_reserved_pmeg[252] = 1;
  75. sun3_reserved_pmeg[253] = 1;
  76. set_fs(KERNEL_DS);
  77. }
  78. /* Without this, Bad Things happen when something calls arch_reset. */
  79. static void sun3_reboot (void)
  80. {
  81. prom_reboot ("vmlinux");
  82. }
  83. static void sun3_halt (void)
  84. {
  85. prom_halt ();
  86. }
  87. /* sun3 bootmem allocation */
  88. void __init sun3_bootmem_alloc(unsigned long memory_start, unsigned long memory_end)
  89. {
  90. unsigned long start_page;
  91. /* align start/end to page boundries */
  92. memory_start = ((memory_start + (PAGE_SIZE-1)) & PAGE_MASK);
  93. memory_end = memory_end & PAGE_MASK;
  94. start_page = __pa(memory_start) >> PAGE_SHIFT;
  95. num_pages = __pa(memory_end) >> PAGE_SHIFT;
  96. high_memory = (void *)memory_end;
  97. availmem = memory_start;
  98. availmem += init_bootmem(start_page, num_pages);
  99. availmem = (availmem + (PAGE_SIZE-1)) & PAGE_MASK;
  100. free_bootmem(__pa(availmem), memory_end - (availmem));
  101. }
  102. void __init config_sun3(void)
  103. {
  104. unsigned long memory_start, memory_end;
  105. printk("ARCH: SUN3n");
  106. idprom_init();
  107. /* Subtract kernel memory from available memory */
  108.         mach_sched_init      =  sun3_sched_init; 
  109.         mach_init_IRQ        =  sun3_init_IRQ;
  110.         mach_default_handler = &sun3_default_handler;
  111.         mach_request_irq     =  sun3_request_irq;
  112.         mach_free_irq        =  sun3_free_irq;
  113. // mach_keyb_init       =  sun3_keyb_init;
  114. enable_irq           =  sun3_enable_irq;
  115.         disable_irq        =  sun3_disable_irq;
  116. mach_process_int     =  sun3_process_int;
  117.         mach_get_irq_list    =  sun3_get_irq_list;
  118.         mach_gettod          =  sun3_gettod;
  119.         mach_reset           =  sun3_reboot;
  120. mach_gettimeoffset   =  sun3_gettimeoffset;
  121. mach_get_model      =  sun3_get_model;
  122. mach_hwclk           =  sun3_hwclk;
  123. mach_halt      =  sun3_halt;
  124. #if !defined(CONFIG_SERIAL_CONSOLE) && defined(CONFIG_FB)
  125. conswitchp       = &dummy_con;
  126. #endif
  127. memory_start = ((((int)&_end) + 0x2000) & ~0x1fff);
  128. // PROM seems to want the last couple of physical pages. --m
  129. memory_end   = *(romvec->pv_sun3mem) + PAGE_OFFSET - 2*PAGE_SIZE;
  130. m68k_num_memory=1;
  131.         m68k_memory[0].size=*(romvec->pv_sun3mem);
  132. sun3_bootmem_alloc(memory_start, memory_end);
  133. sun_serial_setup();
  134. }
  135. void __init sun3_sched_init(void (*timer_routine)(int, void *, struct pt_regs *))
  136. {
  137. sun3_disable_interrupts();
  138.         intersil_clock->cmd_reg=(INTERSIL_RUN|INTERSIL_INT_DISABLE|INTERSIL_24H_MODE);
  139.         intersil_clock->int_reg=INTERSIL_HZ_100_MASK;
  140.   intersil_clear();
  141.         sun3_enable_irq(5);
  142.         intersil_clock->cmd_reg=(INTERSIL_RUN|INTERSIL_INT_ENABLE|INTERSIL_24H_MODE);
  143.         sun3_enable_interrupts();
  144.         intersil_clear();
  145. }