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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/sys_ruffian.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 RUFFIAN.
  9.  */
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/mm.h>
  13. #include <linux/sched.h>
  14. #include <linux/pci.h>
  15. #include <linux/ioport.h>
  16. #include <linux/init.h>
  17. #include <asm/ptrace.h>
  18. #include <asm/system.h>
  19. #include <asm/dma.h>
  20. #include <asm/irq.h>
  21. #include <asm/mmu_context.h>
  22. #include <asm/io.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/core_cia.h>
  25. #include "proto.h"
  26. #include "irq_impl.h"
  27. #include "pci_impl.h"
  28. #include "machvec_impl.h"
  29. static void __init
  30. ruffian_init_irq(void)
  31. {
  32. /* Invert 6&7 for i82371 */
  33. *(vulp)PYXIS_INT_HILO  = 0x000000c0UL; mb();
  34. *(vulp)PYXIS_INT_CNFG  = 0x00002064UL; mb();  /* all clear */
  35. outb(0x11,0xA0);
  36. outb(0x08,0xA1);
  37. outb(0x02,0xA1);
  38. outb(0x01,0xA1);
  39. outb(0xFF,0xA1);
  40. outb(0x11,0x20);
  41. outb(0x00,0x21);
  42. outb(0x04,0x21);
  43. outb(0x01,0x21);
  44. outb(0xFF,0x21);
  45. /* Finish writing the 82C59A PIC Operation Control Words */
  46. outb(0x20,0xA0);
  47. outb(0x20,0x20);
  48. init_i8259a_irqs();
  49. /* Not interested in the bogus interrupts (0,3,6),
  50.    NMI (1), HALT (2), flash (5), or 21142 (8).  */
  51. init_pyxis_irqs(0x16f0000);
  52. common_init_isa_dma();
  53. }
  54. static void __init
  55. ruffian_init_rtc(void)
  56. {
  57. /* Ruffian does not have the RTC connected to the CPU timer
  58.    interrupt.  Instead, it uses the PIT connected to IRQ 0.  */
  59. /* Setup interval timer.  */
  60. outb(0x34, 0x43); /* binary, mode 2, LSB/MSB, ch 0 */
  61. outb(LATCH & 0xff, 0x40); /* LSB */
  62. outb(LATCH >> 8, 0x40); /* MSB */
  63. outb(0xb6, 0x43); /* pit counter 2: speaker */
  64. outb(0x31, 0x42);
  65. outb(0x13, 0x42);
  66. setup_irq(0, &timer_irqaction);
  67. }
  68. static void
  69. ruffian_kill_arch (int mode)
  70. {
  71. #if 0
  72. /* This only causes re-entry to ARCSBIOS */
  73. /* Perhaps this works for other PYXIS as well?  */
  74. *(vuip) PYXIS_RESET = 0x0000dead;
  75. mb();
  76. #endif
  77. }
  78. /*
  79.  *  Interrupt routing:
  80.  *
  81.  * Primary bus
  82.  *   IdSel INTA INTB INTC INTD
  83.  * 21052   13   -   -   -   -
  84.  * SIO    14  23   -   -   -
  85.  * 21143   15  44   -   -   -
  86.  * Slot 0  17  43  42  41  40
  87.  *
  88.  * Secondary bus
  89.  *   IdSel INTA INTB INTC INTD
  90.  * Slot 0   8 (18)  19  18  17  16
  91.  * Slot 1   9 (19)  31  30  29  28
  92.  * Slot 2  10 (20)  27  26  25  24
  93.  * Slot 3  11 (21)  39  38  37  36
  94.  * Slot 4  12 (22)  35  34  33  32
  95.  * 53c875  13 (23)  20   -   -   -
  96.  *
  97.  */
  98. static int __init
  99. ruffian_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  100. {
  101.         static char irq_tab[11][5] __initdata = {
  102.       /*INT  INTA INTB INTC INTD */
  103. {-1,  -1,  -1,  -1,  -1},  /* IdSel 13,  21052      */
  104. {-1,  -1,  -1,  -1,  -1},  /* IdSel 14,  SIO      */
  105. {44,  44,  44,  44,  44},  /* IdSel 15,  21143      */
  106. {-1,  -1,  -1,  -1,  -1},  /* IdSel 16,  none      */
  107. {43,  43,  42,  41,  40},  /* IdSel 17,  64-bit slot */
  108. /* the next 6 are actually on PCI bus 1, across the bridge */
  109. {19,  19,  18,  17,  16},  /* IdSel  8,  slot 0      */
  110. {31,  31,  30,  29,  28},  /* IdSel  9,  slot 1      */
  111. {27,  27,  26,  25,  24},  /* IdSel 10,  slot 2      */
  112. {39,  39,  38,  37,  36},  /* IdSel 11,  slot 3      */
  113. {35,  35,  34,  33,  32},  /* IdSel 12,  slot 4      */
  114. {20,  20,  20,  20,  20},  /* IdSel 13,  53c875      */
  115.         };
  116. const long min_idsel = 13, max_idsel = 23, irqs_per_slot = 5;
  117. return COMMON_TABLE_LOOKUP;
  118. }
  119. static u8 __init
  120. ruffian_swizzle(struct pci_dev *dev, u8 *pinp)
  121. {
  122. int slot, pin = *pinp;
  123. if (dev->bus->number == 0) {
  124. slot = PCI_SLOT(dev->devfn);
  125. }
  126. /* Check for the built-in bridge.  */
  127. else if (PCI_SLOT(dev->bus->self->devfn) == 13) {
  128. slot = PCI_SLOT(dev->devfn) + 10;
  129. }
  130. else 
  131. {
  132. /* Must be a card-based bridge.  */
  133. do {
  134. if (PCI_SLOT(dev->bus->self->devfn) == 13) {
  135. slot = PCI_SLOT(dev->devfn) + 10;
  136. break;
  137. }
  138. pin = bridge_swizzle(pin, PCI_SLOT(dev->devfn));
  139. /* Move up the chain of bridges.  */
  140. dev = dev->bus->self;
  141. /* Slot of the next bridge.  */
  142. slot = PCI_SLOT(dev->devfn);
  143. } while (dev->bus->self);
  144. }
  145. *pinp = pin;
  146. return slot;
  147. }
  148. #ifdef BUILDING_FOR_MILO
  149. /*
  150.  * The DeskStation Ruffian motherboard firmware does not place
  151.  * the memory size in the PALimpure area.  Therefore, we use
  152.  * the Bank Configuration Registers in PYXIS to obtain the size.
  153.  */
  154. static unsigned long __init
  155. ruffian_get_bank_size(unsigned long offset)
  156. {
  157. unsigned long bank_addr, bank, ret = 0;
  158.   
  159. /* Valid offsets are: 0x800, 0x840 and 0x880
  160.    since Ruffian only uses three banks.  */
  161. bank_addr = (unsigned long)PYXIS_MCR + offset;
  162. bank = *(vulp)bank_addr;
  163.     
  164. /* Check BANK_ENABLE */
  165. if (bank & 0x01) {
  166. static unsigned long size[] __initdata = {
  167. 0x40000000UL, /* 0x00,   1G */ 
  168. 0x20000000UL, /* 0x02, 512M */
  169. 0x10000000UL, /* 0x04, 256M */
  170. 0x08000000UL, /* 0x06, 128M */
  171. 0x04000000UL, /* 0x08,  64M */
  172. 0x02000000UL, /* 0x0a,  32M */
  173. 0x01000000UL, /* 0x0c,  16M */
  174. 0x00800000UL, /* 0x0e,   8M */
  175. 0x80000000UL, /* 0x10,   2G */
  176. };
  177. bank = (bank & 0x1e) >> 1;
  178. if (bank < sizeof(size)/sizeof(*size))
  179. ret = size[bank];
  180. }
  181. return ret;
  182. }
  183. #endif /* BUILDING_FOR_MILO */
  184. /*
  185.  * The System Vector
  186.  */
  187. struct alpha_machine_vector ruffian_mv __initmv = {
  188. vector_name: "Ruffian",
  189. DO_EV5_MMU,
  190. DO_DEFAULT_RTC,
  191. DO_PYXIS_IO,
  192. DO_CIA_BUS,
  193. machine_check: cia_machine_check,
  194. max_dma_address: ALPHA_RUFFIAN_MAX_DMA_ADDRESS,
  195. min_io_address: DEFAULT_IO_BASE,
  196. min_mem_address: DEFAULT_MEM_BASE,
  197. pci_dac_offset: PYXIS_DAC_OFFSET,
  198. nr_irqs: 48,
  199. device_interrupt: pyxis_device_interrupt,
  200. init_arch: pyxis_init_arch,
  201. init_irq: ruffian_init_irq,
  202. init_rtc: ruffian_init_rtc,
  203. init_pci: cia_init_pci,
  204. kill_arch: ruffian_kill_arch,
  205. pci_map_irq: ruffian_map_irq,
  206. pci_swizzle: ruffian_swizzle,
  207. };
  208. ALIAS_MV(ruffian)