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
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 and __devinit */
37 /* #define PCI_DEBUG enable ASSERT */
38 #include <linux/pci.h>
39 #include <linux/ioport.h>
40 #include <linux/slab.h>
41 #include <linux/smp_lock.h>
42
43 #include <asm/byteorder.h>
44 #include <asm/irq.h> /* for struct irq_region support */
45 #include <asm/pdc.h>
46 #include <asm/page.h>
47 #include <asm/segment.h>
48 #include <asm/system.h>
49
50 #include <asm/hardware.h> /* for register_parisc_driver() stuff */
51 #include <asm/iosapic.h> /* for iosapic_register() */
52 #include <asm/io.h> /* read/write stuff */
53
54 #ifndef TRUE
55 #define TRUE (1 == 1)
56 #define FALSE (1 == 0)
57 #endif
58
59 #undef DEBUG_LBA /* general stuff */
60 #undef DEBUG_LBA_PORT /* debug I/O Port access */
61 #undef DEBUG_LBA_CFG /* debug Config Space Access (ie PCI Bus walk) */
62 #undef DEBUG_LBA_PAT /* debug PCI Resource Mgt code - PDC PAT only */
63
64 #undef FBB_SUPPORT /* Fast Back-Back xfers - NOT READY YET */
65
66
67 #ifdef DEBUG_LBA
68 #define DBG(x...) printk(x)
69 #else
70 #define DBG(x...)
71 #endif
72
73 #ifdef DEBUG_LBA_PORT
74 #define DBG_PORT(x...) printk(x)
75 #else
76 #define DBG_PORT(x...)
77 #endif
78
79 #ifdef DEBUG_LBA_CFG
80 #define DBG_CFG(x...) printk(x)
81 #else
82 #define DBG_CFG(x...)
83 #endif
84
85 #ifdef DEBUG_LBA_PAT
86 #define DBG_PAT(x...) printk(x)
87 #else
88 #define DBG_PAT(x...)
89 #endif
90
91 /*
92 ** Config accessor functions only pass in the 8-bit bus number and not
93 ** the 8-bit "PCI Segment" number. Each LBA will be assigned a PCI bus
94 ** number based on what firmware wrote into the scratch register.
95 **
96 ** The "secondary" bus number is set to this before calling
97 ** pci_register_ops(). If any PPB's are present, the scan will
98 ** discover them and update the "secondary" and "subordinate"
99 ** fields in the pci_bus structure.
100 **
101 ** Changes in the configuration *may* result in a different
102 ** bus number for each LBA depending on what firmware does.
103 */
104
105 #define MODULE_NAME "lba"
106
107 #define LBA_FUNC_ID 0x0000 /* function id */
108 #define LBA_FCLASS 0x0008 /* function class, bist, header, rev... */
109 #define LBA_CAPABLE 0x0030 /* capabilities register */
110
111 #define LBA_PCI_CFG_ADDR 0x0040 /* poke CFG address here */
112 #define LBA_PCI_CFG_DATA 0x0048 /* read or write data here */
113
114 #define LBA_PMC_MTLT 0x0050 /* Firmware sets this - read only. */
115 #define LBA_FW_SCRATCH 0x0058 /* Firmware writes the PCI bus number here. */
116 #define LBA_ERROR_ADDR 0x0070 /* On error, address gets logged here */
117
118 #define LBA_ARB_MASK 0x0080 /* bit 0 enable arbitration. PAT/PDC enables */
119 #define LBA_ARB_PRI 0x0088 /* firmware sets this. */
120 #define LBA_ARB_MODE 0x0090 /* firmware sets this. */
121 #define LBA_ARB_MTLT 0x0098 /* firmware sets this. */
122
123 #define LBA_MOD_ID 0x0100 /* Module ID. PDC_PAT_CELL reports 4 */
124
125 #define LBA_STAT_CTL 0x0108 /* Status & Control */
126 #define LBA_BUS_RESET 0x01 /* Deassert PCI Bus Reset Signal */
127 #define CLEAR_ERRLOG 0x10 /* "Clear Error Log" cmd */
128 #define CLEAR_ERRLOG_ENABLE 0x20 /* "Clear Error Log" Enable */
129 #define HF_ENABLE 0x40 /* enable HF mode (default is -1 mode) */
130
131 #define LBA_LMMIO_BASE 0x0200 /* < 4GB I/O address range */
132 #define LBA_LMMIO_MASK 0x0208
133
134 #define LBA_GMMIO_BASE 0x0210 /* > 4GB I/O address range */
135 #define LBA_GMMIO_MASK 0x0218
136
137 #define LBA_WLMMIO_BASE 0x0220 /* All < 4GB ranges under the same *SBA* */
138 #define LBA_WLMMIO_MASK 0x0228
139
140 #define LBA_WGMMIO_BASE 0x0230 /* All > 4GB ranges under the same *SBA* */
141 #define LBA_WGMMIO_MASK 0x0238
142
143 #define LBA_IOS_BASE 0x0240 /* I/O port space for this LBA */
144 #define LBA_IOS_MASK 0x0248
145
146 #define LBA_ELMMIO_BASE 0x0250 /* Extra LMMIO range */
147 #define LBA_ELMMIO_MASK 0x0258
148
149 #define LBA_EIOS_BASE 0x0260 /* Extra I/O port space */
150 #define LBA_EIOS_MASK 0x0268
151
152 #define LBA_DMA_CTL 0x0278 /* firmware sets this */
153
154 #define LBA_IBASE 0x0300 /* SBA DMA support */
155 #define LBA_IMASK 0x0308
156
157 /* FIXME: ignore DMA Hint stuff until we can measure performance */
158 #define LBA_HINT_CFG 0x0310
159 #define LBA_HINT_BASE 0x0380 /* 14 registers at every 8 bytes. */
160
161 /* ERROR regs are needed for config cycle kluges */
162 #define LBA_ERROR_CONFIG 0x0680
163 #define LBA_SMART_MODE 0x20
164 #define LBA_ERROR_STATUS 0x0688
165 #define LBA_ROPE_CTL 0x06A0
166
167 #define LBA_IOSAPIC_BASE 0x800 /* Offset of IRQ logic */
168
169 /* non-postable I/O port space, densely packed */
170 #ifdef __LP64__
171 #define LBA_ASTRO_PORT_BASE (0xfffffffffee00000UL)
172 #else
173 #define LBA_ASTRO_PORT_BASE (0xfee00000UL)
174 #endif
175
176
177 /*
178 ** lba_device: Per instance Elroy data structure
179 */
180 struct lba_device {
181 struct pci_hba_data hba;
182
183 spinlock_t lba_lock;
184 void *iosapic_obj;
185
186 #ifdef __LP64__
187 unsigned long lmmio_base; /* PA_VIEW - fixup MEM addresses */
188 unsigned long gmmio_base; /* PA_VIEW - Not used (yet) */
189 unsigned long iop_base; /* PA_VIEW - for IO port accessor funcs */
190 #endif
191
192 int flags; /* state/functionality enabled */
193 int hw_rev; /* HW revision of chip */
194 };
195
196
197 static u32 lba_t32;
198
199 /*
200 ** lba "flags"
201 */
202 #define LBA_FLAG_NO_DMA_DURING_CFG 0x01
203 #define LBA_FLAG_SKIP_PROBE 0x10
204
205 /* Tape Release 4 == hw_rev 5 */
206 #define LBA_TR4PLUS(d) ((d)->hw_rev > 0x4)
207 #define LBA_DMA_DURING_CFG_DISABLED(d) ((d)->flags & LBA_FLAG_NO_DMA_DURING_CFG)
208 #define LBA_SKIP_PROBE(d) ((d)->flags & LBA_FLAG_SKIP_PROBE)
209
210
211 /* Looks nice and keeps the compiler happy */
212 #define LBA_DEV(d) ((struct lba_device *) (d))
213
214
215 /*
216 ** Only allow 8 subsidiary busses per LBA
217 ** Problem is the PCI bus numbering is globally shared.
218 */
219 #define LBA_MAX_NUM_BUSES 8
220
221 /************************************
222 * LBA register read and write support
223 *
224 * BE WARNED: register writes are posted.
225 * (ie follow writes which must reach HW with a read)
226 */
227 #define READ_U8(addr) __raw_readb(addr)
228 #define READ_U16(addr) __raw_readw(addr)
229 #define READ_U32(addr) __raw_readl(addr)
230 #define WRITE_U8(value, addr) __raw_writeb(value, addr)
231 #define WRITE_U16(value, addr) __raw_writew(value, addr)
232 #define WRITE_U32(value, addr) __raw_writel(value, addr)
233
234 #define READ_REG8(addr) readb(addr)
235 #define READ_REG16(addr) readw(addr)
236 #define READ_REG32(addr) readl(addr)
237 #define READ_REG64(addr) readq(addr)
238 #define WRITE_REG8(value, addr) writeb(value, addr)
239 #define WRITE_REG16(value, addr) writew(value, addr)
240 #define WRITE_REG32(value, addr) writel(value, addr)
241
242
243 #define LBA_CFG_TOK(bus,dfn) ((u32) ((bus)<<16 | (dfn)<<8))
244 #define LBA_CFG_BUS(tok) ((u8) ((tok)>>16))
245 #define LBA_CFG_DEV(tok) ((u8) ((tok)>>11) & 0x1f)
246 #define LBA_CFG_FUNC(tok) ((u8) ((tok)>>8 ) & 0x7)
247
248
249 /*
250 ** Extract LBA (Rope) number from HPA
251 ** REVISIT: 16 ropes for Stretch/Ike?
252 */
253 #define ROPES_PER_SBA 8
254 #define LBA_NUM(x) ((((unsigned long) x) >> 13) & (ROPES_PER_SBA-1))
255
256
257 static void
lba_dump_res(struct resource * r,int d)258 lba_dump_res(struct resource *r, int d)
259 {
260 int i;
261
262 if (NULL == r)
263 return;
264
265 printk(KERN_DEBUG "(%p)", r->parent);
266 for (i = d; i ; --i) printk(" ");
267 printk(KERN_DEBUG "%p [%lx,%lx]/%x\n", r, r->start, r->end, (int) r->flags);
268 lba_dump_res(r->child, d+2);
269 lba_dump_res(r->sibling, d);
270 }
271
272
273 /*
274 ** LBA rev 2.0, 2.1, 2.2, and 3.0 bus walks require a complex
275 ** workaround for cfg cycles:
276 ** -- preserve LBA state
277 ** -- LBA_FLAG_NO_DMA_DURING_CFG workaround
278 ** -- turn on smart mode
279 ** -- probe with config writes before doing config reads
280 ** -- check ERROR_STATUS
281 ** -- clear ERROR_STATUS
282 ** -- restore LBA state
283 **
284 ** The workaround is only used for device discovery.
285 */
286
287 static int
lba_device_present(u8 bus,u8 dfn,struct lba_device * d)288 lba_device_present( u8 bus, u8 dfn, struct lba_device *d)
289 {
290 u8 first_bus = d->hba.hba_bus->secondary;
291 u8 last_sub_bus = d->hba.hba_bus->subordinate;
292 #if 0
293 /* FIXME - see below in this function */
294 u8 dev = PCI_SLOT(dfn);
295 u8 func = PCI_FUNC(dfn);
296 #endif
297
298 ASSERT(bus >= first_bus);
299 ASSERT(bus <= last_sub_bus);
300 ASSERT((bus - first_bus) < LBA_MAX_NUM_BUSES);
301
302 if ((bus < first_bus) ||
303 (bus > last_sub_bus) ||
304 ((bus - first_bus) >= LBA_MAX_NUM_BUSES))
305 {
306 /* devices that fall into any of these cases won't get claimed */
307 return(FALSE);
308 }
309
310 #if 0
311 /*
312 ** FIXME: Need to implement code to fill the devices bitmap based
313 ** on contents of the local pci_bus tree "data base".
314 ** pci_register_ops() walks the bus for us and builds the tree.
315 ** For now, always do the config cycle.
316 */
317 bus -= first_bus;
318
319 return (((d->devices[bus][dev]) >> func) & 0x1);
320 #else
321 return TRUE;
322 #endif
323 }
324
325
326
327 #define LBA_CFG_SETUP(d, tok) { \
328 /* Save contents of error config register. */ \
329 error_config = READ_REG32(d->hba.base_addr + LBA_ERROR_CONFIG); \
330 \
331 /* Save contents of status control register. */ \
332 status_control = READ_REG32(d->hba.base_addr + LBA_STAT_CTL); \
333 \
334 /* For LBA rev 2.0, 2.1, 2.2, and 3.0, we must disable DMA \
335 ** arbitration for full bus walks. \
336 */ \
337 if (LBA_DMA_DURING_CFG_DISABLED(d)) { \
338 /* Save contents of arb mask register. */ \
339 arb_mask = READ_REG32(d->hba.base_addr + LBA_ARB_MASK); \
340 \
341 /* \
342 * Turn off all device arbitration bits (i.e. everything \
343 * except arbitration enable bit). \
344 */ \
345 WRITE_REG32(0x1, d->hba.base_addr + LBA_ARB_MASK); \
346 } \
347 \
348 /* \
349 * Set the smart mode bit so that master aborts don't cause \
350 * LBA to go into PCI fatal mode (required). \
351 */ \
352 WRITE_REG32(error_config | LBA_SMART_MODE, d->hba.base_addr + LBA_ERROR_CONFIG); \
353 }
354
355
356 #define LBA_CFG_PROBE(d, tok) { \
357 /* \
358 * Setup Vendor ID write and read back the address register \
359 * to make sure that LBA is the bus master. \
360 */ \
361 WRITE_REG32(tok | PCI_VENDOR_ID, (d)->hba.base_addr + LBA_PCI_CFG_ADDR);\
362 /* \
363 * Read address register to ensure that LBA is the bus master, \
364 * which implies that DMA traffic has stopped when DMA arb is off. \
365 */ \
366 lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
367 /* \
368 * Generate a cfg write cycle (will have no affect on \
369 * Vendor ID register since read-only). \
370 */ \
371 WRITE_REG32(~0, (d)->hba.base_addr + LBA_PCI_CFG_DATA); \
372 /* \
373 * Make sure write has completed before proceeding further, \
374 * i.e. before setting clear enable. \
375 */ \
376 lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
377 }
378
379
380 /*
381 * HPREVISIT:
382 * -- Can't tell if config cycle got the error.
383 *
384 * OV bit is broken until rev 4.0, so can't use OV bit and
385 * LBA_ERROR_LOG_ADDR to tell if error belongs to config cycle.
386 *
387 * As of rev 4.0, no longer need the error check.
388 *
389 * -- Even if we could tell, we still want to return -1
390 * for **ANY** error (not just master abort).
391 *
392 * -- Only clear non-fatal errors (we don't want to bring
393 * LBA out of pci-fatal mode).
394 *
395 * Actually, there is still a race in which
396 * we could be clearing a fatal error. We will
397 * live with this during our initial bus walk
398 * until rev 4.0 (no driver activity during
399 * initial bus walk). The initial bus walk
400 * has race conditions concerning the use of
401 * smart mode as well.
402 */
403
404 #define LBA_MASTER_ABORT_ERROR 0xc
405 #define LBA_FATAL_ERROR 0x10
406
407 #define LBA_CFG_MASTER_ABORT_CHECK(d, base, tok, error) { \
408 u32 error_status = 0; \
409 /* \
410 * Set clear enable (CE) bit. Unset by HW when new \
411 * errors are logged -- LBA HW ERS section 14.3.3). \
412 */ \
413 WRITE_REG32(status_control | CLEAR_ERRLOG_ENABLE, base + LBA_STAT_CTL); \
414 error_status = READ_REG32(base + LBA_ERROR_STATUS); \
415 if ((error_status & 0x1f) != 0) { \
416 /* \
417 * Fail the config read request. \
418 */ \
419 error = 1; \
420 if ((error_status & LBA_FATAL_ERROR) == 0) { \
421 /* \
422 * Clear error status (if fatal bit not set) by setting \
423 * clear error log bit (CL). \
424 */ \
425 WRITE_REG32(status_control | CLEAR_ERRLOG, base + LBA_STAT_CTL); \
426 } \
427 } \
428 }
429
430 #define LBA_CFG_TR4_ADDR_SETUP(d, addr) \
431 WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR)
432
433 #define LBA_CFG_ADDR_SETUP(d, addr) { \
434 WRITE_REG32(((addr) & ~3), (d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
435 /* \
436 * HPREVISIT: \
437 * -- Potentially could skip this once DMA bug fixed. \
438 * \
439 * Read address register to ensure that LBA is the bus master, \
440 * which implies that DMA traffic has stopped when DMA arb is off. \
441 */ \
442 lba_t32 = READ_REG32((d)->hba.base_addr + LBA_PCI_CFG_ADDR); \
443 }
444
445
446 #define LBA_CFG_RESTORE(d, base) { \
447 /* \
448 * Restore status control register (turn off clear enable). \
449 */ \
450 WRITE_REG32(status_control, base + LBA_STAT_CTL); \
451 /* \
452 * Restore error config register (turn off smart mode). \
453 */ \
454 WRITE_REG32(error_config, base + LBA_ERROR_CONFIG); \
455 if (LBA_DMA_DURING_CFG_DISABLED(d)) { \
456 /* \
457 * Restore arb mask register (reenables DMA arbitration). \
458 */ \
459 WRITE_REG32(arb_mask, base + LBA_ARB_MASK); \
460 } \
461 }
462
463
464
465 static unsigned int
lba_rd_cfg(struct lba_device * d,u32 tok,u8 reg,u32 size)466 lba_rd_cfg(struct lba_device *d, u32 tok, u8 reg, u32 size)
467 {
468 u32 data = ~0;
469 int error = 0;
470 u32 arb_mask = 0; /* used by LBA_CFG_SETUP/RESTORE */
471 u32 error_config = 0; /* used by LBA_CFG_SETUP/RESTORE */
472 u32 status_control = 0; /* used by LBA_CFG_SETUP/RESTORE */
473
474 ASSERT((size == sizeof(u8)) ||
475 (size == sizeof(u16)) ||
476 (size == sizeof(u32)));
477
478 if ((size != sizeof(u8)) &&
479 (size != sizeof(u16)) &&
480 (size != sizeof(u32))) {
481 return(data);
482 }
483
484 LBA_CFG_SETUP(d, tok);
485 LBA_CFG_PROBE(d, tok);
486 LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
487 if (!error) {
488 LBA_CFG_ADDR_SETUP(d, tok | reg);
489 switch (size) {
490 case sizeof(u8):
491 data = (u32) READ_REG8(d->hba.base_addr + LBA_PCI_CFG_DATA + (reg & 3));
492 break;
493 case sizeof(u16):
494 data = (u32) READ_REG16(d->hba.base_addr + LBA_PCI_CFG_DATA + (reg & 2));
495 break;
496 case sizeof(u32):
497 data = READ_REG32(d->hba.base_addr + LBA_PCI_CFG_DATA);
498 break;
499 default:
500 break; /* leave data as -1 */
501 }
502 }
503 LBA_CFG_RESTORE(d, d->hba.base_addr);
504 return(data);
505 }
506
507
508 #define LBA_CFG_RD(size, mask) \
509 static int lba_cfg_read##size (struct pci_dev *dev, int pos, u##size *data) \
510 { \
511 struct lba_device *d = LBA_DEV(dev->bus->sysdata); \
512 u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; \
513 u32 tok = LBA_CFG_TOK(local_bus,dev->devfn); \
514 \
515 /* FIXME: B2K/C3600 workaround is always use old method... */ \
516 /* if (!LBA_TR4PLUS(d) && !LBA_SKIP_PROBE(d)) */ { \
517 /* original - Generate config cycle on broken elroy \
518 with risk we will miss PCI bus errors. */ \
519 *data = (u##size) lba_rd_cfg(d, tok, pos, sizeof(u##size)); \
520 DBG_CFG("%s(%s+%2x) -> 0x%x (a)\n", __FUNCTION__, dev->slot_name, pos, *data); \
521 return(*data == (u##size) -1); \
522 } \
523 \
524 if (LBA_SKIP_PROBE(d) && (!lba_device_present(dev->bus->secondary, dev->devfn, d))) \
525 { \
526 DBG_CFG("%s(%s+%2x) -> -1 (b)\n", __FUNCTION__, dev->slot_name, pos); \
527 /* either don't want to look or know device isn't present. */ \
528 *data = (u##size) -1; \
529 return(0); \
530 } \
531 \
532 /* Basic Algorithm \
533 ** Should only get here on fully working LBA rev. \
534 ** This is how simple the code should have been. \
535 */ \
536 LBA_CFG_TR4_ADDR_SETUP(d, tok | pos); \
537 *data = READ_REG##size(d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & mask));\
538 DBG_CFG("%s(%s+%2x) -> 0x%x (c)\n", __FUNCTION__, dev->slot_name, pos, *data);\
539 return(*data == (u##size) -1); \
540 }
541
542 LBA_CFG_RD( 8, 3)
543 LBA_CFG_RD(16, 2)
544 LBA_CFG_RD(32, 0)
545
546
547
548 static void
lba_wr_cfg(struct lba_device * d,u32 tok,u8 reg,u32 data,u32 size)549 lba_wr_cfg( struct lba_device *d, u32 tok, u8 reg, u32 data, u32 size)
550 {
551 int error = 0;
552 u32 arb_mask = 0;
553 u32 error_config = 0;
554 u32 status_control = 0;
555
556 ASSERT((size == sizeof(u8)) ||
557 (size == sizeof(u16)) ||
558 (size == sizeof(u32)));
559
560 if ((size != sizeof(u8)) &&
561 (size != sizeof(u16)) &&
562 (size != sizeof(u32))) {
563 return;
564 }
565
566 LBA_CFG_SETUP(d, tok);
567 LBA_CFG_ADDR_SETUP(d, tok | reg);
568 switch (size) {
569 case sizeof(u8):
570 WRITE_REG8((u8) data, d->hba.base_addr + LBA_PCI_CFG_DATA + (reg&3));
571 break;
572 case sizeof(u16):
573 WRITE_REG16((u8) data, d->hba.base_addr + LBA_PCI_CFG_DATA +(reg&2));
574 break;
575 case sizeof(u32):
576 WRITE_REG32(data, d->hba.base_addr + LBA_PCI_CFG_DATA);
577 break;
578 default:
579 break;
580 }
581 LBA_CFG_MASTER_ABORT_CHECK(d, d->hba.base_addr, tok, error);
582 LBA_CFG_RESTORE(d, d->hba.base_addr);
583 }
584
585
586 /*
587 * LBA 4.0 config write code implements non-postable semantics
588 * by doing a read of CONFIG ADDR after the write.
589 */
590
591 #define LBA_CFG_WR(size, mask) \
592 static int lba_cfg_write##size (struct pci_dev *dev, int pos, u##size data) \
593 { \
594 struct lba_device *d = LBA_DEV(dev->bus->sysdata); \
595 u32 local_bus = (dev->bus->parent == NULL) ? 0 : dev->bus->secondary; \
596 u32 tok = LBA_CFG_TOK(local_bus,dev->devfn); \
597 \
598 ASSERT((tok & 0xff) == 0); \
599 ASSERT(pos < 0x100); \
600 \
601 if (!LBA_TR4PLUS(d) && !LBA_SKIP_PROBE(d)) { \
602 /* Original Workaround */ \
603 lba_wr_cfg(d, tok, pos, (u32) data, sizeof(u##size)); \
604 DBG_CFG("%s(%s+%2x) = 0x%x (a)\n", __FUNCTION__, dev->slot_name, pos, data); \
605 return 0; \
606 } \
607 \
608 if (LBA_SKIP_PROBE(d) && (!lba_device_present(dev->bus->secondary, dev->devfn, d))) { \
609 DBG_CFG("%s(%s+%2x) = 0x%x (b)\n", __FUNCTION__, dev->slot_name, pos, data); \
610 return 1; /* New Workaround */ \
611 } \
612 \
613 DBG_CFG("%s(%s+%2x) = 0x%x (c)\n", __FUNCTION__, dev->slot_name, pos, data); \
614 /* Basic Algorithm */ \
615 LBA_CFG_TR4_ADDR_SETUP(d, tok | pos); \
616 WRITE_REG##size(data, d->hba.base_addr + LBA_PCI_CFG_DATA + (pos & mask)); \
617 lba_t32 = READ_REG32(d->hba.base_addr + LBA_PCI_CFG_ADDR); \
618 return 0; \
619 }
620
621
622 LBA_CFG_WR( 8, 3)
623 LBA_CFG_WR(16, 2)
624 LBA_CFG_WR(32, 0)
625
626 static struct pci_ops lba_cfg_ops = {
627 read_byte: lba_cfg_read8,
628 read_word: lba_cfg_read16,
629 read_dword: lba_cfg_read32,
630 write_byte: lba_cfg_write8,
631 write_word: lba_cfg_write16,
632 write_dword: lba_cfg_write32
633 };
634
635
636
637 static void
lba_bios_init(void)638 lba_bios_init(void)
639 {
640 DBG(MODULE_NAME ": lba_bios_init\n");
641 }
642
643
644 #ifdef __LP64__
645
646 /*
647 ** Determine if a device is already configured.
648 ** If so, reserve it resources.
649 **
650 ** Read PCI cfg command register and see if I/O or MMIO is enabled.
651 ** PAT has to enable the devices it's using.
652 **
653 ** Note: resources are fixed up before we try to claim them.
654 */
655 static void
lba_claim_dev_resources(struct pci_dev * dev)656 lba_claim_dev_resources(struct pci_dev *dev)
657 {
658 u16 cmd;
659 int i, srch_flags;
660
661 (void) lba_cfg_read16(dev, PCI_COMMAND, &cmd);
662
663 srch_flags = (cmd & PCI_COMMAND_IO) ? IORESOURCE_IO : 0;
664 if (cmd & PCI_COMMAND_MEMORY)
665 srch_flags |= IORESOURCE_MEM;
666
667 if (!srch_flags)
668 return;
669
670 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
671 if (dev->resource[i].flags & srch_flags) {
672 pci_claim_resource(dev, i);
673 DBG(" claimed %s %d [%lx,%lx]/%x\n",
674 dev->slot_name, i,
675 dev->resource[i].start,
676 dev->resource[i].end,
677 (int) dev->resource[i].flags
678 );
679 }
680 }
681 }
682 #endif
683
684
685 /*
686 ** The algorithm is generic code.
687 ** But it needs to access local data structures to get the IRQ base.
688 ** Could make this a "pci_fixup_irq(bus, region)" but not sure
689 ** it's worth it.
690 **
691 ** Called by do_pci_scan_bus() immediately after each PCI bus is walked.
692 ** Resources aren't allocated until recursive buswalk below HBA is completed.
693 */
694 static void
lba_fixup_bus(struct pci_bus * bus)695 lba_fixup_bus(struct pci_bus *bus)
696 {
697 struct list_head *ln;
698 #ifdef FBB_SUPPORT
699 u16 fbb_enable = PCI_STATUS_FAST_BACK;
700 u16 status;
701 #endif
702 struct lba_device *ldev = LBA_DEV(bus->sysdata);
703 int lba_portbase = HBA_PORT_BASE(ldev->hba.hba_num);
704
705 DBG("lba_fixup_bus(0x%p) bus %d sysdata 0x%p\n",
706 bus, bus->secondary, bus->sysdata);
707
708 /*
709 ** Properly Setup MMIO resources for this bus.
710 ** pci_alloc_primary_bus() mangles this.
711 */
712 if (NULL == bus->self) {
713 int err;
714
715 DBG("lba_fixup_bus() %s [%lx/%lx]/%x\n",
716 ldev->hba.io_space.name,
717 ldev->hba.io_space.start, ldev->hba.io_space.end,
718 (int) ldev->hba.io_space.flags);
719 DBG("lba_fixup_bus() %s [%lx/%lx]/%x\n",
720 ldev->hba.lmmio_space.name,
721 ldev->hba.lmmio_space.start, ldev->hba.lmmio_space.end,
722 (int) ldev->hba.lmmio_space.flags);
723
724 err = request_resource(&ioport_resource, &(ldev->hba.io_space));
725 if (err < 0) {
726 BUG();
727 lba_dump_res(&ioport_resource, 2);
728 }
729 err = request_resource(&iomem_resource, &(ldev->hba.lmmio_space));
730 if (err < 0) {
731 BUG();
732 lba_dump_res(&iomem_resource, 2);
733 }
734
735 bus->resource[0] = &(ldev->hba.io_space);
736 bus->resource[1] = &(ldev->hba.lmmio_space);
737 } else {
738 pci_read_bridge_bases(bus);
739
740 /* Turn off downstream PreFetchable Memory range by default */
741 bus->resource[2]->start = 0;
742 bus->resource[2]->end = 0;
743 }
744
745
746 list_for_each(ln, &bus->devices) {
747 int i;
748 struct pci_dev *dev = pci_dev_b(ln);
749
750 DBG("lba_fixup_bus() %s\n", dev->name);
751
752 /* Virtualize Device/Bridge Resources. */
753 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
754 struct resource *res = &dev->resource[i];
755
756 /* If resource not allocated - skip it */
757 if (!res->start)
758 continue;
759
760 if (res->flags & IORESOURCE_IO) {
761 DBG("lba_fixup_bus() I/O Ports [%lx/%lx] -> ",
762 res->start, res->end);
763 res->start |= lba_portbase;
764 res->end |= lba_portbase;
765 DBG("[%lx/%lx]\n", res->start, res->end);
766 } else if (res->flags & IORESOURCE_MEM) {
767 /*
768 ** Convert PCI (IO_VIEW) addresses to
769 ** processor (PA_VIEW) addresses
770 */
771 DBG("lba_fixup_bus() MMIO [%lx/%lx] -> ",
772 res->start, res->end);
773 res->start = PCI_HOST_ADDR(HBA_DATA(ldev), res->start);
774 res->end = PCI_HOST_ADDR(HBA_DATA(ldev), res->end);
775 DBG("[%lx/%lx]\n", res->start, res->end);
776 }
777 }
778
779 #ifdef FBB_SUPPORT
780 /*
781 ** If one device does not support FBB transfers,
782 ** No one on the bus can be allowed to use them.
783 */
784 (void) lba_cfg_read16(dev, PCI_STATUS, &status);
785 fbb_enable &= status;
786 #endif
787
788 #ifdef __LP64__
789 if (is_pdc_pat()) {
790 /* Claim resources for PDC's devices */
791 lba_claim_dev_resources(dev);
792 }
793 #endif
794
795 /*
796 ** P2PB's have no IRQs. ignore them.
797 */
798 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)
799 continue;
800
801 /* Adjust INTERRUPT_LINE for this dev */
802 iosapic_fixup_irq(ldev->iosapic_obj, dev);
803 }
804
805 #ifdef FBB_SUPPORT
806 /* FIXME/REVISIT - finish figuring out to set FBB on both
807 ** pci_setup_bridge() clobbers PCI_BRIDGE_CONTROL.
808 ** Can't fixup here anyway....garr...
809 */
810 if (fbb_enable) {
811 if (bus->self) {
812 u8 control;
813 /* enable on PPB */
814 (void) lba_cfg_read8(bus->self, PCI_BRIDGE_CONTROL, &control);
815 (void) lba_cfg_write8(bus->self, PCI_BRIDGE_CONTROL, control | PCI_STATUS_FAST_BACK);
816
817 } else {
818 /* enable on LBA */
819 }
820 fbb_enable = PCI_COMMAND_FAST_BACK;
821 }
822
823 /* Lastly enable FBB/PERR/SERR on all devices too */
824 list_for_each(ln, &bus->devices) {
825 (void) lba_cfg_read16(dev, PCI_COMMAND, &status);
826 status |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR | fbb_enable;
827 (void) lba_cfg_write16(dev, PCI_COMMAND, status);
828 }
829 #endif
830 }
831
832
833 struct pci_bios_ops lba_bios_ops = {
834 init: lba_bios_init,
835 fixup_bus: lba_fixup_bus,
836 };
837
838
839
840
841 /*******************************************************
842 **
843 ** LBA Sprockets "I/O Port" Space Accessor Functions
844 **
845 ** This set of accessor functions is intended for use with
846 ** "legacy firmware" (ie Sprockets on Allegro/Forte boxes).
847 **
848 ** Many PCI devices don't require use of I/O port space (eg Tulip,
849 ** NCR720) since they export the same registers to both MMIO and
850 ** I/O port space. In general I/O port space is slower than
851 ** MMIO since drivers are designed so PIO writes can be posted.
852 **
853 ********************************************************/
854
855 #define LBA_PORT_IN(size, mask) \
856 static u##size lba_astro_in##size (struct pci_hba_data *d, u16 addr) \
857 { \
858 u##size t; \
859 t = READ_REG##size(LBA_ASTRO_PORT_BASE + addr); \
860 DBG_PORT(" 0x%x\n", t); \
861 return (t); \
862 }
863
864 LBA_PORT_IN( 8, 3)
865 LBA_PORT_IN(16, 2)
866 LBA_PORT_IN(32, 0)
867
868
869
870 /*
871 ** BUG X4107: Ordering broken - DMA RD return can bypass PIO WR
872 **
873 ** Fixed in Elroy 2.2. The READ_U32(..., LBA_FUNC_ID) below is
874 ** guarantee non-postable completion semantics - not avoid X4107.
875 ** The READ_U32 only guarantees the write data gets to elroy but
876 ** out to the PCI bus. We can't read stuff from I/O port space
877 ** since we don't know what has side-effects. Attempting to read
878 ** from configuration space would be suicidal given the number of
879 ** bugs in that elroy functionality.
880 **
881 ** Description:
882 ** DMA read results can improperly pass PIO writes (X4107). The
883 ** result of this bug is that if a processor modifies a location in
884 ** memory after having issued PIO writes, the PIO writes are not
885 ** guaranteed to be completed before a PCI device is allowed to see
886 ** the modified data in a DMA read.
887 **
888 ** Note that IKE bug X3719 in TR1 IKEs will result in the same
889 ** symptom.
890 **
891 ** Workaround:
892 ** The workaround for this bug is to always follow a PIO write with
893 ** a PIO read to the same bus before starting DMA on that PCI bus.
894 **
895 */
896 #define LBA_PORT_OUT(size, mask) \
897 static void lba_astro_out##size (struct pci_hba_data *d, u16 addr, u##size val) \
898 { \
899 ASSERT(d != NULL); \
900 DBG_PORT("%s(0x%p, 0x%x, 0x%x)\n", __FUNCTION__, d, addr, val); \
901 WRITE_REG##size(val, LBA_ASTRO_PORT_BASE + addr); \
902 if (LBA_DEV(d)->hw_rev < 3) \
903 lba_t32 = READ_U32(d->base_addr + LBA_FUNC_ID); \
904 }
905
906 LBA_PORT_OUT( 8, 3)
907 LBA_PORT_OUT(16, 2)
908 LBA_PORT_OUT(32, 0)
909
910
911 static struct pci_port_ops lba_astro_port_ops = {
912 inb: lba_astro_in8,
913 inw: lba_astro_in16,
914 inl: lba_astro_in32,
915 outb: lba_astro_out8,
916 outw: lba_astro_out16,
917 outl: lba_astro_out32
918 };
919
920
921 #ifdef __LP64__
922 #define PIOP_TO_GMMIO(lba, addr) \
923 ((lba)->iop_base + (((addr)&0xFFFC)<<10) + ((addr)&3))
924
925 /*******************************************************
926 **
927 ** LBA PAT "I/O Port" Space Accessor Functions
928 **
929 ** This set of accessor functions is intended for use with
930 ** "PAT PDC" firmware (ie Prelude/Rhapsody/Piranha boxes).
931 **
932 ** This uses the PIOP space located in the first 64MB of GMMIO.
933 ** Each rope gets a full 64*KB* (ie 4 bytes per page) this way.
934 ** bits 1:0 stay the same. bits 15:2 become 25:12.
935 ** Then add the base and we can generate an I/O Port cycle.
936 ********************************************************/
937 #undef LBA_PORT_IN
938 #define LBA_PORT_IN(size, mask) \
939 static u##size lba_pat_in##size (struct pci_hba_data *l, u16 addr) \
940 { \
941 u##size t; \
942 ASSERT(bus != NULL); \
943 DBG_PORT("%s(0x%p, 0x%x) ->", __FUNCTION__, l, addr); \
944 t = READ_REG##size(PIOP_TO_GMMIO(LBA_DEV(l), addr)); \
945 DBG_PORT(" 0x%x\n", t); \
946 return (t); \
947 }
948
949 LBA_PORT_IN( 8, 3)
950 LBA_PORT_IN(16, 2)
951 LBA_PORT_IN(32, 0)
952
953
954 #undef LBA_PORT_OUT
955 #define LBA_PORT_OUT(size, mask) \
956 static void lba_pat_out##size (struct pci_hba_data *l, u16 addr, u##size val) \
957 { \
958 void *where = (void *) PIOP_TO_GMMIO(LBA_DEV(l), addr); \
959 ASSERT(bus != NULL); \
960 DBG_PORT("%s(0x%p, 0x%x, 0x%x)\n", __FUNCTION__, l, addr, val); \
961 WRITE_REG##size(val, where); \
962 /* flush the I/O down to the elroy at least */ \
963 lba_t32 = READ_U32(l->base_addr + LBA_FUNC_ID); \
964 }
965
966 LBA_PORT_OUT( 8, 3)
967 LBA_PORT_OUT(16, 2)
968 LBA_PORT_OUT(32, 0)
969
970
971 static struct pci_port_ops lba_pat_port_ops = {
972 inb: lba_pat_in8,
973 inw: lba_pat_in16,
974 inl: lba_pat_in32,
975 outb: lba_pat_out8,
976 outw: lba_pat_out16,
977 outl: lba_pat_out32
978 };
979
980
981
982 /*
983 ** make range information from PDC available to PCI subsystem.
984 ** We make the PDC call here in order to get the PCI bus range
985 ** numbers. The rest will get forwarded in pcibios_fixup_bus().
986 ** We don't have a struct pci_bus assigned to us yet.
987 */
988 static void
lba_pat_resources(struct parisc_device * pa_dev,struct lba_device * lba_dev)989 lba_pat_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
990 {
991 unsigned long bytecnt;
992 pdc_pat_cell_mod_maddr_block_t pa_pdc_cell; /* PA_VIEW */
993 pdc_pat_cell_mod_maddr_block_t io_pdc_cell; /* IO_VIEW */
994 long io_count;
995 long status; /* PDC return status */
996 long pa_count;
997 int i;
998
999 /* return cell module (IO view) */
1000 status = pdc_pat_cell_module(&bytecnt, pa_dev->pcell_loc, pa_dev->mod_index,
1001 PA_VIEW, & pa_pdc_cell);
1002 pa_count = pa_pdc_cell.mod[1];
1003
1004 status |= pdc_pat_cell_module(&bytecnt, pa_dev->pcell_loc, pa_dev->mod_index,
1005 IO_VIEW, &io_pdc_cell);
1006 io_count = io_pdc_cell.mod[1];
1007
1008 /* We've already done this once for device discovery...*/
1009 if (status != PDC_OK) {
1010 panic("pdc_pat_cell_module() call failed for LBA!\n");
1011 }
1012
1013 if (PAT_GET_ENTITY(pa_pdc_cell.mod_info) != PAT_ENTITY_LBA) {
1014 panic("pdc_pat_cell_module() entity returned != PAT_ENTITY_LBA!\n");
1015 }
1016
1017 /*
1018 ** Inspect the resources PAT tells us about
1019 */
1020 for (i = 0; i < pa_count; i++) {
1021 struct {
1022 unsigned long type;
1023 unsigned long start;
1024 unsigned long end; /* aka finish */
1025 } *p, *io;
1026 struct resource *r;
1027
1028 p = (void *) &(pa_pdc_cell.mod[2+i*3]);
1029 io = (void *) &(io_pdc_cell.mod[2+i*3]);
1030
1031 /* Convert the PAT range data to PCI "struct resource" */
1032 switch(p->type & 0xff) {
1033 case PAT_PBNUM:
1034 lba_dev->hba.bus_num.start = p->start;
1035 lba_dev->hba.bus_num.end = p->end;
1036 break;
1037 case PAT_LMMIO:
1038 /* used to fix up pre-initialized MEM BARs */
1039 lba_dev->hba.lmmio_space_offset = p->start - io->start;
1040
1041 r = &(lba_dev->hba.lmmio_space);
1042 r->name = "LBA LMMIO";
1043 r->start = p->start;
1044 r->end = p->end;
1045 r->flags = IORESOURCE_MEM;
1046 r->parent = r->sibling = r->child = NULL;
1047 break;
1048 case PAT_GMMIO:
1049 printk(KERN_WARNING MODULE_NAME
1050 " range[%d] : ignoring GMMIO (0x%lx)\n",
1051 i, p->start);
1052 lba_dev->gmmio_base = p->start;
1053 break;
1054 case PAT_NPIOP:
1055 printk(KERN_WARNING MODULE_NAME
1056 " range[%d] : ignoring NPIOP (0x%lx)\n",
1057 i, p->start);
1058 break;
1059 case PAT_PIOP:
1060 /*
1061 ** Postable I/O port space is per PCI host adapter.
1062 */
1063
1064 /* save base of 64MB PIOP region */
1065 lba_dev->iop_base = p->start;
1066
1067 r = &(lba_dev->hba.io_space);
1068 r->name = "LBA I/O Port";
1069 r->start = HBA_PORT_BASE(lba_dev->hba.hba_num);
1070 r->end = r->start + HBA_PORT_SPACE_SIZE - 1;
1071 r->flags = IORESOURCE_IO;
1072 r->parent = r->sibling = r->child = NULL;
1073 break;
1074 default:
1075 printk(KERN_WARNING MODULE_NAME
1076 " range[%d] : unknown pat range type (0x%lx)\n",
1077 i, p->type & 0xff);
1078 break;
1079 }
1080 }
1081 }
1082 #endif /* __LP64__ */
1083
1084
1085 static void
lba_legacy_resources(struct parisc_device * pa_dev,struct lba_device * lba_dev)1086 lba_legacy_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
1087 {
1088 struct resource *r;
1089 unsigned long rsize;
1090 int lba_num;
1091
1092 #ifdef __LP64__
1093 /*
1094 ** Sign extend all BAR values on "legacy" platforms.
1095 ** "Sprockets" PDC (Forte/Allegro) initializes everything
1096 ** for "legacy" 32-bit OS (HPUX 10.20).
1097 ** Upper 32-bits of 64-bit BAR will be zero too.
1098 */
1099 lba_dev->hba.lmmio_space_offset = 0xffffffff00000000UL;
1100 #else
1101 lba_dev->hba.lmmio_space_offset = 0UL;
1102 #endif
1103
1104 /*
1105 ** With "legacy" firmware, the lowest byte of FW_SCRATCH
1106 ** represents bus->secondary and the second byte represents
1107 ** bus->subsidiary (i.e. highest PPB programmed by firmware).
1108 ** PCI bus walk *should* end up with the same result.
1109 ** FIXME: But we don't have sanity checks in PCI or LBA.
1110 */
1111 lba_num = READ_REG32(pa_dev->hpa + LBA_FW_SCRATCH);
1112 r = &(lba_dev->hba.bus_num);
1113 r->name = "LBA PCI Busses";
1114 r->start = lba_num & 0xff;
1115 r->end = (lba_num>>8) & 0xff;
1116
1117 /* Set up local PCI Bus resources - we don't really need
1118 ** them for Legacy boxes but it's nice to see in /proc.
1119 */
1120 r = &(lba_dev->hba.lmmio_space);
1121 r->name = "LBA PCI LMMIO";
1122 r->flags = IORESOURCE_MEM;
1123 /* Ignore "Range Enable" bit in the BASE register */
1124 r->start = PCI_HOST_ADDR(HBA_DATA(lba_dev),
1125 ((long) READ_REG32(pa_dev->hpa + LBA_LMMIO_BASE)) & ~1UL);
1126 rsize = ~READ_REG32(pa_dev->hpa + LBA_LMMIO_MASK) + 1;
1127
1128 /*
1129 ** Each rope only gets part of the distributed range.
1130 ** Adjust "window" for this rope
1131 */
1132 rsize /= ROPES_PER_SBA;
1133 r->start += rsize * LBA_NUM(pa_dev->hpa);
1134 r->end = r->start + rsize - 1 ;
1135
1136 /*
1137 ** XXX FIXME - ignore LBA_ELMMIO_BASE for now
1138 ** "Directed" ranges are used when the "distributed range" isn't
1139 ** sufficient for all devices below a given LBA. Typically devices
1140 ** like graphics cards or X25 may need a directed range when the
1141 ** bus has multiple slots (ie multiple devices) or the device
1142 ** needs more than the typical 4 or 8MB a distributed range offers.
1143 **
1144 ** The main reason for ignoring it now frigging complications.
1145 ** Directed ranges may overlap (and have precedence) over
1146 ** distributed ranges. Ie a distributed range assigned to a unused
1147 ** rope may be used by a directed range on a different rope.
1148 ** Support for graphics devices may require fixing this
1149 ** since they may be assigned a directed range which overlaps
1150 ** an existing (but unused portion of) distributed range.
1151 */
1152 r = &(lba_dev->hba.elmmio_space);
1153 r->name = "extra LBA PCI LMMIO";
1154 r->flags = IORESOURCE_MEM;
1155 r->start = READ_REG32(pa_dev->hpa + LBA_ELMMIO_BASE);
1156 r->end = 0;
1157
1158 /* check Range Enable bit */
1159 if (r->start & 1) {
1160 /* First baby step to getting Direct Ranges listed in /proc.
1161 ** AFAIK, only Sprockets PDC will setup a directed Range.
1162 */
1163
1164 r->start &= ~1;
1165 r->end = r->start;
1166 r->end += ~READ_REG32(pa_dev->hpa + LBA_ELMMIO_MASK);
1167 printk(KERN_DEBUG "WARNING: Ignoring enabled ELMMIO BASE 0x%0lx SIZE 0x%lx\n",
1168 r->start,
1169 r->end + 1);
1170
1171 }
1172
1173 r = &(lba_dev->hba.io_space);
1174 r->name = "LBA PCI I/O Ports";
1175 r->flags = IORESOURCE_IO;
1176 r->start = READ_REG32(pa_dev->hpa + LBA_IOS_BASE) & ~1L;
1177 r->end = r->start + (READ_REG32(pa_dev->hpa + LBA_IOS_MASK) ^ (HBA_PORT_SPACE_SIZE - 1));
1178
1179 /* Virtualize the I/O Port space ranges */
1180 lba_num = HBA_PORT_BASE(lba_dev->hba.hba_num);
1181 r->start |= lba_num;
1182 r->end |= lba_num;
1183 }
1184
1185
1186 /**************************************************************************
1187 **
1188 ** LBA initialization code (HW and SW)
1189 **
1190 ** o identify LBA chip itself
1191 ** o initialize LBA chip modes (HardFail)
1192 ** o FIXME: initialize DMA hints for reasonable defaults
1193 ** o enable configuration functions
1194 ** o call pci_register_ops() to discover devs (fixup/fixup_bus get invoked)
1195 **
1196 **************************************************************************/
1197
1198 static int __init
lba_hw_init(struct lba_device * d)1199 lba_hw_init(struct lba_device *d)
1200 {
1201 u32 stat;
1202 u32 bus_reset; /* PDC_PAT_BUG */
1203
1204 #if 0
1205 printk(KERN_DEBUG "LBA %lx STAT_CTL %Lx ERROR_CFG %Lx STATUS %Lx DMA_CTL %Lx\n",
1206 d->hba.base_addr,
1207 READ_REG64(d->hba.base_addr + LBA_STAT_CTL),
1208 READ_REG64(d->hba.base_addr + LBA_ERROR_CONFIG),
1209 READ_REG64(d->hba.base_addr + LBA_ERROR_STATUS),
1210 READ_REG64(d->hba.base_addr + LBA_DMA_CTL) );
1211 printk(KERN_DEBUG " ARB mask %Lx pri %Lx mode %Lx mtlt %Lx\n",
1212 READ_REG64(d->hba.base_addr + LBA_ARB_MASK),
1213 READ_REG64(d->hba.base_addr + LBA_ARB_PRI),
1214 READ_REG64(d->hba.base_addr + LBA_ARB_MODE),
1215 READ_REG64(d->hba.base_addr + LBA_ARB_MTLT) );
1216 printk(KERN_DEBUG " HINT cfg 0x%Lx\n",
1217 READ_REG64(d->hba.base_addr + LBA_HINT_CFG));
1218 printk(KERN_DEBUG " HINT reg ");
1219 { int i;
1220 for (i=LBA_HINT_BASE; i< (14*8 + LBA_HINT_BASE); i+=8)
1221 printk(" %Lx", READ_REG64(d->hba.base_addr + i));
1222 }
1223 printk("\n");
1224 #endif /* DEBUG_LBA_PAT */
1225
1226 #ifdef __LP64__
1227 #warning FIXME add support for PDC_PAT_IO "Get slot status" - OLAR support
1228 #endif
1229
1230 /* PDC_PAT_BUG: exhibited in rev 40.48 on L2000 */
1231 bus_reset = READ_REG32(d->hba.base_addr + LBA_STAT_CTL + 4) & 1;
1232 if (bus_reset) {
1233 printk(KERN_DEBUG "NOTICE: PCI bus reset still asserted! (clearing)\n");
1234 }
1235
1236 stat = READ_REG32(d->hba.base_addr + LBA_ERROR_CONFIG);
1237 if (stat & LBA_SMART_MODE) {
1238 printk(KERN_DEBUG "NOTICE: LBA in SMART mode! (cleared)\n");
1239 stat &= ~LBA_SMART_MODE;
1240 WRITE_REG32(stat, d->hba.base_addr + LBA_ERROR_CONFIG);
1241 }
1242
1243 /* Set HF mode as the default (vs. -1 mode). */
1244 stat = READ_REG32(d->hba.base_addr + LBA_STAT_CTL);
1245 WRITE_REG32(stat | HF_ENABLE, d->hba.base_addr + LBA_STAT_CTL);
1246
1247 /*
1248 ** Writing a zero to STAT_CTL.rf (bit 0) will clear reset signal
1249 ** if it's not already set. If we just cleared the PCI Bus Reset
1250 ** signal, wait a bit for the PCI devices to recover and setup.
1251 */
1252 if (bus_reset)
1253 mdelay(pci_post_reset_delay);
1254
1255 if (0 == READ_REG32(d->hba.base_addr + LBA_ARB_MASK)) {
1256 /*
1257 ** PDC_PAT_BUG: PDC rev 40.48 on L2000.
1258 ** B2000/C3600/J6000 also have this problem?
1259 **
1260 ** Elroys with hot pluggable slots don't get configured
1261 ** correctly if the slot is empty. ARB_MASK is set to 0
1262 ** and we can't master transactions on the bus if it's
1263 ** not at least one. 0x3 enables elroy and first slot.
1264 */
1265 printk(KERN_DEBUG "NOTICE: Enabling PCI Arbitration\n");
1266 WRITE_REG32(0x3, d->hba.base_addr + LBA_ARB_MASK);
1267 }
1268
1269 /*
1270 ** FIXME: Hint registers are programmed with default hint
1271 ** values by firmware. Hints should be sane even if we
1272 ** can't reprogram them the way drivers want.
1273 */
1274 return 0;
1275 }
1276
1277
1278
1279 static void __init
lba_common_init(struct lba_device * lba_dev)1280 lba_common_init(struct lba_device *lba_dev)
1281 {
1282 pci_bios = &lba_bios_ops;
1283 pcibios_register_hba(HBA_DATA(lba_dev));
1284 lba_dev->lba_lock = SPIN_LOCK_UNLOCKED;
1285
1286 /*
1287 ** Set flags which depend on hw_rev
1288 */
1289 if (!LBA_TR4PLUS(lba_dev)) {
1290 lba_dev->flags |= LBA_FLAG_NO_DMA_DURING_CFG;
1291 }
1292 }
1293
1294
1295
1296 /*
1297 ** Determine if lba should claim this chip (return 0) or not (return 1).
1298 ** If so, initialize the chip and tell other partners in crime they
1299 ** have work to do.
1300 */
1301 static int __init
lba_driver_callback(struct parisc_device * dev)1302 lba_driver_callback(struct parisc_device *dev)
1303 {
1304 struct lba_device *lba_dev;
1305 struct pci_bus *lba_bus;
1306 u32 func_class;
1307 void *tmp_obj;
1308 char *version;
1309
1310 /* Read HW Rev First */
1311 func_class = READ_REG32(dev->hpa + LBA_FCLASS);
1312 func_class &= 0xf;
1313
1314 switch (func_class) {
1315 case 0: version = "TR1.0"; break;
1316 case 1: version = "TR2.0"; break;
1317 case 2: version = "TR2.1"; break;
1318 case 3: version = "TR2.2"; break;
1319 case 4: version = "TR3.0"; break;
1320 case 5: version = "TR4.0"; break;
1321 default: version = "TR4+";
1322 }
1323
1324 printk(KERN_INFO "%s version %s (0x%x) found at 0x%lx\n",
1325 MODULE_NAME, version, func_class & 0xf, dev->hpa);
1326
1327 /* Just in case we find some prototypes... */
1328 if (func_class < 2) {
1329 printk(KERN_WARNING "Can't support LBA older than TR2.1 "
1330 "- continuing under adversity.\n");
1331 }
1332
1333 /*
1334 ** Tell I/O SAPIC driver we have a IRQ handler/region.
1335 */
1336 tmp_obj = iosapic_register(dev->hpa + LBA_IOSAPIC_BASE);
1337
1338 /* NOTE: PCI devices (e.g. 103c:1005 graphics card) which don't
1339 ** have an IRT entry will get NULL back from iosapic code.
1340 */
1341
1342 lba_dev = kmalloc(sizeof(struct lba_device), GFP_KERNEL);
1343 if (NULL == lba_dev)
1344 {
1345 printk(KERN_ERR "lba_init_chip - couldn't alloc lba_device\n");
1346 return(1);
1347 }
1348
1349 memset(lba_dev, 0, sizeof(struct lba_device));
1350
1351
1352 /* ---------- First : initialize data we already have --------- */
1353
1354 /*
1355 ** Need hw_rev to adjust configuration space behavior.
1356 ** LBA_TR4PLUS macro uses hw_rev field.
1357 */
1358 lba_dev->hw_rev = func_class;
1359
1360 lba_dev->hba.base_addr = dev->hpa; /* faster access */
1361 lba_dev->hba.dev = dev;
1362 lba_dev->iosapic_obj = tmp_obj; /* save interrupt handle */
1363 lba_dev->hba.iommu = sba_get_iommu(dev); /* get iommu data */
1364
1365 /* ------------ Second : initialize common stuff ---------- */
1366 lba_common_init(lba_dev);
1367
1368 if (lba_hw_init(lba_dev))
1369 return(1);
1370
1371 /* ---------- Third : setup I/O Port and MMIO resources --------- */
1372
1373 #ifdef __LP64__
1374 if (is_pdc_pat()) {
1375 /* PDC PAT firmware uses PIOP region of GMMIO space. */
1376 pci_port = &lba_pat_port_ops;
1377
1378 /* Go ask PDC PAT what resources this LBA has */
1379 lba_pat_resources(dev, lba_dev);
1380 } else
1381 #endif
1382 {
1383 /* Sprockets PDC uses NPIOP region */
1384 pci_port = &lba_astro_port_ops;
1385
1386 /* Poke the chip a bit for /proc output */
1387 lba_legacy_resources(dev, lba_dev);
1388 }
1389
1390 /*
1391 ** Tell PCI support another PCI bus was found.
1392 ** Walks PCI bus for us too.
1393 */
1394 lba_bus = lba_dev->hba.hba_bus =
1395 pci_scan_bus(lba_dev->hba.bus_num.start, &lba_cfg_ops, (void *) lba_dev);
1396
1397 #ifdef __LP64__
1398 if (is_pdc_pat()) {
1399 /* assign resources to un-initialized devices */
1400 DBG_PAT("LBA pcibios_assign_unassigned_resources()\n");
1401 pcibios_assign_unassigned_resources(lba_bus);
1402
1403 #ifdef DEBUG_LBA_PAT
1404 DBG_PAT("\nLBA PIOP resource tree\n");
1405 lba_dump_res(&lba_dev->hba.io_space, 2);
1406 DBG_PAT("\nLBA LMMIO resource tree\n");
1407 lba_dump_res(&lba_dev->hba.lmmio_space, 2);
1408 #endif
1409 }
1410 #endif
1411
1412 /*
1413 ** Once PCI register ops has walked the bus, access to config
1414 ** space is restricted. Avoids master aborts on config cycles.
1415 ** Early LBA revs go fatal on *any* master abort.
1416 */
1417 if (!LBA_TR4PLUS(lba_dev)) {
1418 lba_dev->flags |= LBA_FLAG_SKIP_PROBE;
1419 }
1420
1421 /* Whew! Finally done! Tell services we got this one covered. */
1422 return 0;
1423 }
1424
1425 static struct parisc_device_id lba_tbl[] = {
1426 { HPHW_BRIDGE, HVERSION_REV_ANY_ID, 0x782, 0xa },
1427 { 0, }
1428 };
1429
1430 static struct parisc_driver lba_driver = {
1431 name: MODULE_NAME,
1432 id_table: lba_tbl,
1433 probe: lba_driver_callback
1434 };
1435
1436 /*
1437 ** One time initialization to let the world know the LBA was found.
1438 ** Must be called exactly once before pci_init().
1439 */
lba_init(void)1440 void __init lba_init(void)
1441 {
1442 register_parisc_driver(&lba_driver);
1443 }
1444
1445 /*
1446 ** Initialize the IBASE/IMASK registers for LBA (Elroy).
1447 ** Only called from sba_iommu.c in order to route ranges (MMIO vs DMA).
1448 ** sba_iommu is responsible for locking (none needed at init time).
1449 */
1450 void
lba_set_iregs(struct parisc_device * lba,u32 ibase,u32 imask)1451 lba_set_iregs(struct parisc_device *lba, u32 ibase, u32 imask)
1452 {
1453 unsigned long base_addr = lba->hpa;
1454
1455 imask <<= 2; /* adjust for hints - 2 more bits */
1456
1457 ASSERT((ibase & 0x003fffff) == 0);
1458 ASSERT((imask & 0x003fffff) == 0);
1459
1460 DBG("%s() ibase 0x%x imask 0x%x\n", __FUNCTION__, ibase, imask);
1461 WRITE_REG32( imask, base_addr + LBA_IMASK);
1462 WRITE_REG32( ibase, base_addr + LBA_IBASE);
1463 }
1464
1465