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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* arch/sh/kernel/setup_dc.c
  2.  *
  3.  * Hardware support for the Sega Dreamcast.
  4.  *
  5.  * Copyright (c) 2001 M. R. Brown <mrbrown@linuxdc.org>
  6.  *
  7.  * This file is part of the LinuxDC project (www.linuxdc.org)
  8.  *
  9.  * Released under the terms of the GNU GPL v2.0.
  10.  * 
  11.  * This file originally bore the message (with enclosed-$):
  12.  * Id: setup_dc.c,v 1.5 2001/05/24 05:09:16 mrbrown Exp
  13.  * SEGA Dreamcast support
  14.  */
  15. #include <linux/sched.h>
  16. #include <linux/kernel.h>
  17. #include <linux/param.h>
  18. #include <linux/interrupt.h>
  19. #include <linux/init.h>
  20. #include <linux/irq.h>
  21. #include <asm/io.h>
  22. #include <asm/irq.h>
  23. #include <asm/dc_sysasic.h>
  24. int __init gapspci_init(void);
  25. #define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  26. /* Dreamcast System ASIC Hardware Events -
  27.  
  28.    The Dreamcast's System ASIC (located on the PowerVR2 chip) is responsible
  29.    for receiving hardware events from system peripherals and triggering an
  30.    SH7750 IRQ.  Hardware events can trigger IRQs 13, 11, or 9 depending on
  31.    which bits are set in the Event Mask Registers (EMRs).  When a hardware
  32.    event is triggered, it's corresponding bit in the Event Status Registers
  33.    (ESRs) is set, and that bit should be rewritten to the ESR to acknowledge
  34.    that event.
  35.    There are three 32-bit ESRs located at 0xa05f8900 - 0xa05f6908.  Event
  36.    types can be found in include/asm-sh/dc_sysasic.h.  There are three groups
  37.    of EMRs that parallel the ESRs.  Each EMR group corresponds to an IRQ, so
  38.    0xa05f6910 - 0xa05f6918 triggers IRQ 13, 0xa05f6920 - 0xa05f6928 triggers
  39.    IRQ 11, and 0xa05f6930 - 0xa05f6938 triggers IRQ 9.
  40.    In the kernel, these events are mapped to virtual IRQs so that drivers can
  41.    respond to them as they would a normal interrupt.  In order to keep this
  42.    mapping simple, the events are mapped as:
  43.    6900/6910 - Events  0-31, IRQ 13
  44.    6904/6924 - Events 32-63, IRQ 11
  45.    6908/6938 - Events 64-95, IRQ  9
  46. */
  47. #define ESR_BASE 0x005f6900    /* Base event status register */
  48. #define EMR_BASE 0x005f6910    /* Base event mask register */
  49. /* Helps us determine the EMR group that this event belongs to: 0 = 0x6910,
  50.    1 = 0x6920, 2 = 0x6930; also determine the event offset */
  51. #define LEVEL(event) (((event) - HW_EVENT_IRQ_BASE) / 32)
  52. /* Return the hardware event's bit positon within the EMR/ESR */
  53. #define EVENT_BIT(event) (((event) - HW_EVENT_IRQ_BASE) & 31)
  54. /* For each of these *_irq routines, the IRQ passed in is the virtual IRQ
  55.    (logically mapped to the corresponding bit for the hardware event). */
  56. /* Disable the hardware event by masking its bit in its EMR */
  57. static inline void disable_systemasic_irq(unsigned int irq)
  58. {
  59. unsigned long flags;
  60. __u32 emr = EMR_BASE + (LEVEL(irq) << 4) + (LEVEL(irq) << 2);
  61. __u32 mask;
  62. save_and_cli(flags);
  63. mask = inl(emr);
  64. mask &= ~(1 << EVENT_BIT(irq));
  65. outl(mask, emr);
  66. restore_flags(flags);
  67. }
  68. /* Enable the hardware event by setting its bit in its EMR */
  69. static inline void enable_systemasic_irq(unsigned int irq)
  70. {
  71. unsigned long flags;
  72. __u32 emr = EMR_BASE + (LEVEL(irq) << 4) + (LEVEL(irq) << 2);
  73. __u32 mask;
  74. save_and_cli(flags);
  75. mask = inl(emr);
  76. mask |= (1 << EVENT_BIT(irq));
  77. outl(mask, emr);
  78. restore_flags(flags);
  79. }
  80. /* Acknowledge a hardware event by writing its bit back to its ESR */
  81. static void ack_systemasic_irq(unsigned int irq)
  82. {
  83. __u32 esr = ESR_BASE + (LEVEL(irq) << 2);
  84. disable_systemasic_irq(irq);
  85. outl((1 << EVENT_BIT(irq)), esr);
  86. }
  87. /* After a IRQ has been ack'd and responded to, it needs to be renabled */
  88. static void end_systemasic_irq(unsigned int irq)
  89. {
  90. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  91. enable_systemasic_irq(irq);
  92. }
  93. static unsigned int startup_systemasic_irq(unsigned int irq)
  94. {
  95. enable_systemasic_irq(irq);
  96. return 0;
  97. }
  98. static void shutdown_systemasic_irq(unsigned int irq)
  99. {
  100. disable_systemasic_irq(irq);
  101. }
  102. static struct hw_interrupt_type systemasic_int = {
  103. typename:       "System ASIC",
  104. startup:        startup_systemasic_irq,
  105. shutdown:       shutdown_systemasic_irq,
  106. enable:         enable_systemasic_irq,
  107. disable:        disable_systemasic_irq,
  108. ack:            ack_systemasic_irq,
  109. end:            end_systemasic_irq,
  110. };
  111. /*
  112.  * Map the hardware event indicated by the processor IRQ to a virtual IRQ.
  113.  */
  114. int systemasic_irq_demux(int irq)
  115. {
  116. __u32 emr, esr, status, level;
  117. __u32 j, bit;
  118. switch (irq) {
  119. case 13:
  120. level = 0;
  121. break;
  122. case 11:
  123. level = 1;
  124. break;
  125. case  9:
  126. level = 2;
  127. break;
  128. default:
  129. return irq;
  130. }
  131. emr = EMR_BASE + (level << 4) + (level << 2);
  132. esr = ESR_BASE + (level << 2);
  133. /* Mask the ESR to filter any spurious, unwanted interrtupts */
  134. status = inl(esr);
  135. status &= inl(emr);
  136. /* Now scan and find the first set bit as the event to map */
  137. for (bit = 1, j = 0; j < 32; bit <<= 1, j++) {
  138. if (status & bit) {
  139. irq = HW_EVENT_IRQ_BASE + j + (level << 5);
  140. return irq;
  141. }
  142. }
  143. /* Not reached */
  144. return irq;
  145. }
  146. int __init setup_dreamcast(void)
  147. {
  148. int i;
  149. /* Mask all hardware events */
  150. /* XXX */
  151. /* Acknowledge any previous events */
  152. /* XXX */
  153. /* Assign all virtual IRQs to the System ASIC int. handler */
  154. for (i = HW_EVENT_IRQ_BASE; i < HW_EVENT_IRQ_MAX; i++)
  155. irq_desc[i].handler = &systemasic_int;
  156. #ifdef CONFIG_PCI
  157. gapspci_init();
  158. #endif
  159. printk(KERN_INFO "SEGA Dreamcast support.n");
  160. #if 0
  161. printk(KERN_INFO "BCR1: 0x%08xn", ctrl_inl(0xff800000));
  162. printk(KERN_INFO "BCR2: 0x%08xn", ctrl_inw(0xff800004));
  163. printk(KERN_INFO "WCR1: 0x%08xn", ctrl_inl(0xff800008));
  164. printk(KERN_INFO "WCR2: 0x%08xn", ctrl_inl(0xff80000c));
  165. printk(KERN_INFO "WCR3: 0x%08xn", ctrl_inl(0xff800010));
  166. printk(KERN_INFO "MCR: 0x%08xn", ctrl_inl(0xff800014));
  167. printk(KERN_INFO "PCR: 0x%08xn", ctrl_inw(0xff800018));
  168. /*
  169.  * BCR1: 0xa3020008
  170.  * BCR2: 0x0001
  171.  * WCR1: 0x01110111
  172.  * WCR2: 0x618066d8
  173.  * WCR3: 0x07777777
  174.  * MCR: 0xc00a0e24
  175.  * PCR: 0x0000
  176.  */
  177. #endif
  178. return 0;
  179. }