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

嵌入式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, 2001 by Ralf Baechle
  9.  * Copyright (C) 2001 MIPS Technologies, Inc.
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/hdreg.h>
  13. #include <linux/init.h>
  14. #include <linux/ioport.h>
  15. #include <linux/sched.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/mm.h>
  18. #include <linux/console.h>
  19. #include <linux/fb.h>
  20. #include <linux/mc146818rtc.h>
  21. #include <linux/ide.h>
  22. #include <asm/bootinfo.h>
  23. #include <asm/keyboard.h>
  24. #include <asm/irq.h>
  25. #include <asm/jazz.h>
  26. #include <asm/jazzdma.h>
  27. #include <asm/ptrace.h>
  28. #include <asm/reboot.h>
  29. #include <asm/io.h>
  30. #include <asm/pgtable.h>
  31. /*
  32.  * Initial irq handlers.
  33.  */
  34. static void no_action(int cpl, void *dev_id, struct pt_regs *regs) { }
  35. /*
  36.  * IRQ2 is cascade interrupt to second interrupt controller
  37.  */
  38. static struct irqaction irq2  = { no_action, 0, 0, "cascade", NULL, NULL};
  39. extern asmlinkage void jazz_handle_int(void);
  40. extern void jazz_machine_restart(char *command);
  41. extern void jazz_machine_halt(void);
  42. extern void jazz_machine_power_off(void);
  43. extern struct ide_ops std_ide_ops;
  44. extern struct rtc_ops jazz_rtc_ops;
  45. extern struct kbd_ops jazz_kbd_ops;
  46. extern struct fd_ops *fd_ops;
  47. extern struct fd_ops jazz_fd_ops;
  48. void (*board_time_init)(struct irqaction *irq);
  49. static void __init jazz_time_init(struct irqaction *irq)
  50. {
  51.         /* set the clock to 100 Hz */
  52.         r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9);
  53.         i8259_setup_irq(JAZZ_TIMER_IRQ, irq);
  54. }
  55. static void __init jazz_irq_setup(void)
  56. {
  57.         set_except_vector(0, jazz_handle_int);
  58. r4030_write_reg16(JAZZ_IO_IRQ_ENABLE,
  59.   JAZZ_IE_ETHERNET |
  60.   JAZZ_IE_SCSI     |
  61.   JAZZ_IE_SERIAL1  |
  62.   JAZZ_IE_SERIAL2  |
  63.     JAZZ_IE_PARALLEL |
  64.   JAZZ_IE_FLOPPY);
  65. r4030_read_reg16(JAZZ_IO_IRQ_SOURCE); /* clear pending IRQs */
  66. r4030_read_reg32(JAZZ_R4030_INVAL_ADDR); /* clear error bits */
  67. change_cp0_status(ST0_IM, IE_IRQ4 | IE_IRQ3 | IE_IRQ2 | IE_IRQ1);
  68. /* set the clock to 100 Hz */
  69. r4030_write_reg32(JAZZ_TIMER_INTERVAL, 9);
  70. request_region(0x20, 0x20, "pic1");
  71. request_region(0xa0, 0x20, "pic2");
  72. i8259_setup_irq(2, &irq2);
  73. }
  74. void __init jazz_setup(void)
  75. {
  76. add_wired_entry (0x02000017, 0x03c00017, 0xe0000000, PM_64K);
  77. add_wired_entry (0x02400017, 0x02440017, 0xe2000000, PM_16M);
  78. add_wired_entry (0x01800017, 0x01000017, 0xe4000000, PM_4M);
  79. irq_setup = jazz_irq_setup;
  80. mips_io_port_base = JAZZ_PORT_BASE;
  81. if (mips_machtype == MACH_MIPS_MAGNUM_4000)
  82. EISA_bus = 1;
  83. isa_slot_offset = 0xe3000000;
  84. request_region(0x00,0x20,"dma1");
  85. request_region(0x40,0x20,"timer");
  86. request_region(0x80,0x10,"dma page reg");
  87. request_region(0xc0,0x20,"dma2");
  88.         board_time_init = jazz_time_init;
  89. /* The RTC is outside the port address space */
  90. _machine_restart = jazz_machine_restart;
  91. _machine_halt = jazz_machine_halt;
  92. _machine_power_off = jazz_machine_power_off;
  93. #ifdef CONFIG_BLK_DEV_IDE
  94. ide_ops = &std_ide_ops;
  95. #endif
  96. #ifdef CONFIG_BLK_DEV_FD
  97. fd_ops = &jazz_fd_ops;
  98. #endif
  99. #ifdef CONFIG_VT
  100. conswitchp = &dummy_con;
  101. #endif
  102. #warning "Somebody should check if screen_info is ok for Jazz."
  103. screen_info = (struct screen_info) {
  104. 0, 0, /* orig-x, orig-y */
  105. 0, /* unused */
  106. 0, /* orig_video_page */
  107. 0, /* orig_video_mode */
  108. 160, /* orig_video_cols */
  109. 0, 0, 0, /* unused, ega_bx, unused */
  110. 64, /* orig_video_lines */
  111. 0, /* orig_video_isVGA */
  112. 16 /* orig_video_points */
  113. };
  114. rtc_ops = &jazz_rtc_ops;
  115. kbd_ops = &jazz_kbd_ops;
  116. vdma_init();
  117. }