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

嵌入式Linux

开发平台:

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. extern void sni_machine_restart(char *command);
  33. extern void sni_machine_halt(void);
  34. extern void sni_machine_power_off(void);
  35. extern struct ide_ops std_ide_ops;
  36. extern struct rtc_ops std_rtc_ops;
  37. extern struct kbd_ops std_kbd_ops;
  38. void (*board_time_init)(struct irqaction *irq);
  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. unsigned char aux_device_present;
  48. extern unsigned char sni_map_isa_cache;
  49. /*
  50.  * A bit more gossip about the iron we're running on ...
  51.  */
  52. static inline void sni_pcimt_detect(void)
  53. {
  54. char boardtype[80];
  55. unsigned char csmsr;
  56. char *p = boardtype;
  57. unsigned int asic;
  58. csmsr = *(volatile unsigned char *)PCIMT_CSMSR;
  59. p += sprintf(p, "%s PCI", (csmsr & 0x80) ? "RM200" : "RM300");
  60. if ((csmsr & 0x80) == 0)
  61. p += sprintf(p, ", board revision %s",
  62.              (csmsr & 0x20) ? "D" : "C");
  63. asic = csmsr & 0x80;
  64. asic = (csmsr & 0x08) ? asic : !asic;
  65. p += sprintf(p, ", ASIC PCI Rev %s", asic ? "1.0" : "1.1");
  66. printk("%s.n", boardtype);
  67. }
  68. void __init sni_rm200_pci_setup(void)
  69. {
  70. sni_pcimt_detect();
  71. sni_pcimt_sc_init();
  72. mips_io_port_base = SNI_PORT_BASE;
  73. /*
  74.  * Setup (E)ISA I/O memory access stuff
  75.  */
  76. isa_slot_offset = 0xb0000000;
  77. // sni_map_isa_cache = 0;
  78. EISA_bus = 1;
  79. request_region(0x00,0x20,"dma1");
  80. request_region(0x40,0x20,"timer");
  81. /* XXX FIXME: CONFIG_RTC */
  82. request_region(0x70,0x10,"rtc");
  83. request_region(0x80,0x10,"dma page reg");
  84. request_region(0xc0,0x20,"dma2");
  85. board_time_init = sni_rm200_pci_time_init;
  86. _machine_restart = sni_machine_restart;
  87. _machine_halt = sni_machine_halt;
  88. _machine_power_off = sni_machine_power_off;
  89. aux_device_present = 0xaa;
  90. /*
  91.  * Some cluefull person has placed the PCI config data directly in
  92.  * the I/O port space ...
  93.  */
  94. request_region(0xcfc,0x04,"PCI config data");
  95. #ifdef CONFIG_BLK_DEV_IDE
  96. ide_ops = &std_ide_ops;
  97. #endif
  98. conswitchp = &vga_con;
  99. screen_info = (struct screen_info) {
  100. 0, 0, /* orig-x, orig-y */
  101. 0, /* unused */
  102. 52, /* orig_video_page */
  103. 3, /* orig_video_mode */
  104. 80, /* orig_video_cols */
  105. 4626, 3, 9, /* unused, ega_bx, unused */
  106. 50, /* orig_video_lines */
  107. 0x22, /* orig_video_isVGA */
  108. 16 /* orig_video_points */
  109. };
  110. rtc_ops = &std_rtc_ops;
  111. kbd_ops = &std_kbd_ops;
  112. #ifdef CONFIG_PSMOUSE
  113. aux_device_present = 0xaa;
  114. #endif
  115. }