lba_pci.c 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652
  1. /*
  2. **
  3. ** PCI Lower Bus Adapter (LBA) manager
  4. **
  5. ** (c) Copyright 1999,2000 Grant Grundler
  6. ** (c) Copyright 1999,2000 Hewlett-Packard Company
  7. **
  8. ** This program is free software; you can redistribute it and/or modify
  9. ** it under the terms of the GNU General Public License as published by
  10. ** the Free Software Foundation; either version 2 of the License, or
  11. ** (at your option) any later version.
  12. **
  13. **
  14. ** This module primarily provides access to PCI bus (config/IOport
  15. ** spaces) on platforms with an SBA/LBA chipset. A/B/C/J/L/N-class
  16. ** with 4 digit model numbers - eg C3000 (and A400...sigh).
  17. **
  18. ** LBA driver isn't as simple as the Dino driver because:
  19. ** (a) this chip has substantial bug fixes between revisions
  20. ** (Only one Dino bug has a software workaround :^( )
  21. ** (b) has more options which we don't (yet) support (DMA hints, OLARD)
  22. ** (c) IRQ support lives in the I/O SAPIC driver (not with PCI driver)
  23. ** (d) play nicely with both PAT and "Legacy" PA-RISC firmware (PDC).
  24. ** (dino only deals with "Legacy" PDC)
  25. **
  26. ** LBA driver passes the I/O SAPIC HPA to the I/O SAPIC driver.
  27. ** (I/O SAPIC is integratd in the LBA chip).
  28. **
  29. ** FIXME: Add support to SBA and LBA drivers for DMA hint sets
  30. ** FIXME: Add support for PCI card hot-plug (OLARD).
  31. */
  32. #include <linux/delay.h>
  33. #include <linux/types.h>
  34. #include <linux/kernel.h>
  35. #include <linux/spinlock.h>
  36. #include <linux/init.h> /* for __init */
  37. #include <linux/pci.h>
  38. #include <linux/ioport.h>
  39. #include <linux/slab.h>
  40. #include <asm/byteorder.h>
  41. #include <asm/pdc.h>
  42. #include <asm/pdcpat.h>
  43. #include <asm/page.h>
  44. #include <asm/ropes.h>
  45. #include <asm/hardware.h> /* for register_parisc_driver() stuff */
  46. #include <asm/parisc-device.h>
  47. #include <asm/io.h> /* read/write stuff */
  48. #undef DEBUG_LBA /* general stuff */
  49. #undef DEBUG_LBA_PORT /* debug I/O Port access */
  50. #undef DEBUG_LBA_CFG /* debug Config Space Access (ie PCI Bus walk) */
  51. #undef DEBUG_LBA_PAT /* debug PCI Resource Mgt code - PDC PAT only */
  52. #undef FBB_SUPPORT /* Fast Back-Back xfers - NOT READY YET */
  53. #ifdef DEBUG_LBA
  54. #define DBG(x...) printk(x)
  55. #else
  56. #define DBG(x...)
  57. #endif
  58. #ifdef DEBUG_LBA_PORT
  59. #define DBG_PORT(x...) printk(x)
  60. #else
  61. #define DBG_PORT(x...)
  62. #endif
  63. #ifdef DEBUG_LBA_CFG
  64. #define DBG_CFG(x...) printk(x)
  65. #else
  66. #define DBG_CFG(x...)
  67. #endif
  68. #ifdef DEBUG_LBA_PAT
  69. #define DBG_PAT(x...) printk(x)
  70. #else
  71. #define DBG_PAT(x...)
  72. #endif
  73. /*
  74. ** Config accessor functions only pass in the 8-bit bus number and not
  75. ** the 8-bit "PCI Segment" number. Each LBA will be assigned a PCI bus
  76. ** number based on what firmware wrote into the scratch register.
  77. **
  78. ** The "secondary" bus number is set to this before calling
  79. ** pci_register_ops(). If any PPB's are present, the scan will
  80. ** discover them and update the "secondary" and "subordinate"
  81. ** fields in the pci_bus structure.
  82. **
  83. ** Changes in the configuration *may* result in a different
  84. ** bus number for each LBA depending on what firmware does.
  85. */
  86. #define MODULE_NAME "LBA"
  87. /* non-postable I/O port space, densely packed */
  88. #define LBA_PORT_BASE (PCI_F_EXTEND | 0xfee00000UL)
  89. static void __iomem *astro_iop_base __read_mostly;
  90. static u32 lba_t32;
  91. /* lba flags */
  92. #define LBA_FLAG_SKIP_PROBE 0x10
  93. #define LBA_SKIP_PROBE(d) ((d)->flags & LBA_FLAG_SKIP_PROBE)
  94. /* Looks nice and keeps the compiler happy */
  95. #define LBA_DEV(d) ((struct lba_device *) (d))
  96. /*
  97. ** Only allow 8 subsidiary busses per LBA
  98. ** Problem is the PCI bus numbering is globally shared.
  99. */
  100. #define LBA_MAX_NUM_BUSES 8
  101. /************************************
  102. * LBA register read and write support
  103. *
  104. * BE WARNED: register writes are posted.
  105. * (ie follow writes which must reach HW with a read)
  106. */
  107. #define READ_U8(addr) __raw_readb(addr)
  108. #define READ_U16(addr) __raw_readw(addr)
  109. #define READ_U32(addr) __raw_readl(addr)
  110. #define WRITE_U8(value, addr) __raw_writeb(value, addr)
  111. #define WRITE_U16(value, addr) __raw_writew(value, addr)
  112. #define WRITE_U32(value, addr) __raw_writel(value, addr)
  113. #define READ_REG8(addr) readb(addr)
  114. #define READ_REG16(addr) readw(addr)
  115. #define READ_REG32(addr) readl(addr)
  116. #define READ_REG64(addr) readq(addr)
  117. #define WRITE_REG8(value, addr) writeb(value, addr)
  118. #define WRITE_REG16(value, addr) writew(value, addr)
  119. #define WRITE_REG32(value, addr) writel(value, addr)
  120. #define LBA_CFG_TOK(bus,dfn) ((u32) ((bus)<<16 | (dfn)<<8))
  121. #define LBA_CFG_BUS(tok) ((u8) ((tok)>>16))
  122. #define LBA_CFG_DEV(tok) ((u8) ((tok)>>11) & 0x1f)
  123. #define LBA_CFG_FUNC(tok) ((u8) ((tok)>>8 ) & 0x7)
  124. /*
  125. ** Extract LBA (Rope) number from HPA
  126. ** REVISIT: 16 ropes for Stretch/Ike?
  127. */
  128. #define ROPES_PER_IOC 8
  129. #define LBA_NUM(x) ((((unsigned long) x) >> 13) & (ROPES_PER_IOC-1))
  130. static void
  131. lba_dump_res(struct resource *r, int d)
  132. {
  133. int i;
  134. if (NULL == r)
  135. return;
  136. printk(KERN_DEBUG "(%p)", r->parent);
  137. for (i = d; i ; --i) printk(" ");
  138. printk(KERN_DEBUG "%p [%lx,%lx]/%lx\n", r,
  139. (long)r->start, (long)r->end, r->flags);
  140. lba_dump_res(r->child, d+2);
  141. lba_dump_res(r->sibling, d);
  142. }
  143. /*
  144. ** LBA rev 2.0, 2.1, 2.2, and 3.0 bus walks require a complex
  145. ** workaround for cfg cycles:
  146. ** -- preserve LBA state
  147. ** -- prevent any DMA from occurring
  148. ** -- turn on smart mode
  149. ** -- probe with config writes before doing config reads
  150. ** -- check ERROR_STATUS
  151. ** -- clear ERROR_STATUS
  152. ** -- restore LBA state
  153. **
  154. ** The workaround is only used for device discovery.
  155. */
  156. static int lba_device_present(u8 bus, u8 dfn, struct lba_device *d)
  157. {
  158. u8 first_bus = d->hba.hba_bus->busn_res.start;
  159. u8 last_sub_bus = d->hba.hba_bus->busn_res.end;
  160. if ((bus < first_bus) ||
  161. (bus > last_sub_bus) ||
  162. ((bus - first_bus) >= LBA_MAX_NUM_BUSES)) {
  163. return 0;
  164. }
  165. return 1;
  166. }
  167. #define LBA_CFG_SETUP(d, tok) { \
  168. /* Save contents of error config register. */ \
  169. error_config = READ_REG32(d->hba.base_addr + LBA_ERROR_CONFIG); \
  170. \
  171. /* Save contents of status control register. */ \
  172. status_control = READ_REG32(d->hba.base_addr + LBA_STAT_CTL); \
  173. \
  174. /* For LBA rev 2.0, 2.1, 2.2, and 3.0, we must disable DMA \
  175. ** arbitration for full bus walks. \
  176. */ \
  177. /* Save contents of arb mask register. */ \
  178. arb_mask = READ_REG32(d->hba.base_addr + LBA_ARB_MASK); \
  179. \
  180. /* \
  181. * Turn off all device arbitration bits (i.e. everything \
  182. * except arbitration enable bit). \
  183. */ \
  184. WRITE_REG32(0x1, d->hba.base_addr + LBA_ARB_MASK); \
  185. \
  186. /* \
  187. * Set the smart mode bit so that master aborts don't cause \
  188. * LBA to go into PCI fatal mode (required). \
  189. */ \
  190. WRITE_REG32(error_config | LBA_SMART_MODE, d->hba.base_addr + LBA_ERROR_CONFIG); \
  191. }
  192. #define LBA_CFG_PROBE(d, tok) { \
  193. /* \
  194. * Setup Vendor ID write and read back the address register \
  195. * to make sure that LBA is the bus master. \
  196. */ \
  197. WRITE_REG32(tok | PCI_VENDOR_ID, (d)->hba.base_addr + LBA_PCI_CFG_ADDR);\
  198. /* \
  199. * Read address register to ensure that LBA is the bus master, \
  200. * which implies that DMA traffic has stopped when DMA arb is off. \
  201. */ \
  202. lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
  203. /* \
  204. * Generate a cfg write cycle (will have no affect on \
  205. * Vendor ID register since read-only). \
  206. */ \
  207. WRITE_REG32(~0, (d)->hba.base_addr + LBA_PCI_CFG_DATA); \
  208. /* \
  209. * Make sure write has completed before proceeding further, \
  210. * i.e. before setting clear enable. \
  211. */ \
  212. lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
  213. }
  214. /*
  215. * HPREVISIT:
  216. * -- Can't tell if config cycle got the error.
  217. *
  218. * OV bit is broken until rev 4.0, so can't use OV bit and
  219. * LBA_ERROR_LOG_ADDR to tell if error belongs to config cycle.
  220. *
  221. * As of rev 4.0, no longer need the error check.
  222. *
  223. * -- Even if we could tell, we still want to return -1
  224. * for **ANY** error (not just master abort).
  225. *
  226. * -- Only clear non-fatal errors (we don't want to bring
  227. * LBA out of pci-fatal mode).
  228. *
  229. * Actually, there is still a race in which
  230. * we could be clearing a fatal error. We will
  231. * live with this during our initial bus walk
  232. * until rev 4.0 (no driver activity during
  233. * initial bus walk). The initial bus walk
  234. * has race conditions concerning the use of
  235. * smart mode as well.
  236. */
  237. #define LBA_MASTER_ABORT_ERROR 0xc
  238. #define LBA_FATAL_ERROR 0x10
  239. #define LBA_CFG_MASTER_ABORT_CHECK(d, base, tok, error) { \
  240. u32 error_status = 0; \
  241. /* \
  242. * Set clear enable (CE) bit. Unset by HW when new \
  243. * errors are logged -- LBA HW ERS section 14.3.3). \
  244. */ \
  245. WRITE_REG32(status_control | CLEAR_ERRLOG_ENABLE, base + LBA_STAT_CTL); \
  246. error_status = READ_REG32(base + LBA_ERROR_STATUS); \
  247. if ((error_status & 0x1f) != 0) { \
  248. /* \
  249. * Fail the config read request. \
  250. */ \
  251. error = 1; \
  252. if ((error_status & LBA_FATAL_ERROR) == 0) { \
  253. /* \
  254. * Clear error status (if fatal bit not set) by setting \
  255. * clear error log bit (CL). \
  256. */ \
  257. WRITE_REG32(status_control | CLEAR_ERRLOG, base + LBA_STAT_CTL); \
  258. } \
  259. } \
  260. }
  261. #define LBA_CFG_TR4_ADDR_SETUP(d, addr) \
  262. WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR);
  263. #define LBA_CFG_ADDR_SETUP(d, addr) { \
  264. WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
  265. /* \
  266. * Read address register to ensure that LBA is the bus master, \
  267. * which implies that DMA traffic has stopped when DMA arb is off. \
  268. */ \
  269. lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
  270. }
  271. #define LBA_CFG_RESTORE(d, base) { \
  272. /* \
  273. * Restore status control register (turn off clear enable). \
  274. */ \
  275. WRITE_REG32(status_control, base + LBA_STAT_CTL); \
  276. /* \
  277. * Restore error config register (turn off smart mode). \
  278. */ \
  279. WRITE_REG32(error_config, base + LBA_ERROR_CONFIG); \
  280. /* \
  281. * Restore arb mask register (reenables DMA arbitration). \
  282. */ \
  283. WRITE_REG32(arb_mask, base + LBA_ARB_MASK); \
  284. }
  285. static unsigned int
  286. lba_rd_cfg(struct lba_device *d, u32 tok, u8 reg, u32 size)
  287. {
  288. u32 data = ~0U;
  289. int error = 0;
  290. u32 arb_mask = 0; /* used by LBA_CFG_SETUP/RESTORE */
  291. u32 error_config = 0; /* used by LBA_CFG_SETUP/RESTORE */
  292. u32 status_control = 0; /* used by LBA_CFG_SETUP/RESTORE */
  293. LBA_CFG_SETUP(d, tok);
  294. LBA_CFG_PROBE(d, tok);
  295. LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
  296. if (!error) {
  297. void __iomem *data_reg = d->hba.base_addr + LBA_PCI_CFG_DATA;
  298. LBA_CFG_ADDR_SETUP(d, tok | reg);
  299. switch (size) {
  300. case 1: data = (u32) READ_REG8(data_reg + (reg & 3)); break;
  301. case 2: data = (u32) READ_REG16(data_reg+ (reg & 2)); break;
  302. case 4: data = READ_REG32(data_reg); break;
  303. }
  304. }
  305. LBA_CFG_RESTORE(d, d->hba.base_addr);
  306. return(data);
  307. }
  308. static int elroy_cfg_read(struct pci_bus *bus, unsigned int devfn, int pos, int size, u32 *data)
  309. {
  310. struct lba_device *d = LBA_DEV(parisc_walk_tree(bus->bridge));
  311. u32 local_bus = (bus->parent == NULL) ? 0 : bus->busn_res.start;
  312. u32 tok = LBA_CFG_TOK(local_bus, devfn);
  313. void __iomem *data_reg = d->hba.base_addr + LBA_PCI_CFG_DATA;
  314. if ((pos > 255) || (devfn > 255))
  315. return -EINVAL;
  316. /* FIXME: B2K/C3600 workaround is always use old method... */
  317. /* if (!LBA_SKIP_PROBE(d)) */ {
  318. /* original - Generate config cycle on broken elroy
  319. with risk we will miss PCI bus errors. */
  320. *data = lba_rd_cfg(d, tok, pos, size);
  321. DBG_CFG("%s(%x+%2x) -> 0x%x (a)\n", __func__, tok, pos, *data);
  322. return 0;
  323. }
  324. if (LBA_SKIP_PROBE(d) && !lba_device_present(bus->busn_res.start, devfn, d)) {
  325. DBG_CFG("%s(%x+%2x) -> -1 (b)\n", __func__, tok, pos);
  326. /* either don't want to look or know device isn't present. */
  327. *data = ~0U;
  328. return(0);
  329. }
  330. /* Basic Algorithm
  331. ** Should only get here on fully working LBA rev.
  332. ** This is how simple the code should have been.
  333. */
  334. LBA_CFG_ADDR_SETUP(d, tok | pos);
  335. switch(size) {
  336. case 1: *data = READ_REG8 (data_reg + (pos & 3)); break;
  337. case 2: *data = READ_REG16(data_reg + (pos & 2)); break;
  338. case 4: *data = READ_REG32(data_reg); break;
  339. }
  340. DBG_CFG("%s(%x+%2x) -> 0x%x (c)\n", __func__, tok, pos, *data);
  341. return 0;
  342. }
  343. static void
  344. lba_wr_cfg(struct lba_device *d, u32 tok, u8 reg, u32 data, u32 size)
  345. {
  346. int error = 0;
  347. u32 arb_mask = 0;
  348. u32 error_config = 0;
  349. u32 status_control = 0;
  350. void __iomem *data_reg = d->hba.base_addr + LBA_PCI_CFG_DATA;
  351. LBA_CFG_SETUP(d, tok);
  352. LBA_CFG_ADDR_SETUP(d, tok | reg);
  353. switch (size) {
  354. case 1: WRITE_REG8 (data, data_reg + (reg & 3)); break;
  355. case 2: WRITE_REG16(data, data_reg + (reg & 2)); break;
  356. case 4: WRITE_REG32(data, data_reg); break;
  357. }
  358. LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
  359. LBA_CFG_RESTORE(d, d->hba.base_addr);
  360. }
  361. /*
  362. * LBA 4.0 config write code implements non-postable semantics
  363. * by doing a read of CONFIG ADDR after the write.
  364. */
  365. static int elroy_cfg_write(struct pci_bus *bus, unsigned int devfn, int pos, int size, u32 data)
  366. {
  367. struct lba_device *d = LBA_DEV(parisc_walk_tree(bus->bridge));
  368. u32 local_bus = (bus->parent == NULL) ? 0 : bus->busn_res.start;
  369. u32 tok = LBA_CFG_TOK(local_bus,devfn);
  370. if ((pos > 255) || (devfn > 255))
  371. return -EINVAL;
  372. if (!LBA_SKIP_PROBE(d)) {
  373. /* Original Workaround */
  374. lba_wr_cfg(d, tok, pos, (u32) data, size);
  375. DBG_CFG("%s(%x+%2x) = 0x%x (a)\n", __func__, tok, pos,data);
  376. return 0;
  377. }
  378. if (LBA_SKIP_PROBE(d) && (!lba_device_present(bus->busn_res.start, devfn, d))) {
  379. DBG_CFG("%s(%x+%2x) = 0x%x (b)\n", __func__, tok, pos,data);
  380. return 1; /* New Workaround */
  381. }
  382. DBG_CFG("%s(%x+%2x) = 0x%x (c)\n", __func__, tok, pos, data);
  383. /* Basic Algorithm */
  384. LBA_CFG_ADDR_SETUP(d, tok | pos);
  385. switch(size) {
  386. case 1: WRITE_REG8 (data, d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & 3));
  387. break;
  388. case 2: WRITE_REG16(data, d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & 2));
  389. break;
  390. case 4: WRITE_REG32(data, d->hba.base_addr + LBA_PCI_CFG_DATA);
  391. break;
  392. }
  393. /* flush posted write */
  394. lba_t32 = READ_REG32(d->hba.base_addr + LBA_PCI_CFG_ADDR);
  395. return 0;
  396. }
  397. static struct pci_ops elroy_cfg_ops = {
  398. .read = elroy_cfg_read,
  399. .write = elroy_cfg_write,
  400. };
  401. /*
  402. * The mercury_cfg_ops are slightly misnamed; they're also used for Elroy
  403. * TR4.0 as no additional bugs were found in this areea between Elroy and
  404. * Mercury
  405. */
  406. static int mercury_cfg_read(struct pci_bus *bus, unsigned int devfn, int pos, int size, u32 *data)
  407. {
  408. struct lba_device *d = LBA_DEV(parisc_walk_tree(bus->bridge));
  409. u32 local_bus = (bus->parent == NULL) ? 0 : bus->busn_res.start;
  410. u32 tok = LBA_CFG_TOK(local_bus, devfn);
  411. void __iomem *data_reg = d->hba.base_addr + LBA_PCI_CFG_DATA;
  412. if ((pos > 255) || (devfn > 255))
  413. return -EINVAL;
  414. LBA_CFG_TR4_ADDR_SETUP(d, tok | pos);
  415. switch(size) {
  416. case 1:
  417. *data = READ_REG8(data_reg + (pos & 3));
  418. break;
  419. case 2:
  420. *data = READ_REG16(data_reg + (pos & 2));
  421. break;
  422. case 4:
  423. *data = READ_REG32(data_reg); break;
  424. break;
  425. }
  426. DBG_CFG("mercury_cfg_read(%x+%2x) -> 0x%x\n", tok, pos, *data);
  427. return 0;
  428. }
  429. /*
  430. * LBA 4.0 config write code implements non-postable semantics
  431. * by doing a read of CONFIG ADDR after the write.
  432. */
  433. static int mercury_cfg_write(struct pci_bus *bus, unsigned int devfn, int pos, int size, u32 data)
  434. {
  435. struct lba_device *d = LBA_DEV(parisc_walk_tree(bus->bridge));
  436. void __iomem *data_reg = d->hba.base_addr + LBA_PCI_CFG_DATA;
  437. u32 local_bus = (bus->parent == NULL) ? 0 : bus->busn_res.start;
  438. u32 tok = LBA_CFG_TOK(local_bus,devfn);
  439. if ((pos > 255) || (devfn > 255))
  440. return -EINVAL;
  441. DBG_CFG("%s(%x+%2x) <- 0x%x (c)\n", __func__, tok, pos, data);
  442. LBA_CFG_TR4_ADDR_SETUP(d, tok | pos);
  443. switch(size) {
  444. case 1:
  445. WRITE_REG8 (data, data_reg + (pos & 3));
  446. break;
  447. case 2:
  448. WRITE_REG16(data, data_reg + (pos & 2));
  449. break;
  450. case 4:
  451. WRITE_REG32(data, data_reg);
  452. break;
  453. }
  454. /* flush posted write */
  455. lba_t32 = READ_U32(d->hba.base_addr + LBA_PCI_CFG_ADDR);
  456. return 0;
  457. }
  458. static struct pci_ops mercury_cfg_ops = {
  459. .read = mercury_cfg_read,
  460. .write = mercury_cfg_write,
  461. };
  462. static void
  463. lba_bios_init(void)
  464. {
  465. DBG(MODULE_NAME ": lba_bios_init\n");
  466. }
  467. #ifdef CONFIG_64BIT
  468. /*
  469. * truncate_pat_collision: Deal with overlaps or outright collisions
  470. * between PAT PDC reported ranges.
  471. *
  472. * Broken PA8800 firmware will report lmmio range that
  473. * overlaps with CPU HPA. Just truncate the lmmio range.
  474. *
  475. * BEWARE: conflicts with this lmmio range may be an
  476. * elmmio range which is pointing down another rope.
  477. *
  478. * FIXME: only deals with one collision per range...theoretically we
  479. * could have several. Supporting more than one collision will get messy.
  480. */
  481. static unsigned long
  482. truncate_pat_collision(struct resource *root, struct resource *new)
  483. {
  484. unsigned long start = new->start;
  485. unsigned long end = new->end;
  486. struct resource *tmp = root->child;
  487. if (end <= start || start < root->start || !tmp)
  488. return 0;
  489. /* find first overlap */
  490. while (tmp && tmp->end < start)
  491. tmp = tmp->sibling;
  492. /* no entries overlap */
  493. if (!tmp) return 0;
  494. /* found one that starts behind the new one
  495. ** Don't need to do anything.
  496. */
  497. if (tmp->start >= end) return 0;
  498. if (tmp->start <= start) {
  499. /* "front" of new one overlaps */
  500. new->start = tmp->end + 1;
  501. if (tmp->end >= end) {
  502. /* AACCKK! totally overlaps! drop this range. */
  503. return 1;
  504. }
  505. }
  506. if (tmp->end < end ) {
  507. /* "end" of new one overlaps */
  508. new->end = tmp->start - 1;
  509. }
  510. printk(KERN_WARNING "LBA: Truncating lmmio_space [%lx/%lx] "
  511. "to [%lx,%lx]\n",
  512. start, end,
  513. (long)new->start, (long)new->end );
  514. return 0; /* truncation successful */
  515. }
  516. /*
  517. * extend_lmmio_len: extend lmmio range to maximum length
  518. *
  519. * This is needed at least on C8000 systems to get the ATI FireGL card
  520. * working. On other systems we will currently not extend the lmmio space.
  521. */
  522. static unsigned long
  523. extend_lmmio_len(unsigned long start, unsigned long end, unsigned long lba_len)
  524. {
  525. struct resource *tmp;
  526. pr_debug("LMMIO mismatch: PAT length = 0x%lx, MASK register = 0x%lx\n",
  527. end - start, lba_len);
  528. lba_len = min(lba_len+1, 256UL*1024*1024); /* limit to 256 MB */
  529. pr_debug("LBA: lmmio_space [0x%lx-0x%lx] - original\n", start, end);
  530. if (boot_cpu_data.cpu_type < mako) {
  531. pr_info("LBA: Not a C8000 system - not extending LMMIO range.\n");
  532. return end;
  533. }
  534. end += lba_len;
  535. if (end < start) /* fix overflow */
  536. end = -1ULL;
  537. pr_debug("LBA: lmmio_space [0x%lx-0x%lx] - current\n", start, end);
  538. /* first overlap */
  539. for (tmp = iomem_resource.child; tmp; tmp = tmp->sibling) {
  540. pr_debug("LBA: testing %pR\n", tmp);
  541. if (tmp->start == start)
  542. continue; /* ignore ourself */
  543. if (tmp->end < start)
  544. continue;
  545. if (tmp->start > end)
  546. continue;
  547. if (end >= tmp->start)
  548. end = tmp->start - 1;
  549. }
  550. pr_info("LBA: lmmio_space [0x%lx-0x%lx] - new\n", start, end);
  551. /* return new end */
  552. return end;
  553. }
  554. #else
  555. #define truncate_pat_collision(r,n) (0)
  556. #endif
  557. /*
  558. ** The algorithm is generic code.
  559. ** But it needs to access local data structures to get the IRQ base.
  560. ** Could make this a "pci_fixup_irq(bus, region)" but not sure
  561. ** it's worth it.
  562. **
  563. ** Called by do_pci_scan_bus() immediately after each PCI bus is walked.
  564. ** Resources aren't allocated until recursive buswalk below HBA is completed.
  565. */
  566. static void
  567. lba_fixup_bus(struct pci_bus *bus)
  568. {
  569. struct pci_dev *dev;
  570. #ifdef FBB_SUPPORT
  571. u16 status;
  572. #endif
  573. struct lba_device *ldev = LBA_DEV(parisc_walk_tree(bus->bridge));
  574. DBG("lba_fixup_bus(0x%p) bus %d platform_data 0x%p\n",
  575. bus, (int)bus->busn_res.start, bus->bridge->platform_data);
  576. /*
  577. ** Properly Setup MMIO resources for this bus.
  578. ** pci_alloc_primary_bus() mangles this.
  579. */
  580. if (bus->parent) {
  581. int i;
  582. /* PCI-PCI Bridge */
  583. pci_read_bridge_bases(bus);
  584. for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++)
  585. pci_claim_bridge_resource(bus->self, i);
  586. } else {
  587. /* Host-PCI Bridge */
  588. int err;
  589. DBG("lba_fixup_bus() %s [%lx/%lx]/%lx\n",
  590. ldev->hba.io_space.name,
  591. ldev->hba.io_space.start, ldev->hba.io_space.end,
  592. ldev->hba.io_space.flags);
  593. DBG("lba_fixup_bus() %s [%lx/%lx]/%lx\n",
  594. ldev->hba.lmmio_space.name,
  595. ldev->hba.lmmio_space.start, ldev->hba.lmmio_space.end,
  596. ldev->hba.lmmio_space.flags);
  597. err = request_resource(&ioport_resource, &(ldev->hba.io_space));
  598. if (err < 0) {
  599. lba_dump_res(&ioport_resource, 2);
  600. BUG();
  601. }
  602. if (ldev->hba.elmmio_space.flags) {
  603. err = request_resource(&iomem_resource,
  604. &(ldev->hba.elmmio_space));
  605. if (err < 0) {
  606. printk("FAILED: lba_fixup_bus() request for "
  607. "elmmio_space [%lx/%lx]\n",
  608. (long)ldev->hba.elmmio_space.start,
  609. (long)ldev->hba.elmmio_space.end);
  610. /* lba_dump_res(&iomem_resource, 2); */
  611. /* BUG(); */
  612. }
  613. }
  614. if (ldev->hba.lmmio_space.flags) {
  615. err = request_resource(&iomem_resource, &(ldev->hba.lmmio_space));
  616. if (err < 0) {
  617. printk(KERN_ERR "FAILED: lba_fixup_bus() request for "
  618. "lmmio_space [%lx/%lx]\n",
  619. (long)ldev->hba.lmmio_space.start,
  620. (long)ldev->hba.lmmio_space.end);
  621. }
  622. }
  623. #ifdef CONFIG_64BIT
  624. /* GMMIO is distributed range. Every LBA/Rope gets part it. */
  625. if (ldev->hba.gmmio_space.flags) {
  626. err = request_resource(&iomem_resource, &(ldev->hba.gmmio_space));
  627. if (err < 0) {
  628. printk("FAILED: lba_fixup_bus() request for "
  629. "gmmio_space [%lx/%lx]\n",
  630. (long)ldev->hba.gmmio_space.start,
  631. (long)ldev->hba.gmmio_space.end);
  632. lba_dump_res(&iomem_resource, 2);
  633. BUG();
  634. }
  635. }
  636. #endif
  637. }
  638. list_for_each_entry(dev, &bus->devices, bus_list) {
  639. int i;
  640. DBG("lba_fixup_bus() %s\n", pci_name(dev));
  641. /* Virtualize Device/Bridge Resources. */
  642. for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
  643. struct resource *res = &dev->resource[i];
  644. /* If resource not allocated - skip it */
  645. if (!res->start)
  646. continue;
  647. /*
  648. ** FIXME: this will result in whinging for devices
  649. ** that share expansion ROMs (think quad tulip), but
  650. ** isn't harmful.
  651. */
  652. pci_claim_resource(dev, i);
  653. }
  654. #ifdef FBB_SUPPORT
  655. /*
  656. ** If one device does not support FBB transfers,
  657. ** No one on the bus can be allowed to use them.
  658. */
  659. (void) pci_read_config_word(dev, PCI_STATUS, &status);
  660. bus->bridge_ctl &= ~(status & PCI_STATUS_FAST_BACK);
  661. #endif
  662. /*
  663. ** P2PB's have no IRQs. ignore them.
  664. */
  665. if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
  666. continue;
  667. /* Adjust INTERRUPT_LINE for this dev */
  668. iosapic_fixup_irq(ldev->iosapic_obj, dev);
  669. }
  670. #ifdef FBB_SUPPORT
  671. /* FIXME/REVISIT - finish figuring out to set FBB on both
  672. ** pci_setup_bridge() clobbers PCI_BRIDGE_CONTROL.
  673. ** Can't fixup here anyway....garr...
  674. */
  675. if (fbb_enable) {
  676. if (bus->parent) {
  677. u8 control;
  678. /* enable on PPB */
  679. (void) pci_read_config_byte(bus->self, PCI_BRIDGE_CONTROL, &control);
  680. (void) pci_write_config_byte(bus->self, PCI_BRIDGE_CONTROL, control | PCI_STATUS_FAST_BACK);
  681. } else {
  682. /* enable on LBA */
  683. }
  684. fbb_enable = PCI_COMMAND_FAST_BACK;
  685. }
  686. /* Lastly enable FBB/PERR/SERR on all devices too */
  687. list_for_each_entry(dev, &bus->devices, bus_list) {
  688. (void) pci_read_config_word(dev, PCI_COMMAND, &status);
  689. status |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR | fbb_enable;
  690. (void) pci_write_config_word(dev, PCI_COMMAND, status);
  691. }
  692. #endif
  693. }
  694. static struct pci_bios_ops lba_bios_ops = {
  695. .init = lba_bios_init,
  696. .fixup_bus = lba_fixup_bus,
  697. };
  698. /*******************************************************
  699. **
  700. ** LBA Sprockets "I/O Port" Space Accessor Functions
  701. **
  702. ** This set of accessor functions is intended for use with
  703. ** "legacy firmware" (ie Sprockets on Allegro/Forte boxes).
  704. **
  705. ** Many PCI devices don't require use of I/O port space (eg Tulip,
  706. ** NCR720) since they export the same registers to both MMIO and
  707. ** I/O port space. In general I/O port space is slower than
  708. ** MMIO since drivers are designed so PIO writes can be posted.
  709. **
  710. ********************************************************/
  711. #define LBA_PORT_IN(size, mask) \
  712. static u##size lba_astro_in##size (struct pci_hba_data *d, u16 addr) \
  713. { \
  714. u##size t; \
  715. t = READ_REG##size(astro_iop_base + addr); \
  716. DBG_PORT(" 0x%x\n", t); \
  717. return (t); \
  718. }
  719. LBA_PORT_IN( 8, 3)
  720. LBA_PORT_IN(16, 2)
  721. LBA_PORT_IN(32, 0)
  722. /*
  723. ** BUG X4107: Ordering broken - DMA RD return can bypass PIO WR
  724. **
  725. ** Fixed in Elroy 2.2. The READ_U32(..., LBA_FUNC_ID) below is
  726. ** guarantee non-postable completion semantics - not avoid X4107.
  727. ** The READ_U32 only guarantees the write data gets to elroy but
  728. ** out to the PCI bus. We can't read stuff from I/O port space
  729. ** since we don't know what has side-effects. Attempting to read
  730. ** from configuration space would be suicidal given the number of
  731. ** bugs in that elroy functionality.
  732. **
  733. ** Description:
  734. ** DMA read results can improperly pass PIO writes (X4107). The
  735. ** result of this bug is that if a processor modifies a location in
  736. ** memory after having issued PIO writes, the PIO writes are not
  737. ** guaranteed to be completed before a PCI device is allowed to see
  738. ** the modified data in a DMA read.
  739. **
  740. ** Note that IKE bug X3719 in TR1 IKEs will result in the same
  741. ** symptom.
  742. **
  743. ** Workaround:
  744. ** The workaround for this bug is to always follow a PIO write with
  745. ** a PIO read to the same bus before starting DMA on that PCI bus.
  746. **
  747. */
  748. #define LBA_PORT_OUT(size, mask) \
  749. static void lba_astro_out##size (struct pci_hba_data *d, u16 addr, u##size val) \
  750. { \
  751. DBG_PORT("%s(0x%p, 0x%x, 0x%x)\n", __func__, d, addr, val); \
  752. WRITE_REG##size(val, astro_iop_base + addr); \
  753. if (LBA_DEV(d)->hw_rev < 3) \
  754. lba_t32 = READ_U32(d->base_addr + LBA_FUNC_ID); \
  755. }
  756. LBA_PORT_OUT( 8, 3)
  757. LBA_PORT_OUT(16, 2)
  758. LBA_PORT_OUT(32, 0)
  759. static struct pci_port_ops lba_astro_port_ops = {
  760. .inb = lba_astro_in8,
  761. .inw = lba_astro_in16,
  762. .inl = lba_astro_in32,
  763. .outb = lba_astro_out8,
  764. .outw = lba_astro_out16,
  765. .outl = lba_astro_out32
  766. };
  767. #ifdef CONFIG_64BIT
  768. #define PIOP_TO_GMMIO(lba, addr) \
  769. ((lba)->iop_base + (((addr)&0xFFFC)<<10) + ((addr)&3))
  770. /*******************************************************
  771. **
  772. ** LBA PAT "I/O Port" Space Accessor Functions
  773. **
  774. ** This set of accessor functions is intended for use with
  775. ** "PAT PDC" firmware (ie Prelude/Rhapsody/Piranha boxes).
  776. **
  777. ** This uses the PIOP space located in the first 64MB of GMMIO.
  778. ** Each rope gets a full 64*KB* (ie 4 bytes per page) this way.
  779. ** bits 1:0 stay the same. bits 15:2 become 25:12.
  780. ** Then add the base and we can generate an I/O Port cycle.
  781. ********************************************************/
  782. #undef LBA_PORT_IN
  783. #define LBA_PORT_IN(size, mask) \
  784. static u##size lba_pat_in##size (struct pci_hba_data *l, u16 addr) \
  785. { \
  786. u##size t; \
  787. DBG_PORT("%s(0x%p, 0x%x) ->", __func__, l, addr); \
  788. t = READ_REG##size(PIOP_TO_GMMIO(LBA_DEV(l), addr)); \
  789. DBG_PORT(" 0x%x\n", t); \
  790. return (t); \
  791. }
  792. LBA_PORT_IN( 8, 3)
  793. LBA_PORT_IN(16, 2)
  794. LBA_PORT_IN(32, 0)
  795. #undef LBA_PORT_OUT
  796. #define LBA_PORT_OUT(size, mask) \
  797. static void lba_pat_out##size (struct pci_hba_data *l, u16 addr, u##size val) \
  798. { \
  799. void __iomem *where = PIOP_TO_GMMIO(LBA_DEV(l), addr); \
  800. DBG_PORT("%s(0x%p, 0x%x, 0x%x)\n", __func__, l, addr, val); \
  801. WRITE_REG##size(val, where); \
  802. /* flush the I/O down to the elroy at least */ \
  803. lba_t32 = READ_U32(l->base_addr + LBA_FUNC_ID); \
  804. }
  805. LBA_PORT_OUT( 8, 3)
  806. LBA_PORT_OUT(16, 2)
  807. LBA_PORT_OUT(32, 0)
  808. static struct pci_port_ops lba_pat_port_ops = {
  809. .inb = lba_pat_in8,
  810. .inw = lba_pat_in16,
  811. .inl = lba_pat_in32,
  812. .outb = lba_pat_out8,
  813. .outw = lba_pat_out16,
  814. .outl = lba_pat_out32
  815. };
  816. /*
  817. ** make range information from PDC available to PCI subsystem.
  818. ** We make the PDC call here in order to get the PCI bus range
  819. ** numbers. The rest will get forwarded in pcibios_fixup_bus().
  820. ** We don't have a struct pci_bus assigned to us yet.
  821. */
  822. static void
  823. lba_pat_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
  824. {
  825. unsigned long bytecnt;
  826. long io_count;
  827. long status; /* PDC return status */
  828. long pa_count;
  829. pdc_pat_cell_mod_maddr_block_t *pa_pdc_cell; /* PA_VIEW */
  830. pdc_pat_cell_mod_maddr_block_t *io_pdc_cell; /* IO_VIEW */
  831. int i;
  832. pa_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL);
  833. if (!pa_pdc_cell)
  834. return;
  835. io_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL);
  836. if (!io_pdc_cell) {
  837. kfree(pa_pdc_cell);
  838. return;
  839. }
  840. /* return cell module (IO view) */
  841. status = pdc_pat_cell_module(&bytecnt, pa_dev->pcell_loc, pa_dev->mod_index,
  842. PA_VIEW, pa_pdc_cell);
  843. pa_count = pa_pdc_cell->mod[1];
  844. status |= pdc_pat_cell_module(&bytecnt, pa_dev->pcell_loc, pa_dev->mod_index,
  845. IO_VIEW, io_pdc_cell);
  846. io_count = io_pdc_cell->mod[1];
  847. /* We've already done this once for device discovery...*/
  848. if (status != PDC_OK) {
  849. panic("pdc_pat_cell_module() call failed for LBA!\n");
  850. }
  851. if (PAT_GET_ENTITY(pa_pdc_cell->mod_info) != PAT_ENTITY_LBA) {
  852. panic("pdc_pat_cell_module() entity returned != PAT_ENTITY_LBA!\n");
  853. }
  854. /*
  855. ** Inspect the resources PAT tells us about
  856. */
  857. for (i = 0; i < pa_count; i++) {
  858. struct {
  859. unsigned long type;
  860. unsigned long start;
  861. unsigned long end; /* aka finish */
  862. } *p, *io;
  863. struct resource *r;
  864. p = (void *) &(pa_pdc_cell->mod[2+i*3]);
  865. io = (void *) &(io_pdc_cell->mod[2+i*3]);
  866. /* Convert the PAT range data to PCI "struct resource" */
  867. switch(p->type & 0xff) {
  868. case PAT_PBNUM:
  869. lba_dev->hba.bus_num.start = p->start;
  870. lba_dev->hba.bus_num.end = p->end;
  871. lba_dev->hba.bus_num.flags = IORESOURCE_BUS;
  872. break;
  873. case PAT_LMMIO:
  874. /* used to fix up pre-initialized MEM BARs */
  875. if (!lba_dev->hba.lmmio_space.flags) {
  876. unsigned long lba_len;
  877. lba_len = ~READ_REG32(lba_dev->hba.base_addr
  878. + LBA_LMMIO_MASK);
  879. if ((p->end - p->start) != lba_len)
  880. p->end = extend_lmmio_len(p->start,
  881. p->end, lba_len);
  882. sprintf(lba_dev->hba.lmmio_name,
  883. "PCI%02x LMMIO",
  884. (int)lba_dev->hba.bus_num.start);
  885. lba_dev->hba.lmmio_space_offset = p->start -
  886. io->start;
  887. r = &lba_dev->hba.lmmio_space;
  888. r->name = lba_dev->hba.lmmio_name;
  889. } else if (!lba_dev->hba.elmmio_space.flags) {
  890. sprintf(lba_dev->hba.elmmio_name,
  891. "PCI%02x ELMMIO",
  892. (int)lba_dev->hba.bus_num.start);
  893. r = &lba_dev->hba.elmmio_space;
  894. r->name = lba_dev->hba.elmmio_name;
  895. } else {
  896. printk(KERN_WARNING MODULE_NAME
  897. " only supports 2 LMMIO resources!\n");
  898. break;
  899. }
  900. r->start = p->start;
  901. r->end = p->end;
  902. r->flags = IORESOURCE_MEM;
  903. r->parent = r->sibling = r->child = NULL;
  904. break;
  905. case PAT_GMMIO:
  906. /* MMIO space > 4GB phys addr; for 64-bit BAR */
  907. sprintf(lba_dev->hba.gmmio_name, "PCI%02x GMMIO",
  908. (int)lba_dev->hba.bus_num.start);
  909. r = &lba_dev->hba.gmmio_space;
  910. r->name = lba_dev->hba.gmmio_name;
  911. r->start = p->start;
  912. r->end = p->end;
  913. r->flags = IORESOURCE_MEM;
  914. r->parent = r->sibling = r->child = NULL;
  915. break;
  916. case PAT_NPIOP:
  917. printk(KERN_WARNING MODULE_NAME
  918. " range[%d] : ignoring NPIOP (0x%lx)\n",
  919. i, p->start);
  920. break;
  921. case PAT_PIOP:
  922. /*
  923. ** Postable I/O port space is per PCI host adapter.
  924. ** base of 64MB PIOP region
  925. */
  926. lba_dev->iop_base = ioremap_nocache(p->start, 64 * 1024 * 1024);
  927. sprintf(lba_dev->hba.io_name, "PCI%02x Ports",
  928. (int)lba_dev->hba.bus_num.start);
  929. r = &lba_dev->hba.io_space;
  930. r->name = lba_dev->hba.io_name;
  931. r->start = HBA_PORT_BASE(lba_dev->hba.hba_num);
  932. r->end = r->start + HBA_PORT_SPACE_SIZE - 1;
  933. r->flags = IORESOURCE_IO;
  934. r->parent = r->sibling = r->child = NULL;
  935. break;
  936. default:
  937. printk(KERN_WARNING MODULE_NAME
  938. " range[%d] : unknown pat range type (0x%lx)\n",
  939. i, p->type & 0xff);
  940. break;
  941. }
  942. }
  943. kfree(pa_pdc_cell);
  944. kfree(io_pdc_cell);
  945. }
  946. #else
  947. /* keep compiler from complaining about missing declarations */
  948. #define lba_pat_port_ops lba_astro_port_ops
  949. #define lba_pat_resources(pa_dev, lba_dev)
  950. #endif /* CONFIG_64BIT */
  951. extern void sba_distributed_lmmio(struct parisc_device *, struct resource *);
  952. extern void sba_directed_lmmio(struct parisc_device *, struct resource *);
  953. static void
  954. lba_legacy_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
  955. {
  956. struct resource *r;
  957. int lba_num;
  958. lba_dev->hba.lmmio_space_offset = PCI_F_EXTEND;
  959. /*
  960. ** With "legacy" firmware, the lowest byte of FW_SCRATCH
  961. ** represents bus->secondary and the second byte represents
  962. ** bus->subsidiary (i.e. highest PPB programmed by firmware).
  963. ** PCI bus walk *should* end up with the same result.
  964. ** FIXME: But we don't have sanity checks in PCI or LBA.
  965. */
  966. lba_num = READ_REG32(lba_dev->hba.base_addr + LBA_FW_SCRATCH);
  967. r = &(lba_dev->hba.bus_num);
  968. r->name = "LBA PCI Busses";
  969. r->start = lba_num & 0xff;
  970. r->end = (lba_num>>8) & 0xff;
  971. r->flags = IORESOURCE_BUS;
  972. /* Set up local PCI Bus resources - we don't need them for
  973. ** Legacy boxes but it's nice to see in /proc/iomem.
  974. */
  975. r = &(lba_dev->hba.lmmio_space);
  976. sprintf(lba_dev->hba.lmmio_name, "PCI%02x LMMIO",
  977. (int)lba_dev->hba.bus_num.start);
  978. r->name = lba_dev->hba.lmmio_name;
  979. #if 1
  980. /* We want the CPU -> IO routing of addresses.
  981. * The SBA BASE/MASK registers control CPU -> IO routing.
  982. * Ask SBA what is routed to this rope/LBA.
  983. */
  984. sba_distributed_lmmio(pa_dev, r);
  985. #else
  986. /*
  987. * The LBA BASE/MASK registers control IO -> System routing.
  988. *
  989. * The following code works but doesn't get us what we want.
  990. * Well, only because firmware (v5.0) on C3000 doesn't program
  991. * the LBA BASE/MASE registers to be the exact inverse of
  992. * the corresponding SBA registers. Other Astro/Pluto
  993. * based platform firmware may do it right.
  994. *
  995. * Should someone want to mess with MSI, they may need to
  996. * reprogram LBA BASE/MASK registers. Thus preserve the code
  997. * below until MSI is known to work on C3000/A500/N4000/RP3440.
  998. *
  999. * Using the code below, /proc/iomem shows:
  1000. * ...
  1001. * f0000000-f0ffffff : PCI00 LMMIO
  1002. * f05d0000-f05d0000 : lcd_data
  1003. * f05d0008-f05d0008 : lcd_cmd
  1004. * f1000000-f1ffffff : PCI01 LMMIO
  1005. * f4000000-f4ffffff : PCI02 LMMIO
  1006. * f4000000-f4001fff : sym53c8xx
  1007. * f4002000-f4003fff : sym53c8xx
  1008. * f4004000-f40043ff : sym53c8xx
  1009. * f4005000-f40053ff : sym53c8xx
  1010. * f4007000-f4007fff : ohci_hcd
  1011. * f4008000-f40083ff : tulip
  1012. * f6000000-f6ffffff : PCI03 LMMIO
  1013. * f8000000-fbffffff : PCI00 ELMMIO
  1014. * fa100000-fa4fffff : stifb mmio
  1015. * fb000000-fb1fffff : stifb fb
  1016. *
  1017. * But everything listed under PCI02 actually lives under PCI00.
  1018. * This is clearly wrong.
  1019. *
  1020. * Asking SBA how things are routed tells the correct story:
  1021. * LMMIO_BASE/MASK/ROUTE f4000001 fc000000 00000000
  1022. * DIR0_BASE/MASK/ROUTE fa000001 fe000000 00000006
  1023. * DIR1_BASE/MASK/ROUTE f9000001 ff000000 00000004
  1024. * DIR2_BASE/MASK/ROUTE f0000000 fc000000 00000000
  1025. * DIR3_BASE/MASK/ROUTE f0000000 fc000000 00000000
  1026. *
  1027. * Which looks like this in /proc/iomem:
  1028. * f4000000-f47fffff : PCI00 LMMIO
  1029. * f4000000-f4001fff : sym53c8xx
  1030. * ...[deteled core devices - same as above]...
  1031. * f4008000-f40083ff : tulip
  1032. * f4800000-f4ffffff : PCI01 LMMIO
  1033. * f6000000-f67fffff : PCI02 LMMIO
  1034. * f7000000-f77fffff : PCI03 LMMIO
  1035. * f9000000-f9ffffff : PCI02 ELMMIO
  1036. * fa000000-fbffffff : PCI03 ELMMIO
  1037. * fa100000-fa4fffff : stifb mmio
  1038. * fb000000-fb1fffff : stifb fb
  1039. *
  1040. * ie all Built-in core are under now correctly under PCI00.
  1041. * The "PCI02 ELMMIO" directed range is for:
  1042. * +-[02]---03.0 3Dfx Interactive, Inc. Voodoo 2
  1043. *
  1044. * All is well now.
  1045. */
  1046. r->start = READ_REG32(lba_dev->hba.base_addr + LBA_LMMIO_BASE);
  1047. if (r->start & 1) {
  1048. unsigned long rsize;
  1049. r->flags = IORESOURCE_MEM;
  1050. /* mmio_mask also clears Enable bit */
  1051. r->start &= mmio_mask;
  1052. r->start = PCI_HOST_ADDR(HBA_DATA(lba_dev), r->start);
  1053. rsize = ~ READ_REG32(lba_dev->hba.base_addr + LBA_LMMIO_MASK);
  1054. /*
  1055. ** Each rope only gets part of the distributed range.
  1056. ** Adjust "window" for this rope.
  1057. */
  1058. rsize /= ROPES_PER_IOC;
  1059. r->start += (rsize + 1) * LBA_NUM(pa_dev->hpa.start);
  1060. r->end = r->start + rsize;
  1061. } else {
  1062. r->end = r->start = 0; /* Not enabled. */
  1063. }
  1064. #endif
  1065. /*
  1066. ** "Directed" ranges are used when the "distributed range" isn't
  1067. ** sufficient for all devices below a given LBA. Typically devices
  1068. ** like graphics cards or X25 may need a directed range when the
  1069. ** bus has multiple slots (ie multiple devices) or the device
  1070. ** needs more than the typical 4 or 8MB a distributed range offers.
  1071. **
  1072. ** The main reason for ignoring it now frigging complications.
  1073. ** Directed ranges may overlap (and have precedence) over
  1074. ** distributed ranges. Or a distributed range assigned to a unused
  1075. ** rope may be used by a directed range on a different rope.
  1076. ** Support for graphics devices may require fixing this
  1077. ** since they may be assigned a directed range which overlaps
  1078. ** an existing (but unused portion of) distributed range.
  1079. */
  1080. r = &(lba_dev->hba.elmmio_space);
  1081. sprintf(lba_dev->hba.elmmio_name, "PCI%02x ELMMIO",
  1082. (int)lba_dev->hba.bus_num.start);
  1083. r->name = lba_dev->hba.elmmio_name;
  1084. #if 1
  1085. /* See comment which precedes call to sba_directed_lmmio() */
  1086. sba_directed_lmmio(pa_dev, r);
  1087. #else
  1088. r->start = READ_REG32(lba_dev->hba.base_addr + LBA_ELMMIO_BASE);
  1089. if (r->start & 1) {
  1090. unsigned long rsize;
  1091. r->flags = IORESOURCE_MEM;
  1092. /* mmio_mask also clears Enable bit */
  1093. r->start &= mmio_mask;
  1094. r->start = PCI_HOST_ADDR(HBA_DATA(lba_dev), r->start);
  1095. rsize = READ_REG32(lba_dev->hba.base_addr + LBA_ELMMIO_MASK);
  1096. r->end = r->start + ~rsize;
  1097. }
  1098. #endif
  1099. r = &(lba_dev->hba.io_space);
  1100. sprintf(lba_dev->hba.io_name, "PCI%02x Ports",
  1101. (int)lba_dev->hba.bus_num.start);
  1102. r->name = lba_dev->hba.io_name;
  1103. r->flags = IORESOURCE_IO;
  1104. r->start = READ_REG32(lba_dev->hba.base_addr + LBA_IOS_BASE) & ~1L;
  1105. r->end = r->start + (READ_REG32(lba_dev->hba.base_addr + LBA_IOS_MASK) ^ (HBA_PORT_SPACE_SIZE - 1));
  1106. /* Virtualize the I/O Port space ranges */
  1107. lba_num = HBA_PORT_BASE(lba_dev->hba.hba_num);
  1108. r->start |= lba_num;
  1109. r->end |= lba_num;
  1110. }
  1111. /**************************************************************************
  1112. **
  1113. ** LBA initialization code (HW and SW)
  1114. **
  1115. ** o identify LBA chip itself
  1116. ** o initialize LBA chip modes (HardFail)
  1117. ** o FIXME: initialize DMA hints for reasonable defaults
  1118. ** o enable configuration functions
  1119. ** o call pci_register_ops() to discover devs (fixup/fixup_bus get invoked)
  1120. **
  1121. **************************************************************************/
  1122. static int __init
  1123. lba_hw_init(struct lba_device *d)
  1124. {
  1125. u32 stat;
  1126. u32 bus_reset; /* PDC_PAT_BUG */
  1127. #if 0
  1128. printk(KERN_DEBUG "LBA %lx STAT_CTL %Lx ERROR_CFG %Lx STATUS %Lx DMA_CTL %Lx\n",
  1129. d->hba.base_addr,
  1130. READ_REG64(d->hba.base_addr + LBA_STAT_CTL),
  1131. READ_REG64(d->hba.base_addr + LBA_ERROR_CONFIG),
  1132. READ_REG64(d->hba.base_addr + LBA_ERROR_STATUS),
  1133. READ_REG64(d->hba.base_addr + LBA_DMA_CTL) );
  1134. printk(KERN_DEBUG " ARB mask %Lx pri %Lx mode %Lx mtlt %Lx\n",
  1135. READ_REG64(d->hba.base_addr + LBA_ARB_MASK),
  1136. READ_REG64(d->hba.base_addr + LBA_ARB_PRI),
  1137. READ_REG64(d->hba.base_addr + LBA_ARB_MODE),
  1138. READ_REG64(d->hba.base_addr + LBA_ARB_MTLT) );
  1139. printk(KERN_DEBUG " HINT cfg 0x%Lx\n",
  1140. READ_REG64(d->hba.base_addr + LBA_HINT_CFG));
  1141. printk(KERN_DEBUG " HINT reg ");
  1142. { int i;
  1143. for (i=LBA_HINT_BASE; i< (14*8 + LBA_HINT_BASE); i+=8)
  1144. printk(" %Lx", READ_REG64(d->hba.base_addr + i));
  1145. }
  1146. printk("\n");
  1147. #endif /* DEBUG_LBA_PAT */
  1148. #ifdef CONFIG_64BIT
  1149. /*
  1150. * FIXME add support for PDC_PAT_IO "Get slot status" - OLAR support
  1151. * Only N-Class and up can really make use of Get slot status.
  1152. * maybe L-class too but I've never played with it there.
  1153. */
  1154. #endif
  1155. /* PDC_PAT_BUG: exhibited in rev 40.48 on L2000 */
  1156. bus_reset = READ_REG32(d->hba.base_addr + LBA_STAT_CTL + 4) & 1;
  1157. if (bus_reset) {
  1158. printk(KERN_DEBUG "NOTICE: PCI bus reset still asserted! (clearing)\n");
  1159. }
  1160. stat = READ_REG32(d->hba.base_addr + LBA_ERROR_CONFIG);
  1161. if (stat & LBA_SMART_MODE) {
  1162. printk(KERN_DEBUG "NOTICE: LBA in SMART mode! (cleared)\n");
  1163. stat &= ~LBA_SMART_MODE;
  1164. WRITE_REG32(stat, d->hba.base_addr + LBA_ERROR_CONFIG);
  1165. }
  1166. /* Set HF mode as the default (vs. -1 mode). */
  1167. stat = READ_REG32(d->hba.base_addr + LBA_STAT_CTL);
  1168. WRITE_REG32(stat | HF_ENABLE, d->hba.base_addr + LBA_STAT_CTL);
  1169. /*
  1170. ** Writing a zero to STAT_CTL.rf (bit 0) will clear reset signal
  1171. ** if it's not already set. If we just cleared the PCI Bus Reset
  1172. ** signal, wait a bit for the PCI devices to recover and setup.
  1173. */
  1174. if (bus_reset)
  1175. mdelay(pci_post_reset_delay);
  1176. if (0 == READ_REG32(d->hba.base_addr + LBA_ARB_MASK)) {
  1177. /*
  1178. ** PDC_PAT_BUG: PDC rev 40.48 on L2000.
  1179. ** B2000/C3600/J6000 also have this problem?
  1180. **
  1181. ** Elroys with hot pluggable slots don't get configured
  1182. ** correctly if the slot is empty. ARB_MASK is set to 0
  1183. ** and we can't master transactions on the bus if it's
  1184. ** not at least one. 0x3 enables elroy and first slot.
  1185. */
  1186. printk(KERN_DEBUG "NOTICE: Enabling PCI Arbitration\n");
  1187. WRITE_REG32(0x3, d->hba.base_addr + LBA_ARB_MASK);
  1188. }
  1189. /*
  1190. ** FIXME: Hint registers are programmed with default hint
  1191. ** values by firmware. Hints should be sane even if we
  1192. ** can't reprogram them the way drivers want.
  1193. */
  1194. return 0;
  1195. }
  1196. /*
  1197. * Unfortunately, when firmware numbers busses, it doesn't take into account
  1198. * Cardbus bridges. So we have to renumber the busses to suit ourselves.
  1199. * Elroy/Mercury don't actually know what bus number they're attached to;
  1200. * we use bus 0 to indicate the directly attached bus and any other bus
  1201. * number will be taken care of by the PCI-PCI bridge.
  1202. */
  1203. static unsigned int lba_next_bus = 0;
  1204. /*
  1205. * Determine if lba should claim this chip (return 0) or not (return 1).
  1206. * If so, initialize the chip and tell other partners in crime they
  1207. * have work to do.
  1208. */
  1209. static int __init
  1210. lba_driver_probe(struct parisc_device *dev)
  1211. {
  1212. struct lba_device *lba_dev;
  1213. LIST_HEAD(resources);
  1214. struct pci_bus *lba_bus;
  1215. struct pci_ops *cfg_ops;
  1216. u32 func_class;
  1217. void *tmp_obj;
  1218. char *version;
  1219. void __iomem *addr = ioremap_nocache(dev->hpa.start, 4096);
  1220. int max;
  1221. /* Read HW Rev First */
  1222. func_class = READ_REG32(addr + LBA_FCLASS);
  1223. if (IS_ELROY(dev)) {
  1224. func_class &= 0xf;
  1225. switch (func_class) {
  1226. case 0: version = "TR1.0"; break;
  1227. case 1: version = "TR2.0"; break;
  1228. case 2: version = "TR2.1"; break;
  1229. case 3: version = "TR2.2"; break;
  1230. case 4: version = "TR3.0"; break;
  1231. case 5: version = "TR4.0"; break;
  1232. default: version = "TR4+";
  1233. }
  1234. printk(KERN_INFO "Elroy version %s (0x%x) found at 0x%lx\n",
  1235. version, func_class & 0xf, (long)dev->hpa.start);
  1236. if (func_class < 2) {
  1237. printk(KERN_WARNING "Can't support LBA older than "
  1238. "TR2.1 - continuing under adversity.\n");
  1239. }
  1240. #if 0
  1241. /* Elroy TR4.0 should work with simple algorithm.
  1242. But it doesn't. Still missing something. *sigh*
  1243. */
  1244. if (func_class > 4) {
  1245. cfg_ops = &mercury_cfg_ops;
  1246. } else
  1247. #endif
  1248. {
  1249. cfg_ops = &elroy_cfg_ops;
  1250. }
  1251. } else if (IS_MERCURY(dev) || IS_QUICKSILVER(dev)) {
  1252. int major, minor;
  1253. func_class &= 0xff;
  1254. major = func_class >> 4, minor = func_class & 0xf;
  1255. /* We could use one printk for both Elroy and Mercury,
  1256. * but for the mask for func_class.
  1257. */
  1258. printk(KERN_INFO "%s version TR%d.%d (0x%x) found at 0x%lx\n",
  1259. IS_MERCURY(dev) ? "Mercury" : "Quicksilver", major,
  1260. minor, func_class, (long)dev->hpa.start);
  1261. cfg_ops = &mercury_cfg_ops;
  1262. } else {
  1263. printk(KERN_ERR "Unknown LBA found at 0x%lx\n",
  1264. (long)dev->hpa.start);
  1265. return -ENODEV;
  1266. }
  1267. /* Tell I/O SAPIC driver we have a IRQ handler/region. */
  1268. tmp_obj = iosapic_register(dev->hpa.start + LBA_IOSAPIC_BASE);
  1269. /* NOTE: PCI devices (e.g. 103c:1005 graphics card) which don't
  1270. ** have an IRT entry will get NULL back from iosapic code.
  1271. */
  1272. lba_dev = kzalloc(sizeof(struct lba_device), GFP_KERNEL);
  1273. if (!lba_dev) {
  1274. printk(KERN_ERR "lba_init_chip - couldn't alloc lba_device\n");
  1275. return(1);
  1276. }
  1277. /* ---------- First : initialize data we already have --------- */
  1278. lba_dev->hw_rev = func_class;
  1279. lba_dev->hba.base_addr = addr;
  1280. lba_dev->hba.dev = dev;
  1281. lba_dev->iosapic_obj = tmp_obj; /* save interrupt handle */
  1282. lba_dev->hba.iommu = sba_get_iommu(dev); /* get iommu data */
  1283. parisc_set_drvdata(dev, lba_dev);
  1284. /* ------------ Second : initialize common stuff ---------- */
  1285. pci_bios = &lba_bios_ops;
  1286. pcibios_register_hba(HBA_DATA(lba_dev));
  1287. spin_lock_init(&lba_dev->lba_lock);
  1288. if (lba_hw_init(lba_dev))
  1289. return(1);
  1290. /* ---------- Third : setup I/O Port and MMIO resources --------- */
  1291. if (is_pdc_pat()) {
  1292. /* PDC PAT firmware uses PIOP region of GMMIO space. */
  1293. pci_port = &lba_pat_port_ops;
  1294. /* Go ask PDC PAT what resources this LBA has */
  1295. lba_pat_resources(dev, lba_dev);
  1296. } else {
  1297. if (!astro_iop_base) {
  1298. /* Sprockets PDC uses NPIOP region */
  1299. astro_iop_base = ioremap_nocache(LBA_PORT_BASE, 64 * 1024);
  1300. pci_port = &lba_astro_port_ops;
  1301. }
  1302. /* Poke the chip a bit for /proc output */
  1303. lba_legacy_resources(dev, lba_dev);
  1304. }
  1305. if (lba_dev->hba.bus_num.start < lba_next_bus)
  1306. lba_dev->hba.bus_num.start = lba_next_bus;
  1307. /* Overlaps with elmmio can (and should) fail here.
  1308. * We will prune (or ignore) the distributed range.
  1309. *
  1310. * FIXME: SBA code should register all elmmio ranges first.
  1311. * that would take care of elmmio ranges routed
  1312. * to a different rope (already discovered) from
  1313. * getting registered *after* LBA code has already
  1314. * registered it's distributed lmmio range.
  1315. */
  1316. if (truncate_pat_collision(&iomem_resource,
  1317. &(lba_dev->hba.lmmio_space))) {
  1318. printk(KERN_WARNING "LBA: lmmio_space [%lx/%lx] duplicate!\n",
  1319. (long)lba_dev->hba.lmmio_space.start,
  1320. (long)lba_dev->hba.lmmio_space.end);
  1321. lba_dev->hba.lmmio_space.flags = 0;
  1322. }
  1323. pci_add_resource_offset(&resources, &lba_dev->hba.io_space,
  1324. HBA_PORT_BASE(lba_dev->hba.hba_num));
  1325. if (lba_dev->hba.elmmio_space.flags)
  1326. pci_add_resource_offset(&resources, &lba_dev->hba.elmmio_space,
  1327. lba_dev->hba.lmmio_space_offset);
  1328. if (lba_dev->hba.lmmio_space.flags)
  1329. pci_add_resource_offset(&resources, &lba_dev->hba.lmmio_space,
  1330. lba_dev->hba.lmmio_space_offset);
  1331. if (lba_dev->hba.gmmio_space.flags)
  1332. pci_add_resource(&resources, &lba_dev->hba.gmmio_space);
  1333. pci_add_resource(&resources, &lba_dev->hba.bus_num);
  1334. dev->dev.platform_data = lba_dev;
  1335. lba_bus = lba_dev->hba.hba_bus =
  1336. pci_create_root_bus(&dev->dev, lba_dev->hba.bus_num.start,
  1337. cfg_ops, NULL, &resources);
  1338. if (!lba_bus) {
  1339. pci_free_resource_list(&resources);
  1340. return 0;
  1341. }
  1342. max = pci_scan_child_bus(lba_bus);
  1343. /* This is in lieu of calling pci_assign_unassigned_resources() */
  1344. if (is_pdc_pat()) {
  1345. /* assign resources to un-initialized devices */
  1346. DBG_PAT("LBA pci_bus_size_bridges()\n");
  1347. pci_bus_size_bridges(lba_bus);
  1348. DBG_PAT("LBA pci_bus_assign_resources()\n");
  1349. pci_bus_assign_resources(lba_bus);
  1350. #ifdef DEBUG_LBA_PAT
  1351. DBG_PAT("\nLBA PIOP resource tree\n");
  1352. lba_dump_res(&lba_dev->hba.io_space, 2);
  1353. DBG_PAT("\nLBA LMMIO resource tree\n");
  1354. lba_dump_res(&lba_dev->hba.lmmio_space, 2);
  1355. #endif
  1356. }
  1357. /*
  1358. ** Once PCI register ops has walked the bus, access to config
  1359. ** space is restricted. Avoids master aborts on config cycles.
  1360. ** Early LBA revs go fatal on *any* master abort.
  1361. */
  1362. if (cfg_ops == &elroy_cfg_ops) {
  1363. lba_dev->flags |= LBA_FLAG_SKIP_PROBE;
  1364. }
  1365. lba_next_bus = max + 1;
  1366. pci_bus_add_devices(lba_bus);
  1367. /* Whew! Finally done! Tell services we got this one covered. */
  1368. return 0;
  1369. }
  1370. static struct parisc_device_id lba_tbl[] = {
  1371. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, ELROY_HVERS, 0xa },
  1372. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, MERCURY_HVERS, 0xa },
  1373. { HPHW_BRIDGE, HVERSION_REV_ANY_ID, QUICKSILVER_HVERS, 0xa },
  1374. { 0, }
  1375. };
  1376. static struct parisc_driver lba_driver = {
  1377. .name = MODULE_NAME,
  1378. .id_table = lba_tbl,
  1379. .probe = lba_driver_probe,
  1380. };
  1381. /*
  1382. ** One time initialization to let the world know the LBA was found.
  1383. ** Must be called exactly once before pci_init().
  1384. */
  1385. void __init lba_init(void)
  1386. {
  1387. register_parisc_driver(&lba_driver);
  1388. }
  1389. /*
  1390. ** Initialize the IBASE/IMASK registers for LBA (Elroy).
  1391. ** Only called from sba_iommu.c in order to route ranges (MMIO vs DMA).
  1392. ** sba_iommu is responsible for locking (none needed at init time).
  1393. */
  1394. void lba_set_iregs(struct parisc_device *lba, u32 ibase, u32 imask)
  1395. {
  1396. void __iomem * base_addr = ioremap_nocache(lba->hpa.start, 4096);
  1397. imask <<= 2; /* adjust for hints - 2 more bits */
  1398. /* Make sure we aren't trying to set bits that aren't writeable. */
  1399. WARN_ON((ibase & 0x001fffff) != 0);
  1400. WARN_ON((imask & 0x001fffff) != 0);
  1401. DBG("%s() ibase 0x%x imask 0x%x\n", __func__, ibase, imask);
  1402. WRITE_REG32( imask, base_addr + LBA_IMASK);
  1403. WRITE_REG32( ibase, base_addr + LBA_IBASE);
  1404. iounmap(base_addr);
  1405. }