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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. ** DINO manager
  3. **
  4. ** (c) Copyright 1999 Red Hat Software
  5. ** (c) Copyright 1999 SuSE GmbH
  6. ** (c) Copyright 1999,2000 Hewlett-Packard Company
  7. ** (c) Copyright 2000 Grant Grundler
  8. **
  9. ** This program is free software; you can redistribute it and/or modify
  10. ** it under the terms of the GNU General Public License as published by
  11. **      the Free Software Foundation; either version 2 of the License, or
  12. **      (at your option) any later version.
  13. **
  14. ** This module provides access to Dino PCI bus (config/IOport spaces)
  15. ** and helps manage Dino IRQ lines.
  16. **
  17. ** Dino interrupt handling is a bit complicated.
  18. ** Dino always writes to the broadcast EIR via irr0 for now.
  19. ** (BIG WARNING: using broadcast EIR is a really bad thing for SMP!)
  20. ** Only one processor interrupt is used for the 11 IRQ line 
  21. ** inputs to dino.
  22. **
  23. ** The different between Built-in Dino and Card-Mode
  24. ** dino is in chip initialization and pci device initialization.
  25. **
  26. ** Linux drivers can only use Card-Mode Dino if pci devices I/O port
  27. ** BARs are configured and used by the driver. Programming MMIO address 
  28. ** requires substantial knowledge of available Host I/O address ranges
  29. ** is currently not supported.  Port/Config accessor functions are the
  30. ** same. "BIOS" differences are handled within the existing routines.
  31. */
  32. /* Changes :
  33. ** 2001-06-14 : Clement Moyroud (moyroudc@esiee.fr)
  34. ** - added support for the integrated RS232. 
  35. */
  36. /*
  37. ** TODO: create a virtual address for each Dino HPA.
  38. **       GSC code might be able to do this since IODC data tells us
  39. **       how many pages are used. PCI subsystem could (must?) do this
  40. **       for PCI drivers devices which implement/use MMIO registers.
  41. */
  42. #include <linux/config.h>
  43. #include <linux/delay.h>
  44. #include <linux/types.h>
  45. #include <linux/kernel.h>
  46. #include <linux/pci.h>
  47. #include <linux/init.h>
  48. #include <linux/ioport.h>
  49. #include <linux/slab.h>
  50. #include <linux/interrupt.h> /* for struct irqaction */
  51. #include <linux/spinlock.h> /* for spinlock_t and prototypes */
  52. #include <asm/pdc.h>
  53. #include <asm/page.h>
  54. #include <asm/system.h>
  55. #include <asm/io.h>
  56. #include <asm/hardware.h>
  57. #include <asm/irq.h> /* for "gsc" irq functions */
  58. #include <asm/gsc.h>
  59. #undef DINO_DEBUG
  60. #ifdef DINO_DEBUG
  61. #define DBG(x...) printk(x)
  62. #else
  63. #define DBG(x...)
  64. #endif
  65. /*
  66. ** Config accessor functions only pass in the 8-bit bus number
  67. ** and not the 8-bit "PCI Segment" number. Each Dino will be
  68. ** assigned a PCI bus number based on "when" it's discovered.
  69. **
  70. ** The "secondary" bus number is set to this before calling
  71. ** pci_scan_bus(). If any PPB's are present, the scan will
  72. ** discover them and update the "secondary" and "subordinate"
  73. ** fields in Dino's pci_bus structure.
  74. **
  75. ** Changes in the configuration *will* result in a different
  76. ** bus number for each dino.
  77. */
  78. #define is_card_dino(id) ((id)->hw_type == HPHW_A_DMA)
  79. #define DINO_IAR0 0x004
  80. #define DINO_IODC_ADDR 0x008
  81. #define DINO_IODC_DATA_0 0x008
  82. #define DINO_IODC_DATA_1 0x008
  83. #define DINO_IRR0 0x00C
  84. #define DINO_IAR1 0x010
  85. #define DINO_IRR1 0x014
  86. #define DINO_IMR 0x018
  87. #define DINO_IPR 0x01C
  88. #define DINO_TOC_ADDR 0x020
  89. #define DINO_ICR 0x024
  90. #define DINO_ILR 0x028
  91. #define DINO_IO_COMMAND 0x030
  92. #define DINO_IO_STATUS 0x034
  93. #define DINO_IO_CONTROL 0x038
  94. #define DINO_IO_GSC_ERR_RESP 0x040
  95. #define DINO_IO_ERR_INFO 0x044
  96. #define DINO_IO_PCI_ERR_RESP 0x048
  97. #define DINO_IO_FBB_EN 0x05c
  98. #define DINO_IO_ADDR_EN 0x060
  99. #define DINO_PCI_ADDR 0x064
  100. #define DINO_CONFIG_DATA 0x068
  101. #define DINO_IO_DATA 0x06c
  102. #define DINO_MEM_DATA 0x070 /* Dino 3.x only */
  103. #define DINO_GSC2X_CONFIG 0x7b4
  104. #define DINO_GMASK 0x800
  105. #define DINO_PAMR 0x804
  106. #define DINO_PAPR 0x808
  107. #define DINO_DAMODE 0x80c
  108. #define DINO_PCICMD 0x810
  109. #define DINO_PCISTS 0x814
  110. #define DINO_MLTIM 0x81c
  111. #define DINO_BRDG_FEAT 0x820
  112. #define DINO_PCIROR 0x824
  113. #define DINO_PCIWOR 0x828
  114. #define DINO_TLTIM 0x830
  115. #define DINO_IRQS 11 /* bits 0-10 are architected */
  116. #define DINO_IRR_MASK 0x5ff /* only 10 bits are implemented */
  117. #define DINO_MASK_IRQ(x) (1<<(x))
  118. #define PCIINTA   0x001
  119. #define PCIINTB   0x002
  120. #define PCIINTC   0x004
  121. #define PCIINTD   0x008
  122. #define PCIINTE   0x010
  123. #define PCIINTF   0x020
  124. #define GSCEXTINT 0x040
  125. /* #define xxx       0x080 - bit 7 is "default" */
  126. /* #define xxx    0x100 - bit 8 not used */
  127. /* #define xxx    0x200 - bit 9 not used */
  128. #define RS232INT  0x400
  129. struct dino_device
  130. {
  131. struct pci_hba_data hba; /* 'C' inheritance - must be first */
  132. spinlock_t dinosaur_pen;
  133. unsigned long txn_addr; /* EIR addr to generate interrupt */ 
  134. u32 txn_data; /* EIR data assign to each dino */ 
  135. int irq;      /* Virtual IRQ dino uses */
  136. struct irq_region *dino_region;  /* region for this Dino */
  137. u32  imr; /* IRQ's which are enabled */ 
  138. #ifdef DINO_DEBUG
  139. unsigned int dino_irr0; /* save most recent IRQ line stat */ 
  140. #endif
  141. };
  142. /* Looks nice and keeps the compiler happy */
  143. #define DINO_DEV(d) ((struct dino_device *) d)
  144. /***********************************************
  145. **
  146. ** Dino Configuration Space Accessor Functions
  147. **
  148. ************************************************/
  149. #define le8_to_cpu(x) (x)
  150. #define cpu_to_le8(x) (x)
  151. #define DINO_CFG_TOK(bus,dfn,pos) ((u32) ((bus)<<16 | (dfn)<<8 | (pos)))
  152. #define DINO_CFG_RD(type, size, mask) 
  153. static int dino_cfg_read##size (struct pci_dev *dev, int pos, u##size *data) 
  154. struct dino_device *d = DINO_DEV(dev->sysdata); 
  155. u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; 
  156. u32 v = DINO_CFG_TOK(local_bus, dev->devfn, (pos&~3)); 
  157. unsigned long flags; 
  158. spin_lock_irqsave(&d->dinosaur_pen, flags); 
  159. /* tell HW which CFG address */ 
  160. gsc_writel(v, d->hba.base_addr + DINO_PCI_ADDR); 
  161. /* generate cfg read cycle */ 
  162. *data = le##size##_to_cpu(gsc_read##type(d->hba.base_addr+DINO_CONFIG_DATA+(pos&mask))); 
  163. spin_unlock_irqrestore(&d->dinosaur_pen, flags); 
  164. return 0; 
  165. }
  166. DINO_CFG_RD(b,  8, 3)
  167. DINO_CFG_RD(w, 16, 2)
  168. DINO_CFG_RD(l, 32, 0)
  169. /*
  170. ** Dino address stepping "feature":
  171. ** When address stepping, Dino attempts to drive the bus one cycle too soon
  172. ** even though the type of cycle (config vs. MMIO) might be different. 
  173. ** The read of Ven/Prod ID is harmless and avoids Dino's address stepping.
  174. */
  175. #define DINO_CFG_WR(type, size, mask) 
  176. static int dino_cfg_write##size (struct pci_dev *dev, int pos, u##size data) 
  177. struct dino_device *d = DINO_DEV(dev->sysdata);
  178. u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; 
  179. u32 v = DINO_CFG_TOK(local_bus, dev->devfn, (pos&~3)); 
  180. unsigned long flags; 
  181. spin_lock_irqsave(&d->dinosaur_pen, flags); 
  182. /* avoid address stepping feature */ 
  183. gsc_writel(v & 0xffffff00, d->hba.base_addr + DINO_PCI_ADDR); 
  184. (volatile int) gsc_readl(d->hba.base_addr + DINO_CONFIG_DATA); 
  185. /* tell HW which CFG address */ 
  186. gsc_writel(v, d->hba.base_addr + DINO_PCI_ADDR); 
  187. /* generate cfg read cycle */ 
  188. gsc_write##type(cpu_to_le##size(data), d->hba.base_addr+DINO_CONFIG_DATA+(pos&mask)); 
  189. spin_unlock_irqrestore(&d->dinosaur_pen, flags); 
  190. return 0; 
  191. }
  192. DINO_CFG_WR(b,  8, 3)
  193. DINO_CFG_WR(w, 16, 2)
  194. DINO_CFG_WR(l, 32, 0)
  195. static struct pci_ops dino_cfg_ops = {
  196. read_byte: dino_cfg_read8,
  197. read_word: dino_cfg_read16,
  198. read_dword: dino_cfg_read32,
  199. write_byte: dino_cfg_write8,
  200. write_word: dino_cfg_write16,
  201. write_dword: dino_cfg_write32
  202. };
  203. /*******************************************************
  204. **
  205. ** Dino "I/O Port" Space Accessor Functions
  206. **
  207. ** Many PCI devices don't require use of I/O port space (eg Tulip,
  208. ** NCR720) since they export the same registers to both MMIO and
  209. ** I/O port space.  Performance is going to stink if drivers use
  210. ** I/O port instead of MMIO.
  211. **
  212. ********************************************************/
  213. #define DINO_PORT_IN(type, size, mask) 
  214. static u##size dino_in##size (struct pci_hba_data *d, u16 addr) 
  215. u##size v; 
  216. unsigned long flags; 
  217. spin_lock_irqsave(&(DINO_DEV(d)->dinosaur_pen), flags); 
  218. /* tell HW which IO Port address */ 
  219. gsc_writel((u32) addr & ~3, d->base_addr + DINO_PCI_ADDR); 
  220. /* generate I/O PORT read cycle */ 
  221. v = gsc_read##type(d->base_addr+DINO_IO_DATA+(addr&mask)); 
  222. spin_unlock_irqrestore(&(DINO_DEV(d)->dinosaur_pen), flags); 
  223. return le##size##_to_cpu(v); 
  224. }
  225. DINO_PORT_IN(b,  8, 3)
  226. DINO_PORT_IN(w, 16, 2)
  227. DINO_PORT_IN(l, 32, 0)
  228. #define DINO_PORT_OUT(type, size, mask) 
  229. static void dino_out##size (struct pci_hba_data *d, u16 addr, u##size val) 
  230. unsigned long flags; 
  231. spin_lock_irqsave(&(DINO_DEV(d)->dinosaur_pen), flags); 
  232. /* tell HW which CFG address */ 
  233. gsc_writel((u32) addr, d->base_addr + DINO_PCI_ADDR); 
  234. /* generate cfg write cycle */ 
  235. gsc_write##type(cpu_to_le##size(val), d->base_addr+DINO_IO_DATA+(addr&mask)); 
  236. spin_unlock_irqrestore(&(DINO_DEV(d)->dinosaur_pen), flags); 
  237. }
  238. DINO_PORT_OUT(b,  8, 3)
  239. DINO_PORT_OUT(w, 16, 2)
  240. DINO_PORT_OUT(l, 32, 0)
  241. struct pci_port_ops dino_port_ops = {
  242. inb: dino_in8,
  243. inw: dino_in16,
  244. inl: dino_in32,
  245. outb: dino_out8,
  246. outw: dino_out16,
  247. outl: dino_out32
  248. };
  249. static void
  250. dino_mask_irq(void *irq_dev, int irq)
  251. {
  252. struct dino_device *dino_dev = DINO_DEV(irq_dev);
  253. DBG(KERN_WARNING "%s(0x%p, %d)n", __FUNCTION__, irq_dev, irq);
  254. if (NULL == irq_dev || irq > DINO_IRQS || irq < 0) {
  255. printk(KERN_WARNING "%s(0x%lx, %d) - not a dino irq?n",
  256. __FUNCTION__, (long) irq_dev, irq);
  257. BUG();
  258. } else {
  259. /*
  260. ** Clear the matching bit in the IMR register
  261. */
  262. dino_dev->imr &= ~(DINO_MASK_IRQ(irq));
  263. gsc_writel(dino_dev->imr, dino_dev->hba.base_addr+DINO_IMR);
  264. }
  265. }
  266. static void
  267. dino_unmask_irq(void *irq_dev, int irq)
  268. {
  269. struct dino_device *dino_dev = DINO_DEV(irq_dev);
  270. u32 tmp;
  271. DBG(KERN_WARNING "%s(0x%p, %d)n", __FUNCTION__, irq_dev, irq);
  272. if (NULL == irq_dev || irq > DINO_IRQS) {
  273. printk(KERN_WARNING "%s(): %d not a dino irq?n",
  274. __FUNCTION__, irq);
  275. BUG();
  276. return;
  277. }
  278. /* set the matching bit in the IMR register */
  279. dino_dev->imr |= DINO_MASK_IRQ(irq);          /* used in dino_isr() */
  280. gsc_writel( dino_dev->imr, dino_dev->hba.base_addr+DINO_IMR);
  281. /* Emulate "Level Triggered" Interrupt
  282. ** Basically, a driver is blowing it if the IRQ line is asserted
  283. ** while the IRQ is disabled.  But tulip.c seems to do that....
  284. ** Give 'em a kluge award and a nice round of applause!
  285. **
  286. ** The gsc_write will generate an interrupt which invokes dino_isr().
  287. ** dino_isr() will read IPR and find nothing. But then catch this
  288. ** when it also checks ILR.
  289. */
  290. tmp = gsc_readl(dino_dev->hba.base_addr+DINO_ILR);
  291. if (tmp & DINO_MASK_IRQ(irq)) {
  292. DBG(KERN_WARNING "%s(): IRQ asserted! (ILR 0x%x)n",
  293. __FUNCTION__, tmp);
  294. gsc_writel(dino_dev->txn_data, dino_dev->txn_addr);
  295. }
  296. }
  297. static void
  298. dino_enable_irq(void *irq_dev, int irq)
  299. {
  300. struct dino_device *dino_dev = DINO_DEV(irq_dev);
  301. /*
  302. ** clear pending IRQ bits
  303. **
  304. ** This does NOT change ILR state!
  305. ** See comments in dino_unmask_irq() for ILR usage.
  306. */
  307. gsc_readl(dino_dev->hba.base_addr+DINO_IPR);
  308. dino_unmask_irq(irq_dev, irq);
  309. }
  310. static struct irq_region_ops dino_irq_ops = {
  311. disable_irq: dino_mask_irq, /* ??? */
  312. enable_irq: dino_enable_irq, 
  313. mask_irq: dino_mask_irq,
  314. unmask_irq: dino_unmask_irq
  315. };
  316. /*
  317.  * Handle a Processor interrupt generated by Dino.
  318.  *
  319.  * ilr_loop counter is a kluge to prevent a "stuck" IRQ line from
  320.  * wedging the CPU. Could be removed or made optional at some point.
  321.  */
  322. static void
  323. dino_isr(int irq, void *intr_dev, struct pt_regs *regs)
  324. {
  325. struct dino_device *dino_dev = DINO_DEV(intr_dev);
  326. u32 mask;
  327. int ilr_loop = 100;
  328. extern void do_irq(struct irqaction *a, int i, struct pt_regs *p);
  329. /* read and acknowledge pending interrupts */
  330. #ifdef DINO_DEBUG
  331. dino_dev->dino_irr0 =
  332. #endif
  333. mask = gsc_readl(dino_dev->hba.base_addr+DINO_IRR0) & DINO_IRR_MASK;
  334. ilr_again:
  335. while (mask)
  336. {
  337. int irq;
  338. /*
  339.  * Perform a binary search on set bits.
  340.  * `Less than Fatal' and PS2 interupts aren't supported.
  341.  */
  342. if (mask & 0xf) {
  343. if (mask & 0x3) {
  344. irq = (mask & 0x1) ? 0 : 1; /* PCI INT A, B */
  345. } else {
  346. irq = (mask & 0x4) ? 2 : 3; /* PCI INT C, D */
  347. }
  348. } else {
  349. if (mask & 0x30) {
  350. irq = (mask & 0x10) ? 4 : 5; /* PCI INT E, F */
  351. } else {
  352. irq = (mask & 0x40) ? 6 : 10; /* GSC, RS232 */
  353. }
  354. }
  355. mask &= ~(1<<irq);
  356. DBG(KERN_WARNING "%s(%x, %p) mask %0xn",
  357. __FUNCTION__, irq, intr_dev, mask);
  358. do_irq(&dino_dev->dino_region->action[irq],
  359. dino_dev->dino_region->data.irqbase + irq,
  360. regs);
  361. }
  362. /* Support for level triggered IRQ lines.
  363. ** 
  364. ** Dropping this support would make this routine *much* faster.
  365. ** But since PCI requires level triggered IRQ line to share lines...
  366. ** device drivers may assume lines are level triggered (and not
  367. ** edge triggered like EISA/ISA can be).
  368. */
  369. mask = gsc_readl(dino_dev->hba.base_addr+DINO_ILR) & dino_dev->imr;
  370. if (mask) {
  371. if (--ilr_loop > 0)
  372. goto ilr_again;
  373. printk("Dino %lx: stuck interrupt %dn", dino_dev->hba.base_addr, mask);
  374. }
  375. }
  376. static int dino_choose_irq(struct parisc_device *dev)
  377. {
  378. int irq = -1;
  379. switch (dev->id.sversion) {
  380. case 0x00084: irq =  8; break; /* PS/2 */
  381. case 0x0008c: irq = 10; break; /* RS232 */
  382. case 0x00096: irq =  8; break; /* PS/2 */
  383. }
  384. return irq;
  385. }
  386. static void __init
  387. dino_bios_init(void)
  388. {
  389. DBG("dino_bios_initn");
  390. }
  391. /*
  392.  * dino_card_setup - Set up the memory space for a Dino in card mode.
  393.  * @bus: the bus under this dino
  394.  *
  395.  * Claim an 8MB chunk of unused IO space and call the generic PCI routines
  396.  * to set up the addresses of the devices on this bus.
  397.  */
  398. #define _8MB 0x00800000UL
  399. static void __init
  400. dino_card_setup(struct pci_bus *bus, unsigned long base_addr)
  401. {
  402. int i;
  403. struct dino_device *dino_dev = DINO_DEV(bus->sysdata);
  404. struct resource *res;
  405. res = &dino_dev->hba.lmmio_space;
  406. res->flags = IORESOURCE_MEM;
  407. if (ccio_allocate_resource(dino_dev->hba.dev, res, _8MB,
  408. (unsigned long) 0xfffffffff0000000UL | _8MB,
  409. 0xffffffffffffffffUL &~ _8MB, _8MB,
  410. NULL, NULL) < 0) {
  411. printk(KERN_WARNING "Dino: Failed to allocate memory regionn");
  412. return;
  413. }
  414. bus->resource[1] = res;
  415. bus->resource[0] = &(dino_dev->hba.io_space);
  416. /* Now tell dino what range it has */
  417. for (i = 1; i < 31; i++) {
  418. if (res->start == (0xfffffffff0000000UL | i * _8MB))
  419. break;
  420. }
  421. gsc_writel(1 << i, base_addr + DINO_IO_ADDR_EN);
  422. pcibios_assign_unassigned_resources(bus);
  423. }
  424. static void __init
  425. dino_card_fixup(struct pci_dev *dev)
  426. {
  427. u8 irq_pin;
  428. /*
  429. ** REVISIT: card-mode PCI-PCI expansion chassis do exist.
  430. **         Not sure they were ever productized.
  431. **         Die here since we'll die later in dino_inb() anyway.
  432. */
  433. if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
  434. panic("Card-Mode Dino: PCI-PCI Bridge not supportedn");
  435. }
  436. /*
  437. ** Set Latency Timer to 0xff (not a shared bus)
  438. ** Set CACHELINE_SIZE.
  439. */
  440. dino_cfg_write16(dev, PCI_CACHE_LINE_SIZE, 0xff00 | L1_CACHE_BYTES/4); 
  441. /*
  442. ** Program INT_LINE for card-mode devices.
  443. ** The cards are hardwired according to this algorithm.
  444. ** And it doesn't matter if PPB's are present or not since
  445. ** the IRQ lines bypass the PPB.
  446. **
  447. ** "-1" converts INTA-D (1-4) to PCIINTA-D (0-3) range.
  448. ** The additional "-1" adjusts for skewing the IRQ<->slot.
  449. */
  450. dino_cfg_read8(dev, PCI_INTERRUPT_PIN, &irq_pin); 
  451. dev->irq = (irq_pin + PCI_SLOT(dev->devfn) - 1) % 4 ;
  452. /* Shouldn't really need to do this but it's in case someone tries
  453. ** to bypass PCI services and look at the card themselves.
  454. */
  455. dino_cfg_write8(dev, PCI_INTERRUPT_LINE, dev->irq); 
  456. }
  457. static void __init
  458. dino_fixup_bus(struct pci_bus *bus)
  459. {
  460. struct list_head *ln;
  461.         struct pci_dev *dev;
  462.         struct dino_device *dino_dev = DINO_DEV(bus->sysdata);
  463. int port_base = HBA_PORT_BASE(dino_dev->hba.hba_num);
  464. DBG(KERN_WARNING "%s(0x%p) bus %d sysdata 0x%pn",
  465. __FUNCTION__, bus, bus->secondary, bus->sysdata);
  466. /* Firmware doesn't set up card-mode dino, so we have to */
  467. if (is_card_dino(&dino_dev->hba.dev->id))
  468. dino_card_setup(bus, dino_dev->hba.base_addr);
  469. /* If this is a PCI-PCI Bridge, read the window registers etc */
  470. if (bus->self)
  471. pci_read_bridge_bases(bus);
  472. list_for_each(ln, &bus->devices) {
  473. int i;
  474. dev = pci_dev_b(ln);
  475. if (is_card_dino(&dino_dev->hba.dev->id))
  476. dino_card_fixup(dev);
  477. /*
  478. ** P2PB's only have 2 BARs, no IRQs.
  479. ** I'd like to just ignore them for now.
  480. */
  481. if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
  482. continue;
  483. /* Adjust the I/O Port space addresses */
  484. for (i = 0; i < PCI_NUM_RESOURCES; i++) {
  485. struct resource *res = &dev->resource[i];
  486. if (res->flags & IORESOURCE_IO) {
  487. res->start |= port_base;
  488. res->end |= port_base;
  489. }
  490. #ifdef __LP64__
  491. /* Sign Extend MMIO addresses */
  492. else if (res->flags & IORESOURCE_MEM) {
  493. res->start |= 0xffffffff00000000UL;
  494. res->end   |= 0xffffffff00000000UL;
  495. }
  496. #endif
  497. }
  498. /* Adjust INT_LINE for that busses region */
  499. dev->irq = dino_dev->dino_region->data.irqbase + dev->irq;
  500. }
  501. }
  502. struct pci_bios_ops dino_bios_ops = {
  503. dino_bios_init,
  504. dino_fixup_bus /* void dino_fixup_bus(struct pci_bus *bus) */
  505. };
  506. /*
  507.  * Initialise a DINO controller chip
  508.  */
  509. static void __init
  510. dino_card_init(struct dino_device *dino_dev)
  511. {
  512. u32 brdg_feat = 0x00784e05;
  513. gsc_writel(0x00000000, dino_dev->hba.base_addr+DINO_GMASK);
  514. gsc_writel(0x00000001, dino_dev->hba.base_addr+DINO_IO_FBB_EN);
  515. gsc_writel(0x00000000, dino_dev->hba.base_addr+DINO_ICR);
  516. #if 1
  517. /* REVISIT - should be a runtime check (eg if (CPU_IS_PCX_L) ...) */
  518. /*
  519. ** PCX-L processors don't support XQL like Dino wants it.
  520. ** PCX-L2 ignore XQL signal and it doesn't matter.
  521. */
  522. brdg_feat &= ~0x4; /* UXQL */
  523. #endif
  524. gsc_writel( brdg_feat, dino_dev->hba.base_addr+DINO_BRDG_FEAT);
  525. /*
  526. ** Don't enable address decoding until we know which I/O range
  527. ** currently is available from the host. Only affects MMIO
  528. ** and not I/O port space.
  529. */
  530. gsc_writel(0x00000000, dino_dev->hba.base_addr+DINO_IO_ADDR_EN);
  531. gsc_writel(0x00000000, dino_dev->hba.base_addr+DINO_DAMODE);
  532. gsc_writel(0x00222222, dino_dev->hba.base_addr+DINO_PCIROR);
  533. gsc_writel(0x00222222, dino_dev->hba.base_addr+DINO_PCIWOR);
  534. gsc_writel(0x00000040, dino_dev->hba.base_addr+DINO_MLTIM);
  535. gsc_writel(0x00000080, dino_dev->hba.base_addr+DINO_IO_CONTROL);
  536. gsc_writel(0x0000008c, dino_dev->hba.base_addr+DINO_TLTIM);
  537. /* Disable PAMR before writing PAPR */
  538. gsc_writel(0x0000007e, dino_dev->hba.base_addr+DINO_PAMR);
  539. gsc_writel(0x0000007f, dino_dev->hba.base_addr+DINO_PAPR);
  540. gsc_writel(0x00000000, dino_dev->hba.base_addr+DINO_PAMR);
  541. /*
  542. ** Dino ERS encourages enabling FBB (0x6f).
  543. ** We can't until we know *all* devices below us can support it.
  544. ** (Something in device configuration header tells us).
  545. */
  546. gsc_writel(0x0000004f, dino_dev->hba.base_addr+DINO_PCICMD);
  547. /* Somewhere, the PCI spec says give devices 1 second
  548. ** to recover from the #RESET being de-asserted.
  549. ** Experience shows most devices only need 10ms.
  550. ** This short-cut speeds up booting significantly.
  551. */
  552. mdelay(pci_post_reset_delay);
  553. }
  554. static int __init
  555. dino_bridge_init(struct dino_device *dino_dev, const char *name)
  556. {
  557. unsigned long io_addr, bpos;
  558. int result;
  559. struct resource *res;
  560. /*
  561.  * Decoding IO_ADDR_EN only works for Built-in Dino
  562.  * since PDC has already initialized this.
  563.  */
  564. io_addr = gsc_readl(dino_dev->hba.base_addr + DINO_IO_ADDR_EN);
  565. if (io_addr == 0) {
  566. printk(KERN_WARNING "%s: No PCI devices enabled.n", name);
  567. return -ENODEV;
  568. }
  569. for (bpos = 0; (io_addr & (1 << bpos)) == 0; bpos++)
  570. ;
  571. res = &dino_dev->hba.lmmio_space;
  572. res->flags = IORESOURCE_MEM;
  573. res->start = (unsigned long)(signed int)(0xf0000000 | (bpos << 23));
  574. res->end = res->start + 8 * 1024 * 1024 - 1;
  575. result = ccio_request_resource(dino_dev->hba.dev, res);
  576. if (result < 0) {
  577. printk(KERN_ERR "%s: failed to claim PCI Bus address space!n", name);
  578. return result;
  579. }
  580. return 0;
  581. }
  582. static int __init dino_common_init(struct parisc_device *dev,
  583. struct dino_device *dino_dev, const char *name)
  584. {
  585. int status;
  586. u32 eim;
  587. struct gsc_irq gsc_irq;
  588. struct resource *res;
  589. pcibios_register_hba(&dino_dev->hba);
  590. pci_bios = &dino_bios_ops;   /* used by pci_scan_bus() */
  591. pci_port = &dino_port_ops;
  592. /*
  593. ** Note: SMP systems can make use of IRR1/IAR1 registers
  594. **   But it won't buy much performance except in very
  595. **   specific applications/configurations. Note Dino
  596. **   still only has 11 IRQ input lines - just map some of them
  597. **   to a different processor.
  598. */
  599. dino_dev->irq = gsc_alloc_irq(&gsc_irq);
  600. dino_dev->txn_addr = gsc_irq.txn_addr;
  601. dino_dev->txn_data = gsc_irq.txn_data;
  602. eim = ((u32) gsc_irq.txn_addr) | gsc_irq.txn_data;
  603. /* 
  604. ** Dino needs a PA "IRQ" to get a processor's attention.
  605. ** arch/parisc/kernel/irq.c returns an EIRR bit.
  606. */
  607. if (dino_dev->irq < 0) {
  608. printk(KERN_WARNING "%s: gsc_alloc_irq() failedn", name);
  609. return 1;
  610. }
  611. status = request_irq(dino_dev->irq, dino_isr, 0, name, dino_dev);
  612. if (status) {
  613. printk(KERN_WARNING "%s: request_irq() failed with %dn", 
  614. name, status);
  615. return 1;
  616. }
  617. /*
  618. ** Tell generic interrupt support we have 11 bits which need
  619. ** be checked in the interrupt handler.
  620. */
  621. dino_dev->dino_region = alloc_irq_region(DINO_IRQS, &dino_irq_ops,
  622. name, dino_dev);
  623. if (NULL == dino_dev->dino_region) {
  624. printk(KERN_WARNING "%s: alloc_irq_region() failedn", name);
  625. return 1;
  626. }
  627. /* Support the serial port which is sometimes attached on built-in
  628.  * Dino / Cujo chips.
  629.  */
  630. fixup_child_irqs(dev, dino_dev->dino_region->data.irqbase,
  631. dino_choose_irq);
  632. /*
  633. ** This enables DINO to generate interrupts when it sees
  634. ** any of it's inputs *change*. Just asserting an IRQ
  635. ** before it's enabled (ie unmasked) isn't good enough.
  636. */
  637. gsc_writel(eim, dino_dev->hba.base_addr+DINO_IAR0);
  638. /*
  639. ** Some platforms don't clear Dino's IRR0 register at boot time.
  640. ** Reading will clear it now.
  641. */
  642. gsc_readl(dino_dev->hba.base_addr+DINO_IRR0);
  643. /* allocate I/O Port resource region */
  644. res = &dino_dev->hba.io_space;
  645. if (dev->id.hversion == 0x680 || is_card_dino(&dev->id)) {
  646. res->name = "Dino I/O Port";
  647.         dino_dev->hba.lmmio_space.name = "Dino LMMIO";
  648. } else {
  649. res->name = "Cujo I/O Port";
  650.         dino_dev->hba.lmmio_space.name = "Cujo LMMIO";
  651. }
  652. res->start = HBA_PORT_BASE(dino_dev->hba.hba_num);
  653. res->end = res->start + (HBA_PORT_SPACE_SIZE - 1);
  654. res->flags = IORESOURCE_IO; /* do not mark it busy ! */
  655. if (request_resource(&ioport_resource, res) < 0) {
  656. printk(KERN_ERR "%s: request I/O Port region failed 0x%lx/%lx (hpa 0x%lx)n",
  657. name, res->start, res->end, dino_dev->hba.base_addr);
  658. return 1;
  659. }
  660. return 0;
  661. }
  662. #define CUJO_RAVEN_ADDR 0xfffffffff1000000UL
  663. #define CUJO_FIREHAWK_ADDR 0xfffffffff1604000UL
  664. #define CUJO_RAVEN_BADPAGE 0x01003000UL
  665. #define CUJO_FIREHAWK_BADPAGE 0x01607000UL
  666. static const char *dino_vers[] = {
  667. "2.0",
  668. "2.1",
  669. "3.0",
  670. "3.1"
  671. };
  672. static const char *cujo_vers[] = {
  673. "1.0",
  674. "2.0"
  675. };
  676. void ccio_cujo20_fixup(struct parisc_device *dev, u32 iovp);
  677. /*
  678. ** Determine if dino should claim this chip (return 0) or not (return 1).
  679. ** If so, initialize the chip appropriately (card-mode vs bridge mode).
  680. ** Much of the initialization is common though.
  681. */
  682. static int __init
  683. dino_driver_callback(struct parisc_device *dev)
  684. {
  685. struct dino_device *dino_dev; // Dino specific control struct
  686. const char *version = "unknown";
  687. const char *name = "Dino";
  688. int is_cujo = 0;
  689. if (is_card_dino(&dev->id)) {
  690. version = "3.x (card mode)";
  691. } else {
  692. if(dev->id.hversion == 0x680) {
  693. if (dev->id.hversion_rev < 4) {
  694. version = dino_vers[dev->id.hversion_rev];
  695. }
  696. } else {
  697. name = "Cujo";
  698. is_cujo = 1;
  699. if (dev->id.hversion_rev < 2) {
  700. version = cujo_vers[dev->id.hversion_rev];
  701. }
  702. }
  703. }
  704. printk("%s version %s found at 0x%lxn", name, version, dev->hpa);
  705. if (!request_mem_region(dev->hpa, PAGE_SIZE, name)) {
  706. printk(KERN_ERR "DINO: Hey! Someone took my MMIO space (0x%ld)!n",
  707. dev->hpa);
  708. return 1;
  709. }
  710. /* Check for bugs */
  711. if (is_cujo && dev->id.hversion_rev == 1) {
  712. #ifdef CONFIG_IOMMU_CCIO
  713. printk(KERN_WARNING "Enabling Cujo 2.0 bug workaroundn");
  714. if (dev->hpa == CUJO_RAVEN_ADDR) {
  715. ccio_cujo20_fixup(dev->parent, CUJO_RAVEN_BADPAGE);
  716. } else if (dev->hpa == CUJO_FIREHAWK_ADDR) {
  717. ccio_cujo20_fixup(dev->parent, CUJO_FIREHAWK_BADPAGE);
  718. } else {
  719. printk("Don't recognise Cujo at address 0x%lx, not enabling workaroundn", dev->hpa);
  720. }
  721. #endif
  722. } else if (!is_cujo && !is_card_dino(&dev->id) &&
  723. dev->id.hversion_rev < 3) {
  724. printk(KERN_WARNING
  725. "The GSCtoPCI (Dino hrev %d) bus converter found may exhibitn"
  726. "data corruption.  See Service Note Numbers: A4190A-01, A4191A-01.n"
  727. "Systems shipped after Aug 20, 1997 will not exhibit this problem.n"
  728. "Models affected: C180, C160, C160L, B160L, and B132L workstations.nn",
  729. dev->id.hversion_rev);
  730. /* REVISIT: why are C200/C240 listed in the README table but not
  731. **   "Models affected"? Could be an omission in the original literature.
  732. */
  733. }
  734. dino_dev = kmalloc(sizeof(struct dino_device), GFP_KERNEL);
  735. if (!dino_dev) {
  736. printk("dino_init_chip - couldn't alloc dino_devicen");
  737. return 1;
  738. }
  739. memset(dino_dev, 0, sizeof(struct dino_device));
  740. dino_dev->hba.dev = dev;
  741. dino_dev->hba.base_addr = dev->hpa;  /* faster access */
  742. dino_dev->hba.lmmio_space_offset = 0; /* CPU addrs == bus addrs */
  743. dino_dev->dinosaur_pen = SPIN_LOCK_UNLOCKED;
  744. dino_dev->hba.iommu = ccio_get_iommu(dev);
  745. if (is_card_dino(&dev->id)) {
  746. dino_card_init(dino_dev);
  747. } else {
  748. dino_bridge_init(dino_dev, name);
  749. }
  750. if (dino_common_init(dev, dino_dev, name))
  751. return 1;
  752. /*
  753. ** It's not used to avoid chicken/egg problems
  754. ** with configuration accessor functions.
  755. */
  756. dino_dev->hba.hba_bus = pci_scan_bus(dino_dev->hba.hba_num,
  757. &dino_cfg_ops, dino_dev);
  758. return 0;
  759. }
  760. /*
  761.  * Normally, we would just test sversion.  But the Elroy PCI adapter has
  762.  * the same sversion as Dino, so we have to check hversion as well.
  763.  * Unfortunately, the J2240 PDC reports the wrong hversion for the first
  764.  * Dino, so we have to test for Dino, Cujo and Dino-in-a-J2240.
  765.  */
  766. static struct parisc_device_id dino_tbl[] = {
  767. { HPHW_A_DMA, HVERSION_REV_ANY_ID, 0x004, 0x0009D }, /* Card-mode Dino. */
  768. { HPHW_A_DMA, HVERSION_REV_ANY_ID, 0x444, 0x08080 }, /* Same card in a 715.  Bug? */
  769. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, 0x680, 0xa }, /* Bridge-mode Dino */
  770. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, 0x682, 0xa }, /* Bridge-mode Cujo */
  771. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, 0x05d, 0xa }, /* Dino in a J2240 */
  772. { 0, }
  773. };
  774. static struct parisc_driver dino_driver = {
  775. name: "Dino",
  776. id_table: dino_tbl,
  777. probe: dino_driver_callback,
  778. };
  779. /*
  780.  * One time initialization to let the world know Dino is here.
  781.  * This is the only routine which is NOT static.
  782.  * Must be called exactly once before pci_init().
  783.  */
  784. int __init dino_init(void)
  785. {
  786. register_parisc_driver(&dino_driver);
  787. return 0;
  788. }