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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Setup pointers to hardware-dependent routines.
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1996, 1997, 1998, 2000 by Ralf Baechle
  9.  */
  10. #include <asm/ptrace.h>
  11. #include <linux/config.h>
  12. #include <linux/hdreg.h>
  13. #include <linux/ioport.h>
  14. #include <linux/sched.h>
  15. #include <linux/init.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/timex.h>
  18. #include <linux/pci.h>
  19. #include <linux/mc146818rtc.h>
  20. #include <linux/console.h>
  21. #include <linux/fb.h>
  22. #include <linux/pc_keyb.h>
  23. #include <linux/ide.h>
  24. #include <asm/bcache.h>
  25. #include <asm/bootinfo.h>
  26. #include <asm/keyboard.h>
  27. #include <asm/io.h>
  28. #include <asm/irq.h>
  29. #include <asm/processor.h>
  30. #include <asm/reboot.h>
  31. #include <asm/sni.h>
  32. #include <asm/time.h>
  33. extern void sni_machine_restart(char *command);
  34. extern void sni_machine_halt(void);
  35. extern void sni_machine_power_off(void);
  36. extern struct ide_ops std_ide_ops;
  37. extern struct rtc_ops std_rtc_ops;
  38. extern struct kbd_ops std_kbd_ops;
  39. static void __init sni_rm200_pci_time_init(struct irqaction *irq)
  40. {
  41. /* set the clock to 100 Hz */
  42. outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */
  43. outb_p(LATCH & 0xff , 0x40); /* LSB */
  44. outb(LATCH >> 8 , 0x40); /* MSB */
  45. setup_irq(0, irq);
  46. }
  47. extern unsigned char sni_map_isa_cache;
  48. /*
  49.  * A bit more gossip about the iron we're running on ...
  50.  */
  51. static inline void sni_pcimt_detect(void)
  52. {
  53. char boardtype[80];
  54. unsigned char csmsr;
  55. char *p = boardtype;
  56. unsigned int asic;
  57. csmsr = *(volatile unsigned char *)PCIMT_CSMSR;
  58. p += sprintf(p, "%s PCI", (csmsr & 0x80) ? "RM200" : "RM300");
  59. if ((csmsr & 0x80) == 0)
  60. p += sprintf(p, ", board revision %s",
  61.              (csmsr & 0x20) ? "D" : "C");
  62. asic = csmsr & 0x80;
  63. asic = (csmsr & 0x08) ? asic : !asic;
  64. p += sprintf(p, ", ASIC PCI Rev %s", asic ? "1.0" : "1.1");
  65. printk("%s.n", boardtype);
  66. }
  67. void __init sni_rm200_pci_setup(void)
  68. {
  69. sni_pcimt_detect();
  70. sni_pcimt_sc_init();
  71. set_io_port_base(SNI_PORT_BASE);
  72. /*
  73.  * Setup (E)ISA I/O memory access stuff
  74.  */
  75. isa_slot_offset = 0xb0000000;
  76. // sni_map_isa_cache = 0;
  77. EISA_bus = 1;
  78. request_region(0x00,0x20,"dma1");
  79. request_region(0x40,0x20,"timer");
  80. /* XXX FIXME: CONFIG_RTC */
  81. request_region(0x70,0x10,"rtc");
  82. request_region(0x80,0x10,"dma page reg");
  83. request_region(0xc0,0x20,"dma2");
  84. board_time_init = sni_rm200_pci_time_init;
  85. _machine_restart = sni_machine_restart;
  86. _machine_halt = sni_machine_halt;
  87. _machine_power_off = sni_machine_power_off;
  88. aux_device_present = 0xaa;
  89. /*
  90.  * Some cluefull person has placed the PCI config data directly in
  91.  * the I/O port space ...
  92.  */
  93. request_region(0xcfc,0x04,"PCI config data");
  94. #ifdef CONFIG_BLK_DEV_IDE
  95. ide_ops = &std_ide_ops;
  96. #endif
  97. conswitchp = &vga_con;
  98. screen_info = (struct screen_info) {
  99. 0, 0, /* orig-x, orig-y */
  100. 0, /* unused */
  101. 52, /* orig_video_page */
  102. 3, /* orig_video_mode */
  103. 80, /* orig_video_cols */
  104. 4626, 3, 9, /* unused, ega_bx, unused */
  105. 50, /* orig_video_lines */
  106. 0x22, /* orig_video_isVGA */
  107. 16 /* orig_video_points */
  108. };
  109. rtc_ops = &std_rtc_ops;
  110. kbd_ops = &std_kbd_ops;
  111. #ifdef CONFIG_PSMOUSE
  112. aux_device_present = 0xaa;
  113. #endif
  114. }