Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/powerpc/sysdev/fsl_rio.c
10817 views
1
/*
2
* Freescale MPC85xx/MPC86xx RapidIO support
3
*
4
* Copyright 2009 Sysgo AG
5
* Thomas Moll <[email protected]>
6
* - fixed maintenance access routines, check for aligned access
7
*
8
* Copyright 2009 Integrated Device Technology, Inc.
9
* Alex Bounine <[email protected]>
10
* - Added Port-Write message handling
11
* - Added Machine Check exception handling
12
*
13
* Copyright (C) 2007, 2008, 2010 Freescale Semiconductor, Inc.
14
* Zhang Wei <[email protected]>
15
*
16
* Copyright 2005 MontaVista Software, Inc.
17
* Matt Porter <[email protected]>
18
*
19
* This program is free software; you can redistribute it and/or modify it
20
* under the terms of the GNU General Public License as published by the
21
* Free Software Foundation; either version 2 of the License, or (at your
22
* option) any later version.
23
*/
24
25
#include <linux/init.h>
26
#include <linux/module.h>
27
#include <linux/types.h>
28
#include <linux/dma-mapping.h>
29
#include <linux/interrupt.h>
30
#include <linux/device.h>
31
#include <linux/rio.h>
32
#include <linux/rio_drv.h>
33
#include <linux/of_platform.h>
34
#include <linux/delay.h>
35
#include <linux/slab.h>
36
#include <linux/kfifo.h>
37
38
#include <asm/io.h>
39
#include <asm/machdep.h>
40
#include <asm/uaccess.h>
41
42
#undef DEBUG_PW /* Port-Write debugging */
43
44
/* RapidIO definition irq, which read from OF-tree */
45
#define IRQ_RIO_BELL(m) (((struct rio_priv *)(m->priv))->bellirq)
46
#define IRQ_RIO_TX(m) (((struct rio_priv *)(m->priv))->txirq)
47
#define IRQ_RIO_RX(m) (((struct rio_priv *)(m->priv))->rxirq)
48
#define IRQ_RIO_PW(m) (((struct rio_priv *)(m->priv))->pwirq)
49
50
#define IPWSR_CLEAR 0x98
51
#define OMSR_CLEAR 0x1cb3
52
#define IMSR_CLEAR 0x491
53
#define IDSR_CLEAR 0x91
54
#define ODSR_CLEAR 0x1c00
55
#define LTLEECSR_ENABLE_ALL 0xFFC000FC
56
#define ESCSR_CLEAR 0x07120204
57
58
#define RIO_PORT1_EDCSR 0x0640
59
#define RIO_PORT2_EDCSR 0x0680
60
#define RIO_PORT1_IECSR 0x10130
61
#define RIO_PORT2_IECSR 0x101B0
62
#define RIO_IM0SR 0x13064
63
#define RIO_IM1SR 0x13164
64
#define RIO_OM0SR 0x13004
65
#define RIO_OM1SR 0x13104
66
67
#define RIO_ATMU_REGS_OFFSET 0x10c00
68
#define RIO_P_MSG_REGS_OFFSET 0x11000
69
#define RIO_S_MSG_REGS_OFFSET 0x13000
70
#define RIO_GCCSR 0x13c
71
#define RIO_ESCSR 0x158
72
#define RIO_PORT2_ESCSR 0x178
73
#define RIO_CCSR 0x15c
74
#define RIO_LTLEDCSR 0x0608
75
#define RIO_LTLEDCSR_IER 0x80000000
76
#define RIO_LTLEDCSR_PRT 0x01000000
77
#define RIO_LTLEECSR 0x060c
78
#define RIO_EPWISR 0x10010
79
#define RIO_ISR_AACR 0x10120
80
#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
81
#define RIO_MAINT_WIN_SIZE 0x400000
82
#define RIO_DBELL_WIN_SIZE 0x1000
83
84
#define RIO_MSG_OMR_MUI 0x00000002
85
#define RIO_MSG_OSR_TE 0x00000080
86
#define RIO_MSG_OSR_QOI 0x00000020
87
#define RIO_MSG_OSR_QFI 0x00000010
88
#define RIO_MSG_OSR_MUB 0x00000004
89
#define RIO_MSG_OSR_EOMI 0x00000002
90
#define RIO_MSG_OSR_QEI 0x00000001
91
92
#define RIO_MSG_IMR_MI 0x00000002
93
#define RIO_MSG_ISR_TE 0x00000080
94
#define RIO_MSG_ISR_QFI 0x00000010
95
#define RIO_MSG_ISR_DIQI 0x00000001
96
97
#define RIO_IPWMR_SEN 0x00100000
98
#define RIO_IPWMR_QFIE 0x00000100
99
#define RIO_IPWMR_EIE 0x00000020
100
#define RIO_IPWMR_CQ 0x00000002
101
#define RIO_IPWMR_PWE 0x00000001
102
103
#define RIO_IPWSR_QF 0x00100000
104
#define RIO_IPWSR_TE 0x00000080
105
#define RIO_IPWSR_QFI 0x00000010
106
#define RIO_IPWSR_PWD 0x00000008
107
#define RIO_IPWSR_PWB 0x00000004
108
109
/* EPWISR Error match value */
110
#define RIO_EPWISR_PINT1 0x80000000
111
#define RIO_EPWISR_PINT2 0x40000000
112
#define RIO_EPWISR_MU 0x00000002
113
#define RIO_EPWISR_PW 0x00000001
114
115
#define RIO_MSG_DESC_SIZE 32
116
#define RIO_MSG_BUFFER_SIZE 4096
117
#define RIO_MIN_TX_RING_SIZE 2
118
#define RIO_MAX_TX_RING_SIZE 2048
119
#define RIO_MIN_RX_RING_SIZE 2
120
#define RIO_MAX_RX_RING_SIZE 2048
121
122
#define DOORBELL_DMR_DI 0x00000002
123
#define DOORBELL_DSR_TE 0x00000080
124
#define DOORBELL_DSR_QFI 0x00000010
125
#define DOORBELL_DSR_DIQI 0x00000001
126
#define DOORBELL_TID_OFFSET 0x02
127
#define DOORBELL_SID_OFFSET 0x04
128
#define DOORBELL_INFO_OFFSET 0x06
129
130
#define DOORBELL_MESSAGE_SIZE 0x08
131
#define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET))
132
#define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET))
133
#define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
134
135
struct rio_atmu_regs {
136
u32 rowtar;
137
u32 rowtear;
138
u32 rowbar;
139
u32 pad2;
140
u32 rowar;
141
u32 pad3[3];
142
};
143
144
struct rio_msg_regs {
145
u32 omr; /* 0xD_3000 - Outbound message 0 mode register */
146
u32 osr; /* 0xD_3004 - Outbound message 0 status register */
147
u32 pad1;
148
u32 odqdpar; /* 0xD_300C - Outbound message 0 descriptor queue
149
dequeue pointer address register */
150
u32 pad2;
151
u32 osar; /* 0xD_3014 - Outbound message 0 source address
152
register */
153
u32 odpr; /* 0xD_3018 - Outbound message 0 destination port
154
register */
155
u32 odatr; /* 0xD_301C - Outbound message 0 destination attributes
156
Register*/
157
u32 odcr; /* 0xD_3020 - Outbound message 0 double-word count
158
register */
159
u32 pad3;
160
u32 odqepar; /* 0xD_3028 - Outbound message 0 descriptor queue
161
enqueue pointer address register */
162
u32 pad4[13];
163
u32 imr; /* 0xD_3060 - Inbound message 0 mode register */
164
u32 isr; /* 0xD_3064 - Inbound message 0 status register */
165
u32 pad5;
166
u32 ifqdpar; /* 0xD_306C - Inbound message 0 frame queue dequeue
167
pointer address register*/
168
u32 pad6;
169
u32 ifqepar; /* 0xD_3074 - Inbound message 0 frame queue enqueue
170
pointer address register */
171
u32 pad7[226];
172
u32 odmr; /* 0xD_3400 - Outbound doorbell mode register */
173
u32 odsr; /* 0xD_3404 - Outbound doorbell status register */
174
u32 res0[4];
175
u32 oddpr; /* 0xD_3418 - Outbound doorbell destination port
176
register */
177
u32 oddatr; /* 0xD_341c - Outbound doorbell destination attributes
178
register */
179
u32 res1[3];
180
u32 odretcr; /* 0xD_342C - Outbound doorbell retry error threshold
181
configuration register */
182
u32 res2[12];
183
u32 dmr; /* 0xD_3460 - Inbound doorbell mode register */
184
u32 dsr; /* 0xD_3464 - Inbound doorbell status register */
185
u32 pad8;
186
u32 dqdpar; /* 0xD_346C - Inbound doorbell queue dequeue Pointer
187
address register */
188
u32 pad9;
189
u32 dqepar; /* 0xD_3474 - Inbound doorbell Queue enqueue pointer
190
address register */
191
u32 pad10[26];
192
u32 pwmr; /* 0xD_34E0 - Inbound port-write mode register */
193
u32 pwsr; /* 0xD_34E4 - Inbound port-write status register */
194
u32 epwqbar; /* 0xD_34E8 - Extended Port-Write Queue Base Address
195
register */
196
u32 pwqbar; /* 0xD_34EC - Inbound port-write queue base address
197
register */
198
};
199
200
struct rio_tx_desc {
201
u32 res1;
202
u32 saddr;
203
u32 dport;
204
u32 dattr;
205
u32 res2;
206
u32 res3;
207
u32 dwcnt;
208
u32 res4;
209
};
210
211
struct rio_dbell_ring {
212
void *virt;
213
dma_addr_t phys;
214
};
215
216
struct rio_msg_tx_ring {
217
void *virt;
218
dma_addr_t phys;
219
void *virt_buffer[RIO_MAX_TX_RING_SIZE];
220
dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE];
221
int tx_slot;
222
int size;
223
void *dev_id;
224
};
225
226
struct rio_msg_rx_ring {
227
void *virt;
228
dma_addr_t phys;
229
void *virt_buffer[RIO_MAX_RX_RING_SIZE];
230
int rx_slot;
231
int size;
232
void *dev_id;
233
};
234
235
struct rio_port_write_msg {
236
void *virt;
237
dma_addr_t phys;
238
u32 msg_count;
239
u32 err_count;
240
u32 discard_count;
241
};
242
243
struct rio_priv {
244
struct device *dev;
245
void __iomem *regs_win;
246
struct rio_atmu_regs __iomem *atmu_regs;
247
struct rio_atmu_regs __iomem *maint_atmu_regs;
248
struct rio_atmu_regs __iomem *dbell_atmu_regs;
249
void __iomem *dbell_win;
250
void __iomem *maint_win;
251
struct rio_msg_regs __iomem *msg_regs;
252
struct rio_dbell_ring dbell_ring;
253
struct rio_msg_tx_ring msg_tx_ring;
254
struct rio_msg_rx_ring msg_rx_ring;
255
struct rio_port_write_msg port_write_msg;
256
int bellirq;
257
int txirq;
258
int rxirq;
259
int pwirq;
260
struct work_struct pw_work;
261
struct kfifo pw_fifo;
262
spinlock_t pw_fifo_lock;
263
};
264
265
#define __fsl_read_rio_config(x, addr, err, op) \
266
__asm__ __volatile__( \
267
"1: "op" %1,0(%2)\n" \
268
" eieio\n" \
269
"2:\n" \
270
".section .fixup,\"ax\"\n" \
271
"3: li %1,-1\n" \
272
" li %0,%3\n" \
273
" b 2b\n" \
274
".section __ex_table,\"a\"\n" \
275
" .align 2\n" \
276
" .long 1b,3b\n" \
277
".text" \
278
: "=r" (err), "=r" (x) \
279
: "b" (addr), "i" (-EFAULT), "0" (err))
280
281
static void __iomem *rio_regs_win;
282
283
#ifdef CONFIG_E500
284
int fsl_rio_mcheck_exception(struct pt_regs *regs)
285
{
286
const struct exception_table_entry *entry;
287
unsigned long reason;
288
289
if (!rio_regs_win)
290
return 0;
291
292
reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
293
if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
294
/* Check if we are prepared to handle this fault */
295
entry = search_exception_tables(regs->nip);
296
if (entry) {
297
pr_debug("RIO: %s - MC Exception handled\n",
298
__func__);
299
out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
300
0);
301
regs->msr |= MSR_RI;
302
regs->nip = entry->fixup;
303
return 1;
304
}
305
}
306
307
return 0;
308
}
309
EXPORT_SYMBOL_GPL(fsl_rio_mcheck_exception);
310
#endif
311
312
/**
313
* fsl_rio_doorbell_send - Send a MPC85xx doorbell message
314
* @mport: RapidIO master port info
315
* @index: ID of RapidIO interface
316
* @destid: Destination ID of target device
317
* @data: 16-bit info field of RapidIO doorbell message
318
*
319
* Sends a MPC85xx doorbell message. Returns %0 on success or
320
* %-EINVAL on failure.
321
*/
322
static int fsl_rio_doorbell_send(struct rio_mport *mport,
323
int index, u16 destid, u16 data)
324
{
325
struct rio_priv *priv = mport->priv;
326
pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
327
index, destid, data);
328
switch (mport->phy_type) {
329
case RIO_PHY_PARALLEL:
330
out_be32(&priv->dbell_atmu_regs->rowtar, destid << 22);
331
out_be16(priv->dbell_win, data);
332
break;
333
case RIO_PHY_SERIAL:
334
/* In the serial version silicons, such as MPC8548, MPC8641,
335
* below operations is must be.
336
*/
337
out_be32(&priv->msg_regs->odmr, 0x00000000);
338
out_be32(&priv->msg_regs->odretcr, 0x00000004);
339
out_be32(&priv->msg_regs->oddpr, destid << 16);
340
out_be32(&priv->msg_regs->oddatr, data);
341
out_be32(&priv->msg_regs->odmr, 0x00000001);
342
break;
343
}
344
345
return 0;
346
}
347
348
/**
349
* fsl_local_config_read - Generate a MPC85xx local config space read
350
* @mport: RapidIO master port info
351
* @index: ID of RapdiIO interface
352
* @offset: Offset into configuration space
353
* @len: Length (in bytes) of the maintenance transaction
354
* @data: Value to be read into
355
*
356
* Generates a MPC85xx local configuration space read. Returns %0 on
357
* success or %-EINVAL on failure.
358
*/
359
static int fsl_local_config_read(struct rio_mport *mport,
360
int index, u32 offset, int len, u32 *data)
361
{
362
struct rio_priv *priv = mport->priv;
363
pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
364
offset);
365
*data = in_be32(priv->regs_win + offset);
366
367
return 0;
368
}
369
370
/**
371
* fsl_local_config_write - Generate a MPC85xx local config space write
372
* @mport: RapidIO master port info
373
* @index: ID of RapdiIO interface
374
* @offset: Offset into configuration space
375
* @len: Length (in bytes) of the maintenance transaction
376
* @data: Value to be written
377
*
378
* Generates a MPC85xx local configuration space write. Returns %0 on
379
* success or %-EINVAL on failure.
380
*/
381
static int fsl_local_config_write(struct rio_mport *mport,
382
int index, u32 offset, int len, u32 data)
383
{
384
struct rio_priv *priv = mport->priv;
385
pr_debug
386
("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
387
index, offset, data);
388
out_be32(priv->regs_win + offset, data);
389
390
return 0;
391
}
392
393
/**
394
* fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
395
* @mport: RapidIO master port info
396
* @index: ID of RapdiIO interface
397
* @destid: Destination ID of transaction
398
* @hopcount: Number of hops to target device
399
* @offset: Offset into configuration space
400
* @len: Length (in bytes) of the maintenance transaction
401
* @val: Location to be read into
402
*
403
* Generates a MPC85xx read maintenance transaction. Returns %0 on
404
* success or %-EINVAL on failure.
405
*/
406
static int
407
fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
408
u8 hopcount, u32 offset, int len, u32 *val)
409
{
410
struct rio_priv *priv = mport->priv;
411
u8 *data;
412
u32 rval, err = 0;
413
414
pr_debug
415
("fsl_rio_config_read: index %d destid %d hopcount %d offset %8.8x len %d\n",
416
index, destid, hopcount, offset, len);
417
418
/* 16MB maintenance window possible */
419
/* allow only aligned access to maintenance registers */
420
if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
421
return -EINVAL;
422
423
out_be32(&priv->maint_atmu_regs->rowtar,
424
(destid << 22) | (hopcount << 12) | (offset >> 12));
425
out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
426
427
data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
428
switch (len) {
429
case 1:
430
__fsl_read_rio_config(rval, data, err, "lbz");
431
break;
432
case 2:
433
__fsl_read_rio_config(rval, data, err, "lhz");
434
break;
435
case 4:
436
__fsl_read_rio_config(rval, data, err, "lwz");
437
break;
438
default:
439
return -EINVAL;
440
}
441
442
if (err) {
443
pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
444
err, destid, hopcount, offset);
445
}
446
447
*val = rval;
448
449
return err;
450
}
451
452
/**
453
* fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
454
* @mport: RapidIO master port info
455
* @index: ID of RapdiIO interface
456
* @destid: Destination ID of transaction
457
* @hopcount: Number of hops to target device
458
* @offset: Offset into configuration space
459
* @len: Length (in bytes) of the maintenance transaction
460
* @val: Value to be written
461
*
462
* Generates an MPC85xx write maintenance transaction. Returns %0 on
463
* success or %-EINVAL on failure.
464
*/
465
static int
466
fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
467
u8 hopcount, u32 offset, int len, u32 val)
468
{
469
struct rio_priv *priv = mport->priv;
470
u8 *data;
471
pr_debug
472
("fsl_rio_config_write: index %d destid %d hopcount %d offset %8.8x len %d val %8.8x\n",
473
index, destid, hopcount, offset, len, val);
474
475
/* 16MB maintenance windows possible */
476
/* allow only aligned access to maintenance registers */
477
if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
478
return -EINVAL;
479
480
out_be32(&priv->maint_atmu_regs->rowtar,
481
(destid << 22) | (hopcount << 12) | (offset >> 12));
482
out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
483
484
data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
485
switch (len) {
486
case 1:
487
out_8((u8 *) data, val);
488
break;
489
case 2:
490
out_be16((u16 *) data, val);
491
break;
492
case 4:
493
out_be32((u32 *) data, val);
494
break;
495
default:
496
return -EINVAL;
497
}
498
499
return 0;
500
}
501
502
/**
503
* fsl_add_outb_message - Add message to the MPC85xx outbound message queue
504
* @mport: Master port with outbound message queue
505
* @rdev: Target of outbound message
506
* @mbox: Outbound mailbox
507
* @buffer: Message to add to outbound queue
508
* @len: Length of message
509
*
510
* Adds the @buffer message to the MPC85xx outbound message queue. Returns
511
* %0 on success or %-EINVAL on failure.
512
*/
513
static int
514
fsl_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox,
515
void *buffer, size_t len)
516
{
517
struct rio_priv *priv = mport->priv;
518
u32 omr;
519
struct rio_tx_desc *desc = (struct rio_tx_desc *)priv->msg_tx_ring.virt
520
+ priv->msg_tx_ring.tx_slot;
521
int ret = 0;
522
523
pr_debug("RIO: fsl_add_outb_message(): destid %4.4x mbox %d buffer " \
524
"%8.8x len %8.8x\n", rdev->destid, mbox, (int)buffer, len);
525
526
if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) {
527
ret = -EINVAL;
528
goto out;
529
}
530
531
/* Copy and clear rest of buffer */
532
memcpy(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot], buffer,
533
len);
534
if (len < (RIO_MAX_MSG_SIZE - 4))
535
memset(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot]
536
+ len, 0, RIO_MAX_MSG_SIZE - len);
537
538
switch (mport->phy_type) {
539
case RIO_PHY_PARALLEL:
540
/* Set mbox field for message */
541
desc->dport = mbox & 0x3;
542
543
/* Enable EOMI interrupt, set priority, and set destid */
544
desc->dattr = 0x28000000 | (rdev->destid << 2);
545
break;
546
case RIO_PHY_SERIAL:
547
/* Set mbox field for message, and set destid */
548
desc->dport = (rdev->destid << 16) | (mbox & 0x3);
549
550
/* Enable EOMI interrupt and priority */
551
desc->dattr = 0x28000000;
552
break;
553
}
554
555
/* Set transfer size aligned to next power of 2 (in double words) */
556
desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len);
557
558
/* Set snooping and source buffer address */
559
desc->saddr = 0x00000004
560
| priv->msg_tx_ring.phys_buffer[priv->msg_tx_ring.tx_slot];
561
562
/* Increment enqueue pointer */
563
omr = in_be32(&priv->msg_regs->omr);
564
out_be32(&priv->msg_regs->omr, omr | RIO_MSG_OMR_MUI);
565
566
/* Go to next descriptor */
567
if (++priv->msg_tx_ring.tx_slot == priv->msg_tx_ring.size)
568
priv->msg_tx_ring.tx_slot = 0;
569
570
out:
571
return ret;
572
}
573
574
/**
575
* fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
576
* @irq: Linux interrupt number
577
* @dev_instance: Pointer to interrupt-specific data
578
*
579
* Handles outbound message interrupts. Executes a register outbound
580
* mailbox event handler and acks the interrupt occurrence.
581
*/
582
static irqreturn_t
583
fsl_rio_tx_handler(int irq, void *dev_instance)
584
{
585
int osr;
586
struct rio_mport *port = (struct rio_mport *)dev_instance;
587
struct rio_priv *priv = port->priv;
588
589
osr = in_be32(&priv->msg_regs->osr);
590
591
if (osr & RIO_MSG_OSR_TE) {
592
pr_info("RIO: outbound message transmission error\n");
593
out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_TE);
594
goto out;
595
}
596
597
if (osr & RIO_MSG_OSR_QOI) {
598
pr_info("RIO: outbound message queue overflow\n");
599
out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_QOI);
600
goto out;
601
}
602
603
if (osr & RIO_MSG_OSR_EOMI) {
604
u32 dqp = in_be32(&priv->msg_regs->odqdpar);
605
int slot = (dqp - priv->msg_tx_ring.phys) >> 5;
606
port->outb_msg[0].mcback(port, priv->msg_tx_ring.dev_id, -1,
607
slot);
608
609
/* Ack the end-of-message interrupt */
610
out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_EOMI);
611
}
612
613
out:
614
return IRQ_HANDLED;
615
}
616
617
/**
618
* fsl_open_outb_mbox - Initialize MPC85xx outbound mailbox
619
* @mport: Master port implementing the outbound message unit
620
* @dev_id: Device specific pointer to pass on event
621
* @mbox: Mailbox to open
622
* @entries: Number of entries in the outbound mailbox ring
623
*
624
* Initializes buffer ring, request the outbound message interrupt,
625
* and enables the outbound message unit. Returns %0 on success and
626
* %-EINVAL or %-ENOMEM on failure.
627
*/
628
static int
629
fsl_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
630
{
631
int i, j, rc = 0;
632
struct rio_priv *priv = mport->priv;
633
634
if ((entries < RIO_MIN_TX_RING_SIZE) ||
635
(entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) {
636
rc = -EINVAL;
637
goto out;
638
}
639
640
/* Initialize shadow copy ring */
641
priv->msg_tx_ring.dev_id = dev_id;
642
priv->msg_tx_ring.size = entries;
643
644
for (i = 0; i < priv->msg_tx_ring.size; i++) {
645
priv->msg_tx_ring.virt_buffer[i] =
646
dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
647
&priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL);
648
if (!priv->msg_tx_ring.virt_buffer[i]) {
649
rc = -ENOMEM;
650
for (j = 0; j < priv->msg_tx_ring.size; j++)
651
if (priv->msg_tx_ring.virt_buffer[j])
652
dma_free_coherent(priv->dev,
653
RIO_MSG_BUFFER_SIZE,
654
priv->msg_tx_ring.
655
virt_buffer[j],
656
priv->msg_tx_ring.
657
phys_buffer[j]);
658
goto out;
659
}
660
}
661
662
/* Initialize outbound message descriptor ring */
663
priv->msg_tx_ring.virt = dma_alloc_coherent(priv->dev,
664
priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
665
&priv->msg_tx_ring.phys, GFP_KERNEL);
666
if (!priv->msg_tx_ring.virt) {
667
rc = -ENOMEM;
668
goto out_dma;
669
}
670
memset(priv->msg_tx_ring.virt, 0,
671
priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE);
672
priv->msg_tx_ring.tx_slot = 0;
673
674
/* Point dequeue/enqueue pointers at first entry in ring */
675
out_be32(&priv->msg_regs->odqdpar, priv->msg_tx_ring.phys);
676
out_be32(&priv->msg_regs->odqepar, priv->msg_tx_ring.phys);
677
678
/* Configure for snooping */
679
out_be32(&priv->msg_regs->osar, 0x00000004);
680
681
/* Clear interrupt status */
682
out_be32(&priv->msg_regs->osr, 0x000000b3);
683
684
/* Hook up outbound message handler */
685
rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0,
686
"msg_tx", (void *)mport);
687
if (rc < 0)
688
goto out_irq;
689
690
/*
691
* Configure outbound message unit
692
* Snooping
693
* Interrupts (all enabled, except QEIE)
694
* Chaining mode
695
* Disable
696
*/
697
out_be32(&priv->msg_regs->omr, 0x00100220);
698
699
/* Set number of entries */
700
out_be32(&priv->msg_regs->omr,
701
in_be32(&priv->msg_regs->omr) |
702
((get_bitmask_order(entries) - 2) << 12));
703
704
/* Now enable the unit */
705
out_be32(&priv->msg_regs->omr, in_be32(&priv->msg_regs->omr) | 0x1);
706
707
out:
708
return rc;
709
710
out_irq:
711
dma_free_coherent(priv->dev,
712
priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
713
priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
714
715
out_dma:
716
for (i = 0; i < priv->msg_tx_ring.size; i++)
717
dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
718
priv->msg_tx_ring.virt_buffer[i],
719
priv->msg_tx_ring.phys_buffer[i]);
720
721
return rc;
722
}
723
724
/**
725
* fsl_close_outb_mbox - Shut down MPC85xx outbound mailbox
726
* @mport: Master port implementing the outbound message unit
727
* @mbox: Mailbox to close
728
*
729
* Disables the outbound message unit, free all buffers, and
730
* frees the outbound message interrupt.
731
*/
732
static void fsl_close_outb_mbox(struct rio_mport *mport, int mbox)
733
{
734
struct rio_priv *priv = mport->priv;
735
/* Disable inbound message unit */
736
out_be32(&priv->msg_regs->omr, 0);
737
738
/* Free ring */
739
dma_free_coherent(priv->dev,
740
priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
741
priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
742
743
/* Free interrupt */
744
free_irq(IRQ_RIO_TX(mport), (void *)mport);
745
}
746
747
/**
748
* fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
749
* @irq: Linux interrupt number
750
* @dev_instance: Pointer to interrupt-specific data
751
*
752
* Handles inbound message interrupts. Executes a registered inbound
753
* mailbox event handler and acks the interrupt occurrence.
754
*/
755
static irqreturn_t
756
fsl_rio_rx_handler(int irq, void *dev_instance)
757
{
758
int isr;
759
struct rio_mport *port = (struct rio_mport *)dev_instance;
760
struct rio_priv *priv = port->priv;
761
762
isr = in_be32(&priv->msg_regs->isr);
763
764
if (isr & RIO_MSG_ISR_TE) {
765
pr_info("RIO: inbound message reception error\n");
766
out_be32((void *)&priv->msg_regs->isr, RIO_MSG_ISR_TE);
767
goto out;
768
}
769
770
/* XXX Need to check/dispatch until queue empty */
771
if (isr & RIO_MSG_ISR_DIQI) {
772
/*
773
* We implement *only* mailbox 0, but can receive messages
774
* for any mailbox/letter to that mailbox destination. So,
775
* make the callback with an unknown/invalid mailbox number
776
* argument.
777
*/
778
port->inb_msg[0].mcback(port, priv->msg_rx_ring.dev_id, -1, -1);
779
780
/* Ack the queueing interrupt */
781
out_be32(&priv->msg_regs->isr, RIO_MSG_ISR_DIQI);
782
}
783
784
out:
785
return IRQ_HANDLED;
786
}
787
788
/**
789
* fsl_open_inb_mbox - Initialize MPC85xx inbound mailbox
790
* @mport: Master port implementing the inbound message unit
791
* @dev_id: Device specific pointer to pass on event
792
* @mbox: Mailbox to open
793
* @entries: Number of entries in the inbound mailbox ring
794
*
795
* Initializes buffer ring, request the inbound message interrupt,
796
* and enables the inbound message unit. Returns %0 on success
797
* and %-EINVAL or %-ENOMEM on failure.
798
*/
799
static int
800
fsl_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
801
{
802
int i, rc = 0;
803
struct rio_priv *priv = mport->priv;
804
805
if ((entries < RIO_MIN_RX_RING_SIZE) ||
806
(entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) {
807
rc = -EINVAL;
808
goto out;
809
}
810
811
/* Initialize client buffer ring */
812
priv->msg_rx_ring.dev_id = dev_id;
813
priv->msg_rx_ring.size = entries;
814
priv->msg_rx_ring.rx_slot = 0;
815
for (i = 0; i < priv->msg_rx_ring.size; i++)
816
priv->msg_rx_ring.virt_buffer[i] = NULL;
817
818
/* Initialize inbound message ring */
819
priv->msg_rx_ring.virt = dma_alloc_coherent(priv->dev,
820
priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
821
&priv->msg_rx_ring.phys, GFP_KERNEL);
822
if (!priv->msg_rx_ring.virt) {
823
rc = -ENOMEM;
824
goto out;
825
}
826
827
/* Point dequeue/enqueue pointers at first entry in ring */
828
out_be32(&priv->msg_regs->ifqdpar, (u32) priv->msg_rx_ring.phys);
829
out_be32(&priv->msg_regs->ifqepar, (u32) priv->msg_rx_ring.phys);
830
831
/* Clear interrupt status */
832
out_be32(&priv->msg_regs->isr, 0x00000091);
833
834
/* Hook up inbound message handler */
835
rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
836
"msg_rx", (void *)mport);
837
if (rc < 0) {
838
dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
839
priv->msg_tx_ring.virt_buffer[i],
840
priv->msg_tx_ring.phys_buffer[i]);
841
goto out;
842
}
843
844
/*
845
* Configure inbound message unit:
846
* Snooping
847
* 4KB max message size
848
* Unmask all interrupt sources
849
* Disable
850
*/
851
out_be32(&priv->msg_regs->imr, 0x001b0060);
852
853
/* Set number of queue entries */
854
setbits32(&priv->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12);
855
856
/* Now enable the unit */
857
setbits32(&priv->msg_regs->imr, 0x1);
858
859
out:
860
return rc;
861
}
862
863
/**
864
* fsl_close_inb_mbox - Shut down MPC85xx inbound mailbox
865
* @mport: Master port implementing the inbound message unit
866
* @mbox: Mailbox to close
867
*
868
* Disables the inbound message unit, free all buffers, and
869
* frees the inbound message interrupt.
870
*/
871
static void fsl_close_inb_mbox(struct rio_mport *mport, int mbox)
872
{
873
struct rio_priv *priv = mport->priv;
874
/* Disable inbound message unit */
875
out_be32(&priv->msg_regs->imr, 0);
876
877
/* Free ring */
878
dma_free_coherent(priv->dev, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
879
priv->msg_rx_ring.virt, priv->msg_rx_ring.phys);
880
881
/* Free interrupt */
882
free_irq(IRQ_RIO_RX(mport), (void *)mport);
883
}
884
885
/**
886
* fsl_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
887
* @mport: Master port implementing the inbound message unit
888
* @mbox: Inbound mailbox number
889
* @buf: Buffer to add to inbound queue
890
*
891
* Adds the @buf buffer to the MPC85xx inbound message queue. Returns
892
* %0 on success or %-EINVAL on failure.
893
*/
894
static int fsl_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf)
895
{
896
int rc = 0;
897
struct rio_priv *priv = mport->priv;
898
899
pr_debug("RIO: fsl_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
900
priv->msg_rx_ring.rx_slot);
901
902
if (priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot]) {
903
printk(KERN_ERR
904
"RIO: error adding inbound buffer %d, buffer exists\n",
905
priv->msg_rx_ring.rx_slot);
906
rc = -EINVAL;
907
goto out;
908
}
909
910
priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot] = buf;
911
if (++priv->msg_rx_ring.rx_slot == priv->msg_rx_ring.size)
912
priv->msg_rx_ring.rx_slot = 0;
913
914
out:
915
return rc;
916
}
917
918
/**
919
* fsl_get_inb_message - Fetch inbound message from the MPC85xx message unit
920
* @mport: Master port implementing the inbound message unit
921
* @mbox: Inbound mailbox number
922
*
923
* Gets the next available inbound message from the inbound message queue.
924
* A pointer to the message is returned on success or NULL on failure.
925
*/
926
static void *fsl_get_inb_message(struct rio_mport *mport, int mbox)
927
{
928
struct rio_priv *priv = mport->priv;
929
u32 phys_buf, virt_buf;
930
void *buf = NULL;
931
int buf_idx;
932
933
phys_buf = in_be32(&priv->msg_regs->ifqdpar);
934
935
/* If no more messages, then bail out */
936
if (phys_buf == in_be32(&priv->msg_regs->ifqepar))
937
goto out2;
938
939
virt_buf = (u32) priv->msg_rx_ring.virt + (phys_buf
940
- priv->msg_rx_ring.phys);
941
buf_idx = (phys_buf - priv->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE;
942
buf = priv->msg_rx_ring.virt_buffer[buf_idx];
943
944
if (!buf) {
945
printk(KERN_ERR
946
"RIO: inbound message copy failed, no buffers\n");
947
goto out1;
948
}
949
950
/* Copy max message size, caller is expected to allocate that big */
951
memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE);
952
953
/* Clear the available buffer */
954
priv->msg_rx_ring.virt_buffer[buf_idx] = NULL;
955
956
out1:
957
setbits32(&priv->msg_regs->imr, RIO_MSG_IMR_MI);
958
959
out2:
960
return buf;
961
}
962
963
/**
964
* fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
965
* @irq: Linux interrupt number
966
* @dev_instance: Pointer to interrupt-specific data
967
*
968
* Handles doorbell interrupts. Parses a list of registered
969
* doorbell event handlers and executes a matching event handler.
970
*/
971
static irqreturn_t
972
fsl_rio_dbell_handler(int irq, void *dev_instance)
973
{
974
int dsr;
975
struct rio_mport *port = (struct rio_mport *)dev_instance;
976
struct rio_priv *priv = port->priv;
977
978
dsr = in_be32(&priv->msg_regs->dsr);
979
980
if (dsr & DOORBELL_DSR_TE) {
981
pr_info("RIO: doorbell reception error\n");
982
out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_TE);
983
goto out;
984
}
985
986
if (dsr & DOORBELL_DSR_QFI) {
987
pr_info("RIO: doorbell queue full\n");
988
out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_QFI);
989
}
990
991
/* XXX Need to check/dispatch until queue empty */
992
if (dsr & DOORBELL_DSR_DIQI) {
993
u32 dmsg =
994
(u32) priv->dbell_ring.virt +
995
(in_be32(&priv->msg_regs->dqdpar) & 0xfff);
996
struct rio_dbell *dbell;
997
int found = 0;
998
999
pr_debug
1000
("RIO: processing doorbell, sid %2.2x tid %2.2x info %4.4x\n",
1001
DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
1002
1003
list_for_each_entry(dbell, &port->dbells, node) {
1004
if ((dbell->res->start <= DBELL_INF(dmsg)) &&
1005
(dbell->res->end >= DBELL_INF(dmsg))) {
1006
found = 1;
1007
break;
1008
}
1009
}
1010
if (found) {
1011
dbell->dinb(port, dbell->dev_id, DBELL_SID(dmsg), DBELL_TID(dmsg),
1012
DBELL_INF(dmsg));
1013
} else {
1014
pr_debug
1015
("RIO: spurious doorbell, sid %2.2x tid %2.2x info %4.4x\n",
1016
DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
1017
}
1018
setbits32(&priv->msg_regs->dmr, DOORBELL_DMR_DI);
1019
out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_DIQI);
1020
}
1021
1022
out:
1023
return IRQ_HANDLED;
1024
}
1025
1026
/**
1027
* fsl_rio_doorbell_init - MPC85xx doorbell interface init
1028
* @mport: Master port implementing the inbound doorbell unit
1029
*
1030
* Initializes doorbell unit hardware and inbound DMA buffer
1031
* ring. Called from fsl_rio_setup(). Returns %0 on success
1032
* or %-ENOMEM on failure.
1033
*/
1034
static int fsl_rio_doorbell_init(struct rio_mport *mport)
1035
{
1036
struct rio_priv *priv = mport->priv;
1037
int rc = 0;
1038
1039
/* Map outbound doorbell window immediately after maintenance window */
1040
priv->dbell_win = ioremap(mport->iores.start + RIO_MAINT_WIN_SIZE,
1041
RIO_DBELL_WIN_SIZE);
1042
if (!priv->dbell_win) {
1043
printk(KERN_ERR
1044
"RIO: unable to map outbound doorbell window\n");
1045
rc = -ENOMEM;
1046
goto out;
1047
}
1048
1049
/* Initialize inbound doorbells */
1050
priv->dbell_ring.virt = dma_alloc_coherent(priv->dev, 512 *
1051
DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL);
1052
if (!priv->dbell_ring.virt) {
1053
printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n");
1054
rc = -ENOMEM;
1055
iounmap(priv->dbell_win);
1056
goto out;
1057
}
1058
1059
/* Point dequeue/enqueue pointers at first entry in ring */
1060
out_be32(&priv->msg_regs->dqdpar, (u32) priv->dbell_ring.phys);
1061
out_be32(&priv->msg_regs->dqepar, (u32) priv->dbell_ring.phys);
1062
1063
/* Clear interrupt status */
1064
out_be32(&priv->msg_regs->dsr, 0x00000091);
1065
1066
/* Hook up doorbell handler */
1067
rc = request_irq(IRQ_RIO_BELL(mport), fsl_rio_dbell_handler, 0,
1068
"dbell_rx", (void *)mport);
1069
if (rc < 0) {
1070
iounmap(priv->dbell_win);
1071
dma_free_coherent(priv->dev, 512 * DOORBELL_MESSAGE_SIZE,
1072
priv->dbell_ring.virt, priv->dbell_ring.phys);
1073
printk(KERN_ERR
1074
"MPC85xx RIO: unable to request inbound doorbell irq");
1075
goto out;
1076
}
1077
1078
/* Configure doorbells for snooping, 512 entries, and enable */
1079
out_be32(&priv->msg_regs->dmr, 0x00108161);
1080
1081
out:
1082
return rc;
1083
}
1084
1085
static void port_error_handler(struct rio_mport *port, int offset)
1086
{
1087
/*XXX: Error recovery is not implemented, we just clear errors */
1088
out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
1089
1090
if (offset == 0) {
1091
out_be32((u32 *)(rio_regs_win + RIO_PORT1_EDCSR), 0);
1092
out_be32((u32 *)(rio_regs_win + RIO_PORT1_IECSR), 0);
1093
out_be32((u32 *)(rio_regs_win + RIO_ESCSR), ESCSR_CLEAR);
1094
} else {
1095
out_be32((u32 *)(rio_regs_win + RIO_PORT2_EDCSR), 0);
1096
out_be32((u32 *)(rio_regs_win + RIO_PORT2_IECSR), 0);
1097
out_be32((u32 *)(rio_regs_win + RIO_PORT2_ESCSR), ESCSR_CLEAR);
1098
}
1099
}
1100
1101
static void msg_unit_error_handler(struct rio_mport *port)
1102
{
1103
struct rio_priv *priv = port->priv;
1104
1105
/*XXX: Error recovery is not implemented, we just clear errors */
1106
out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
1107
1108
out_be32((u32 *)(rio_regs_win + RIO_IM0SR), IMSR_CLEAR);
1109
out_be32((u32 *)(rio_regs_win + RIO_IM1SR), IMSR_CLEAR);
1110
out_be32((u32 *)(rio_regs_win + RIO_OM0SR), OMSR_CLEAR);
1111
out_be32((u32 *)(rio_regs_win + RIO_OM1SR), OMSR_CLEAR);
1112
1113
out_be32(&priv->msg_regs->odsr, ODSR_CLEAR);
1114
out_be32(&priv->msg_regs->dsr, IDSR_CLEAR);
1115
1116
out_be32(&priv->msg_regs->pwsr, IPWSR_CLEAR);
1117
}
1118
1119
/**
1120
* fsl_rio_port_write_handler - MPC85xx port write interrupt handler
1121
* @irq: Linux interrupt number
1122
* @dev_instance: Pointer to interrupt-specific data
1123
*
1124
* Handles port write interrupts. Parses a list of registered
1125
* port write event handlers and executes a matching event handler.
1126
*/
1127
static irqreturn_t
1128
fsl_rio_port_write_handler(int irq, void *dev_instance)
1129
{
1130
u32 ipwmr, ipwsr;
1131
struct rio_mport *port = (struct rio_mport *)dev_instance;
1132
struct rio_priv *priv = port->priv;
1133
u32 epwisr, tmp;
1134
1135
epwisr = in_be32(priv->regs_win + RIO_EPWISR);
1136
if (!(epwisr & RIO_EPWISR_PW))
1137
goto pw_done;
1138
1139
ipwmr = in_be32(&priv->msg_regs->pwmr);
1140
ipwsr = in_be32(&priv->msg_regs->pwsr);
1141
1142
#ifdef DEBUG_PW
1143
pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr, ipwsr);
1144
if (ipwsr & RIO_IPWSR_QF)
1145
pr_debug(" QF");
1146
if (ipwsr & RIO_IPWSR_TE)
1147
pr_debug(" TE");
1148
if (ipwsr & RIO_IPWSR_QFI)
1149
pr_debug(" QFI");
1150
if (ipwsr & RIO_IPWSR_PWD)
1151
pr_debug(" PWD");
1152
if (ipwsr & RIO_IPWSR_PWB)
1153
pr_debug(" PWB");
1154
pr_debug(" )\n");
1155
#endif
1156
/* Schedule deferred processing if PW was received */
1157
if (ipwsr & RIO_IPWSR_QFI) {
1158
/* Save PW message (if there is room in FIFO),
1159
* otherwise discard it.
1160
*/
1161
if (kfifo_avail(&priv->pw_fifo) >= RIO_PW_MSG_SIZE) {
1162
priv->port_write_msg.msg_count++;
1163
kfifo_in(&priv->pw_fifo, priv->port_write_msg.virt,
1164
RIO_PW_MSG_SIZE);
1165
} else {
1166
priv->port_write_msg.discard_count++;
1167
pr_debug("RIO: ISR Discarded Port-Write Msg(s) (%d)\n",
1168
priv->port_write_msg.discard_count);
1169
}
1170
/* Clear interrupt and issue Clear Queue command. This allows
1171
* another port-write to be received.
1172
*/
1173
out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_QFI);
1174
out_be32(&priv->msg_regs->pwmr, ipwmr | RIO_IPWMR_CQ);
1175
1176
schedule_work(&priv->pw_work);
1177
}
1178
1179
if ((ipwmr & RIO_IPWMR_EIE) && (ipwsr & RIO_IPWSR_TE)) {
1180
priv->port_write_msg.err_count++;
1181
pr_debug("RIO: Port-Write Transaction Err (%d)\n",
1182
priv->port_write_msg.err_count);
1183
/* Clear Transaction Error: port-write controller should be
1184
* disabled when clearing this error
1185
*/
1186
out_be32(&priv->msg_regs->pwmr, ipwmr & ~RIO_IPWMR_PWE);
1187
out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_TE);
1188
out_be32(&priv->msg_regs->pwmr, ipwmr);
1189
}
1190
1191
if (ipwsr & RIO_IPWSR_PWD) {
1192
priv->port_write_msg.discard_count++;
1193
pr_debug("RIO: Port Discarded Port-Write Msg(s) (%d)\n",
1194
priv->port_write_msg.discard_count);
1195
out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_PWD);
1196
}
1197
1198
pw_done:
1199
if (epwisr & RIO_EPWISR_PINT1) {
1200
tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1201
pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1202
port_error_handler(port, 0);
1203
}
1204
1205
if (epwisr & RIO_EPWISR_PINT2) {
1206
tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1207
pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1208
port_error_handler(port, 1);
1209
}
1210
1211
if (epwisr & RIO_EPWISR_MU) {
1212
tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1213
pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1214
msg_unit_error_handler(port);
1215
}
1216
1217
return IRQ_HANDLED;
1218
}
1219
1220
static void fsl_pw_dpc(struct work_struct *work)
1221
{
1222
struct rio_priv *priv = container_of(work, struct rio_priv, pw_work);
1223
unsigned long flags;
1224
u32 msg_buffer[RIO_PW_MSG_SIZE/sizeof(u32)];
1225
1226
/*
1227
* Process port-write messages
1228
*/
1229
spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1230
while (kfifo_out(&priv->pw_fifo, (unsigned char *)msg_buffer,
1231
RIO_PW_MSG_SIZE)) {
1232
/* Process one message */
1233
spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1234
#ifdef DEBUG_PW
1235
{
1236
u32 i;
1237
pr_debug("%s : Port-Write Message:", __func__);
1238
for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32); i++) {
1239
if ((i%4) == 0)
1240
pr_debug("\n0x%02x: 0x%08x", i*4,
1241
msg_buffer[i]);
1242
else
1243
pr_debug(" 0x%08x", msg_buffer[i]);
1244
}
1245
pr_debug("\n");
1246
}
1247
#endif
1248
/* Pass the port-write message to RIO core for processing */
1249
rio_inb_pwrite_handler((union rio_pw_msg *)msg_buffer);
1250
spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1251
}
1252
spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1253
}
1254
1255
/**
1256
* fsl_rio_pw_enable - enable/disable port-write interface init
1257
* @mport: Master port implementing the port write unit
1258
* @enable: 1=enable; 0=disable port-write message handling
1259
*/
1260
static int fsl_rio_pw_enable(struct rio_mport *mport, int enable)
1261
{
1262
struct rio_priv *priv = mport->priv;
1263
u32 rval;
1264
1265
rval = in_be32(&priv->msg_regs->pwmr);
1266
1267
if (enable)
1268
rval |= RIO_IPWMR_PWE;
1269
else
1270
rval &= ~RIO_IPWMR_PWE;
1271
1272
out_be32(&priv->msg_regs->pwmr, rval);
1273
1274
return 0;
1275
}
1276
1277
/**
1278
* fsl_rio_port_write_init - MPC85xx port write interface init
1279
* @mport: Master port implementing the port write unit
1280
*
1281
* Initializes port write unit hardware and DMA buffer
1282
* ring. Called from fsl_rio_setup(). Returns %0 on success
1283
* or %-ENOMEM on failure.
1284
*/
1285
static int fsl_rio_port_write_init(struct rio_mport *mport)
1286
{
1287
struct rio_priv *priv = mport->priv;
1288
int rc = 0;
1289
1290
/* Following configurations require a disabled port write controller */
1291
out_be32(&priv->msg_regs->pwmr,
1292
in_be32(&priv->msg_regs->pwmr) & ~RIO_IPWMR_PWE);
1293
1294
/* Initialize port write */
1295
priv->port_write_msg.virt = dma_alloc_coherent(priv->dev,
1296
RIO_PW_MSG_SIZE,
1297
&priv->port_write_msg.phys, GFP_KERNEL);
1298
if (!priv->port_write_msg.virt) {
1299
pr_err("RIO: unable allocate port write queue\n");
1300
return -ENOMEM;
1301
}
1302
1303
priv->port_write_msg.err_count = 0;
1304
priv->port_write_msg.discard_count = 0;
1305
1306
/* Point dequeue/enqueue pointers at first entry */
1307
out_be32(&priv->msg_regs->epwqbar, 0);
1308
out_be32(&priv->msg_regs->pwqbar, (u32) priv->port_write_msg.phys);
1309
1310
pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n",
1311
in_be32(&priv->msg_regs->epwqbar),
1312
in_be32(&priv->msg_regs->pwqbar));
1313
1314
/* Clear interrupt status IPWSR */
1315
out_be32(&priv->msg_regs->pwsr,
1316
(RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD));
1317
1318
/* Configure port write contoller for snooping enable all reporting,
1319
clear queue full */
1320
out_be32(&priv->msg_regs->pwmr,
1321
RIO_IPWMR_SEN | RIO_IPWMR_QFIE | RIO_IPWMR_EIE | RIO_IPWMR_CQ);
1322
1323
1324
/* Hook up port-write handler */
1325
rc = request_irq(IRQ_RIO_PW(mport), fsl_rio_port_write_handler,
1326
IRQF_SHARED, "port-write", (void *)mport);
1327
if (rc < 0) {
1328
pr_err("MPC85xx RIO: unable to request inbound doorbell irq");
1329
goto err_out;
1330
}
1331
/* Enable Error Interrupt */
1332
out_be32((u32 *)(rio_regs_win + RIO_LTLEECSR), LTLEECSR_ENABLE_ALL);
1333
1334
INIT_WORK(&priv->pw_work, fsl_pw_dpc);
1335
spin_lock_init(&priv->pw_fifo_lock);
1336
if (kfifo_alloc(&priv->pw_fifo, RIO_PW_MSG_SIZE * 32, GFP_KERNEL)) {
1337
pr_err("FIFO allocation failed\n");
1338
rc = -ENOMEM;
1339
goto err_out_irq;
1340
}
1341
1342
pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n",
1343
in_be32(&priv->msg_regs->pwmr),
1344
in_be32(&priv->msg_regs->pwsr));
1345
1346
return rc;
1347
1348
err_out_irq:
1349
free_irq(IRQ_RIO_PW(mport), (void *)mport);
1350
err_out:
1351
dma_free_coherent(priv->dev, RIO_PW_MSG_SIZE,
1352
priv->port_write_msg.virt,
1353
priv->port_write_msg.phys);
1354
return rc;
1355
}
1356
1357
static inline void fsl_rio_info(struct device *dev, u32 ccsr)
1358
{
1359
const char *str;
1360
if (ccsr & 1) {
1361
/* Serial phy */
1362
switch (ccsr >> 30) {
1363
case 0:
1364
str = "1";
1365
break;
1366
case 1:
1367
str = "4";
1368
break;
1369
default:
1370
str = "Unknown";
1371
break;
1372
}
1373
dev_info(dev, "Hardware port width: %s\n", str);
1374
1375
switch ((ccsr >> 27) & 7) {
1376
case 0:
1377
str = "Single-lane 0";
1378
break;
1379
case 1:
1380
str = "Single-lane 2";
1381
break;
1382
case 2:
1383
str = "Four-lane";
1384
break;
1385
default:
1386
str = "Unknown";
1387
break;
1388
}
1389
dev_info(dev, "Training connection status: %s\n", str);
1390
} else {
1391
/* Parallel phy */
1392
if (!(ccsr & 0x80000000))
1393
dev_info(dev, "Output port operating in 8-bit mode\n");
1394
if (!(ccsr & 0x08000000))
1395
dev_info(dev, "Input port operating in 8-bit mode\n");
1396
}
1397
}
1398
1399
/**
1400
* fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
1401
* @dev: platform_device pointer
1402
*
1403
* Initializes MPC85xx RapidIO hardware interface, configures
1404
* master port with system-specific info, and registers the
1405
* master port with the RapidIO subsystem.
1406
*/
1407
int fsl_rio_setup(struct platform_device *dev)
1408
{
1409
struct rio_ops *ops;
1410
struct rio_mport *port;
1411
struct rio_priv *priv;
1412
int rc = 0;
1413
const u32 *dt_range, *cell;
1414
struct resource regs;
1415
int rlen;
1416
u32 ccsr;
1417
u64 law_start, law_size;
1418
int paw, aw, sw;
1419
1420
if (!dev->dev.of_node) {
1421
dev_err(&dev->dev, "Device OF-Node is NULL");
1422
return -EFAULT;
1423
}
1424
1425
rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
1426
if (rc) {
1427
dev_err(&dev->dev, "Can't get %s property 'reg'\n",
1428
dev->dev.of_node->full_name);
1429
return -EFAULT;
1430
}
1431
dev_info(&dev->dev, "Of-device full name %s\n", dev->dev.of_node->full_name);
1432
dev_info(&dev->dev, "Regs: %pR\n", &regs);
1433
1434
dt_range = of_get_property(dev->dev.of_node, "ranges", &rlen);
1435
if (!dt_range) {
1436
dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
1437
dev->dev.of_node->full_name);
1438
return -EFAULT;
1439
}
1440
1441
/* Get node address wide */
1442
cell = of_get_property(dev->dev.of_node, "#address-cells", NULL);
1443
if (cell)
1444
aw = *cell;
1445
else
1446
aw = of_n_addr_cells(dev->dev.of_node);
1447
/* Get node size wide */
1448
cell = of_get_property(dev->dev.of_node, "#size-cells", NULL);
1449
if (cell)
1450
sw = *cell;
1451
else
1452
sw = of_n_size_cells(dev->dev.of_node);
1453
/* Get parent address wide wide */
1454
paw = of_n_addr_cells(dev->dev.of_node);
1455
1456
law_start = of_read_number(dt_range + aw, paw);
1457
law_size = of_read_number(dt_range + aw + paw, sw);
1458
1459
dev_info(&dev->dev, "LAW start 0x%016llx, size 0x%016llx.\n",
1460
law_start, law_size);
1461
1462
ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
1463
if (!ops) {
1464
rc = -ENOMEM;
1465
goto err_ops;
1466
}
1467
ops->lcread = fsl_local_config_read;
1468
ops->lcwrite = fsl_local_config_write;
1469
ops->cread = fsl_rio_config_read;
1470
ops->cwrite = fsl_rio_config_write;
1471
ops->dsend = fsl_rio_doorbell_send;
1472
ops->pwenable = fsl_rio_pw_enable;
1473
ops->open_outb_mbox = fsl_open_outb_mbox;
1474
ops->open_inb_mbox = fsl_open_inb_mbox;
1475
ops->close_outb_mbox = fsl_close_outb_mbox;
1476
ops->close_inb_mbox = fsl_close_inb_mbox;
1477
ops->add_outb_message = fsl_add_outb_message;
1478
ops->add_inb_buffer = fsl_add_inb_buffer;
1479
ops->get_inb_message = fsl_get_inb_message;
1480
1481
port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
1482
if (!port) {
1483
rc = -ENOMEM;
1484
goto err_port;
1485
}
1486
port->index = 0;
1487
1488
priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
1489
if (!priv) {
1490
printk(KERN_ERR "Can't alloc memory for 'priv'\n");
1491
rc = -ENOMEM;
1492
goto err_priv;
1493
}
1494
1495
INIT_LIST_HEAD(&port->dbells);
1496
port->iores.start = law_start;
1497
port->iores.end = law_start + law_size - 1;
1498
port->iores.flags = IORESOURCE_MEM;
1499
port->iores.name = "rio_io_win";
1500
1501
if (request_resource(&iomem_resource, &port->iores) < 0) {
1502
dev_err(&dev->dev, "RIO: Error requesting master port region"
1503
" 0x%016llx-0x%016llx\n",
1504
(u64)port->iores.start, (u64)port->iores.end);
1505
rc = -ENOMEM;
1506
goto err_res;
1507
}
1508
1509
priv->pwirq = irq_of_parse_and_map(dev->dev.of_node, 0);
1510
priv->bellirq = irq_of_parse_and_map(dev->dev.of_node, 2);
1511
priv->txirq = irq_of_parse_and_map(dev->dev.of_node, 3);
1512
priv->rxirq = irq_of_parse_and_map(dev->dev.of_node, 4);
1513
dev_info(&dev->dev, "pwirq: %d, bellirq: %d, txirq: %d, rxirq %d\n",
1514
priv->pwirq, priv->bellirq, priv->txirq, priv->rxirq);
1515
1516
rio_init_dbell_res(&port->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
1517
rio_init_mbox_res(&port->riores[RIO_INB_MBOX_RESOURCE], 0, 0);
1518
rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0);
1519
strcpy(port->name, "RIO0 mport");
1520
1521
priv->dev = &dev->dev;
1522
1523
port->ops = ops;
1524
port->priv = priv;
1525
port->phys_efptr = 0x100;
1526
1527
priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1);
1528
rio_regs_win = priv->regs_win;
1529
1530
/* Probe the master port phy type */
1531
ccsr = in_be32(priv->regs_win + RIO_CCSR);
1532
port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
1533
dev_info(&dev->dev, "RapidIO PHY type: %s\n",
1534
(port->phy_type == RIO_PHY_PARALLEL) ? "parallel" :
1535
((port->phy_type == RIO_PHY_SERIAL) ? "serial" :
1536
"unknown"));
1537
/* Checking the port training status */
1538
if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1539
dev_err(&dev->dev, "Port is not ready. "
1540
"Try to restart connection...\n");
1541
switch (port->phy_type) {
1542
case RIO_PHY_SERIAL:
1543
/* Disable ports */
1544
out_be32(priv->regs_win + RIO_CCSR, 0);
1545
/* Set 1x lane */
1546
setbits32(priv->regs_win + RIO_CCSR, 0x02000000);
1547
/* Enable ports */
1548
setbits32(priv->regs_win + RIO_CCSR, 0x00600000);
1549
break;
1550
case RIO_PHY_PARALLEL:
1551
/* Disable ports */
1552
out_be32(priv->regs_win + RIO_CCSR, 0x22000000);
1553
/* Enable ports */
1554
out_be32(priv->regs_win + RIO_CCSR, 0x44000000);
1555
break;
1556
}
1557
msleep(100);
1558
if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1559
dev_err(&dev->dev, "Port restart failed.\n");
1560
rc = -ENOLINK;
1561
goto err;
1562
}
1563
dev_info(&dev->dev, "Port restart success!\n");
1564
}
1565
fsl_rio_info(&dev->dev, ccsr);
1566
1567
port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
1568
& RIO_PEF_CTLS) >> 4;
1569
dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
1570
port->sys_size ? 65536 : 256);
1571
1572
if (rio_register_mport(port))
1573
goto err;
1574
1575
if (port->host_deviceid >= 0)
1576
out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
1577
RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
1578
else
1579
out_be32(priv->regs_win + RIO_GCCSR, 0x00000000);
1580
1581
priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
1582
+ RIO_ATMU_REGS_OFFSET);
1583
priv->maint_atmu_regs = priv->atmu_regs + 1;
1584
priv->dbell_atmu_regs = priv->atmu_regs + 2;
1585
priv->msg_regs = (struct rio_msg_regs *)(priv->regs_win +
1586
((port->phy_type == RIO_PHY_SERIAL) ?
1587
RIO_S_MSG_REGS_OFFSET : RIO_P_MSG_REGS_OFFSET));
1588
1589
/* Set to receive any dist ID for serial RapidIO controller. */
1590
if (port->phy_type == RIO_PHY_SERIAL)
1591
out_be32((priv->regs_win + RIO_ISR_AACR), RIO_ISR_AACR_AA);
1592
1593
/* Configure maintenance transaction window */
1594
out_be32(&priv->maint_atmu_regs->rowbar, law_start >> 12);
1595
out_be32(&priv->maint_atmu_regs->rowar,
1596
0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
1597
1598
priv->maint_win = ioremap(law_start, RIO_MAINT_WIN_SIZE);
1599
1600
/* Configure outbound doorbell window */
1601
out_be32(&priv->dbell_atmu_regs->rowbar,
1602
(law_start + RIO_MAINT_WIN_SIZE) >> 12);
1603
out_be32(&priv->dbell_atmu_regs->rowar, 0x8004200b); /* 4k */
1604
fsl_rio_doorbell_init(port);
1605
fsl_rio_port_write_init(port);
1606
1607
return 0;
1608
err:
1609
iounmap(priv->regs_win);
1610
err_res:
1611
kfree(priv);
1612
err_priv:
1613
kfree(port);
1614
err_port:
1615
kfree(ops);
1616
err_ops:
1617
return rc;
1618
}
1619
1620
/* The probe function for RapidIO peer-to-peer network.
1621
*/
1622
static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev)
1623
{
1624
printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
1625
dev->dev.of_node->full_name);
1626
1627
return fsl_rio_setup(dev);
1628
};
1629
1630
static const struct of_device_id fsl_of_rio_rpn_ids[] = {
1631
{
1632
.compatible = "fsl,rapidio-delta",
1633
},
1634
{},
1635
};
1636
1637
static struct platform_driver fsl_of_rio_rpn_driver = {
1638
.driver = {
1639
.name = "fsl-of-rio",
1640
.owner = THIS_MODULE,
1641
.of_match_table = fsl_of_rio_rpn_ids,
1642
},
1643
.probe = fsl_of_rio_rpn_probe,
1644
};
1645
1646
static __init int fsl_of_rio_rpn_init(void)
1647
{
1648
return platform_driver_register(&fsl_of_rio_rpn_driver);
1649
}
1650
1651
subsys_initcall(fsl_of_rio_rpn_init);
1652
1653