2 * RapidIO mport driver for Tsi721 PCIExpress-to-SRIO bridge
4 * Copyright 2011 Integrated Device Technology, Inc.
5 * Alexandre Bounine <alexandre.bounine@idt.com>
6 * Chul Kim <chul.kim@idt.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 59
20 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <linux/errno.h>
25 #include <linux/init.h>
26 #include <linux/ioport.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/pci.h>
30 #include <linux/rio.h>
31 #include <linux/rio_drv.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/interrupt.h>
34 #include <linux/kfifo.h>
35 #include <linux/delay.h>
39 #define DEBUG_PW /* Inbound Port-Write debugging */
41 static void tsi721_omsg_handler(struct tsi721_device
*priv
, int ch
);
42 static void tsi721_imsg_handler(struct tsi721_device
*priv
, int ch
);
45 * tsi721_lcread - read from local SREP config space
46 * @mport: RapidIO master port info
47 * @index: ID of RapdiIO interface
48 * @offset: Offset into configuration space
49 * @len: Length (in bytes) of the maintenance transaction
50 * @data: Value to be read into
52 * Generates a local SREP space read. Returns %0 on
53 * success or %-EINVAL on failure.
55 static int tsi721_lcread(struct rio_mport
*mport
, int index
, u32 offset
,
58 struct tsi721_device
*priv
= mport
->priv
;
60 if (len
!= sizeof(u32
))
61 return -EINVAL
; /* only 32-bit access is supported */
63 *data
= ioread32(priv
->regs
+ offset
);
69 * tsi721_lcwrite - write into local SREP config space
70 * @mport: RapidIO master port info
71 * @index: ID of RapdiIO interface
72 * @offset: Offset into configuration space
73 * @len: Length (in bytes) of the maintenance transaction
74 * @data: Value to be written
76 * Generates a local write into SREP configuration space. Returns %0 on
77 * success or %-EINVAL on failure.
79 static int tsi721_lcwrite(struct rio_mport
*mport
, int index
, u32 offset
,
82 struct tsi721_device
*priv
= mport
->priv
;
84 if (len
!= sizeof(u32
))
85 return -EINVAL
; /* only 32-bit access is supported */
87 iowrite32(data
, priv
->regs
+ offset
);
93 * tsi721_maint_dma - Helper function to generate RapidIO maintenance
94 * transactions using designated Tsi721 DMA channel.
95 * @priv: pointer to tsi721 private data
96 * @sys_size: RapdiIO transport system size
97 * @destid: Destination ID of transaction
98 * @hopcount: Number of hops to target device
99 * @offset: Offset into configuration space
100 * @len: Length (in bytes) of the maintenance transaction
101 * @data: Location to be read from or write into
102 * @do_wr: Operation flag (1 == MAINT_WR)
104 * Generates a RapidIO maintenance transaction (Read or Write).
105 * Returns %0 on success and %-EINVAL or %-EFAULT on failure.
107 static int tsi721_maint_dma(struct tsi721_device
*priv
, u32 sys_size
,
108 u16 destid
, u8 hopcount
, u32 offset
, int len
,
109 u32
*data
, int do_wr
)
111 void __iomem
*regs
= priv
->regs
+ TSI721_DMAC_BASE(priv
->mdma
.ch_id
);
112 struct tsi721_dma_desc
*bd_ptr
;
113 u32 rd_count
, swr_ptr
, ch_stat
;
115 u32 op
= do_wr
? MAINT_WR
: MAINT_RD
;
117 if (offset
> (RIO_MAINT_SPACE_SZ
- len
) || (len
!= sizeof(u32
)))
120 bd_ptr
= priv
->mdma
.bd_base
;
122 rd_count
= ioread32(regs
+ TSI721_DMAC_DRDCNT
);
124 /* Initialize DMA descriptor */
125 bd_ptr
[0].type_id
= cpu_to_le32((DTYPE2
<< 29) | (op
<< 19) | destid
);
126 bd_ptr
[0].bcount
= cpu_to_le32((sys_size
<< 26) | 0x04);
127 bd_ptr
[0].raddr_lo
= cpu_to_le32((hopcount
<< 24) | offset
);
128 bd_ptr
[0].raddr_hi
= 0;
130 bd_ptr
[0].data
[0] = cpu_to_be32p(data
);
132 bd_ptr
[0].data
[0] = 0xffffffff;
136 /* Start DMA operation */
137 iowrite32(rd_count
+ 2, regs
+ TSI721_DMAC_DWRCNT
);
138 ioread32(regs
+ TSI721_DMAC_DWRCNT
);
141 /* Wait until DMA transfer is finished */
142 while ((ch_stat
= ioread32(regs
+ TSI721_DMAC_STS
))
143 & TSI721_DMAC_STS_RUN
) {
145 if (++i
>= 5000000) {
146 dev_dbg(&priv
->pdev
->dev
,
147 "%s : DMA[%d] read timeout ch_status=%x\n",
148 __func__
, priv
->mdma
.ch_id
, ch_stat
);
156 if (ch_stat
& TSI721_DMAC_STS_ABORT
) {
157 /* If DMA operation aborted due to error,
158 * reinitialize DMA channel
160 dev_dbg(&priv
->pdev
->dev
, "%s : DMA ABORT ch_stat=%x\n",
162 dev_dbg(&priv
->pdev
->dev
, "OP=%d : destid=%x hc=%x off=%x\n",
163 do_wr
? MAINT_WR
: MAINT_RD
, destid
, hopcount
, offset
);
164 iowrite32(TSI721_DMAC_INT_ALL
, regs
+ TSI721_DMAC_INT
);
165 iowrite32(TSI721_DMAC_CTL_INIT
, regs
+ TSI721_DMAC_CTL
);
167 iowrite32(0, regs
+ TSI721_DMAC_DWRCNT
);
176 *data
= be32_to_cpu(bd_ptr
[0].data
[0]);
179 * Update descriptor status FIFO RD pointer.
180 * NOTE: Skipping check and clear FIFO entries because we are waiting
181 * for transfer to be completed.
183 swr_ptr
= ioread32(regs
+ TSI721_DMAC_DSWP
);
184 iowrite32(swr_ptr
, regs
+ TSI721_DMAC_DSRP
);
191 * tsi721_cread_dma - Generate a RapidIO maintenance read transaction
192 * using Tsi721 BDMA engine.
193 * @mport: RapidIO master port control structure
194 * @index: ID of RapdiIO interface
195 * @destid: Destination ID of transaction
196 * @hopcount: Number of hops to target device
197 * @offset: Offset into configuration space
198 * @len: Length (in bytes) of the maintenance transaction
199 * @val: Location to be read into
201 * Generates a RapidIO maintenance read transaction.
202 * Returns %0 on success and %-EINVAL or %-EFAULT on failure.
204 static int tsi721_cread_dma(struct rio_mport
*mport
, int index
, u16 destid
,
205 u8 hopcount
, u32 offset
, int len
, u32
*data
)
207 struct tsi721_device
*priv
= mport
->priv
;
209 return tsi721_maint_dma(priv
, mport
->sys_size
, destid
, hopcount
,
210 offset
, len
, data
, 0);
214 * tsi721_cwrite_dma - Generate a RapidIO maintenance write transaction
215 * using Tsi721 BDMA engine
216 * @mport: RapidIO master port control structure
217 * @index: ID of RapdiIO interface
218 * @destid: Destination ID of transaction
219 * @hopcount: Number of hops to target device
220 * @offset: Offset into configuration space
221 * @len: Length (in bytes) of the maintenance transaction
222 * @val: Value to be written
224 * Generates a RapidIO maintenance write transaction.
225 * Returns %0 on success and %-EINVAL or %-EFAULT on failure.
227 static int tsi721_cwrite_dma(struct rio_mport
*mport
, int index
, u16 destid
,
228 u8 hopcount
, u32 offset
, int len
, u32 data
)
230 struct tsi721_device
*priv
= mport
->priv
;
233 return tsi721_maint_dma(priv
, mport
->sys_size
, destid
, hopcount
,
234 offset
, len
, &temp
, 1);
238 * tsi721_pw_handler - Tsi721 inbound port-write interrupt handler
239 * @mport: RapidIO master port structure
241 * Handles inbound port-write interrupts. Copies PW message from an internal
242 * buffer into PW message FIFO and schedules deferred routine to process
246 tsi721_pw_handler(struct rio_mport
*mport
)
248 struct tsi721_device
*priv
= mport
->priv
;
250 u32 pw_buf
[TSI721_RIO_PW_MSG_SIZE
/sizeof(u32
)];
253 pw_stat
= ioread32(priv
->regs
+ TSI721_RIO_PW_RX_STAT
);
255 if (pw_stat
& TSI721_RIO_PW_RX_STAT_PW_VAL
) {
256 pw_buf
[0] = ioread32(priv
->regs
+ TSI721_RIO_PW_RX_CAPT(0));
257 pw_buf
[1] = ioread32(priv
->regs
+ TSI721_RIO_PW_RX_CAPT(1));
258 pw_buf
[2] = ioread32(priv
->regs
+ TSI721_RIO_PW_RX_CAPT(2));
259 pw_buf
[3] = ioread32(priv
->regs
+ TSI721_RIO_PW_RX_CAPT(3));
261 /* Queue PW message (if there is room in FIFO),
262 * otherwise discard it.
264 spin_lock(&priv
->pw_fifo_lock
);
265 if (kfifo_avail(&priv
->pw_fifo
) >= TSI721_RIO_PW_MSG_SIZE
)
266 kfifo_in(&priv
->pw_fifo
, pw_buf
,
267 TSI721_RIO_PW_MSG_SIZE
);
269 priv
->pw_discard_count
++;
270 spin_unlock(&priv
->pw_fifo_lock
);
273 /* Clear pending PW interrupts */
274 iowrite32(TSI721_RIO_PW_RX_STAT_PW_DISC
| TSI721_RIO_PW_RX_STAT_PW_VAL
,
275 priv
->regs
+ TSI721_RIO_PW_RX_STAT
);
277 schedule_work(&priv
->pw_work
);
282 static void tsi721_pw_dpc(struct work_struct
*work
)
284 struct tsi721_device
*priv
= container_of(work
, struct tsi721_device
,
286 u32 msg_buffer
[RIO_PW_MSG_SIZE
/sizeof(u32
)]; /* Use full size PW message
287 buffer for RIO layer */
290 * Process port-write messages
292 while (kfifo_out_spinlocked(&priv
->pw_fifo
, (unsigned char *)msg_buffer
,
293 TSI721_RIO_PW_MSG_SIZE
, &priv
->pw_fifo_lock
)) {
294 /* Process one message */
298 pr_debug("%s : Port-Write Message:", __func__
);
299 for (i
= 0; i
< RIO_PW_MSG_SIZE
/sizeof(u32
); ) {
300 pr_debug("0x%02x: %08x %08x %08x %08x", i
*4,
301 msg_buffer
[i
], msg_buffer
[i
+ 1],
302 msg_buffer
[i
+ 2], msg_buffer
[i
+ 3]);
308 /* Pass the port-write message to RIO core for processing */
309 rio_inb_pwrite_handler((union rio_pw_msg
*)msg_buffer
);
314 * tsi721_pw_enable - enable/disable port-write interface init
315 * @mport: Master port implementing the port write unit
316 * @enable: 1=enable; 0=disable port-write message handling
318 static int tsi721_pw_enable(struct rio_mport
*mport
, int enable
)
320 struct tsi721_device
*priv
= mport
->priv
;
323 rval
= ioread32(priv
->regs
+ TSI721_RIO_EM_INT_ENABLE
);
326 rval
|= TSI721_RIO_EM_INT_ENABLE_PW_RX
;
328 rval
&= ~TSI721_RIO_EM_INT_ENABLE_PW_RX
;
330 /* Clear pending PW interrupts */
331 iowrite32(TSI721_RIO_PW_RX_STAT_PW_DISC
| TSI721_RIO_PW_RX_STAT_PW_VAL
,
332 priv
->regs
+ TSI721_RIO_PW_RX_STAT
);
333 /* Update enable bits */
334 iowrite32(rval
, priv
->regs
+ TSI721_RIO_EM_INT_ENABLE
);
340 * tsi721_dsend - Send a RapidIO doorbell
341 * @mport: RapidIO master port info
342 * @index: ID of RapidIO interface
343 * @destid: Destination ID of target device
344 * @data: 16-bit info field of RapidIO doorbell
346 * Sends a RapidIO doorbell message. Always returns %0.
348 static int tsi721_dsend(struct rio_mport
*mport
, int index
,
349 u16 destid
, u16 data
)
351 struct tsi721_device
*priv
= mport
->priv
;
354 offset
= (((mport
->sys_size
) ? RIO_TT_CODE_16
: RIO_TT_CODE_8
) << 18) |
357 dev_dbg(&priv
->pdev
->dev
,
358 "Send Doorbell 0x%04x to destID 0x%x\n", data
, destid
);
359 iowrite16be(data
, priv
->odb_base
+ offset
);
365 * tsi721_dbell_handler - Tsi721 doorbell interrupt handler
366 * @mport: RapidIO master port structure
368 * Handles inbound doorbell interrupts. Copies doorbell entry from an internal
369 * buffer into DB message FIFO and schedules deferred routine to process
373 tsi721_dbell_handler(struct rio_mport
*mport
)
375 struct tsi721_device
*priv
= mport
->priv
;
378 /* Disable IDB interrupts */
379 regval
= ioread32(priv
->regs
+ TSI721_SR_CHINTE(IDB_QUEUE
));
380 regval
&= ~TSI721_SR_CHINT_IDBQRCV
;
382 priv
->regs
+ TSI721_SR_CHINTE(IDB_QUEUE
));
384 schedule_work(&priv
->idb_work
);
389 static void tsi721_db_dpc(struct work_struct
*work
)
391 struct tsi721_device
*priv
= container_of(work
, struct tsi721_device
,
393 struct rio_mport
*mport
;
394 struct rio_dbell
*dbell
;
405 * Process queued inbound doorbells
409 wr_ptr
= ioread32(priv
->regs
+ TSI721_IDQ_WP(IDB_QUEUE
)) % IDB_QSIZE
;
410 rd_ptr
= ioread32(priv
->regs
+ TSI721_IDQ_RP(IDB_QUEUE
)) % IDB_QSIZE
;
412 while (wr_ptr
!= rd_ptr
) {
413 idb_entry
= (u64
*)(priv
->idb_base
+
414 (TSI721_IDB_ENTRY_SIZE
* rd_ptr
));
417 idb
.msg
= *idb_entry
;
420 /* Process one doorbell */
421 list_for_each_entry(dbell
, &mport
->dbells
, node
) {
422 if ((dbell
->res
->start
<= DBELL_INF(idb
.bytes
)) &&
423 (dbell
->res
->end
>= DBELL_INF(idb
.bytes
))) {
430 dbell
->dinb(mport
, dbell
->dev_id
, DBELL_SID(idb
.bytes
),
431 DBELL_TID(idb
.bytes
), DBELL_INF(idb
.bytes
));
433 dev_dbg(&priv
->pdev
->dev
,
434 "spurious inb doorbell, sid %2.2x tid %2.2x"
435 " info %4.4x\n", DBELL_SID(idb
.bytes
),
436 DBELL_TID(idb
.bytes
), DBELL_INF(idb
.bytes
));
439 wr_ptr
= ioread32(priv
->regs
+
440 TSI721_IDQ_WP(IDB_QUEUE
)) % IDB_QSIZE
;
443 iowrite32(rd_ptr
& (IDB_QSIZE
- 1),
444 priv
->regs
+ TSI721_IDQ_RP(IDB_QUEUE
));
446 /* Re-enable IDB interrupts */
447 regval
= ioread32(priv
->regs
+ TSI721_SR_CHINTE(IDB_QUEUE
));
448 regval
|= TSI721_SR_CHINT_IDBQRCV
;
450 priv
->regs
+ TSI721_SR_CHINTE(IDB_QUEUE
));
452 wr_ptr
= ioread32(priv
->regs
+ TSI721_IDQ_WP(IDB_QUEUE
)) % IDB_QSIZE
;
453 if (wr_ptr
!= rd_ptr
)
454 schedule_work(&priv
->idb_work
);
458 * tsi721_irqhandler - Tsi721 interrupt handler
459 * @irq: Linux interrupt number
460 * @ptr: Pointer to interrupt-specific data (mport structure)
462 * Handles Tsi721 interrupts signaled using MSI and INTA. Checks reported
463 * interrupt events and calls an event-specific handler(s).
465 static irqreturn_t
tsi721_irqhandler(int irq
, void *ptr
)
467 struct rio_mport
*mport
= (struct rio_mport
*)ptr
;
468 struct tsi721_device
*priv
= mport
->priv
;
474 /* For MSI mode disable all device-level interrupts */
475 if (priv
->flags
& TSI721_USING_MSI
)
476 iowrite32(0, priv
->regs
+ TSI721_DEV_INTE
);
478 dev_int
= ioread32(priv
->regs
+ TSI721_DEV_INT
);
482 dev_ch_int
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INT
);
484 if (dev_int
& TSI721_DEV_INT_SR2PC_CH
) {
485 /* Service SR2PC Channel interrupts */
486 if (dev_ch_int
& TSI721_INT_SR2PC_CHAN(IDB_QUEUE
)) {
487 /* Service Inbound Doorbell interrupt */
488 intval
= ioread32(priv
->regs
+
489 TSI721_SR_CHINT(IDB_QUEUE
));
490 if (intval
& TSI721_SR_CHINT_IDBQRCV
)
491 tsi721_dbell_handler(mport
);
493 dev_info(&priv
->pdev
->dev
,
494 "Unsupported SR_CH_INT %x\n", intval
);
496 /* Clear interrupts */
498 priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
499 ioread32(priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
503 if (dev_int
& TSI721_DEV_INT_SMSG_CH
) {
507 * Service channel interrupts from Messaging Engine
510 if (dev_ch_int
& TSI721_INT_IMSG_CHAN_M
) { /* Inbound Msg */
511 /* Disable signaled OB MSG Channel interrupts */
512 ch_inte
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
513 ch_inte
&= ~(dev_ch_int
& TSI721_INT_IMSG_CHAN_M
);
514 iowrite32(ch_inte
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
517 * Process Inbound Message interrupt for each MBOX
519 for (ch
= 4; ch
< RIO_MAX_MBOX
+ 4; ch
++) {
520 if (!(dev_ch_int
& TSI721_INT_IMSG_CHAN(ch
)))
522 tsi721_imsg_handler(priv
, ch
);
526 if (dev_ch_int
& TSI721_INT_OMSG_CHAN_M
) { /* Outbound Msg */
527 /* Disable signaled OB MSG Channel interrupts */
528 ch_inte
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
529 ch_inte
&= ~(dev_ch_int
& TSI721_INT_OMSG_CHAN_M
);
530 iowrite32(ch_inte
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
533 * Process Outbound Message interrupts for each MBOX
536 for (ch
= 0; ch
< RIO_MAX_MBOX
; ch
++) {
537 if (!(dev_ch_int
& TSI721_INT_OMSG_CHAN(ch
)))
539 tsi721_omsg_handler(priv
, ch
);
544 if (dev_int
& TSI721_DEV_INT_SRIO
) {
545 /* Service SRIO MAC interrupts */
546 intval
= ioread32(priv
->regs
+ TSI721_RIO_EM_INT_STAT
);
547 if (intval
& TSI721_RIO_EM_INT_STAT_PW_RX
)
548 tsi721_pw_handler(mport
);
551 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
552 if (dev_int
& TSI721_DEV_INT_BDMA_CH
) {
555 if (dev_ch_int
& TSI721_INT_BDMA_CHAN_M
) {
556 dev_dbg(&priv
->pdev
->dev
,
557 "IRQ from DMA channel 0x%08x\n", dev_ch_int
);
559 for (ch
= 0; ch
< TSI721_DMA_MAXCH
; ch
++) {
560 if (!(dev_ch_int
& TSI721_INT_BDMA_CHAN(ch
)))
562 tsi721_bdma_handler(&priv
->bdma
[ch
]);
568 /* For MSI mode re-enable device-level interrupts */
569 if (priv
->flags
& TSI721_USING_MSI
) {
570 dev_int
= TSI721_DEV_INT_SR2PC_CH
| TSI721_DEV_INT_SRIO
|
571 TSI721_DEV_INT_SMSG_CH
| TSI721_DEV_INT_BDMA_CH
;
572 iowrite32(dev_int
, priv
->regs
+ TSI721_DEV_INTE
);
578 static void tsi721_interrupts_init(struct tsi721_device
*priv
)
582 /* Enable IDB interrupts */
583 iowrite32(TSI721_SR_CHINT_ALL
,
584 priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
585 iowrite32(TSI721_SR_CHINT_IDBQRCV
,
586 priv
->regs
+ TSI721_SR_CHINTE(IDB_QUEUE
));
588 /* Enable SRIO MAC interrupts */
589 iowrite32(TSI721_RIO_EM_DEV_INT_EN_INT
,
590 priv
->regs
+ TSI721_RIO_EM_DEV_INT_EN
);
592 /* Enable interrupts from channels in use */
593 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
594 intr
= TSI721_INT_SR2PC_CHAN(IDB_QUEUE
) |
595 (TSI721_INT_BDMA_CHAN_M
&
596 ~TSI721_INT_BDMA_CHAN(TSI721_DMACH_MAINT
));
598 intr
= TSI721_INT_SR2PC_CHAN(IDB_QUEUE
);
600 iowrite32(intr
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
602 if (priv
->flags
& TSI721_USING_MSIX
)
603 intr
= TSI721_DEV_INT_SRIO
;
605 intr
= TSI721_DEV_INT_SR2PC_CH
| TSI721_DEV_INT_SRIO
|
606 TSI721_DEV_INT_SMSG_CH
| TSI721_DEV_INT_BDMA_CH
;
608 iowrite32(intr
, priv
->regs
+ TSI721_DEV_INTE
);
609 ioread32(priv
->regs
+ TSI721_DEV_INTE
);
612 #ifdef CONFIG_PCI_MSI
614 * tsi721_omsg_msix - MSI-X interrupt handler for outbound messaging
615 * @irq: Linux interrupt number
616 * @ptr: Pointer to interrupt-specific data (mport structure)
618 * Handles outbound messaging interrupts signaled using MSI-X.
620 static irqreturn_t
tsi721_omsg_msix(int irq
, void *ptr
)
622 struct tsi721_device
*priv
= ((struct rio_mport
*)ptr
)->priv
;
625 mbox
= (irq
- priv
->msix
[TSI721_VECT_OMB0_DONE
].vector
) % RIO_MAX_MBOX
;
626 tsi721_omsg_handler(priv
, mbox
);
631 * tsi721_imsg_msix - MSI-X interrupt handler for inbound messaging
632 * @irq: Linux interrupt number
633 * @ptr: Pointer to interrupt-specific data (mport structure)
635 * Handles inbound messaging interrupts signaled using MSI-X.
637 static irqreturn_t
tsi721_imsg_msix(int irq
, void *ptr
)
639 struct tsi721_device
*priv
= ((struct rio_mport
*)ptr
)->priv
;
642 mbox
= (irq
- priv
->msix
[TSI721_VECT_IMB0_RCV
].vector
) % RIO_MAX_MBOX
;
643 tsi721_imsg_handler(priv
, mbox
+ 4);
648 * tsi721_srio_msix - Tsi721 MSI-X SRIO MAC interrupt handler
649 * @irq: Linux interrupt number
650 * @ptr: Pointer to interrupt-specific data (mport structure)
652 * Handles Tsi721 interrupts from SRIO MAC.
654 static irqreturn_t
tsi721_srio_msix(int irq
, void *ptr
)
656 struct tsi721_device
*priv
= ((struct rio_mport
*)ptr
)->priv
;
659 /* Service SRIO MAC interrupts */
660 srio_int
= ioread32(priv
->regs
+ TSI721_RIO_EM_INT_STAT
);
661 if (srio_int
& TSI721_RIO_EM_INT_STAT_PW_RX
)
662 tsi721_pw_handler((struct rio_mport
*)ptr
);
668 * tsi721_sr2pc_ch_msix - Tsi721 MSI-X SR2PC Channel interrupt handler
669 * @irq: Linux interrupt number
670 * @ptr: Pointer to interrupt-specific data (mport structure)
672 * Handles Tsi721 interrupts from SR2PC Channel.
673 * NOTE: At this moment services only one SR2PC channel associated with inbound
676 static irqreturn_t
tsi721_sr2pc_ch_msix(int irq
, void *ptr
)
678 struct tsi721_device
*priv
= ((struct rio_mport
*)ptr
)->priv
;
681 /* Service Inbound DB interrupt from SR2PC channel */
682 sr_ch_int
= ioread32(priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
683 if (sr_ch_int
& TSI721_SR_CHINT_IDBQRCV
)
684 tsi721_dbell_handler((struct rio_mport
*)ptr
);
686 /* Clear interrupts */
687 iowrite32(sr_ch_int
, priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
688 /* Read back to ensure that interrupt was cleared */
689 sr_ch_int
= ioread32(priv
->regs
+ TSI721_SR_CHINT(IDB_QUEUE
));
695 * tsi721_request_msix - register interrupt service for MSI-X mode.
696 * @mport: RapidIO master port structure
698 * Registers MSI-X interrupt service routines for interrupts that are active
699 * immediately after mport initialization. Messaging interrupt service routines
700 * should be registered during corresponding open requests.
702 static int tsi721_request_msix(struct rio_mport
*mport
)
704 struct tsi721_device
*priv
= mport
->priv
;
707 err
= request_irq(priv
->msix
[TSI721_VECT_IDB
].vector
,
708 tsi721_sr2pc_ch_msix
, 0,
709 priv
->msix
[TSI721_VECT_IDB
].irq_name
, (void *)mport
);
713 err
= request_irq(priv
->msix
[TSI721_VECT_PWRX
].vector
,
715 priv
->msix
[TSI721_VECT_PWRX
].irq_name
, (void *)mport
);
718 priv
->msix
[TSI721_VECT_IDB
].vector
,
725 * tsi721_enable_msix - Attempts to enable MSI-X support for Tsi721.
726 * @priv: pointer to tsi721 private data
728 * Configures MSI-X support for Tsi721. Supports only an exact number
729 * of requested vectors.
731 static int tsi721_enable_msix(struct tsi721_device
*priv
)
733 struct msix_entry entries
[TSI721_VECT_MAX
];
737 entries
[TSI721_VECT_IDB
].entry
= TSI721_MSIX_SR2PC_IDBQ_RCV(IDB_QUEUE
);
738 entries
[TSI721_VECT_PWRX
].entry
= TSI721_MSIX_SRIO_MAC_INT
;
741 * Initialize MSI-X entries for Messaging Engine:
742 * this driver supports four RIO mailboxes (inbound and outbound)
743 * NOTE: Inbound message MBOX 0...4 use IB channels 4...7. Therefore
744 * offset +4 is added to IB MBOX number.
746 for (i
= 0; i
< RIO_MAX_MBOX
; i
++) {
747 entries
[TSI721_VECT_IMB0_RCV
+ i
].entry
=
748 TSI721_MSIX_IMSG_DQ_RCV(i
+ 4);
749 entries
[TSI721_VECT_IMB0_INT
+ i
].entry
=
750 TSI721_MSIX_IMSG_INT(i
+ 4);
751 entries
[TSI721_VECT_OMB0_DONE
+ i
].entry
=
752 TSI721_MSIX_OMSG_DONE(i
);
753 entries
[TSI721_VECT_OMB0_INT
+ i
].entry
=
754 TSI721_MSIX_OMSG_INT(i
);
757 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
759 * Initialize MSI-X entries for Block DMA Engine:
760 * this driver supports XXX DMA channels
761 * (one is reserved for SRIO maintenance transactions)
763 for (i
= 0; i
< TSI721_DMA_CHNUM
; i
++) {
764 entries
[TSI721_VECT_DMA0_DONE
+ i
].entry
=
765 TSI721_MSIX_DMACH_DONE(i
);
766 entries
[TSI721_VECT_DMA0_INT
+ i
].entry
=
767 TSI721_MSIX_DMACH_INT(i
);
769 #endif /* CONFIG_RAPIDIO_DMA_ENGINE */
771 err
= pci_enable_msix_exact(priv
->pdev
, entries
, ARRAY_SIZE(entries
));
773 dev_err(&priv
->pdev
->dev
,
774 "Failed to enable MSI-X (err=%d)\n", err
);
779 * Copy MSI-X vector information into tsi721 private structure
781 priv
->msix
[TSI721_VECT_IDB
].vector
= entries
[TSI721_VECT_IDB
].vector
;
782 snprintf(priv
->msix
[TSI721_VECT_IDB
].irq_name
, IRQ_DEVICE_NAME_MAX
,
783 DRV_NAME
"-idb@pci:%s", pci_name(priv
->pdev
));
784 priv
->msix
[TSI721_VECT_PWRX
].vector
= entries
[TSI721_VECT_PWRX
].vector
;
785 snprintf(priv
->msix
[TSI721_VECT_PWRX
].irq_name
, IRQ_DEVICE_NAME_MAX
,
786 DRV_NAME
"-pwrx@pci:%s", pci_name(priv
->pdev
));
788 for (i
= 0; i
< RIO_MAX_MBOX
; i
++) {
789 priv
->msix
[TSI721_VECT_IMB0_RCV
+ i
].vector
=
790 entries
[TSI721_VECT_IMB0_RCV
+ i
].vector
;
791 snprintf(priv
->msix
[TSI721_VECT_IMB0_RCV
+ i
].irq_name
,
792 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-imbr%d@pci:%s",
793 i
, pci_name(priv
->pdev
));
795 priv
->msix
[TSI721_VECT_IMB0_INT
+ i
].vector
=
796 entries
[TSI721_VECT_IMB0_INT
+ i
].vector
;
797 snprintf(priv
->msix
[TSI721_VECT_IMB0_INT
+ i
].irq_name
,
798 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-imbi%d@pci:%s",
799 i
, pci_name(priv
->pdev
));
801 priv
->msix
[TSI721_VECT_OMB0_DONE
+ i
].vector
=
802 entries
[TSI721_VECT_OMB0_DONE
+ i
].vector
;
803 snprintf(priv
->msix
[TSI721_VECT_OMB0_DONE
+ i
].irq_name
,
804 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-ombd%d@pci:%s",
805 i
, pci_name(priv
->pdev
));
807 priv
->msix
[TSI721_VECT_OMB0_INT
+ i
].vector
=
808 entries
[TSI721_VECT_OMB0_INT
+ i
].vector
;
809 snprintf(priv
->msix
[TSI721_VECT_OMB0_INT
+ i
].irq_name
,
810 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-ombi%d@pci:%s",
811 i
, pci_name(priv
->pdev
));
814 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
815 for (i
= 0; i
< TSI721_DMA_CHNUM
; i
++) {
816 priv
->msix
[TSI721_VECT_DMA0_DONE
+ i
].vector
=
817 entries
[TSI721_VECT_DMA0_DONE
+ i
].vector
;
818 snprintf(priv
->msix
[TSI721_VECT_DMA0_DONE
+ i
].irq_name
,
819 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-dmad%d@pci:%s",
820 i
, pci_name(priv
->pdev
));
822 priv
->msix
[TSI721_VECT_DMA0_INT
+ i
].vector
=
823 entries
[TSI721_VECT_DMA0_INT
+ i
].vector
;
824 snprintf(priv
->msix
[TSI721_VECT_DMA0_INT
+ i
].irq_name
,
825 IRQ_DEVICE_NAME_MAX
, DRV_NAME
"-dmai%d@pci:%s",
826 i
, pci_name(priv
->pdev
));
828 #endif /* CONFIG_RAPIDIO_DMA_ENGINE */
832 #endif /* CONFIG_PCI_MSI */
834 static int tsi721_request_irq(struct rio_mport
*mport
)
836 struct tsi721_device
*priv
= mport
->priv
;
839 #ifdef CONFIG_PCI_MSI
840 if (priv
->flags
& TSI721_USING_MSIX
)
841 err
= tsi721_request_msix(mport
);
844 err
= request_irq(priv
->pdev
->irq
, tsi721_irqhandler
,
845 (priv
->flags
& TSI721_USING_MSI
) ? 0 : IRQF_SHARED
,
846 DRV_NAME
, (void *)mport
);
849 dev_err(&priv
->pdev
->dev
,
850 "Unable to allocate interrupt, Error: %d\n", err
);
856 * tsi721_init_pc2sr_mapping - initializes outbound (PCIe->SRIO)
857 * translation regions.
858 * @priv: pointer to tsi721 private data
860 * Disables SREP translation regions.
862 static void tsi721_init_pc2sr_mapping(struct tsi721_device
*priv
)
866 /* Disable all PC2SR translation windows */
867 for (i
= 0; i
< TSI721_OBWIN_NUM
; i
++)
868 iowrite32(0, priv
->regs
+ TSI721_OBWINLB(i
));
872 * tsi721_rio_map_inb_mem -- Mapping inbound memory region.
873 * @mport: RapidIO master port
874 * @lstart: Local memory space start address.
875 * @rstart: RapidIO space start address.
876 * @size: The mapping region size.
877 * @flags: Flags for mapping. 0 for using default flags.
879 * Return: 0 -- Success.
881 * This function will create the inbound mapping
882 * from rstart to lstart.
884 static int tsi721_rio_map_inb_mem(struct rio_mport
*mport
, dma_addr_t lstart
,
885 u64 rstart
, u32 size
, u32 flags
)
887 struct tsi721_device
*priv
= mport
->priv
;
891 if (!is_power_of_2(size
) || size
< 0x1000 ||
892 ((u64
)lstart
& (size
- 1)) || (rstart
& (size
- 1)))
895 /* Search for free inbound translation window */
896 for (i
= 0; i
< TSI721_IBWIN_NUM
; i
++) {
897 regval
= ioread32(priv
->regs
+ TSI721_IBWIN_LB(i
));
898 if (!(regval
& TSI721_IBWIN_LB_WEN
))
902 if (i
>= TSI721_IBWIN_NUM
) {
903 dev_err(&priv
->pdev
->dev
,
904 "Unable to find free inbound window\n");
908 iowrite32(TSI721_IBWIN_SIZE(size
) << 8,
909 priv
->regs
+ TSI721_IBWIN_SZ(i
));
911 iowrite32(((u64
)lstart
>> 32), priv
->regs
+ TSI721_IBWIN_TUA(i
));
912 iowrite32(((u64
)lstart
& TSI721_IBWIN_TLA_ADD
),
913 priv
->regs
+ TSI721_IBWIN_TLA(i
));
915 iowrite32(rstart
>> 32, priv
->regs
+ TSI721_IBWIN_UB(i
));
916 iowrite32((rstart
& TSI721_IBWIN_LB_BA
) | TSI721_IBWIN_LB_WEN
,
917 priv
->regs
+ TSI721_IBWIN_LB(i
));
918 dev_dbg(&priv
->pdev
->dev
,
919 "Configured IBWIN%d mapping (RIO_0x%llx -> PCIe_0x%llx)\n",
920 i
, rstart
, (unsigned long long)lstart
);
926 * fsl_rio_unmap_inb_mem -- Unmapping inbound memory region.
927 * @mport: RapidIO master port
928 * @lstart: Local memory space start address.
930 static void tsi721_rio_unmap_inb_mem(struct rio_mport
*mport
,
933 struct tsi721_device
*priv
= mport
->priv
;
938 /* Search for matching active inbound translation window */
939 for (i
= 0; i
< TSI721_IBWIN_NUM
; i
++) {
940 regval
= ioread32(priv
->regs
+ TSI721_IBWIN_LB(i
));
941 if (regval
& TSI721_IBWIN_LB_WEN
) {
942 regval
= ioread32(priv
->regs
+ TSI721_IBWIN_TUA(i
));
943 addr
= (u64
)regval
<< 32;
944 regval
= ioread32(priv
->regs
+ TSI721_IBWIN_TLA(i
));
945 addr
|= regval
& TSI721_IBWIN_TLA_ADD
;
947 if (addr
== (u64
)lstart
) {
948 iowrite32(0, priv
->regs
+ TSI721_IBWIN_LB(i
));
956 * tsi721_init_sr2pc_mapping - initializes inbound (SRIO->PCIe)
957 * translation regions.
958 * @priv: pointer to tsi721 private data
960 * Disables inbound windows.
962 static void tsi721_init_sr2pc_mapping(struct tsi721_device
*priv
)
966 /* Disable all SR2PC inbound windows */
967 for (i
= 0; i
< TSI721_IBWIN_NUM
; i
++)
968 iowrite32(0, priv
->regs
+ TSI721_IBWIN_LB(i
));
972 * tsi721_port_write_init - Inbound port write interface init
973 * @priv: pointer to tsi721 private data
975 * Initializes inbound port write handler.
976 * Returns %0 on success or %-ENOMEM on failure.
978 static int tsi721_port_write_init(struct tsi721_device
*priv
)
980 priv
->pw_discard_count
= 0;
981 INIT_WORK(&priv
->pw_work
, tsi721_pw_dpc
);
982 spin_lock_init(&priv
->pw_fifo_lock
);
983 if (kfifo_alloc(&priv
->pw_fifo
,
984 TSI721_RIO_PW_MSG_SIZE
* 32, GFP_KERNEL
)) {
985 dev_err(&priv
->pdev
->dev
, "PW FIFO allocation failed\n");
989 /* Use reliable port-write capture mode */
990 iowrite32(TSI721_RIO_PW_CTL_PWC_REL
, priv
->regs
+ TSI721_RIO_PW_CTL
);
994 static int tsi721_doorbell_init(struct tsi721_device
*priv
)
996 /* Outbound Doorbells do not require any setup.
997 * Tsi721 uses dedicated PCI BAR1 to generate doorbells.
998 * That BAR1 was mapped during the probe routine.
1001 /* Initialize Inbound Doorbell processing DPC and queue */
1002 priv
->db_discard_count
= 0;
1003 INIT_WORK(&priv
->idb_work
, tsi721_db_dpc
);
1005 /* Allocate buffer for inbound doorbells queue */
1006 priv
->idb_base
= dma_zalloc_coherent(&priv
->pdev
->dev
,
1007 IDB_QSIZE
* TSI721_IDB_ENTRY_SIZE
,
1008 &priv
->idb_dma
, GFP_KERNEL
);
1009 if (!priv
->idb_base
)
1012 dev_dbg(&priv
->pdev
->dev
, "Allocated IDB buffer @ %p (phys = %llx)\n",
1013 priv
->idb_base
, (unsigned long long)priv
->idb_dma
);
1015 iowrite32(TSI721_IDQ_SIZE_VAL(IDB_QSIZE
),
1016 priv
->regs
+ TSI721_IDQ_SIZE(IDB_QUEUE
));
1017 iowrite32(((u64
)priv
->idb_dma
>> 32),
1018 priv
->regs
+ TSI721_IDQ_BASEU(IDB_QUEUE
));
1019 iowrite32(((u64
)priv
->idb_dma
& TSI721_IDQ_BASEL_ADDR
),
1020 priv
->regs
+ TSI721_IDQ_BASEL(IDB_QUEUE
));
1021 /* Enable accepting all inbound doorbells */
1022 iowrite32(0, priv
->regs
+ TSI721_IDQ_MASK(IDB_QUEUE
));
1024 iowrite32(TSI721_IDQ_INIT
, priv
->regs
+ TSI721_IDQ_CTL(IDB_QUEUE
));
1026 iowrite32(0, priv
->regs
+ TSI721_IDQ_RP(IDB_QUEUE
));
1031 static void tsi721_doorbell_free(struct tsi721_device
*priv
)
1033 if (priv
->idb_base
== NULL
)
1036 /* Free buffer allocated for inbound doorbell queue */
1037 dma_free_coherent(&priv
->pdev
->dev
, IDB_QSIZE
* TSI721_IDB_ENTRY_SIZE
,
1038 priv
->idb_base
, priv
->idb_dma
);
1039 priv
->idb_base
= NULL
;
1043 * tsi721_bdma_maint_init - Initialize maintenance request BDMA channel.
1044 * @priv: pointer to tsi721 private data
1046 * Initialize BDMA channel allocated for RapidIO maintenance read/write
1047 * request generation
1048 * Returns %0 on success or %-ENOMEM on failure.
1050 static int tsi721_bdma_maint_init(struct tsi721_device
*priv
)
1052 struct tsi721_dma_desc
*bd_ptr
;
1054 dma_addr_t bd_phys
, sts_phys
;
1059 dev_dbg(&priv
->pdev
->dev
,
1060 "Init Block DMA Engine for Maintenance requests, CH%d\n",
1061 TSI721_DMACH_MAINT
);
1064 * Initialize DMA channel for maintenance requests
1067 priv
->mdma
.ch_id
= TSI721_DMACH_MAINT
;
1068 regs
= priv
->regs
+ TSI721_DMAC_BASE(TSI721_DMACH_MAINT
);
1070 /* Allocate space for DMA descriptors */
1071 bd_ptr
= dma_zalloc_coherent(&priv
->pdev
->dev
,
1072 bd_num
* sizeof(struct tsi721_dma_desc
),
1073 &bd_phys
, GFP_KERNEL
);
1077 priv
->mdma
.bd_num
= bd_num
;
1078 priv
->mdma
.bd_phys
= bd_phys
;
1079 priv
->mdma
.bd_base
= bd_ptr
;
1081 dev_dbg(&priv
->pdev
->dev
, "DMA descriptors @ %p (phys = %llx)\n",
1082 bd_ptr
, (unsigned long long)bd_phys
);
1084 /* Allocate space for descriptor status FIFO */
1085 sts_size
= (bd_num
>= TSI721_DMA_MINSTSSZ
) ?
1086 bd_num
: TSI721_DMA_MINSTSSZ
;
1087 sts_size
= roundup_pow_of_two(sts_size
);
1088 sts_ptr
= dma_zalloc_coherent(&priv
->pdev
->dev
,
1089 sts_size
* sizeof(struct tsi721_dma_sts
),
1090 &sts_phys
, GFP_KERNEL
);
1092 /* Free space allocated for DMA descriptors */
1093 dma_free_coherent(&priv
->pdev
->dev
,
1094 bd_num
* sizeof(struct tsi721_dma_desc
),
1096 priv
->mdma
.bd_base
= NULL
;
1100 priv
->mdma
.sts_phys
= sts_phys
;
1101 priv
->mdma
.sts_base
= sts_ptr
;
1102 priv
->mdma
.sts_size
= sts_size
;
1104 dev_dbg(&priv
->pdev
->dev
,
1105 "desc status FIFO @ %p (phys = %llx) size=0x%x\n",
1106 sts_ptr
, (unsigned long long)sts_phys
, sts_size
);
1108 /* Initialize DMA descriptors ring */
1109 bd_ptr
[bd_num
- 1].type_id
= cpu_to_le32(DTYPE3
<< 29);
1110 bd_ptr
[bd_num
- 1].next_lo
= cpu_to_le32((u64
)bd_phys
&
1111 TSI721_DMAC_DPTRL_MASK
);
1112 bd_ptr
[bd_num
- 1].next_hi
= cpu_to_le32((u64
)bd_phys
>> 32);
1114 /* Setup DMA descriptor pointers */
1115 iowrite32(((u64
)bd_phys
>> 32), regs
+ TSI721_DMAC_DPTRH
);
1116 iowrite32(((u64
)bd_phys
& TSI721_DMAC_DPTRL_MASK
),
1117 regs
+ TSI721_DMAC_DPTRL
);
1119 /* Setup descriptor status FIFO */
1120 iowrite32(((u64
)sts_phys
>> 32), regs
+ TSI721_DMAC_DSBH
);
1121 iowrite32(((u64
)sts_phys
& TSI721_DMAC_DSBL_MASK
),
1122 regs
+ TSI721_DMAC_DSBL
);
1123 iowrite32(TSI721_DMAC_DSSZ_SIZE(sts_size
),
1124 regs
+ TSI721_DMAC_DSSZ
);
1126 /* Clear interrupt bits */
1127 iowrite32(TSI721_DMAC_INT_ALL
, regs
+ TSI721_DMAC_INT
);
1129 ioread32(regs
+ TSI721_DMAC_INT
);
1131 /* Toggle DMA channel initialization */
1132 iowrite32(TSI721_DMAC_CTL_INIT
, regs
+ TSI721_DMAC_CTL
);
1133 ioread32(regs
+ TSI721_DMAC_CTL
);
1139 static int tsi721_bdma_maint_free(struct tsi721_device
*priv
)
1142 struct tsi721_bdma_maint
*mdma
= &priv
->mdma
;
1143 void __iomem
*regs
= priv
->regs
+ TSI721_DMAC_BASE(mdma
->ch_id
);
1145 if (mdma
->bd_base
== NULL
)
1148 /* Check if DMA channel still running */
1149 ch_stat
= ioread32(regs
+ TSI721_DMAC_STS
);
1150 if (ch_stat
& TSI721_DMAC_STS_RUN
)
1153 /* Put DMA channel into init state */
1154 iowrite32(TSI721_DMAC_CTL_INIT
, regs
+ TSI721_DMAC_CTL
);
1156 /* Free space allocated for DMA descriptors */
1157 dma_free_coherent(&priv
->pdev
->dev
,
1158 mdma
->bd_num
* sizeof(struct tsi721_dma_desc
),
1159 mdma
->bd_base
, mdma
->bd_phys
);
1160 mdma
->bd_base
= NULL
;
1162 /* Free space allocated for status FIFO */
1163 dma_free_coherent(&priv
->pdev
->dev
,
1164 mdma
->sts_size
* sizeof(struct tsi721_dma_sts
),
1165 mdma
->sts_base
, mdma
->sts_phys
);
1166 mdma
->sts_base
= NULL
;
1170 /* Enable Inbound Messaging Interrupts */
1172 tsi721_imsg_interrupt_enable(struct tsi721_device
*priv
, int ch
,
1180 /* Clear pending Inbound Messaging interrupts */
1181 iowrite32(inte_mask
, priv
->regs
+ TSI721_IBDMAC_INT(ch
));
1183 /* Enable Inbound Messaging interrupts */
1184 rval
= ioread32(priv
->regs
+ TSI721_IBDMAC_INTE(ch
));
1185 iowrite32(rval
| inte_mask
, priv
->regs
+ TSI721_IBDMAC_INTE(ch
));
1187 if (priv
->flags
& TSI721_USING_MSIX
)
1188 return; /* Finished if we are in MSI-X mode */
1191 * For MSI and INTA interrupt signalling we need to enable next levels
1194 /* Enable Device Channel Interrupt */
1195 rval
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1196 iowrite32(rval
| TSI721_INT_IMSG_CHAN(ch
),
1197 priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1200 /* Disable Inbound Messaging Interrupts */
1202 tsi721_imsg_interrupt_disable(struct tsi721_device
*priv
, int ch
,
1210 /* Clear pending Inbound Messaging interrupts */
1211 iowrite32(inte_mask
, priv
->regs
+ TSI721_IBDMAC_INT(ch
));
1213 /* Disable Inbound Messaging interrupts */
1214 rval
= ioread32(priv
->regs
+ TSI721_IBDMAC_INTE(ch
));
1216 iowrite32(rval
, priv
->regs
+ TSI721_IBDMAC_INTE(ch
));
1218 if (priv
->flags
& TSI721_USING_MSIX
)
1219 return; /* Finished if we are in MSI-X mode */
1222 * For MSI and INTA interrupt signalling we need to disable next levels
1225 /* Disable Device Channel Interrupt */
1226 rval
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1227 rval
&= ~TSI721_INT_IMSG_CHAN(ch
);
1228 iowrite32(rval
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1231 /* Enable Outbound Messaging interrupts */
1233 tsi721_omsg_interrupt_enable(struct tsi721_device
*priv
, int ch
,
1241 /* Clear pending Outbound Messaging interrupts */
1242 iowrite32(inte_mask
, priv
->regs
+ TSI721_OBDMAC_INT(ch
));
1244 /* Enable Outbound Messaging channel interrupts */
1245 rval
= ioread32(priv
->regs
+ TSI721_OBDMAC_INTE(ch
));
1246 iowrite32(rval
| inte_mask
, priv
->regs
+ TSI721_OBDMAC_INTE(ch
));
1248 if (priv
->flags
& TSI721_USING_MSIX
)
1249 return; /* Finished if we are in MSI-X mode */
1252 * For MSI and INTA interrupt signalling we need to enable next levels
1255 /* Enable Device Channel Interrupt */
1256 rval
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1257 iowrite32(rval
| TSI721_INT_OMSG_CHAN(ch
),
1258 priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1261 /* Disable Outbound Messaging interrupts */
1263 tsi721_omsg_interrupt_disable(struct tsi721_device
*priv
, int ch
,
1271 /* Clear pending Outbound Messaging interrupts */
1272 iowrite32(inte_mask
, priv
->regs
+ TSI721_OBDMAC_INT(ch
));
1274 /* Disable Outbound Messaging interrupts */
1275 rval
= ioread32(priv
->regs
+ TSI721_OBDMAC_INTE(ch
));
1277 iowrite32(rval
, priv
->regs
+ TSI721_OBDMAC_INTE(ch
));
1279 if (priv
->flags
& TSI721_USING_MSIX
)
1280 return; /* Finished if we are in MSI-X mode */
1283 * For MSI and INTA interrupt signalling we need to disable next levels
1286 /* Disable Device Channel Interrupt */
1287 rval
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1288 rval
&= ~TSI721_INT_OMSG_CHAN(ch
);
1289 iowrite32(rval
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1293 * tsi721_add_outb_message - Add message to the Tsi721 outbound message queue
1294 * @mport: Master port with outbound message queue
1295 * @rdev: Target of outbound message
1296 * @mbox: Outbound mailbox
1297 * @buffer: Message to add to outbound queue
1298 * @len: Length of message
1301 tsi721_add_outb_message(struct rio_mport
*mport
, struct rio_dev
*rdev
, int mbox
,
1302 void *buffer
, size_t len
)
1304 struct tsi721_device
*priv
= mport
->priv
;
1305 struct tsi721_omsg_desc
*desc
;
1308 if (!priv
->omsg_init
[mbox
] ||
1309 len
> TSI721_MSG_MAX_SIZE
|| len
< 8)
1312 tx_slot
= priv
->omsg_ring
[mbox
].tx_slot
;
1314 /* Copy copy message into transfer buffer */
1315 memcpy(priv
->omsg_ring
[mbox
].omq_base
[tx_slot
], buffer
, len
);
1320 /* Build descriptor associated with buffer */
1321 desc
= priv
->omsg_ring
[mbox
].omd_base
;
1322 desc
[tx_slot
].type_id
= cpu_to_le32((DTYPE4
<< 29) | rdev
->destid
);
1323 if (tx_slot
% 4 == 0)
1324 desc
[tx_slot
].type_id
|= cpu_to_le32(TSI721_OMD_IOF
);
1326 desc
[tx_slot
].msg_info
=
1327 cpu_to_le32((mport
->sys_size
<< 26) | (mbox
<< 22) |
1328 (0xe << 12) | (len
& 0xff8));
1329 desc
[tx_slot
].bufptr_lo
=
1330 cpu_to_le32((u64
)priv
->omsg_ring
[mbox
].omq_phys
[tx_slot
] &
1332 desc
[tx_slot
].bufptr_hi
=
1333 cpu_to_le32((u64
)priv
->omsg_ring
[mbox
].omq_phys
[tx_slot
] >> 32);
1335 priv
->omsg_ring
[mbox
].wr_count
++;
1337 /* Go to next descriptor */
1338 if (++priv
->omsg_ring
[mbox
].tx_slot
== priv
->omsg_ring
[mbox
].size
) {
1339 priv
->omsg_ring
[mbox
].tx_slot
= 0;
1340 /* Move through the ring link descriptor at the end */
1341 priv
->omsg_ring
[mbox
].wr_count
++;
1346 /* Set new write count value */
1347 iowrite32(priv
->omsg_ring
[mbox
].wr_count
,
1348 priv
->regs
+ TSI721_OBDMAC_DWRCNT(mbox
));
1349 ioread32(priv
->regs
+ TSI721_OBDMAC_DWRCNT(mbox
));
1355 * tsi721_omsg_handler - Outbound Message Interrupt Handler
1356 * @priv: pointer to tsi721 private data
1357 * @ch: number of OB MSG channel to service
1359 * Services channel interrupts from outbound messaging engine.
1361 static void tsi721_omsg_handler(struct tsi721_device
*priv
, int ch
)
1365 spin_lock(&priv
->omsg_ring
[ch
].lock
);
1367 omsg_int
= ioread32(priv
->regs
+ TSI721_OBDMAC_INT(ch
));
1369 if (omsg_int
& TSI721_OBDMAC_INT_ST_FULL
)
1370 dev_info(&priv
->pdev
->dev
,
1371 "OB MBOX%d: Status FIFO is full\n", ch
);
1373 if (omsg_int
& (TSI721_OBDMAC_INT_DONE
| TSI721_OBDMAC_INT_IOF_DONE
)) {
1375 u64
*sts_ptr
, last_ptr
= 0, prev_ptr
= 0;
1380 * Find last successfully processed descriptor
1383 /* Check and clear descriptor status FIFO entries */
1384 srd_ptr
= priv
->omsg_ring
[ch
].sts_rdptr
;
1385 sts_ptr
= priv
->omsg_ring
[ch
].sts_base
;
1387 while (sts_ptr
[j
]) {
1388 for (i
= 0; i
< 8 && sts_ptr
[j
]; i
++, j
++) {
1389 prev_ptr
= last_ptr
;
1390 last_ptr
= le64_to_cpu(sts_ptr
[j
]);
1395 srd_ptr
%= priv
->omsg_ring
[ch
].sts_size
;
1402 priv
->omsg_ring
[ch
].sts_rdptr
= srd_ptr
;
1403 iowrite32(srd_ptr
, priv
->regs
+ TSI721_OBDMAC_DSRP(ch
));
1405 if (!priv
->mport
->outb_msg
[ch
].mcback
)
1408 /* Inform upper layer about transfer completion */
1410 tx_slot
= (last_ptr
- (u64
)priv
->omsg_ring
[ch
].omd_phys
)/
1411 sizeof(struct tsi721_omsg_desc
);
1414 * Check if this is a Link Descriptor (LD).
1415 * If yes, ignore LD and use descriptor processed
1418 if (tx_slot
== priv
->omsg_ring
[ch
].size
) {
1420 tx_slot
= (prev_ptr
-
1421 (u64
)priv
->omsg_ring
[ch
].omd_phys
)/
1422 sizeof(struct tsi721_omsg_desc
);
1427 /* Move slot index to the next message to be sent */
1429 if (tx_slot
== priv
->omsg_ring
[ch
].size
)
1431 BUG_ON(tx_slot
>= priv
->omsg_ring
[ch
].size
);
1432 priv
->mport
->outb_msg
[ch
].mcback(priv
->mport
,
1433 priv
->omsg_ring
[ch
].dev_id
, ch
,
1439 if (omsg_int
& TSI721_OBDMAC_INT_ERROR
) {
1441 * Outbound message operation aborted due to error,
1442 * reinitialize OB MSG channel
1445 dev_dbg(&priv
->pdev
->dev
, "OB MSG ABORT ch_stat=%x\n",
1446 ioread32(priv
->regs
+ TSI721_OBDMAC_STS(ch
)));
1448 iowrite32(TSI721_OBDMAC_INT_ERROR
,
1449 priv
->regs
+ TSI721_OBDMAC_INT(ch
));
1450 iowrite32(TSI721_OBDMAC_CTL_INIT
,
1451 priv
->regs
+ TSI721_OBDMAC_CTL(ch
));
1452 ioread32(priv
->regs
+ TSI721_OBDMAC_CTL(ch
));
1454 /* Inform upper level to clear all pending tx slots */
1455 if (priv
->mport
->outb_msg
[ch
].mcback
)
1456 priv
->mport
->outb_msg
[ch
].mcback(priv
->mport
,
1457 priv
->omsg_ring
[ch
].dev_id
, ch
,
1458 priv
->omsg_ring
[ch
].tx_slot
);
1459 /* Synch tx_slot tracking */
1460 iowrite32(priv
->omsg_ring
[ch
].tx_slot
,
1461 priv
->regs
+ TSI721_OBDMAC_DRDCNT(ch
));
1462 ioread32(priv
->regs
+ TSI721_OBDMAC_DRDCNT(ch
));
1463 priv
->omsg_ring
[ch
].wr_count
= priv
->omsg_ring
[ch
].tx_slot
;
1464 priv
->omsg_ring
[ch
].sts_rdptr
= 0;
1467 /* Clear channel interrupts */
1468 iowrite32(omsg_int
, priv
->regs
+ TSI721_OBDMAC_INT(ch
));
1470 if (!(priv
->flags
& TSI721_USING_MSIX
)) {
1473 /* Re-enable channel interrupts */
1474 ch_inte
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1475 ch_inte
|= TSI721_INT_OMSG_CHAN(ch
);
1476 iowrite32(ch_inte
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1479 spin_unlock(&priv
->omsg_ring
[ch
].lock
);
1483 * tsi721_open_outb_mbox - Initialize Tsi721 outbound mailbox
1484 * @mport: Master port implementing Outbound Messaging Engine
1485 * @dev_id: Device specific pointer to pass on event
1486 * @mbox: Mailbox to open
1487 * @entries: Number of entries in the outbound mailbox ring
1489 static int tsi721_open_outb_mbox(struct rio_mport
*mport
, void *dev_id
,
1490 int mbox
, int entries
)
1492 struct tsi721_device
*priv
= mport
->priv
;
1493 struct tsi721_omsg_desc
*bd_ptr
;
1496 if ((entries
< TSI721_OMSGD_MIN_RING_SIZE
) ||
1497 (entries
> (TSI721_OMSGD_RING_SIZE
)) ||
1498 (!is_power_of_2(entries
)) || mbox
>= RIO_MAX_MBOX
) {
1503 priv
->omsg_ring
[mbox
].dev_id
= dev_id
;
1504 priv
->omsg_ring
[mbox
].size
= entries
;
1505 priv
->omsg_ring
[mbox
].sts_rdptr
= 0;
1506 spin_lock_init(&priv
->omsg_ring
[mbox
].lock
);
1508 /* Outbound Msg Buffer allocation based on
1509 the number of maximum descriptor entries */
1510 for (i
= 0; i
< entries
; i
++) {
1511 priv
->omsg_ring
[mbox
].omq_base
[i
] =
1513 &priv
->pdev
->dev
, TSI721_MSG_BUFFER_SIZE
,
1514 &priv
->omsg_ring
[mbox
].omq_phys
[i
],
1516 if (priv
->omsg_ring
[mbox
].omq_base
[i
] == NULL
) {
1517 dev_dbg(&priv
->pdev
->dev
,
1518 "Unable to allocate OB MSG data buffer for"
1525 /* Outbound message descriptor allocation */
1526 priv
->omsg_ring
[mbox
].omd_base
= dma_alloc_coherent(
1528 (entries
+ 1) * sizeof(struct tsi721_omsg_desc
),
1529 &priv
->omsg_ring
[mbox
].omd_phys
, GFP_KERNEL
);
1530 if (priv
->omsg_ring
[mbox
].omd_base
== NULL
) {
1531 dev_dbg(&priv
->pdev
->dev
,
1532 "Unable to allocate OB MSG descriptor memory "
1533 "for MBOX%d\n", mbox
);
1538 priv
->omsg_ring
[mbox
].tx_slot
= 0;
1540 /* Outbound message descriptor status FIFO allocation */
1541 priv
->omsg_ring
[mbox
].sts_size
= roundup_pow_of_two(entries
+ 1);
1542 priv
->omsg_ring
[mbox
].sts_base
= dma_zalloc_coherent(&priv
->pdev
->dev
,
1543 priv
->omsg_ring
[mbox
].sts_size
*
1544 sizeof(struct tsi721_dma_sts
),
1545 &priv
->omsg_ring
[mbox
].sts_phys
, GFP_KERNEL
);
1546 if (priv
->omsg_ring
[mbox
].sts_base
== NULL
) {
1547 dev_dbg(&priv
->pdev
->dev
,
1548 "Unable to allocate OB MSG descriptor status FIFO "
1549 "for MBOX%d\n", mbox
);
1555 * Configure Outbound Messaging Engine
1558 /* Setup Outbound Message descriptor pointer */
1559 iowrite32(((u64
)priv
->omsg_ring
[mbox
].omd_phys
>> 32),
1560 priv
->regs
+ TSI721_OBDMAC_DPTRH(mbox
));
1561 iowrite32(((u64
)priv
->omsg_ring
[mbox
].omd_phys
&
1562 TSI721_OBDMAC_DPTRL_MASK
),
1563 priv
->regs
+ TSI721_OBDMAC_DPTRL(mbox
));
1565 /* Setup Outbound Message descriptor status FIFO */
1566 iowrite32(((u64
)priv
->omsg_ring
[mbox
].sts_phys
>> 32),
1567 priv
->regs
+ TSI721_OBDMAC_DSBH(mbox
));
1568 iowrite32(((u64
)priv
->omsg_ring
[mbox
].sts_phys
&
1569 TSI721_OBDMAC_DSBL_MASK
),
1570 priv
->regs
+ TSI721_OBDMAC_DSBL(mbox
));
1571 iowrite32(TSI721_DMAC_DSSZ_SIZE(priv
->omsg_ring
[mbox
].sts_size
),
1572 priv
->regs
+ (u32
)TSI721_OBDMAC_DSSZ(mbox
));
1574 /* Enable interrupts */
1576 #ifdef CONFIG_PCI_MSI
1577 if (priv
->flags
& TSI721_USING_MSIX
) {
1578 /* Request interrupt service if we are in MSI-X mode */
1580 priv
->msix
[TSI721_VECT_OMB0_DONE
+ mbox
].vector
,
1581 tsi721_omsg_msix
, 0,
1582 priv
->msix
[TSI721_VECT_OMB0_DONE
+ mbox
].irq_name
,
1586 dev_dbg(&priv
->pdev
->dev
,
1587 "Unable to allocate MSI-X interrupt for "
1588 "OBOX%d-DONE\n", mbox
);
1592 rc
= request_irq(priv
->msix
[TSI721_VECT_OMB0_INT
+ mbox
].vector
,
1593 tsi721_omsg_msix
, 0,
1594 priv
->msix
[TSI721_VECT_OMB0_INT
+ mbox
].irq_name
,
1598 dev_dbg(&priv
->pdev
->dev
,
1599 "Unable to allocate MSI-X interrupt for "
1600 "MBOX%d-INT\n", mbox
);
1602 priv
->msix
[TSI721_VECT_OMB0_DONE
+ mbox
].vector
,
1607 #endif /* CONFIG_PCI_MSI */
1609 tsi721_omsg_interrupt_enable(priv
, mbox
, TSI721_OBDMAC_INT_ALL
);
1611 /* Initialize Outbound Message descriptors ring */
1612 bd_ptr
= priv
->omsg_ring
[mbox
].omd_base
;
1613 bd_ptr
[entries
].type_id
= cpu_to_le32(DTYPE5
<< 29);
1614 bd_ptr
[entries
].msg_info
= 0;
1615 bd_ptr
[entries
].next_lo
=
1616 cpu_to_le32((u64
)priv
->omsg_ring
[mbox
].omd_phys
&
1617 TSI721_OBDMAC_DPTRL_MASK
);
1618 bd_ptr
[entries
].next_hi
=
1619 cpu_to_le32((u64
)priv
->omsg_ring
[mbox
].omd_phys
>> 32);
1620 priv
->omsg_ring
[mbox
].wr_count
= 0;
1623 /* Initialize Outbound Message engine */
1624 iowrite32(TSI721_OBDMAC_CTL_INIT
, priv
->regs
+ TSI721_OBDMAC_CTL(mbox
));
1625 ioread32(priv
->regs
+ TSI721_OBDMAC_DWRCNT(mbox
));
1628 priv
->omsg_init
[mbox
] = 1;
1632 #ifdef CONFIG_PCI_MSI
1634 dma_free_coherent(&priv
->pdev
->dev
,
1635 priv
->omsg_ring
[mbox
].sts_size
* sizeof(struct tsi721_dma_sts
),
1636 priv
->omsg_ring
[mbox
].sts_base
,
1637 priv
->omsg_ring
[mbox
].sts_phys
);
1639 priv
->omsg_ring
[mbox
].sts_base
= NULL
;
1640 #endif /* CONFIG_PCI_MSI */
1643 dma_free_coherent(&priv
->pdev
->dev
,
1644 (entries
+ 1) * sizeof(struct tsi721_omsg_desc
),
1645 priv
->omsg_ring
[mbox
].omd_base
,
1646 priv
->omsg_ring
[mbox
].omd_phys
);
1648 priv
->omsg_ring
[mbox
].omd_base
= NULL
;
1651 for (i
= 0; i
< priv
->omsg_ring
[mbox
].size
; i
++) {
1652 if (priv
->omsg_ring
[mbox
].omq_base
[i
]) {
1653 dma_free_coherent(&priv
->pdev
->dev
,
1654 TSI721_MSG_BUFFER_SIZE
,
1655 priv
->omsg_ring
[mbox
].omq_base
[i
],
1656 priv
->omsg_ring
[mbox
].omq_phys
[i
]);
1658 priv
->omsg_ring
[mbox
].omq_base
[i
] = NULL
;
1667 * tsi721_close_outb_mbox - Close Tsi721 outbound mailbox
1668 * @mport: Master port implementing the outbound message unit
1669 * @mbox: Mailbox to close
1671 static void tsi721_close_outb_mbox(struct rio_mport
*mport
, int mbox
)
1673 struct tsi721_device
*priv
= mport
->priv
;
1676 if (!priv
->omsg_init
[mbox
])
1678 priv
->omsg_init
[mbox
] = 0;
1680 /* Disable Interrupts */
1682 tsi721_omsg_interrupt_disable(priv
, mbox
, TSI721_OBDMAC_INT_ALL
);
1684 #ifdef CONFIG_PCI_MSI
1685 if (priv
->flags
& TSI721_USING_MSIX
) {
1686 free_irq(priv
->msix
[TSI721_VECT_OMB0_DONE
+ mbox
].vector
,
1688 free_irq(priv
->msix
[TSI721_VECT_OMB0_INT
+ mbox
].vector
,
1691 #endif /* CONFIG_PCI_MSI */
1693 /* Free OMSG Descriptor Status FIFO */
1694 dma_free_coherent(&priv
->pdev
->dev
,
1695 priv
->omsg_ring
[mbox
].sts_size
* sizeof(struct tsi721_dma_sts
),
1696 priv
->omsg_ring
[mbox
].sts_base
,
1697 priv
->omsg_ring
[mbox
].sts_phys
);
1699 priv
->omsg_ring
[mbox
].sts_base
= NULL
;
1701 /* Free OMSG descriptors */
1702 dma_free_coherent(&priv
->pdev
->dev
,
1703 (priv
->omsg_ring
[mbox
].size
+ 1) *
1704 sizeof(struct tsi721_omsg_desc
),
1705 priv
->omsg_ring
[mbox
].omd_base
,
1706 priv
->omsg_ring
[mbox
].omd_phys
);
1708 priv
->omsg_ring
[mbox
].omd_base
= NULL
;
1710 /* Free message buffers */
1711 for (i
= 0; i
< priv
->omsg_ring
[mbox
].size
; i
++) {
1712 if (priv
->omsg_ring
[mbox
].omq_base
[i
]) {
1713 dma_free_coherent(&priv
->pdev
->dev
,
1714 TSI721_MSG_BUFFER_SIZE
,
1715 priv
->omsg_ring
[mbox
].omq_base
[i
],
1716 priv
->omsg_ring
[mbox
].omq_phys
[i
]);
1718 priv
->omsg_ring
[mbox
].omq_base
[i
] = NULL
;
1724 * tsi721_imsg_handler - Inbound Message Interrupt Handler
1725 * @priv: pointer to tsi721 private data
1726 * @ch: inbound message channel number to service
1728 * Services channel interrupts from inbound messaging engine.
1730 static void tsi721_imsg_handler(struct tsi721_device
*priv
, int ch
)
1735 spin_lock(&priv
->imsg_ring
[mbox
].lock
);
1737 imsg_int
= ioread32(priv
->regs
+ TSI721_IBDMAC_INT(ch
));
1739 if (imsg_int
& TSI721_IBDMAC_INT_SRTO
)
1740 dev_info(&priv
->pdev
->dev
, "IB MBOX%d SRIO timeout\n",
1743 if (imsg_int
& TSI721_IBDMAC_INT_PC_ERROR
)
1744 dev_info(&priv
->pdev
->dev
, "IB MBOX%d PCIe error\n",
1747 if (imsg_int
& TSI721_IBDMAC_INT_FQ_LOW
)
1748 dev_info(&priv
->pdev
->dev
,
1749 "IB MBOX%d IB free queue low\n", mbox
);
1751 /* Clear IB channel interrupts */
1752 iowrite32(imsg_int
, priv
->regs
+ TSI721_IBDMAC_INT(ch
));
1754 /* If an IB Msg is received notify the upper layer */
1755 if (imsg_int
& TSI721_IBDMAC_INT_DQ_RCV
&&
1756 priv
->mport
->inb_msg
[mbox
].mcback
)
1757 priv
->mport
->inb_msg
[mbox
].mcback(priv
->mport
,
1758 priv
->imsg_ring
[mbox
].dev_id
, mbox
, -1);
1760 if (!(priv
->flags
& TSI721_USING_MSIX
)) {
1763 /* Re-enable channel interrupts */
1764 ch_inte
= ioread32(priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1765 ch_inte
|= TSI721_INT_IMSG_CHAN(ch
);
1766 iowrite32(ch_inte
, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
1769 spin_unlock(&priv
->imsg_ring
[mbox
].lock
);
1773 * tsi721_open_inb_mbox - Initialize Tsi721 inbound mailbox
1774 * @mport: Master port implementing the Inbound Messaging Engine
1775 * @dev_id: Device specific pointer to pass on event
1776 * @mbox: Mailbox to open
1777 * @entries: Number of entries in the inbound mailbox ring
1779 static int tsi721_open_inb_mbox(struct rio_mport
*mport
, void *dev_id
,
1780 int mbox
, int entries
)
1782 struct tsi721_device
*priv
= mport
->priv
;
1788 if ((entries
< TSI721_IMSGD_MIN_RING_SIZE
) ||
1789 (entries
> TSI721_IMSGD_RING_SIZE
) ||
1790 (!is_power_of_2(entries
)) || mbox
>= RIO_MAX_MBOX
) {
1795 /* Initialize IB Messaging Ring */
1796 priv
->imsg_ring
[mbox
].dev_id
= dev_id
;
1797 priv
->imsg_ring
[mbox
].size
= entries
;
1798 priv
->imsg_ring
[mbox
].rx_slot
= 0;
1799 priv
->imsg_ring
[mbox
].desc_rdptr
= 0;
1800 priv
->imsg_ring
[mbox
].fq_wrptr
= 0;
1801 for (i
= 0; i
< priv
->imsg_ring
[mbox
].size
; i
++)
1802 priv
->imsg_ring
[mbox
].imq_base
[i
] = NULL
;
1803 spin_lock_init(&priv
->imsg_ring
[mbox
].lock
);
1805 /* Allocate buffers for incoming messages */
1806 priv
->imsg_ring
[mbox
].buf_base
=
1807 dma_alloc_coherent(&priv
->pdev
->dev
,
1808 entries
* TSI721_MSG_BUFFER_SIZE
,
1809 &priv
->imsg_ring
[mbox
].buf_phys
,
1812 if (priv
->imsg_ring
[mbox
].buf_base
== NULL
) {
1813 dev_err(&priv
->pdev
->dev
,
1814 "Failed to allocate buffers for IB MBOX%d\n", mbox
);
1819 /* Allocate memory for circular free list */
1820 priv
->imsg_ring
[mbox
].imfq_base
=
1821 dma_alloc_coherent(&priv
->pdev
->dev
,
1823 &priv
->imsg_ring
[mbox
].imfq_phys
,
1826 if (priv
->imsg_ring
[mbox
].imfq_base
== NULL
) {
1827 dev_err(&priv
->pdev
->dev
,
1828 "Failed to allocate free queue for IB MBOX%d\n", mbox
);
1833 /* Allocate memory for Inbound message descriptors */
1834 priv
->imsg_ring
[mbox
].imd_base
=
1835 dma_alloc_coherent(&priv
->pdev
->dev
,
1836 entries
* sizeof(struct tsi721_imsg_desc
),
1837 &priv
->imsg_ring
[mbox
].imd_phys
, GFP_KERNEL
);
1839 if (priv
->imsg_ring
[mbox
].imd_base
== NULL
) {
1840 dev_err(&priv
->pdev
->dev
,
1841 "Failed to allocate descriptor memory for IB MBOX%d\n",
1847 /* Fill free buffer pointer list */
1848 free_ptr
= priv
->imsg_ring
[mbox
].imfq_base
;
1849 for (i
= 0; i
< entries
; i
++)
1850 free_ptr
[i
] = cpu_to_le64(
1851 (u64
)(priv
->imsg_ring
[mbox
].buf_phys
) +
1857 * For mapping of inbound SRIO Messages into appropriate queues we need
1858 * to set Inbound Device ID register in the messaging engine. We do it
1859 * once when first inbound mailbox is requested.
1861 if (!(priv
->flags
& TSI721_IMSGID_SET
)) {
1862 iowrite32((u32
)priv
->mport
->host_deviceid
,
1863 priv
->regs
+ TSI721_IB_DEVID
);
1864 priv
->flags
|= TSI721_IMSGID_SET
;
1868 * Configure Inbound Messaging channel (ch = mbox + 4)
1871 /* Setup Inbound Message free queue */
1872 iowrite32(((u64
)priv
->imsg_ring
[mbox
].imfq_phys
>> 32),
1873 priv
->regs
+ TSI721_IBDMAC_FQBH(ch
));
1874 iowrite32(((u64
)priv
->imsg_ring
[mbox
].imfq_phys
&
1875 TSI721_IBDMAC_FQBL_MASK
),
1876 priv
->regs
+TSI721_IBDMAC_FQBL(ch
));
1877 iowrite32(TSI721_DMAC_DSSZ_SIZE(entries
),
1878 priv
->regs
+ TSI721_IBDMAC_FQSZ(ch
));
1880 /* Setup Inbound Message descriptor queue */
1881 iowrite32(((u64
)priv
->imsg_ring
[mbox
].imd_phys
>> 32),
1882 priv
->regs
+ TSI721_IBDMAC_DQBH(ch
));
1883 iowrite32(((u32
)priv
->imsg_ring
[mbox
].imd_phys
&
1884 (u32
)TSI721_IBDMAC_DQBL_MASK
),
1885 priv
->regs
+TSI721_IBDMAC_DQBL(ch
));
1886 iowrite32(TSI721_DMAC_DSSZ_SIZE(entries
),
1887 priv
->regs
+ TSI721_IBDMAC_DQSZ(ch
));
1889 /* Enable interrupts */
1891 #ifdef CONFIG_PCI_MSI
1892 if (priv
->flags
& TSI721_USING_MSIX
) {
1893 /* Request interrupt service if we are in MSI-X mode */
1894 rc
= request_irq(priv
->msix
[TSI721_VECT_IMB0_RCV
+ mbox
].vector
,
1895 tsi721_imsg_msix
, 0,
1896 priv
->msix
[TSI721_VECT_IMB0_RCV
+ mbox
].irq_name
,
1900 dev_dbg(&priv
->pdev
->dev
,
1901 "Unable to allocate MSI-X interrupt for "
1902 "IBOX%d-DONE\n", mbox
);
1906 rc
= request_irq(priv
->msix
[TSI721_VECT_IMB0_INT
+ mbox
].vector
,
1907 tsi721_imsg_msix
, 0,
1908 priv
->msix
[TSI721_VECT_IMB0_INT
+ mbox
].irq_name
,
1912 dev_dbg(&priv
->pdev
->dev
,
1913 "Unable to allocate MSI-X interrupt for "
1914 "IBOX%d-INT\n", mbox
);
1916 priv
->msix
[TSI721_VECT_IMB0_RCV
+ mbox
].vector
,
1921 #endif /* CONFIG_PCI_MSI */
1923 tsi721_imsg_interrupt_enable(priv
, ch
, TSI721_IBDMAC_INT_ALL
);
1925 /* Initialize Inbound Message Engine */
1926 iowrite32(TSI721_IBDMAC_CTL_INIT
, priv
->regs
+ TSI721_IBDMAC_CTL(ch
));
1927 ioread32(priv
->regs
+ TSI721_IBDMAC_CTL(ch
));
1929 priv
->imsg_ring
[mbox
].fq_wrptr
= entries
- 1;
1930 iowrite32(entries
- 1, priv
->regs
+ TSI721_IBDMAC_FQWP(ch
));
1932 priv
->imsg_init
[mbox
] = 1;
1935 #ifdef CONFIG_PCI_MSI
1937 dma_free_coherent(&priv
->pdev
->dev
,
1938 priv
->imsg_ring
[mbox
].size
* sizeof(struct tsi721_imsg_desc
),
1939 priv
->imsg_ring
[mbox
].imd_base
,
1940 priv
->imsg_ring
[mbox
].imd_phys
);
1942 priv
->imsg_ring
[mbox
].imd_base
= NULL
;
1943 #endif /* CONFIG_PCI_MSI */
1946 dma_free_coherent(&priv
->pdev
->dev
,
1947 priv
->imsg_ring
[mbox
].size
* 8,
1948 priv
->imsg_ring
[mbox
].imfq_base
,
1949 priv
->imsg_ring
[mbox
].imfq_phys
);
1951 priv
->imsg_ring
[mbox
].imfq_base
= NULL
;
1954 dma_free_coherent(&priv
->pdev
->dev
,
1955 priv
->imsg_ring
[mbox
].size
* TSI721_MSG_BUFFER_SIZE
,
1956 priv
->imsg_ring
[mbox
].buf_base
,
1957 priv
->imsg_ring
[mbox
].buf_phys
);
1959 priv
->imsg_ring
[mbox
].buf_base
= NULL
;
1966 * tsi721_close_inb_mbox - Shut down Tsi721 inbound mailbox
1967 * @mport: Master port implementing the Inbound Messaging Engine
1968 * @mbox: Mailbox to close
1970 static void tsi721_close_inb_mbox(struct rio_mport
*mport
, int mbox
)
1972 struct tsi721_device
*priv
= mport
->priv
;
1976 if (!priv
->imsg_init
[mbox
]) /* mbox isn't initialized yet */
1978 priv
->imsg_init
[mbox
] = 0;
1980 /* Disable Inbound Messaging Engine */
1982 /* Disable Interrupts */
1983 tsi721_imsg_interrupt_disable(priv
, ch
, TSI721_OBDMAC_INT_MASK
);
1985 #ifdef CONFIG_PCI_MSI
1986 if (priv
->flags
& TSI721_USING_MSIX
) {
1987 free_irq(priv
->msix
[TSI721_VECT_IMB0_RCV
+ mbox
].vector
,
1989 free_irq(priv
->msix
[TSI721_VECT_IMB0_INT
+ mbox
].vector
,
1992 #endif /* CONFIG_PCI_MSI */
1994 /* Clear Inbound Buffer Queue */
1995 for (rx_slot
= 0; rx_slot
< priv
->imsg_ring
[mbox
].size
; rx_slot
++)
1996 priv
->imsg_ring
[mbox
].imq_base
[rx_slot
] = NULL
;
1998 /* Free memory allocated for message buffers */
1999 dma_free_coherent(&priv
->pdev
->dev
,
2000 priv
->imsg_ring
[mbox
].size
* TSI721_MSG_BUFFER_SIZE
,
2001 priv
->imsg_ring
[mbox
].buf_base
,
2002 priv
->imsg_ring
[mbox
].buf_phys
);
2004 priv
->imsg_ring
[mbox
].buf_base
= NULL
;
2006 /* Free memory allocated for free pointr list */
2007 dma_free_coherent(&priv
->pdev
->dev
,
2008 priv
->imsg_ring
[mbox
].size
* 8,
2009 priv
->imsg_ring
[mbox
].imfq_base
,
2010 priv
->imsg_ring
[mbox
].imfq_phys
);
2012 priv
->imsg_ring
[mbox
].imfq_base
= NULL
;
2014 /* Free memory allocated for RX descriptors */
2015 dma_free_coherent(&priv
->pdev
->dev
,
2016 priv
->imsg_ring
[mbox
].size
* sizeof(struct tsi721_imsg_desc
),
2017 priv
->imsg_ring
[mbox
].imd_base
,
2018 priv
->imsg_ring
[mbox
].imd_phys
);
2020 priv
->imsg_ring
[mbox
].imd_base
= NULL
;
2024 * tsi721_add_inb_buffer - Add buffer to the Tsi721 inbound message queue
2025 * @mport: Master port implementing the Inbound Messaging Engine
2026 * @mbox: Inbound mailbox number
2027 * @buf: Buffer to add to inbound queue
2029 static int tsi721_add_inb_buffer(struct rio_mport
*mport
, int mbox
, void *buf
)
2031 struct tsi721_device
*priv
= mport
->priv
;
2035 rx_slot
= priv
->imsg_ring
[mbox
].rx_slot
;
2036 if (priv
->imsg_ring
[mbox
].imq_base
[rx_slot
]) {
2037 dev_err(&priv
->pdev
->dev
,
2038 "Error adding inbound buffer %d, buffer exists\n",
2044 priv
->imsg_ring
[mbox
].imq_base
[rx_slot
] = buf
;
2046 if (++priv
->imsg_ring
[mbox
].rx_slot
== priv
->imsg_ring
[mbox
].size
)
2047 priv
->imsg_ring
[mbox
].rx_slot
= 0;
2054 * tsi721_get_inb_message - Fetch inbound message from the Tsi721 MSG Queue
2055 * @mport: Master port implementing the Inbound Messaging Engine
2056 * @mbox: Inbound mailbox number
2058 * Returns pointer to the message on success or NULL on failure.
2060 static void *tsi721_get_inb_message(struct rio_mport
*mport
, int mbox
)
2062 struct tsi721_device
*priv
= mport
->priv
;
2063 struct tsi721_imsg_desc
*desc
;
2065 void *rx_virt
= NULL
;
2072 if (!priv
->imsg_init
[mbox
])
2075 desc
= priv
->imsg_ring
[mbox
].imd_base
;
2076 desc
+= priv
->imsg_ring
[mbox
].desc_rdptr
;
2078 if (!(le32_to_cpu(desc
->msg_info
) & TSI721_IMD_HO
))
2081 rx_slot
= priv
->imsg_ring
[mbox
].rx_slot
;
2082 while (priv
->imsg_ring
[mbox
].imq_base
[rx_slot
] == NULL
) {
2083 if (++rx_slot
== priv
->imsg_ring
[mbox
].size
)
2087 rx_phys
= ((u64
)le32_to_cpu(desc
->bufptr_hi
) << 32) |
2088 le32_to_cpu(desc
->bufptr_lo
);
2090 rx_virt
= priv
->imsg_ring
[mbox
].buf_base
+
2091 (rx_phys
- (u64
)priv
->imsg_ring
[mbox
].buf_phys
);
2093 buf
= priv
->imsg_ring
[mbox
].imq_base
[rx_slot
];
2094 msg_size
= le32_to_cpu(desc
->msg_info
) & TSI721_IMD_BCOUNT
;
2096 msg_size
= RIO_MAX_MSG_SIZE
;
2098 memcpy(buf
, rx_virt
, msg_size
);
2099 priv
->imsg_ring
[mbox
].imq_base
[rx_slot
] = NULL
;
2101 desc
->msg_info
&= cpu_to_le32(~TSI721_IMD_HO
);
2102 if (++priv
->imsg_ring
[mbox
].desc_rdptr
== priv
->imsg_ring
[mbox
].size
)
2103 priv
->imsg_ring
[mbox
].desc_rdptr
= 0;
2105 iowrite32(priv
->imsg_ring
[mbox
].desc_rdptr
,
2106 priv
->regs
+ TSI721_IBDMAC_DQRP(ch
));
2108 /* Return free buffer into the pointer list */
2109 free_ptr
= priv
->imsg_ring
[mbox
].imfq_base
;
2110 free_ptr
[priv
->imsg_ring
[mbox
].fq_wrptr
] = cpu_to_le64(rx_phys
);
2112 if (++priv
->imsg_ring
[mbox
].fq_wrptr
== priv
->imsg_ring
[mbox
].size
)
2113 priv
->imsg_ring
[mbox
].fq_wrptr
= 0;
2115 iowrite32(priv
->imsg_ring
[mbox
].fq_wrptr
,
2116 priv
->regs
+ TSI721_IBDMAC_FQWP(ch
));
2122 * tsi721_messages_init - Initialization of Messaging Engine
2123 * @priv: pointer to tsi721 private data
2125 * Configures Tsi721 messaging engine.
2127 static int tsi721_messages_init(struct tsi721_device
*priv
)
2131 iowrite32(0, priv
->regs
+ TSI721_SMSG_ECC_LOG
);
2132 iowrite32(0, priv
->regs
+ TSI721_RETRY_GEN_CNT
);
2133 iowrite32(0, priv
->regs
+ TSI721_RETRY_RX_CNT
);
2135 /* Set SRIO Message Request/Response Timeout */
2136 iowrite32(TSI721_RQRPTO_VAL
, priv
->regs
+ TSI721_RQRPTO
);
2138 /* Initialize Inbound Messaging Engine Registers */
2139 for (ch
= 0; ch
< TSI721_IMSG_CHNUM
; ch
++) {
2140 /* Clear interrupt bits */
2141 iowrite32(TSI721_IBDMAC_INT_MASK
,
2142 priv
->regs
+ TSI721_IBDMAC_INT(ch
));
2144 iowrite32(0, priv
->regs
+ TSI721_IBDMAC_STS(ch
));
2146 iowrite32(TSI721_SMSG_ECC_COR_LOG_MASK
,
2147 priv
->regs
+ TSI721_SMSG_ECC_COR_LOG(ch
));
2148 iowrite32(TSI721_SMSG_ECC_NCOR_MASK
,
2149 priv
->regs
+ TSI721_SMSG_ECC_NCOR(ch
));
2156 * tsi721_disable_ints - disables all device interrupts
2157 * @priv: pointer to tsi721 private data
2159 static void tsi721_disable_ints(struct tsi721_device
*priv
)
2163 /* Disable all device level interrupts */
2164 iowrite32(0, priv
->regs
+ TSI721_DEV_INTE
);
2166 /* Disable all Device Channel interrupts */
2167 iowrite32(0, priv
->regs
+ TSI721_DEV_CHAN_INTE
);
2169 /* Disable all Inbound Msg Channel interrupts */
2170 for (ch
= 0; ch
< TSI721_IMSG_CHNUM
; ch
++)
2171 iowrite32(0, priv
->regs
+ TSI721_IBDMAC_INTE(ch
));
2173 /* Disable all Outbound Msg Channel interrupts */
2174 for (ch
= 0; ch
< TSI721_OMSG_CHNUM
; ch
++)
2175 iowrite32(0, priv
->regs
+ TSI721_OBDMAC_INTE(ch
));
2177 /* Disable all general messaging interrupts */
2178 iowrite32(0, priv
->regs
+ TSI721_SMSG_INTE
);
2180 /* Disable all BDMA Channel interrupts */
2181 for (ch
= 0; ch
< TSI721_DMA_MAXCH
; ch
++)
2183 priv
->regs
+ TSI721_DMAC_BASE(ch
) + TSI721_DMAC_INTE
);
2185 /* Disable all general BDMA interrupts */
2186 iowrite32(0, priv
->regs
+ TSI721_BDMA_INTE
);
2188 /* Disable all SRIO Channel interrupts */
2189 for (ch
= 0; ch
< TSI721_SRIO_MAXCH
; ch
++)
2190 iowrite32(0, priv
->regs
+ TSI721_SR_CHINTE(ch
));
2192 /* Disable all general SR2PC interrupts */
2193 iowrite32(0, priv
->regs
+ TSI721_SR2PC_GEN_INTE
);
2195 /* Disable all PC2SR interrupts */
2196 iowrite32(0, priv
->regs
+ TSI721_PC2SR_INTE
);
2198 /* Disable all I2C interrupts */
2199 iowrite32(0, priv
->regs
+ TSI721_I2C_INT_ENABLE
);
2201 /* Disable SRIO MAC interrupts */
2202 iowrite32(0, priv
->regs
+ TSI721_RIO_EM_INT_ENABLE
);
2203 iowrite32(0, priv
->regs
+ TSI721_RIO_EM_DEV_INT_EN
);
2207 * tsi721_setup_mport - Setup Tsi721 as RapidIO subsystem master port
2208 * @priv: pointer to tsi721 private data
2210 * Configures Tsi721 as RapidIO master port.
2212 static int tsi721_setup_mport(struct tsi721_device
*priv
)
2214 struct pci_dev
*pdev
= priv
->pdev
;
2216 struct rio_ops
*ops
;
2218 struct rio_mport
*mport
;
2220 ops
= kzalloc(sizeof(struct rio_ops
), GFP_KERNEL
);
2222 dev_dbg(&pdev
->dev
, "Unable to allocate memory for rio_ops\n");
2226 ops
->lcread
= tsi721_lcread
;
2227 ops
->lcwrite
= tsi721_lcwrite
;
2228 ops
->cread
= tsi721_cread_dma
;
2229 ops
->cwrite
= tsi721_cwrite_dma
;
2230 ops
->dsend
= tsi721_dsend
;
2231 ops
->open_inb_mbox
= tsi721_open_inb_mbox
;
2232 ops
->close_inb_mbox
= tsi721_close_inb_mbox
;
2233 ops
->open_outb_mbox
= tsi721_open_outb_mbox
;
2234 ops
->close_outb_mbox
= tsi721_close_outb_mbox
;
2235 ops
->add_outb_message
= tsi721_add_outb_message
;
2236 ops
->add_inb_buffer
= tsi721_add_inb_buffer
;
2237 ops
->get_inb_message
= tsi721_get_inb_message
;
2238 ops
->map_inb
= tsi721_rio_map_inb_mem
;
2239 ops
->unmap_inb
= tsi721_rio_unmap_inb_mem
;
2241 mport
= kzalloc(sizeof(struct rio_mport
), GFP_KERNEL
);
2244 dev_dbg(&pdev
->dev
, "Unable to allocate memory for mport\n");
2250 mport
->sys_size
= 0; /* small system */
2251 mport
->phy_type
= RIO_PHY_SERIAL
;
2252 mport
->priv
= (void *)priv
;
2253 mport
->phys_efptr
= 0x100;
2254 mport
->dev
.parent
= &pdev
->dev
;
2255 priv
->mport
= mport
;
2257 INIT_LIST_HEAD(&mport
->dbells
);
2259 rio_init_dbell_res(&mport
->riores
[RIO_DOORBELL_RESOURCE
], 0, 0xffff);
2260 rio_init_mbox_res(&mport
->riores
[RIO_INB_MBOX_RESOURCE
], 0, 3);
2261 rio_init_mbox_res(&mport
->riores
[RIO_OUTB_MBOX_RESOURCE
], 0, 3);
2262 snprintf(mport
->name
, RIO_MAX_MPORT_NAME
, "%s(%s)",
2263 dev_driver_string(&pdev
->dev
), dev_name(&pdev
->dev
));
2265 /* Hook up interrupt handler */
2267 #ifdef CONFIG_PCI_MSI
2268 if (!tsi721_enable_msix(priv
))
2269 priv
->flags
|= TSI721_USING_MSIX
;
2270 else if (!pci_enable_msi(pdev
))
2271 priv
->flags
|= TSI721_USING_MSI
;
2273 dev_info(&pdev
->dev
,
2274 "MSI/MSI-X is not available. Using legacy INTx.\n");
2275 #endif /* CONFIG_PCI_MSI */
2277 err
= tsi721_request_irq(mport
);
2280 tsi721_interrupts_init(priv
);
2281 ops
->pwenable
= tsi721_pw_enable
;
2283 dev_err(&pdev
->dev
, "Unable to get assigned PCI IRQ "
2284 "vector %02X err=0x%x\n", pdev
->irq
, err
);
2288 #ifdef CONFIG_RAPIDIO_DMA_ENGINE
2289 tsi721_register_dma(priv
);
2291 /* Enable SRIO link */
2292 iowrite32(ioread32(priv
->regs
+ TSI721_DEVCTL
) |
2293 TSI721_DEVCTL_SRBOOT_CMPL
,
2294 priv
->regs
+ TSI721_DEVCTL
);
2296 rio_register_mport(mport
);
2298 if (mport
->host_deviceid
>= 0)
2299 iowrite32(RIO_PORT_GEN_HOST
| RIO_PORT_GEN_MASTER
|
2300 RIO_PORT_GEN_DISCOVERED
,
2301 priv
->regs
+ (0x100 + RIO_PORT_GEN_CTL_CSR
));
2303 iowrite32(0, priv
->regs
+ (0x100 + RIO_PORT_GEN_CTL_CSR
));
2313 static int tsi721_probe(struct pci_dev
*pdev
,
2314 const struct pci_device_id
*id
)
2316 struct tsi721_device
*priv
;
2319 priv
= kzalloc(sizeof(struct tsi721_device
), GFP_KERNEL
);
2321 dev_err(&pdev
->dev
, "Failed to allocate memory for device\n");
2326 err
= pci_enable_device(pdev
);
2328 dev_err(&pdev
->dev
, "Failed to enable PCI device\n");
2337 for (i
= 0; i
<= PCI_STD_RESOURCE_END
; i
++) {
2338 dev_dbg(&pdev
->dev
, "res[%d] @ 0x%llx (0x%lx, 0x%lx)\n",
2339 i
, (unsigned long long)pci_resource_start(pdev
, i
),
2340 (unsigned long)pci_resource_len(pdev
, i
),
2341 pci_resource_flags(pdev
, i
));
2346 * Verify BAR configuration
2349 /* BAR_0 (registers) must be 512KB+ in 32-bit address space */
2350 if (!(pci_resource_flags(pdev
, BAR_0
) & IORESOURCE_MEM
) ||
2351 pci_resource_flags(pdev
, BAR_0
) & IORESOURCE_MEM_64
||
2352 pci_resource_len(pdev
, BAR_0
) < TSI721_REG_SPACE_SIZE
) {
2354 "Missing or misconfigured CSR BAR0, aborting.\n");
2356 goto err_disable_pdev
;
2359 /* BAR_1 (outbound doorbells) must be 16MB+ in 32-bit address space */
2360 if (!(pci_resource_flags(pdev
, BAR_1
) & IORESOURCE_MEM
) ||
2361 pci_resource_flags(pdev
, BAR_1
) & IORESOURCE_MEM_64
||
2362 pci_resource_len(pdev
, BAR_1
) < TSI721_DB_WIN_SIZE
) {
2364 "Missing or misconfigured Doorbell BAR1, aborting.\n");
2366 goto err_disable_pdev
;
2370 * BAR_2 and BAR_4 (outbound translation) must be in 64-bit PCIe address
2372 * NOTE: BAR_2 and BAR_4 are not used by this version of driver.
2373 * It may be a good idea to keep them disabled using HW configuration
2374 * to save PCI memory space.
2376 if ((pci_resource_flags(pdev
, BAR_2
) & IORESOURCE_MEM
) &&
2377 (pci_resource_flags(pdev
, BAR_2
) & IORESOURCE_MEM_64
)) {
2378 dev_info(&pdev
->dev
, "Outbound BAR2 is not used but enabled.\n");
2381 if ((pci_resource_flags(pdev
, BAR_4
) & IORESOURCE_MEM
) &&
2382 (pci_resource_flags(pdev
, BAR_4
) & IORESOURCE_MEM_64
)) {
2383 dev_info(&pdev
->dev
, "Outbound BAR4 is not used but enabled.\n");
2386 err
= pci_request_regions(pdev
, DRV_NAME
);
2388 dev_err(&pdev
->dev
, "Cannot obtain PCI resources, "
2390 goto err_disable_pdev
;
2393 pci_set_master(pdev
);
2395 priv
->regs
= pci_ioremap_bar(pdev
, BAR_0
);
2398 "Unable to map device registers space, aborting\n");
2403 priv
->odb_base
= pci_ioremap_bar(pdev
, BAR_1
);
2404 if (!priv
->odb_base
) {
2406 "Unable to map outbound doorbells space, aborting\n");
2408 goto err_unmap_bars
;
2411 /* Configure DMA attributes. */
2412 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
2413 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
2415 dev_info(&pdev
->dev
, "Unable to set DMA mask\n");
2416 goto err_unmap_bars
;
2419 if (pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32)))
2420 dev_info(&pdev
->dev
, "Unable to set consistent DMA mask\n");
2422 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
2424 dev_info(&pdev
->dev
, "Unable to set consistent DMA mask\n");
2427 BUG_ON(!pci_is_pcie(pdev
));
2429 /* Clear "no snoop" and "relaxed ordering" bits, use default MRRS. */
2430 pcie_capability_clear_and_set_word(pdev
, PCI_EXP_DEVCTL
,
2431 PCI_EXP_DEVCTL_READRQ
| PCI_EXP_DEVCTL_RELAX_EN
|
2432 PCI_EXP_DEVCTL_NOSNOOP_EN
,
2433 PCI_EXP_DEVCTL_READRQ_512B
);
2435 /* Adjust PCIe completion timeout. */
2436 pcie_capability_clear_and_set_word(pdev
, PCI_EXP_DEVCTL2
, 0xf, 0x2);
2439 * FIXUP: correct offsets of MSI-X tables in the MSI-X Capability Block
2441 pci_write_config_dword(pdev
, TSI721_PCIECFG_EPCTL
, 0x01);
2442 pci_write_config_dword(pdev
, TSI721_PCIECFG_MSIXTBL
,
2443 TSI721_MSIXTBL_OFFSET
);
2444 pci_write_config_dword(pdev
, TSI721_PCIECFG_MSIXPBA
,
2445 TSI721_MSIXPBA_OFFSET
);
2446 pci_write_config_dword(pdev
, TSI721_PCIECFG_EPCTL
, 0);
2449 tsi721_disable_ints(priv
);
2451 tsi721_init_pc2sr_mapping(priv
);
2452 tsi721_init_sr2pc_mapping(priv
);
2454 if (tsi721_bdma_maint_init(priv
)) {
2455 dev_err(&pdev
->dev
, "BDMA initialization failed, aborting\n");
2457 goto err_unmap_bars
;
2460 err
= tsi721_doorbell_init(priv
);
2464 tsi721_port_write_init(priv
);
2466 err
= tsi721_messages_init(priv
);
2468 goto err_free_consistent
;
2470 err
= tsi721_setup_mport(priv
);
2472 goto err_free_consistent
;
2476 err_free_consistent
:
2477 tsi721_doorbell_free(priv
);
2479 tsi721_bdma_maint_free(priv
);
2482 iounmap(priv
->regs
);
2484 iounmap(priv
->odb_base
);
2486 pci_release_regions(pdev
);
2487 pci_clear_master(pdev
);
2489 pci_disable_device(pdev
);
2496 static const struct pci_device_id tsi721_pci_tbl
[] = {
2497 { PCI_DEVICE(PCI_VENDOR_ID_IDT
, PCI_DEVICE_ID_TSI721
) },
2498 { 0, } /* terminate list */
2501 MODULE_DEVICE_TABLE(pci
, tsi721_pci_tbl
);
2503 static struct pci_driver tsi721_driver
= {
2505 .id_table
= tsi721_pci_tbl
,
2506 .probe
= tsi721_probe
,
2509 static int __init
tsi721_init(void)
2511 return pci_register_driver(&tsi721_driver
);
2514 device_initcall(tsi721_init
);
2516 MODULE_DESCRIPTION("IDT Tsi721 PCIExpress-to-SRIO bridge driver");
2517 MODULE_AUTHOR("Integrated Device Technology, Inc.");
2518 MODULE_LICENSE("GPL");