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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. **  PCI Lower Bus Adapter (LBA) manager
  3. **
  4. ** (c) Copyright 1999,2000 Grant Grundler
  5. ** (c) Copyright 1999,2000 Hewlett-Packard Company
  6. **
  7. ** This program is free software; you can redistribute it and/or modify
  8. ** it under the terms of the GNU General Public License as published by
  9. **      the Free Software Foundation; either version 2 of the License, or
  10. **      (at your option) any later version.
  11. **
  12. **
  13. ** This module primarily provides access to PCI bus (config/IOport
  14. ** spaces) on platforms with an SBA/LBA chipset. A/B/C/J/L/N-class
  15. ** with 4 digit model numbers - eg C3000 (and A400...sigh).
  16. **
  17. ** LBA driver isn't as simple as the Dino driver because:
  18. **   (a) this chip has substantial bug fixes between revisions
  19. **       (Only one Dino bug has a software workaround :^(  )
  20. **   (b) has more options which we don't (yet) support (DMA hints, OLARD)
  21. **   (c) IRQ support lives in the I/O SAPIC driver (not with PCI driver)
  22. **   (d) play nicely with both PAT and "Legacy" PA-RISC firmware (PDC).
  23. **       (dino only deals with "Legacy" PDC)
  24. **
  25. ** LBA driver passes the I/O SAPIC HPA to the I/O SAPIC driver.
  26. ** (I/O SAPIC is integratd in the LBA chip).
  27. **
  28. ** FIXME: Add support to SBA and LBA drivers for DMA hint sets
  29. ** FIXME: Add support for PCI card hot-plug (OLARD).
  30. */
  31. #include <linux/delay.h>
  32. #include <linux/types.h>
  33. #include <linux/kernel.h>
  34. #include <linux/spinlock.h>
  35. #include <linux/init.h> /* for __init and __devinit */
  36. #include <linux/pci.h>
  37. #include <linux/ioport.h>
  38. #include <linux/slab.h>
  39. #include <linux/smp_lock.h>
  40. #include <asm/byteorder.h>
  41. #include <asm/irq.h> /* for struct irq_region support */
  42. #include <asm/pdc.h>
  43. #include <asm/pdcpat.h>
  44. #include <asm/page.h>
  45. #include <asm/segment.h>
  46. #include <asm/system.h>
  47. #include <asm/hardware.h> /* for register_driver() stuff */
  48. #include <asm/iosapic.h> /* for iosapic_register() */
  49. #include <asm/gsc.h> /* gsc_read/write stuff */
  50. #ifndef TRUE
  51. #define TRUE (1 == 1)
  52. #define FALSE (1 == 0)
  53. #endif
  54. #undef DEBUG_LBA /* general stuff */
  55. #undef DEBUG_LBA_PORT /* debug I/O Port access */
  56. #undef DEBUG_LBA_CFG /* debug Config Space Access (ie PCI Bus walk) */
  57. #undef DEBUG_LBA_PAT /* debug PCI Resource Mgt code - PDC PAT only */
  58. #ifdef DEBUG_LBA
  59. #define DBG(x...) printk(x)
  60. #else
  61. #define DBG(x...)
  62. #endif
  63. #ifdef DEBUG_LBA_PORT
  64. #define DBG_PORT(x...) printk(x)
  65. #else
  66. #define DBG_PORT(x...)
  67. #endif
  68. #ifdef DEBUG_LBA_CFG
  69. #define DBG_CFG(x...) printk(x)
  70. #else
  71. #define DBG_CFG(x...)
  72. #endif
  73. #ifdef DEBUG_LBA_PAT
  74. #define DBG_PAT(x...) printk(x)
  75. #else
  76. #define DBG_PAT(x...)
  77. #endif
  78. /*
  79. ** Config accessor functions only pass in the 8-bit bus number and not
  80. ** the 8-bit "PCI Segment" number. Each LBA will be assigned a PCI bus
  81. ** number based on what firmware wrote into the scratch register.
  82. **
  83. ** The "secondary" bus number is set to this before calling
  84. ** pci_register_ops(). If any PPB's are present, the scan will
  85. ** discover them and update the "secondary" and "subordinate"
  86. ** fields in the pci_bus structure.
  87. **
  88. ** Changes in the configuration *may* result in a different
  89. ** bus number for each LBA depending on what firmware does.
  90. */
  91. #define MODULE_NAME "lba"
  92. static int lba_driver_callback(struct hp_device *, struct pa_iodc_driver *);
  93. static struct pa_iodc_driver lba_drivers_for[]= {
  94.    {HPHW_BRIDGE, 0x782, 0x0, 0xa, 0,0,
  95. DRIVER_CHECK_HVERSION + 
  96. DRIVER_CHECK_SVERSION + DRIVER_CHECK_HWTYPE,
  97.                 MODULE_NAME, "tbd", (void *) lba_driver_callback},
  98.    {0,0,0,0,0,0,
  99.    0,
  100.    (char *) NULL, (char *) NULL, (void *) NULL}
  101. };
  102. #define LBA_FUNC_ID 0x0000 /* function id */
  103. #define LBA_FCLASS 0x0008 /* function class, bist, header, rev... */
  104. #define LBA_CAPABLE 0x0030 /* capabilities register */
  105. #define LBA_PCI_CFG_ADDR 0x0040 /* poke CFG address here */
  106. #define LBA_PCI_CFG_DATA 0x0048 /* read or write data here */
  107. #define LBA_PMC_MTLT 0x0050 /* Firmware sets this - read only. */
  108. #define LBA_FW_SCRATCH 0x0058 /* Firmware writes the PCI bus number here. */
  109. #define LBA_ERROR_ADDR 0x0070 /* On error, address gets logged here */
  110. #define LBA_ARB_MASK 0x0080 /* bit 0 enable arbitration. PAT/PDC enables */
  111. #define LBA_ARB_PRI 0x0088 /* firmware sets this. */
  112. #define LBA_ARB_MODE 0x0090 /* firmware sets this. */
  113. #define LBA_ARB_MTLT 0x0098 /* firmware sets this. */
  114. #define LBA_MOD_ID 0x0100 /* Module ID. PDC_PAT_CELL reports 4 */
  115. #define LBA_STAT_CTL 0x0108 /* Status & Control */
  116. #define   HF_ENABLE 0x40 /*    enable HF mode (default is -1 mode) */
  117. #define LBA_LMMIO_BASE 0x0200 /* < 4GB I/O address range */
  118. #define LBA_LMMIO_MASK 0x0208
  119. #define LBA_GMMIO_BASE 0x0210 /* > 4GB I/O address range */
  120. #define LBA_GMMIO_MASK 0x0218
  121. #define LBA_WLMMIO_BASE 0x0220 /* All < 4GB ranges under the same *SBA* */
  122. #define LBA_WLMMIO_MASK 0x0228
  123. #define LBA_WGMMIO_BASE 0x0230 /* All > 4GB ranges under the same *SBA* */
  124. #define LBA_WGMMIO_MASK 0x0238
  125. #define LBA_IOS_BASE 0x0240 /* I/O port space for this LBA */
  126. #define LBA_IOS_MASK 0x0248
  127. #define LBA_ELMMIO_BASE 0x0250 /* Extra LMMIO range */
  128. #define LBA_ELMMIO_MASK 0x0258
  129. #define LBA_EIOS_BASE 0x0260 /* Extra I/O port space */
  130. #define LBA_EIOS_MASK 0x0268
  131. #define LBA_DMA_CTL 0x0278 /* firmware sets this */
  132. /* RESET: ignore DMA stuff until we can measure performance */
  133. #define LBA_IBASE 0x0300 /* DMA support */
  134. #define LBA_IMASK 0x0308
  135. #define LBA_HINT_CFG 0x0310
  136. #define LBA_HINT_BASE 0x0380 /* 14 registers at every 8 bytes. */
  137. /* ERROR regs are needed for config cycle kluges */
  138. #define LBA_ERROR_CONFIG 0x0680
  139. #define LBA_ERROR_STATUS 0x0688
  140. #define LBA_IOSAPIC_BASE 0x800 /* Offset of IRQ logic */
  141. /* non-postable I/O port space, densely packed */
  142. #ifdef __LP64__
  143. #define LBA_ASTRO_PORT_BASE (0xfffffffffee00000UL)
  144. #else
  145. #define LBA_ASTRO_PORT_BASE (0xfee00000UL)
  146. #endif
  147. /*
  148. ** lba_device: Per instance Elroy data structure
  149. */
  150. struct lba_device {
  151. struct pci_hba_data hba;
  152. spinlock_t lba_lock;
  153. void *iosapic_obj;
  154. #ifdef __LP64__
  155. unsigned long lmmio_base;  /* PA_VIEW - fixup MEM addresses */
  156. unsigned long gmmio_base;  /* PA_VIEW - Not used (yet) */
  157. unsigned long iop_base;    /* PA_VIEW - for IO port accessor funcs */
  158. #endif
  159. int flags;       /* state/functionality enabled */
  160. int hw_rev;      /* HW revision of chip */
  161. };
  162. static u32 lba_t32;
  163. /*
  164. ** lba "flags"
  165. */
  166. #define LBA_FLAG_NO_DMA_DURING_CFG 0x01
  167. #define LBA_FLAG_SKIP_PROBE 0x10
  168. /* Tape Release 4 == hw_rev 5 */
  169. #define LBA_TR4PLUS(d)      ((d)->hw_rev > 0x4)
  170. #define LBA_DMA_DURING_CFG_DISABLED(d) ((d)->flags & LBA_FLAG_NO_DMA_DURING_CFG)
  171. #define LBA_SKIP_PROBE(d) ((d)->flags & LBA_FLAG_SKIP_PROBE)
  172. /* Looks nice and keeps the compiler happy */
  173. #define LBA_DEV(d) ((struct lba_device *) (d))
  174. /*
  175. ** Only allow 8 subsidiary busses per LBA
  176. ** Problem is the PCI bus numbering is globally shared.
  177. */
  178. #define LBA_MAX_NUM_BUSES 8
  179. /************************************
  180.  * LBA register read and write support
  181.  *
  182.  * BE WARNED: register writes are posted.
  183.  *  (ie follow writes which must reach HW with a read)
  184.  */
  185. #define READ_U8(addr)  gsc_readb(addr)
  186. #define READ_U16(addr) gsc_readw((u16 *) (addr))
  187. #define READ_U32(addr) gsc_readl((u32 *) (addr))
  188. #define WRITE_U8(value, addr) gsc_writeb(value, addr)
  189. #define WRITE_U16(value, addr) gsc_writew(value, (u16 *) (addr))
  190. #define WRITE_U32(value, addr) gsc_writel(value, (u32 *) (addr))
  191. #define READ_REG8(addr)  gsc_readb(addr)
  192. #define READ_REG16(addr) le16_to_cpu(gsc_readw((u16 *) (addr)))
  193. #define READ_REG32(addr) le32_to_cpu(gsc_readl((u32 *) (addr)))
  194. #define WRITE_REG8(value, addr) gsc_writeb(value, addr)
  195. #define WRITE_REG16(value, addr) gsc_writew(cpu_to_le16(value), (u16 *) (addr))
  196. #define WRITE_REG32(value, addr) gsc_writel(cpu_to_le32(value), (u32 *) (addr))
  197. #define LBA_CFG_TOK(bus,dfn) ((u32) ((bus)<<16 | (dfn)<<8))
  198. #define LBA_CFG_BUS(tok)  ((u8) ((tok)>>16))
  199. #define LBA_CFG_DEV(tok)  ((u8) ((tok)>>11) & 0x1f)
  200. #define LBA_CFG_FUNC(tok) ((u8) ((tok)>>8 ) & 0x7)
  201. #ifdef DEBUG_LBA
  202. /* Extract LBA (Rope) number from HPA */
  203. #define LBA_NUM(x)    ((((uintptr_t) x) >> 13) & 0xf)
  204. #endif /* DEBUG_LBA */
  205. #ifdef __LP64__
  206. /* PDC_PAT */
  207. static  unsigned long pdc_result[32] __attribute__ ((aligned (8))) = {0,0,0,0};
  208. #endif
  209. /*
  210. ** One time initialization to let the world know the LBA was found.
  211. ** This is the only routine which is NOT static.
  212. ** Must be called exactly once before pci_init().
  213. */
  214. void __init lba_init(void)
  215. {
  216. register_driver(lba_drivers_for);
  217. }
  218. static void
  219. lba_dump_res(struct resource *r, int d)
  220. {
  221. int i;
  222. if (NULL == r)
  223. return;
  224. printk("(%p)", r->parent);
  225. for (i = d; i ; --i) printk(" ");
  226. printk("%p [%lx,%lx]/%xn", r, r->start, r->end, (int) r->flags);
  227. lba_dump_res(r->child, d+2);
  228. lba_dump_res(r->sibling, d);
  229. }
  230. /*
  231. ** LBA rev 2.0, 2.1, 2.2, and 3.0 bus walks require a complex
  232. ** workaround for cfg cycles:
  233. ** -- preserve  LBA state
  234. ** -- LBA_FLAG_NO_DMA_DURING_CFG workaround
  235. ** -- turn on smart mode
  236. ** -- probe with config writes before doing config reads
  237. ** -- check ERROR_STATUS
  238. ** -- clear ERROR_STATUS
  239. ** -- restore LBA state
  240. **
  241. ** The workaround is only used for device discovery.
  242. */
  243. static int
  244. lba_device_present( u8 bus, u8 dfn, struct lba_device *d)
  245. {
  246. u8 first_bus = d->hba.hba_bus->secondary;
  247. u8 last_sub_bus = d->hba.hba_bus->subordinate;
  248. #if 0
  249. /* FIXME - see below in this function */
  250.         u8 dev = PCI_SLOT(dfn);
  251.         u8 func = PCI_FUNC(dfn);
  252. #endif
  253. ASSERT(bus >= first_bus);
  254. ASSERT(bus <= last_sub_bus);
  255. ASSERT((bus - first_bus) < LBA_MAX_NUM_BUSES);
  256. if ((bus < first_bus) ||
  257.     (bus > last_sub_bus) ||
  258.     ((bus - first_bus) >= LBA_MAX_NUM_BUSES))
  259. {
  260.     /* devices that fall into any of these cases won't get claimed */
  261.     return(FALSE);
  262. }
  263. #if 0
  264. /*
  265. ** FIXME: Need to implement code to fill the devices bitmap based
  266. ** on contents of the local pci_bus tree "data base".
  267. ** pci_register_ops() walks the bus for us and builds the tree.
  268. ** For now, always do the config cycle.
  269. */
  270. bus -= first_bus;
  271. return (((d->devices[bus][dev]) >> func) & 0x1);
  272. #else
  273. return TRUE;
  274. #endif
  275. }
  276. #define LBA_CFG_SETUP(d, tok) {
  277.     /* Save contents of error config register.  */
  278.     error_config = READ_REG32(d->hba.base_addr + LBA_ERROR_CONFIG);
  279.     /* Save contents of status control register.  */
  280.     status_control = READ_REG32(d->hba.base_addr + LBA_STAT_CTL);
  281.     /* For LBA rev 2.0, 2.1, 2.2, and 3.0, we must disable DMA
  282.     ** arbitration for full bus walks.
  283.     */
  284.     if (LBA_DMA_DURING_CFG_DISABLED(d)) {
  285. /* Save contents of arb mask register. */
  286. arb_mask = READ_REG32(d->hba.base_addr + LBA_ARB_MASK);
  287. /*
  288.  * Turn off all device arbitration bits (i.e. everything
  289.  * except arbitration enable bit).
  290.  */
  291. WRITE_REG32(0x1, d->hba.base_addr + LBA_ARB_MASK);
  292.     }
  293.     /*
  294.      * Set the smart mode bit so that master aborts don't cause
  295.      * LBA to go into PCI fatal mode (required).
  296.      */
  297.     WRITE_REG32(error_config | 0x20, d->hba.base_addr + LBA_ERROR_CONFIG);
  298. }
  299. #define LBA_CFG_PROBE(d, tok) {
  300.     /*
  301.      * Setup Vendor ID write and read back the address register
  302.      * to make sure that LBA is the bus master.
  303.      */
  304.     WRITE_REG32(tok | PCI_VENDOR_ID, (d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  305.     /*
  306.      * Read address register to ensure that LBA is the bus master,
  307.      * which implies that DMA traffic has stopped when DMA arb is off.
  308.      */
  309.     lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  310.     /*
  311.      * Generate a cfg write cycle (will have no affect on
  312.      * Vendor ID register since read-only).
  313.      */
  314.     WRITE_REG32(~0, (d)->hba.base_addr + LBA_PCI_CFG_DATA);
  315.     /*
  316.      * Make sure write has completed before proceeding further,
  317.      * i.e. before setting clear enable.
  318.      */
  319.     lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  320. }
  321. /*
  322.  * HPREVISIT:
  323.  *   -- Can't tell if config cycle got the error.
  324.  *
  325.  * OV bit is broken until rev 4.0, so can't use OV bit and
  326.  * LBA_ERROR_LOG_ADDR to tell if error belongs to config cycle.
  327.  *
  328.  * As of rev 4.0, no longer need the error check.
  329.  *
  330.  *   -- Even if we could tell, we still want to return -1
  331.  * for **ANY** error (not just master abort).
  332.  *
  333.  *   -- Only clear non-fatal errors (we don't want to bring
  334.  * LBA out of pci-fatal mode).
  335.  *
  336.  * Actually, there is still a race in which
  337.  * we could be clearing a fatal error.  We will
  338.  * live with this during our real mode bus walk
  339.  * until rev 4.0 (no driver activity during
  340.  * real mode bus walk).  The real mode bus walk
  341.  * has race conditions concerning the use of
  342.  * smart mode as well.
  343.  */
  344. #define LBA_MASTER_ABORT_ERROR 0xc
  345. #define LBA_FATAL_ERROR 0x10
  346. #define LBA_CFG_MASTER_ABORT_CHECK(d, base, tok, error) {
  347.     u32 error_status = 0;
  348.     /*
  349.      * Set clear enable (CE) bit. Unset by HW when new
  350.      * errors are logged -- LBA HW ERS section 14.3.3).
  351.      */
  352.     WRITE_REG32(status_control | 0x20, base + LBA_STAT_CTL);
  353.     error_status = READ_REG32(base + LBA_ERROR_STATUS);
  354.     if ((error_status & 0x1f) != 0) {
  355. /*
  356.  * Fail the config read request.
  357.  */
  358. error = 1;
  359. if ((error_status & LBA_FATAL_ERROR) == 0) {
  360.     /*
  361.      * Clear error status (if fatal bit not set) by setting
  362.      * clear error log bit (CL).
  363.      */
  364.     WRITE_REG32(status_control | 0x10, base + LBA_STAT_CTL);
  365. }
  366.     }
  367. }
  368. #define LBA_CFG_TR4_ADDR_SETUP(d, addr) 
  369.     WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR)
  370. #define LBA_CFG_ADDR_SETUP(d, addr) {
  371.     WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  372.     /*
  373.      * HPREVISIT:
  374.      *       -- Potentially could skip this once DMA bug fixed.
  375.      *
  376.      * Read address register to ensure that LBA is the bus master,
  377.      * which implies that DMA traffic has stopped when DMA arb is off.
  378.      */
  379.     lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  380. }
  381. #define LBA_CFG_RESTORE(d, base) {
  382.     /*
  383.      * Restore status control register (turn off clear enable).
  384.      */
  385.     WRITE_REG32(status_control, base + LBA_STAT_CTL);
  386.     /*
  387.      * Restore error config register (turn off smart mode).
  388.      */
  389.     WRITE_REG32(error_config, base + LBA_ERROR_CONFIG);
  390.     if (LBA_DMA_DURING_CFG_DISABLED(d)) {
  391. /*
  392.  * Restore arb mask register (reenables DMA arbitration).
  393.  */
  394. WRITE_REG32(arb_mask, base + LBA_ARB_MASK);
  395.     }
  396. }
  397. static unsigned int
  398. lba_rd_cfg( struct lba_device *d, u32 tok, u8 reg, u32 size)
  399. {
  400. u32 data = ~0;
  401. int error = 0;
  402. u32 arb_mask = 0; /* used by LBA_CFG_SETUP/RESTORE */
  403. u32 error_config = 0; /* used by LBA_CFG_SETUP/RESTORE */
  404. u32 status_control = 0; /* used by LBA_CFG_SETUP/RESTORE */
  405. ASSERT((size == sizeof(u8)) ||
  406. (size == sizeof(u16)) ||
  407. (size == sizeof(u32)));
  408. if ((size != sizeof(u8)) &&
  409. (size != sizeof(u16)) &&
  410. (size != sizeof(u32))) {
  411. return(data);
  412. }
  413. LBA_CFG_SETUP(d, tok);
  414. LBA_CFG_PROBE(d, tok);
  415. LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
  416. if (!error) {
  417. LBA_CFG_ADDR_SETUP(d, tok | reg);
  418. switch (size) {
  419. case sizeof(u8):
  420. data = (u32) READ_REG8(d->hba.base_addr + LBA_PCI_CFG_DATA + (reg & 3));
  421. break;
  422. case sizeof(u16):
  423. data = (u32) READ_REG16(d->hba.base_addr + LBA_PCI_CFG_DATA + (reg & 2));
  424. break;
  425. case sizeof(u32):
  426. data = READ_REG32(d->hba.base_addr + LBA_PCI_CFG_DATA);
  427. break;
  428. default:
  429. break; /* leave data as -1 */
  430. }
  431. }
  432. LBA_CFG_RESTORE(d, d->hba.base_addr);
  433. return(data);
  434. }
  435. #define LBA_CFG_RD(size, mask) 
  436. static int lba_cfg_read##size (struct pci_dev *dev, int pos, u##size *data) 
  437. struct lba_device *d = LBA_DEV(dev->bus->sysdata); 
  438. u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; 
  439. u32 tok = LBA_CFG_TOK(local_bus,dev->devfn); 
  440.  
  441. if ((!LBA_TR4PLUS(d)) && (!LBA_SKIP_PROBE(d))) { 
  442. /* original - Generate config cycle on broken elroy 
  443.   with risk we will miss PCI bus errors. */ 
  444. *data = (u##size) lba_rd_cfg(d, tok, pos, sizeof(u##size)); 
  445. DBG_CFG(KERN_DEBUG "%s(%s+%2x) -> 0x%x (a)n", __FUNCTION__, dev->slot_name, pos, *data); 
  446. return(*data == (u##size) -1); 
  447.  
  448. if (LBA_SKIP_PROBE(d) && (!lba_device_present(dev->bus->secondary, dev->devfn, d))) 
  449. DBG_CFG(KERN_DEBUG "%s(%s+%2x) -> -1 (b)n", __FUNCTION__, dev->slot_name, pos, *data); 
  450. /* either don't want to look or know device isn't present. */ 
  451. *data = (u##size) -1; 
  452. return(0); 
  453.  
  454. /* Basic Algorithm 
  455. ** Should only get here on fully working LBA rev. 
  456. ** This is how simple the code should have been. 
  457. */ 
  458. LBA_CFG_TR4_ADDR_SETUP(d, tok | pos); 
  459. *data = READ_REG##size(d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & mask));
  460. DBG_CFG(KERN_DEBUG "%s(%s+%2x) -> 0x%x (c)n", __FUNCTION__, dev->slot_name, pos, *data);
  461. return(*data == (u##size) -1); 
  462. }
  463. LBA_CFG_RD( 8, 3) 
  464. LBA_CFG_RD(16, 2) 
  465. LBA_CFG_RD(32, 0) 
  466. static void
  467. lba_wr_cfg( struct lba_device *d, u32 tok, u8 reg, u32 data, u32 size)
  468. {
  469. int error = 0;
  470. u32 arb_mask = 0;
  471. u32 error_config = 0;
  472. u32 status_control = 0;
  473. ASSERT((size == sizeof(u8)) ||
  474. (size == sizeof(u16)) ||
  475. (size == sizeof(u32)));
  476. if ((size != sizeof(u8)) &&
  477. (size != sizeof(u16)) &&
  478. (size != sizeof(u32))) {
  479. return;
  480. }
  481. LBA_CFG_SETUP(d, tok);
  482. LBA_CFG_ADDR_SETUP(d, tok | reg);
  483. switch (size) {
  484. case sizeof(u8):
  485. WRITE_REG8((u8) data, d->hba.base_addr + LBA_PCI_CFG_DATA + (reg&3));
  486. break;
  487. case sizeof(u16):
  488. WRITE_REG16((u8) data, d->hba.base_addr + LBA_PCI_CFG_DATA +(reg&2));
  489. break;
  490. case sizeof(u32):
  491. WRITE_REG32(data, d->hba.base_addr + LBA_PCI_CFG_DATA);
  492. break;
  493. default:
  494. break;
  495. }
  496. LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
  497. LBA_CFG_RESTORE(d, d->hba.base_addr);
  498. }
  499. /*
  500.  * LBA 4.0 config write code implements non-postable semantics
  501.  * by doing a read of CONFIG ADDR after the write.
  502.  */
  503. #define LBA_CFG_WR(size, mask) 
  504. static int lba_cfg_write##size (struct pci_dev *dev, int pos, u##size data) 
  505. struct lba_device *d = LBA_DEV(dev->bus->sysdata); 
  506. u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; 
  507. u32 tok = LBA_CFG_TOK(local_bus,dev->devfn); 
  508.  
  509.   ASSERT((tok & 0xff) == 0); 
  510. ASSERT(pos < 0x100); 
  511.  
  512. if ((!LBA_TR4PLUS(d)) && (!LBA_SKIP_PROBE(d))) { 
  513. /* Original Workaround */ 
  514. lba_wr_cfg(d, tok, pos, (u32) data, sizeof(u##size)); 
  515. DBG_CFG(KERN_DEBUG "%s(%s+%2x) = 0x%x (a)n", __FUNCTION__, dev->slot_name, pos, data); 
  516. return 0; 
  517.  
  518. if (LBA_SKIP_PROBE(d) && (!lba_device_present(dev->bus->secondary, dev->devfn, d))) { 
  519. DBG_CFG(KERN_DEBUG "%s(%s+%2x) = 0x%x (b)n", __FUNCTION__, dev->slot_name, pos, data); 
  520. return 1; /* New Workaround */ 
  521.  
  522. DBG_CFG(KERN_DEBUG "%s(%s+%2x) = 0x%x (c)n", __FUNCTION__, dev->slot_name, pos, data); 
  523. /* Basic Algorithm */ 
  524. LBA_CFG_TR4_ADDR_SETUP(d, tok | pos); 
  525. WRITE_REG##size(data, d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & mask)); 
  526. lba_t32 = READ_REG32(d->hba.base_addr + LBA_PCI_CFG_ADDR); 
  527. return 0; 
  528. }
  529. LBA_CFG_WR( 8, 3) 
  530. LBA_CFG_WR(16, 2) 
  531. LBA_CFG_WR(32, 0) 
  532. static struct pci_ops lba_cfg_ops = {
  533.         lba_cfg_read8, lba_cfg_read16, lba_cfg_read32,
  534. lba_cfg_write8, lba_cfg_write16, lba_cfg_write32
  535. };
  536. static void
  537. lba_bios_init(void)
  538. {
  539. DBG(KERN_DEBUG MODULE_NAME ": lba_bios_initn");
  540. }
  541. #ifdef __LP64__
  542. /*
  543. ** Determine if a device is already configured.
  544. ** If so, reserve it resources.
  545. **
  546. ** Read PCI cfg command register and see if I/O or MMIO is enabled.
  547. ** PAT has to enable the devices it's using.
  548. **
  549. ** Note: resources are fixed up before we try to claim them.
  550. */
  551. static void
  552. lba_claim_dev_resources(struct pci_dev *dev)
  553. {
  554. u16 cmd;
  555. int i, srch_flags;
  556. (void) lba_cfg_read16(dev, PCI_COMMAND, &cmd);
  557. srch_flags  = (cmd & PCI_COMMAND_IO) ? IORESOURCE_IO : 0;
  558. if (cmd & PCI_COMMAND_MEMORY)
  559. srch_flags |= IORESOURCE_MEM;
  560. if (!srch_flags)
  561. return;
  562. for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
  563. if (dev->resource[i].flags & srch_flags) {
  564. pci_claim_resource(dev, i);
  565. DBG("   claimed %s %d [%lx,%lx]/%xn",
  566. dev->slot_name, i,
  567. dev->resource[i].start,
  568. dev->resource[i].end,
  569. (int) dev->resource[i].flags
  570. );
  571. }
  572. }
  573. }
  574. #endif
  575. /*
  576. ** The algorithm is generic code.
  577. ** But it needs to access local data structures to get the IRQ base.
  578. ** Could make this a "pci_fixup_irq(bus, region)" but not sure
  579. ** it's worth it.
  580. **
  581. ** Called by do_pci_scan_bus() immediately after each PCI bus is walked.
  582. ** Resources aren't allocated until recursive buswalk below HBA is completed.
  583. */
  584. static void
  585. lba_fixup_bus(struct pci_bus *bus)
  586. {
  587. struct list_head *ln;
  588.         struct pci_dev *dev;
  589. u16 fbb_enable = PCI_STATUS_FAST_BACK;
  590. u16 status;
  591. struct lba_device *ldev = LBA_DEV(bus->sysdata);
  592. #ifdef __LP64__
  593. int i;
  594. #endif
  595. DBG("lba_fixup_bus(0x%p) bus %d sysdata 0x%pn",
  596. bus, bus->secondary, bus->sysdata);
  597. /*
  598. ** Properly Setup MMIO resources for this bus.
  599. ** pci_alloc_primary_bus() mangles this.
  600. */
  601. if (NULL == bus->self) {
  602. int err;
  603. DBG("lba_fixup_bus() %s [%lx/%lx]/%xn",
  604. ldev->hba.io_space.name,
  605. ldev->hba.io_space.start,
  606. ldev->hba.io_space.end,
  607. (int) ldev->hba.io_space.flags);
  608. DBG("lba_fixup_bus() %s [%lx/%lx]/%xn",
  609. ldev->hba.mem_space.name,
  610. ldev->hba.mem_space.start,
  611. ldev->hba.mem_space.end,
  612. (int) ldev->hba.mem_space.flags);
  613. err = request_resource(&ioport_resource, &(ldev->hba.io_space));
  614. if (err < 0) {
  615. BUG();
  616. lba_dump_res(&ioport_resource, 2);
  617. }
  618. err = request_resource(&iomem_resource, &(ldev->hba.mem_space));
  619. if (err < 0) {
  620. BUG();
  621. lba_dump_res(&iomem_resource, 2);
  622. }
  623. bus->resource[0] = &(ldev->hba.io_space);
  624. bus->resource[1] = &(ldev->hba.mem_space);
  625. }
  626. list_for_each(ln, &bus->devices) {
  627. dev = pci_dev_b(ln);
  628. #ifdef __LP64__
  629. /*
  630. ** 0-5 are the "standard PCI regions"
  631. ** (see comments near PCI_NUM_RESOURCES in include/linux/pci.h)
  632. */
  633. for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
  634. struct resource *res = &(dev->resource[i]);
  635. if (res->flags & IORESOURCE_MEM) {
  636. /* "Globalize" PCI address */
  637. res->start |= ldev->lmmio_base;
  638. res->end   |= ldev->lmmio_base;
  639. }
  640. }
  641. #endif
  642. /*
  643. ** If one device does not support FBB transfers,
  644. ** No one on the bus can be allowed to use them.
  645. */
  646. (void) lba_cfg_read16(dev, PCI_STATUS, &status);
  647. fbb_enable &= status;
  648. #ifdef __LP64__
  649. if (pdc_pat) {
  650. /* Claim resources for PDC's devices */
  651. lba_claim_dev_resources(dev);
  652. }
  653. #endif /* __LP64__ */
  654.                 /*
  655. ** P2PB's have no IRQs. ignore them.
  656. */
  657. if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
  658. continue;
  659. /* Adjust INTERRUPT_LINE for this dev */
  660. iosapic_fixup_irq(LBA_DEV(bus->sysdata)->iosapic_obj, dev);
  661. }
  662. #if 0
  663. /* FIXME/REVISIT - finish figuring out to set FBB on both
  664. ** pbus_set_ranges() clobbers PCI_BRIDGE_CONTROL.
  665. ** Can't fixup here anyway....garr...
  666. */
  667. if (fbb_enable) {
  668. if (bus->self) {
  669. u8 control;
  670. /* enable on PPB */
  671. (void) lba_cfg_read8(bus->self, PCI_BRIDGE_CONTROL, &control);
  672. (void) lba_cfg_write8(bus->self, PCI_BRIDGE_CONTROL, control | PCI_STATUS_FAST_BACK);
  673. } else {
  674. /* enable on LBA */
  675. }
  676. fbb_enable = PCI_COMMAND_FAST_BACK;
  677. }
  678. /* Lastly enable FBB/PERR/SERR on all devices too */
  679. list_for_each(ln, &bus->devices) {
  680. (void) lba_cfg_read16(dev, PCI_COMMAND, &status);
  681. status |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR | fbb_enable;
  682. (void) lba_cfg_write16(dev, PCI_COMMAND, status);
  683. }
  684. #endif
  685. }
  686. struct pci_bios_ops lba_bios_ops = {
  687. lba_bios_init,
  688. lba_fixup_bus  /* void lba_fixup_bus(struct pci_bus *bus) */
  689. };
  690. /*******************************************************
  691. **
  692. ** LBA Sprockets "I/O Port" Space Accessor Functions
  693. **
  694. ** This set of accessor functions is intended for use with
  695. ** "legacy firmware" (ie Sprockets on Allegro/Forte boxes).
  696. **
  697. ** Many PCI devices don't require use of I/O port space (eg Tulip,
  698. ** NCR720) since they export the same registers to both MMIO and
  699. ** I/O port space. In general I/O port space is slower than
  700. ** MMIO since drivers are designed so PIO writes can be posted.
  701. **
  702. ********************************************************/
  703. #define LBA_PORT_IN(size, mask) 
  704. static u##size lba_astro_in##size (struct pci_hba_data *d, u16 addr) 
  705. u##size t; 
  706. ASSERT(bus != NULL); 
  707. DBG_PORT(KERN_DEBUG "%s(0x%p, 0x%x) ->", __FUNCTION__, bus, addr); 
  708. t = READ_REG##size(LBA_ASTRO_PORT_BASE + addr); 
  709. DBG_PORT(" 0x%xn", t); 
  710. return (t); 
  711. }
  712. LBA_PORT_IN( 8, 3)
  713. LBA_PORT_IN(16, 2)
  714. LBA_PORT_IN(32, 0)
  715. /*
  716. ** BUG X4107:  Ordering broken - DMA RD return can bypass PIO WR
  717. **
  718. ** Fixed in Elroy 2.2. The READ_U32(..., LBA_FUNC_ID) below is
  719. ** guarantee non-postable completion semantics - not avoid X4107.
  720. ** The READ_U32 only guarantees the write data gets to elroy but
  721. ** out to the PCI bus. We can't read stuff from I/O port space
  722. ** since we don't know what has side-effects. Attempting to read
  723. ** from configuration space would be suicidal given the number of
  724. ** bugs in that elroy functionality.
  725. **
  726. **      Description:
  727. **          DMA read results can improperly pass PIO writes (X4107).  The
  728. **          result of this bug is that if a processor modifies a location in
  729. **          memory after having issued PIO writes, the PIO writes are not
  730. **          guaranteed to be completed before a PCI device is allowed to see
  731. **          the modified data in a DMA read.
  732. **
  733. **          Note that IKE bug X3719 in TR1 IKEs will result in the same
  734. **          symptom.
  735. **
  736. **      Workaround:
  737. **          The workaround for this bug is to always follow a PIO write with
  738. **          a PIO read to the same bus before starting DMA on that PCI bus.
  739. **
  740. */
  741. #define LBA_PORT_OUT(size, mask) 
  742. static void lba_astro_out##size (struct pci_hba_data *d, u16 addr, u##size val) 
  743. ASSERT(bus != NULL); 
  744. DBG_PORT(KERN_DEBUG "%s(0x%p, 0x%x, 0x%x)n", __FUNCTION__, d, addr, val); 
  745. WRITE_REG##size(val, LBA_ASTRO_PORT_BASE + addr); 
  746. if (LBA_DEV(d)->hw_rev < 3) 
  747. lba_t32 = READ_U32(d->base_addr + LBA_FUNC_ID); 
  748. }
  749. LBA_PORT_OUT( 8, 3)
  750. LBA_PORT_OUT(16, 2)
  751. LBA_PORT_OUT(32, 0)
  752. static struct pci_port_ops lba_astro_port_ops = {
  753. lba_astro_in8, lba_astro_in16, lba_astro_in32,
  754. lba_astro_out8, lba_astro_out16, lba_astro_out32
  755. };
  756. #ifdef __LP64__
  757. #define PIOP_TO_GMMIO(lba, addr) 
  758. ((lba)->iop_base + (((addr)&0xFFFC)<<10) + ((addr)&3))
  759. /*******************************************************
  760. **
  761. ** LBA PAT "I/O Port" Space Accessor Functions
  762. **
  763. ** This set of accessor functions is intended for use with
  764. ** "PAT PDC" firmware (ie Prelude/Rhapsody/Piranha boxes).
  765. **
  766. ** This uses the PIOP space located in the first 64MB of GMMIO.
  767. ** Each rope gets a full 64*KB* (ie 4 bytes per page) this way.
  768. ** bits 1:0 stay the same.  bits 15:2 become 25:12.
  769. ** Then add the base and we can generate an I/O Port cycle.
  770. ********************************************************/
  771. #undef LBA_PORT_IN
  772. #define LBA_PORT_IN(size, mask) 
  773. static u##size lba_pat_in##size (struct pci_hba_data *l, u16 addr) 
  774. u##size t; 
  775. ASSERT(bus != NULL); 
  776. DBG_PORT(KERN_DEBUG "%s(0x%p, 0x%x) ->", __FUNCTION__, l, addr); 
  777. t = READ_REG##size(PIOP_TO_GMMIO(LBA_DEV(l), addr)); 
  778. DBG_PORT(" 0x%xn", t); 
  779. return (t); 
  780. }
  781. LBA_PORT_IN( 8, 3)
  782. LBA_PORT_IN(16, 2)
  783. LBA_PORT_IN(32, 0)
  784. #undef LBA_PORT_OUT
  785. #define LBA_PORT_OUT(size, mask) 
  786. static void lba_pat_out##size (struct pci_hba_data *l, u16 addr, u##size val) 
  787. void *where = (void *) PIOP_TO_GMMIO(LBA_DEV(l), addr); 
  788. ASSERT(bus != NULL); 
  789. DBG_PORT(KERN_DEBUG "%s(0x%p, 0x%x, 0x%x)n", __FUNCTION__, l, addr, val); 
  790. WRITE_REG##size(val, where); 
  791. /* flush the I/O down to the elroy at least */ 
  792. lba_t32 = READ_U32(l->base_addr + LBA_FUNC_ID); 
  793. }
  794. LBA_PORT_OUT( 8, 3)
  795. LBA_PORT_OUT(16, 2)
  796. LBA_PORT_OUT(32, 0)
  797. static struct pci_port_ops lba_pat_port_ops = {
  798. lba_pat_in8, lba_pat_in16, lba_pat_in32,
  799. lba_pat_out8, lba_pat_out16, lba_pat_out32
  800. };
  801. /*
  802. ** make range information from PDC available to PCI subsystem.
  803. ** We make the PDC call here in order to get the PCI bus range
  804. ** numbers. The rest will get forwarded in pcibios_fixup_bus().
  805. ** We don't have a struct pci_bus assigned to us yet.
  806. */
  807. static void
  808. lba_pat_resources( struct hp_device *d, struct lba_device *lba_dev)
  809. {
  810. pdc_pat_cell_mod_maddr_block_t pa_pdc_cell; /* PA_VIEW */
  811. #ifdef DONT_NEED_THIS_FOR_ASTRO
  812. pdc_pat_cell_mod_maddr_block_t io_pdc_cell; /* IO_VIEW */
  813. long io_count;
  814. #endif
  815. long status; /* PDC return status */
  816. long pa_count;
  817. int i;
  818. /* return cell module (IO view) */
  819. status = pdc_pat_cell_module(& pdc_result, d->pcell_loc, d->mod_index,
  820. PA_VIEW, & pa_pdc_cell);
  821. pa_count = pa_pdc_cell.mod[1];
  822. #ifdef DONT_NEED_THIS_FOR_ASTRO
  823. status |= pdc_pat_cell_module(& pdc_result, d->pcell_loc, d->mod_index,
  824. IO_VIEW, & io_pdc_cell);
  825. io_count = io_pdc_cell.mod[1];
  826. #endif
  827. /* We've already done this once for device discovery...*/
  828. if (status != PDC_RET_OK) {
  829. panic("pdc_pat_cell_module() call failed for LBA!n");
  830. }
  831. if (PAT_GET_ENTITY(pa_pdc_cell.mod_info) != PAT_ENTITY_LBA) {
  832. panic("pdc_pat_cell_module() entity returned != PAT_ENTITY_LBA!n");
  833. }
  834. /*
  835. ** Inspect the resources PAT tells us about
  836. */
  837. for (i = 0; i < pa_count; i++) {
  838. struct {
  839. unsigned long type;
  840. unsigned long start;
  841. unsigned long end; /* aka finish */
  842. } *p;
  843. struct resource *r;
  844. p = (void *) &(pa_pdc_cell.mod[2+i*3]);
  845. /* Convert the PAT range data to PCI "struct resource" */
  846. switch(p->type & 0xff) {
  847. case PAT_PBNUM:
  848. lba_dev->hba.bus_num.start = p->start;
  849. lba_dev->hba.bus_num.end   = p->end;
  850. break;
  851. case PAT_LMMIO:
  852. /* used to fix up pre-initialized MEM BARs */
  853. lba_dev->lmmio_base = p->start;
  854. r = &(lba_dev->hba.mem_space);
  855. r->name   = "LBA LMMIO";
  856. r->start  = p->start;
  857. r->end    = p->end;
  858. r->flags  = IORESOURCE_MEM;
  859. r->parent = r->sibling = r->child = NULL;
  860. break;
  861. case PAT_GMMIO:
  862. printk(KERN_WARNING MODULE_NAME
  863. " range[%d] : ignoring GMMIO (0x%lx)n",
  864. i, p->start);
  865. lba_dev->gmmio_base = p->start;
  866. break;
  867. case PAT_NPIOP:
  868. printk(KERN_WARNING MODULE_NAME
  869. " range[%d] : ignoring NPIOP (0x%lx)n",
  870. i, p->start);
  871. break;
  872. case PAT_PIOP:
  873. /*
  874. ** Postable I/O port space is per PCI host adapter.
  875. */
  876. /* save base of 64MB PIOP region */
  877. lba_dev->iop_base = p->start;
  878. r = &(lba_dev->hba.io_space);
  879. r->name   = "LBA I/O Port";
  880. r->start = lba_dev->hba.hba_num << 16;
  881. r->end   = r->start + 0xffffUL;
  882. r->flags  = IORESOURCE_IO;
  883. r->parent = r->sibling = r->child = NULL;
  884. break;
  885. default:
  886. printk(KERN_WARNING MODULE_NAME
  887. " range[%d] : unknown pat range type (0x%lx)n",
  888. i, p->type & 0xff);
  889. break;
  890. }
  891. }
  892. }
  893. #endif /* __LP64__ */
  894. static void
  895. lba_legacy_resources( struct hp_device *d, struct lba_device *lba_dev)
  896. {
  897. int lba_num;
  898. struct resource *r;
  899. #ifdef __LP64__
  900. /*
  901. ** Used to sign extend instead BAR values are only 32-bit.
  902. ** 64-bit BARs have the upper 32-bit's zero'd by firmware.
  903. ** "Sprockets" PDC initializes for 32-bit OS.
  904. */
  905. lba_dev->lmmio_base = 0xffffffff00000000UL;
  906. #endif
  907. /*
  908. ** With "legacy" firmware, the lowest byte of FW_SCRATCH
  909. ** represents bus->secondary and the second byte represents
  910. ** bus->subsidiary (i.e. highest PPB programmed by firmware).
  911. ** PCI bus walk *should* end up with the same result.
  912. ** FIXME: But we don't have sanity checks in PCI or LBA.
  913. */
  914. lba_num = READ_REG32(d->hpa + LBA_FW_SCRATCH);
  915. r = &(lba_dev->hba.bus_num);
  916. r->name = "LBA PCI Busses";
  917. r->start = lba_num & 0xff;
  918. r->end = (lba_num>>8) & 0xff;
  919. /* Set up local PCI Bus resources - we don't really need
  920. ** them for Legacy boxes but it's nice to see in /proc.
  921. */
  922. r = &(lba_dev->hba.mem_space);
  923. r->name  = "LBA PCI LMMIO";
  924. r->flags = IORESOURCE_MEM;
  925. r->start = READ_REG32(d->hpa + LBA_LMMIO_BASE);
  926. r->end   = r->start + ~ (READ_REG32(d->hpa + LBA_LMMIO_MASK));
  927. r = &(lba_dev->hba.io_space);
  928. r->name  = "LBA PCI I/O Ports";
  929. r->flags = IORESOURCE_IO;
  930. r->start = READ_REG32(d->hpa + LBA_IOS_BASE);
  931. r->end   = r->start + (READ_REG32(d->hpa + LBA_IOS_MASK) ^ 0xffff);
  932. lba_num = lba_dev->hba.hba_num << 16;
  933. r->start |= lba_num;
  934. r->end   |= lba_num;
  935. }
  936. /**************************************************************************
  937. **
  938. **   LBA initialization code (HW and SW)
  939. **
  940. **   o identify LBA chip itself
  941. **   o initialize LBA chip modes (HardFail)
  942. **   o FIXME: initialize DMA hints for reasonable defaults
  943. **   o enable configuration functions
  944. **   o call pci_register_ops() to discover devs (fixup/fixup_bus get invoked)
  945. **
  946. **************************************************************************/
  947. static void
  948. lba_hw_init(struct lba_device *d)
  949. {
  950. u32 stat;
  951. /* Set HF mode as the default (vs. -1 mode). */
  952.         stat = READ_REG32(d->hba.base_addr + LBA_STAT_CTL);
  953. WRITE_REG32(stat | HF_ENABLE, d->hba.base_addr + LBA_STAT_CTL);
  954. /*
  955. ** FIXME: Hint registers are programmed with default hint
  956. ** values by firmware. Hints should be sane even if we
  957. ** can't reprogram them the way drivers want.
  958. */
  959. }
  960. static void
  961. lba_common_init(struct lba_device *lba_dev)
  962. {
  963. pci_bios = &lba_bios_ops;
  964. pcibios_register_hba((struct pci_hba_data *)lba_dev);
  965. lba_dev->lba_lock = SPIN_LOCK_UNLOCKED;
  966. /*
  967. ** Set flags which depend on hw_rev
  968. */
  969. if (!LBA_TR4PLUS(lba_dev)) {
  970. lba_dev->flags |= LBA_FLAG_NO_DMA_DURING_CFG;
  971. }
  972. }
  973. /*
  974. ** Determine if lba should claim this chip (return 0) or not (return 1).
  975. ** If so, initialize the chip and tell other partners in crime they
  976. ** have work to do.
  977. */
  978. static __init int
  979. lba_driver_callback(struct hp_device *d, struct pa_iodc_driver *dri)
  980. {
  981. struct lba_device *lba_dev;
  982. struct pci_bus *lba_bus;
  983. u32 func_class;
  984. void *tmp_obj;
  985. /* from drivers/pci/setup-bus.c */
  986. extern void __init pbus_set_ranges(struct pci_bus *, struct pbus_set_ranges_data *);
  987. /* Read HW Rev First */
  988. func_class = READ_REG32(d->hpa + LBA_FCLASS);
  989. func_class &= 0xf;
  990. switch (func_class) {
  991. case 0: dri->version = "TR1.0"; break;
  992. case 1: dri->version = "TR2.0"; break;
  993. case 2: dri->version = "TR2.1"; break;
  994. case 3: dri->version = "TR2.2"; break;
  995. case 4: dri->version = "TR3.0"; break;
  996. case 5: dri->version = "TR4.0"; break;
  997. default: dri->version = "TR4+";
  998. }
  999. printk("%s version %s (0x%x) found at 0x%pn", dri->name, dri->version, func_class & 0xf, d->hpa);
  1000. /* Just in case we find some prototypes... */
  1001. if (func_class < 2) {
  1002. printk(KERN_WARNING "Can't support LBA older than TR2.1 "
  1003. "- continuing under adversity.n");
  1004. }
  1005. /*
  1006. ** Tell I/O SAPIC driver we have a IRQ handler/region.
  1007. */
  1008. tmp_obj = iosapic_register(d->hpa+LBA_IOSAPIC_BASE);
  1009. if (NULL == tmp_obj) {
  1010. /* iosapic may have failed. But more likely the
  1011. ** slot isn't occupied and thus has no IRT entries.
  1012. ** iosapic_register looks for this iosapic in the IRT
  1013. ** before bothering to allocating data structures
  1014. ** we don't need.
  1015. */
  1016. DBG(KERN_WARNING MODULE_NAME ": iosapic_register says not usedn");
  1017. return (1);
  1018. }
  1019. lba_dev = kmalloc(sizeof(struct lba_device), GFP_KERNEL);
  1020. if (NULL == lba_dev)
  1021. {
  1022. printk("lba_init_chip - couldn't alloc lba_devicen");
  1023. return(1);
  1024. }
  1025. memset(lba_dev, 0, sizeof(struct lba_device));
  1026. /* ---------- First : initialize data we already have --------- */
  1027. /*
  1028. ** Need hw_rev to adjust configuration space behavior.
  1029. ** LBA_TR4PLUS macro uses hw_rev field.
  1030. */
  1031. lba_dev->hw_rev = func_class;
  1032. lba_dev->hba.base_addr = d->hpa;  /* faster access */
  1033. lba_dev->iosapic_obj = tmp_obj;  /* save interrupt handle */
  1034. /* ------------ Second : initialize common stuff ---------- */
  1035. lba_common_init(lba_dev);
  1036. lba_hw_init(lba_dev);
  1037. /* ---------- Third : setup I/O Port and MMIO resources  --------- */
  1038. #ifdef __LP64__
  1039. if (pdc_pat) {
  1040. /* PDC PAT firmware uses PIOP region of GMMIO space. */
  1041. pci_port = &lba_pat_port_ops;
  1042. /* Go ask PDC PAT what resources this LBA has */
  1043. lba_pat_resources(d, lba_dev);
  1044. } else {
  1045. #endif
  1046. /* Sprockets PDC uses NPIOP region */
  1047. pci_port = &lba_astro_port_ops;
  1048. /* Poke the chip a bit for /proc output */
  1049. lba_legacy_resources(d, lba_dev);
  1050. #ifdef __LP64__
  1051. }
  1052. #endif
  1053. /* 
  1054. ** Tell PCI support another PCI bus was found.
  1055. ** Walks PCI bus for us too.
  1056. */
  1057. lba_bus = lba_dev->hba.hba_bus =
  1058. pci_scan_bus( lba_dev->hba.bus_num.start, &lba_cfg_ops, (void *) lba_dev);
  1059. #ifdef __LP64__
  1060. if (pdc_pat) {
  1061. /* determine window sizes needed by PCI-PCI bridges */
  1062. DBG_PAT("LBA pcibios_size_bridge()n");
  1063. pcibios_size_bridge(lba_bus, NULL);
  1064. /* assign resources to un-initialized devices */
  1065. DBG_PAT("LBA pcibios_assign_unassigned_resources()n");
  1066. pcibios_assign_unassigned_resources(lba_bus);
  1067. #ifdef DEBUG_LBA_PAT
  1068. DBG_PAT("nLBA PIOP resource treen");
  1069. lba_dump_res(&lba_dev->hba.io_space, 2);
  1070. DBG_PAT("nLBA LMMIO resource treen");
  1071. lba_dump_res(&lba_dev->hba.mem_space, 2);
  1072. #endif
  1073. /* program *all* PCI-PCI bridge range registers */
  1074. DBG_PAT("LBA pbus_set_ranges()n");
  1075. pbus_set_ranges(lba_bus, NULL);
  1076. }
  1077. #endif /* __LP64__ */
  1078. /*
  1079. ** Once PCI register ops has walked the bus, access to config
  1080. ** space is restricted. Avoids master aborts on config cycles.
  1081. ** Early LBA revs go fatal on *any* master abort.
  1082. */
  1083. if (!LBA_TR4PLUS(lba_dev)) {
  1084. lba_dev->flags |= LBA_FLAG_SKIP_PROBE;
  1085. }
  1086. /* Whew! Finally done! Tell services we got this one covered. */
  1087. return 0;
  1088. }
  1089. /*
  1090. ** Initialize the IBASE/IMASK registers for LBA (Elroy).
  1091. ** Only called from sba_iommu.c initialization sequence.
  1092. */
  1093. void lba_init_iregs(void *sba_hpa, u32 ibase, u32 imask)
  1094. {
  1095. extern struct pci_hba_data *hba_list; /* arch/parisc/kernel/pci.c */
  1096. struct pci_hba_data *lba;
  1097. imask <<= 2; /* adjust for hints - 2 more bits */
  1098. ASSERT((ibase & 0x003fffff) == 0);
  1099. ASSERT((imask & 0x003fffff) == 0);
  1100. /* FIXME: sba_hpa is intended to search some table to
  1101. **      determine which LBA's belong to the caller's SBA.
  1102. ** IS_ASTRO: just assume only one SBA for now.
  1103. */
  1104. ASSERT(NULL != hba_list);
  1105. DBG(KERN_DEBUG "%s() ibase 0x%x imask 0x%xn", __FUNCTION__, ibase, imask);
  1106. for (lba = hba_list; NULL != lba; lba = lba->next) {
  1107. DBG(KERN_DEBUG "%s() base_addr %pn", __FUNCTION__, lba->base_addr);
  1108. WRITE_REG32( imask, lba->base_addr + LBA_IMASK);
  1109. WRITE_REG32( ibase, lba->base_addr + LBA_IBASE);
  1110. }
  1111. DBG(KERN_DEBUG "%s() donen", __FUNCTION__);
  1112. }