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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/sys_cabriolet.c
  3.  *
  4.  * Copyright (C) 1995 David A Rusling
  5.  * Copyright (C) 1996 Jay A Estabrook
  6.  * Copyright (C) 1998, 1999, 2000 Richard Henderson
  7.  *
  8.  * Code supporting the Cabriolet (AlphaPC64), EB66+, and EB164,
  9.  * PC164 and LX164.
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/mm.h>
  15. #include <linux/sched.h>
  16. #include <linux/pci.h>
  17. #include <linux/init.h>
  18. #include <asm/ptrace.h>
  19. #include <asm/system.h>
  20. #include <asm/dma.h>
  21. #include <asm/irq.h>
  22. #include <asm/bitops.h>
  23. #include <asm/mmu_context.h>
  24. #include <asm/io.h>
  25. #include <asm/pgtable.h>
  26. #include <asm/core_apecs.h>
  27. #include <asm/core_cia.h>
  28. #include <asm/core_lca.h>
  29. #include "proto.h"
  30. #include "irq_impl.h"
  31. #include "pci_impl.h"
  32. #include "machvec_impl.h"
  33. /* Note mask bit is true for DISABLED irqs.  */
  34. static unsigned long cached_irq_mask = ~0UL;
  35. static inline void
  36. cabriolet_update_irq_hw(unsigned int irq, unsigned long mask)
  37. {
  38. int ofs = (irq - 16) / 8;
  39. outb(mask >> (16 + ofs * 8), 0x804 + ofs);
  40. }
  41. static inline void
  42. cabriolet_enable_irq(unsigned int irq)
  43. {
  44. cabriolet_update_irq_hw(irq, cached_irq_mask &= ~(1UL << irq));
  45. }
  46. static void
  47. cabriolet_disable_irq(unsigned int irq)
  48. {
  49. cabriolet_update_irq_hw(irq, cached_irq_mask |= 1UL << irq);
  50. }
  51. static unsigned int
  52. cabriolet_startup_irq(unsigned int irq)
  53. cabriolet_enable_irq(irq);
  54. return 0; /* never anything pending */
  55. }
  56. static void
  57. cabriolet_end_irq(unsigned int irq)
  58. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  59. cabriolet_enable_irq(irq);
  60. }
  61. static struct hw_interrupt_type cabriolet_irq_type = {
  62. typename: "CABRIOLET",
  63. startup: cabriolet_startup_irq,
  64. shutdown: cabriolet_disable_irq,
  65. enable: cabriolet_enable_irq,
  66. disable: cabriolet_disable_irq,
  67. ack: cabriolet_disable_irq,
  68. end: cabriolet_end_irq,
  69. };
  70. static void 
  71. cabriolet_device_interrupt(unsigned long v, struct pt_regs *r)
  72. {
  73. unsigned long pld;
  74. unsigned int i;
  75. /* Read the interrupt summary registers */
  76. pld = inb(0x804) | (inb(0x805) << 8) | (inb(0x806) << 16);
  77. /*
  78.  * Now for every possible bit set, work through them and call
  79.  * the appropriate interrupt handler.
  80.  */
  81. while (pld) {
  82. i = ffz(~pld);
  83. pld &= pld - 1; /* clear least bit set */
  84. if (i == 4) {
  85. isa_device_interrupt(v, r);
  86. } else {
  87. handle_irq(16 + i, r);
  88. }
  89. }
  90. }
  91. static void __init
  92. common_init_irq(void (*srm_dev_int)(unsigned long v, struct pt_regs *r))
  93. {
  94. init_i8259a_irqs();
  95. if (alpha_using_srm) {
  96. alpha_mv.device_interrupt = srm_dev_int;
  97. init_srm_irqs(35, 0);
  98. }
  99. else {
  100. long i;
  101. outb(0xff, 0x804);
  102. outb(0xff, 0x805);
  103. outb(0xff, 0x806);
  104. for (i = 16; i < 35; ++i) {
  105. irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
  106. irq_desc[i].handler = &cabriolet_irq_type;
  107. }
  108. }
  109. common_init_isa_dma();
  110. setup_irq(16+4, &isa_cascade_irqaction);
  111. }
  112. static void __init
  113. cabriolet_init_irq(void)
  114. {
  115. common_init_irq(srm_device_interrupt);
  116. }
  117. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_PC164)
  118. /* In theory, the PC164 has the same interrupt hardware as the other
  119.    Cabriolet based systems.  However, something got screwed up late
  120.    in the development cycle which broke the interrupt masking hardware.
  121.    Repeat, it is not possible to mask and ack interrupts.  At all.
  122.    In an attempt to work around this, while processing interrupts,
  123.    we do not allow the IPL to drop below what it is currently.  This
  124.    prevents the possibility of recursion.  
  125.    ??? Another option might be to force all PCI devices to use edge
  126.    triggered rather than level triggered interrupts.  That might be
  127.    too invasive though.  */
  128. static void
  129. pc164_srm_device_interrupt(unsigned long v, struct pt_regs *r)
  130. {
  131. __min_ipl = getipl();
  132. srm_device_interrupt(v, r);
  133. __min_ipl = 0;
  134. }
  135. static void
  136. pc164_device_interrupt(unsigned long v, struct pt_regs *r)
  137. {
  138. __min_ipl = getipl();
  139. cabriolet_device_interrupt(v, r);
  140. __min_ipl = 0;
  141. }
  142. static void __init
  143. pc164_init_irq(void)
  144. {
  145. common_init_irq(pc164_srm_device_interrupt);
  146. }
  147. #endif
  148. /*
  149.  * The EB66+ is very similar to the EB66 except that it does not have
  150.  * the on-board NCR and Tulip chips.  In the code below, I have used
  151.  * slot number to refer to the id select line and *not* the slot
  152.  * number used in the EB66+ documentation.  However, in the table,
  153.  * I've given the slot number, the id select line and the Jxx number
  154.  * that's printed on the board.  The interrupt pins from the PCI slots
  155.  * are wired into 3 interrupt summary registers at 0x804, 0x805 and
  156.  * 0x806 ISA.
  157.  *
  158.  * In the table, -1 means don't assign an IRQ number.  This is usually
  159.  * because it is the Saturn IO (SIO) PCI/ISA Bridge Chip.
  160.  */
  161. static inline int __init
  162. eb66p_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  163. {
  164. static char irq_tab[5][5] __initdata = {
  165. /*INT  INTA  INTB  INTC   INTD */
  166. {16+0, 16+0, 16+5,  16+9, 16+13},  /* IdSel 6,  slot 0, J25 */
  167. {16+1, 16+1, 16+6, 16+10, 16+14},  /* IdSel 7,  slot 1, J26 */
  168. {  -1,   -1,   -1,    -1,    -1},  /* IdSel 8,  SIO         */
  169. {16+2, 16+2, 16+7, 16+11, 16+15},  /* IdSel 9,  slot 2, J27 */
  170. {16+3, 16+3, 16+8, 16+12,  16+6}   /* IdSel 10, slot 3, J28 */
  171. };
  172. const long min_idsel = 6, max_idsel = 10, irqs_per_slot = 5;
  173. return COMMON_TABLE_LOOKUP;
  174. }
  175. /*
  176.  * The AlphaPC64 is very similar to the EB66+ except that its slots
  177.  * are numbered differently.  In the code below, I have used slot
  178.  * number to refer to the id select line and *not* the slot number
  179.  * used in the AlphaPC64 documentation.  However, in the table, I've
  180.  * given the slot number, the id select line and the Jxx number that's
  181.  * printed on the board.  The interrupt pins from the PCI slots are
  182.  * wired into 3 interrupt summary registers at 0x804, 0x805 and 0x806
  183.  * ISA.
  184.  *
  185.  * In the table, -1 means don't assign an IRQ number.  This is usually
  186.  * because it is the Saturn IO (SIO) PCI/ISA Bridge Chip.
  187.  */
  188. static inline int __init
  189. cabriolet_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  190. {
  191. static char irq_tab[5][5] __initdata = {
  192. /*INT   INTA  INTB  INTC   INTD */
  193. { 16+2, 16+2, 16+7, 16+11, 16+15}, /* IdSel 5,  slot 2, J21 */
  194. { 16+0, 16+0, 16+5,  16+9, 16+13}, /* IdSel 6,  slot 0, J19 */
  195. { 16+1, 16+1, 16+6, 16+10, 16+14}, /* IdSel 7,  slot 1, J20 */
  196. {   -1,   -1,   -1,    -1,    -1}, /* IdSel 8,  SIO         */
  197. { 16+3, 16+3, 16+8, 16+12, 16+16}  /* IdSel 9,  slot 3, J22 */
  198. };
  199. const long min_idsel = 5, max_idsel = 9, irqs_per_slot = 5;
  200. return COMMON_TABLE_LOOKUP;
  201. }
  202. static inline void __init
  203. cabriolet_init_pci(void)
  204. {
  205. common_init_pci();
  206. ns87312_enable_ide(0x398);
  207. }
  208. static inline void __init
  209. cia_cab_init_pci(void)
  210. {
  211. cia_init_pci();
  212. ns87312_enable_ide(0x398);
  213. }
  214. /*
  215.  * The PC164 and LX164 have 19 PCI interrupts, four from each of the four
  216.  * PCI slots, the SIO, PCI/IDE, and USB.
  217.  * 
  218.  * Each of the interrupts can be individually masked. This is
  219.  * accomplished by setting the appropriate bit in the mask register.
  220.  * A bit is set by writing a "1" to the desired position in the mask
  221.  * register and cleared by writing a "0". There are 3 mask registers
  222.  * located at ISA address 804h, 805h and 806h.
  223.  * 
  224.  * An I/O read at ISA address 804h, 805h, 806h will return the
  225.  * state of the 11 PCI interrupts and not the state of the MASKED
  226.  * interrupts.
  227.  * 
  228.  * Note: A write to I/O 804h, 805h, and 806h the mask register will be
  229.  * updated.
  230.  * 
  231.  * 
  232.  *  ISA DATA<7:0>
  233.  * ISA     +--------------------------------------------------------------+
  234.  * ADDRESS |   7   |   6   |   5   |   4   |   3   |   2  |   1   |   0   |
  235.  *         +==============================================================+
  236.  * 0x804   | INTB0 |  USB  |  IDE  |  SIO  | INTA3 |INTA2 | INTA1 | INTA0 |
  237.  *         +--------------------------------------------------------------+
  238.  * 0x805   | INTD0 | INTC3 | INTC2 | INTC1 | INTC0 |INTB3 | INTB2 | INTB1 |
  239.  *         +--------------------------------------------------------------+
  240.  * 0x806   | Rsrv  | Rsrv  | Rsrv  | Rsrv  | Rsrv  |INTD3 | INTD2 | INTD1 |
  241.  *         +--------------------------------------------------------------+
  242.  *         * Rsrv = reserved bits
  243.  *         Note: The mask register is write-only.
  244.  * 
  245.  * IdSel
  246.  *   5  32 bit PCI option slot 2
  247.  *   6  64 bit PCI option slot 0
  248.  *   7  64 bit PCI option slot 1
  249.  *   8  Saturn I/O
  250.  *   9  32 bit PCI option slot 3
  251.  *  10  USB
  252.  *  11  IDE
  253.  * 
  254.  */
  255. static inline int __init
  256. alphapc164_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  257. {
  258. static char irq_tab[7][5] __initdata = {
  259. /*INT   INTA  INTB   INTC   INTD */
  260. { 16+2, 16+2, 16+9,  16+13, 16+17}, /* IdSel  5, slot 2, J20 */
  261. { 16+0, 16+0, 16+7,  16+11, 16+15}, /* IdSel  6, slot 0, J29 */
  262. { 16+1, 16+1, 16+8,  16+12, 16+16}, /* IdSel  7, slot 1, J26 */
  263. {   -1,   -1,   -1,    -1,    -1},  /* IdSel  8, SIO */
  264. { 16+3, 16+3, 16+10, 16+14, 16+18}, /* IdSel  9, slot 3, J19 */
  265. { 16+6, 16+6, 16+6,  16+6,  16+6},  /* IdSel 10, USB */
  266. { 16+5, 16+5, 16+5,  16+5,  16+5}   /* IdSel 11, IDE */
  267. };
  268. const long min_idsel = 5, max_idsel = 11, irqs_per_slot = 5;
  269. return COMMON_TABLE_LOOKUP;
  270. }
  271. static inline void __init
  272. alphapc164_init_pci(void)
  273. {
  274. cia_init_pci();
  275. SMC93x_Init();
  276. }
  277. /*
  278.  * The System Vector
  279.  */
  280. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_CABRIOLET)
  281. struct alpha_machine_vector cabriolet_mv __initmv = {
  282. vector_name: "Cabriolet",
  283. DO_EV4_MMU,
  284. DO_DEFAULT_RTC,
  285. DO_APECS_IO,
  286. DO_APECS_BUS,
  287. machine_check: apecs_machine_check,
  288. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  289. min_io_address: DEFAULT_IO_BASE,
  290. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  291. nr_irqs: 35,
  292. device_interrupt: cabriolet_device_interrupt,
  293. init_arch: apecs_init_arch,
  294. init_irq: cabriolet_init_irq,
  295. init_rtc: common_init_rtc,
  296. init_pci: cabriolet_init_pci,
  297. kill_arch: NULL,
  298. pci_map_irq: cabriolet_map_irq,
  299. pci_swizzle: common_swizzle,
  300. };
  301. #ifndef CONFIG_ALPHA_EB64P
  302. ALIAS_MV(cabriolet)
  303. #endif
  304. #endif
  305. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_EB164)
  306. struct alpha_machine_vector eb164_mv __initmv = {
  307. vector_name: "EB164",
  308. DO_EV5_MMU,
  309. DO_DEFAULT_RTC,
  310. DO_CIA_IO,
  311. DO_CIA_BUS,
  312. machine_check: cia_machine_check,
  313. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  314. min_io_address: DEFAULT_IO_BASE,
  315. min_mem_address: CIA_DEFAULT_MEM_BASE,
  316. nr_irqs: 35,
  317. device_interrupt: cabriolet_device_interrupt,
  318. init_arch: cia_init_arch,
  319. init_irq: cabriolet_init_irq,
  320. init_rtc: common_init_rtc,
  321. init_pci: cia_cab_init_pci,
  322. pci_map_irq: cabriolet_map_irq,
  323. pci_swizzle: common_swizzle,
  324. };
  325. ALIAS_MV(eb164)
  326. #endif
  327. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_EB66P)
  328. struct alpha_machine_vector eb66p_mv __initmv = {
  329. vector_name: "EB66+",
  330. DO_EV4_MMU,
  331. DO_DEFAULT_RTC,
  332. DO_LCA_IO,
  333. DO_LCA_BUS,
  334. machine_check: lca_machine_check,
  335. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  336. min_io_address: DEFAULT_IO_BASE,
  337. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  338. nr_irqs: 35,
  339. device_interrupt: cabriolet_device_interrupt,
  340. init_arch: lca_init_arch,
  341. init_irq: cabriolet_init_irq,
  342. init_rtc: common_init_rtc,
  343. init_pci: cabriolet_init_pci,
  344. pci_map_irq: eb66p_map_irq,
  345. pci_swizzle: common_swizzle,
  346. };
  347. ALIAS_MV(eb66p)
  348. #endif
  349. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_LX164)
  350. struct alpha_machine_vector lx164_mv __initmv = {
  351. vector_name: "LX164",
  352. DO_EV5_MMU,
  353. DO_DEFAULT_RTC,
  354. DO_PYXIS_IO,
  355. DO_CIA_BUS,
  356. machine_check: cia_machine_check,
  357. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  358. min_io_address: DEFAULT_IO_BASE,
  359. min_mem_address: DEFAULT_MEM_BASE,
  360. pci_dac_offset: PYXIS_DAC_OFFSET,
  361. nr_irqs: 35,
  362. device_interrupt: cabriolet_device_interrupt,
  363. init_arch: pyxis_init_arch,
  364. init_irq: cabriolet_init_irq,
  365. init_rtc: common_init_rtc,
  366. init_pci: alphapc164_init_pci,
  367. pci_map_irq: alphapc164_map_irq,
  368. pci_swizzle: common_swizzle,
  369. };
  370. ALIAS_MV(lx164)
  371. #endif
  372. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_PC164)
  373. struct alpha_machine_vector pc164_mv __initmv = {
  374. vector_name: "PC164",
  375. DO_EV5_MMU,
  376. DO_DEFAULT_RTC,
  377. DO_CIA_IO,
  378. DO_CIA_BUS,
  379. machine_check: cia_machine_check,
  380. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  381. min_io_address: DEFAULT_IO_BASE,
  382. min_mem_address: CIA_DEFAULT_MEM_BASE,
  383. nr_irqs: 35,
  384. device_interrupt: pc164_device_interrupt,
  385. init_arch: cia_init_arch,
  386. init_irq: pc164_init_irq,
  387. init_rtc: common_init_rtc,
  388. init_pci: alphapc164_init_pci,
  389. pci_map_irq: alphapc164_map_irq,
  390. pci_swizzle: common_swizzle,
  391. };
  392. ALIAS_MV(pc164)
  393. #endif