1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Support for the Tundra TSI148 VME-PCI Bridge Chip
5 * Author: Martyn Welch <martyn.welch@ge.com>
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
8 * Based on work by Tom Armistead and Ajit Prem
9 * Copyright 2004 Motorola Inc.
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
15 #include <linux/types.h>
16 #include <linux/errno.h>
17 #include <linux/proc_fs.h>
18 #include <linux/pci.h>
19 #include <linux/poll.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/interrupt.h>
22 #include <linux/spinlock.h>
23 #include <linux/sched.h>
24 #include <linux/slab.h>
25 #include <linux/time.h>
27 #include <linux/uaccess.h>
28 #include <linux/byteorder/generic.h>
29 #include <linux/vme.h>
31 #include "../vme_bridge.h"
32 #include "vme_tsi148.h"
34 static int tsi148_probe(struct pci_dev
*, const struct pci_device_id
*);
35 static void tsi148_remove(struct pci_dev
*);
38 /* Module parameter */
42 static const char driver_name
[] = "vme_tsi148";
44 static const struct pci_device_id tsi148_ids
[] = {
45 { PCI_DEVICE(PCI_VENDOR_ID_TUNDRA
, PCI_DEVICE_ID_TUNDRA_TSI148
) },
49 MODULE_DEVICE_TABLE(pci
, tsi148_ids
);
51 static struct pci_driver tsi148_driver
= {
53 .id_table
= tsi148_ids
,
54 .probe
= tsi148_probe
,
55 .remove
= tsi148_remove
,
58 static void reg_join(unsigned int high
, unsigned int low
,
59 unsigned long long *variable
)
61 *variable
= (unsigned long long)high
<< 32;
62 *variable
|= (unsigned long long)low
;
65 static void reg_split(unsigned long long variable
, unsigned int *high
,
68 *low
= (unsigned int)variable
& 0xFFFFFFFF;
69 *high
= (unsigned int)(variable
>> 32);
75 static u32
tsi148_DMA_irqhandler(struct tsi148_driver
*bridge
,
80 if (channel_mask
& TSI148_LCSR_INTS_DMA0S
) {
81 wake_up(&bridge
->dma_queue
[0]);
82 serviced
|= TSI148_LCSR_INTC_DMA0C
;
84 if (channel_mask
& TSI148_LCSR_INTS_DMA1S
) {
85 wake_up(&bridge
->dma_queue
[1]);
86 serviced
|= TSI148_LCSR_INTC_DMA1C
;
93 * Wake up location monitor queue
95 static u32
tsi148_LM_irqhandler(struct tsi148_driver
*bridge
, u32 stat
)
100 for (i
= 0; i
< 4; i
++) {
101 if (stat
& TSI148_LCSR_INTS_LMS
[i
]) {
102 /* We only enable interrupts if the callback is set */
103 bridge
->lm_callback
[i
](bridge
->lm_data
[i
]);
104 serviced
|= TSI148_LCSR_INTC_LMC
[i
];
112 * Wake up mail box queue.
114 * XXX This functionality is not exposed up though API.
116 static u32
tsi148_MB_irqhandler(struct vme_bridge
*tsi148_bridge
, u32 stat
)
121 struct tsi148_driver
*bridge
;
123 bridge
= tsi148_bridge
->driver_priv
;
125 for (i
= 0; i
< 4; i
++) {
126 if (stat
& TSI148_LCSR_INTS_MBS
[i
]) {
127 val
= ioread32be(bridge
->base
+ TSI148_GCSR_MBOX
[i
]);
128 dev_err(tsi148_bridge
->parent
, "VME Mailbox %d received"
130 serviced
|= TSI148_LCSR_INTC_MBC
[i
];
138 * Display error & status message when PERR (PCI) exception interrupt occurs.
140 static u32
tsi148_PERR_irqhandler(struct vme_bridge
*tsi148_bridge
)
142 struct tsi148_driver
*bridge
;
144 bridge
= tsi148_bridge
->driver_priv
;
146 dev_err(tsi148_bridge
->parent
, "PCI Exception at address: 0x%08x:%08x, "
147 "attributes: %08x\n",
148 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAU
),
149 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAL
),
150 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAT
));
152 dev_err(tsi148_bridge
->parent
, "PCI-X attribute reg: %08x, PCI-X split "
153 "completion reg: %08x\n",
154 ioread32be(bridge
->base
+ TSI148_LCSR_EDPXA
),
155 ioread32be(bridge
->base
+ TSI148_LCSR_EDPXS
));
157 iowrite32be(TSI148_LCSR_EDPAT_EDPCL
, bridge
->base
+ TSI148_LCSR_EDPAT
);
159 return TSI148_LCSR_INTC_PERRC
;
163 * Save address and status when VME error interrupt occurs.
165 static u32
tsi148_VERR_irqhandler(struct vme_bridge
*tsi148_bridge
)
167 unsigned int error_addr_high
, error_addr_low
;
168 unsigned long long error_addr
;
171 struct tsi148_driver
*bridge
;
173 bridge
= tsi148_bridge
->driver_priv
;
175 error_addr_high
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAU
);
176 error_addr_low
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAL
);
177 error_attrib
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAT
);
178 error_am
= (error_attrib
& TSI148_LCSR_VEAT_AM_M
) >> 8;
180 reg_join(error_addr_high
, error_addr_low
, &error_addr
);
182 /* Check for exception register overflow (we have lost error data) */
183 if (error_attrib
& TSI148_LCSR_VEAT_VEOF
) {
184 dev_err(tsi148_bridge
->parent
, "VME Bus Exception Overflow "
189 vme_bus_error_handler(tsi148_bridge
, error_addr
, error_am
);
191 dev_err(tsi148_bridge
->parent
,
192 "VME Bus Error at address: 0x%llx, attributes: %08x\n",
193 error_addr
, error_attrib
);
196 iowrite32be(TSI148_LCSR_VEAT_VESCL
, bridge
->base
+ TSI148_LCSR_VEAT
);
198 return TSI148_LCSR_INTC_VERRC
;
202 * Wake up IACK queue.
204 static u32
tsi148_IACK_irqhandler(struct tsi148_driver
*bridge
)
206 wake_up(&bridge
->iack_queue
);
208 return TSI148_LCSR_INTC_IACKC
;
212 * Calling VME bus interrupt callback if provided.
214 static u32
tsi148_VIRQ_irqhandler(struct vme_bridge
*tsi148_bridge
,
217 int vec
, i
, serviced
= 0;
218 struct tsi148_driver
*bridge
;
220 bridge
= tsi148_bridge
->driver_priv
;
222 for (i
= 7; i
> 0; i
--) {
223 if (stat
& (1 << i
)) {
225 * Note: Even though the registers are defined as
226 * 32-bits in the spec, we only want to issue 8-bit
227 * IACK cycles on the bus, read from offset 3.
229 vec
= ioread8(bridge
->base
+ TSI148_LCSR_VIACK
[i
] + 3);
231 vme_irq_handler(tsi148_bridge
, i
, vec
);
233 serviced
|= (1 << i
);
241 * Top level interrupt handler. Clears appropriate interrupt status bits and
242 * then calls appropriate sub handler(s).
244 static irqreturn_t
tsi148_irqhandler(int irq
, void *ptr
)
246 u32 stat
, enable
, serviced
= 0;
247 struct vme_bridge
*tsi148_bridge
;
248 struct tsi148_driver
*bridge
;
252 bridge
= tsi148_bridge
->driver_priv
;
254 /* Determine which interrupts are unmasked and set */
255 enable
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
256 stat
= ioread32be(bridge
->base
+ TSI148_LCSR_INTS
);
258 /* Only look at unmasked interrupts */
264 /* Call subhandlers as appropriate */
266 if (stat
& (TSI148_LCSR_INTS_DMA1S
| TSI148_LCSR_INTS_DMA0S
))
267 serviced
|= tsi148_DMA_irqhandler(bridge
, stat
);
269 /* Location monitor irqs */
270 if (stat
& (TSI148_LCSR_INTS_LM3S
| TSI148_LCSR_INTS_LM2S
|
271 TSI148_LCSR_INTS_LM1S
| TSI148_LCSR_INTS_LM0S
))
272 serviced
|= tsi148_LM_irqhandler(bridge
, stat
);
275 if (stat
& (TSI148_LCSR_INTS_MB3S
| TSI148_LCSR_INTS_MB2S
|
276 TSI148_LCSR_INTS_MB1S
| TSI148_LCSR_INTS_MB0S
))
277 serviced
|= tsi148_MB_irqhandler(tsi148_bridge
, stat
);
280 if (stat
& TSI148_LCSR_INTS_PERRS
)
281 serviced
|= tsi148_PERR_irqhandler(tsi148_bridge
);
284 if (stat
& TSI148_LCSR_INTS_VERRS
)
285 serviced
|= tsi148_VERR_irqhandler(tsi148_bridge
);
288 if (stat
& TSI148_LCSR_INTS_IACKS
)
289 serviced
|= tsi148_IACK_irqhandler(bridge
);
292 if (stat
& (TSI148_LCSR_INTS_IRQ7S
| TSI148_LCSR_INTS_IRQ6S
|
293 TSI148_LCSR_INTS_IRQ5S
| TSI148_LCSR_INTS_IRQ4S
|
294 TSI148_LCSR_INTS_IRQ3S
| TSI148_LCSR_INTS_IRQ2S
|
295 TSI148_LCSR_INTS_IRQ1S
))
296 serviced
|= tsi148_VIRQ_irqhandler(tsi148_bridge
, stat
);
298 /* Clear serviced interrupts */
299 iowrite32be(serviced
, bridge
->base
+ TSI148_LCSR_INTC
);
304 static int tsi148_irq_init(struct vme_bridge
*tsi148_bridge
)
308 struct pci_dev
*pdev
;
309 struct tsi148_driver
*bridge
;
311 pdev
= to_pci_dev(tsi148_bridge
->parent
);
313 bridge
= tsi148_bridge
->driver_priv
;
315 result
= request_irq(pdev
->irq
,
318 driver_name
, tsi148_bridge
);
320 dev_err(tsi148_bridge
->parent
, "Can't get assigned pci irq "
321 "vector %02X\n", pdev
->irq
);
325 /* Enable and unmask interrupts */
326 tmp
= TSI148_LCSR_INTEO_DMA1EO
| TSI148_LCSR_INTEO_DMA0EO
|
327 TSI148_LCSR_INTEO_MB3EO
| TSI148_LCSR_INTEO_MB2EO
|
328 TSI148_LCSR_INTEO_MB1EO
| TSI148_LCSR_INTEO_MB0EO
|
329 TSI148_LCSR_INTEO_PERREO
| TSI148_LCSR_INTEO_VERREO
|
330 TSI148_LCSR_INTEO_IACKEO
;
332 /* This leaves the following interrupts masked.
333 * TSI148_LCSR_INTEO_VIEEO
334 * TSI148_LCSR_INTEO_SYSFLEO
335 * TSI148_LCSR_INTEO_ACFLEO
338 /* Don't enable Location Monitor interrupts here - they will be
339 * enabled when the location monitors are properly configured and
340 * a callback has been attached.
341 * TSI148_LCSR_INTEO_LM0EO
342 * TSI148_LCSR_INTEO_LM1EO
343 * TSI148_LCSR_INTEO_LM2EO
344 * TSI148_LCSR_INTEO_LM3EO
347 /* Don't enable VME interrupts until we add a handler, else the board
348 * will respond to it and we don't want that unless it knows how to
349 * properly deal with it.
350 * TSI148_LCSR_INTEO_IRQ7EO
351 * TSI148_LCSR_INTEO_IRQ6EO
352 * TSI148_LCSR_INTEO_IRQ5EO
353 * TSI148_LCSR_INTEO_IRQ4EO
354 * TSI148_LCSR_INTEO_IRQ3EO
355 * TSI148_LCSR_INTEO_IRQ2EO
356 * TSI148_LCSR_INTEO_IRQ1EO
359 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
360 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
365 static void tsi148_irq_exit(struct vme_bridge
*tsi148_bridge
,
366 struct pci_dev
*pdev
)
368 struct tsi148_driver
*bridge
= tsi148_bridge
->driver_priv
;
370 /* Turn off interrupts */
371 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTEO
);
372 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTEN
);
374 /* Clear all interrupts */
375 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_INTC
);
377 /* Detach interrupt handler */
378 free_irq(pdev
->irq
, tsi148_bridge
);
382 * Check to see if an IACk has been received, return true (1) or false (0).
384 static int tsi148_iack_received(struct tsi148_driver
*bridge
)
388 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VICR
);
390 if (tmp
& TSI148_LCSR_VICR_IRQS
)
397 * Configure VME interrupt
399 static void tsi148_irq_set(struct vme_bridge
*tsi148_bridge
, int level
,
402 struct pci_dev
*pdev
;
404 struct tsi148_driver
*bridge
;
406 bridge
= tsi148_bridge
->driver_priv
;
408 /* We need to do the ordering differently for enabling and disabling */
410 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
411 tmp
&= ~TSI148_LCSR_INTEN_IRQEN
[level
- 1];
412 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
414 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
415 tmp
&= ~TSI148_LCSR_INTEO_IRQEO
[level
- 1];
416 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
419 pdev
= to_pci_dev(tsi148_bridge
->parent
);
420 synchronize_irq(pdev
->irq
);
423 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
424 tmp
|= TSI148_LCSR_INTEO_IRQEO
[level
- 1];
425 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
427 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
428 tmp
|= TSI148_LCSR_INTEN_IRQEN
[level
- 1];
429 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
434 * Generate a VME bus interrupt at the requested level & vector. Wait for
435 * interrupt to be acked.
437 static int tsi148_irq_generate(struct vme_bridge
*tsi148_bridge
, int level
,
441 struct tsi148_driver
*bridge
;
443 bridge
= tsi148_bridge
->driver_priv
;
445 mutex_lock(&bridge
->vme_int
);
447 /* Read VICR register */
448 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VICR
);
451 tmp
= (tmp
& ~TSI148_LCSR_VICR_STID_M
) |
452 (statid
& TSI148_LCSR_VICR_STID_M
);
453 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VICR
);
455 /* Assert VMEbus IRQ */
456 tmp
= tmp
| TSI148_LCSR_VICR_IRQL
[level
];
457 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VICR
);
459 /* XXX Consider implementing a timeout? */
460 wait_event_interruptible(bridge
->iack_queue
,
461 tsi148_iack_received(bridge
));
463 mutex_unlock(&bridge
->vme_int
);
469 * Initialize a slave window with the requested attributes.
471 static int tsi148_slave_set(struct vme_slave_resource
*image
, int enabled
,
472 unsigned long long vme_base
, unsigned long long size
,
473 dma_addr_t pci_base
, u32 aspace
, u32 cycle
)
475 unsigned int i
, addr
= 0, granularity
= 0;
476 unsigned int temp_ctl
= 0;
477 unsigned int vme_base_low
, vme_base_high
;
478 unsigned int vme_bound_low
, vme_bound_high
;
479 unsigned int pci_offset_low
, pci_offset_high
;
480 unsigned long long vme_bound
, pci_offset
;
481 struct vme_bridge
*tsi148_bridge
;
482 struct tsi148_driver
*bridge
;
484 tsi148_bridge
= image
->parent
;
485 bridge
= tsi148_bridge
->driver_priv
;
492 addr
|= TSI148_LCSR_ITAT_AS_A16
;
495 granularity
= 0x1000;
496 addr
|= TSI148_LCSR_ITAT_AS_A24
;
499 granularity
= 0x10000;
500 addr
|= TSI148_LCSR_ITAT_AS_A32
;
503 granularity
= 0x10000;
504 addr
|= TSI148_LCSR_ITAT_AS_A64
;
507 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
512 /* Convert 64-bit variables to 2x 32-bit variables */
513 reg_split(vme_base
, &vme_base_high
, &vme_base_low
);
516 * Bound address is a valid address for the window, adjust
519 vme_bound
= vme_base
+ size
- granularity
;
520 reg_split(vme_bound
, &vme_bound_high
, &vme_bound_low
);
521 pci_offset
= (unsigned long long)pci_base
- vme_base
;
522 reg_split(pci_offset
, &pci_offset_high
, &pci_offset_low
);
524 if (vme_base_low
& (granularity
- 1)) {
525 dev_err(tsi148_bridge
->parent
, "Invalid VME base alignment\n");
528 if (vme_bound_low
& (granularity
- 1)) {
529 dev_err(tsi148_bridge
->parent
, "Invalid VME bound alignment\n");
532 if (pci_offset_low
& (granularity
- 1)) {
533 dev_err(tsi148_bridge
->parent
, "Invalid PCI Offset "
538 /* Disable while we are mucking around */
539 temp_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
540 TSI148_LCSR_OFFSET_ITAT
);
541 temp_ctl
&= ~TSI148_LCSR_ITAT_EN
;
542 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
543 TSI148_LCSR_OFFSET_ITAT
);
546 iowrite32be(vme_base_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
547 TSI148_LCSR_OFFSET_ITSAU
);
548 iowrite32be(vme_base_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
549 TSI148_LCSR_OFFSET_ITSAL
);
550 iowrite32be(vme_bound_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
551 TSI148_LCSR_OFFSET_ITEAU
);
552 iowrite32be(vme_bound_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
553 TSI148_LCSR_OFFSET_ITEAL
);
554 iowrite32be(pci_offset_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
555 TSI148_LCSR_OFFSET_ITOFU
);
556 iowrite32be(pci_offset_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
557 TSI148_LCSR_OFFSET_ITOFL
);
559 /* Setup 2eSST speeds */
560 temp_ctl
&= ~TSI148_LCSR_ITAT_2eSSTM_M
;
561 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
563 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_160
;
566 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_267
;
569 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_320
;
573 /* Setup cycle types */
574 temp_ctl
&= ~(0x1F << 7);
576 temp_ctl
|= TSI148_LCSR_ITAT_BLT
;
577 if (cycle
& VME_MBLT
)
578 temp_ctl
|= TSI148_LCSR_ITAT_MBLT
;
579 if (cycle
& VME_2eVME
)
580 temp_ctl
|= TSI148_LCSR_ITAT_2eVME
;
581 if (cycle
& VME_2eSST
)
582 temp_ctl
|= TSI148_LCSR_ITAT_2eSST
;
583 if (cycle
& VME_2eSSTB
)
584 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTB
;
586 /* Setup address space */
587 temp_ctl
&= ~TSI148_LCSR_ITAT_AS_M
;
591 if (cycle
& VME_SUPER
)
592 temp_ctl
|= TSI148_LCSR_ITAT_SUPR
;
593 if (cycle
& VME_USER
)
594 temp_ctl
|= TSI148_LCSR_ITAT_NPRIV
;
595 if (cycle
& VME_PROG
)
596 temp_ctl
|= TSI148_LCSR_ITAT_PGM
;
597 if (cycle
& VME_DATA
)
598 temp_ctl
|= TSI148_LCSR_ITAT_DATA
;
600 /* Write ctl reg without enable */
601 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
602 TSI148_LCSR_OFFSET_ITAT
);
605 temp_ctl
|= TSI148_LCSR_ITAT_EN
;
607 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
608 TSI148_LCSR_OFFSET_ITAT
);
614 * Get slave window configuration.
616 static int tsi148_slave_get(struct vme_slave_resource
*image
, int *enabled
,
617 unsigned long long *vme_base
, unsigned long long *size
,
618 dma_addr_t
*pci_base
, u32
*aspace
, u32
*cycle
)
620 unsigned int i
, granularity
= 0, ctl
= 0;
621 unsigned int vme_base_low
, vme_base_high
;
622 unsigned int vme_bound_low
, vme_bound_high
;
623 unsigned int pci_offset_low
, pci_offset_high
;
624 unsigned long long vme_bound
, pci_offset
;
625 struct tsi148_driver
*bridge
;
627 bridge
= image
->parent
->driver_priv
;
632 ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
633 TSI148_LCSR_OFFSET_ITAT
);
635 vme_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
636 TSI148_LCSR_OFFSET_ITSAU
);
637 vme_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
638 TSI148_LCSR_OFFSET_ITSAL
);
639 vme_bound_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
640 TSI148_LCSR_OFFSET_ITEAU
);
641 vme_bound_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
642 TSI148_LCSR_OFFSET_ITEAL
);
643 pci_offset_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
644 TSI148_LCSR_OFFSET_ITOFU
);
645 pci_offset_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
646 TSI148_LCSR_OFFSET_ITOFL
);
648 /* Convert 64-bit variables to 2x 32-bit variables */
649 reg_join(vme_base_high
, vme_base_low
, vme_base
);
650 reg_join(vme_bound_high
, vme_bound_low
, &vme_bound
);
651 reg_join(pci_offset_high
, pci_offset_low
, &pci_offset
);
653 *pci_base
= (dma_addr_t
)(*vme_base
+ pci_offset
);
659 if (ctl
& TSI148_LCSR_ITAT_EN
)
662 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A16
) {
666 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A24
) {
667 granularity
= 0x1000;
670 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A32
) {
671 granularity
= 0x10000;
674 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A64
) {
675 granularity
= 0x10000;
679 /* Need granularity before we set the size */
680 *size
= (unsigned long long)((vme_bound
- *vme_base
) + granularity
);
683 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_160
)
684 *cycle
|= VME_2eSST160
;
685 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_267
)
686 *cycle
|= VME_2eSST267
;
687 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_320
)
688 *cycle
|= VME_2eSST320
;
690 if (ctl
& TSI148_LCSR_ITAT_BLT
)
692 if (ctl
& TSI148_LCSR_ITAT_MBLT
)
694 if (ctl
& TSI148_LCSR_ITAT_2eVME
)
696 if (ctl
& TSI148_LCSR_ITAT_2eSST
)
698 if (ctl
& TSI148_LCSR_ITAT_2eSSTB
)
699 *cycle
|= VME_2eSSTB
;
701 if (ctl
& TSI148_LCSR_ITAT_SUPR
)
703 if (ctl
& TSI148_LCSR_ITAT_NPRIV
)
705 if (ctl
& TSI148_LCSR_ITAT_PGM
)
707 if (ctl
& TSI148_LCSR_ITAT_DATA
)
714 * Allocate and map PCI Resource
716 static int tsi148_alloc_resource(struct vme_master_resource
*image
,
717 unsigned long long size
)
719 unsigned long long existing_size
;
721 struct pci_dev
*pdev
;
722 struct vme_bridge
*tsi148_bridge
;
724 tsi148_bridge
= image
->parent
;
726 pdev
= to_pci_dev(tsi148_bridge
->parent
);
728 existing_size
= (unsigned long long)(image
->bus_resource
.end
-
729 image
->bus_resource
.start
);
731 /* If the existing size is OK, return */
732 if ((size
!= 0) && (existing_size
== (size
- 1)))
735 if (existing_size
!= 0) {
736 iounmap(image
->kern_base
);
737 image
->kern_base
= NULL
;
738 kfree(image
->bus_resource
.name
);
739 release_resource(&image
->bus_resource
);
740 memset(&image
->bus_resource
, 0, sizeof(image
->bus_resource
));
743 /* Exit here if size is zero */
747 if (!image
->bus_resource
.name
) {
748 image
->bus_resource
.name
= kmalloc(VMENAMSIZ
+3, GFP_ATOMIC
);
749 if (!image
->bus_resource
.name
) {
755 sprintf((char *)image
->bus_resource
.name
, "%s.%d", tsi148_bridge
->name
,
758 image
->bus_resource
.start
= 0;
759 image
->bus_resource
.end
= (unsigned long)size
;
760 image
->bus_resource
.flags
= IORESOURCE_MEM
;
762 retval
= pci_bus_alloc_resource(pdev
->bus
,
763 &image
->bus_resource
, size
, 0x10000, PCIBIOS_MIN_MEM
,
766 dev_err(tsi148_bridge
->parent
, "Failed to allocate mem "
767 "resource for window %d size 0x%lx start 0x%lx\n",
768 image
->number
, (unsigned long)size
,
769 (unsigned long)image
->bus_resource
.start
);
773 image
->kern_base
= ioremap(
774 image
->bus_resource
.start
, size
);
775 if (!image
->kern_base
) {
776 dev_err(tsi148_bridge
->parent
, "Failed to remap resource\n");
784 release_resource(&image
->bus_resource
);
786 kfree(image
->bus_resource
.name
);
787 memset(&image
->bus_resource
, 0, sizeof(image
->bus_resource
));
793 * Free and unmap PCI Resource
795 static void tsi148_free_resource(struct vme_master_resource
*image
)
797 iounmap(image
->kern_base
);
798 image
->kern_base
= NULL
;
799 release_resource(&image
->bus_resource
);
800 kfree(image
->bus_resource
.name
);
801 memset(&image
->bus_resource
, 0, sizeof(image
->bus_resource
));
805 * Set the attributes of an outbound window.
807 static int tsi148_master_set(struct vme_master_resource
*image
, int enabled
,
808 unsigned long long vme_base
, unsigned long long size
, u32 aspace
,
809 u32 cycle
, u32 dwidth
)
813 unsigned int temp_ctl
= 0;
814 unsigned int pci_base_low
, pci_base_high
;
815 unsigned int pci_bound_low
, pci_bound_high
;
816 unsigned int vme_offset_low
, vme_offset_high
;
817 unsigned long long pci_bound
, vme_offset
, pci_base
;
818 struct vme_bridge
*tsi148_bridge
;
819 struct tsi148_driver
*bridge
;
820 struct pci_bus_region region
;
821 struct pci_dev
*pdev
;
823 tsi148_bridge
= image
->parent
;
825 bridge
= tsi148_bridge
->driver_priv
;
827 pdev
= to_pci_dev(tsi148_bridge
->parent
);
829 /* Verify input data */
830 if (vme_base
& 0xFFFF) {
831 dev_err(tsi148_bridge
->parent
, "Invalid VME Window "
837 if ((size
== 0) && (enabled
!= 0)) {
838 dev_err(tsi148_bridge
->parent
, "Size must be non-zero for "
839 "enabled windows\n");
844 spin_lock(&image
->lock
);
846 /* Let's allocate the resource here rather than further up the stack as
847 * it avoids pushing loads of bus dependent stuff up the stack. If size
848 * is zero, any existing resource will be freed.
850 retval
= tsi148_alloc_resource(image
, size
);
852 spin_unlock(&image
->lock
);
853 dev_err(tsi148_bridge
->parent
, "Unable to allocate memory for "
863 pcibios_resource_to_bus(pdev
->bus
, ®ion
,
864 &image
->bus_resource
);
865 pci_base
= region
.start
;
868 * Bound address is a valid address for the window, adjust
869 * according to window granularity.
871 pci_bound
= pci_base
+ (size
- 0x10000);
872 vme_offset
= vme_base
- pci_base
;
875 /* Convert 64-bit variables to 2x 32-bit variables */
876 reg_split(pci_base
, &pci_base_high
, &pci_base_low
);
877 reg_split(pci_bound
, &pci_bound_high
, &pci_bound_low
);
878 reg_split(vme_offset
, &vme_offset_high
, &vme_offset_low
);
880 if (pci_base_low
& 0xFFFF) {
881 spin_unlock(&image
->lock
);
882 dev_err(tsi148_bridge
->parent
, "Invalid PCI base alignment\n");
886 if (pci_bound_low
& 0xFFFF) {
887 spin_unlock(&image
->lock
);
888 dev_err(tsi148_bridge
->parent
, "Invalid PCI bound alignment\n");
892 if (vme_offset_low
& 0xFFFF) {
893 spin_unlock(&image
->lock
);
894 dev_err(tsi148_bridge
->parent
, "Invalid VME Offset "
902 /* Disable while we are mucking around */
903 temp_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
904 TSI148_LCSR_OFFSET_OTAT
);
905 temp_ctl
&= ~TSI148_LCSR_OTAT_EN
;
906 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
907 TSI148_LCSR_OFFSET_OTAT
);
909 /* Setup 2eSST speeds */
910 temp_ctl
&= ~TSI148_LCSR_OTAT_2eSSTM_M
;
911 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
913 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_160
;
916 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_267
;
919 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_320
;
923 /* Setup cycle types */
924 if (cycle
& VME_BLT
) {
925 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
926 temp_ctl
|= TSI148_LCSR_OTAT_TM_BLT
;
928 if (cycle
& VME_MBLT
) {
929 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
930 temp_ctl
|= TSI148_LCSR_OTAT_TM_MBLT
;
932 if (cycle
& VME_2eVME
) {
933 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
934 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eVME
;
936 if (cycle
& VME_2eSST
) {
937 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
938 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eSST
;
940 if (cycle
& VME_2eSSTB
) {
941 dev_warn(tsi148_bridge
->parent
, "Currently not setting "
942 "Broadcast Select Registers\n");
943 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
944 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eSSTB
;
947 /* Setup data width */
948 temp_ctl
&= ~TSI148_LCSR_OTAT_DBW_M
;
951 temp_ctl
|= TSI148_LCSR_OTAT_DBW_16
;
954 temp_ctl
|= TSI148_LCSR_OTAT_DBW_32
;
957 spin_unlock(&image
->lock
);
958 dev_err(tsi148_bridge
->parent
, "Invalid data width\n");
963 /* Setup address space */
964 temp_ctl
&= ~TSI148_LCSR_OTAT_AMODE_M
;
967 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A16
;
970 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A24
;
973 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A32
;
976 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A64
;
979 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_CRCSR
;
982 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER1
;
985 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER2
;
988 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER3
;
991 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER4
;
994 spin_unlock(&image
->lock
);
995 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
1001 temp_ctl
&= ~(3<<4);
1002 if (cycle
& VME_SUPER
)
1003 temp_ctl
|= TSI148_LCSR_OTAT_SUP
;
1004 if (cycle
& VME_PROG
)
1005 temp_ctl
|= TSI148_LCSR_OTAT_PGM
;
1008 iowrite32be(pci_base_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1009 TSI148_LCSR_OFFSET_OTSAU
);
1010 iowrite32be(pci_base_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1011 TSI148_LCSR_OFFSET_OTSAL
);
1012 iowrite32be(pci_bound_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1013 TSI148_LCSR_OFFSET_OTEAU
);
1014 iowrite32be(pci_bound_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1015 TSI148_LCSR_OFFSET_OTEAL
);
1016 iowrite32be(vme_offset_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1017 TSI148_LCSR_OFFSET_OTOFU
);
1018 iowrite32be(vme_offset_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1019 TSI148_LCSR_OFFSET_OTOFL
);
1021 /* Write ctl reg without enable */
1022 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1023 TSI148_LCSR_OFFSET_OTAT
);
1026 temp_ctl
|= TSI148_LCSR_OTAT_EN
;
1028 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1029 TSI148_LCSR_OFFSET_OTAT
);
1031 spin_unlock(&image
->lock
);
1037 tsi148_free_resource(image
);
1045 * Set the attributes of an outbound window.
1047 * XXX Not parsing prefetch information.
1049 static int __tsi148_master_get(struct vme_master_resource
*image
, int *enabled
,
1050 unsigned long long *vme_base
, unsigned long long *size
, u32
*aspace
,
1051 u32
*cycle
, u32
*dwidth
)
1053 unsigned int i
, ctl
;
1054 unsigned int pci_base_low
, pci_base_high
;
1055 unsigned int pci_bound_low
, pci_bound_high
;
1056 unsigned int vme_offset_low
, vme_offset_high
;
1058 unsigned long long pci_base
, pci_bound
, vme_offset
;
1059 struct tsi148_driver
*bridge
;
1061 bridge
= image
->parent
->driver_priv
;
1065 ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1066 TSI148_LCSR_OFFSET_OTAT
);
1068 pci_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1069 TSI148_LCSR_OFFSET_OTSAU
);
1070 pci_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1071 TSI148_LCSR_OFFSET_OTSAL
);
1072 pci_bound_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1073 TSI148_LCSR_OFFSET_OTEAU
);
1074 pci_bound_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1075 TSI148_LCSR_OFFSET_OTEAL
);
1076 vme_offset_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1077 TSI148_LCSR_OFFSET_OTOFU
);
1078 vme_offset_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1079 TSI148_LCSR_OFFSET_OTOFL
);
1081 /* Convert 64-bit variables to 2x 32-bit variables */
1082 reg_join(pci_base_high
, pci_base_low
, &pci_base
);
1083 reg_join(pci_bound_high
, pci_bound_low
, &pci_bound
);
1084 reg_join(vme_offset_high
, vme_offset_low
, &vme_offset
);
1086 *vme_base
= pci_base
+ vme_offset
;
1087 *size
= (unsigned long long)(pci_bound
- pci_base
) + 0x10000;
1094 if (ctl
& TSI148_LCSR_OTAT_EN
)
1097 /* Setup address space */
1098 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A16
)
1100 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A24
)
1102 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A32
)
1104 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A64
)
1106 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_CRCSR
)
1107 *aspace
|= VME_CRCSR
;
1108 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER1
)
1109 *aspace
|= VME_USER1
;
1110 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER2
)
1111 *aspace
|= VME_USER2
;
1112 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER3
)
1113 *aspace
|= VME_USER3
;
1114 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER4
)
1115 *aspace
|= VME_USER4
;
1117 /* Setup 2eSST speeds */
1118 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_160
)
1119 *cycle
|= VME_2eSST160
;
1120 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_267
)
1121 *cycle
|= VME_2eSST267
;
1122 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_320
)
1123 *cycle
|= VME_2eSST320
;
1125 /* Setup cycle types */
1126 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_SCT
)
1128 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_BLT
)
1130 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_MBLT
)
1132 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eVME
)
1133 *cycle
|= VME_2eVME
;
1134 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eSST
)
1135 *cycle
|= VME_2eSST
;
1136 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eSSTB
)
1137 *cycle
|= VME_2eSSTB
;
1139 if (ctl
& TSI148_LCSR_OTAT_SUP
)
1140 *cycle
|= VME_SUPER
;
1144 if (ctl
& TSI148_LCSR_OTAT_PGM
)
1149 /* Setup data width */
1150 if ((ctl
& TSI148_LCSR_OTAT_DBW_M
) == TSI148_LCSR_OTAT_DBW_16
)
1152 if ((ctl
& TSI148_LCSR_OTAT_DBW_M
) == TSI148_LCSR_OTAT_DBW_32
)
1159 static int tsi148_master_get(struct vme_master_resource
*image
, int *enabled
,
1160 unsigned long long *vme_base
, unsigned long long *size
, u32
*aspace
,
1161 u32
*cycle
, u32
*dwidth
)
1165 spin_lock(&image
->lock
);
1167 retval
= __tsi148_master_get(image
, enabled
, vme_base
, size
, aspace
,
1170 spin_unlock(&image
->lock
);
1175 static ssize_t
tsi148_master_read(struct vme_master_resource
*image
, void *buf
,
1176 size_t count
, loff_t offset
)
1178 int retval
, enabled
;
1179 unsigned long long vme_base
, size
;
1180 u32 aspace
, cycle
, dwidth
;
1181 struct vme_error_handler
*handler
= NULL
;
1182 struct vme_bridge
*tsi148_bridge
;
1183 void __iomem
*addr
= image
->kern_base
+ offset
;
1184 unsigned int done
= 0;
1185 unsigned int count32
;
1187 tsi148_bridge
= image
->parent
;
1189 spin_lock(&image
->lock
);
1192 __tsi148_master_get(image
, &enabled
, &vme_base
, &size
, &aspace
,
1194 handler
= vme_register_error_handler(tsi148_bridge
, aspace
,
1195 vme_base
+ offset
, count
);
1197 spin_unlock(&image
->lock
);
1202 /* The following code handles VME address alignment. We cannot use
1203 * memcpy_xxx here because it may cut data transfers in to 8-bit
1204 * cycles when D16 or D32 cycles are required on the VME bus.
1205 * On the other hand, the bridge itself assures that the maximum data
1206 * cycle configured for the transfer is used and splits it
1207 * automatically for non-aligned addresses, so we don't want the
1208 * overhead of needlessly forcing small transfers for the entire cycle.
1210 if ((uintptr_t)addr
& 0x1) {
1211 *(u8
*)buf
= ioread8(addr
);
1216 if ((uintptr_t)(addr
+ done
) & 0x2) {
1217 if ((count
- done
) < 2) {
1218 *(u8
*)(buf
+ done
) = ioread8(addr
+ done
);
1222 *(u16
*)(buf
+ done
) = ioread16(addr
+ done
);
1227 count32
= (count
- done
) & ~0x3;
1228 while (done
< count32
) {
1229 *(u32
*)(buf
+ done
) = ioread32(addr
+ done
);
1233 if ((count
- done
) & 0x2) {
1234 *(u16
*)(buf
+ done
) = ioread16(addr
+ done
);
1237 if ((count
- done
) & 0x1) {
1238 *(u8
*)(buf
+ done
) = ioread8(addr
+ done
);
1246 if (handler
->num_errors
) {
1247 dev_err(image
->parent
->parent
,
1248 "First VME read error detected an at address 0x%llx\n",
1249 handler
->first_error
);
1250 retval
= handler
->first_error
- (vme_base
+ offset
);
1252 vme_unregister_error_handler(handler
);
1255 spin_unlock(&image
->lock
);
1261 static ssize_t
tsi148_master_write(struct vme_master_resource
*image
, void *buf
,
1262 size_t count
, loff_t offset
)
1264 int retval
= 0, enabled
;
1265 unsigned long long vme_base
, size
;
1266 u32 aspace
, cycle
, dwidth
;
1267 void __iomem
*addr
= image
->kern_base
+ offset
;
1268 unsigned int done
= 0;
1269 unsigned int count32
;
1271 struct vme_error_handler
*handler
= NULL
;
1272 struct vme_bridge
*tsi148_bridge
;
1273 struct tsi148_driver
*bridge
;
1275 tsi148_bridge
= image
->parent
;
1277 bridge
= tsi148_bridge
->driver_priv
;
1279 spin_lock(&image
->lock
);
1282 __tsi148_master_get(image
, &enabled
, &vme_base
, &size
, &aspace
,
1284 handler
= vme_register_error_handler(tsi148_bridge
, aspace
,
1285 vme_base
+ offset
, count
);
1287 spin_unlock(&image
->lock
);
1292 /* Here we apply for the same strategy we do in master_read
1293 * function in order to assure the correct cycles.
1295 if ((uintptr_t)addr
& 0x1) {
1296 iowrite8(*(u8
*)buf
, addr
);
1301 if ((uintptr_t)(addr
+ done
) & 0x2) {
1302 if ((count
- done
) < 2) {
1303 iowrite8(*(u8
*)(buf
+ done
), addr
+ done
);
1307 iowrite16(*(u16
*)(buf
+ done
), addr
+ done
);
1312 count32
= (count
- done
) & ~0x3;
1313 while (done
< count32
) {
1314 iowrite32(*(u32
*)(buf
+ done
), addr
+ done
);
1318 if ((count
- done
) & 0x2) {
1319 iowrite16(*(u16
*)(buf
+ done
), addr
+ done
);
1322 if ((count
- done
) & 0x1) {
1323 iowrite8(*(u8
*)(buf
+ done
), addr
+ done
);
1331 * Writes are posted. We need to do a read on the VME bus to flush out
1332 * all of the writes before we check for errors. We can't guarantee
1333 * that reading the data we have just written is safe. It is believed
1334 * that there isn't any read, write re-ordering, so we can read any
1335 * location in VME space, so lets read the Device ID from the tsi148's
1336 * own registers as mapped into CR/CSR space.
1338 * We check for saved errors in the written address range/space.
1342 ioread16(bridge
->flush_image
->kern_base
+ 0x7F000);
1344 if (handler
->num_errors
) {
1345 dev_warn(tsi148_bridge
->parent
,
1346 "First VME write error detected an at address 0x%llx\n",
1347 handler
->first_error
);
1348 retval
= handler
->first_error
- (vme_base
+ offset
);
1350 vme_unregister_error_handler(handler
);
1353 spin_unlock(&image
->lock
);
1359 * Perform an RMW cycle on the VME bus.
1361 * Requires a previously configured master window, returns final value.
1363 static unsigned int tsi148_master_rmw(struct vme_master_resource
*image
,
1364 unsigned int mask
, unsigned int compare
, unsigned int swap
,
1367 unsigned long long pci_addr
;
1368 unsigned int pci_addr_high
, pci_addr_low
;
1371 struct tsi148_driver
*bridge
;
1373 bridge
= image
->parent
->driver_priv
;
1375 /* Find the PCI address that maps to the desired VME address */
1378 /* Locking as we can only do one of these at a time */
1379 mutex_lock(&bridge
->vme_rmw
);
1382 spin_lock(&image
->lock
);
1384 pci_addr_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1385 TSI148_LCSR_OFFSET_OTSAU
);
1386 pci_addr_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1387 TSI148_LCSR_OFFSET_OTSAL
);
1389 reg_join(pci_addr_high
, pci_addr_low
, &pci_addr
);
1390 reg_split(pci_addr
+ offset
, &pci_addr_high
, &pci_addr_low
);
1392 /* Configure registers */
1393 iowrite32be(mask
, bridge
->base
+ TSI148_LCSR_RMWEN
);
1394 iowrite32be(compare
, bridge
->base
+ TSI148_LCSR_RMWC
);
1395 iowrite32be(swap
, bridge
->base
+ TSI148_LCSR_RMWS
);
1396 iowrite32be(pci_addr_high
, bridge
->base
+ TSI148_LCSR_RMWAU
);
1397 iowrite32be(pci_addr_low
, bridge
->base
+ TSI148_LCSR_RMWAL
);
1400 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VMCTRL
);
1401 tmp
|= TSI148_LCSR_VMCTRL_RMWEN
;
1402 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VMCTRL
);
1404 /* Kick process off with a read to the required address. */
1405 result
= ioread32be(image
->kern_base
+ offset
);
1408 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VMCTRL
);
1409 tmp
&= ~TSI148_LCSR_VMCTRL_RMWEN
;
1410 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VMCTRL
);
1412 spin_unlock(&image
->lock
);
1414 mutex_unlock(&bridge
->vme_rmw
);
1419 static int tsi148_dma_set_vme_src_attributes(struct device
*dev
, __be32
*attr
,
1420 u32 aspace
, u32 cycle
, u32 dwidth
)
1424 val
= be32_to_cpu(*attr
);
1426 /* Setup 2eSST speeds */
1427 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
1429 val
|= TSI148_LCSR_DSAT_2eSSTM_160
;
1432 val
|= TSI148_LCSR_DSAT_2eSSTM_267
;
1435 val
|= TSI148_LCSR_DSAT_2eSSTM_320
;
1439 /* Setup cycle types */
1440 if (cycle
& VME_SCT
)
1441 val
|= TSI148_LCSR_DSAT_TM_SCT
;
1443 if (cycle
& VME_BLT
)
1444 val
|= TSI148_LCSR_DSAT_TM_BLT
;
1446 if (cycle
& VME_MBLT
)
1447 val
|= TSI148_LCSR_DSAT_TM_MBLT
;
1449 if (cycle
& VME_2eVME
)
1450 val
|= TSI148_LCSR_DSAT_TM_2eVME
;
1452 if (cycle
& VME_2eSST
)
1453 val
|= TSI148_LCSR_DSAT_TM_2eSST
;
1455 if (cycle
& VME_2eSSTB
) {
1456 dev_err(dev
, "Currently not setting Broadcast Select "
1458 val
|= TSI148_LCSR_DSAT_TM_2eSSTB
;
1461 /* Setup data width */
1464 val
|= TSI148_LCSR_DSAT_DBW_16
;
1467 val
|= TSI148_LCSR_DSAT_DBW_32
;
1470 dev_err(dev
, "Invalid data width\n");
1474 /* Setup address space */
1477 val
|= TSI148_LCSR_DSAT_AMODE_A16
;
1480 val
|= TSI148_LCSR_DSAT_AMODE_A24
;
1483 val
|= TSI148_LCSR_DSAT_AMODE_A32
;
1486 val
|= TSI148_LCSR_DSAT_AMODE_A64
;
1489 val
|= TSI148_LCSR_DSAT_AMODE_CRCSR
;
1492 val
|= TSI148_LCSR_DSAT_AMODE_USER1
;
1495 val
|= TSI148_LCSR_DSAT_AMODE_USER2
;
1498 val
|= TSI148_LCSR_DSAT_AMODE_USER3
;
1501 val
|= TSI148_LCSR_DSAT_AMODE_USER4
;
1504 dev_err(dev
, "Invalid address space\n");
1509 if (cycle
& VME_SUPER
)
1510 val
|= TSI148_LCSR_DSAT_SUP
;
1511 if (cycle
& VME_PROG
)
1512 val
|= TSI148_LCSR_DSAT_PGM
;
1514 *attr
= cpu_to_be32(val
);
1519 static int tsi148_dma_set_vme_dest_attributes(struct device
*dev
, __be32
*attr
,
1520 u32 aspace
, u32 cycle
, u32 dwidth
)
1524 val
= be32_to_cpu(*attr
);
1526 /* Setup 2eSST speeds */
1527 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
1529 val
|= TSI148_LCSR_DDAT_2eSSTM_160
;
1532 val
|= TSI148_LCSR_DDAT_2eSSTM_267
;
1535 val
|= TSI148_LCSR_DDAT_2eSSTM_320
;
1539 /* Setup cycle types */
1540 if (cycle
& VME_SCT
)
1541 val
|= TSI148_LCSR_DDAT_TM_SCT
;
1543 if (cycle
& VME_BLT
)
1544 val
|= TSI148_LCSR_DDAT_TM_BLT
;
1546 if (cycle
& VME_MBLT
)
1547 val
|= TSI148_LCSR_DDAT_TM_MBLT
;
1549 if (cycle
& VME_2eVME
)
1550 val
|= TSI148_LCSR_DDAT_TM_2eVME
;
1552 if (cycle
& VME_2eSST
)
1553 val
|= TSI148_LCSR_DDAT_TM_2eSST
;
1555 if (cycle
& VME_2eSSTB
) {
1556 dev_err(dev
, "Currently not setting Broadcast Select "
1558 val
|= TSI148_LCSR_DDAT_TM_2eSSTB
;
1561 /* Setup data width */
1564 val
|= TSI148_LCSR_DDAT_DBW_16
;
1567 val
|= TSI148_LCSR_DDAT_DBW_32
;
1570 dev_err(dev
, "Invalid data width\n");
1574 /* Setup address space */
1577 val
|= TSI148_LCSR_DDAT_AMODE_A16
;
1580 val
|= TSI148_LCSR_DDAT_AMODE_A24
;
1583 val
|= TSI148_LCSR_DDAT_AMODE_A32
;
1586 val
|= TSI148_LCSR_DDAT_AMODE_A64
;
1589 val
|= TSI148_LCSR_DDAT_AMODE_CRCSR
;
1592 val
|= TSI148_LCSR_DDAT_AMODE_USER1
;
1595 val
|= TSI148_LCSR_DDAT_AMODE_USER2
;
1598 val
|= TSI148_LCSR_DDAT_AMODE_USER3
;
1601 val
|= TSI148_LCSR_DDAT_AMODE_USER4
;
1604 dev_err(dev
, "Invalid address space\n");
1609 if (cycle
& VME_SUPER
)
1610 val
|= TSI148_LCSR_DDAT_SUP
;
1611 if (cycle
& VME_PROG
)
1612 val
|= TSI148_LCSR_DDAT_PGM
;
1614 *attr
= cpu_to_be32(val
);
1620 * Add a link list descriptor to the list
1622 * Note: DMA engine expects the DMA descriptor to be big endian.
1624 static int tsi148_dma_list_add(struct vme_dma_list
*list
,
1625 struct vme_dma_attr
*src
, struct vme_dma_attr
*dest
, size_t count
)
1627 struct tsi148_dma_entry
*entry
, *prev
;
1628 u32 address_high
, address_low
, val
;
1629 struct vme_dma_pattern
*pattern_attr
;
1630 struct vme_dma_pci
*pci_attr
;
1631 struct vme_dma_vme
*vme_attr
;
1633 struct vme_bridge
*tsi148_bridge
;
1635 tsi148_bridge
= list
->parent
->parent
;
1637 /* Descriptor must be aligned on 64-bit boundaries */
1638 entry
= kmalloc(sizeof(*entry
), GFP_KERNEL
);
1644 /* Test descriptor alignment */
1645 if ((unsigned long)&entry
->descriptor
& 0x7) {
1646 dev_err(tsi148_bridge
->parent
, "Descriptor not aligned to 8 "
1647 "byte boundary as required: %p\n",
1648 &entry
->descriptor
);
1653 /* Given we are going to fill out the structure, we probably don't
1654 * need to zero it, but better safe than sorry for now.
1656 memset(&entry
->descriptor
, 0, sizeof(entry
->descriptor
));
1658 /* Fill out source part */
1659 switch (src
->type
) {
1660 case VME_DMA_PATTERN
:
1661 pattern_attr
= src
->private;
1663 entry
->descriptor
.dsal
= cpu_to_be32(pattern_attr
->pattern
);
1665 val
= TSI148_LCSR_DSAT_TYP_PAT
;
1667 /* Default behaviour is 32 bit pattern */
1668 if (pattern_attr
->type
& VME_DMA_PATTERN_BYTE
)
1669 val
|= TSI148_LCSR_DSAT_PSZ
;
1671 /* It seems that the default behaviour is to increment */
1672 if ((pattern_attr
->type
& VME_DMA_PATTERN_INCREMENT
) == 0)
1673 val
|= TSI148_LCSR_DSAT_NIN
;
1674 entry
->descriptor
.dsat
= cpu_to_be32(val
);
1677 pci_attr
= src
->private;
1679 reg_split((unsigned long long)pci_attr
->address
, &address_high
,
1681 entry
->descriptor
.dsau
= cpu_to_be32(address_high
);
1682 entry
->descriptor
.dsal
= cpu_to_be32(address_low
);
1683 entry
->descriptor
.dsat
= cpu_to_be32(TSI148_LCSR_DSAT_TYP_PCI
);
1686 vme_attr
= src
->private;
1688 reg_split((unsigned long long)vme_attr
->address
, &address_high
,
1690 entry
->descriptor
.dsau
= cpu_to_be32(address_high
);
1691 entry
->descriptor
.dsal
= cpu_to_be32(address_low
);
1692 entry
->descriptor
.dsat
= cpu_to_be32(TSI148_LCSR_DSAT_TYP_VME
);
1694 retval
= tsi148_dma_set_vme_src_attributes(
1695 tsi148_bridge
->parent
, &entry
->descriptor
.dsat
,
1696 vme_attr
->aspace
, vme_attr
->cycle
, vme_attr
->dwidth
);
1701 dev_err(tsi148_bridge
->parent
, "Invalid source type\n");
1707 /* Assume last link - this will be over-written by adding another */
1708 entry
->descriptor
.dnlau
= cpu_to_be32(0);
1709 entry
->descriptor
.dnlal
= cpu_to_be32(TSI148_LCSR_DNLAL_LLA
);
1711 /* Fill out destination part */
1712 switch (dest
->type
) {
1714 pci_attr
= dest
->private;
1716 reg_split((unsigned long long)pci_attr
->address
, &address_high
,
1718 entry
->descriptor
.ddau
= cpu_to_be32(address_high
);
1719 entry
->descriptor
.ddal
= cpu_to_be32(address_low
);
1720 entry
->descriptor
.ddat
= cpu_to_be32(TSI148_LCSR_DDAT_TYP_PCI
);
1723 vme_attr
= dest
->private;
1725 reg_split((unsigned long long)vme_attr
->address
, &address_high
,
1727 entry
->descriptor
.ddau
= cpu_to_be32(address_high
);
1728 entry
->descriptor
.ddal
= cpu_to_be32(address_low
);
1729 entry
->descriptor
.ddat
= cpu_to_be32(TSI148_LCSR_DDAT_TYP_VME
);
1731 retval
= tsi148_dma_set_vme_dest_attributes(
1732 tsi148_bridge
->parent
, &entry
->descriptor
.ddat
,
1733 vme_attr
->aspace
, vme_attr
->cycle
, vme_attr
->dwidth
);
1738 dev_err(tsi148_bridge
->parent
, "Invalid destination type\n");
1744 /* Fill out count */
1745 entry
->descriptor
.dcnt
= cpu_to_be32((u32
)count
);
1748 list_add_tail(&entry
->list
, &list
->entries
);
1750 entry
->dma_handle
= dma_map_single(tsi148_bridge
->parent
,
1752 sizeof(entry
->descriptor
),
1754 if (dma_mapping_error(tsi148_bridge
->parent
, entry
->dma_handle
)) {
1755 dev_err(tsi148_bridge
->parent
, "DMA mapping error\n");
1760 /* Fill out previous descriptors "Next Address" */
1761 if (entry
->list
.prev
!= &list
->entries
) {
1762 reg_split((unsigned long long)entry
->dma_handle
, &address_high
,
1764 prev
= list_entry(entry
->list
.prev
, struct tsi148_dma_entry
,
1766 prev
->descriptor
.dnlau
= cpu_to_be32(address_high
);
1767 prev
->descriptor
.dnlal
= cpu_to_be32(address_low
);
1783 * Check to see if the provided DMA channel is busy.
1785 static int tsi148_dma_busy(struct vme_bridge
*tsi148_bridge
, int channel
)
1788 struct tsi148_driver
*bridge
;
1790 bridge
= tsi148_bridge
->driver_priv
;
1792 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1793 TSI148_LCSR_OFFSET_DSTA
);
1795 if (tmp
& TSI148_LCSR_DSTA_BSY
)
1803 * Execute a previously generated link list
1805 * XXX Need to provide control register configuration.
1807 static int tsi148_dma_list_exec(struct vme_dma_list
*list
)
1809 struct vme_dma_resource
*ctrlr
;
1810 int channel
, retval
;
1811 struct tsi148_dma_entry
*entry
;
1812 u32 bus_addr_high
, bus_addr_low
;
1813 u32 val
, dctlreg
= 0;
1814 struct vme_bridge
*tsi148_bridge
;
1815 struct tsi148_driver
*bridge
;
1817 ctrlr
= list
->parent
;
1819 tsi148_bridge
= ctrlr
->parent
;
1821 bridge
= tsi148_bridge
->driver_priv
;
1823 mutex_lock(&ctrlr
->mtx
);
1825 channel
= ctrlr
->number
;
1827 if (!list_empty(&ctrlr
->running
)) {
1829 * XXX We have an active DMA transfer and currently haven't
1830 * sorted out the mechanism for "pending" DMA transfers.
1833 /* Need to add to pending here */
1834 mutex_unlock(&ctrlr
->mtx
);
1837 list_add(&list
->list
, &ctrlr
->running
);
1840 /* Get first bus address and write into registers */
1841 entry
= list_first_entry(&list
->entries
, struct tsi148_dma_entry
,
1844 mutex_unlock(&ctrlr
->mtx
);
1846 reg_split(entry
->dma_handle
, &bus_addr_high
, &bus_addr_low
);
1848 iowrite32be(bus_addr_high
, bridge
->base
+
1849 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DNLAU
);
1850 iowrite32be(bus_addr_low
, bridge
->base
+
1851 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DNLAL
);
1853 dctlreg
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1854 TSI148_LCSR_OFFSET_DCTL
);
1856 /* Start the operation */
1857 iowrite32be(dctlreg
| TSI148_LCSR_DCTL_DGO
, bridge
->base
+
1858 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DCTL
);
1860 retval
= wait_event_interruptible(bridge
->dma_queue
[channel
],
1861 tsi148_dma_busy(ctrlr
->parent
, channel
));
1864 iowrite32be(dctlreg
| TSI148_LCSR_DCTL_ABT
, bridge
->base
+
1865 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DCTL
);
1866 /* Wait for the operation to abort */
1867 wait_event(bridge
->dma_queue
[channel
],
1868 tsi148_dma_busy(ctrlr
->parent
, channel
));
1874 * Read status register, this register is valid until we kick off a
1877 val
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1878 TSI148_LCSR_OFFSET_DSTA
);
1880 if (val
& TSI148_LCSR_DSTA_VBE
) {
1881 dev_err(tsi148_bridge
->parent
, "DMA Error. DSTA=%08X\n", val
);
1886 /* Remove list from running list */
1887 mutex_lock(&ctrlr
->mtx
);
1888 list_del(&list
->list
);
1889 mutex_unlock(&ctrlr
->mtx
);
1895 * Clean up a previously generated link list
1897 * We have a separate function, don't assume that the chain can't be reused.
1899 static int tsi148_dma_list_empty(struct vme_dma_list
*list
)
1901 struct list_head
*pos
, *temp
;
1902 struct tsi148_dma_entry
*entry
;
1904 struct vme_bridge
*tsi148_bridge
= list
->parent
->parent
;
1906 /* detach and free each entry */
1907 list_for_each_safe(pos
, temp
, &list
->entries
) {
1909 entry
= list_entry(pos
, struct tsi148_dma_entry
, list
);
1911 dma_unmap_single(tsi148_bridge
->parent
, entry
->dma_handle
,
1912 sizeof(struct tsi148_dma_descriptor
), DMA_TO_DEVICE
);
1920 * All 4 location monitors reside at the same base - this is therefore a
1921 * system wide configuration.
1923 * This does not enable the LM monitor - that should be done when the first
1924 * callback is attached and disabled when the last callback is removed.
1926 static int tsi148_lm_set(struct vme_lm_resource
*lm
, unsigned long long lm_base
,
1927 u32 aspace
, u32 cycle
)
1929 u32 lm_base_high
, lm_base_low
, lm_ctl
= 0;
1931 struct vme_bridge
*tsi148_bridge
;
1932 struct tsi148_driver
*bridge
;
1934 tsi148_bridge
= lm
->parent
;
1936 bridge
= tsi148_bridge
->driver_priv
;
1938 mutex_lock(&lm
->mtx
);
1940 /* If we already have a callback attached, we can't move it! */
1941 for (i
= 0; i
< lm
->monitors
; i
++) {
1942 if (bridge
->lm_callback
[i
]) {
1943 mutex_unlock(&lm
->mtx
);
1944 dev_err(tsi148_bridge
->parent
, "Location monitor "
1945 "callback attached, can't reset\n");
1952 lm_ctl
|= TSI148_LCSR_LMAT_AS_A16
;
1955 lm_ctl
|= TSI148_LCSR_LMAT_AS_A24
;
1958 lm_ctl
|= TSI148_LCSR_LMAT_AS_A32
;
1961 lm_ctl
|= TSI148_LCSR_LMAT_AS_A64
;
1964 mutex_unlock(&lm
->mtx
);
1965 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
1970 if (cycle
& VME_SUPER
)
1971 lm_ctl
|= TSI148_LCSR_LMAT_SUPR
;
1972 if (cycle
& VME_USER
)
1973 lm_ctl
|= TSI148_LCSR_LMAT_NPRIV
;
1974 if (cycle
& VME_PROG
)
1975 lm_ctl
|= TSI148_LCSR_LMAT_PGM
;
1976 if (cycle
& VME_DATA
)
1977 lm_ctl
|= TSI148_LCSR_LMAT_DATA
;
1979 reg_split(lm_base
, &lm_base_high
, &lm_base_low
);
1981 iowrite32be(lm_base_high
, bridge
->base
+ TSI148_LCSR_LMBAU
);
1982 iowrite32be(lm_base_low
, bridge
->base
+ TSI148_LCSR_LMBAL
);
1983 iowrite32be(lm_ctl
, bridge
->base
+ TSI148_LCSR_LMAT
);
1985 mutex_unlock(&lm
->mtx
);
1990 /* Get configuration of the callback monitor and return whether it is enabled
1993 static int tsi148_lm_get(struct vme_lm_resource
*lm
,
1994 unsigned long long *lm_base
, u32
*aspace
, u32
*cycle
)
1996 u32 lm_base_high
, lm_base_low
, lm_ctl
, enabled
= 0;
1997 struct tsi148_driver
*bridge
;
1999 bridge
= lm
->parent
->driver_priv
;
2001 mutex_lock(&lm
->mtx
);
2003 lm_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_LMBAU
);
2004 lm_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_LMBAL
);
2005 lm_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2007 reg_join(lm_base_high
, lm_base_low
, lm_base
);
2009 if (lm_ctl
& TSI148_LCSR_LMAT_EN
)
2012 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A16
)
2015 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A24
)
2018 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A32
)
2021 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A64
)
2025 if (lm_ctl
& TSI148_LCSR_LMAT_SUPR
)
2026 *cycle
|= VME_SUPER
;
2027 if (lm_ctl
& TSI148_LCSR_LMAT_NPRIV
)
2029 if (lm_ctl
& TSI148_LCSR_LMAT_PGM
)
2031 if (lm_ctl
& TSI148_LCSR_LMAT_DATA
)
2034 mutex_unlock(&lm
->mtx
);
2040 * Attach a callback to a specific location monitor.
2042 * Callback will be passed the monitor triggered.
2044 static int tsi148_lm_attach(struct vme_lm_resource
*lm
, int monitor
,
2045 void (*callback
)(void *), void *data
)
2048 struct vme_bridge
*tsi148_bridge
;
2049 struct tsi148_driver
*bridge
;
2051 tsi148_bridge
= lm
->parent
;
2053 bridge
= tsi148_bridge
->driver_priv
;
2055 mutex_lock(&lm
->mtx
);
2057 /* Ensure that the location monitor is configured - need PGM or DATA */
2058 lm_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2059 if ((lm_ctl
& (TSI148_LCSR_LMAT_PGM
| TSI148_LCSR_LMAT_DATA
)) == 0) {
2060 mutex_unlock(&lm
->mtx
);
2061 dev_err(tsi148_bridge
->parent
, "Location monitor not properly "
2066 /* Check that a callback isn't already attached */
2067 if (bridge
->lm_callback
[monitor
]) {
2068 mutex_unlock(&lm
->mtx
);
2069 dev_err(tsi148_bridge
->parent
, "Existing callback attached\n");
2073 /* Attach callback */
2074 bridge
->lm_callback
[monitor
] = callback
;
2075 bridge
->lm_data
[monitor
] = data
;
2077 /* Enable Location Monitor interrupt */
2078 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
2079 tmp
|= TSI148_LCSR_INTEN_LMEN
[monitor
];
2080 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
2082 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
2083 tmp
|= TSI148_LCSR_INTEO_LMEO
[monitor
];
2084 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
2086 /* Ensure that global Location Monitor Enable set */
2087 if ((lm_ctl
& TSI148_LCSR_LMAT_EN
) == 0) {
2088 lm_ctl
|= TSI148_LCSR_LMAT_EN
;
2089 iowrite32be(lm_ctl
, bridge
->base
+ TSI148_LCSR_LMAT
);
2092 mutex_unlock(&lm
->mtx
);
2098 * Detach a callback function forn a specific location monitor.
2100 static int tsi148_lm_detach(struct vme_lm_resource
*lm
, int monitor
)
2103 struct tsi148_driver
*bridge
;
2105 bridge
= lm
->parent
->driver_priv
;
2107 mutex_lock(&lm
->mtx
);
2109 /* Disable Location Monitor and ensure previous interrupts are clear */
2110 lm_en
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
2111 lm_en
&= ~TSI148_LCSR_INTEN_LMEN
[monitor
];
2112 iowrite32be(lm_en
, bridge
->base
+ TSI148_LCSR_INTEN
);
2114 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
2115 tmp
&= ~TSI148_LCSR_INTEO_LMEO
[monitor
];
2116 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
2118 iowrite32be(TSI148_LCSR_INTC_LMC
[monitor
],
2119 bridge
->base
+ TSI148_LCSR_INTC
);
2121 /* Detach callback */
2122 bridge
->lm_callback
[monitor
] = NULL
;
2123 bridge
->lm_data
[monitor
] = NULL
;
2125 /* If all location monitors disabled, disable global Location Monitor */
2126 if ((lm_en
& (TSI148_LCSR_INTS_LM0S
| TSI148_LCSR_INTS_LM1S
|
2127 TSI148_LCSR_INTS_LM2S
| TSI148_LCSR_INTS_LM3S
)) == 0) {
2128 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2129 tmp
&= ~TSI148_LCSR_LMAT_EN
;
2130 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_LMAT
);
2133 mutex_unlock(&lm
->mtx
);
2139 * Determine Geographical Addressing
2141 static int tsi148_slot_get(struct vme_bridge
*tsi148_bridge
)
2144 struct tsi148_driver
*bridge
;
2146 bridge
= tsi148_bridge
->driver_priv
;
2149 slot
= ioread32be(bridge
->base
+ TSI148_LCSR_VSTAT
);
2150 slot
= slot
& TSI148_LCSR_VSTAT_GA_M
;
2157 static void *tsi148_alloc_consistent(struct device
*parent
, size_t size
,
2160 struct pci_dev
*pdev
;
2162 /* Find pci_dev container of dev */
2163 pdev
= to_pci_dev(parent
);
2165 return pci_alloc_consistent(pdev
, size
, dma
);
2168 static void tsi148_free_consistent(struct device
*parent
, size_t size
,
2169 void *vaddr
, dma_addr_t dma
)
2171 struct pci_dev
*pdev
;
2173 /* Find pci_dev container of dev */
2174 pdev
= to_pci_dev(parent
);
2176 pci_free_consistent(pdev
, size
, vaddr
, dma
);
2180 * Configure CR/CSR space
2182 * Access to the CR/CSR can be configured at power-up. The location of the
2183 * CR/CSR registers in the CR/CSR address space is determined by the boards
2184 * Auto-ID or Geographic address. This function ensures that the window is
2185 * enabled at an offset consistent with the boards geopgraphic address.
2187 * Each board has a 512kB window, with the highest 4kB being used for the
2188 * boards registers, this means there is a fix length 508kB window which must
2189 * be mapped onto PCI memory.
2191 static int tsi148_crcsr_init(struct vme_bridge
*tsi148_bridge
,
2192 struct pci_dev
*pdev
)
2194 u32 cbar
, crat
, vstat
;
2195 u32 crcsr_bus_high
, crcsr_bus_low
;
2197 struct tsi148_driver
*bridge
;
2199 bridge
= tsi148_bridge
->driver_priv
;
2201 /* Allocate mem for CR/CSR image */
2202 bridge
->crcsr_kernel
= pci_zalloc_consistent(pdev
, VME_CRCSR_BUF_SIZE
,
2203 &bridge
->crcsr_bus
);
2204 if (!bridge
->crcsr_kernel
) {
2205 dev_err(tsi148_bridge
->parent
, "Failed to allocate memory for "
2210 reg_split(bridge
->crcsr_bus
, &crcsr_bus_high
, &crcsr_bus_low
);
2212 iowrite32be(crcsr_bus_high
, bridge
->base
+ TSI148_LCSR_CROU
);
2213 iowrite32be(crcsr_bus_low
, bridge
->base
+ TSI148_LCSR_CROL
);
2215 /* Ensure that the CR/CSR is configured at the correct offset */
2216 cbar
= ioread32be(bridge
->base
+ TSI148_CBAR
);
2217 cbar
= (cbar
& TSI148_CRCSR_CBAR_M
)>>3;
2219 vstat
= tsi148_slot_get(tsi148_bridge
);
2221 if (cbar
!= vstat
) {
2223 dev_info(tsi148_bridge
->parent
, "Setting CR/CSR offset\n");
2224 iowrite32be(cbar
<<3, bridge
->base
+ TSI148_CBAR
);
2226 dev_info(tsi148_bridge
->parent
, "CR/CSR Offset: %d\n", cbar
);
2228 crat
= ioread32be(bridge
->base
+ TSI148_LCSR_CRAT
);
2229 if (crat
& TSI148_LCSR_CRAT_EN
)
2230 dev_info(tsi148_bridge
->parent
, "CR/CSR already enabled\n");
2232 dev_info(tsi148_bridge
->parent
, "Enabling CR/CSR space\n");
2233 iowrite32be(crat
| TSI148_LCSR_CRAT_EN
,
2234 bridge
->base
+ TSI148_LCSR_CRAT
);
2237 /* If we want flushed, error-checked writes, set up a window
2238 * over the CR/CSR registers. We read from here to safely flush
2239 * through VME writes.
2242 retval
= tsi148_master_set(bridge
->flush_image
, 1,
2243 (vstat
* 0x80000), 0x80000, VME_CRCSR
, VME_SCT
,
2246 dev_err(tsi148_bridge
->parent
, "Configuring flush image"
2254 static void tsi148_crcsr_exit(struct vme_bridge
*tsi148_bridge
,
2255 struct pci_dev
*pdev
)
2258 struct tsi148_driver
*bridge
;
2260 bridge
= tsi148_bridge
->driver_priv
;
2262 /* Turn off CR/CSR space */
2263 crat
= ioread32be(bridge
->base
+ TSI148_LCSR_CRAT
);
2264 iowrite32be(crat
& ~TSI148_LCSR_CRAT_EN
,
2265 bridge
->base
+ TSI148_LCSR_CRAT
);
2268 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CROU
);
2269 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CROL
);
2271 pci_free_consistent(pdev
, VME_CRCSR_BUF_SIZE
, bridge
->crcsr_kernel
,
2275 static int tsi148_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
2277 int retval
, i
, master_num
;
2279 struct list_head
*pos
= NULL
, *n
;
2280 struct vme_bridge
*tsi148_bridge
;
2281 struct tsi148_driver
*tsi148_device
;
2282 struct vme_master_resource
*master_image
;
2283 struct vme_slave_resource
*slave_image
;
2284 struct vme_dma_resource
*dma_ctrlr
;
2285 struct vme_lm_resource
*lm
;
2287 /* If we want to support more than one of each bridge, we need to
2288 * dynamically generate this so we get one per device
2290 tsi148_bridge
= kzalloc(sizeof(*tsi148_bridge
), GFP_KERNEL
);
2291 if (!tsi148_bridge
) {
2295 vme_init_bridge(tsi148_bridge
);
2297 tsi148_device
= kzalloc(sizeof(*tsi148_device
), GFP_KERNEL
);
2298 if (!tsi148_device
) {
2303 tsi148_bridge
->driver_priv
= tsi148_device
;
2305 /* Enable the device */
2306 retval
= pci_enable_device(pdev
);
2308 dev_err(&pdev
->dev
, "Unable to enable device\n");
2313 retval
= pci_request_regions(pdev
, driver_name
);
2315 dev_err(&pdev
->dev
, "Unable to reserve resources\n");
2319 /* map registers in BAR 0 */
2320 tsi148_device
->base
= ioremap(pci_resource_start(pdev
, 0),
2322 if (!tsi148_device
->base
) {
2323 dev_err(&pdev
->dev
, "Unable to remap CRG region\n");
2328 /* Check to see if the mapping worked out */
2329 data
= ioread32(tsi148_device
->base
+ TSI148_PCFS_ID
) & 0x0000FFFF;
2330 if (data
!= PCI_VENDOR_ID_TUNDRA
) {
2331 dev_err(&pdev
->dev
, "CRG region check failed\n");
2336 /* Initialize wait queues & mutual exclusion flags */
2337 init_waitqueue_head(&tsi148_device
->dma_queue
[0]);
2338 init_waitqueue_head(&tsi148_device
->dma_queue
[1]);
2339 init_waitqueue_head(&tsi148_device
->iack_queue
);
2340 mutex_init(&tsi148_device
->vme_int
);
2341 mutex_init(&tsi148_device
->vme_rmw
);
2343 tsi148_bridge
->parent
= &pdev
->dev
;
2344 strcpy(tsi148_bridge
->name
, driver_name
);
2347 retval
= tsi148_irq_init(tsi148_bridge
);
2349 dev_err(&pdev
->dev
, "Chip Initialization failed.\n");
2353 /* If we are going to flush writes, we need to read from the VME bus.
2354 * We need to do this safely, thus we read the devices own CR/CSR
2355 * register. To do this we must set up a window in CR/CSR space and
2356 * hence have one less master window resource available.
2358 master_num
= TSI148_MAX_MASTER
;
2362 tsi148_device
->flush_image
=
2363 kmalloc(sizeof(*tsi148_device
->flush_image
),
2365 if (!tsi148_device
->flush_image
) {
2369 tsi148_device
->flush_image
->parent
= tsi148_bridge
;
2370 spin_lock_init(&tsi148_device
->flush_image
->lock
);
2371 tsi148_device
->flush_image
->locked
= 1;
2372 tsi148_device
->flush_image
->number
= master_num
;
2373 memset(&tsi148_device
->flush_image
->bus_resource
, 0,
2374 sizeof(tsi148_device
->flush_image
->bus_resource
));
2375 tsi148_device
->flush_image
->kern_base
= NULL
;
2378 /* Add master windows to list */
2379 for (i
= 0; i
< master_num
; i
++) {
2380 master_image
= kmalloc(sizeof(*master_image
), GFP_KERNEL
);
2381 if (!master_image
) {
2385 master_image
->parent
= tsi148_bridge
;
2386 spin_lock_init(&master_image
->lock
);
2387 master_image
->locked
= 0;
2388 master_image
->number
= i
;
2389 master_image
->address_attr
= VME_A16
| VME_A24
| VME_A32
|
2390 VME_A64
| VME_CRCSR
| VME_USER1
| VME_USER2
|
2391 VME_USER3
| VME_USER4
;
2392 master_image
->cycle_attr
= VME_SCT
| VME_BLT
| VME_MBLT
|
2393 VME_2eVME
| VME_2eSST
| VME_2eSSTB
| VME_2eSST160
|
2394 VME_2eSST267
| VME_2eSST320
| VME_SUPER
| VME_USER
|
2395 VME_PROG
| VME_DATA
;
2396 master_image
->width_attr
= VME_D16
| VME_D32
;
2397 memset(&master_image
->bus_resource
, 0,
2398 sizeof(master_image
->bus_resource
));
2399 master_image
->kern_base
= NULL
;
2400 list_add_tail(&master_image
->list
,
2401 &tsi148_bridge
->master_resources
);
2404 /* Add slave windows to list */
2405 for (i
= 0; i
< TSI148_MAX_SLAVE
; i
++) {
2406 slave_image
= kmalloc(sizeof(*slave_image
), GFP_KERNEL
);
2411 slave_image
->parent
= tsi148_bridge
;
2412 mutex_init(&slave_image
->mtx
);
2413 slave_image
->locked
= 0;
2414 slave_image
->number
= i
;
2415 slave_image
->address_attr
= VME_A16
| VME_A24
| VME_A32
|
2417 slave_image
->cycle_attr
= VME_SCT
| VME_BLT
| VME_MBLT
|
2418 VME_2eVME
| VME_2eSST
| VME_2eSSTB
| VME_2eSST160
|
2419 VME_2eSST267
| VME_2eSST320
| VME_SUPER
| VME_USER
|
2420 VME_PROG
| VME_DATA
;
2421 list_add_tail(&slave_image
->list
,
2422 &tsi148_bridge
->slave_resources
);
2425 /* Add dma engines to list */
2426 for (i
= 0; i
< TSI148_MAX_DMA
; i
++) {
2427 dma_ctrlr
= kmalloc(sizeof(*dma_ctrlr
), GFP_KERNEL
);
2432 dma_ctrlr
->parent
= tsi148_bridge
;
2433 mutex_init(&dma_ctrlr
->mtx
);
2434 dma_ctrlr
->locked
= 0;
2435 dma_ctrlr
->number
= i
;
2436 dma_ctrlr
->route_attr
= VME_DMA_VME_TO_MEM
|
2437 VME_DMA_MEM_TO_VME
| VME_DMA_VME_TO_VME
|
2438 VME_DMA_MEM_TO_MEM
| VME_DMA_PATTERN_TO_VME
|
2439 VME_DMA_PATTERN_TO_MEM
;
2440 INIT_LIST_HEAD(&dma_ctrlr
->pending
);
2441 INIT_LIST_HEAD(&dma_ctrlr
->running
);
2442 list_add_tail(&dma_ctrlr
->list
,
2443 &tsi148_bridge
->dma_resources
);
2446 /* Add location monitor to list */
2447 lm
= kmalloc(sizeof(*lm
), GFP_KERNEL
);
2452 lm
->parent
= tsi148_bridge
;
2453 mutex_init(&lm
->mtx
);
2457 list_add_tail(&lm
->list
, &tsi148_bridge
->lm_resources
);
2459 tsi148_bridge
->slave_get
= tsi148_slave_get
;
2460 tsi148_bridge
->slave_set
= tsi148_slave_set
;
2461 tsi148_bridge
->master_get
= tsi148_master_get
;
2462 tsi148_bridge
->master_set
= tsi148_master_set
;
2463 tsi148_bridge
->master_read
= tsi148_master_read
;
2464 tsi148_bridge
->master_write
= tsi148_master_write
;
2465 tsi148_bridge
->master_rmw
= tsi148_master_rmw
;
2466 tsi148_bridge
->dma_list_add
= tsi148_dma_list_add
;
2467 tsi148_bridge
->dma_list_exec
= tsi148_dma_list_exec
;
2468 tsi148_bridge
->dma_list_empty
= tsi148_dma_list_empty
;
2469 tsi148_bridge
->irq_set
= tsi148_irq_set
;
2470 tsi148_bridge
->irq_generate
= tsi148_irq_generate
;
2471 tsi148_bridge
->lm_set
= tsi148_lm_set
;
2472 tsi148_bridge
->lm_get
= tsi148_lm_get
;
2473 tsi148_bridge
->lm_attach
= tsi148_lm_attach
;
2474 tsi148_bridge
->lm_detach
= tsi148_lm_detach
;
2475 tsi148_bridge
->slot_get
= tsi148_slot_get
;
2476 tsi148_bridge
->alloc_consistent
= tsi148_alloc_consistent
;
2477 tsi148_bridge
->free_consistent
= tsi148_free_consistent
;
2479 data
= ioread32be(tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2480 dev_info(&pdev
->dev
, "Board is%s the VME system controller\n",
2481 (data
& TSI148_LCSR_VSTAT_SCONS
) ? "" : " not");
2483 dev_info(&pdev
->dev
, "VME geographical address is %d\n",
2484 data
& TSI148_LCSR_VSTAT_GA_M
);
2486 dev_info(&pdev
->dev
, "VME geographical address is set to %d\n",
2489 dev_info(&pdev
->dev
, "VME Write and flush and error check is %s\n",
2490 err_chk
? "enabled" : "disabled");
2492 retval
= tsi148_crcsr_init(tsi148_bridge
, pdev
);
2494 dev_err(&pdev
->dev
, "CR/CSR configuration failed.\n");
2498 retval
= vme_register_bridge(tsi148_bridge
);
2500 dev_err(&pdev
->dev
, "Chip Registration failed.\n");
2504 pci_set_drvdata(pdev
, tsi148_bridge
);
2506 /* Clear VME bus "board fail", and "power-up reset" lines */
2507 data
= ioread32be(tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2508 data
&= ~TSI148_LCSR_VSTAT_BRDFL
;
2509 data
|= TSI148_LCSR_VSTAT_CPURST
;
2510 iowrite32be(data
, tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2515 tsi148_crcsr_exit(tsi148_bridge
, pdev
);
2518 /* resources are stored in link list */
2519 list_for_each_safe(pos
, n
, &tsi148_bridge
->lm_resources
) {
2520 lm
= list_entry(pos
, struct vme_lm_resource
, list
);
2525 /* resources are stored in link list */
2526 list_for_each_safe(pos
, n
, &tsi148_bridge
->dma_resources
) {
2527 dma_ctrlr
= list_entry(pos
, struct vme_dma_resource
, list
);
2532 /* resources are stored in link list */
2533 list_for_each_safe(pos
, n
, &tsi148_bridge
->slave_resources
) {
2534 slave_image
= list_entry(pos
, struct vme_slave_resource
, list
);
2539 /* resources are stored in link list */
2540 list_for_each_safe(pos
, n
, &tsi148_bridge
->master_resources
) {
2541 master_image
= list_entry(pos
, struct vme_master_resource
,
2544 kfree(master_image
);
2547 tsi148_irq_exit(tsi148_bridge
, pdev
);
2550 iounmap(tsi148_device
->base
);
2552 pci_release_regions(pdev
);
2554 pci_disable_device(pdev
);
2556 kfree(tsi148_device
);
2558 kfree(tsi148_bridge
);
2564 static void tsi148_remove(struct pci_dev
*pdev
)
2566 struct list_head
*pos
= NULL
;
2567 struct list_head
*tmplist
;
2568 struct vme_master_resource
*master_image
;
2569 struct vme_slave_resource
*slave_image
;
2570 struct vme_dma_resource
*dma_ctrlr
;
2572 struct tsi148_driver
*bridge
;
2573 struct vme_bridge
*tsi148_bridge
= pci_get_drvdata(pdev
);
2575 bridge
= tsi148_bridge
->driver_priv
;
2578 dev_dbg(&pdev
->dev
, "Driver is being unloaded.\n");
2581 * Shutdown all inbound and outbound windows.
2583 for (i
= 0; i
< 8; i
++) {
2584 iowrite32be(0, bridge
->base
+ TSI148_LCSR_IT
[i
] +
2585 TSI148_LCSR_OFFSET_ITAT
);
2586 iowrite32be(0, bridge
->base
+ TSI148_LCSR_OT
[i
] +
2587 TSI148_LCSR_OFFSET_OTAT
);
2591 * Shutdown Location monitor.
2593 iowrite32be(0, bridge
->base
+ TSI148_LCSR_LMAT
);
2598 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CSRAT
);
2601 * Clear error status.
2603 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_EDPAT
);
2604 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_VEAT
);
2605 iowrite32be(0x07000700, bridge
->base
+ TSI148_LCSR_PSTAT
);
2608 * Remove VIRQ interrupt (if any)
2610 if (ioread32be(bridge
->base
+ TSI148_LCSR_VICR
) & 0x800)
2611 iowrite32be(0x8000, bridge
->base
+ TSI148_LCSR_VICR
);
2614 * Map all Interrupts to PCI INTA
2616 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTM1
);
2617 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTM2
);
2619 tsi148_irq_exit(tsi148_bridge
, pdev
);
2621 vme_unregister_bridge(tsi148_bridge
);
2623 tsi148_crcsr_exit(tsi148_bridge
, pdev
);
2625 /* resources are stored in link list */
2626 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->dma_resources
) {
2627 dma_ctrlr
= list_entry(pos
, struct vme_dma_resource
, list
);
2632 /* resources are stored in link list */
2633 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->slave_resources
) {
2634 slave_image
= list_entry(pos
, struct vme_slave_resource
, list
);
2639 /* resources are stored in link list */
2640 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->master_resources
) {
2641 master_image
= list_entry(pos
, struct vme_master_resource
,
2644 kfree(master_image
);
2647 iounmap(bridge
->base
);
2649 pci_release_regions(pdev
);
2651 pci_disable_device(pdev
);
2653 kfree(tsi148_bridge
->driver_priv
);
2655 kfree(tsi148_bridge
);
2658 module_pci_driver(tsi148_driver
);
2660 MODULE_PARM_DESC(err_chk
, "Check for VME errors on reads and writes");
2661 module_param(err_chk
, bool, 0);
2663 MODULE_PARM_DESC(geoid
, "Override geographical addressing");
2664 module_param(geoid
, int, 0);
2666 MODULE_DESCRIPTION("VME driver for the Tundra Tempe VME bridge");
2667 MODULE_LICENSE("GPL");