staging: sm7xxfb: fix for "rename smtc_screen_info to smtc_scr_info"
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / vme / bridges / vme_tsi148.c
CommitLineData
d22b8ed9
MW
1/*
2 * Support for the Tundra TSI148 VME-PCI Bridge Chip
3 *
66bd8db5
MW
4 * Author: Martyn Welch <martyn.welch@ge.com>
5 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
d22b8ed9
MW
6 *
7 * Based on work by Tom Armistead and Ajit Prem
8 * Copyright 2004 Motorola Inc.
9 *
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.
14 */
15
d22b8ed9
MW
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/mm.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>
6af783c8 27#include <linux/sched.h>
5a0e3ad6 28#include <linux/slab.h>
7946328f
MW
29#include <linux/time.h>
30#include <linux/io.h>
31#include <linux/uaccess.h>
ac1a4f2c 32#include <linux/byteorder/generic.h>
db3b9e99 33#include <linux/vme.h>
d22b8ed9 34
d22b8ed9
MW
35#include "../vme_bridge.h"
36#include "vme_tsi148.h"
37
38static int __init tsi148_init(void);
39static int tsi148_probe(struct pci_dev *, const struct pci_device_id *);
40static void tsi148_remove(struct pci_dev *);
41static void __exit tsi148_exit(void);
42
43
29848ac9 44/* Module parameter */
90ab5ee9 45static bool err_chk;
638f199d 46static int geoid;
d22b8ed9 47
584721ca 48static const char driver_name[] = "vme_tsi148";
d22b8ed9 49
270b64bb 50static DEFINE_PCI_DEVICE_TABLE(tsi148_ids) = {
d22b8ed9
MW
51 { PCI_DEVICE(PCI_VENDOR_ID_TUNDRA, PCI_DEVICE_ID_TUNDRA_TSI148) },
52 { },
53};
54
55static struct pci_driver tsi148_driver = {
56 .name = driver_name,
57 .id_table = tsi148_ids,
58 .probe = tsi148_probe,
59 .remove = tsi148_remove,
60};
61
62static void reg_join(unsigned int high, unsigned int low,
63 unsigned long long *variable)
64{
65 *variable = (unsigned long long)high << 32;
66 *variable |= (unsigned long long)low;
67}
68
69static void reg_split(unsigned long long variable, unsigned int *high,
70 unsigned int *low)
71{
72 *low = (unsigned int)variable & 0xFFFFFFFF;
73 *high = (unsigned int)(variable >> 32);
74}
75
76/*
77 * Wakes up DMA queue.
78 */
29848ac9
MW
79static u32 tsi148_DMA_irqhandler(struct tsi148_driver *bridge,
80 int channel_mask)
d22b8ed9
MW
81{
82 u32 serviced = 0;
83
84 if (channel_mask & TSI148_LCSR_INTS_DMA0S) {
886953e9 85 wake_up(&bridge->dma_queue[0]);
d22b8ed9
MW
86 serviced |= TSI148_LCSR_INTC_DMA0C;
87 }
88 if (channel_mask & TSI148_LCSR_INTS_DMA1S) {
886953e9 89 wake_up(&bridge->dma_queue[1]);
d22b8ed9
MW
90 serviced |= TSI148_LCSR_INTC_DMA1C;
91 }
92
93 return serviced;
94}
95
96/*
97 * Wake up location monitor queue
98 */
29848ac9 99static u32 tsi148_LM_irqhandler(struct tsi148_driver *bridge, u32 stat)
d22b8ed9
MW
100{
101 int i;
102 u32 serviced = 0;
103
104 for (i = 0; i < 4; i++) {
7946328f 105 if (stat & TSI148_LCSR_INTS_LMS[i]) {
d22b8ed9 106 /* We only enable interrupts if the callback is set */
29848ac9 107 bridge->lm_callback[i](i);
d22b8ed9
MW
108 serviced |= TSI148_LCSR_INTC_LMC[i];
109 }
110 }
111
112 return serviced;
113}
114
115/*
116 * Wake up mail box queue.
117 *
118 * XXX This functionality is not exposed up though API.
119 */
48d9356e 120static u32 tsi148_MB_irqhandler(struct vme_bridge *tsi148_bridge, u32 stat)
d22b8ed9
MW
121{
122 int i;
123 u32 val;
124 u32 serviced = 0;
48d9356e
MW
125 struct tsi148_driver *bridge;
126
127 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
128
129 for (i = 0; i < 4; i++) {
7946328f 130 if (stat & TSI148_LCSR_INTS_MBS[i]) {
29848ac9 131 val = ioread32be(bridge->base + TSI148_GCSR_MBOX[i]);
48d9356e
MW
132 dev_err(tsi148_bridge->parent, "VME Mailbox %d received"
133 ": 0x%x\n", i, val);
d22b8ed9
MW
134 serviced |= TSI148_LCSR_INTC_MBC[i];
135 }
136 }
137
138 return serviced;
139}
140
141/*
142 * Display error & status message when PERR (PCI) exception interrupt occurs.
143 */
48d9356e 144static u32 tsi148_PERR_irqhandler(struct vme_bridge *tsi148_bridge)
d22b8ed9 145{
48d9356e
MW
146 struct tsi148_driver *bridge;
147
148 bridge = tsi148_bridge->driver_priv;
149
150 dev_err(tsi148_bridge->parent, "PCI Exception at address: 0x%08x:%08x, "
151 "attributes: %08x\n",
29848ac9
MW
152 ioread32be(bridge->base + TSI148_LCSR_EDPAU),
153 ioread32be(bridge->base + TSI148_LCSR_EDPAL),
48d9356e
MW
154 ioread32be(bridge->base + TSI148_LCSR_EDPAT));
155
156 dev_err(tsi148_bridge->parent, "PCI-X attribute reg: %08x, PCI-X split "
157 "completion reg: %08x\n",
29848ac9 158 ioread32be(bridge->base + TSI148_LCSR_EDPXA),
48d9356e 159 ioread32be(bridge->base + TSI148_LCSR_EDPXS));
d22b8ed9 160
29848ac9 161 iowrite32be(TSI148_LCSR_EDPAT_EDPCL, bridge->base + TSI148_LCSR_EDPAT);
d22b8ed9
MW
162
163 return TSI148_LCSR_INTC_PERRC;
164}
165
166/*
167 * Save address and status when VME error interrupt occurs.
168 */
29848ac9 169static u32 tsi148_VERR_irqhandler(struct vme_bridge *tsi148_bridge)
d22b8ed9
MW
170{
171 unsigned int error_addr_high, error_addr_low;
172 unsigned long long error_addr;
173 u32 error_attrib;
174 struct vme_bus_error *error;
29848ac9
MW
175 struct tsi148_driver *bridge;
176
177 bridge = tsi148_bridge->driver_priv;
d22b8ed9 178
29848ac9
MW
179 error_addr_high = ioread32be(bridge->base + TSI148_LCSR_VEAU);
180 error_addr_low = ioread32be(bridge->base + TSI148_LCSR_VEAL);
181 error_attrib = ioread32be(bridge->base + TSI148_LCSR_VEAT);
d22b8ed9
MW
182
183 reg_join(error_addr_high, error_addr_low, &error_addr);
184
185 /* Check for exception register overflow (we have lost error data) */
7946328f 186 if (error_attrib & TSI148_LCSR_VEAT_VEOF) {
48d9356e
MW
187 dev_err(tsi148_bridge->parent, "VME Bus Exception Overflow "
188 "Occurred\n");
d22b8ed9
MW
189 }
190
7946328f 191 error = kmalloc(sizeof(struct vme_bus_error), GFP_ATOMIC);
d22b8ed9
MW
192 if (error) {
193 error->address = error_addr;
194 error->attributes = error_attrib;
886953e9 195 list_add_tail(&error->list, &tsi148_bridge->vme_errors);
d22b8ed9 196 } else {
48d9356e
MW
197 dev_err(tsi148_bridge->parent, "Unable to alloc memory for "
198 "VMEbus Error reporting\n");
199 dev_err(tsi148_bridge->parent, "VME Bus Error at address: "
200 "0x%llx, attributes: %08x\n", error_addr, error_attrib);
d22b8ed9
MW
201 }
202
203 /* Clear Status */
29848ac9 204 iowrite32be(TSI148_LCSR_VEAT_VESCL, bridge->base + TSI148_LCSR_VEAT);
d22b8ed9
MW
205
206 return TSI148_LCSR_INTC_VERRC;
207}
208
209/*
210 * Wake up IACK queue.
211 */
29848ac9 212static u32 tsi148_IACK_irqhandler(struct tsi148_driver *bridge)
d22b8ed9 213{
886953e9 214 wake_up(&bridge->iack_queue);
d22b8ed9
MW
215
216 return TSI148_LCSR_INTC_IACKC;
217}
218
219/*
220 * Calling VME bus interrupt callback if provided.
221 */
29848ac9
MW
222static u32 tsi148_VIRQ_irqhandler(struct vme_bridge *tsi148_bridge,
223 u32 stat)
d22b8ed9
MW
224{
225 int vec, i, serviced = 0;
29848ac9
MW
226 struct tsi148_driver *bridge;
227
228 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
229
230 for (i = 7; i > 0; i--) {
231 if (stat & (1 << i)) {
232 /*
7946328f
MW
233 * Note: Even though the registers are defined as
234 * 32-bits in the spec, we only want to issue 8-bit
235 * IACK cycles on the bus, read from offset 3.
d22b8ed9 236 */
29848ac9 237 vec = ioread8(bridge->base + TSI148_LCSR_VIACK[i] + 3);
d22b8ed9 238
c813f592 239 vme_irq_handler(tsi148_bridge, i, vec);
d22b8ed9
MW
240
241 serviced |= (1 << i);
242 }
243 }
244
245 return serviced;
246}
247
248/*
249 * Top level interrupt handler. Clears appropriate interrupt status bits and
250 * then calls appropriate sub handler(s).
251 */
29848ac9 252static irqreturn_t tsi148_irqhandler(int irq, void *ptr)
d22b8ed9
MW
253{
254 u32 stat, enable, serviced = 0;
29848ac9
MW
255 struct vme_bridge *tsi148_bridge;
256 struct tsi148_driver *bridge;
257
258 tsi148_bridge = ptr;
259
260 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
261
262 /* Determine which interrupts are unmasked and set */
29848ac9
MW
263 enable = ioread32be(bridge->base + TSI148_LCSR_INTEO);
264 stat = ioread32be(bridge->base + TSI148_LCSR_INTS);
d22b8ed9
MW
265
266 /* Only look at unmasked interrupts */
267 stat &= enable;
268
7946328f 269 if (unlikely(!stat))
d22b8ed9 270 return IRQ_NONE;
d22b8ed9
MW
271
272 /* Call subhandlers as appropriate */
273 /* DMA irqs */
274 if (stat & (TSI148_LCSR_INTS_DMA1S | TSI148_LCSR_INTS_DMA0S))
29848ac9 275 serviced |= tsi148_DMA_irqhandler(bridge, stat);
d22b8ed9
MW
276
277 /* Location monitor irqs */
278 if (stat & (TSI148_LCSR_INTS_LM3S | TSI148_LCSR_INTS_LM2S |
279 TSI148_LCSR_INTS_LM1S | TSI148_LCSR_INTS_LM0S))
29848ac9 280 serviced |= tsi148_LM_irqhandler(bridge, stat);
d22b8ed9
MW
281
282 /* Mail box irqs */
283 if (stat & (TSI148_LCSR_INTS_MB3S | TSI148_LCSR_INTS_MB2S |
284 TSI148_LCSR_INTS_MB1S | TSI148_LCSR_INTS_MB0S))
48d9356e 285 serviced |= tsi148_MB_irqhandler(tsi148_bridge, stat);
d22b8ed9
MW
286
287 /* PCI bus error */
288 if (stat & TSI148_LCSR_INTS_PERRS)
48d9356e 289 serviced |= tsi148_PERR_irqhandler(tsi148_bridge);
d22b8ed9
MW
290
291 /* VME bus error */
292 if (stat & TSI148_LCSR_INTS_VERRS)
29848ac9 293 serviced |= tsi148_VERR_irqhandler(tsi148_bridge);
d22b8ed9
MW
294
295 /* IACK irq */
296 if (stat & TSI148_LCSR_INTS_IACKS)
29848ac9 297 serviced |= tsi148_IACK_irqhandler(bridge);
d22b8ed9
MW
298
299 /* VME bus irqs */
300 if (stat & (TSI148_LCSR_INTS_IRQ7S | TSI148_LCSR_INTS_IRQ6S |
301 TSI148_LCSR_INTS_IRQ5S | TSI148_LCSR_INTS_IRQ4S |
302 TSI148_LCSR_INTS_IRQ3S | TSI148_LCSR_INTS_IRQ2S |
303 TSI148_LCSR_INTS_IRQ1S))
29848ac9 304 serviced |= tsi148_VIRQ_irqhandler(tsi148_bridge, stat);
d22b8ed9
MW
305
306 /* Clear serviced interrupts */
29848ac9 307 iowrite32be(serviced, bridge->base + TSI148_LCSR_INTC);
d22b8ed9
MW
308
309 return IRQ_HANDLED;
310}
311
29848ac9 312static int tsi148_irq_init(struct vme_bridge *tsi148_bridge)
d22b8ed9
MW
313{
314 int result;
315 unsigned int tmp;
316 struct pci_dev *pdev;
29848ac9
MW
317 struct tsi148_driver *bridge;
318
319 pdev = container_of(tsi148_bridge->parent, struct pci_dev, dev);
d22b8ed9 320
29848ac9 321 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
322
323 /* Initialise list for VME bus errors */
886953e9 324 INIT_LIST_HEAD(&tsi148_bridge->vme_errors);
d22b8ed9 325
886953e9 326 mutex_init(&tsi148_bridge->irq_mtx);
c813f592 327
d22b8ed9
MW
328 result = request_irq(pdev->irq,
329 tsi148_irqhandler,
330 IRQF_SHARED,
29848ac9 331 driver_name, tsi148_bridge);
d22b8ed9 332 if (result) {
48d9356e
MW
333 dev_err(tsi148_bridge->parent, "Can't get assigned pci irq "
334 "vector %02X\n", pdev->irq);
d22b8ed9
MW
335 return result;
336 }
337
338 /* Enable and unmask interrupts */
339 tmp = TSI148_LCSR_INTEO_DMA1EO | TSI148_LCSR_INTEO_DMA0EO |
340 TSI148_LCSR_INTEO_MB3EO | TSI148_LCSR_INTEO_MB2EO |
341 TSI148_LCSR_INTEO_MB1EO | TSI148_LCSR_INTEO_MB0EO |
342 TSI148_LCSR_INTEO_PERREO | TSI148_LCSR_INTEO_VERREO |
343 TSI148_LCSR_INTEO_IACKEO;
344
29848ac9 345 /* This leaves the following interrupts masked.
d22b8ed9
MW
346 * TSI148_LCSR_INTEO_VIEEO
347 * TSI148_LCSR_INTEO_SYSFLEO
348 * TSI148_LCSR_INTEO_ACFLEO
349 */
350
351 /* Don't enable Location Monitor interrupts here - they will be
352 * enabled when the location monitors are properly configured and
353 * a callback has been attached.
354 * TSI148_LCSR_INTEO_LM0EO
355 * TSI148_LCSR_INTEO_LM1EO
356 * TSI148_LCSR_INTEO_LM2EO
357 * TSI148_LCSR_INTEO_LM3EO
358 */
359
360 /* Don't enable VME interrupts until we add a handler, else the board
361 * will respond to it and we don't want that unless it knows how to
362 * properly deal with it.
363 * TSI148_LCSR_INTEO_IRQ7EO
364 * TSI148_LCSR_INTEO_IRQ6EO
365 * TSI148_LCSR_INTEO_IRQ5EO
366 * TSI148_LCSR_INTEO_IRQ4EO
367 * TSI148_LCSR_INTEO_IRQ3EO
368 * TSI148_LCSR_INTEO_IRQ2EO
369 * TSI148_LCSR_INTEO_IRQ1EO
370 */
371
372 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEO);
373 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEN);
374
375 return 0;
376}
377
a82ad05e
EC
378static void tsi148_irq_exit(struct vme_bridge *tsi148_bridge,
379 struct pci_dev *pdev)
d22b8ed9 380{
a82ad05e
EC
381 struct tsi148_driver *bridge = tsi148_bridge->driver_priv;
382
d22b8ed9 383 /* Turn off interrupts */
29848ac9
MW
384 iowrite32be(0x0, bridge->base + TSI148_LCSR_INTEO);
385 iowrite32be(0x0, bridge->base + TSI148_LCSR_INTEN);
d22b8ed9
MW
386
387 /* Clear all interrupts */
29848ac9 388 iowrite32be(0xFFFFFFFF, bridge->base + TSI148_LCSR_INTC);
d22b8ed9
MW
389
390 /* Detach interrupt handler */
a82ad05e 391 free_irq(pdev->irq, tsi148_bridge);
d22b8ed9
MW
392}
393
394/*
395 * Check to see if an IACk has been received, return true (1) or false (0).
396 */
5ade6c4d 397static int tsi148_iack_received(struct tsi148_driver *bridge)
d22b8ed9
MW
398{
399 u32 tmp;
400
29848ac9 401 tmp = ioread32be(bridge->base + TSI148_LCSR_VICR);
d22b8ed9
MW
402
403 if (tmp & TSI148_LCSR_VICR_IRQS)
404 return 0;
405 else
406 return 1;
407}
408
409/*
c813f592 410 * Configure VME interrupt
d22b8ed9 411 */
5ade6c4d 412static void tsi148_irq_set(struct vme_bridge *tsi148_bridge, int level,
29848ac9 413 int state, int sync)
d22b8ed9 414{
75155020 415 struct pci_dev *pdev;
c813f592 416 u32 tmp;
29848ac9
MW
417 struct tsi148_driver *bridge;
418
419 bridge = tsi148_bridge->driver_priv;
d22b8ed9 420
c813f592
MW
421 /* We need to do the ordering differently for enabling and disabling */
422 if (state == 0) {
29848ac9 423 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEN);
d22b8ed9 424 tmp &= ~TSI148_LCSR_INTEN_IRQEN[level - 1];
29848ac9 425 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEN);
df455175 426
29848ac9 427 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEO);
df455175 428 tmp &= ~TSI148_LCSR_INTEO_IRQEO[level - 1];
29848ac9 429 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEO);
75155020 430
c813f592
MW
431 if (sync != 0) {
432 pdev = container_of(tsi148_bridge->parent,
433 struct pci_dev, dev);
75155020 434
c813f592
MW
435 synchronize_irq(pdev->irq);
436 }
437 } else {
29848ac9 438 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEO);
c813f592 439 tmp |= TSI148_LCSR_INTEO_IRQEO[level - 1];
29848ac9 440 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEO);
df455175 441
29848ac9 442 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEN);
c813f592 443 tmp |= TSI148_LCSR_INTEN_IRQEN[level - 1];
29848ac9 444 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEN);
c813f592 445 }
d22b8ed9
MW
446}
447
448/*
449 * Generate a VME bus interrupt at the requested level & vector. Wait for
450 * interrupt to be acked.
d22b8ed9 451 */
5ade6c4d
EC
452static int tsi148_irq_generate(struct vme_bridge *tsi148_bridge, int level,
453 int statid)
d22b8ed9
MW
454{
455 u32 tmp;
29848ac9
MW
456 struct tsi148_driver *bridge;
457
458 bridge = tsi148_bridge->driver_priv;
d22b8ed9 459
886953e9 460 mutex_lock(&bridge->vme_int);
d22b8ed9
MW
461
462 /* Read VICR register */
29848ac9 463 tmp = ioread32be(bridge->base + TSI148_LCSR_VICR);
d22b8ed9
MW
464
465 /* Set Status/ID */
466 tmp = (tmp & ~TSI148_LCSR_VICR_STID_M) |
467 (statid & TSI148_LCSR_VICR_STID_M);
29848ac9 468 iowrite32be(tmp, bridge->base + TSI148_LCSR_VICR);
d22b8ed9
MW
469
470 /* Assert VMEbus IRQ */
471 tmp = tmp | TSI148_LCSR_VICR_IRQL[level];
29848ac9 472 iowrite32be(tmp, bridge->base + TSI148_LCSR_VICR);
d22b8ed9
MW
473
474 /* XXX Consider implementing a timeout? */
29848ac9
MW
475 wait_event_interruptible(bridge->iack_queue,
476 tsi148_iack_received(bridge));
d22b8ed9 477
886953e9 478 mutex_unlock(&bridge->vme_int);
d22b8ed9
MW
479
480 return 0;
481}
482
483/*
484 * Find the first error in this address range
485 */
29848ac9 486static struct vme_bus_error *tsi148_find_error(struct vme_bridge *tsi148_bridge,
6af04b06 487 u32 aspace, unsigned long long address, size_t count)
d22b8ed9
MW
488{
489 struct list_head *err_pos;
490 struct vme_bus_error *vme_err, *valid = NULL;
491 unsigned long long bound;
492
493 bound = address + count;
494
495 /*
496 * XXX We are currently not looking at the address space when parsing
497 * for errors. This is because parsing the Address Modifier Codes
498 * is going to be quite resource intensive to do properly. We
499 * should be OK just looking at the addresses and this is certainly
500 * much better than what we had before.
501 */
502 err_pos = NULL;
503 /* Iterate through errors */
886953e9 504 list_for_each(err_pos, &tsi148_bridge->vme_errors) {
d22b8ed9 505 vme_err = list_entry(err_pos, struct vme_bus_error, list);
7946328f
MW
506 if ((vme_err->address >= address) &&
507 (vme_err->address < bound)) {
508
d22b8ed9
MW
509 valid = vme_err;
510 break;
511 }
512 }
513
514 return valid;
515}
516
517/*
518 * Clear errors in the provided address range.
519 */
29848ac9 520static void tsi148_clear_errors(struct vme_bridge *tsi148_bridge,
6af04b06 521 u32 aspace, unsigned long long address, size_t count)
d22b8ed9
MW
522{
523 struct list_head *err_pos, *temp;
524 struct vme_bus_error *vme_err;
525 unsigned long long bound;
526
527 bound = address + count;
528
529 /*
530 * XXX We are currently not looking at the address space when parsing
531 * for errors. This is because parsing the Address Modifier Codes
532 * is going to be quite resource intensive to do properly. We
533 * should be OK just looking at the addresses and this is certainly
534 * much better than what we had before.
535 */
536 err_pos = NULL;
537 /* Iterate through errors */
886953e9 538 list_for_each_safe(err_pos, temp, &tsi148_bridge->vme_errors) {
d22b8ed9
MW
539 vme_err = list_entry(err_pos, struct vme_bus_error, list);
540
7946328f
MW
541 if ((vme_err->address >= address) &&
542 (vme_err->address < bound)) {
543
d22b8ed9
MW
544 list_del(err_pos);
545 kfree(vme_err);
546 }
547 }
548}
549
550/*
551 * Initialize a slave window with the requested attributes.
552 */
5ade6c4d 553static int tsi148_slave_set(struct vme_slave_resource *image, int enabled,
d22b8ed9 554 unsigned long long vme_base, unsigned long long size,
6af04b06 555 dma_addr_t pci_base, u32 aspace, u32 cycle)
d22b8ed9
MW
556{
557 unsigned int i, addr = 0, granularity = 0;
558 unsigned int temp_ctl = 0;
559 unsigned int vme_base_low, vme_base_high;
560 unsigned int vme_bound_low, vme_bound_high;
561 unsigned int pci_offset_low, pci_offset_high;
562 unsigned long long vme_bound, pci_offset;
48d9356e 563 struct vme_bridge *tsi148_bridge;
29848ac9
MW
564 struct tsi148_driver *bridge;
565
48d9356e
MW
566 tsi148_bridge = image->parent;
567 bridge = tsi148_bridge->driver_priv;
d22b8ed9 568
d22b8ed9
MW
569 i = image->number;
570
571 switch (aspace) {
572 case VME_A16:
573 granularity = 0x10;
574 addr |= TSI148_LCSR_ITAT_AS_A16;
575 break;
576 case VME_A24:
577 granularity = 0x1000;
578 addr |= TSI148_LCSR_ITAT_AS_A24;
579 break;
580 case VME_A32:
581 granularity = 0x10000;
582 addr |= TSI148_LCSR_ITAT_AS_A32;
583 break;
584 case VME_A64:
585 granularity = 0x10000;
586 addr |= TSI148_LCSR_ITAT_AS_A64;
587 break;
588 case VME_CRCSR:
589 case VME_USER1:
590 case VME_USER2:
591 case VME_USER3:
592 case VME_USER4:
593 default:
48d9356e 594 dev_err(tsi148_bridge->parent, "Invalid address space\n");
d22b8ed9
MW
595 return -EINVAL;
596 break;
597 }
598
599 /* Convert 64-bit variables to 2x 32-bit variables */
600 reg_split(vme_base, &vme_base_high, &vme_base_low);
601
602 /*
603 * Bound address is a valid address for the window, adjust
604 * accordingly
605 */
606 vme_bound = vme_base + size - granularity;
607 reg_split(vme_bound, &vme_bound_high, &vme_bound_low);
608 pci_offset = (unsigned long long)pci_base - vme_base;
609 reg_split(pci_offset, &pci_offset_high, &pci_offset_low);
610
611 if (vme_base_low & (granularity - 1)) {
48d9356e 612 dev_err(tsi148_bridge->parent, "Invalid VME base alignment\n");
d22b8ed9
MW
613 return -EINVAL;
614 }
615 if (vme_bound_low & (granularity - 1)) {
48d9356e 616 dev_err(tsi148_bridge->parent, "Invalid VME bound alignment\n");
d22b8ed9
MW
617 return -EINVAL;
618 }
619 if (pci_offset_low & (granularity - 1)) {
48d9356e
MW
620 dev_err(tsi148_bridge->parent, "Invalid PCI Offset "
621 "alignment\n");
d22b8ed9
MW
622 return -EINVAL;
623 }
624
d22b8ed9 625 /* Disable while we are mucking around */
29848ac9 626 temp_ctl = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
627 TSI148_LCSR_OFFSET_ITAT);
628 temp_ctl &= ~TSI148_LCSR_ITAT_EN;
29848ac9 629 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
630 TSI148_LCSR_OFFSET_ITAT);
631
632 /* Setup mapping */
29848ac9 633 iowrite32be(vme_base_high, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 634 TSI148_LCSR_OFFSET_ITSAU);
29848ac9 635 iowrite32be(vme_base_low, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 636 TSI148_LCSR_OFFSET_ITSAL);
29848ac9 637 iowrite32be(vme_bound_high, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 638 TSI148_LCSR_OFFSET_ITEAU);
29848ac9 639 iowrite32be(vme_bound_low, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 640 TSI148_LCSR_OFFSET_ITEAL);
29848ac9 641 iowrite32be(pci_offset_high, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 642 TSI148_LCSR_OFFSET_ITOFU);
29848ac9 643 iowrite32be(pci_offset_low, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
644 TSI148_LCSR_OFFSET_ITOFL);
645
d22b8ed9
MW
646 /* Setup 2eSST speeds */
647 temp_ctl &= ~TSI148_LCSR_ITAT_2eSSTM_M;
648 switch (cycle & (VME_2eSST160 | VME_2eSST267 | VME_2eSST320)) {
649 case VME_2eSST160:
650 temp_ctl |= TSI148_LCSR_ITAT_2eSSTM_160;
651 break;
652 case VME_2eSST267:
653 temp_ctl |= TSI148_LCSR_ITAT_2eSSTM_267;
654 break;
655 case VME_2eSST320:
656 temp_ctl |= TSI148_LCSR_ITAT_2eSSTM_320;
657 break;
658 }
659
660 /* Setup cycle types */
661 temp_ctl &= ~(0x1F << 7);
662 if (cycle & VME_BLT)
663 temp_ctl |= TSI148_LCSR_ITAT_BLT;
664 if (cycle & VME_MBLT)
665 temp_ctl |= TSI148_LCSR_ITAT_MBLT;
666 if (cycle & VME_2eVME)
667 temp_ctl |= TSI148_LCSR_ITAT_2eVME;
668 if (cycle & VME_2eSST)
669 temp_ctl |= TSI148_LCSR_ITAT_2eSST;
670 if (cycle & VME_2eSSTB)
671 temp_ctl |= TSI148_LCSR_ITAT_2eSSTB;
672
673 /* Setup address space */
674 temp_ctl &= ~TSI148_LCSR_ITAT_AS_M;
675 temp_ctl |= addr;
676
677 temp_ctl &= ~0xF;
678 if (cycle & VME_SUPER)
679 temp_ctl |= TSI148_LCSR_ITAT_SUPR ;
680 if (cycle & VME_USER)
681 temp_ctl |= TSI148_LCSR_ITAT_NPRIV;
682 if (cycle & VME_PROG)
683 temp_ctl |= TSI148_LCSR_ITAT_PGM;
684 if (cycle & VME_DATA)
685 temp_ctl |= TSI148_LCSR_ITAT_DATA;
686
687 /* Write ctl reg without enable */
29848ac9 688 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
689 TSI148_LCSR_OFFSET_ITAT);
690
691 if (enabled)
692 temp_ctl |= TSI148_LCSR_ITAT_EN;
693
29848ac9 694 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
695 TSI148_LCSR_OFFSET_ITAT);
696
697 return 0;
698}
699
700/*
701 * Get slave window configuration.
d22b8ed9 702 */
5ade6c4d 703static int tsi148_slave_get(struct vme_slave_resource *image, int *enabled,
d22b8ed9 704 unsigned long long *vme_base, unsigned long long *size,
6af04b06 705 dma_addr_t *pci_base, u32 *aspace, u32 *cycle)
d22b8ed9
MW
706{
707 unsigned int i, granularity = 0, ctl = 0;
708 unsigned int vme_base_low, vme_base_high;
709 unsigned int vme_bound_low, vme_bound_high;
710 unsigned int pci_offset_low, pci_offset_high;
711 unsigned long long vme_bound, pci_offset;
29848ac9 712 struct tsi148_driver *bridge;
d22b8ed9 713
29848ac9 714 bridge = image->parent->driver_priv;
d22b8ed9
MW
715
716 i = image->number;
717
718 /* Read registers */
29848ac9 719 ctl = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
720 TSI148_LCSR_OFFSET_ITAT);
721
29848ac9 722 vme_base_high = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 723 TSI148_LCSR_OFFSET_ITSAU);
29848ac9 724 vme_base_low = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 725 TSI148_LCSR_OFFSET_ITSAL);
29848ac9 726 vme_bound_high = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 727 TSI148_LCSR_OFFSET_ITEAU);
29848ac9 728 vme_bound_low = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 729 TSI148_LCSR_OFFSET_ITEAL);
29848ac9 730 pci_offset_high = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 731 TSI148_LCSR_OFFSET_ITOFU);
29848ac9 732 pci_offset_low = ioread32be(bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9
MW
733 TSI148_LCSR_OFFSET_ITOFL);
734
735 /* Convert 64-bit variables to 2x 32-bit variables */
736 reg_join(vme_base_high, vme_base_low, vme_base);
737 reg_join(vme_bound_high, vme_bound_low, &vme_bound);
738 reg_join(pci_offset_high, pci_offset_low, &pci_offset);
739
740 *pci_base = (dma_addr_t)vme_base + pci_offset;
741
742 *enabled = 0;
743 *aspace = 0;
744 *cycle = 0;
745
746 if (ctl & TSI148_LCSR_ITAT_EN)
747 *enabled = 1;
748
749 if ((ctl & TSI148_LCSR_ITAT_AS_M) == TSI148_LCSR_ITAT_AS_A16) {
750 granularity = 0x10;
751 *aspace |= VME_A16;
752 }
753 if ((ctl & TSI148_LCSR_ITAT_AS_M) == TSI148_LCSR_ITAT_AS_A24) {
754 granularity = 0x1000;
755 *aspace |= VME_A24;
756 }
757 if ((ctl & TSI148_LCSR_ITAT_AS_M) == TSI148_LCSR_ITAT_AS_A32) {
758 granularity = 0x10000;
759 *aspace |= VME_A32;
760 }
761 if ((ctl & TSI148_LCSR_ITAT_AS_M) == TSI148_LCSR_ITAT_AS_A64) {
762 granularity = 0x10000;
763 *aspace |= VME_A64;
764 }
765
766 /* Need granularity before we set the size */
767 *size = (unsigned long long)((vme_bound - *vme_base) + granularity);
768
769
770 if ((ctl & TSI148_LCSR_ITAT_2eSSTM_M) == TSI148_LCSR_ITAT_2eSSTM_160)
771 *cycle |= VME_2eSST160;
772 if ((ctl & TSI148_LCSR_ITAT_2eSSTM_M) == TSI148_LCSR_ITAT_2eSSTM_267)
773 *cycle |= VME_2eSST267;
774 if ((ctl & TSI148_LCSR_ITAT_2eSSTM_M) == TSI148_LCSR_ITAT_2eSSTM_320)
775 *cycle |= VME_2eSST320;
776
777 if (ctl & TSI148_LCSR_ITAT_BLT)
778 *cycle |= VME_BLT;
779 if (ctl & TSI148_LCSR_ITAT_MBLT)
780 *cycle |= VME_MBLT;
781 if (ctl & TSI148_LCSR_ITAT_2eVME)
782 *cycle |= VME_2eVME;
783 if (ctl & TSI148_LCSR_ITAT_2eSST)
784 *cycle |= VME_2eSST;
785 if (ctl & TSI148_LCSR_ITAT_2eSSTB)
786 *cycle |= VME_2eSSTB;
787
788 if (ctl & TSI148_LCSR_ITAT_SUPR)
789 *cycle |= VME_SUPER;
790 if (ctl & TSI148_LCSR_ITAT_NPRIV)
791 *cycle |= VME_USER;
792 if (ctl & TSI148_LCSR_ITAT_PGM)
793 *cycle |= VME_PROG;
794 if (ctl & TSI148_LCSR_ITAT_DATA)
795 *cycle |= VME_DATA;
796
797 return 0;
798}
799
800/*
801 * Allocate and map PCI Resource
802 */
803static int tsi148_alloc_resource(struct vme_master_resource *image,
804 unsigned long long size)
805{
806 unsigned long long existing_size;
807 int retval = 0;
808 struct pci_dev *pdev;
29848ac9
MW
809 struct vme_bridge *tsi148_bridge;
810
811 tsi148_bridge = image->parent;
d22b8ed9 812
48d9356e 813 pdev = container_of(tsi148_bridge->parent, struct pci_dev, dev);
d22b8ed9 814
8fafb476
MW
815 existing_size = (unsigned long long)(image->bus_resource.end -
816 image->bus_resource.start);
d22b8ed9
MW
817
818 /* If the existing size is OK, return */
59c22904 819 if ((size != 0) && (existing_size == (size - 1)))
d22b8ed9
MW
820 return 0;
821
822 if (existing_size != 0) {
823 iounmap(image->kern_base);
824 image->kern_base = NULL;
794a8946 825 kfree(image->bus_resource.name);
886953e9
EC
826 release_resource(&image->bus_resource);
827 memset(&image->bus_resource, 0, sizeof(struct resource));
d22b8ed9
MW
828 }
829
59c22904 830 /* Exit here if size is zero */
7946328f 831 if (size == 0)
59c22904 832 return 0;
59c22904 833
8fafb476 834 if (image->bus_resource.name == NULL) {
0aa3f139 835 image->bus_resource.name = kmalloc(VMENAMSIZ+3, GFP_ATOMIC);
8fafb476 836 if (image->bus_resource.name == NULL) {
48d9356e
MW
837 dev_err(tsi148_bridge->parent, "Unable to allocate "
838 "memory for resource name\n");
d22b8ed9
MW
839 retval = -ENOMEM;
840 goto err_name;
841 }
842 }
843
8fafb476 844 sprintf((char *)image->bus_resource.name, "%s.%d", tsi148_bridge->name,
d22b8ed9
MW
845 image->number);
846
8fafb476
MW
847 image->bus_resource.start = 0;
848 image->bus_resource.end = (unsigned long)size;
849 image->bus_resource.flags = IORESOURCE_MEM;
d22b8ed9
MW
850
851 retval = pci_bus_alloc_resource(pdev->bus,
886953e9 852 &image->bus_resource, size, size, PCIBIOS_MIN_MEM,
d22b8ed9
MW
853 0, NULL, NULL);
854 if (retval) {
48d9356e
MW
855 dev_err(tsi148_bridge->parent, "Failed to allocate mem "
856 "resource for window %d size 0x%lx start 0x%lx\n",
d22b8ed9 857 image->number, (unsigned long)size,
8fafb476 858 (unsigned long)image->bus_resource.start);
d22b8ed9
MW
859 goto err_resource;
860 }
861
862 image->kern_base = ioremap_nocache(
8fafb476 863 image->bus_resource.start, size);
d22b8ed9 864 if (image->kern_base == NULL) {
48d9356e 865 dev_err(tsi148_bridge->parent, "Failed to remap resource\n");
d22b8ed9
MW
866 retval = -ENOMEM;
867 goto err_remap;
868 }
869
870 return 0;
871
d22b8ed9 872err_remap:
886953e9 873 release_resource(&image->bus_resource);
d22b8ed9 874err_resource:
8fafb476 875 kfree(image->bus_resource.name);
886953e9 876 memset(&image->bus_resource, 0, sizeof(struct resource));
d22b8ed9
MW
877err_name:
878 return retval;
879}
880
881/*
882 * Free and unmap PCI Resource
883 */
884static void tsi148_free_resource(struct vme_master_resource *image)
885{
886 iounmap(image->kern_base);
887 image->kern_base = NULL;
886953e9 888 release_resource(&image->bus_resource);
8fafb476 889 kfree(image->bus_resource.name);
886953e9 890 memset(&image->bus_resource, 0, sizeof(struct resource));
d22b8ed9
MW
891}
892
893/*
894 * Set the attributes of an outbound window.
895 */
5ade6c4d 896static int tsi148_master_set(struct vme_master_resource *image, int enabled,
6af04b06
MW
897 unsigned long long vme_base, unsigned long long size, u32 aspace,
898 u32 cycle, u32 dwidth)
d22b8ed9
MW
899{
900 int retval = 0;
901 unsigned int i;
902 unsigned int temp_ctl = 0;
903 unsigned int pci_base_low, pci_base_high;
904 unsigned int pci_bound_low, pci_bound_high;
905 unsigned int vme_offset_low, vme_offset_high;
906 unsigned long long pci_bound, vme_offset, pci_base;
48d9356e 907 struct vme_bridge *tsi148_bridge;
29848ac9
MW
908 struct tsi148_driver *bridge;
909
48d9356e
MW
910 tsi148_bridge = image->parent;
911
912 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
913
914 /* Verify input data */
915 if (vme_base & 0xFFFF) {
48d9356e
MW
916 dev_err(tsi148_bridge->parent, "Invalid VME Window "
917 "alignment\n");
d22b8ed9
MW
918 retval = -EINVAL;
919 goto err_window;
920 }
59c22904
MW
921
922 if ((size == 0) && (enabled != 0)) {
48d9356e
MW
923 dev_err(tsi148_bridge->parent, "Size must be non-zero for "
924 "enabled windows\n");
d22b8ed9
MW
925 retval = -EINVAL;
926 goto err_window;
927 }
928
886953e9 929 spin_lock(&image->lock);
d22b8ed9
MW
930
931 /* Let's allocate the resource here rather than further up the stack as
25985edc 932 * it avoids pushing loads of bus dependent stuff up the stack. If size
59c22904 933 * is zero, any existing resource will be freed.
d22b8ed9
MW
934 */
935 retval = tsi148_alloc_resource(image, size);
936 if (retval) {
886953e9 937 spin_unlock(&image->lock);
48d9356e 938 dev_err(tsi148_bridge->parent, "Unable to allocate memory for "
59c22904 939 "resource\n");
d22b8ed9
MW
940 goto err_res;
941 }
942
59c22904
MW
943 if (size == 0) {
944 pci_base = 0;
945 pci_bound = 0;
946 vme_offset = 0;
947 } else {
8fafb476 948 pci_base = (unsigned long long)image->bus_resource.start;
59c22904
MW
949
950 /*
951 * Bound address is a valid address for the window, adjust
952 * according to window granularity.
953 */
954 pci_bound = pci_base + (size - 0x10000);
955 vme_offset = vme_base - pci_base;
956 }
d22b8ed9
MW
957
958 /* Convert 64-bit variables to 2x 32-bit variables */
959 reg_split(pci_base, &pci_base_high, &pci_base_low);
960 reg_split(pci_bound, &pci_bound_high, &pci_bound_low);
961 reg_split(vme_offset, &vme_offset_high, &vme_offset_low);
962
963 if (pci_base_low & 0xFFFF) {
886953e9 964 spin_unlock(&image->lock);
48d9356e 965 dev_err(tsi148_bridge->parent, "Invalid PCI base alignment\n");
d22b8ed9
MW
966 retval = -EINVAL;
967 goto err_gran;
968 }
969 if (pci_bound_low & 0xFFFF) {
886953e9 970 spin_unlock(&image->lock);
48d9356e 971 dev_err(tsi148_bridge->parent, "Invalid PCI bound alignment\n");
d22b8ed9
MW
972 retval = -EINVAL;
973 goto err_gran;
974 }
975 if (vme_offset_low & 0xFFFF) {
886953e9 976 spin_unlock(&image->lock);
48d9356e
MW
977 dev_err(tsi148_bridge->parent, "Invalid VME Offset "
978 "alignment\n");
d22b8ed9
MW
979 retval = -EINVAL;
980 goto err_gran;
981 }
982
983 i = image->number;
984
985 /* Disable while we are mucking around */
29848ac9 986 temp_ctl = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
987 TSI148_LCSR_OFFSET_OTAT);
988 temp_ctl &= ~TSI148_LCSR_OTAT_EN;
29848ac9 989 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
990 TSI148_LCSR_OFFSET_OTAT);
991
d22b8ed9
MW
992 /* Setup 2eSST speeds */
993 temp_ctl &= ~TSI148_LCSR_OTAT_2eSSTM_M;
994 switch (cycle & (VME_2eSST160 | VME_2eSST267 | VME_2eSST320)) {
995 case VME_2eSST160:
996 temp_ctl |= TSI148_LCSR_OTAT_2eSSTM_160;
997 break;
998 case VME_2eSST267:
999 temp_ctl |= TSI148_LCSR_OTAT_2eSSTM_267;
1000 break;
1001 case VME_2eSST320:
1002 temp_ctl |= TSI148_LCSR_OTAT_2eSSTM_320;
1003 break;
1004 }
1005
1006 /* Setup cycle types */
1007 if (cycle & VME_BLT) {
1008 temp_ctl &= ~TSI148_LCSR_OTAT_TM_M;
1009 temp_ctl |= TSI148_LCSR_OTAT_TM_BLT;
1010 }
1011 if (cycle & VME_MBLT) {
1012 temp_ctl &= ~TSI148_LCSR_OTAT_TM_M;
1013 temp_ctl |= TSI148_LCSR_OTAT_TM_MBLT;
1014 }
1015 if (cycle & VME_2eVME) {
1016 temp_ctl &= ~TSI148_LCSR_OTAT_TM_M;
1017 temp_ctl |= TSI148_LCSR_OTAT_TM_2eVME;
1018 }
1019 if (cycle & VME_2eSST) {
1020 temp_ctl &= ~TSI148_LCSR_OTAT_TM_M;
1021 temp_ctl |= TSI148_LCSR_OTAT_TM_2eSST;
1022 }
1023 if (cycle & VME_2eSSTB) {
48d9356e
MW
1024 dev_warn(tsi148_bridge->parent, "Currently not setting "
1025 "Broadcast Select Registers\n");
d22b8ed9
MW
1026 temp_ctl &= ~TSI148_LCSR_OTAT_TM_M;
1027 temp_ctl |= TSI148_LCSR_OTAT_TM_2eSSTB;
1028 }
1029
1030 /* Setup data width */
1031 temp_ctl &= ~TSI148_LCSR_OTAT_DBW_M;
1032 switch (dwidth) {
1033 case VME_D16:
1034 temp_ctl |= TSI148_LCSR_OTAT_DBW_16;
1035 break;
1036 case VME_D32:
1037 temp_ctl |= TSI148_LCSR_OTAT_DBW_32;
1038 break;
1039 default:
886953e9 1040 spin_unlock(&image->lock);
48d9356e 1041 dev_err(tsi148_bridge->parent, "Invalid data width\n");
d22b8ed9
MW
1042 retval = -EINVAL;
1043 goto err_dwidth;
1044 }
1045
1046 /* Setup address space */
1047 temp_ctl &= ~TSI148_LCSR_OTAT_AMODE_M;
1048 switch (aspace) {
1049 case VME_A16:
1050 temp_ctl |= TSI148_LCSR_OTAT_AMODE_A16;
1051 break;
1052 case VME_A24:
1053 temp_ctl |= TSI148_LCSR_OTAT_AMODE_A24;
1054 break;
1055 case VME_A32:
1056 temp_ctl |= TSI148_LCSR_OTAT_AMODE_A32;
1057 break;
1058 case VME_A64:
1059 temp_ctl |= TSI148_LCSR_OTAT_AMODE_A64;
1060 break;
1061 case VME_CRCSR:
1062 temp_ctl |= TSI148_LCSR_OTAT_AMODE_CRCSR;
1063 break;
1064 case VME_USER1:
1065 temp_ctl |= TSI148_LCSR_OTAT_AMODE_USER1;
1066 break;
1067 case VME_USER2:
1068 temp_ctl |= TSI148_LCSR_OTAT_AMODE_USER2;
1069 break;
1070 case VME_USER3:
1071 temp_ctl |= TSI148_LCSR_OTAT_AMODE_USER3;
1072 break;
1073 case VME_USER4:
1074 temp_ctl |= TSI148_LCSR_OTAT_AMODE_USER4;
1075 break;
1076 default:
886953e9 1077 spin_unlock(&image->lock);
48d9356e 1078 dev_err(tsi148_bridge->parent, "Invalid address space\n");
d22b8ed9
MW
1079 retval = -EINVAL;
1080 goto err_aspace;
1081 break;
1082 }
1083
1084 temp_ctl &= ~(3<<4);
1085 if (cycle & VME_SUPER)
1086 temp_ctl |= TSI148_LCSR_OTAT_SUP;
1087 if (cycle & VME_PROG)
1088 temp_ctl |= TSI148_LCSR_OTAT_PGM;
1089
1090 /* Setup mapping */
29848ac9 1091 iowrite32be(pci_base_high, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1092 TSI148_LCSR_OFFSET_OTSAU);
29848ac9 1093 iowrite32be(pci_base_low, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1094 TSI148_LCSR_OFFSET_OTSAL);
29848ac9 1095 iowrite32be(pci_bound_high, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1096 TSI148_LCSR_OFFSET_OTEAU);
29848ac9 1097 iowrite32be(pci_bound_low, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1098 TSI148_LCSR_OFFSET_OTEAL);
29848ac9 1099 iowrite32be(vme_offset_high, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1100 TSI148_LCSR_OFFSET_OTOFU);
29848ac9 1101 iowrite32be(vme_offset_low, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1102 TSI148_LCSR_OFFSET_OTOFL);
1103
d22b8ed9 1104 /* Write ctl reg without enable */
29848ac9 1105 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1106 TSI148_LCSR_OFFSET_OTAT);
1107
1108 if (enabled)
1109 temp_ctl |= TSI148_LCSR_OTAT_EN;
1110
29848ac9 1111 iowrite32be(temp_ctl, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1112 TSI148_LCSR_OFFSET_OTAT);
1113
886953e9 1114 spin_unlock(&image->lock);
d22b8ed9
MW
1115 return 0;
1116
1117err_aspace:
1118err_dwidth:
1119err_gran:
1120 tsi148_free_resource(image);
1121err_res:
1122err_window:
1123 return retval;
1124
1125}
1126
1127/*
1128 * Set the attributes of an outbound window.
1129 *
1130 * XXX Not parsing prefetch information.
1131 */
5ade6c4d 1132static int __tsi148_master_get(struct vme_master_resource *image, int *enabled,
6af04b06
MW
1133 unsigned long long *vme_base, unsigned long long *size, u32 *aspace,
1134 u32 *cycle, u32 *dwidth)
d22b8ed9
MW
1135{
1136 unsigned int i, ctl;
1137 unsigned int pci_base_low, pci_base_high;
1138 unsigned int pci_bound_low, pci_bound_high;
1139 unsigned int vme_offset_low, vme_offset_high;
1140
1141 unsigned long long pci_base, pci_bound, vme_offset;
29848ac9
MW
1142 struct tsi148_driver *bridge;
1143
1144 bridge = image->parent->driver_priv;
d22b8ed9
MW
1145
1146 i = image->number;
1147
29848ac9 1148 ctl = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1149 TSI148_LCSR_OFFSET_OTAT);
1150
29848ac9 1151 pci_base_high = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1152 TSI148_LCSR_OFFSET_OTSAU);
29848ac9 1153 pci_base_low = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1154 TSI148_LCSR_OFFSET_OTSAL);
29848ac9 1155 pci_bound_high = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1156 TSI148_LCSR_OFFSET_OTEAU);
29848ac9 1157 pci_bound_low = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1158 TSI148_LCSR_OFFSET_OTEAL);
29848ac9 1159 vme_offset_high = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1160 TSI148_LCSR_OFFSET_OTOFU);
29848ac9 1161 vme_offset_low = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1162 TSI148_LCSR_OFFSET_OTOFL);
1163
1164 /* Convert 64-bit variables to 2x 32-bit variables */
1165 reg_join(pci_base_high, pci_base_low, &pci_base);
1166 reg_join(pci_bound_high, pci_bound_low, &pci_bound);
1167 reg_join(vme_offset_high, vme_offset_low, &vme_offset);
1168
1169 *vme_base = pci_base + vme_offset;
1170 *size = (unsigned long long)(pci_bound - pci_base) + 0x10000;
1171
1172 *enabled = 0;
1173 *aspace = 0;
1174 *cycle = 0;
1175 *dwidth = 0;
1176
1177 if (ctl & TSI148_LCSR_OTAT_EN)
1178 *enabled = 1;
1179
1180 /* Setup address space */
1181 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_A16)
1182 *aspace |= VME_A16;
1183 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_A24)
1184 *aspace |= VME_A24;
1185 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_A32)
1186 *aspace |= VME_A32;
1187 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_A64)
1188 *aspace |= VME_A64;
1189 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_CRCSR)
1190 *aspace |= VME_CRCSR;
1191 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_USER1)
1192 *aspace |= VME_USER1;
1193 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_USER2)
1194 *aspace |= VME_USER2;
1195 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_USER3)
1196 *aspace |= VME_USER3;
1197 if ((ctl & TSI148_LCSR_OTAT_AMODE_M) == TSI148_LCSR_OTAT_AMODE_USER4)
1198 *aspace |= VME_USER4;
1199
1200 /* Setup 2eSST speeds */
1201 if ((ctl & TSI148_LCSR_OTAT_2eSSTM_M) == TSI148_LCSR_OTAT_2eSSTM_160)
1202 *cycle |= VME_2eSST160;
1203 if ((ctl & TSI148_LCSR_OTAT_2eSSTM_M) == TSI148_LCSR_OTAT_2eSSTM_267)
1204 *cycle |= VME_2eSST267;
1205 if ((ctl & TSI148_LCSR_OTAT_2eSSTM_M) == TSI148_LCSR_OTAT_2eSSTM_320)
1206 *cycle |= VME_2eSST320;
1207
1208 /* Setup cycle types */
7946328f 1209 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_SCT)
d22b8ed9 1210 *cycle |= VME_SCT;
7946328f 1211 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_BLT)
d22b8ed9 1212 *cycle |= VME_BLT;
7946328f 1213 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_MBLT)
d22b8ed9 1214 *cycle |= VME_MBLT;
7946328f 1215 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_2eVME)
d22b8ed9 1216 *cycle |= VME_2eVME;
7946328f 1217 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_2eSST)
d22b8ed9 1218 *cycle |= VME_2eSST;
7946328f 1219 if ((ctl & TSI148_LCSR_OTAT_TM_M) == TSI148_LCSR_OTAT_TM_2eSSTB)
d22b8ed9
MW
1220 *cycle |= VME_2eSSTB;
1221
1222 if (ctl & TSI148_LCSR_OTAT_SUP)
1223 *cycle |= VME_SUPER;
1224 else
1225 *cycle |= VME_USER;
1226
1227 if (ctl & TSI148_LCSR_OTAT_PGM)
1228 *cycle |= VME_PROG;
1229 else
1230 *cycle |= VME_DATA;
1231
1232 /* Setup data width */
1233 if ((ctl & TSI148_LCSR_OTAT_DBW_M) == TSI148_LCSR_OTAT_DBW_16)
1234 *dwidth = VME_D16;
1235 if ((ctl & TSI148_LCSR_OTAT_DBW_M) == TSI148_LCSR_OTAT_DBW_32)
1236 *dwidth = VME_D32;
1237
1238 return 0;
1239}
1240
1241
5ade6c4d 1242static int tsi148_master_get(struct vme_master_resource *image, int *enabled,
6af04b06
MW
1243 unsigned long long *vme_base, unsigned long long *size, u32 *aspace,
1244 u32 *cycle, u32 *dwidth)
d22b8ed9
MW
1245{
1246 int retval;
1247
886953e9 1248 spin_lock(&image->lock);
d22b8ed9
MW
1249
1250 retval = __tsi148_master_get(image, enabled, vme_base, size, aspace,
1251 cycle, dwidth);
1252
886953e9 1253 spin_unlock(&image->lock);
d22b8ed9
MW
1254
1255 return retval;
1256}
1257
5ade6c4d 1258static ssize_t tsi148_master_read(struct vme_master_resource *image, void *buf,
d22b8ed9
MW
1259 size_t count, loff_t offset)
1260{
1261 int retval, enabled;
1262 unsigned long long vme_base, size;
6af04b06 1263 u32 aspace, cycle, dwidth;
d22b8ed9 1264 struct vme_bus_error *vme_err = NULL;
29848ac9
MW
1265 struct vme_bridge *tsi148_bridge;
1266
1267 tsi148_bridge = image->parent;
d22b8ed9 1268
886953e9 1269 spin_lock(&image->lock);
d22b8ed9
MW
1270
1271 memcpy_fromio(buf, image->kern_base + offset, (unsigned int)count);
1272 retval = count;
1273
1274 if (!err_chk)
1275 goto skip_chk;
1276
1277 __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace, &cycle,
1278 &dwidth);
1279
29848ac9
MW
1280 vme_err = tsi148_find_error(tsi148_bridge, aspace, vme_base + offset,
1281 count);
7946328f 1282 if (vme_err != NULL) {
d22b8ed9
MW
1283 dev_err(image->parent->parent, "First VME read error detected "
1284 "an at address 0x%llx\n", vme_err->address);
1285 retval = vme_err->address - (vme_base + offset);
1286 /* Clear down save errors in this address range */
29848ac9
MW
1287 tsi148_clear_errors(tsi148_bridge, aspace, vme_base + offset,
1288 count);
d22b8ed9
MW
1289 }
1290
1291skip_chk:
886953e9 1292 spin_unlock(&image->lock);
d22b8ed9
MW
1293
1294 return retval;
1295}
1296
1297
5ade6c4d 1298static ssize_t tsi148_master_write(struct vme_master_resource *image, void *buf,
d22b8ed9
MW
1299 size_t count, loff_t offset)
1300{
1301 int retval = 0, enabled;
1302 unsigned long long vme_base, size;
6af04b06 1303 u32 aspace, cycle, dwidth;
d22b8ed9
MW
1304
1305 struct vme_bus_error *vme_err = NULL;
29848ac9
MW
1306 struct vme_bridge *tsi148_bridge;
1307 struct tsi148_driver *bridge;
1308
1309 tsi148_bridge = image->parent;
1310
1311 bridge = tsi148_bridge->driver_priv;
d22b8ed9 1312
886953e9 1313 spin_lock(&image->lock);
d22b8ed9
MW
1314
1315 memcpy_toio(image->kern_base + offset, buf, (unsigned int)count);
1316 retval = count;
1317
1318 /*
1319 * Writes are posted. We need to do a read on the VME bus to flush out
25985edc 1320 * all of the writes before we check for errors. We can't guarantee
d22b8ed9
MW
1321 * that reading the data we have just written is safe. It is believed
1322 * that there isn't any read, write re-ordering, so we can read any
1323 * location in VME space, so lets read the Device ID from the tsi148's
1324 * own registers as mapped into CR/CSR space.
1325 *
1326 * We check for saved errors in the written address range/space.
1327 */
1328
1329 if (!err_chk)
1330 goto skip_chk;
1331
1332 /*
1333 * Get window info first, to maximise the time that the buffers may
1334 * fluch on their own
1335 */
1336 __tsi148_master_get(image, &enabled, &vme_base, &size, &aspace, &cycle,
1337 &dwidth);
1338
29848ac9 1339 ioread16(bridge->flush_image->kern_base + 0x7F000);
d22b8ed9 1340
29848ac9
MW
1341 vme_err = tsi148_find_error(tsi148_bridge, aspace, vme_base + offset,
1342 count);
7946328f 1343 if (vme_err != NULL) {
48d9356e
MW
1344 dev_warn(tsi148_bridge->parent, "First VME write error detected"
1345 " an at address 0x%llx\n", vme_err->address);
d22b8ed9
MW
1346 retval = vme_err->address - (vme_base + offset);
1347 /* Clear down save errors in this address range */
29848ac9
MW
1348 tsi148_clear_errors(tsi148_bridge, aspace, vme_base + offset,
1349 count);
d22b8ed9
MW
1350 }
1351
1352skip_chk:
886953e9 1353 spin_unlock(&image->lock);
d22b8ed9
MW
1354
1355 return retval;
1356}
1357
1358/*
1359 * Perform an RMW cycle on the VME bus.
1360 *
1361 * Requires a previously configured master window, returns final value.
1362 */
5ade6c4d 1363static unsigned int tsi148_master_rmw(struct vme_master_resource *image,
d22b8ed9
MW
1364 unsigned int mask, unsigned int compare, unsigned int swap,
1365 loff_t offset)
1366{
1367 unsigned long long pci_addr;
1368 unsigned int pci_addr_high, pci_addr_low;
1369 u32 tmp, result;
1370 int i;
29848ac9 1371 struct tsi148_driver *bridge;
d22b8ed9 1372
29848ac9 1373 bridge = image->parent->driver_priv;
d22b8ed9
MW
1374
1375 /* Find the PCI address that maps to the desired VME address */
1376 i = image->number;
1377
1378 /* Locking as we can only do one of these at a time */
886953e9 1379 mutex_lock(&bridge->vme_rmw);
d22b8ed9
MW
1380
1381 /* Lock image */
886953e9 1382 spin_lock(&image->lock);
d22b8ed9 1383
29848ac9 1384 pci_addr_high = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9 1385 TSI148_LCSR_OFFSET_OTSAU);
29848ac9 1386 pci_addr_low = ioread32be(bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
1387 TSI148_LCSR_OFFSET_OTSAL);
1388
1389 reg_join(pci_addr_high, pci_addr_low, &pci_addr);
1390 reg_split(pci_addr + offset, &pci_addr_high, &pci_addr_low);
1391
1392 /* Configure registers */
29848ac9
MW
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);
d22b8ed9
MW
1398
1399 /* Enable RMW */
29848ac9 1400 tmp = ioread32be(bridge->base + TSI148_LCSR_VMCTRL);
d22b8ed9 1401 tmp |= TSI148_LCSR_VMCTRL_RMWEN;
29848ac9 1402 iowrite32be(tmp, bridge->base + TSI148_LCSR_VMCTRL);
d22b8ed9
MW
1403
1404 /* Kick process off with a read to the required address. */
1405 result = ioread32be(image->kern_base + offset);
1406
1407 /* Disable RMW */
29848ac9 1408 tmp = ioread32be(bridge->base + TSI148_LCSR_VMCTRL);
d22b8ed9 1409 tmp &= ~TSI148_LCSR_VMCTRL_RMWEN;
29848ac9 1410 iowrite32be(tmp, bridge->base + TSI148_LCSR_VMCTRL);
d22b8ed9 1411
886953e9 1412 spin_unlock(&image->lock);
d22b8ed9 1413
886953e9 1414 mutex_unlock(&bridge->vme_rmw);
d22b8ed9
MW
1415
1416 return result;
1417}
1418
ac1a4f2c 1419static int tsi148_dma_set_vme_src_attributes(struct device *dev, __be32 *attr,
6af04b06 1420 u32 aspace, u32 cycle, u32 dwidth)
d22b8ed9 1421{
ac1a4f2c
MW
1422 u32 val;
1423
1424 val = be32_to_cpu(*attr);
1425
d22b8ed9
MW
1426 /* Setup 2eSST speeds */
1427 switch (cycle & (VME_2eSST160 | VME_2eSST267 | VME_2eSST320)) {
1428 case VME_2eSST160:
ac1a4f2c 1429 val |= TSI148_LCSR_DSAT_2eSSTM_160;
d22b8ed9
MW
1430 break;
1431 case VME_2eSST267:
ac1a4f2c 1432 val |= TSI148_LCSR_DSAT_2eSSTM_267;
d22b8ed9
MW
1433 break;
1434 case VME_2eSST320:
ac1a4f2c 1435 val |= TSI148_LCSR_DSAT_2eSSTM_320;
d22b8ed9
MW
1436 break;
1437 }
1438
1439 /* Setup cycle types */
7946328f 1440 if (cycle & VME_SCT)
ac1a4f2c 1441 val |= TSI148_LCSR_DSAT_TM_SCT;
7946328f
MW
1442
1443 if (cycle & VME_BLT)
ac1a4f2c 1444 val |= TSI148_LCSR_DSAT_TM_BLT;
7946328f
MW
1445
1446 if (cycle & VME_MBLT)
ac1a4f2c 1447 val |= TSI148_LCSR_DSAT_TM_MBLT;
7946328f
MW
1448
1449 if (cycle & VME_2eVME)
ac1a4f2c 1450 val |= TSI148_LCSR_DSAT_TM_2eVME;
7946328f
MW
1451
1452 if (cycle & VME_2eSST)
ac1a4f2c 1453 val |= TSI148_LCSR_DSAT_TM_2eSST;
7946328f 1454
d22b8ed9 1455 if (cycle & VME_2eSSTB) {
48d9356e
MW
1456 dev_err(dev, "Currently not setting Broadcast Select "
1457 "Registers\n");
ac1a4f2c 1458 val |= TSI148_LCSR_DSAT_TM_2eSSTB;
d22b8ed9
MW
1459 }
1460
1461 /* Setup data width */
1462 switch (dwidth) {
1463 case VME_D16:
ac1a4f2c 1464 val |= TSI148_LCSR_DSAT_DBW_16;
d22b8ed9
MW
1465 break;
1466 case VME_D32:
ac1a4f2c 1467 val |= TSI148_LCSR_DSAT_DBW_32;
d22b8ed9
MW
1468 break;
1469 default:
48d9356e 1470 dev_err(dev, "Invalid data width\n");
d22b8ed9
MW
1471 return -EINVAL;
1472 }
1473
1474 /* Setup address space */
1475 switch (aspace) {
1476 case VME_A16:
ac1a4f2c 1477 val |= TSI148_LCSR_DSAT_AMODE_A16;
d22b8ed9
MW
1478 break;
1479 case VME_A24:
ac1a4f2c 1480 val |= TSI148_LCSR_DSAT_AMODE_A24;
d22b8ed9
MW
1481 break;
1482 case VME_A32:
ac1a4f2c 1483 val |= TSI148_LCSR_DSAT_AMODE_A32;
d22b8ed9
MW
1484 break;
1485 case VME_A64:
ac1a4f2c 1486 val |= TSI148_LCSR_DSAT_AMODE_A64;
d22b8ed9
MW
1487 break;
1488 case VME_CRCSR:
ac1a4f2c 1489 val |= TSI148_LCSR_DSAT_AMODE_CRCSR;
d22b8ed9
MW
1490 break;
1491 case VME_USER1:
ac1a4f2c 1492 val |= TSI148_LCSR_DSAT_AMODE_USER1;
d22b8ed9
MW
1493 break;
1494 case VME_USER2:
ac1a4f2c 1495 val |= TSI148_LCSR_DSAT_AMODE_USER2;
d22b8ed9
MW
1496 break;
1497 case VME_USER3:
ac1a4f2c 1498 val |= TSI148_LCSR_DSAT_AMODE_USER3;
d22b8ed9
MW
1499 break;
1500 case VME_USER4:
ac1a4f2c 1501 val |= TSI148_LCSR_DSAT_AMODE_USER4;
d22b8ed9
MW
1502 break;
1503 default:
48d9356e 1504 dev_err(dev, "Invalid address space\n");
d22b8ed9
MW
1505 return -EINVAL;
1506 break;
1507 }
1508
1509 if (cycle & VME_SUPER)
ac1a4f2c 1510 val |= TSI148_LCSR_DSAT_SUP;
d22b8ed9 1511 if (cycle & VME_PROG)
ac1a4f2c
MW
1512 val |= TSI148_LCSR_DSAT_PGM;
1513
1514 *attr = cpu_to_be32(val);
d22b8ed9
MW
1515
1516 return 0;
1517}
1518
ac1a4f2c 1519static int tsi148_dma_set_vme_dest_attributes(struct device *dev, __be32 *attr,
6af04b06 1520 u32 aspace, u32 cycle, u32 dwidth)
d22b8ed9 1521{
ac1a4f2c
MW
1522 u32 val;
1523
1524 val = be32_to_cpu(*attr);
1525
d22b8ed9
MW
1526 /* Setup 2eSST speeds */
1527 switch (cycle & (VME_2eSST160 | VME_2eSST267 | VME_2eSST320)) {
1528 case VME_2eSST160:
ac1a4f2c 1529 val |= TSI148_LCSR_DDAT_2eSSTM_160;
d22b8ed9
MW
1530 break;
1531 case VME_2eSST267:
ac1a4f2c 1532 val |= TSI148_LCSR_DDAT_2eSSTM_267;
d22b8ed9
MW
1533 break;
1534 case VME_2eSST320:
ac1a4f2c 1535 val |= TSI148_LCSR_DDAT_2eSSTM_320;
d22b8ed9
MW
1536 break;
1537 }
1538
1539 /* Setup cycle types */
7946328f 1540 if (cycle & VME_SCT)
ac1a4f2c 1541 val |= TSI148_LCSR_DDAT_TM_SCT;
7946328f
MW
1542
1543 if (cycle & VME_BLT)
ac1a4f2c 1544 val |= TSI148_LCSR_DDAT_TM_BLT;
7946328f
MW
1545
1546 if (cycle & VME_MBLT)
ac1a4f2c 1547 val |= TSI148_LCSR_DDAT_TM_MBLT;
7946328f
MW
1548
1549 if (cycle & VME_2eVME)
ac1a4f2c 1550 val |= TSI148_LCSR_DDAT_TM_2eVME;
7946328f
MW
1551
1552 if (cycle & VME_2eSST)
ac1a4f2c 1553 val |= TSI148_LCSR_DDAT_TM_2eSST;
7946328f 1554
d22b8ed9 1555 if (cycle & VME_2eSSTB) {
48d9356e
MW
1556 dev_err(dev, "Currently not setting Broadcast Select "
1557 "Registers\n");
ac1a4f2c 1558 val |= TSI148_LCSR_DDAT_TM_2eSSTB;
d22b8ed9
MW
1559 }
1560
1561 /* Setup data width */
1562 switch (dwidth) {
1563 case VME_D16:
ac1a4f2c 1564 val |= TSI148_LCSR_DDAT_DBW_16;
d22b8ed9
MW
1565 break;
1566 case VME_D32:
ac1a4f2c 1567 val |= TSI148_LCSR_DDAT_DBW_32;
d22b8ed9
MW
1568 break;
1569 default:
48d9356e 1570 dev_err(dev, "Invalid data width\n");
d22b8ed9
MW
1571 return -EINVAL;
1572 }
1573
1574 /* Setup address space */
1575 switch (aspace) {
1576 case VME_A16:
ac1a4f2c 1577 val |= TSI148_LCSR_DDAT_AMODE_A16;
d22b8ed9
MW
1578 break;
1579 case VME_A24:
ac1a4f2c 1580 val |= TSI148_LCSR_DDAT_AMODE_A24;
d22b8ed9
MW
1581 break;
1582 case VME_A32:
ac1a4f2c 1583 val |= TSI148_LCSR_DDAT_AMODE_A32;
d22b8ed9
MW
1584 break;
1585 case VME_A64:
ac1a4f2c 1586 val |= TSI148_LCSR_DDAT_AMODE_A64;
d22b8ed9
MW
1587 break;
1588 case VME_CRCSR:
ac1a4f2c 1589 val |= TSI148_LCSR_DDAT_AMODE_CRCSR;
d22b8ed9
MW
1590 break;
1591 case VME_USER1:
ac1a4f2c 1592 val |= TSI148_LCSR_DDAT_AMODE_USER1;
d22b8ed9
MW
1593 break;
1594 case VME_USER2:
ac1a4f2c 1595 val |= TSI148_LCSR_DDAT_AMODE_USER2;
d22b8ed9
MW
1596 break;
1597 case VME_USER3:
ac1a4f2c 1598 val |= TSI148_LCSR_DDAT_AMODE_USER3;
d22b8ed9
MW
1599 break;
1600 case VME_USER4:
ac1a4f2c 1601 val |= TSI148_LCSR_DDAT_AMODE_USER4;
d22b8ed9
MW
1602 break;
1603 default:
48d9356e 1604 dev_err(dev, "Invalid address space\n");
d22b8ed9
MW
1605 return -EINVAL;
1606 break;
1607 }
1608
1609 if (cycle & VME_SUPER)
ac1a4f2c 1610 val |= TSI148_LCSR_DDAT_SUP;
d22b8ed9 1611 if (cycle & VME_PROG)
ac1a4f2c
MW
1612 val |= TSI148_LCSR_DDAT_PGM;
1613
1614 *attr = cpu_to_be32(val);
d22b8ed9
MW
1615
1616 return 0;
1617}
1618
1619/*
1620 * Add a link list descriptor to the list
ac1a4f2c
MW
1621 *
1622 * Note: DMA engine expects the DMA descriptor to be big endian.
d22b8ed9 1623 */
5ade6c4d
EC
1624static int tsi148_dma_list_add(struct vme_dma_list *list,
1625 struct vme_dma_attr *src, struct vme_dma_attr *dest, size_t count)
d22b8ed9
MW
1626{
1627 struct tsi148_dma_entry *entry, *prev;
ac1a4f2c 1628 u32 address_high, address_low, val;
d22b8ed9
MW
1629 struct vme_dma_pattern *pattern_attr;
1630 struct vme_dma_pci *pci_attr;
1631 struct vme_dma_vme *vme_attr;
d22b8ed9 1632 int retval = 0;
48d9356e
MW
1633 struct vme_bridge *tsi148_bridge;
1634
1635 tsi148_bridge = list->parent->parent;
d22b8ed9 1636
bb9ea89e 1637 /* Descriptor must be aligned on 64-bit boundaries */
7946328f 1638 entry = kmalloc(sizeof(struct tsi148_dma_entry), GFP_KERNEL);
d22b8ed9 1639 if (entry == NULL) {
48d9356e
MW
1640 dev_err(tsi148_bridge->parent, "Failed to allocate memory for "
1641 "dma resource structure\n");
d22b8ed9
MW
1642 retval = -ENOMEM;
1643 goto err_mem;
1644 }
1645
1646 /* Test descriptor alignment */
886953e9 1647 if ((unsigned long)&entry->descriptor & 0x7) {
48d9356e
MW
1648 dev_err(tsi148_bridge->parent, "Descriptor not aligned to 8 "
1649 "byte boundary as required: %p\n",
886953e9 1650 &entry->descriptor);
d22b8ed9
MW
1651 retval = -EINVAL;
1652 goto err_align;
1653 }
1654
1655 /* Given we are going to fill out the structure, we probably don't
1656 * need to zero it, but better safe than sorry for now.
1657 */
886953e9 1658 memset(&entry->descriptor, 0, sizeof(struct tsi148_dma_descriptor));
d22b8ed9
MW
1659
1660 /* Fill out source part */
1661 switch (src->type) {
1662 case VME_DMA_PATTERN:
c4d82fbb 1663 pattern_attr = src->private;
d22b8ed9 1664
ac1a4f2c
MW
1665 entry->descriptor.dsal = cpu_to_be32(pattern_attr->pattern);
1666
1667 val = TSI148_LCSR_DSAT_TYP_PAT;
1668
d22b8ed9 1669 /* Default behaviour is 32 bit pattern */
7946328f 1670 if (pattern_attr->type & VME_DMA_PATTERN_BYTE)
ac1a4f2c 1671 val |= TSI148_LCSR_DSAT_PSZ;
7946328f 1672
d22b8ed9 1673 /* It seems that the default behaviour is to increment */
7946328f 1674 if ((pattern_attr->type & VME_DMA_PATTERN_INCREMENT) == 0)
ac1a4f2c
MW
1675 val |= TSI148_LCSR_DSAT_NIN;
1676 entry->descriptor.dsat = cpu_to_be32(val);
d22b8ed9
MW
1677 break;
1678 case VME_DMA_PCI:
c4d82fbb 1679 pci_attr = src->private;
d22b8ed9
MW
1680
1681 reg_split((unsigned long long)pci_attr->address, &address_high,
1682 &address_low);
ac1a4f2c
MW
1683 entry->descriptor.dsau = cpu_to_be32(address_high);
1684 entry->descriptor.dsal = cpu_to_be32(address_low);
1685 entry->descriptor.dsat = cpu_to_be32(TSI148_LCSR_DSAT_TYP_PCI);
d22b8ed9
MW
1686 break;
1687 case VME_DMA_VME:
c4d82fbb 1688 vme_attr = src->private;
d22b8ed9
MW
1689
1690 reg_split((unsigned long long)vme_attr->address, &address_high,
1691 &address_low);
ac1a4f2c
MW
1692 entry->descriptor.dsau = cpu_to_be32(address_high);
1693 entry->descriptor.dsal = cpu_to_be32(address_low);
1694 entry->descriptor.dsat = cpu_to_be32(TSI148_LCSR_DSAT_TYP_VME);
d22b8ed9
MW
1695
1696 retval = tsi148_dma_set_vme_src_attributes(
886953e9 1697 tsi148_bridge->parent, &entry->descriptor.dsat,
48d9356e 1698 vme_attr->aspace, vme_attr->cycle, vme_attr->dwidth);
7946328f 1699 if (retval < 0)
d22b8ed9
MW
1700 goto err_source;
1701 break;
1702 default:
48d9356e 1703 dev_err(tsi148_bridge->parent, "Invalid source type\n");
d22b8ed9
MW
1704 retval = -EINVAL;
1705 goto err_source;
1706 break;
1707 }
1708
1709 /* Assume last link - this will be over-written by adding another */
ac1a4f2c
MW
1710 entry->descriptor.dnlau = cpu_to_be32(0);
1711 entry->descriptor.dnlal = cpu_to_be32(TSI148_LCSR_DNLAL_LLA);
d22b8ed9
MW
1712
1713 /* Fill out destination part */
1714 switch (dest->type) {
1715 case VME_DMA_PCI:
c4d82fbb 1716 pci_attr = dest->private;
d22b8ed9
MW
1717
1718 reg_split((unsigned long long)pci_attr->address, &address_high,
1719 &address_low);
ac1a4f2c
MW
1720 entry->descriptor.ddau = cpu_to_be32(address_high);
1721 entry->descriptor.ddal = cpu_to_be32(address_low);
1722 entry->descriptor.ddat = cpu_to_be32(TSI148_LCSR_DDAT_TYP_PCI);
d22b8ed9
MW
1723 break;
1724 case VME_DMA_VME:
c4d82fbb 1725 vme_attr = dest->private;
d22b8ed9
MW
1726
1727 reg_split((unsigned long long)vme_attr->address, &address_high,
1728 &address_low);
ac1a4f2c
MW
1729 entry->descriptor.ddau = cpu_to_be32(address_high);
1730 entry->descriptor.ddal = cpu_to_be32(address_low);
1731 entry->descriptor.ddat = cpu_to_be32(TSI148_LCSR_DDAT_TYP_VME);
d22b8ed9
MW
1732
1733 retval = tsi148_dma_set_vme_dest_attributes(
886953e9 1734 tsi148_bridge->parent, &entry->descriptor.ddat,
48d9356e 1735 vme_attr->aspace, vme_attr->cycle, vme_attr->dwidth);
7946328f 1736 if (retval < 0)
d22b8ed9
MW
1737 goto err_dest;
1738 break;
1739 default:
48d9356e 1740 dev_err(tsi148_bridge->parent, "Invalid destination type\n");
d22b8ed9
MW
1741 retval = -EINVAL;
1742 goto err_dest;
1743 break;
1744 }
1745
1746 /* Fill out count */
ac1a4f2c 1747 entry->descriptor.dcnt = cpu_to_be32((u32)count);
d22b8ed9
MW
1748
1749 /* Add to list */
886953e9 1750 list_add_tail(&entry->list, &list->entries);
d22b8ed9
MW
1751
1752 /* Fill out previous descriptors "Next Address" */
886953e9 1753 if (entry->list.prev != &list->entries) {
d22b8ed9
MW
1754 prev = list_entry(entry->list.prev, struct tsi148_dma_entry,
1755 list);
1756 /* We need the bus address for the pointer */
3abc48ae
MW
1757 entry->dma_handle = dma_map_single(tsi148_bridge->parent,
1758 &entry->descriptor,
1759 sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
1760
ac1a4f2c
MW
1761 reg_split((unsigned long long)entry->dma_handle, &address_high,
1762 &address_low);
1763 entry->descriptor.dnlau = cpu_to_be32(address_high);
1764 entry->descriptor.dnlal = cpu_to_be32(address_low);
1765
d22b8ed9
MW
1766 }
1767
1768 return 0;
1769
1770err_dest:
1771err_source:
1772err_align:
1773 kfree(entry);
1774err_mem:
1775 return retval;
1776}
1777
1778/*
1779 * Check to see if the provided DMA channel is busy.
1780 */
29848ac9 1781static int tsi148_dma_busy(struct vme_bridge *tsi148_bridge, int channel)
d22b8ed9
MW
1782{
1783 u32 tmp;
29848ac9
MW
1784 struct tsi148_driver *bridge;
1785
1786 bridge = tsi148_bridge->driver_priv;
d22b8ed9 1787
29848ac9 1788 tmp = ioread32be(bridge->base + TSI148_LCSR_DMA[channel] +
d22b8ed9
MW
1789 TSI148_LCSR_OFFSET_DSTA);
1790
1791 if (tmp & TSI148_LCSR_DSTA_BSY)
1792 return 0;
1793 else
1794 return 1;
1795
1796}
1797
1798/*
1799 * Execute a previously generated link list
1800 *
1801 * XXX Need to provide control register configuration.
1802 */
5ade6c4d 1803static int tsi148_dma_list_exec(struct vme_dma_list *list)
d22b8ed9
MW
1804{
1805 struct vme_dma_resource *ctrlr;
1806 int channel, retval = 0;
1807 struct tsi148_dma_entry *entry;
d22b8ed9
MW
1808 u32 bus_addr_high, bus_addr_low;
1809 u32 val, dctlreg = 0;
48d9356e 1810 struct vme_bridge *tsi148_bridge;
29848ac9 1811 struct tsi148_driver *bridge;
d22b8ed9
MW
1812
1813 ctrlr = list->parent;
1814
48d9356e
MW
1815 tsi148_bridge = ctrlr->parent;
1816
1817 bridge = tsi148_bridge->driver_priv;
29848ac9 1818
886953e9 1819 mutex_lock(&ctrlr->mtx);
d22b8ed9
MW
1820
1821 channel = ctrlr->number;
1822
886953e9 1823 if (!list_empty(&ctrlr->running)) {
d22b8ed9
MW
1824 /*
1825 * XXX We have an active DMA transfer and currently haven't
1826 * sorted out the mechanism for "pending" DMA transfers.
1827 * Return busy.
1828 */
1829 /* Need to add to pending here */
886953e9 1830 mutex_unlock(&ctrlr->mtx);
d22b8ed9
MW
1831 return -EBUSY;
1832 } else {
886953e9 1833 list_add(&list->list, &ctrlr->running);
d22b8ed9 1834 }
d22b8ed9
MW
1835
1836 /* Get first bus address and write into registers */
886953e9 1837 entry = list_first_entry(&list->entries, struct tsi148_dma_entry,
d22b8ed9
MW
1838 list);
1839
3abc48ae
MW
1840 entry->dma_handle = dma_map_single(tsi148_bridge->parent,
1841 &entry->descriptor,
1842 sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
d22b8ed9 1843
886953e9 1844 mutex_unlock(&ctrlr->mtx);
d22b8ed9 1845
3abc48ae 1846 reg_split(entry->dma_handle, &bus_addr_high, &bus_addr_low);
d22b8ed9 1847
29848ac9 1848 iowrite32be(bus_addr_high, bridge->base +
d22b8ed9 1849 TSI148_LCSR_DMA[channel] + TSI148_LCSR_OFFSET_DNLAU);
29848ac9 1850 iowrite32be(bus_addr_low, bridge->base +
d22b8ed9
MW
1851 TSI148_LCSR_DMA[channel] + TSI148_LCSR_OFFSET_DNLAL);
1852
ac1a4f2c
MW
1853 dctlreg = ioread32be(bridge->base + TSI148_LCSR_DMA[channel] +
1854 TSI148_LCSR_OFFSET_DCTL);
1855
d22b8ed9 1856 /* Start the operation */
29848ac9 1857 iowrite32be(dctlreg | TSI148_LCSR_DCTL_DGO, bridge->base +
d22b8ed9
MW
1858 TSI148_LCSR_DMA[channel] + TSI148_LCSR_OFFSET_DCTL);
1859
29848ac9
MW
1860 wait_event_interruptible(bridge->dma_queue[channel],
1861 tsi148_dma_busy(ctrlr->parent, channel));
ac1a4f2c 1862
d22b8ed9
MW
1863 /*
1864 * Read status register, this register is valid until we kick off a
1865 * new transfer.
1866 */
29848ac9 1867 val = ioread32be(bridge->base + TSI148_LCSR_DMA[channel] +
d22b8ed9
MW
1868 TSI148_LCSR_OFFSET_DSTA);
1869
1870 if (val & TSI148_LCSR_DSTA_VBE) {
48d9356e 1871 dev_err(tsi148_bridge->parent, "DMA Error. DSTA=%08X\n", val);
d22b8ed9
MW
1872 retval = -EIO;
1873 }
1874
1875 /* Remove list from running list */
886953e9
EC
1876 mutex_lock(&ctrlr->mtx);
1877 list_del(&list->list);
1878 mutex_unlock(&ctrlr->mtx);
d22b8ed9
MW
1879
1880 return retval;
1881}
1882
1883/*
1884 * Clean up a previously generated link list
1885 *
1886 * We have a separate function, don't assume that the chain can't be reused.
1887 */
5ade6c4d 1888static int tsi148_dma_list_empty(struct vme_dma_list *list)
d22b8ed9
MW
1889{
1890 struct list_head *pos, *temp;
7946328f 1891 struct tsi148_dma_entry *entry;
d22b8ed9 1892
3abc48ae
MW
1893 struct vme_bridge *tsi148_bridge = list->parent->parent;
1894
d22b8ed9 1895 /* detach and free each entry */
886953e9 1896 list_for_each_safe(pos, temp, &list->entries) {
d22b8ed9
MW
1897 list_del(pos);
1898 entry = list_entry(pos, struct tsi148_dma_entry, list);
3abc48ae
MW
1899
1900 dma_unmap_single(tsi148_bridge->parent, entry->dma_handle,
1901 sizeof(struct tsi148_dma_descriptor), DMA_TO_DEVICE);
d22b8ed9
MW
1902 kfree(entry);
1903 }
1904
7946328f 1905 return 0;
d22b8ed9
MW
1906}
1907
1908/*
1909 * All 4 location monitors reside at the same base - this is therefore a
1910 * system wide configuration.
1911 *
1912 * This does not enable the LM monitor - that should be done when the first
1913 * callback is attached and disabled when the last callback is removed.
1914 */
5ade6c4d 1915static int tsi148_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base,
6af04b06 1916 u32 aspace, u32 cycle)
d22b8ed9
MW
1917{
1918 u32 lm_base_high, lm_base_low, lm_ctl = 0;
1919 int i;
48d9356e 1920 struct vme_bridge *tsi148_bridge;
29848ac9
MW
1921 struct tsi148_driver *bridge;
1922
48d9356e
MW
1923 tsi148_bridge = lm->parent;
1924
1925 bridge = tsi148_bridge->driver_priv;
d22b8ed9 1926
886953e9 1927 mutex_lock(&lm->mtx);
d22b8ed9
MW
1928
1929 /* If we already have a callback attached, we can't move it! */
42fb5031 1930 for (i = 0; i < lm->monitors; i++) {
29848ac9 1931 if (bridge->lm_callback[i] != NULL) {
886953e9 1932 mutex_unlock(&lm->mtx);
48d9356e
MW
1933 dev_err(tsi148_bridge->parent, "Location monitor "
1934 "callback attached, can't reset\n");
d22b8ed9
MW
1935 return -EBUSY;
1936 }
1937 }
1938
1939 switch (aspace) {
1940 case VME_A16:
1941 lm_ctl |= TSI148_LCSR_LMAT_AS_A16;
1942 break;
1943 case VME_A24:
1944 lm_ctl |= TSI148_LCSR_LMAT_AS_A24;
1945 break;
1946 case VME_A32:
1947 lm_ctl |= TSI148_LCSR_LMAT_AS_A32;
1948 break;
1949 case VME_A64:
1950 lm_ctl |= TSI148_LCSR_LMAT_AS_A64;
1951 break;
1952 default:
886953e9 1953 mutex_unlock(&lm->mtx);
48d9356e 1954 dev_err(tsi148_bridge->parent, "Invalid address space\n");
d22b8ed9
MW
1955 return -EINVAL;
1956 break;
1957 }
1958
1959 if (cycle & VME_SUPER)
1960 lm_ctl |= TSI148_LCSR_LMAT_SUPR ;
1961 if (cycle & VME_USER)
1962 lm_ctl |= TSI148_LCSR_LMAT_NPRIV;
1963 if (cycle & VME_PROG)
1964 lm_ctl |= TSI148_LCSR_LMAT_PGM;
1965 if (cycle & VME_DATA)
1966 lm_ctl |= TSI148_LCSR_LMAT_DATA;
1967
1968 reg_split(lm_base, &lm_base_high, &lm_base_low);
1969
29848ac9
MW
1970 iowrite32be(lm_base_high, bridge->base + TSI148_LCSR_LMBAU);
1971 iowrite32be(lm_base_low, bridge->base + TSI148_LCSR_LMBAL);
1972 iowrite32be(lm_ctl, bridge->base + TSI148_LCSR_LMAT);
d22b8ed9 1973
886953e9 1974 mutex_unlock(&lm->mtx);
d22b8ed9
MW
1975
1976 return 0;
1977}
1978
1979/* Get configuration of the callback monitor and return whether it is enabled
1980 * or disabled.
1981 */
5ade6c4d 1982static int tsi148_lm_get(struct vme_lm_resource *lm,
6af04b06 1983 unsigned long long *lm_base, u32 *aspace, u32 *cycle)
d22b8ed9
MW
1984{
1985 u32 lm_base_high, lm_base_low, lm_ctl, enabled = 0;
29848ac9
MW
1986 struct tsi148_driver *bridge;
1987
1988 bridge = lm->parent->driver_priv;
d22b8ed9 1989
886953e9 1990 mutex_lock(&lm->mtx);
d22b8ed9 1991
29848ac9
MW
1992 lm_base_high = ioread32be(bridge->base + TSI148_LCSR_LMBAU);
1993 lm_base_low = ioread32be(bridge->base + TSI148_LCSR_LMBAL);
1994 lm_ctl = ioread32be(bridge->base + TSI148_LCSR_LMAT);
d22b8ed9
MW
1995
1996 reg_join(lm_base_high, lm_base_low, lm_base);
1997
1998 if (lm_ctl & TSI148_LCSR_LMAT_EN)
1999 enabled = 1;
2000
7946328f 2001 if ((lm_ctl & TSI148_LCSR_LMAT_AS_M) == TSI148_LCSR_LMAT_AS_A16)
d22b8ed9 2002 *aspace |= VME_A16;
7946328f
MW
2003
2004 if ((lm_ctl & TSI148_LCSR_LMAT_AS_M) == TSI148_LCSR_LMAT_AS_A24)
d22b8ed9 2005 *aspace |= VME_A24;
7946328f
MW
2006
2007 if ((lm_ctl & TSI148_LCSR_LMAT_AS_M) == TSI148_LCSR_LMAT_AS_A32)
d22b8ed9 2008 *aspace |= VME_A32;
7946328f
MW
2009
2010 if ((lm_ctl & TSI148_LCSR_LMAT_AS_M) == TSI148_LCSR_LMAT_AS_A64)
d22b8ed9 2011 *aspace |= VME_A64;
7946328f 2012
d22b8ed9
MW
2013
2014 if (lm_ctl & TSI148_LCSR_LMAT_SUPR)
2015 *cycle |= VME_SUPER;
2016 if (lm_ctl & TSI148_LCSR_LMAT_NPRIV)
2017 *cycle |= VME_USER;
2018 if (lm_ctl & TSI148_LCSR_LMAT_PGM)
2019 *cycle |= VME_PROG;
2020 if (lm_ctl & TSI148_LCSR_LMAT_DATA)
2021 *cycle |= VME_DATA;
2022
886953e9 2023 mutex_unlock(&lm->mtx);
d22b8ed9
MW
2024
2025 return enabled;
2026}
2027
2028/*
2029 * Attach a callback to a specific location monitor.
2030 *
2031 * Callback will be passed the monitor triggered.
2032 */
5ade6c4d 2033static int tsi148_lm_attach(struct vme_lm_resource *lm, int monitor,
42fb5031 2034 void (*callback)(int))
d22b8ed9
MW
2035{
2036 u32 lm_ctl, tmp;
48d9356e 2037 struct vme_bridge *tsi148_bridge;
29848ac9
MW
2038 struct tsi148_driver *bridge;
2039
48d9356e
MW
2040 tsi148_bridge = lm->parent;
2041
2042 bridge = tsi148_bridge->driver_priv;
d22b8ed9 2043
886953e9 2044 mutex_lock(&lm->mtx);
d22b8ed9
MW
2045
2046 /* Ensure that the location monitor is configured - need PGM or DATA */
29848ac9 2047 lm_ctl = ioread32be(bridge->base + TSI148_LCSR_LMAT);
d22b8ed9 2048 if ((lm_ctl & (TSI148_LCSR_LMAT_PGM | TSI148_LCSR_LMAT_DATA)) == 0) {
886953e9 2049 mutex_unlock(&lm->mtx);
48d9356e
MW
2050 dev_err(tsi148_bridge->parent, "Location monitor not properly "
2051 "configured\n");
d22b8ed9
MW
2052 return -EINVAL;
2053 }
2054
2055 /* Check that a callback isn't already attached */
29848ac9 2056 if (bridge->lm_callback[monitor] != NULL) {
886953e9 2057 mutex_unlock(&lm->mtx);
48d9356e 2058 dev_err(tsi148_bridge->parent, "Existing callback attached\n");
d22b8ed9
MW
2059 return -EBUSY;
2060 }
2061
2062 /* Attach callback */
29848ac9 2063 bridge->lm_callback[monitor] = callback;
d22b8ed9
MW
2064
2065 /* Enable Location Monitor interrupt */
29848ac9 2066 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEN);
d22b8ed9 2067 tmp |= TSI148_LCSR_INTEN_LMEN[monitor];
29848ac9 2068 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEN);
d22b8ed9 2069
29848ac9 2070 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEO);
d22b8ed9 2071 tmp |= TSI148_LCSR_INTEO_LMEO[monitor];
29848ac9 2072 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEO);
d22b8ed9
MW
2073
2074 /* Ensure that global Location Monitor Enable set */
2075 if ((lm_ctl & TSI148_LCSR_LMAT_EN) == 0) {
2076 lm_ctl |= TSI148_LCSR_LMAT_EN;
29848ac9 2077 iowrite32be(lm_ctl, bridge->base + TSI148_LCSR_LMAT);
d22b8ed9
MW
2078 }
2079
886953e9 2080 mutex_unlock(&lm->mtx);
d22b8ed9
MW
2081
2082 return 0;
2083}
2084
2085/*
2086 * Detach a callback function forn a specific location monitor.
2087 */
5ade6c4d 2088static int tsi148_lm_detach(struct vme_lm_resource *lm, int monitor)
d22b8ed9
MW
2089{
2090 u32 lm_en, tmp;
29848ac9
MW
2091 struct tsi148_driver *bridge;
2092
2093 bridge = lm->parent->driver_priv;
d22b8ed9 2094
886953e9 2095 mutex_lock(&lm->mtx);
d22b8ed9
MW
2096
2097 /* Disable Location Monitor and ensure previous interrupts are clear */
29848ac9 2098 lm_en = ioread32be(bridge->base + TSI148_LCSR_INTEN);
d22b8ed9 2099 lm_en &= ~TSI148_LCSR_INTEN_LMEN[monitor];
29848ac9 2100 iowrite32be(lm_en, bridge->base + TSI148_LCSR_INTEN);
d22b8ed9 2101
29848ac9 2102 tmp = ioread32be(bridge->base + TSI148_LCSR_INTEO);
d22b8ed9 2103 tmp &= ~TSI148_LCSR_INTEO_LMEO[monitor];
29848ac9 2104 iowrite32be(tmp, bridge->base + TSI148_LCSR_INTEO);
d22b8ed9
MW
2105
2106 iowrite32be(TSI148_LCSR_INTC_LMC[monitor],
29848ac9 2107 bridge->base + TSI148_LCSR_INTC);
d22b8ed9
MW
2108
2109 /* Detach callback */
29848ac9 2110 bridge->lm_callback[monitor] = NULL;
d22b8ed9
MW
2111
2112 /* If all location monitors disabled, disable global Location Monitor */
2113 if ((lm_en & (TSI148_LCSR_INTS_LM0S | TSI148_LCSR_INTS_LM1S |
2114 TSI148_LCSR_INTS_LM2S | TSI148_LCSR_INTS_LM3S)) == 0) {
29848ac9 2115 tmp = ioread32be(bridge->base + TSI148_LCSR_LMAT);
d22b8ed9 2116 tmp &= ~TSI148_LCSR_LMAT_EN;
29848ac9 2117 iowrite32be(tmp, bridge->base + TSI148_LCSR_LMAT);
d22b8ed9
MW
2118 }
2119
886953e9 2120 mutex_unlock(&lm->mtx);
d22b8ed9
MW
2121
2122 return 0;
2123}
2124
2125/*
2126 * Determine Geographical Addressing
2127 */
5ade6c4d 2128static int tsi148_slot_get(struct vme_bridge *tsi148_bridge)
d22b8ed9 2129{
7946328f 2130 u32 slot = 0;
29848ac9
MW
2131 struct tsi148_driver *bridge;
2132
2133 bridge = tsi148_bridge->driver_priv;
d22b8ed9 2134
638f199d 2135 if (!geoid) {
29848ac9 2136 slot = ioread32be(bridge->base + TSI148_LCSR_VSTAT);
638f199d
MW
2137 slot = slot & TSI148_LCSR_VSTAT_GA_M;
2138 } else
2139 slot = geoid;
2140
d22b8ed9
MW
2141 return (int)slot;
2142}
2143
8a508ff4 2144static void *tsi148_alloc_consistent(struct device *parent, size_t size,
7f58f025
MV
2145 dma_addr_t *dma)
2146{
2147 struct pci_dev *pdev;
2148
2149 /* Find pci_dev container of dev */
2150 pdev = container_of(parent, struct pci_dev, dev);
2151
2152 return pci_alloc_consistent(pdev, size, dma);
2153}
2154
8a508ff4
HS
2155static void tsi148_free_consistent(struct device *parent, size_t size,
2156 void *vaddr, dma_addr_t dma)
7f58f025
MV
2157{
2158 struct pci_dev *pdev;
2159
2160 /* Find pci_dev container of dev */
2161 pdev = container_of(parent, struct pci_dev, dev);
2162
2163 pci_free_consistent(pdev, size, vaddr, dma);
2164}
2165
d22b8ed9
MW
2166static int __init tsi148_init(void)
2167{
2168 return pci_register_driver(&tsi148_driver);
2169}
2170
2171/*
2172 * Configure CR/CSR space
2173 *
2174 * Access to the CR/CSR can be configured at power-up. The location of the
2175 * CR/CSR registers in the CR/CSR address space is determined by the boards
2176 * Auto-ID or Geographic address. This function ensures that the window is
2177 * enabled at an offset consistent with the boards geopgraphic address.
2178 *
2179 * Each board has a 512kB window, with the highest 4kB being used for the
2180 * boards registers, this means there is a fix length 508kB window which must
2181 * be mapped onto PCI memory.
2182 */
29848ac9
MW
2183static int tsi148_crcsr_init(struct vme_bridge *tsi148_bridge,
2184 struct pci_dev *pdev)
d22b8ed9
MW
2185{
2186 u32 cbar, crat, vstat;
2187 u32 crcsr_bus_high, crcsr_bus_low;
2188 int retval;
29848ac9
MW
2189 struct tsi148_driver *bridge;
2190
2191 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
2192
2193 /* Allocate mem for CR/CSR image */
29848ac9 2194 bridge->crcsr_kernel = pci_alloc_consistent(pdev, VME_CRCSR_BUF_SIZE,
886953e9 2195 &bridge->crcsr_bus);
29848ac9 2196 if (bridge->crcsr_kernel == NULL) {
48d9356e
MW
2197 dev_err(tsi148_bridge->parent, "Failed to allocate memory for "
2198 "CR/CSR image\n");
d22b8ed9
MW
2199 return -ENOMEM;
2200 }
2201
29848ac9 2202 memset(bridge->crcsr_kernel, 0, VME_CRCSR_BUF_SIZE);
d22b8ed9 2203
29848ac9 2204 reg_split(bridge->crcsr_bus, &crcsr_bus_high, &crcsr_bus_low);
d22b8ed9 2205
29848ac9
MW
2206 iowrite32be(crcsr_bus_high, bridge->base + TSI148_LCSR_CROU);
2207 iowrite32be(crcsr_bus_low, bridge->base + TSI148_LCSR_CROL);
d22b8ed9
MW
2208
2209 /* Ensure that the CR/CSR is configured at the correct offset */
29848ac9 2210 cbar = ioread32be(bridge->base + TSI148_CBAR);
d22b8ed9
MW
2211 cbar = (cbar & TSI148_CRCSR_CBAR_M)>>3;
2212
29848ac9 2213 vstat = tsi148_slot_get(tsi148_bridge);
d22b8ed9
MW
2214
2215 if (cbar != vstat) {
638f199d 2216 cbar = vstat;
48d9356e 2217 dev_info(tsi148_bridge->parent, "Setting CR/CSR offset\n");
29848ac9 2218 iowrite32be(cbar<<3, bridge->base + TSI148_CBAR);
d22b8ed9 2219 }
48d9356e 2220 dev_info(tsi148_bridge->parent, "CR/CSR Offset: %d\n", cbar);
d22b8ed9 2221
29848ac9 2222 crat = ioread32be(bridge->base + TSI148_LCSR_CRAT);
d22b8ed9 2223 if (crat & TSI148_LCSR_CRAT_EN) {
48d9356e 2224 dev_info(tsi148_bridge->parent, "Enabling CR/CSR space\n");
d22b8ed9 2225 iowrite32be(crat | TSI148_LCSR_CRAT_EN,
29848ac9 2226 bridge->base + TSI148_LCSR_CRAT);
d22b8ed9 2227 } else
48d9356e 2228 dev_info(tsi148_bridge->parent, "CR/CSR already enabled\n");
d22b8ed9
MW
2229
2230 /* If we want flushed, error-checked writes, set up a window
2231 * over the CR/CSR registers. We read from here to safely flush
2232 * through VME writes.
2233 */
7946328f 2234 if (err_chk) {
29848ac9
MW
2235 retval = tsi148_master_set(bridge->flush_image, 1,
2236 (vstat * 0x80000), 0x80000, VME_CRCSR, VME_SCT,
2237 VME_D16);
d22b8ed9 2238 if (retval)
48d9356e
MW
2239 dev_err(tsi148_bridge->parent, "Configuring flush image"
2240 " failed\n");
d22b8ed9
MW
2241 }
2242
2243 return 0;
2244
2245}
2246
29848ac9
MW
2247static void tsi148_crcsr_exit(struct vme_bridge *tsi148_bridge,
2248 struct pci_dev *pdev)
d22b8ed9
MW
2249{
2250 u32 crat;
29848ac9
MW
2251 struct tsi148_driver *bridge;
2252
2253 bridge = tsi148_bridge->driver_priv;
d22b8ed9
MW
2254
2255 /* Turn off CR/CSR space */
29848ac9 2256 crat = ioread32be(bridge->base + TSI148_LCSR_CRAT);
d22b8ed9 2257 iowrite32be(crat & ~TSI148_LCSR_CRAT_EN,
29848ac9 2258 bridge->base + TSI148_LCSR_CRAT);
d22b8ed9
MW
2259
2260 /* Free image */
29848ac9
MW
2261 iowrite32be(0, bridge->base + TSI148_LCSR_CROU);
2262 iowrite32be(0, bridge->base + TSI148_LCSR_CROL);
d22b8ed9 2263
29848ac9
MW
2264 pci_free_consistent(pdev, VME_CRCSR_BUF_SIZE, bridge->crcsr_kernel,
2265 bridge->crcsr_bus);
d22b8ed9
MW
2266}
2267
2268static int tsi148_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2269{
2270 int retval, i, master_num;
2271 u32 data;
2272 struct list_head *pos = NULL;
29848ac9
MW
2273 struct vme_bridge *tsi148_bridge;
2274 struct tsi148_driver *tsi148_device;
d22b8ed9
MW
2275 struct vme_master_resource *master_image;
2276 struct vme_slave_resource *slave_image;
2277 struct vme_dma_resource *dma_ctrlr;
42fb5031 2278 struct vme_lm_resource *lm;
d22b8ed9
MW
2279
2280 /* If we want to support more than one of each bridge, we need to
2281 * dynamically generate this so we get one per device
2282 */
7a6cb0d5 2283 tsi148_bridge = kzalloc(sizeof(struct vme_bridge), GFP_KERNEL);
d22b8ed9
MW
2284 if (tsi148_bridge == NULL) {
2285 dev_err(&pdev->dev, "Failed to allocate memory for device "
2286 "structure\n");
2287 retval = -ENOMEM;
2288 goto err_struct;
2289 }
2290
7a6cb0d5 2291 tsi148_device = kzalloc(sizeof(struct tsi148_driver), GFP_KERNEL);
29848ac9
MW
2292 if (tsi148_device == NULL) {
2293 dev_err(&pdev->dev, "Failed to allocate memory for device "
2294 "structure\n");
2295 retval = -ENOMEM;
2296 goto err_driver;
2297 }
2298
29848ac9
MW
2299 tsi148_bridge->driver_priv = tsi148_device;
2300
d22b8ed9
MW
2301 /* Enable the device */
2302 retval = pci_enable_device(pdev);
2303 if (retval) {
2304 dev_err(&pdev->dev, "Unable to enable device\n");
2305 goto err_enable;
2306 }
2307
2308 /* Map Registers */
2309 retval = pci_request_regions(pdev, driver_name);
2310 if (retval) {
2311 dev_err(&pdev->dev, "Unable to reserve resources\n");
2312 goto err_resource;
2313 }
2314
2315 /* map registers in BAR 0 */
29848ac9
MW
2316 tsi148_device->base = ioremap_nocache(pci_resource_start(pdev, 0),
2317 4096);
2318 if (!tsi148_device->base) {
d22b8ed9
MW
2319 dev_err(&pdev->dev, "Unable to remap CRG region\n");
2320 retval = -EIO;
2321 goto err_remap;
2322 }
2323
2324 /* Check to see if the mapping worked out */
29848ac9 2325 data = ioread32(tsi148_device->base + TSI148_PCFS_ID) & 0x0000FFFF;
d22b8ed9
MW
2326 if (data != PCI_VENDOR_ID_TUNDRA) {
2327 dev_err(&pdev->dev, "CRG region check failed\n");
2328 retval = -EIO;
2329 goto err_test;
2330 }
2331
2332 /* Initialize wait queues & mutual exclusion flags */
886953e9
EC
2333 init_waitqueue_head(&tsi148_device->dma_queue[0]);
2334 init_waitqueue_head(&tsi148_device->dma_queue[1]);
2335 init_waitqueue_head(&tsi148_device->iack_queue);
2336 mutex_init(&tsi148_device->vme_int);
2337 mutex_init(&tsi148_device->vme_rmw);
d22b8ed9 2338
886953e9 2339 tsi148_bridge->parent = &pdev->dev;
d22b8ed9
MW
2340 strcpy(tsi148_bridge->name, driver_name);
2341
2342 /* Setup IRQ */
2343 retval = tsi148_irq_init(tsi148_bridge);
2344 if (retval != 0) {
2345 dev_err(&pdev->dev, "Chip Initialization failed.\n");
2346 goto err_irq;
2347 }
2348
2349 /* If we are going to flush writes, we need to read from the VME bus.
2350 * We need to do this safely, thus we read the devices own CR/CSR
2351 * register. To do this we must set up a window in CR/CSR space and
2352 * hence have one less master window resource available.
2353 */
2354 master_num = TSI148_MAX_MASTER;
7946328f 2355 if (err_chk) {
d22b8ed9 2356 master_num--;
29848ac9 2357
32414878 2358 tsi148_device->flush_image =
29848ac9
MW
2359 kmalloc(sizeof(struct vme_master_resource), GFP_KERNEL);
2360 if (tsi148_device->flush_image == NULL) {
d22b8ed9
MW
2361 dev_err(&pdev->dev, "Failed to allocate memory for "
2362 "flush resource structure\n");
2363 retval = -ENOMEM;
2364 goto err_master;
2365 }
29848ac9 2366 tsi148_device->flush_image->parent = tsi148_bridge;
886953e9 2367 spin_lock_init(&tsi148_device->flush_image->lock);
29848ac9
MW
2368 tsi148_device->flush_image->locked = 1;
2369 tsi148_device->flush_image->number = master_num;
2370 tsi148_device->flush_image->address_attr = VME_A16 | VME_A24 |
2371 VME_A32 | VME_A64;
2372 tsi148_device->flush_image->cycle_attr = VME_SCT | VME_BLT |
2373 VME_MBLT | VME_2eVME | VME_2eSST | VME_2eSSTB |
2374 VME_2eSST160 | VME_2eSST267 | VME_2eSST320 | VME_SUPER |
2375 VME_USER | VME_PROG | VME_DATA;
2376 tsi148_device->flush_image->width_attr = VME_D16 | VME_D32;
886953e9 2377 memset(&tsi148_device->flush_image->bus_resource, 0,
d22b8ed9 2378 sizeof(struct resource));
29848ac9 2379 tsi148_device->flush_image->kern_base = NULL;
d22b8ed9
MW
2380 }
2381
2382 /* Add master windows to list */
886953e9 2383 INIT_LIST_HEAD(&tsi148_bridge->master_resources);
d22b8ed9 2384 for (i = 0; i < master_num; i++) {
7946328f
MW
2385 master_image = kmalloc(sizeof(struct vme_master_resource),
2386 GFP_KERNEL);
d22b8ed9
MW
2387 if (master_image == NULL) {
2388 dev_err(&pdev->dev, "Failed to allocate memory for "
2389 "master resource structure\n");
2390 retval = -ENOMEM;
2391 goto err_master;
2392 }
2393 master_image->parent = tsi148_bridge;
886953e9 2394 spin_lock_init(&master_image->lock);
d22b8ed9
MW
2395 master_image->locked = 0;
2396 master_image->number = i;
2397 master_image->address_attr = VME_A16 | VME_A24 | VME_A32 |
2398 VME_A64;
2399 master_image->cycle_attr = VME_SCT | VME_BLT | VME_MBLT |
2400 VME_2eVME | VME_2eSST | VME_2eSSTB | VME_2eSST160 |
2401 VME_2eSST267 | VME_2eSST320 | VME_SUPER | VME_USER |
2402 VME_PROG | VME_DATA;
2403 master_image->width_attr = VME_D16 | VME_D32;
886953e9 2404 memset(&master_image->bus_resource, 0,
d22b8ed9
MW
2405 sizeof(struct resource));
2406 master_image->kern_base = NULL;
886953e9
EC
2407 list_add_tail(&master_image->list,
2408 &tsi148_bridge->master_resources);
d22b8ed9
MW
2409 }
2410
2411 /* Add slave windows to list */
886953e9 2412 INIT_LIST_HEAD(&tsi148_bridge->slave_resources);
d22b8ed9 2413 for (i = 0; i < TSI148_MAX_SLAVE; i++) {
7946328f
MW
2414 slave_image = kmalloc(sizeof(struct vme_slave_resource),
2415 GFP_KERNEL);
d22b8ed9
MW
2416 if (slave_image == NULL) {
2417 dev_err(&pdev->dev, "Failed to allocate memory for "
2418 "slave resource structure\n");
2419 retval = -ENOMEM;
2420 goto err_slave;
2421 }
2422 slave_image->parent = tsi148_bridge;
886953e9 2423 mutex_init(&slave_image->mtx);
d22b8ed9
MW
2424 slave_image->locked = 0;
2425 slave_image->number = i;
2426 slave_image->address_attr = VME_A16 | VME_A24 | VME_A32 |
2427 VME_A64 | VME_CRCSR | VME_USER1 | VME_USER2 |
2428 VME_USER3 | VME_USER4;
2429 slave_image->cycle_attr = VME_SCT | VME_BLT | VME_MBLT |
2430 VME_2eVME | VME_2eSST | VME_2eSSTB | VME_2eSST160 |
2431 VME_2eSST267 | VME_2eSST320 | VME_SUPER | VME_USER |
2432 VME_PROG | VME_DATA;
886953e9
EC
2433 list_add_tail(&slave_image->list,
2434 &tsi148_bridge->slave_resources);
d22b8ed9
MW
2435 }
2436
2437 /* Add dma engines to list */
886953e9 2438 INIT_LIST_HEAD(&tsi148_bridge->dma_resources);
d22b8ed9 2439 for (i = 0; i < TSI148_MAX_DMA; i++) {
7946328f
MW
2440 dma_ctrlr = kmalloc(sizeof(struct vme_dma_resource),
2441 GFP_KERNEL);
d22b8ed9
MW
2442 if (dma_ctrlr == NULL) {
2443 dev_err(&pdev->dev, "Failed to allocate memory for "
2444 "dma resource structure\n");
2445 retval = -ENOMEM;
2446 goto err_dma;
2447 }
2448 dma_ctrlr->parent = tsi148_bridge;
886953e9 2449 mutex_init(&dma_ctrlr->mtx);
d22b8ed9
MW
2450 dma_ctrlr->locked = 0;
2451 dma_ctrlr->number = i;
4f723df4
MW
2452 dma_ctrlr->route_attr = VME_DMA_VME_TO_MEM |
2453 VME_DMA_MEM_TO_VME | VME_DMA_VME_TO_VME |
2454 VME_DMA_MEM_TO_MEM | VME_DMA_PATTERN_TO_VME |
2455 VME_DMA_PATTERN_TO_MEM;
886953e9
EC
2456 INIT_LIST_HEAD(&dma_ctrlr->pending);
2457 INIT_LIST_HEAD(&dma_ctrlr->running);
2458 list_add_tail(&dma_ctrlr->list,
2459 &tsi148_bridge->dma_resources);
d22b8ed9
MW
2460 }
2461
42fb5031 2462 /* Add location monitor to list */
886953e9 2463 INIT_LIST_HEAD(&tsi148_bridge->lm_resources);
42fb5031
MW
2464 lm = kmalloc(sizeof(struct vme_lm_resource), GFP_KERNEL);
2465 if (lm == NULL) {
2466 dev_err(&pdev->dev, "Failed to allocate memory for "
2467 "location monitor resource structure\n");
2468 retval = -ENOMEM;
2469 goto err_lm;
2470 }
2471 lm->parent = tsi148_bridge;
886953e9 2472 mutex_init(&lm->mtx);
42fb5031
MW
2473 lm->locked = 0;
2474 lm->number = 1;
2475 lm->monitors = 4;
886953e9 2476 list_add_tail(&lm->list, &tsi148_bridge->lm_resources);
42fb5031 2477
d22b8ed9
MW
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;
c813f592
MW
2488 tsi148_bridge->irq_set = tsi148_irq_set;
2489 tsi148_bridge->irq_generate = tsi148_irq_generate;
d22b8ed9
MW
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;
7f58f025
MV
2495 tsi148_bridge->alloc_consistent = tsi148_alloc_consistent;
2496 tsi148_bridge->free_consistent = tsi148_free_consistent;
d22b8ed9 2497
29848ac9 2498 data = ioread32be(tsi148_device->base + TSI148_LCSR_VSTAT);
d22b8ed9 2499 dev_info(&pdev->dev, "Board is%s the VME system controller\n",
7946328f 2500 (data & TSI148_LCSR_VSTAT_SCONS) ? "" : " not");
29848ac9 2501 if (!geoid)
638f199d
MW
2502 dev_info(&pdev->dev, "VME geographical address is %d\n",
2503 data & TSI148_LCSR_VSTAT_GA_M);
29848ac9 2504 else
638f199d
MW
2505 dev_info(&pdev->dev, "VME geographical address is set to %d\n",
2506 geoid);
29848ac9 2507
d22b8ed9
MW
2508 dev_info(&pdev->dev, "VME Write and flush and error check is %s\n",
2509 err_chk ? "enabled" : "disabled");
2510
4839737b 2511 if (tsi148_crcsr_init(tsi148_bridge, pdev)) {
d22b8ed9
MW
2512 dev_err(&pdev->dev, "CR/CSR configuration failed.\n");
2513 goto err_crcsr;
4839737b 2514 }
d22b8ed9 2515
d22b8ed9
MW
2516 retval = vme_register_bridge(tsi148_bridge);
2517 if (retval != 0) {
2518 dev_err(&pdev->dev, "Chip Registration failed.\n");
2519 goto err_reg;
2520 }
2521
29848ac9
MW
2522 pci_set_drvdata(pdev, tsi148_bridge);
2523
d22b8ed9 2524 /* Clear VME bus "board fail", and "power-up reset" lines */
29848ac9 2525 data = ioread32be(tsi148_device->base + TSI148_LCSR_VSTAT);
d22b8ed9
MW
2526 data &= ~TSI148_LCSR_VSTAT_BRDFL;
2527 data |= TSI148_LCSR_VSTAT_CPURST;
29848ac9 2528 iowrite32be(data, tsi148_device->base + TSI148_LCSR_VSTAT);
d22b8ed9
MW
2529
2530 return 0;
2531
d22b8ed9 2532err_reg:
29848ac9 2533 tsi148_crcsr_exit(tsi148_bridge, pdev);
d22b8ed9 2534err_crcsr:
42fb5031
MW
2535err_lm:
2536 /* resources are stored in link list */
886953e9 2537 list_for_each(pos, &tsi148_bridge->lm_resources) {
42fb5031
MW
2538 lm = list_entry(pos, struct vme_lm_resource, list);
2539 list_del(pos);
2540 kfree(lm);
2541 }
d22b8ed9
MW
2542err_dma:
2543 /* resources are stored in link list */
886953e9 2544 list_for_each(pos, &tsi148_bridge->dma_resources) {
d22b8ed9
MW
2545 dma_ctrlr = list_entry(pos, struct vme_dma_resource, list);
2546 list_del(pos);
2547 kfree(dma_ctrlr);
2548 }
2549err_slave:
2550 /* resources are stored in link list */
886953e9 2551 list_for_each(pos, &tsi148_bridge->slave_resources) {
d22b8ed9
MW
2552 slave_image = list_entry(pos, struct vme_slave_resource, list);
2553 list_del(pos);
2554 kfree(slave_image);
2555 }
2556err_master:
2557 /* resources are stored in link list */
886953e9 2558 list_for_each(pos, &tsi148_bridge->master_resources) {
7946328f
MW
2559 master_image = list_entry(pos, struct vme_master_resource,
2560 list);
d22b8ed9
MW
2561 list_del(pos);
2562 kfree(master_image);
2563 }
2564
a82ad05e 2565 tsi148_irq_exit(tsi148_bridge, pdev);
d22b8ed9
MW
2566err_irq:
2567err_test:
29848ac9 2568 iounmap(tsi148_device->base);
d22b8ed9
MW
2569err_remap:
2570 pci_release_regions(pdev);
2571err_resource:
2572 pci_disable_device(pdev);
2573err_enable:
29848ac9
MW
2574 kfree(tsi148_device);
2575err_driver:
d22b8ed9
MW
2576 kfree(tsi148_bridge);
2577err_struct:
2578 return retval;
2579
2580}
2581
2582static void tsi148_remove(struct pci_dev *pdev)
2583{
2584 struct list_head *pos = NULL;
b558ba2f 2585 struct list_head *tmplist;
d22b8ed9
MW
2586 struct vme_master_resource *master_image;
2587 struct vme_slave_resource *slave_image;
2588 struct vme_dma_resource *dma_ctrlr;
2589 int i;
29848ac9
MW
2590 struct tsi148_driver *bridge;
2591 struct vme_bridge *tsi148_bridge = pci_get_drvdata(pdev);
2592
2593 bridge = tsi148_bridge->driver_priv;
d22b8ed9 2594
d22b8ed9 2595
29848ac9 2596 dev_dbg(&pdev->dev, "Driver is being unloaded.\n");
d22b8ed9
MW
2597
2598 /*
2599 * Shutdown all inbound and outbound windows.
2600 */
2601 for (i = 0; i < 8; i++) {
29848ac9 2602 iowrite32be(0, bridge->base + TSI148_LCSR_IT[i] +
d22b8ed9 2603 TSI148_LCSR_OFFSET_ITAT);
29848ac9 2604 iowrite32be(0, bridge->base + TSI148_LCSR_OT[i] +
d22b8ed9
MW
2605 TSI148_LCSR_OFFSET_OTAT);
2606 }
2607
2608 /*
2609 * Shutdown Location monitor.
2610 */
29848ac9 2611 iowrite32be(0, bridge->base + TSI148_LCSR_LMAT);
d22b8ed9
MW
2612
2613 /*
2614 * Shutdown CRG map.
2615 */
29848ac9 2616 iowrite32be(0, bridge->base + TSI148_LCSR_CSRAT);
d22b8ed9
MW
2617
2618 /*
2619 * Clear error status.
2620 */
29848ac9
MW
2621 iowrite32be(0xFFFFFFFF, bridge->base + TSI148_LCSR_EDPAT);
2622 iowrite32be(0xFFFFFFFF, bridge->base + TSI148_LCSR_VEAT);
2623 iowrite32be(0x07000700, bridge->base + TSI148_LCSR_PSTAT);
d22b8ed9
MW
2624
2625 /*
2626 * Remove VIRQ interrupt (if any)
2627 */
29848ac9
MW
2628 if (ioread32be(bridge->base + TSI148_LCSR_VICR) & 0x800)
2629 iowrite32be(0x8000, bridge->base + TSI148_LCSR_VICR);
d22b8ed9 2630
d22b8ed9
MW
2631 /*
2632 * Map all Interrupts to PCI INTA
2633 */
29848ac9
MW
2634 iowrite32be(0x0, bridge->base + TSI148_LCSR_INTM1);
2635 iowrite32be(0x0, bridge->base + TSI148_LCSR_INTM2);
d22b8ed9 2636
a82ad05e 2637 tsi148_irq_exit(tsi148_bridge, pdev);
d22b8ed9
MW
2638
2639 vme_unregister_bridge(tsi148_bridge);
2640
29848ac9 2641 tsi148_crcsr_exit(tsi148_bridge, pdev);
d22b8ed9
MW
2642
2643 /* resources are stored in link list */
b558ba2f 2644 list_for_each_safe(pos, tmplist, &tsi148_bridge->dma_resources) {
d22b8ed9
MW
2645 dma_ctrlr = list_entry(pos, struct vme_dma_resource, list);
2646 list_del(pos);
2647 kfree(dma_ctrlr);
2648 }
2649
2650 /* resources are stored in link list */
b558ba2f 2651 list_for_each_safe(pos, tmplist, &tsi148_bridge->slave_resources) {
d22b8ed9
MW
2652 slave_image = list_entry(pos, struct vme_slave_resource, list);
2653 list_del(pos);
2654 kfree(slave_image);
2655 }
2656
2657 /* resources are stored in link list */
b558ba2f 2658 list_for_each_safe(pos, tmplist, &tsi148_bridge->master_resources) {
638f199d
MW
2659 master_image = list_entry(pos, struct vme_master_resource,
2660 list);
d22b8ed9
MW
2661 list_del(pos);
2662 kfree(master_image);
2663 }
2664
29848ac9 2665 iounmap(bridge->base);
d22b8ed9
MW
2666
2667 pci_release_regions(pdev);
2668
2669 pci_disable_device(pdev);
2670
29848ac9
MW
2671 kfree(tsi148_bridge->driver_priv);
2672
d22b8ed9
MW
2673 kfree(tsi148_bridge);
2674}
2675
2676static void __exit tsi148_exit(void)
2677{
2678 pci_unregister_driver(&tsi148_driver);
d22b8ed9
MW
2679}
2680
2681MODULE_PARM_DESC(err_chk, "Check for VME errors on reads and writes");
2682module_param(err_chk, bool, 0);
2683
638f199d
MW
2684MODULE_PARM_DESC(geoid, "Override geographical addressing");
2685module_param(geoid, int, 0);
2686
d22b8ed9
MW
2687MODULE_DESCRIPTION("VME driver for the Tundra Tempe VME bridge");
2688MODULE_LICENSE("GPL");
2689
2690module_init(tsi148_init);
2691module_exit(tsi148_exit);