sys_sio.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/sys_sio.c
  3.  *
  4.  * Copyright (C) 1995 David A Rusling
  5.  * Copyright (C) 1996 Jay A Estabrook
  6.  * Copyright (C) 1998, 1999 Richard Henderson
  7.  *
  8.  * Code for all boards that route the PCI interrupts through the SIO
  9.  * PCI/ISA bridge.  This includes Noname (AXPpci33), Multia (UDB),
  10.  * Kenetics's Platform 2000, Avanti (AlphaStation), XL, and AlphaBook1.
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/kernel.h>
  14. #include <linux/types.h>
  15. #include <linux/mm.h>
  16. #include <linux/sched.h>
  17. #include <linux/pci.h>
  18. #include <linux/init.h>
  19. #include <linux/tty.h>
  20. #include <asm/compiler.h>
  21. #include <asm/ptrace.h>
  22. #include <asm/system.h>
  23. #include <asm/dma.h>
  24. #include <asm/irq.h>
  25. #include <asm/mmu_context.h>
  26. #include <asm/io.h>
  27. #include <asm/pgtable.h>
  28. #include <asm/core_apecs.h>
  29. #include <asm/core_lca.h>
  30. #include "proto.h"
  31. #include "irq_impl.h"
  32. #include "pci_impl.h"
  33. #include "machvec_impl.h"
  34. static void __init
  35. sio_init_irq(void)
  36. {
  37. if (alpha_using_srm)
  38. alpha_mv.device_interrupt = srm_device_interrupt;
  39. init_i8259a_irqs();
  40. common_init_isa_dma();
  41. }
  42. static inline void __init
  43. alphabook1_init_arch(void)
  44. {
  45. /* The AlphaBook1 has LCD video fixed at 800x600,
  46.    37 rows and 100 cols. */
  47. screen_info.orig_y = 37;
  48. screen_info.orig_video_cols = 100;
  49. screen_info.orig_video_lines = 37;
  50. lca_init_arch();
  51. }
  52. /*
  53.  * sio_route_tab selects irq routing in PCI/ISA bridge so that:
  54.  * PIRQ0 -> irq 15
  55.  * PIRQ1 -> irq  9
  56.  * PIRQ2 -> irq 10
  57.  * PIRQ3 -> irq 11
  58.  *
  59.  * This probably ought to be configurable via MILO.  For
  60.  * example, sound boards seem to like using IRQ 9.
  61.  *
  62.  * This is NOT how we should do it. PIRQ0-X should have
  63.  * their own IRQ's, the way intel uses the IO-APIC irq's.
  64.  */
  65. static void __init
  66. sio_pci_route(void)
  67. {
  68. pcibios_write_config_dword(0, PCI_DEVFN(7, 0), 0x60,
  69.    alpha_mv.sys.sio.route_tab);
  70. }
  71. static unsigned int __init
  72. sio_collect_irq_levels(void)
  73. {
  74. unsigned int level_bits = 0;
  75. struct pci_dev *dev;
  76. /* Iterate through the devices, collecting IRQ levels.  */
  77. pci_for_each_dev(dev) {
  78. if ((dev->class >> 16 == PCI_BASE_CLASS_BRIDGE) &&
  79.     (dev->class >> 8 != PCI_CLASS_BRIDGE_PCMCIA))
  80. continue;
  81. if (dev->irq)
  82. level_bits |= (1 << dev->irq);
  83. }
  84. return level_bits;
  85. }
  86. static void __init
  87. sio_fixup_irq_levels(unsigned int level_bits)
  88. {
  89. unsigned int old_level_bits;
  90. /*
  91.  * Now, make all PCI interrupts level sensitive.  Notice:
  92.  * these registers must be accessed byte-wise.  inw()/outw()
  93.  * don't work.
  94.  *
  95.  * Make sure to turn off any level bits set for IRQs 9,10,11,15,
  96.  *  so that the only bits getting set are for devices actually found.
  97.  * Note that we do preserve the remainder of the bits, which we hope
  98.  *  will be set correctly by ARC/SRM.
  99.  *
  100.  * Note: we at least preserve any level-set bits on AlphaBook1
  101.  */
  102. old_level_bits = inb(0x4d0) | (inb(0x4d1) << 8);
  103. level_bits |= (old_level_bits & 0x71ff);
  104. outb((level_bits >> 0) & 0xff, 0x4d0);
  105. outb((level_bits >> 8) & 0xff, 0x4d1);
  106. }
  107. static inline int __init
  108. noname_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  109. {
  110. /*
  111.  * The Noname board has 5 PCI slots with each of the 4
  112.  * interrupt pins routed to different pins on the PCI/ISA
  113.  * bridge (PIRQ0-PIRQ3).  The table below is based on
  114.  * information available at:
  115.  *
  116.  *   http://ftp.digital.com/pub/DEC/axppci/ref_interrupts.txt
  117.  *
  118.  * I have no information on the Avanti interrupt routing, but
  119.  * the routing seems to be identical to the Noname except
  120.  * that the Avanti has an additional slot whose routing I'm
  121.  * unsure of.
  122.  *
  123.  * pirq_tab[0] is a fake entry to deal with old PCI boards
  124.  * that have the interrupt pin number hardwired to 0 (meaning
  125.  * that they use the default INTA line, if they are interrupt
  126.  * driven at all).
  127.  */
  128. static char irq_tab[][5] __initdata = {
  129. /*INT A   B   C   D */
  130. { 3,  3,  3,  3,  3}, /* idsel  6 (53c810) */ 
  131. {-1, -1, -1, -1, -1}, /* idsel  7 (SIO: PCI/ISA bridge) */
  132. { 2,  2, -1, -1, -1}, /* idsel  8 (Hack: slot closest ISA) */
  133. {-1, -1, -1, -1, -1}, /* idsel  9 (unused) */
  134. {-1, -1, -1, -1, -1}, /* idsel 10 (unused) */
  135. { 0,  0,  2,  1,  0}, /* idsel 11 KN25_PCI_SLOT0 */
  136. { 1,  1,  0,  2,  1}, /* idsel 12 KN25_PCI_SLOT1 */
  137. { 2,  2,  1,  0,  2}, /* idsel 13 KN25_PCI_SLOT2 */
  138. { 0,  0,  0,  0,  0}, /* idsel 14 AS255 TULIP */
  139. };
  140. const long min_idsel = 6, max_idsel = 14, irqs_per_slot = 5;
  141. int irq = COMMON_TABLE_LOOKUP, tmp;
  142. tmp = __kernel_extbl(alpha_mv.sys.sio.route_tab, irq);
  143. return irq >= 0 ? tmp : -1;
  144. }
  145. static inline int __init
  146. p2k_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  147. {
  148. static char irq_tab[][5] __initdata = {
  149. /*INT A   B   C   D */
  150. { 0,  0, -1, -1, -1}, /* idsel  6 (53c810) */
  151. {-1, -1, -1, -1, -1}, /* idsel  7 (SIO: PCI/ISA bridge) */
  152. { 1,  1,  2,  3,  0}, /* idsel  8 (slot A) */
  153. { 2,  2,  3,  0,  1}, /* idsel  9 (slot B) */
  154. {-1, -1, -1, -1, -1}, /* idsel 10 (unused) */
  155. {-1, -1, -1, -1, -1}, /* idsel 11 (unused) */
  156. { 3,  3, -1, -1, -1}, /* idsel 12 (CMD0646) */
  157. };
  158. const long min_idsel = 6, max_idsel = 12, irqs_per_slot = 5;
  159. int irq = COMMON_TABLE_LOOKUP, tmp;
  160. tmp = __kernel_extbl(alpha_mv.sys.sio.route_tab, irq);
  161. return irq >= 0 ? tmp : -1;
  162. }
  163. static inline void __init
  164. noname_init_pci(void)
  165. {
  166. common_init_pci();
  167. sio_pci_route();
  168. sio_fixup_irq_levels(sio_collect_irq_levels());
  169. ns87312_enable_ide(0x26e);
  170. }
  171. static inline void __init
  172. alphabook1_init_pci(void)
  173. {
  174. struct pci_dev *dev;
  175. unsigned char orig, config;
  176. common_init_pci();
  177. sio_pci_route();
  178. /*
  179.  * On the AlphaBook1, the PCMCIA chip (Cirrus 6729)
  180.  * is sensitive to PCI bus bursts, so we must DISABLE
  181.  * burst mode for the NCR 8xx SCSI... :-(
  182.  *
  183.  * Note that the NCR810 SCSI driver must preserve the
  184.  * setting of the bit in order for this to work.  At the
  185.  * moment (2.0.29), ncr53c8xx.c does NOT do this, but
  186.  * 53c7,8xx.c DOES.
  187.  */
  188. dev = NULL;
  189. while ((dev = pci_find_device(PCI_VENDOR_ID_NCR, PCI_ANY_ID, dev))) {
  190.                 if (dev->device == PCI_DEVICE_ID_NCR_53C810
  191.     || dev->device == PCI_DEVICE_ID_NCR_53C815
  192.     || dev->device == PCI_DEVICE_ID_NCR_53C820
  193.     || dev->device == PCI_DEVICE_ID_NCR_53C825) {
  194. unsigned long io_port;
  195. unsigned char ctest4;
  196. io_port = dev->resource[0].start;
  197. ctest4 = inb(io_port+0x21);
  198. if (!(ctest4 & 0x80)) {
  199. printk("AlphaBook1 NCR init: setting"
  200.        " burst disablen");
  201. outb(ctest4 | 0x80, io_port+0x21);
  202. }
  203.                 }
  204. }
  205. /* Do not set *ANY* level triggers for AlphaBook1. */
  206. sio_fixup_irq_levels(0);
  207. /* Make sure that register PR1 indicates 1Mb mem */
  208. outb(0x0f, 0x3ce); orig = inb(0x3cf);   /* read PR5  */
  209. outb(0x0f, 0x3ce); outb(0x05, 0x3cf);   /* unlock PR0-4 */
  210. outb(0x0b, 0x3ce); config = inb(0x3cf); /* read PR1 */
  211. if ((config & 0xc0) != 0xc0) {
  212. printk("AlphaBook1 VGA init: setting 1Mb memoryn");
  213. config |= 0xc0;
  214. outb(0x0b, 0x3ce); outb(config, 0x3cf); /* write PR1 */
  215. }
  216. outb(0x0f, 0x3ce); outb(orig, 0x3cf); /* (re)lock PR0-4 */
  217. }
  218. /*
  219.  * The System Vectors
  220.  */
  221. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_BOOK1)
  222. struct alpha_machine_vector alphabook1_mv __initmv = {
  223. vector_name: "AlphaBook1",
  224. DO_EV4_MMU,
  225. DO_DEFAULT_RTC,
  226. DO_LCA_IO,
  227. DO_LCA_BUS,
  228. machine_check: lca_machine_check,
  229. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  230. min_io_address: DEFAULT_IO_BASE,
  231. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  232. nr_irqs: 16,
  233. device_interrupt: isa_device_interrupt,
  234. init_arch: alphabook1_init_arch,
  235. init_irq: sio_init_irq,
  236. init_rtc: common_init_rtc,
  237. init_pci: alphabook1_init_pci,
  238. kill_arch: NULL,
  239. pci_map_irq: noname_map_irq,
  240. pci_swizzle: common_swizzle,
  241. sys: { sio: {
  242. /* NCR810 SCSI is 14, PCMCIA controller is 15.  */
  243. route_tab: 0x0e0f0a0a,
  244. }}
  245. };
  246. ALIAS_MV(alphabook1)
  247. #endif
  248. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_AVANTI)
  249. struct alpha_machine_vector avanti_mv __initmv = {
  250. vector_name: "Avanti",
  251. DO_EV4_MMU,
  252. DO_DEFAULT_RTC,
  253. DO_APECS_IO,
  254. DO_APECS_BUS,
  255. machine_check: apecs_machine_check,
  256. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  257. min_io_address: DEFAULT_IO_BASE,
  258. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  259. nr_irqs: 16,
  260. device_interrupt: isa_device_interrupt,
  261. init_arch: apecs_init_arch,
  262. init_irq: sio_init_irq,
  263. init_rtc: common_init_rtc,
  264. init_pci: noname_init_pci,
  265. pci_map_irq: noname_map_irq,
  266. pci_swizzle: common_swizzle,
  267. sys: { sio: {
  268. route_tab: 0x0b0a0e0f,
  269. }}
  270. };
  271. ALIAS_MV(avanti)
  272. #endif
  273. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_NONAME)
  274. struct alpha_machine_vector noname_mv __initmv = {
  275. vector_name: "Noname",
  276. DO_EV4_MMU,
  277. DO_DEFAULT_RTC,
  278. DO_LCA_IO,
  279. DO_LCA_BUS,
  280. machine_check: lca_machine_check,
  281. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  282. min_io_address: DEFAULT_IO_BASE,
  283. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  284. nr_irqs: 16,
  285. device_interrupt: srm_device_interrupt,
  286. init_arch: lca_init_arch,
  287. init_irq: sio_init_irq,
  288. init_rtc: common_init_rtc,
  289. init_pci: noname_init_pci,
  290. pci_map_irq: noname_map_irq,
  291. pci_swizzle: common_swizzle,
  292. sys: { sio: {
  293. /* For UDB, the only available PCI slot must not map to IRQ 9,
  294.    since that's the builtin MSS sound chip. That PCI slot
  295.    will map to PIRQ1 (for INTA at least), so we give it IRQ 15
  296.    instead.
  297.    Unfortunately we have to do this for NONAME as well, since
  298.    they are co-indicated when the platform type "Noname" is
  299.    selected... :-(  */
  300. route_tab: 0x0b0a0f0d,
  301. }}
  302. };
  303. ALIAS_MV(noname)
  304. #endif
  305. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_P2K)
  306. struct alpha_machine_vector p2k_mv __initmv = {
  307. vector_name: "Platform2000",
  308. DO_EV4_MMU,
  309. DO_DEFAULT_RTC,
  310. DO_LCA_IO,
  311. DO_LCA_BUS,
  312. machine_check: lca_machine_check,
  313. max_dma_address: ALPHA_MAX_DMA_ADDRESS,
  314. min_io_address: DEFAULT_IO_BASE,
  315. min_mem_address: APECS_AND_LCA_DEFAULT_MEM_BASE,
  316. nr_irqs: 16,
  317. device_interrupt: srm_device_interrupt,
  318. init_arch: lca_init_arch,
  319. init_irq: sio_init_irq,
  320. init_rtc: common_init_rtc,
  321. init_pci: noname_init_pci,
  322. pci_map_irq: p2k_map_irq,
  323. pci_swizzle: common_swizzle,
  324. sys: { sio: {
  325. route_tab: 0x0b0a090f,
  326. }}
  327. };
  328. ALIAS_MV(p2k)
  329. #endif
  330. #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_XL)
  331. struct alpha_machine_vector xl_mv __initmv = {
  332. vector_name: "XL",
  333. DO_EV4_MMU,
  334. DO_DEFAULT_RTC,
  335. DO_APECS_IO,
  336. BUS(apecs),
  337. machine_check: apecs_machine_check,
  338. max_dma_address: ALPHA_XL_MAX_DMA_ADDRESS,
  339. min_io_address: DEFAULT_IO_BASE,
  340. min_mem_address: XL_DEFAULT_MEM_BASE,
  341. nr_irqs: 16,
  342. device_interrupt: isa_device_interrupt,
  343. init_arch: apecs_init_arch,
  344. init_irq: sio_init_irq,
  345. init_rtc: common_init_rtc,
  346. init_pci: noname_init_pci,
  347. pci_map_irq: noname_map_irq,
  348. pci_swizzle: common_swizzle,
  349. sys: { sio: {
  350. route_tab: 0x0b0a090f,
  351. }}
  352. };
  353. ALIAS_MV(xl)
  354. #endif