2 * Support for the Tundra TSI148 VME-PCI Bridge Chip
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7 * Based on work by Tom Armistead and Ajit Prem
8 * Copyright 2004 Motorola Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
19 #include <linux/types.h>
20 #include <linux/errno.h>
21 #include <linux/proc_fs.h>
22 #include <linux/pci.h>
23 #include <linux/poll.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/interrupt.h>
26 #include <linux/spinlock.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/time.h>
31 #include <linux/uaccess.h>
32 #include <linux/byteorder/generic.h>
33 #include <linux/vme.h>
35 #include "../vme_bridge.h"
36 #include "vme_tsi148.h"
38 static int tsi148_probe(struct pci_dev
*, const struct pci_device_id
*);
39 static void tsi148_remove(struct pci_dev
*);
42 /* Module parameter */
46 static const char driver_name
[] = "vme_tsi148";
48 static const struct pci_device_id tsi148_ids
[] = {
49 { PCI_DEVICE(PCI_VENDOR_ID_TUNDRA
, PCI_DEVICE_ID_TUNDRA_TSI148
) },
53 static struct pci_driver tsi148_driver
= {
55 .id_table
= tsi148_ids
,
56 .probe
= tsi148_probe
,
57 .remove
= tsi148_remove
,
60 static void reg_join(unsigned int high
, unsigned int low
,
61 unsigned long long *variable
)
63 *variable
= (unsigned long long)high
<< 32;
64 *variable
|= (unsigned long long)low
;
67 static void reg_split(unsigned long long variable
, unsigned int *high
,
70 *low
= (unsigned int)variable
& 0xFFFFFFFF;
71 *high
= (unsigned int)(variable
>> 32);
77 static u32
tsi148_DMA_irqhandler(struct tsi148_driver
*bridge
,
82 if (channel_mask
& TSI148_LCSR_INTS_DMA0S
) {
83 wake_up(&bridge
->dma_queue
[0]);
84 serviced
|= TSI148_LCSR_INTC_DMA0C
;
86 if (channel_mask
& TSI148_LCSR_INTS_DMA1S
) {
87 wake_up(&bridge
->dma_queue
[1]);
88 serviced
|= TSI148_LCSR_INTC_DMA1C
;
95 * Wake up location monitor queue
97 static u32
tsi148_LM_irqhandler(struct tsi148_driver
*bridge
, u32 stat
)
102 for (i
= 0; i
< 4; i
++) {
103 if (stat
& TSI148_LCSR_INTS_LMS
[i
]) {
104 /* We only enable interrupts if the callback is set */
105 bridge
->lm_callback
[i
](i
);
106 serviced
|= TSI148_LCSR_INTC_LMC
[i
];
114 * Wake up mail box queue.
116 * XXX This functionality is not exposed up though API.
118 static u32
tsi148_MB_irqhandler(struct vme_bridge
*tsi148_bridge
, u32 stat
)
123 struct tsi148_driver
*bridge
;
125 bridge
= tsi148_bridge
->driver_priv
;
127 for (i
= 0; i
< 4; i
++) {
128 if (stat
& TSI148_LCSR_INTS_MBS
[i
]) {
129 val
= ioread32be(bridge
->base
+ TSI148_GCSR_MBOX
[i
]);
130 dev_err(tsi148_bridge
->parent
, "VME Mailbox %d received"
132 serviced
|= TSI148_LCSR_INTC_MBC
[i
];
140 * Display error & status message when PERR (PCI) exception interrupt occurs.
142 static u32
tsi148_PERR_irqhandler(struct vme_bridge
*tsi148_bridge
)
144 struct tsi148_driver
*bridge
;
146 bridge
= tsi148_bridge
->driver_priv
;
148 dev_err(tsi148_bridge
->parent
, "PCI Exception at address: 0x%08x:%08x, "
149 "attributes: %08x\n",
150 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAU
),
151 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAL
),
152 ioread32be(bridge
->base
+ TSI148_LCSR_EDPAT
));
154 dev_err(tsi148_bridge
->parent
, "PCI-X attribute reg: %08x, PCI-X split "
155 "completion reg: %08x\n",
156 ioread32be(bridge
->base
+ TSI148_LCSR_EDPXA
),
157 ioread32be(bridge
->base
+ TSI148_LCSR_EDPXS
));
159 iowrite32be(TSI148_LCSR_EDPAT_EDPCL
, bridge
->base
+ TSI148_LCSR_EDPAT
);
161 return TSI148_LCSR_INTC_PERRC
;
165 * Save address and status when VME error interrupt occurs.
167 static u32
tsi148_VERR_irqhandler(struct vme_bridge
*tsi148_bridge
)
169 unsigned int error_addr_high
, error_addr_low
;
170 unsigned long long error_addr
;
173 struct tsi148_driver
*bridge
;
175 bridge
= tsi148_bridge
->driver_priv
;
177 error_addr_high
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAU
);
178 error_addr_low
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAL
);
179 error_attrib
= ioread32be(bridge
->base
+ TSI148_LCSR_VEAT
);
180 error_am
= (error_attrib
& TSI148_LCSR_VEAT_AM_M
) >> 8;
182 reg_join(error_addr_high
, error_addr_low
, &error_addr
);
184 /* Check for exception register overflow (we have lost error data) */
185 if (error_attrib
& TSI148_LCSR_VEAT_VEOF
) {
186 dev_err(tsi148_bridge
->parent
, "VME Bus Exception Overflow "
191 vme_bus_error_handler(tsi148_bridge
, error_addr
, error_am
);
193 dev_err(tsi148_bridge
->parent
,
194 "VME Bus Error at address: 0x%llx, attributes: %08x\n",
195 error_addr
, error_attrib
);
198 iowrite32be(TSI148_LCSR_VEAT_VESCL
, bridge
->base
+ TSI148_LCSR_VEAT
);
200 return TSI148_LCSR_INTC_VERRC
;
204 * Wake up IACK queue.
206 static u32
tsi148_IACK_irqhandler(struct tsi148_driver
*bridge
)
208 wake_up(&bridge
->iack_queue
);
210 return TSI148_LCSR_INTC_IACKC
;
214 * Calling VME bus interrupt callback if provided.
216 static u32
tsi148_VIRQ_irqhandler(struct vme_bridge
*tsi148_bridge
,
219 int vec
, i
, serviced
= 0;
220 struct tsi148_driver
*bridge
;
222 bridge
= tsi148_bridge
->driver_priv
;
224 for (i
= 7; i
> 0; i
--) {
225 if (stat
& (1 << i
)) {
227 * Note: Even though the registers are defined as
228 * 32-bits in the spec, we only want to issue 8-bit
229 * IACK cycles on the bus, read from offset 3.
231 vec
= ioread8(bridge
->base
+ TSI148_LCSR_VIACK
[i
] + 3);
233 vme_irq_handler(tsi148_bridge
, i
, vec
);
235 serviced
|= (1 << i
);
243 * Top level interrupt handler. Clears appropriate interrupt status bits and
244 * then calls appropriate sub handler(s).
246 static irqreturn_t
tsi148_irqhandler(int irq
, void *ptr
)
248 u32 stat
, enable
, serviced
= 0;
249 struct vme_bridge
*tsi148_bridge
;
250 struct tsi148_driver
*bridge
;
254 bridge
= tsi148_bridge
->driver_priv
;
256 /* Determine which interrupts are unmasked and set */
257 enable
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
258 stat
= ioread32be(bridge
->base
+ TSI148_LCSR_INTS
);
260 /* Only look at unmasked interrupts */
266 /* Call subhandlers as appropriate */
268 if (stat
& (TSI148_LCSR_INTS_DMA1S
| TSI148_LCSR_INTS_DMA0S
))
269 serviced
|= tsi148_DMA_irqhandler(bridge
, stat
);
271 /* Location monitor irqs */
272 if (stat
& (TSI148_LCSR_INTS_LM3S
| TSI148_LCSR_INTS_LM2S
|
273 TSI148_LCSR_INTS_LM1S
| TSI148_LCSR_INTS_LM0S
))
274 serviced
|= tsi148_LM_irqhandler(bridge
, stat
);
277 if (stat
& (TSI148_LCSR_INTS_MB3S
| TSI148_LCSR_INTS_MB2S
|
278 TSI148_LCSR_INTS_MB1S
| TSI148_LCSR_INTS_MB0S
))
279 serviced
|= tsi148_MB_irqhandler(tsi148_bridge
, stat
);
282 if (stat
& TSI148_LCSR_INTS_PERRS
)
283 serviced
|= tsi148_PERR_irqhandler(tsi148_bridge
);
286 if (stat
& TSI148_LCSR_INTS_VERRS
)
287 serviced
|= tsi148_VERR_irqhandler(tsi148_bridge
);
290 if (stat
& TSI148_LCSR_INTS_IACKS
)
291 serviced
|= tsi148_IACK_irqhandler(bridge
);
294 if (stat
& (TSI148_LCSR_INTS_IRQ7S
| TSI148_LCSR_INTS_IRQ6S
|
295 TSI148_LCSR_INTS_IRQ5S
| TSI148_LCSR_INTS_IRQ4S
|
296 TSI148_LCSR_INTS_IRQ3S
| TSI148_LCSR_INTS_IRQ2S
|
297 TSI148_LCSR_INTS_IRQ1S
))
298 serviced
|= tsi148_VIRQ_irqhandler(tsi148_bridge
, stat
);
300 /* Clear serviced interrupts */
301 iowrite32be(serviced
, bridge
->base
+ TSI148_LCSR_INTC
);
306 static int tsi148_irq_init(struct vme_bridge
*tsi148_bridge
)
310 struct pci_dev
*pdev
;
311 struct tsi148_driver
*bridge
;
313 pdev
= to_pci_dev(tsi148_bridge
->parent
);
315 bridge
= tsi148_bridge
->driver_priv
;
317 result
= request_irq(pdev
->irq
,
320 driver_name
, tsi148_bridge
);
322 dev_err(tsi148_bridge
->parent
, "Can't get assigned pci irq "
323 "vector %02X\n", pdev
->irq
);
327 /* Enable and unmask interrupts */
328 tmp
= TSI148_LCSR_INTEO_DMA1EO
| TSI148_LCSR_INTEO_DMA0EO
|
329 TSI148_LCSR_INTEO_MB3EO
| TSI148_LCSR_INTEO_MB2EO
|
330 TSI148_LCSR_INTEO_MB1EO
| TSI148_LCSR_INTEO_MB0EO
|
331 TSI148_LCSR_INTEO_PERREO
| TSI148_LCSR_INTEO_VERREO
|
332 TSI148_LCSR_INTEO_IACKEO
;
334 /* This leaves the following interrupts masked.
335 * TSI148_LCSR_INTEO_VIEEO
336 * TSI148_LCSR_INTEO_SYSFLEO
337 * TSI148_LCSR_INTEO_ACFLEO
340 /* Don't enable Location Monitor interrupts here - they will be
341 * enabled when the location monitors are properly configured and
342 * a callback has been attached.
343 * TSI148_LCSR_INTEO_LM0EO
344 * TSI148_LCSR_INTEO_LM1EO
345 * TSI148_LCSR_INTEO_LM2EO
346 * TSI148_LCSR_INTEO_LM3EO
349 /* Don't enable VME interrupts until we add a handler, else the board
350 * will respond to it and we don't want that unless it knows how to
351 * properly deal with it.
352 * TSI148_LCSR_INTEO_IRQ7EO
353 * TSI148_LCSR_INTEO_IRQ6EO
354 * TSI148_LCSR_INTEO_IRQ5EO
355 * TSI148_LCSR_INTEO_IRQ4EO
356 * TSI148_LCSR_INTEO_IRQ3EO
357 * TSI148_LCSR_INTEO_IRQ2EO
358 * TSI148_LCSR_INTEO_IRQ1EO
361 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
362 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
367 static void tsi148_irq_exit(struct vme_bridge
*tsi148_bridge
,
368 struct pci_dev
*pdev
)
370 struct tsi148_driver
*bridge
= tsi148_bridge
->driver_priv
;
372 /* Turn off interrupts */
373 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTEO
);
374 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTEN
);
376 /* Clear all interrupts */
377 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_INTC
);
379 /* Detach interrupt handler */
380 free_irq(pdev
->irq
, tsi148_bridge
);
384 * Check to see if an IACk has been received, return true (1) or false (0).
386 static int tsi148_iack_received(struct tsi148_driver
*bridge
)
390 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VICR
);
392 if (tmp
& TSI148_LCSR_VICR_IRQS
)
399 * Configure VME interrupt
401 static void tsi148_irq_set(struct vme_bridge
*tsi148_bridge
, int level
,
404 struct pci_dev
*pdev
;
406 struct tsi148_driver
*bridge
;
408 bridge
= tsi148_bridge
->driver_priv
;
410 /* We need to do the ordering differently for enabling and disabling */
412 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
413 tmp
&= ~TSI148_LCSR_INTEN_IRQEN
[level
- 1];
414 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
416 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
417 tmp
&= ~TSI148_LCSR_INTEO_IRQEO
[level
- 1];
418 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
421 pdev
= to_pci_dev(tsi148_bridge
->parent
);
422 synchronize_irq(pdev
->irq
);
425 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
426 tmp
|= TSI148_LCSR_INTEO_IRQEO
[level
- 1];
427 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
429 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
430 tmp
|= TSI148_LCSR_INTEN_IRQEN
[level
- 1];
431 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
436 * Generate a VME bus interrupt at the requested level & vector. Wait for
437 * interrupt to be acked.
439 static int tsi148_irq_generate(struct vme_bridge
*tsi148_bridge
, int level
,
443 struct tsi148_driver
*bridge
;
445 bridge
= tsi148_bridge
->driver_priv
;
447 mutex_lock(&bridge
->vme_int
);
449 /* Read VICR register */
450 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VICR
);
453 tmp
= (tmp
& ~TSI148_LCSR_VICR_STID_M
) |
454 (statid
& TSI148_LCSR_VICR_STID_M
);
455 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VICR
);
457 /* Assert VMEbus IRQ */
458 tmp
= tmp
| TSI148_LCSR_VICR_IRQL
[level
];
459 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VICR
);
461 /* XXX Consider implementing a timeout? */
462 wait_event_interruptible(bridge
->iack_queue
,
463 tsi148_iack_received(bridge
));
465 mutex_unlock(&bridge
->vme_int
);
471 * Initialize a slave window with the requested attributes.
473 static int tsi148_slave_set(struct vme_slave_resource
*image
, int enabled
,
474 unsigned long long vme_base
, unsigned long long size
,
475 dma_addr_t pci_base
, u32 aspace
, u32 cycle
)
477 unsigned int i
, addr
= 0, granularity
= 0;
478 unsigned int temp_ctl
= 0;
479 unsigned int vme_base_low
, vme_base_high
;
480 unsigned int vme_bound_low
, vme_bound_high
;
481 unsigned int pci_offset_low
, pci_offset_high
;
482 unsigned long long vme_bound
, pci_offset
;
483 struct vme_bridge
*tsi148_bridge
;
484 struct tsi148_driver
*bridge
;
486 tsi148_bridge
= image
->parent
;
487 bridge
= tsi148_bridge
->driver_priv
;
494 addr
|= TSI148_LCSR_ITAT_AS_A16
;
497 granularity
= 0x1000;
498 addr
|= TSI148_LCSR_ITAT_AS_A24
;
501 granularity
= 0x10000;
502 addr
|= TSI148_LCSR_ITAT_AS_A32
;
505 granularity
= 0x10000;
506 addr
|= TSI148_LCSR_ITAT_AS_A64
;
509 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
514 /* Convert 64-bit variables to 2x 32-bit variables */
515 reg_split(vme_base
, &vme_base_high
, &vme_base_low
);
518 * Bound address is a valid address for the window, adjust
521 vme_bound
= vme_base
+ size
- granularity
;
522 reg_split(vme_bound
, &vme_bound_high
, &vme_bound_low
);
523 pci_offset
= (unsigned long long)pci_base
- vme_base
;
524 reg_split(pci_offset
, &pci_offset_high
, &pci_offset_low
);
526 if (vme_base_low
& (granularity
- 1)) {
527 dev_err(tsi148_bridge
->parent
, "Invalid VME base alignment\n");
530 if (vme_bound_low
& (granularity
- 1)) {
531 dev_err(tsi148_bridge
->parent
, "Invalid VME bound alignment\n");
534 if (pci_offset_low
& (granularity
- 1)) {
535 dev_err(tsi148_bridge
->parent
, "Invalid PCI Offset "
540 /* Disable while we are mucking around */
541 temp_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
542 TSI148_LCSR_OFFSET_ITAT
);
543 temp_ctl
&= ~TSI148_LCSR_ITAT_EN
;
544 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
545 TSI148_LCSR_OFFSET_ITAT
);
548 iowrite32be(vme_base_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
549 TSI148_LCSR_OFFSET_ITSAU
);
550 iowrite32be(vme_base_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
551 TSI148_LCSR_OFFSET_ITSAL
);
552 iowrite32be(vme_bound_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
553 TSI148_LCSR_OFFSET_ITEAU
);
554 iowrite32be(vme_bound_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
555 TSI148_LCSR_OFFSET_ITEAL
);
556 iowrite32be(pci_offset_high
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
557 TSI148_LCSR_OFFSET_ITOFU
);
558 iowrite32be(pci_offset_low
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
559 TSI148_LCSR_OFFSET_ITOFL
);
561 /* Setup 2eSST speeds */
562 temp_ctl
&= ~TSI148_LCSR_ITAT_2eSSTM_M
;
563 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
565 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_160
;
568 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_267
;
571 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTM_320
;
575 /* Setup cycle types */
576 temp_ctl
&= ~(0x1F << 7);
578 temp_ctl
|= TSI148_LCSR_ITAT_BLT
;
579 if (cycle
& VME_MBLT
)
580 temp_ctl
|= TSI148_LCSR_ITAT_MBLT
;
581 if (cycle
& VME_2eVME
)
582 temp_ctl
|= TSI148_LCSR_ITAT_2eVME
;
583 if (cycle
& VME_2eSST
)
584 temp_ctl
|= TSI148_LCSR_ITAT_2eSST
;
585 if (cycle
& VME_2eSSTB
)
586 temp_ctl
|= TSI148_LCSR_ITAT_2eSSTB
;
588 /* Setup address space */
589 temp_ctl
&= ~TSI148_LCSR_ITAT_AS_M
;
593 if (cycle
& VME_SUPER
)
594 temp_ctl
|= TSI148_LCSR_ITAT_SUPR
;
595 if (cycle
& VME_USER
)
596 temp_ctl
|= TSI148_LCSR_ITAT_NPRIV
;
597 if (cycle
& VME_PROG
)
598 temp_ctl
|= TSI148_LCSR_ITAT_PGM
;
599 if (cycle
& VME_DATA
)
600 temp_ctl
|= TSI148_LCSR_ITAT_DATA
;
602 /* Write ctl reg without enable */
603 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
604 TSI148_LCSR_OFFSET_ITAT
);
607 temp_ctl
|= TSI148_LCSR_ITAT_EN
;
609 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_IT
[i
] +
610 TSI148_LCSR_OFFSET_ITAT
);
616 * Get slave window configuration.
618 static int tsi148_slave_get(struct vme_slave_resource
*image
, int *enabled
,
619 unsigned long long *vme_base
, unsigned long long *size
,
620 dma_addr_t
*pci_base
, u32
*aspace
, u32
*cycle
)
622 unsigned int i
, granularity
= 0, ctl
= 0;
623 unsigned int vme_base_low
, vme_base_high
;
624 unsigned int vme_bound_low
, vme_bound_high
;
625 unsigned int pci_offset_low
, pci_offset_high
;
626 unsigned long long vme_bound
, pci_offset
;
627 struct tsi148_driver
*bridge
;
629 bridge
= image
->parent
->driver_priv
;
634 ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
635 TSI148_LCSR_OFFSET_ITAT
);
637 vme_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
638 TSI148_LCSR_OFFSET_ITSAU
);
639 vme_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
640 TSI148_LCSR_OFFSET_ITSAL
);
641 vme_bound_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
642 TSI148_LCSR_OFFSET_ITEAU
);
643 vme_bound_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
644 TSI148_LCSR_OFFSET_ITEAL
);
645 pci_offset_high
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
646 TSI148_LCSR_OFFSET_ITOFU
);
647 pci_offset_low
= ioread32be(bridge
->base
+ TSI148_LCSR_IT
[i
] +
648 TSI148_LCSR_OFFSET_ITOFL
);
650 /* Convert 64-bit variables to 2x 32-bit variables */
651 reg_join(vme_base_high
, vme_base_low
, vme_base
);
652 reg_join(vme_bound_high
, vme_bound_low
, &vme_bound
);
653 reg_join(pci_offset_high
, pci_offset_low
, &pci_offset
);
655 *pci_base
= (dma_addr_t
)(*vme_base
+ pci_offset
);
661 if (ctl
& TSI148_LCSR_ITAT_EN
)
664 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A16
) {
668 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A24
) {
669 granularity
= 0x1000;
672 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A32
) {
673 granularity
= 0x10000;
676 if ((ctl
& TSI148_LCSR_ITAT_AS_M
) == TSI148_LCSR_ITAT_AS_A64
) {
677 granularity
= 0x10000;
681 /* Need granularity before we set the size */
682 *size
= (unsigned long long)((vme_bound
- *vme_base
) + granularity
);
685 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_160
)
686 *cycle
|= VME_2eSST160
;
687 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_267
)
688 *cycle
|= VME_2eSST267
;
689 if ((ctl
& TSI148_LCSR_ITAT_2eSSTM_M
) == TSI148_LCSR_ITAT_2eSSTM_320
)
690 *cycle
|= VME_2eSST320
;
692 if (ctl
& TSI148_LCSR_ITAT_BLT
)
694 if (ctl
& TSI148_LCSR_ITAT_MBLT
)
696 if (ctl
& TSI148_LCSR_ITAT_2eVME
)
698 if (ctl
& TSI148_LCSR_ITAT_2eSST
)
700 if (ctl
& TSI148_LCSR_ITAT_2eSSTB
)
701 *cycle
|= VME_2eSSTB
;
703 if (ctl
& TSI148_LCSR_ITAT_SUPR
)
705 if (ctl
& TSI148_LCSR_ITAT_NPRIV
)
707 if (ctl
& TSI148_LCSR_ITAT_PGM
)
709 if (ctl
& TSI148_LCSR_ITAT_DATA
)
716 * Allocate and map PCI Resource
718 static int tsi148_alloc_resource(struct vme_master_resource
*image
,
719 unsigned long long size
)
721 unsigned long long existing_size
;
723 struct pci_dev
*pdev
;
724 struct vme_bridge
*tsi148_bridge
;
726 tsi148_bridge
= image
->parent
;
728 pdev
= to_pci_dev(tsi148_bridge
->parent
);
730 existing_size
= (unsigned long long)(image
->bus_resource
.end
-
731 image
->bus_resource
.start
);
733 /* If the existing size is OK, return */
734 if ((size
!= 0) && (existing_size
== (size
- 1)))
737 if (existing_size
!= 0) {
738 iounmap(image
->kern_base
);
739 image
->kern_base
= NULL
;
740 kfree(image
->bus_resource
.name
);
741 release_resource(&image
->bus_resource
);
742 memset(&image
->bus_resource
, 0, sizeof(struct resource
));
745 /* Exit here if size is zero */
749 if (image
->bus_resource
.name
== NULL
) {
750 image
->bus_resource
.name
= kmalloc(VMENAMSIZ
+3, GFP_ATOMIC
);
751 if (image
->bus_resource
.name
== NULL
) {
752 dev_err(tsi148_bridge
->parent
, "Unable to allocate "
753 "memory for resource name\n");
759 sprintf((char *)image
->bus_resource
.name
, "%s.%d", tsi148_bridge
->name
,
762 image
->bus_resource
.start
= 0;
763 image
->bus_resource
.end
= (unsigned long)size
;
764 image
->bus_resource
.flags
= IORESOURCE_MEM
;
766 retval
= pci_bus_alloc_resource(pdev
->bus
,
767 &image
->bus_resource
, size
, 0x10000, PCIBIOS_MIN_MEM
,
770 dev_err(tsi148_bridge
->parent
, "Failed to allocate mem "
771 "resource for window %d size 0x%lx start 0x%lx\n",
772 image
->number
, (unsigned long)size
,
773 (unsigned long)image
->bus_resource
.start
);
777 image
->kern_base
= ioremap_nocache(
778 image
->bus_resource
.start
, size
);
779 if (image
->kern_base
== NULL
) {
780 dev_err(tsi148_bridge
->parent
, "Failed to remap resource\n");
788 release_resource(&image
->bus_resource
);
790 kfree(image
->bus_resource
.name
);
791 memset(&image
->bus_resource
, 0, sizeof(struct resource
));
797 * Free and unmap PCI Resource
799 static void tsi148_free_resource(struct vme_master_resource
*image
)
801 iounmap(image
->kern_base
);
802 image
->kern_base
= NULL
;
803 release_resource(&image
->bus_resource
);
804 kfree(image
->bus_resource
.name
);
805 memset(&image
->bus_resource
, 0, sizeof(struct resource
));
809 * Set the attributes of an outbound window.
811 static int tsi148_master_set(struct vme_master_resource
*image
, int enabled
,
812 unsigned long long vme_base
, unsigned long long size
, u32 aspace
,
813 u32 cycle
, u32 dwidth
)
817 unsigned int temp_ctl
= 0;
818 unsigned int pci_base_low
, pci_base_high
;
819 unsigned int pci_bound_low
, pci_bound_high
;
820 unsigned int vme_offset_low
, vme_offset_high
;
821 unsigned long long pci_bound
, vme_offset
, pci_base
;
822 struct vme_bridge
*tsi148_bridge
;
823 struct tsi148_driver
*bridge
;
824 struct pci_bus_region region
;
825 struct pci_dev
*pdev
;
827 tsi148_bridge
= image
->parent
;
829 bridge
= tsi148_bridge
->driver_priv
;
831 pdev
= to_pci_dev(tsi148_bridge
->parent
);
833 /* Verify input data */
834 if (vme_base
& 0xFFFF) {
835 dev_err(tsi148_bridge
->parent
, "Invalid VME Window "
841 if ((size
== 0) && (enabled
!= 0)) {
842 dev_err(tsi148_bridge
->parent
, "Size must be non-zero for "
843 "enabled windows\n");
848 spin_lock(&image
->lock
);
850 /* Let's allocate the resource here rather than further up the stack as
851 * it avoids pushing loads of bus dependent stuff up the stack. If size
852 * is zero, any existing resource will be freed.
854 retval
= tsi148_alloc_resource(image
, size
);
856 spin_unlock(&image
->lock
);
857 dev_err(tsi148_bridge
->parent
, "Unable to allocate memory for "
867 pcibios_resource_to_bus(pdev
->bus
, ®ion
,
868 &image
->bus_resource
);
869 pci_base
= region
.start
;
872 * Bound address is a valid address for the window, adjust
873 * according to window granularity.
875 pci_bound
= pci_base
+ (size
- 0x10000);
876 vme_offset
= vme_base
- pci_base
;
879 /* Convert 64-bit variables to 2x 32-bit variables */
880 reg_split(pci_base
, &pci_base_high
, &pci_base_low
);
881 reg_split(pci_bound
, &pci_bound_high
, &pci_bound_low
);
882 reg_split(vme_offset
, &vme_offset_high
, &vme_offset_low
);
884 if (pci_base_low
& 0xFFFF) {
885 spin_unlock(&image
->lock
);
886 dev_err(tsi148_bridge
->parent
, "Invalid PCI base alignment\n");
890 if (pci_bound_low
& 0xFFFF) {
891 spin_unlock(&image
->lock
);
892 dev_err(tsi148_bridge
->parent
, "Invalid PCI bound alignment\n");
896 if (vme_offset_low
& 0xFFFF) {
897 spin_unlock(&image
->lock
);
898 dev_err(tsi148_bridge
->parent
, "Invalid VME Offset "
906 /* Disable while we are mucking around */
907 temp_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
908 TSI148_LCSR_OFFSET_OTAT
);
909 temp_ctl
&= ~TSI148_LCSR_OTAT_EN
;
910 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
911 TSI148_LCSR_OFFSET_OTAT
);
913 /* Setup 2eSST speeds */
914 temp_ctl
&= ~TSI148_LCSR_OTAT_2eSSTM_M
;
915 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
917 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_160
;
920 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_267
;
923 temp_ctl
|= TSI148_LCSR_OTAT_2eSSTM_320
;
927 /* Setup cycle types */
928 if (cycle
& VME_BLT
) {
929 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
930 temp_ctl
|= TSI148_LCSR_OTAT_TM_BLT
;
932 if (cycle
& VME_MBLT
) {
933 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
934 temp_ctl
|= TSI148_LCSR_OTAT_TM_MBLT
;
936 if (cycle
& VME_2eVME
) {
937 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
938 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eVME
;
940 if (cycle
& VME_2eSST
) {
941 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
942 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eSST
;
944 if (cycle
& VME_2eSSTB
) {
945 dev_warn(tsi148_bridge
->parent
, "Currently not setting "
946 "Broadcast Select Registers\n");
947 temp_ctl
&= ~TSI148_LCSR_OTAT_TM_M
;
948 temp_ctl
|= TSI148_LCSR_OTAT_TM_2eSSTB
;
951 /* Setup data width */
952 temp_ctl
&= ~TSI148_LCSR_OTAT_DBW_M
;
955 temp_ctl
|= TSI148_LCSR_OTAT_DBW_16
;
958 temp_ctl
|= TSI148_LCSR_OTAT_DBW_32
;
961 spin_unlock(&image
->lock
);
962 dev_err(tsi148_bridge
->parent
, "Invalid data width\n");
967 /* Setup address space */
968 temp_ctl
&= ~TSI148_LCSR_OTAT_AMODE_M
;
971 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A16
;
974 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A24
;
977 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A32
;
980 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_A64
;
983 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_CRCSR
;
986 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER1
;
989 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER2
;
992 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER3
;
995 temp_ctl
|= TSI148_LCSR_OTAT_AMODE_USER4
;
998 spin_unlock(&image
->lock
);
999 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
1005 temp_ctl
&= ~(3<<4);
1006 if (cycle
& VME_SUPER
)
1007 temp_ctl
|= TSI148_LCSR_OTAT_SUP
;
1008 if (cycle
& VME_PROG
)
1009 temp_ctl
|= TSI148_LCSR_OTAT_PGM
;
1012 iowrite32be(pci_base_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1013 TSI148_LCSR_OFFSET_OTSAU
);
1014 iowrite32be(pci_base_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1015 TSI148_LCSR_OFFSET_OTSAL
);
1016 iowrite32be(pci_bound_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1017 TSI148_LCSR_OFFSET_OTEAU
);
1018 iowrite32be(pci_bound_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1019 TSI148_LCSR_OFFSET_OTEAL
);
1020 iowrite32be(vme_offset_high
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1021 TSI148_LCSR_OFFSET_OTOFU
);
1022 iowrite32be(vme_offset_low
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1023 TSI148_LCSR_OFFSET_OTOFL
);
1025 /* Write ctl reg without enable */
1026 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1027 TSI148_LCSR_OFFSET_OTAT
);
1030 temp_ctl
|= TSI148_LCSR_OTAT_EN
;
1032 iowrite32be(temp_ctl
, bridge
->base
+ TSI148_LCSR_OT
[i
] +
1033 TSI148_LCSR_OFFSET_OTAT
);
1035 spin_unlock(&image
->lock
);
1041 tsi148_free_resource(image
);
1049 * Set the attributes of an outbound window.
1051 * XXX Not parsing prefetch information.
1053 static int __tsi148_master_get(struct vme_master_resource
*image
, int *enabled
,
1054 unsigned long long *vme_base
, unsigned long long *size
, u32
*aspace
,
1055 u32
*cycle
, u32
*dwidth
)
1057 unsigned int i
, ctl
;
1058 unsigned int pci_base_low
, pci_base_high
;
1059 unsigned int pci_bound_low
, pci_bound_high
;
1060 unsigned int vme_offset_low
, vme_offset_high
;
1062 unsigned long long pci_base
, pci_bound
, vme_offset
;
1063 struct tsi148_driver
*bridge
;
1065 bridge
= image
->parent
->driver_priv
;
1069 ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1070 TSI148_LCSR_OFFSET_OTAT
);
1072 pci_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1073 TSI148_LCSR_OFFSET_OTSAU
);
1074 pci_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1075 TSI148_LCSR_OFFSET_OTSAL
);
1076 pci_bound_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1077 TSI148_LCSR_OFFSET_OTEAU
);
1078 pci_bound_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1079 TSI148_LCSR_OFFSET_OTEAL
);
1080 vme_offset_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1081 TSI148_LCSR_OFFSET_OTOFU
);
1082 vme_offset_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1083 TSI148_LCSR_OFFSET_OTOFL
);
1085 /* Convert 64-bit variables to 2x 32-bit variables */
1086 reg_join(pci_base_high
, pci_base_low
, &pci_base
);
1087 reg_join(pci_bound_high
, pci_bound_low
, &pci_bound
);
1088 reg_join(vme_offset_high
, vme_offset_low
, &vme_offset
);
1090 *vme_base
= pci_base
+ vme_offset
;
1091 *size
= (unsigned long long)(pci_bound
- pci_base
) + 0x10000;
1098 if (ctl
& TSI148_LCSR_OTAT_EN
)
1101 /* Setup address space */
1102 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A16
)
1104 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A24
)
1106 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A32
)
1108 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_A64
)
1110 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_CRCSR
)
1111 *aspace
|= VME_CRCSR
;
1112 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER1
)
1113 *aspace
|= VME_USER1
;
1114 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER2
)
1115 *aspace
|= VME_USER2
;
1116 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER3
)
1117 *aspace
|= VME_USER3
;
1118 if ((ctl
& TSI148_LCSR_OTAT_AMODE_M
) == TSI148_LCSR_OTAT_AMODE_USER4
)
1119 *aspace
|= VME_USER4
;
1121 /* Setup 2eSST speeds */
1122 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_160
)
1123 *cycle
|= VME_2eSST160
;
1124 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_267
)
1125 *cycle
|= VME_2eSST267
;
1126 if ((ctl
& TSI148_LCSR_OTAT_2eSSTM_M
) == TSI148_LCSR_OTAT_2eSSTM_320
)
1127 *cycle
|= VME_2eSST320
;
1129 /* Setup cycle types */
1130 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_SCT
)
1132 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_BLT
)
1134 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_MBLT
)
1136 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eVME
)
1137 *cycle
|= VME_2eVME
;
1138 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eSST
)
1139 *cycle
|= VME_2eSST
;
1140 if ((ctl
& TSI148_LCSR_OTAT_TM_M
) == TSI148_LCSR_OTAT_TM_2eSSTB
)
1141 *cycle
|= VME_2eSSTB
;
1143 if (ctl
& TSI148_LCSR_OTAT_SUP
)
1144 *cycle
|= VME_SUPER
;
1148 if (ctl
& TSI148_LCSR_OTAT_PGM
)
1153 /* Setup data width */
1154 if ((ctl
& TSI148_LCSR_OTAT_DBW_M
) == TSI148_LCSR_OTAT_DBW_16
)
1156 if ((ctl
& TSI148_LCSR_OTAT_DBW_M
) == TSI148_LCSR_OTAT_DBW_32
)
1163 static int tsi148_master_get(struct vme_master_resource
*image
, int *enabled
,
1164 unsigned long long *vme_base
, unsigned long long *size
, u32
*aspace
,
1165 u32
*cycle
, u32
*dwidth
)
1169 spin_lock(&image
->lock
);
1171 retval
= __tsi148_master_get(image
, enabled
, vme_base
, size
, aspace
,
1174 spin_unlock(&image
->lock
);
1179 static ssize_t
tsi148_master_read(struct vme_master_resource
*image
, void *buf
,
1180 size_t count
, loff_t offset
)
1182 int retval
, enabled
;
1183 unsigned long long vme_base
, size
;
1184 u32 aspace
, cycle
, dwidth
;
1185 struct vme_error_handler
*handler
= NULL
;
1186 struct vme_bridge
*tsi148_bridge
;
1187 void __iomem
*addr
= image
->kern_base
+ offset
;
1188 unsigned int done
= 0;
1189 unsigned int count32
;
1191 tsi148_bridge
= image
->parent
;
1193 spin_lock(&image
->lock
);
1196 __tsi148_master_get(image
, &enabled
, &vme_base
, &size
, &aspace
,
1198 handler
= vme_register_error_handler(tsi148_bridge
, aspace
,
1199 vme_base
+ offset
, count
);
1201 spin_unlock(&image
->lock
);
1206 /* The following code handles VME address alignment. We cannot use
1207 * memcpy_xxx here because it may cut data transfers in to 8-bit
1208 * cycles when D16 or D32 cycles are required on the VME bus.
1209 * On the other hand, the bridge itself assures that the maximum data
1210 * cycle configured for the transfer is used and splits it
1211 * automatically for non-aligned addresses, so we don't want the
1212 * overhead of needlessly forcing small transfers for the entire cycle.
1214 if ((uintptr_t)addr
& 0x1) {
1215 *(u8
*)buf
= ioread8(addr
);
1220 if ((uintptr_t)(addr
+ done
) & 0x2) {
1221 if ((count
- done
) < 2) {
1222 *(u8
*)(buf
+ done
) = ioread8(addr
+ done
);
1226 *(u16
*)(buf
+ done
) = ioread16(addr
+ done
);
1231 count32
= (count
- done
) & ~0x3;
1232 while (done
< count32
) {
1233 *(u32
*)(buf
+ done
) = ioread32(addr
+ done
);
1237 if ((count
- done
) & 0x2) {
1238 *(u16
*)(buf
+ done
) = ioread16(addr
+ done
);
1241 if ((count
- done
) & 0x1) {
1242 *(u8
*)(buf
+ done
) = ioread8(addr
+ done
);
1250 if (handler
->num_errors
) {
1251 dev_err(image
->parent
->parent
,
1252 "First VME read error detected an at address 0x%llx\n",
1253 handler
->first_error
);
1254 retval
= handler
->first_error
- (vme_base
+ offset
);
1256 vme_unregister_error_handler(handler
);
1259 spin_unlock(&image
->lock
);
1265 static ssize_t
tsi148_master_write(struct vme_master_resource
*image
, void *buf
,
1266 size_t count
, loff_t offset
)
1268 int retval
= 0, enabled
;
1269 unsigned long long vme_base
, size
;
1270 u32 aspace
, cycle
, dwidth
;
1271 void __iomem
*addr
= image
->kern_base
+ offset
;
1272 unsigned int done
= 0;
1273 unsigned int count32
;
1275 struct vme_error_handler
*handler
= NULL
;
1276 struct vme_bridge
*tsi148_bridge
;
1277 struct tsi148_driver
*bridge
;
1279 tsi148_bridge
= image
->parent
;
1281 bridge
= tsi148_bridge
->driver_priv
;
1283 spin_lock(&image
->lock
);
1286 __tsi148_master_get(image
, &enabled
, &vme_base
, &size
, &aspace
,
1288 handler
= vme_register_error_handler(tsi148_bridge
, aspace
,
1289 vme_base
+ offset
, count
);
1291 spin_unlock(&image
->lock
);
1296 /* Here we apply for the same strategy we do in master_read
1297 * function in order to assure the correct cycles.
1299 if ((uintptr_t)addr
& 0x1) {
1300 iowrite8(*(u8
*)buf
, addr
);
1305 if ((uintptr_t)(addr
+ done
) & 0x2) {
1306 if ((count
- done
) < 2) {
1307 iowrite8(*(u8
*)(buf
+ done
), addr
+ done
);
1311 iowrite16(*(u16
*)(buf
+ done
), addr
+ done
);
1316 count32
= (count
- done
) & ~0x3;
1317 while (done
< count32
) {
1318 iowrite32(*(u32
*)(buf
+ done
), addr
+ done
);
1322 if ((count
- done
) & 0x2) {
1323 iowrite16(*(u16
*)(buf
+ done
), addr
+ done
);
1326 if ((count
- done
) & 0x1) {
1327 iowrite8(*(u8
*)(buf
+ done
), addr
+ done
);
1335 * Writes are posted. We need to do a read on the VME bus to flush out
1336 * all of the writes before we check for errors. We can't guarantee
1337 * that reading the data we have just written is safe. It is believed
1338 * that there isn't any read, write re-ordering, so we can read any
1339 * location in VME space, so lets read the Device ID from the tsi148's
1340 * own registers as mapped into CR/CSR space.
1342 * We check for saved errors in the written address range/space.
1346 ioread16(bridge
->flush_image
->kern_base
+ 0x7F000);
1348 if (handler
->num_errors
) {
1349 dev_warn(tsi148_bridge
->parent
,
1350 "First VME write error detected an at address 0x%llx\n",
1351 handler
->first_error
);
1352 retval
= handler
->first_error
- (vme_base
+ offset
);
1354 vme_unregister_error_handler(handler
);
1357 spin_unlock(&image
->lock
);
1363 * Perform an RMW cycle on the VME bus.
1365 * Requires a previously configured master window, returns final value.
1367 static unsigned int tsi148_master_rmw(struct vme_master_resource
*image
,
1368 unsigned int mask
, unsigned int compare
, unsigned int swap
,
1371 unsigned long long pci_addr
;
1372 unsigned int pci_addr_high
, pci_addr_low
;
1375 struct tsi148_driver
*bridge
;
1377 bridge
= image
->parent
->driver_priv
;
1379 /* Find the PCI address that maps to the desired VME address */
1382 /* Locking as we can only do one of these at a time */
1383 mutex_lock(&bridge
->vme_rmw
);
1386 spin_lock(&image
->lock
);
1388 pci_addr_high
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1389 TSI148_LCSR_OFFSET_OTSAU
);
1390 pci_addr_low
= ioread32be(bridge
->base
+ TSI148_LCSR_OT
[i
] +
1391 TSI148_LCSR_OFFSET_OTSAL
);
1393 reg_join(pci_addr_high
, pci_addr_low
, &pci_addr
);
1394 reg_split(pci_addr
+ offset
, &pci_addr_high
, &pci_addr_low
);
1396 /* Configure registers */
1397 iowrite32be(mask
, bridge
->base
+ TSI148_LCSR_RMWEN
);
1398 iowrite32be(compare
, bridge
->base
+ TSI148_LCSR_RMWC
);
1399 iowrite32be(swap
, bridge
->base
+ TSI148_LCSR_RMWS
);
1400 iowrite32be(pci_addr_high
, bridge
->base
+ TSI148_LCSR_RMWAU
);
1401 iowrite32be(pci_addr_low
, bridge
->base
+ TSI148_LCSR_RMWAL
);
1404 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VMCTRL
);
1405 tmp
|= TSI148_LCSR_VMCTRL_RMWEN
;
1406 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VMCTRL
);
1408 /* Kick process off with a read to the required address. */
1409 result
= ioread32be(image
->kern_base
+ offset
);
1412 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_VMCTRL
);
1413 tmp
&= ~TSI148_LCSR_VMCTRL_RMWEN
;
1414 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_VMCTRL
);
1416 spin_unlock(&image
->lock
);
1418 mutex_unlock(&bridge
->vme_rmw
);
1423 static int tsi148_dma_set_vme_src_attributes(struct device
*dev
, __be32
*attr
,
1424 u32 aspace
, u32 cycle
, u32 dwidth
)
1428 val
= be32_to_cpu(*attr
);
1430 /* Setup 2eSST speeds */
1431 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
1433 val
|= TSI148_LCSR_DSAT_2eSSTM_160
;
1436 val
|= TSI148_LCSR_DSAT_2eSSTM_267
;
1439 val
|= TSI148_LCSR_DSAT_2eSSTM_320
;
1443 /* Setup cycle types */
1444 if (cycle
& VME_SCT
)
1445 val
|= TSI148_LCSR_DSAT_TM_SCT
;
1447 if (cycle
& VME_BLT
)
1448 val
|= TSI148_LCSR_DSAT_TM_BLT
;
1450 if (cycle
& VME_MBLT
)
1451 val
|= TSI148_LCSR_DSAT_TM_MBLT
;
1453 if (cycle
& VME_2eVME
)
1454 val
|= TSI148_LCSR_DSAT_TM_2eVME
;
1456 if (cycle
& VME_2eSST
)
1457 val
|= TSI148_LCSR_DSAT_TM_2eSST
;
1459 if (cycle
& VME_2eSSTB
) {
1460 dev_err(dev
, "Currently not setting Broadcast Select "
1462 val
|= TSI148_LCSR_DSAT_TM_2eSSTB
;
1465 /* Setup data width */
1468 val
|= TSI148_LCSR_DSAT_DBW_16
;
1471 val
|= TSI148_LCSR_DSAT_DBW_32
;
1474 dev_err(dev
, "Invalid data width\n");
1478 /* Setup address space */
1481 val
|= TSI148_LCSR_DSAT_AMODE_A16
;
1484 val
|= TSI148_LCSR_DSAT_AMODE_A24
;
1487 val
|= TSI148_LCSR_DSAT_AMODE_A32
;
1490 val
|= TSI148_LCSR_DSAT_AMODE_A64
;
1493 val
|= TSI148_LCSR_DSAT_AMODE_CRCSR
;
1496 val
|= TSI148_LCSR_DSAT_AMODE_USER1
;
1499 val
|= TSI148_LCSR_DSAT_AMODE_USER2
;
1502 val
|= TSI148_LCSR_DSAT_AMODE_USER3
;
1505 val
|= TSI148_LCSR_DSAT_AMODE_USER4
;
1508 dev_err(dev
, "Invalid address space\n");
1513 if (cycle
& VME_SUPER
)
1514 val
|= TSI148_LCSR_DSAT_SUP
;
1515 if (cycle
& VME_PROG
)
1516 val
|= TSI148_LCSR_DSAT_PGM
;
1518 *attr
= cpu_to_be32(val
);
1523 static int tsi148_dma_set_vme_dest_attributes(struct device
*dev
, __be32
*attr
,
1524 u32 aspace
, u32 cycle
, u32 dwidth
)
1528 val
= be32_to_cpu(*attr
);
1530 /* Setup 2eSST speeds */
1531 switch (cycle
& (VME_2eSST160
| VME_2eSST267
| VME_2eSST320
)) {
1533 val
|= TSI148_LCSR_DDAT_2eSSTM_160
;
1536 val
|= TSI148_LCSR_DDAT_2eSSTM_267
;
1539 val
|= TSI148_LCSR_DDAT_2eSSTM_320
;
1543 /* Setup cycle types */
1544 if (cycle
& VME_SCT
)
1545 val
|= TSI148_LCSR_DDAT_TM_SCT
;
1547 if (cycle
& VME_BLT
)
1548 val
|= TSI148_LCSR_DDAT_TM_BLT
;
1550 if (cycle
& VME_MBLT
)
1551 val
|= TSI148_LCSR_DDAT_TM_MBLT
;
1553 if (cycle
& VME_2eVME
)
1554 val
|= TSI148_LCSR_DDAT_TM_2eVME
;
1556 if (cycle
& VME_2eSST
)
1557 val
|= TSI148_LCSR_DDAT_TM_2eSST
;
1559 if (cycle
& VME_2eSSTB
) {
1560 dev_err(dev
, "Currently not setting Broadcast Select "
1562 val
|= TSI148_LCSR_DDAT_TM_2eSSTB
;
1565 /* Setup data width */
1568 val
|= TSI148_LCSR_DDAT_DBW_16
;
1571 val
|= TSI148_LCSR_DDAT_DBW_32
;
1574 dev_err(dev
, "Invalid data width\n");
1578 /* Setup address space */
1581 val
|= TSI148_LCSR_DDAT_AMODE_A16
;
1584 val
|= TSI148_LCSR_DDAT_AMODE_A24
;
1587 val
|= TSI148_LCSR_DDAT_AMODE_A32
;
1590 val
|= TSI148_LCSR_DDAT_AMODE_A64
;
1593 val
|= TSI148_LCSR_DDAT_AMODE_CRCSR
;
1596 val
|= TSI148_LCSR_DDAT_AMODE_USER1
;
1599 val
|= TSI148_LCSR_DDAT_AMODE_USER2
;
1602 val
|= TSI148_LCSR_DDAT_AMODE_USER3
;
1605 val
|= TSI148_LCSR_DDAT_AMODE_USER4
;
1608 dev_err(dev
, "Invalid address space\n");
1613 if (cycle
& VME_SUPER
)
1614 val
|= TSI148_LCSR_DDAT_SUP
;
1615 if (cycle
& VME_PROG
)
1616 val
|= TSI148_LCSR_DDAT_PGM
;
1618 *attr
= cpu_to_be32(val
);
1624 * Add a link list descriptor to the list
1626 * Note: DMA engine expects the DMA descriptor to be big endian.
1628 static int tsi148_dma_list_add(struct vme_dma_list
*list
,
1629 struct vme_dma_attr
*src
, struct vme_dma_attr
*dest
, size_t count
)
1631 struct tsi148_dma_entry
*entry
, *prev
;
1632 u32 address_high
, address_low
, val
;
1633 struct vme_dma_pattern
*pattern_attr
;
1634 struct vme_dma_pci
*pci_attr
;
1635 struct vme_dma_vme
*vme_attr
;
1637 struct vme_bridge
*tsi148_bridge
;
1639 tsi148_bridge
= list
->parent
->parent
;
1641 /* Descriptor must be aligned on 64-bit boundaries */
1642 entry
= kmalloc(sizeof(struct tsi148_dma_entry
), GFP_KERNEL
);
1643 if (entry
== NULL
) {
1644 dev_err(tsi148_bridge
->parent
, "Failed to allocate memory for "
1645 "dma resource structure\n");
1650 /* Test descriptor alignment */
1651 if ((unsigned long)&entry
->descriptor
& 0x7) {
1652 dev_err(tsi148_bridge
->parent
, "Descriptor not aligned to 8 "
1653 "byte boundary as required: %p\n",
1654 &entry
->descriptor
);
1659 /* Given we are going to fill out the structure, we probably don't
1660 * need to zero it, but better safe than sorry for now.
1662 memset(&entry
->descriptor
, 0, sizeof(struct tsi148_dma_descriptor
));
1664 /* Fill out source part */
1665 switch (src
->type
) {
1666 case VME_DMA_PATTERN
:
1667 pattern_attr
= src
->private;
1669 entry
->descriptor
.dsal
= cpu_to_be32(pattern_attr
->pattern
);
1671 val
= TSI148_LCSR_DSAT_TYP_PAT
;
1673 /* Default behaviour is 32 bit pattern */
1674 if (pattern_attr
->type
& VME_DMA_PATTERN_BYTE
)
1675 val
|= TSI148_LCSR_DSAT_PSZ
;
1677 /* It seems that the default behaviour is to increment */
1678 if ((pattern_attr
->type
& VME_DMA_PATTERN_INCREMENT
) == 0)
1679 val
|= TSI148_LCSR_DSAT_NIN
;
1680 entry
->descriptor
.dsat
= cpu_to_be32(val
);
1683 pci_attr
= src
->private;
1685 reg_split((unsigned long long)pci_attr
->address
, &address_high
,
1687 entry
->descriptor
.dsau
= cpu_to_be32(address_high
);
1688 entry
->descriptor
.dsal
= cpu_to_be32(address_low
);
1689 entry
->descriptor
.dsat
= cpu_to_be32(TSI148_LCSR_DSAT_TYP_PCI
);
1692 vme_attr
= src
->private;
1694 reg_split((unsigned long long)vme_attr
->address
, &address_high
,
1696 entry
->descriptor
.dsau
= cpu_to_be32(address_high
);
1697 entry
->descriptor
.dsal
= cpu_to_be32(address_low
);
1698 entry
->descriptor
.dsat
= cpu_to_be32(TSI148_LCSR_DSAT_TYP_VME
);
1700 retval
= tsi148_dma_set_vme_src_attributes(
1701 tsi148_bridge
->parent
, &entry
->descriptor
.dsat
,
1702 vme_attr
->aspace
, vme_attr
->cycle
, vme_attr
->dwidth
);
1707 dev_err(tsi148_bridge
->parent
, "Invalid source type\n");
1713 /* Assume last link - this will be over-written by adding another */
1714 entry
->descriptor
.dnlau
= cpu_to_be32(0);
1715 entry
->descriptor
.dnlal
= cpu_to_be32(TSI148_LCSR_DNLAL_LLA
);
1717 /* Fill out destination part */
1718 switch (dest
->type
) {
1720 pci_attr
= dest
->private;
1722 reg_split((unsigned long long)pci_attr
->address
, &address_high
,
1724 entry
->descriptor
.ddau
= cpu_to_be32(address_high
);
1725 entry
->descriptor
.ddal
= cpu_to_be32(address_low
);
1726 entry
->descriptor
.ddat
= cpu_to_be32(TSI148_LCSR_DDAT_TYP_PCI
);
1729 vme_attr
= dest
->private;
1731 reg_split((unsigned long long)vme_attr
->address
, &address_high
,
1733 entry
->descriptor
.ddau
= cpu_to_be32(address_high
);
1734 entry
->descriptor
.ddal
= cpu_to_be32(address_low
);
1735 entry
->descriptor
.ddat
= cpu_to_be32(TSI148_LCSR_DDAT_TYP_VME
);
1737 retval
= tsi148_dma_set_vme_dest_attributes(
1738 tsi148_bridge
->parent
, &entry
->descriptor
.ddat
,
1739 vme_attr
->aspace
, vme_attr
->cycle
, vme_attr
->dwidth
);
1744 dev_err(tsi148_bridge
->parent
, "Invalid destination type\n");
1750 /* Fill out count */
1751 entry
->descriptor
.dcnt
= cpu_to_be32((u32
)count
);
1754 list_add_tail(&entry
->list
, &list
->entries
);
1756 entry
->dma_handle
= dma_map_single(tsi148_bridge
->parent
,
1758 sizeof(struct tsi148_dma_descriptor
), DMA_TO_DEVICE
);
1759 if (dma_mapping_error(tsi148_bridge
->parent
, entry
->dma_handle
)) {
1760 dev_err(tsi148_bridge
->parent
, "DMA mapping error\n");
1765 /* Fill out previous descriptors "Next Address" */
1766 if (entry
->list
.prev
!= &list
->entries
) {
1767 reg_split((unsigned long long)entry
->dma_handle
, &address_high
,
1769 prev
= list_entry(entry
->list
.prev
, struct tsi148_dma_entry
,
1771 prev
->descriptor
.dnlau
= cpu_to_be32(address_high
);
1772 prev
->descriptor
.dnlal
= cpu_to_be32(address_low
);
1788 * Check to see if the provided DMA channel is busy.
1790 static int tsi148_dma_busy(struct vme_bridge
*tsi148_bridge
, int channel
)
1793 struct tsi148_driver
*bridge
;
1795 bridge
= tsi148_bridge
->driver_priv
;
1797 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1798 TSI148_LCSR_OFFSET_DSTA
);
1800 if (tmp
& TSI148_LCSR_DSTA_BSY
)
1808 * Execute a previously generated link list
1810 * XXX Need to provide control register configuration.
1812 static int tsi148_dma_list_exec(struct vme_dma_list
*list
)
1814 struct vme_dma_resource
*ctrlr
;
1815 int channel
, retval
;
1816 struct tsi148_dma_entry
*entry
;
1817 u32 bus_addr_high
, bus_addr_low
;
1818 u32 val
, dctlreg
= 0;
1819 struct vme_bridge
*tsi148_bridge
;
1820 struct tsi148_driver
*bridge
;
1822 ctrlr
= list
->parent
;
1824 tsi148_bridge
= ctrlr
->parent
;
1826 bridge
= tsi148_bridge
->driver_priv
;
1828 mutex_lock(&ctrlr
->mtx
);
1830 channel
= ctrlr
->number
;
1832 if (!list_empty(&ctrlr
->running
)) {
1834 * XXX We have an active DMA transfer and currently haven't
1835 * sorted out the mechanism for "pending" DMA transfers.
1838 /* Need to add to pending here */
1839 mutex_unlock(&ctrlr
->mtx
);
1842 list_add(&list
->list
, &ctrlr
->running
);
1845 /* Get first bus address and write into registers */
1846 entry
= list_first_entry(&list
->entries
, struct tsi148_dma_entry
,
1849 mutex_unlock(&ctrlr
->mtx
);
1851 reg_split(entry
->dma_handle
, &bus_addr_high
, &bus_addr_low
);
1853 iowrite32be(bus_addr_high
, bridge
->base
+
1854 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DNLAU
);
1855 iowrite32be(bus_addr_low
, bridge
->base
+
1856 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DNLAL
);
1858 dctlreg
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1859 TSI148_LCSR_OFFSET_DCTL
);
1861 /* Start the operation */
1862 iowrite32be(dctlreg
| TSI148_LCSR_DCTL_DGO
, bridge
->base
+
1863 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DCTL
);
1865 retval
= wait_event_interruptible(bridge
->dma_queue
[channel
],
1866 tsi148_dma_busy(ctrlr
->parent
, channel
));
1869 iowrite32be(dctlreg
| TSI148_LCSR_DCTL_ABT
, bridge
->base
+
1870 TSI148_LCSR_DMA
[channel
] + TSI148_LCSR_OFFSET_DCTL
);
1871 /* Wait for the operation to abort */
1872 wait_event(bridge
->dma_queue
[channel
],
1873 tsi148_dma_busy(ctrlr
->parent
, channel
));
1879 * Read status register, this register is valid until we kick off a
1882 val
= ioread32be(bridge
->base
+ TSI148_LCSR_DMA
[channel
] +
1883 TSI148_LCSR_OFFSET_DSTA
);
1885 if (val
& TSI148_LCSR_DSTA_VBE
) {
1886 dev_err(tsi148_bridge
->parent
, "DMA Error. DSTA=%08X\n", val
);
1891 /* Remove list from running list */
1892 mutex_lock(&ctrlr
->mtx
);
1893 list_del(&list
->list
);
1894 mutex_unlock(&ctrlr
->mtx
);
1900 * Clean up a previously generated link list
1902 * We have a separate function, don't assume that the chain can't be reused.
1904 static int tsi148_dma_list_empty(struct vme_dma_list
*list
)
1906 struct list_head
*pos
, *temp
;
1907 struct tsi148_dma_entry
*entry
;
1909 struct vme_bridge
*tsi148_bridge
= list
->parent
->parent
;
1911 /* detach and free each entry */
1912 list_for_each_safe(pos
, temp
, &list
->entries
) {
1914 entry
= list_entry(pos
, struct tsi148_dma_entry
, list
);
1916 dma_unmap_single(tsi148_bridge
->parent
, entry
->dma_handle
,
1917 sizeof(struct tsi148_dma_descriptor
), DMA_TO_DEVICE
);
1925 * All 4 location monitors reside at the same base - this is therefore a
1926 * system wide configuration.
1928 * This does not enable the LM monitor - that should be done when the first
1929 * callback is attached and disabled when the last callback is removed.
1931 static int tsi148_lm_set(struct vme_lm_resource
*lm
, unsigned long long lm_base
,
1932 u32 aspace
, u32 cycle
)
1934 u32 lm_base_high
, lm_base_low
, lm_ctl
= 0;
1936 struct vme_bridge
*tsi148_bridge
;
1937 struct tsi148_driver
*bridge
;
1939 tsi148_bridge
= lm
->parent
;
1941 bridge
= tsi148_bridge
->driver_priv
;
1943 mutex_lock(&lm
->mtx
);
1945 /* If we already have a callback attached, we can't move it! */
1946 for (i
= 0; i
< lm
->monitors
; i
++) {
1947 if (bridge
->lm_callback
[i
] != NULL
) {
1948 mutex_unlock(&lm
->mtx
);
1949 dev_err(tsi148_bridge
->parent
, "Location monitor "
1950 "callback attached, can't reset\n");
1957 lm_ctl
|= TSI148_LCSR_LMAT_AS_A16
;
1960 lm_ctl
|= TSI148_LCSR_LMAT_AS_A24
;
1963 lm_ctl
|= TSI148_LCSR_LMAT_AS_A32
;
1966 lm_ctl
|= TSI148_LCSR_LMAT_AS_A64
;
1969 mutex_unlock(&lm
->mtx
);
1970 dev_err(tsi148_bridge
->parent
, "Invalid address space\n");
1975 if (cycle
& VME_SUPER
)
1976 lm_ctl
|= TSI148_LCSR_LMAT_SUPR
;
1977 if (cycle
& VME_USER
)
1978 lm_ctl
|= TSI148_LCSR_LMAT_NPRIV
;
1979 if (cycle
& VME_PROG
)
1980 lm_ctl
|= TSI148_LCSR_LMAT_PGM
;
1981 if (cycle
& VME_DATA
)
1982 lm_ctl
|= TSI148_LCSR_LMAT_DATA
;
1984 reg_split(lm_base
, &lm_base_high
, &lm_base_low
);
1986 iowrite32be(lm_base_high
, bridge
->base
+ TSI148_LCSR_LMBAU
);
1987 iowrite32be(lm_base_low
, bridge
->base
+ TSI148_LCSR_LMBAL
);
1988 iowrite32be(lm_ctl
, bridge
->base
+ TSI148_LCSR_LMAT
);
1990 mutex_unlock(&lm
->mtx
);
1995 /* Get configuration of the callback monitor and return whether it is enabled
1998 static int tsi148_lm_get(struct vme_lm_resource
*lm
,
1999 unsigned long long *lm_base
, u32
*aspace
, u32
*cycle
)
2001 u32 lm_base_high
, lm_base_low
, lm_ctl
, enabled
= 0;
2002 struct tsi148_driver
*bridge
;
2004 bridge
= lm
->parent
->driver_priv
;
2006 mutex_lock(&lm
->mtx
);
2008 lm_base_high
= ioread32be(bridge
->base
+ TSI148_LCSR_LMBAU
);
2009 lm_base_low
= ioread32be(bridge
->base
+ TSI148_LCSR_LMBAL
);
2010 lm_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2012 reg_join(lm_base_high
, lm_base_low
, lm_base
);
2014 if (lm_ctl
& TSI148_LCSR_LMAT_EN
)
2017 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A16
)
2020 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A24
)
2023 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A32
)
2026 if ((lm_ctl
& TSI148_LCSR_LMAT_AS_M
) == TSI148_LCSR_LMAT_AS_A64
)
2030 if (lm_ctl
& TSI148_LCSR_LMAT_SUPR
)
2031 *cycle
|= VME_SUPER
;
2032 if (lm_ctl
& TSI148_LCSR_LMAT_NPRIV
)
2034 if (lm_ctl
& TSI148_LCSR_LMAT_PGM
)
2036 if (lm_ctl
& TSI148_LCSR_LMAT_DATA
)
2039 mutex_unlock(&lm
->mtx
);
2045 * Attach a callback to a specific location monitor.
2047 * Callback will be passed the monitor triggered.
2049 static int tsi148_lm_attach(struct vme_lm_resource
*lm
, int monitor
,
2050 void (*callback
)(int))
2053 struct vme_bridge
*tsi148_bridge
;
2054 struct tsi148_driver
*bridge
;
2056 tsi148_bridge
= lm
->parent
;
2058 bridge
= tsi148_bridge
->driver_priv
;
2060 mutex_lock(&lm
->mtx
);
2062 /* Ensure that the location monitor is configured - need PGM or DATA */
2063 lm_ctl
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2064 if ((lm_ctl
& (TSI148_LCSR_LMAT_PGM
| TSI148_LCSR_LMAT_DATA
)) == 0) {
2065 mutex_unlock(&lm
->mtx
);
2066 dev_err(tsi148_bridge
->parent
, "Location monitor not properly "
2071 /* Check that a callback isn't already attached */
2072 if (bridge
->lm_callback
[monitor
] != NULL
) {
2073 mutex_unlock(&lm
->mtx
);
2074 dev_err(tsi148_bridge
->parent
, "Existing callback attached\n");
2078 /* Attach callback */
2079 bridge
->lm_callback
[monitor
] = callback
;
2081 /* Enable Location Monitor interrupt */
2082 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
2083 tmp
|= TSI148_LCSR_INTEN_LMEN
[monitor
];
2084 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEN
);
2086 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
2087 tmp
|= TSI148_LCSR_INTEO_LMEO
[monitor
];
2088 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
2090 /* Ensure that global Location Monitor Enable set */
2091 if ((lm_ctl
& TSI148_LCSR_LMAT_EN
) == 0) {
2092 lm_ctl
|= TSI148_LCSR_LMAT_EN
;
2093 iowrite32be(lm_ctl
, bridge
->base
+ TSI148_LCSR_LMAT
);
2096 mutex_unlock(&lm
->mtx
);
2102 * Detach a callback function forn a specific location monitor.
2104 static int tsi148_lm_detach(struct vme_lm_resource
*lm
, int monitor
)
2107 struct tsi148_driver
*bridge
;
2109 bridge
= lm
->parent
->driver_priv
;
2111 mutex_lock(&lm
->mtx
);
2113 /* Disable Location Monitor and ensure previous interrupts are clear */
2114 lm_en
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEN
);
2115 lm_en
&= ~TSI148_LCSR_INTEN_LMEN
[monitor
];
2116 iowrite32be(lm_en
, bridge
->base
+ TSI148_LCSR_INTEN
);
2118 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_INTEO
);
2119 tmp
&= ~TSI148_LCSR_INTEO_LMEO
[monitor
];
2120 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_INTEO
);
2122 iowrite32be(TSI148_LCSR_INTC_LMC
[monitor
],
2123 bridge
->base
+ TSI148_LCSR_INTC
);
2125 /* Detach callback */
2126 bridge
->lm_callback
[monitor
] = NULL
;
2128 /* If all location monitors disabled, disable global Location Monitor */
2129 if ((lm_en
& (TSI148_LCSR_INTS_LM0S
| TSI148_LCSR_INTS_LM1S
|
2130 TSI148_LCSR_INTS_LM2S
| TSI148_LCSR_INTS_LM3S
)) == 0) {
2131 tmp
= ioread32be(bridge
->base
+ TSI148_LCSR_LMAT
);
2132 tmp
&= ~TSI148_LCSR_LMAT_EN
;
2133 iowrite32be(tmp
, bridge
->base
+ TSI148_LCSR_LMAT
);
2136 mutex_unlock(&lm
->mtx
);
2142 * Determine Geographical Addressing
2144 static int tsi148_slot_get(struct vme_bridge
*tsi148_bridge
)
2147 struct tsi148_driver
*bridge
;
2149 bridge
= tsi148_bridge
->driver_priv
;
2152 slot
= ioread32be(bridge
->base
+ TSI148_LCSR_VSTAT
);
2153 slot
= slot
& TSI148_LCSR_VSTAT_GA_M
;
2160 static void *tsi148_alloc_consistent(struct device
*parent
, size_t size
,
2163 struct pci_dev
*pdev
;
2165 /* Find pci_dev container of dev */
2166 pdev
= to_pci_dev(parent
);
2168 return pci_alloc_consistent(pdev
, size
, dma
);
2171 static void tsi148_free_consistent(struct device
*parent
, size_t size
,
2172 void *vaddr
, dma_addr_t dma
)
2174 struct pci_dev
*pdev
;
2176 /* Find pci_dev container of dev */
2177 pdev
= to_pci_dev(parent
);
2179 pci_free_consistent(pdev
, size
, vaddr
, dma
);
2183 * Configure CR/CSR space
2185 * Access to the CR/CSR can be configured at power-up. The location of the
2186 * CR/CSR registers in the CR/CSR address space is determined by the boards
2187 * Auto-ID or Geographic address. This function ensures that the window is
2188 * enabled at an offset consistent with the boards geopgraphic address.
2190 * Each board has a 512kB window, with the highest 4kB being used for the
2191 * boards registers, this means there is a fix length 508kB window which must
2192 * be mapped onto PCI memory.
2194 static int tsi148_crcsr_init(struct vme_bridge
*tsi148_bridge
,
2195 struct pci_dev
*pdev
)
2197 u32 cbar
, crat
, vstat
;
2198 u32 crcsr_bus_high
, crcsr_bus_low
;
2200 struct tsi148_driver
*bridge
;
2202 bridge
= tsi148_bridge
->driver_priv
;
2204 /* Allocate mem for CR/CSR image */
2205 bridge
->crcsr_kernel
= pci_zalloc_consistent(pdev
, VME_CRCSR_BUF_SIZE
,
2206 &bridge
->crcsr_bus
);
2207 if (bridge
->crcsr_kernel
== NULL
) {
2208 dev_err(tsi148_bridge
->parent
, "Failed to allocate memory for "
2213 reg_split(bridge
->crcsr_bus
, &crcsr_bus_high
, &crcsr_bus_low
);
2215 iowrite32be(crcsr_bus_high
, bridge
->base
+ TSI148_LCSR_CROU
);
2216 iowrite32be(crcsr_bus_low
, bridge
->base
+ TSI148_LCSR_CROL
);
2218 /* Ensure that the CR/CSR is configured at the correct offset */
2219 cbar
= ioread32be(bridge
->base
+ TSI148_CBAR
);
2220 cbar
= (cbar
& TSI148_CRCSR_CBAR_M
)>>3;
2222 vstat
= tsi148_slot_get(tsi148_bridge
);
2224 if (cbar
!= vstat
) {
2226 dev_info(tsi148_bridge
->parent
, "Setting CR/CSR offset\n");
2227 iowrite32be(cbar
<<3, bridge
->base
+ TSI148_CBAR
);
2229 dev_info(tsi148_bridge
->parent
, "CR/CSR Offset: %d\n", cbar
);
2231 crat
= ioread32be(bridge
->base
+ TSI148_LCSR_CRAT
);
2232 if (crat
& TSI148_LCSR_CRAT_EN
)
2233 dev_info(tsi148_bridge
->parent
, "CR/CSR already enabled\n");
2235 dev_info(tsi148_bridge
->parent
, "Enabling CR/CSR space\n");
2236 iowrite32be(crat
| TSI148_LCSR_CRAT_EN
,
2237 bridge
->base
+ TSI148_LCSR_CRAT
);
2240 /* If we want flushed, error-checked writes, set up a window
2241 * over the CR/CSR registers. We read from here to safely flush
2242 * through VME writes.
2245 retval
= tsi148_master_set(bridge
->flush_image
, 1,
2246 (vstat
* 0x80000), 0x80000, VME_CRCSR
, VME_SCT
,
2249 dev_err(tsi148_bridge
->parent
, "Configuring flush image"
2257 static void tsi148_crcsr_exit(struct vme_bridge
*tsi148_bridge
,
2258 struct pci_dev
*pdev
)
2261 struct tsi148_driver
*bridge
;
2263 bridge
= tsi148_bridge
->driver_priv
;
2265 /* Turn off CR/CSR space */
2266 crat
= ioread32be(bridge
->base
+ TSI148_LCSR_CRAT
);
2267 iowrite32be(crat
& ~TSI148_LCSR_CRAT_EN
,
2268 bridge
->base
+ TSI148_LCSR_CRAT
);
2271 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CROU
);
2272 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CROL
);
2274 pci_free_consistent(pdev
, VME_CRCSR_BUF_SIZE
, bridge
->crcsr_kernel
,
2278 static int tsi148_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
2280 int retval
, i
, master_num
;
2282 struct list_head
*pos
= NULL
, *n
;
2283 struct vme_bridge
*tsi148_bridge
;
2284 struct tsi148_driver
*tsi148_device
;
2285 struct vme_master_resource
*master_image
;
2286 struct vme_slave_resource
*slave_image
;
2287 struct vme_dma_resource
*dma_ctrlr
;
2288 struct vme_lm_resource
*lm
;
2290 /* If we want to support more than one of each bridge, we need to
2291 * dynamically generate this so we get one per device
2293 tsi148_bridge
= kzalloc(sizeof(struct vme_bridge
), GFP_KERNEL
);
2294 if (tsi148_bridge
== NULL
) {
2295 dev_err(&pdev
->dev
, "Failed to allocate memory for device "
2300 vme_init_bridge(tsi148_bridge
);
2302 tsi148_device
= kzalloc(sizeof(struct tsi148_driver
), GFP_KERNEL
);
2303 if (tsi148_device
== NULL
) {
2304 dev_err(&pdev
->dev
, "Failed to allocate memory for device "
2310 tsi148_bridge
->driver_priv
= tsi148_device
;
2312 /* Enable the device */
2313 retval
= pci_enable_device(pdev
);
2315 dev_err(&pdev
->dev
, "Unable to enable device\n");
2320 retval
= pci_request_regions(pdev
, driver_name
);
2322 dev_err(&pdev
->dev
, "Unable to reserve resources\n");
2326 /* map registers in BAR 0 */
2327 tsi148_device
->base
= ioremap_nocache(pci_resource_start(pdev
, 0),
2329 if (!tsi148_device
->base
) {
2330 dev_err(&pdev
->dev
, "Unable to remap CRG region\n");
2335 /* Check to see if the mapping worked out */
2336 data
= ioread32(tsi148_device
->base
+ TSI148_PCFS_ID
) & 0x0000FFFF;
2337 if (data
!= PCI_VENDOR_ID_TUNDRA
) {
2338 dev_err(&pdev
->dev
, "CRG region check failed\n");
2343 /* Initialize wait queues & mutual exclusion flags */
2344 init_waitqueue_head(&tsi148_device
->dma_queue
[0]);
2345 init_waitqueue_head(&tsi148_device
->dma_queue
[1]);
2346 init_waitqueue_head(&tsi148_device
->iack_queue
);
2347 mutex_init(&tsi148_device
->vme_int
);
2348 mutex_init(&tsi148_device
->vme_rmw
);
2350 tsi148_bridge
->parent
= &pdev
->dev
;
2351 strcpy(tsi148_bridge
->name
, driver_name
);
2354 retval
= tsi148_irq_init(tsi148_bridge
);
2356 dev_err(&pdev
->dev
, "Chip Initialization failed.\n");
2360 /* If we are going to flush writes, we need to read from the VME bus.
2361 * We need to do this safely, thus we read the devices own CR/CSR
2362 * register. To do this we must set up a window in CR/CSR space and
2363 * hence have one less master window resource available.
2365 master_num
= TSI148_MAX_MASTER
;
2369 tsi148_device
->flush_image
=
2370 kmalloc(sizeof(struct vme_master_resource
), GFP_KERNEL
);
2371 if (tsi148_device
->flush_image
== NULL
) {
2372 dev_err(&pdev
->dev
, "Failed to allocate memory for "
2373 "flush resource structure\n");
2377 tsi148_device
->flush_image
->parent
= tsi148_bridge
;
2378 spin_lock_init(&tsi148_device
->flush_image
->lock
);
2379 tsi148_device
->flush_image
->locked
= 1;
2380 tsi148_device
->flush_image
->number
= master_num
;
2381 memset(&tsi148_device
->flush_image
->bus_resource
, 0,
2382 sizeof(struct resource
));
2383 tsi148_device
->flush_image
->kern_base
= NULL
;
2386 /* Add master windows to list */
2387 for (i
= 0; i
< master_num
; i
++) {
2388 master_image
= kmalloc(sizeof(struct vme_master_resource
),
2390 if (master_image
== NULL
) {
2391 dev_err(&pdev
->dev
, "Failed to allocate memory for "
2392 "master resource structure\n");
2396 master_image
->parent
= tsi148_bridge
;
2397 spin_lock_init(&master_image
->lock
);
2398 master_image
->locked
= 0;
2399 master_image
->number
= i
;
2400 master_image
->address_attr
= VME_A16
| VME_A24
| VME_A32
|
2401 VME_A64
| VME_CRCSR
| VME_USER1
| VME_USER2
|
2402 VME_USER3
| VME_USER4
;
2403 master_image
->cycle_attr
= VME_SCT
| VME_BLT
| VME_MBLT
|
2404 VME_2eVME
| VME_2eSST
| VME_2eSSTB
| VME_2eSST160
|
2405 VME_2eSST267
| VME_2eSST320
| VME_SUPER
| VME_USER
|
2406 VME_PROG
| VME_DATA
;
2407 master_image
->width_attr
= VME_D16
| VME_D32
;
2408 memset(&master_image
->bus_resource
, 0,
2409 sizeof(struct resource
));
2410 master_image
->kern_base
= NULL
;
2411 list_add_tail(&master_image
->list
,
2412 &tsi148_bridge
->master_resources
);
2415 /* Add slave windows to list */
2416 for (i
= 0; i
< TSI148_MAX_SLAVE
; i
++) {
2417 slave_image
= kmalloc(sizeof(struct vme_slave_resource
),
2419 if (slave_image
== NULL
) {
2420 dev_err(&pdev
->dev
, "Failed to allocate memory for "
2421 "slave resource structure\n");
2425 slave_image
->parent
= tsi148_bridge
;
2426 mutex_init(&slave_image
->mtx
);
2427 slave_image
->locked
= 0;
2428 slave_image
->number
= i
;
2429 slave_image
->address_attr
= VME_A16
| VME_A24
| VME_A32
|
2431 slave_image
->cycle_attr
= VME_SCT
| VME_BLT
| VME_MBLT
|
2432 VME_2eVME
| VME_2eSST
| VME_2eSSTB
| VME_2eSST160
|
2433 VME_2eSST267
| VME_2eSST320
| VME_SUPER
| VME_USER
|
2434 VME_PROG
| VME_DATA
;
2435 list_add_tail(&slave_image
->list
,
2436 &tsi148_bridge
->slave_resources
);
2439 /* Add dma engines to list */
2440 for (i
= 0; i
< TSI148_MAX_DMA
; i
++) {
2441 dma_ctrlr
= kmalloc(sizeof(struct vme_dma_resource
),
2443 if (dma_ctrlr
== NULL
) {
2444 dev_err(&pdev
->dev
, "Failed to allocate memory for "
2445 "dma resource structure\n");
2449 dma_ctrlr
->parent
= tsi148_bridge
;
2450 mutex_init(&dma_ctrlr
->mtx
);
2451 dma_ctrlr
->locked
= 0;
2452 dma_ctrlr
->number
= i
;
2453 dma_ctrlr
->route_attr
= VME_DMA_VME_TO_MEM
|
2454 VME_DMA_MEM_TO_VME
| VME_DMA_VME_TO_VME
|
2455 VME_DMA_MEM_TO_MEM
| VME_DMA_PATTERN_TO_VME
|
2456 VME_DMA_PATTERN_TO_MEM
;
2457 INIT_LIST_HEAD(&dma_ctrlr
->pending
);
2458 INIT_LIST_HEAD(&dma_ctrlr
->running
);
2459 list_add_tail(&dma_ctrlr
->list
,
2460 &tsi148_bridge
->dma_resources
);
2463 /* Add location monitor to list */
2464 lm
= kmalloc(sizeof(struct vme_lm_resource
), GFP_KERNEL
);
2466 dev_err(&pdev
->dev
, "Failed to allocate memory for "
2467 "location monitor resource structure\n");
2471 lm
->parent
= tsi148_bridge
;
2472 mutex_init(&lm
->mtx
);
2476 list_add_tail(&lm
->list
, &tsi148_bridge
->lm_resources
);
2478 tsi148_bridge
->slave_get
= tsi148_slave_get
;
2479 tsi148_bridge
->slave_set
= tsi148_slave_set
;
2480 tsi148_bridge
->master_get
= tsi148_master_get
;
2481 tsi148_bridge
->master_set
= tsi148_master_set
;
2482 tsi148_bridge
->master_read
= tsi148_master_read
;
2483 tsi148_bridge
->master_write
= tsi148_master_write
;
2484 tsi148_bridge
->master_rmw
= tsi148_master_rmw
;
2485 tsi148_bridge
->dma_list_add
= tsi148_dma_list_add
;
2486 tsi148_bridge
->dma_list_exec
= tsi148_dma_list_exec
;
2487 tsi148_bridge
->dma_list_empty
= tsi148_dma_list_empty
;
2488 tsi148_bridge
->irq_set
= tsi148_irq_set
;
2489 tsi148_bridge
->irq_generate
= tsi148_irq_generate
;
2490 tsi148_bridge
->lm_set
= tsi148_lm_set
;
2491 tsi148_bridge
->lm_get
= tsi148_lm_get
;
2492 tsi148_bridge
->lm_attach
= tsi148_lm_attach
;
2493 tsi148_bridge
->lm_detach
= tsi148_lm_detach
;
2494 tsi148_bridge
->slot_get
= tsi148_slot_get
;
2495 tsi148_bridge
->alloc_consistent
= tsi148_alloc_consistent
;
2496 tsi148_bridge
->free_consistent
= tsi148_free_consistent
;
2498 data
= ioread32be(tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2499 dev_info(&pdev
->dev
, "Board is%s the VME system controller\n",
2500 (data
& TSI148_LCSR_VSTAT_SCONS
) ? "" : " not");
2502 dev_info(&pdev
->dev
, "VME geographical address is %d\n",
2503 data
& TSI148_LCSR_VSTAT_GA_M
);
2505 dev_info(&pdev
->dev
, "VME geographical address is set to %d\n",
2508 dev_info(&pdev
->dev
, "VME Write and flush and error check is %s\n",
2509 err_chk
? "enabled" : "disabled");
2511 retval
= tsi148_crcsr_init(tsi148_bridge
, pdev
);
2513 dev_err(&pdev
->dev
, "CR/CSR configuration failed.\n");
2517 retval
= vme_register_bridge(tsi148_bridge
);
2519 dev_err(&pdev
->dev
, "Chip Registration failed.\n");
2523 pci_set_drvdata(pdev
, tsi148_bridge
);
2525 /* Clear VME bus "board fail", and "power-up reset" lines */
2526 data
= ioread32be(tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2527 data
&= ~TSI148_LCSR_VSTAT_BRDFL
;
2528 data
|= TSI148_LCSR_VSTAT_CPURST
;
2529 iowrite32be(data
, tsi148_device
->base
+ TSI148_LCSR_VSTAT
);
2534 tsi148_crcsr_exit(tsi148_bridge
, pdev
);
2537 /* resources are stored in link list */
2538 list_for_each_safe(pos
, n
, &tsi148_bridge
->lm_resources
) {
2539 lm
= list_entry(pos
, struct vme_lm_resource
, list
);
2544 /* resources are stored in link list */
2545 list_for_each_safe(pos
, n
, &tsi148_bridge
->dma_resources
) {
2546 dma_ctrlr
= list_entry(pos
, struct vme_dma_resource
, list
);
2551 /* resources are stored in link list */
2552 list_for_each_safe(pos
, n
, &tsi148_bridge
->slave_resources
) {
2553 slave_image
= list_entry(pos
, struct vme_slave_resource
, list
);
2558 /* resources are stored in link list */
2559 list_for_each_safe(pos
, n
, &tsi148_bridge
->master_resources
) {
2560 master_image
= list_entry(pos
, struct vme_master_resource
,
2563 kfree(master_image
);
2566 tsi148_irq_exit(tsi148_bridge
, pdev
);
2569 iounmap(tsi148_device
->base
);
2571 pci_release_regions(pdev
);
2573 pci_disable_device(pdev
);
2575 kfree(tsi148_device
);
2577 kfree(tsi148_bridge
);
2583 static void tsi148_remove(struct pci_dev
*pdev
)
2585 struct list_head
*pos
= NULL
;
2586 struct list_head
*tmplist
;
2587 struct vme_master_resource
*master_image
;
2588 struct vme_slave_resource
*slave_image
;
2589 struct vme_dma_resource
*dma_ctrlr
;
2591 struct tsi148_driver
*bridge
;
2592 struct vme_bridge
*tsi148_bridge
= pci_get_drvdata(pdev
);
2594 bridge
= tsi148_bridge
->driver_priv
;
2597 dev_dbg(&pdev
->dev
, "Driver is being unloaded.\n");
2600 * Shutdown all inbound and outbound windows.
2602 for (i
= 0; i
< 8; i
++) {
2603 iowrite32be(0, bridge
->base
+ TSI148_LCSR_IT
[i
] +
2604 TSI148_LCSR_OFFSET_ITAT
);
2605 iowrite32be(0, bridge
->base
+ TSI148_LCSR_OT
[i
] +
2606 TSI148_LCSR_OFFSET_OTAT
);
2610 * Shutdown Location monitor.
2612 iowrite32be(0, bridge
->base
+ TSI148_LCSR_LMAT
);
2617 iowrite32be(0, bridge
->base
+ TSI148_LCSR_CSRAT
);
2620 * Clear error status.
2622 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_EDPAT
);
2623 iowrite32be(0xFFFFFFFF, bridge
->base
+ TSI148_LCSR_VEAT
);
2624 iowrite32be(0x07000700, bridge
->base
+ TSI148_LCSR_PSTAT
);
2627 * Remove VIRQ interrupt (if any)
2629 if (ioread32be(bridge
->base
+ TSI148_LCSR_VICR
) & 0x800)
2630 iowrite32be(0x8000, bridge
->base
+ TSI148_LCSR_VICR
);
2633 * Map all Interrupts to PCI INTA
2635 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTM1
);
2636 iowrite32be(0x0, bridge
->base
+ TSI148_LCSR_INTM2
);
2638 tsi148_irq_exit(tsi148_bridge
, pdev
);
2640 vme_unregister_bridge(tsi148_bridge
);
2642 tsi148_crcsr_exit(tsi148_bridge
, pdev
);
2644 /* resources are stored in link list */
2645 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->dma_resources
) {
2646 dma_ctrlr
= list_entry(pos
, struct vme_dma_resource
, list
);
2651 /* resources are stored in link list */
2652 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->slave_resources
) {
2653 slave_image
= list_entry(pos
, struct vme_slave_resource
, list
);
2658 /* resources are stored in link list */
2659 list_for_each_safe(pos
, tmplist
, &tsi148_bridge
->master_resources
) {
2660 master_image
= list_entry(pos
, struct vme_master_resource
,
2663 kfree(master_image
);
2666 iounmap(bridge
->base
);
2668 pci_release_regions(pdev
);
2670 pci_disable_device(pdev
);
2672 kfree(tsi148_bridge
->driver_priv
);
2674 kfree(tsi148_bridge
);
2677 module_pci_driver(tsi148_driver
);
2679 MODULE_PARM_DESC(err_chk
, "Check for VME errors on reads and writes");
2680 module_param(err_chk
, bool, 0);
2682 MODULE_PARM_DESC(geoid
, "Override geographical addressing");
2683 module_param(geoid
, int, 0);
2685 MODULE_DESCRIPTION("VME driver for the Tundra Tempe VME bridge");
2686 MODULE_LICENSE("GPL");