2 * Freescale MPC85xx/MPC86xx RapidIO RMU support
4 * Copyright 2009 Sysgo AG
5 * Thomas Moll <thomas.moll@sysgo.com>
6 * - fixed maintenance access routines, check for aligned access
8 * Copyright 2009 Integrated Device Technology, Inc.
9 * Alex Bounine <alexandre.bounine@idt.com>
10 * - Added Port-Write message handling
11 * - Added Machine Check exception handling
13 * Copyright (C) 2007, 2008, 2010, 2011 Freescale Semiconductor, Inc.
14 * Zhang Wei <wei.zhang@freescale.com>
15 * Lian Minghuan-B31939 <Minghuan.Lian@freescale.com>
16 * Liu Gang <Gang.Liu@freescale.com>
18 * Copyright 2005 MontaVista Software, Inc.
19 * Matt Porter <mporter@kernel.crashing.org>
21 * This program is free software; you can redistribute it and/or modify it
22 * under the terms of the GNU General Public License as published by the
23 * Free Software Foundation; either version 2 of the License, or (at your
24 * option) any later version.
27 #include <linux/types.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/interrupt.h>
30 #include <linux/of_platform.h>
31 #include <linux/slab.h>
35 #define GET_RMM_HANDLE(mport) \
36 (((struct rio_priv *)(mport->priv))->rmm_handle)
38 /* RapidIO definition irq, which read from OF-tree */
39 #define IRQ_RIO_PW(m) (((struct fsl_rio_pw *)(m))->pwirq)
40 #define IRQ_RIO_BELL(m) (((struct fsl_rio_dbell *)(m))->bellirq)
41 #define IRQ_RIO_TX(m) (((struct fsl_rmu *)(GET_RMM_HANDLE(m)))->txirq)
42 #define IRQ_RIO_RX(m) (((struct fsl_rmu *)(GET_RMM_HANDLE(m)))->rxirq)
44 #define RIO_MIN_TX_RING_SIZE 2
45 #define RIO_MAX_TX_RING_SIZE 2048
46 #define RIO_MIN_RX_RING_SIZE 2
47 #define RIO_MAX_RX_RING_SIZE 2048
49 #define RIO_IPWMR_SEN 0x00100000
50 #define RIO_IPWMR_QFIE 0x00000100
51 #define RIO_IPWMR_EIE 0x00000020
52 #define RIO_IPWMR_CQ 0x00000002
53 #define RIO_IPWMR_PWE 0x00000001
55 #define RIO_IPWSR_QF 0x00100000
56 #define RIO_IPWSR_TE 0x00000080
57 #define RIO_IPWSR_QFI 0x00000010
58 #define RIO_IPWSR_PWD 0x00000008
59 #define RIO_IPWSR_PWB 0x00000004
61 #define RIO_EPWISR 0x10010
62 /* EPWISR Error match value */
63 #define RIO_EPWISR_PINT1 0x80000000
64 #define RIO_EPWISR_PINT2 0x40000000
65 #define RIO_EPWISR_MU 0x00000002
66 #define RIO_EPWISR_PW 0x00000001
68 #define IPWSR_CLEAR 0x98
69 #define OMSR_CLEAR 0x1cb3
70 #define IMSR_CLEAR 0x491
71 #define IDSR_CLEAR 0x91
72 #define ODSR_CLEAR 0x1c00
73 #define LTLEECSR_ENABLE_ALL 0xFFC000FC
74 #define RIO_LTLEECSR 0x060c
76 #define RIO_IM0SR 0x64
77 #define RIO_IM1SR 0x164
79 #define RIO_OM1SR 0x104
81 #define RIO_DBELL_WIN_SIZE 0x1000
83 #define RIO_MSG_OMR_MUI 0x00000002
84 #define RIO_MSG_OSR_TE 0x00000080
85 #define RIO_MSG_OSR_QOI 0x00000020
86 #define RIO_MSG_OSR_QFI 0x00000010
87 #define RIO_MSG_OSR_MUB 0x00000004
88 #define RIO_MSG_OSR_EOMI 0x00000002
89 #define RIO_MSG_OSR_QEI 0x00000001
91 #define RIO_MSG_IMR_MI 0x00000002
92 #define RIO_MSG_ISR_TE 0x00000080
93 #define RIO_MSG_ISR_QFI 0x00000010
94 #define RIO_MSG_ISR_DIQI 0x00000001
96 #define RIO_MSG_DESC_SIZE 32
97 #define RIO_MSG_BUFFER_SIZE 4096
99 #define DOORBELL_DMR_DI 0x00000002
100 #define DOORBELL_DSR_TE 0x00000080
101 #define DOORBELL_DSR_QFI 0x00000010
102 #define DOORBELL_DSR_DIQI 0x00000001
103 #define DOORBELL_TID_OFFSET 0x02
104 #define DOORBELL_SID_OFFSET 0x04
105 #define DOORBELL_INFO_OFFSET 0x06
107 #define DOORBELL_MESSAGE_SIZE 0x08
108 #define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET))
109 #define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET))
110 #define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
112 struct rio_msg_regs
{
133 struct rio_dbell_regs
{
169 struct rio_msg_tx_ring
{
172 void *virt_buffer
[RIO_MAX_TX_RING_SIZE
];
173 dma_addr_t phys_buffer
[RIO_MAX_TX_RING_SIZE
];
179 struct rio_msg_rx_ring
{
182 void *virt_buffer
[RIO_MAX_RX_RING_SIZE
];
189 struct rio_msg_regs __iomem
*msg_regs
;
190 struct rio_msg_tx_ring msg_tx_ring
;
191 struct rio_msg_rx_ring msg_rx_ring
;
197 * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
198 * @irq: Linux interrupt number
199 * @dev_instance: Pointer to interrupt-specific data
201 * Handles outbound message interrupts. Executes a register outbound
202 * mailbox event handler and acks the interrupt occurrence.
205 fsl_rio_tx_handler(int irq
, void *dev_instance
)
208 struct rio_mport
*port
= (struct rio_mport
*)dev_instance
;
209 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(port
);
211 osr
= in_be32(&rmu
->msg_regs
->osr
);
213 if (osr
& RIO_MSG_OSR_TE
) {
214 pr_info("RIO: outbound message transmission error\n");
215 out_be32(&rmu
->msg_regs
->osr
, RIO_MSG_OSR_TE
);
219 if (osr
& RIO_MSG_OSR_QOI
) {
220 pr_info("RIO: outbound message queue overflow\n");
221 out_be32(&rmu
->msg_regs
->osr
, RIO_MSG_OSR_QOI
);
225 if (osr
& RIO_MSG_OSR_EOMI
) {
226 u32 dqp
= in_be32(&rmu
->msg_regs
->odqdpar
);
227 int slot
= (dqp
- rmu
->msg_tx_ring
.phys
) >> 5;
228 if (port
->outb_msg
[0].mcback
!= NULL
) {
229 port
->outb_msg
[0].mcback(port
, rmu
->msg_tx_ring
.dev_id
,
233 /* Ack the end-of-message interrupt */
234 out_be32(&rmu
->msg_regs
->osr
, RIO_MSG_OSR_EOMI
);
242 * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
243 * @irq: Linux interrupt number
244 * @dev_instance: Pointer to interrupt-specific data
246 * Handles inbound message interrupts. Executes a registered inbound
247 * mailbox event handler and acks the interrupt occurrence.
250 fsl_rio_rx_handler(int irq
, void *dev_instance
)
253 struct rio_mport
*port
= (struct rio_mport
*)dev_instance
;
254 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(port
);
256 isr
= in_be32(&rmu
->msg_regs
->isr
);
258 if (isr
& RIO_MSG_ISR_TE
) {
259 pr_info("RIO: inbound message reception error\n");
260 out_be32((void *)&rmu
->msg_regs
->isr
, RIO_MSG_ISR_TE
);
264 /* XXX Need to check/dispatch until queue empty */
265 if (isr
& RIO_MSG_ISR_DIQI
) {
267 * Can receive messages for any mailbox/letter to that
268 * mailbox destination. So, make the callback with an
269 * unknown/invalid mailbox number argument.
271 if (port
->inb_msg
[0].mcback
!= NULL
)
272 port
->inb_msg
[0].mcback(port
, rmu
->msg_rx_ring
.dev_id
,
276 /* Ack the queueing interrupt */
277 out_be32(&rmu
->msg_regs
->isr
, RIO_MSG_ISR_DIQI
);
285 * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
286 * @irq: Linux interrupt number
287 * @dev_instance: Pointer to interrupt-specific data
289 * Handles doorbell interrupts. Parses a list of registered
290 * doorbell event handlers and executes a matching event handler.
293 fsl_rio_dbell_handler(int irq
, void *dev_instance
)
296 struct fsl_rio_dbell
*fsl_dbell
= (struct fsl_rio_dbell
*)dev_instance
;
299 dsr
= in_be32(&fsl_dbell
->dbell_regs
->dsr
);
301 if (dsr
& DOORBELL_DSR_TE
) {
302 pr_info("RIO: doorbell reception error\n");
303 out_be32(&fsl_dbell
->dbell_regs
->dsr
, DOORBELL_DSR_TE
);
307 if (dsr
& DOORBELL_DSR_QFI
) {
308 pr_info("RIO: doorbell queue full\n");
309 out_be32(&fsl_dbell
->dbell_regs
->dsr
, DOORBELL_DSR_QFI
);
312 /* XXX Need to check/dispatch until queue empty */
313 if (dsr
& DOORBELL_DSR_DIQI
) {
315 (u32
) fsl_dbell
->dbell_ring
.virt
+
316 (in_be32(&fsl_dbell
->dbell_regs
->dqdpar
) & 0xfff);
317 struct rio_dbell
*dbell
;
321 ("RIO: processing doorbell,"
322 " sid %2.2x tid %2.2x info %4.4x\n",
323 DBELL_SID(dmsg
), DBELL_TID(dmsg
), DBELL_INF(dmsg
));
325 for (i
= 0; i
< MAX_PORT_NUM
; i
++) {
326 if (fsl_dbell
->mport
[i
]) {
327 list_for_each_entry(dbell
,
328 &fsl_dbell
->mport
[i
]->dbells
, node
) {
329 if ((dbell
->res
->start
332 >= DBELL_INF(dmsg
))) {
337 if (found
&& dbell
->dinb
) {
338 dbell
->dinb(fsl_dbell
->mport
[i
],
339 dbell
->dev_id
, DBELL_SID(dmsg
),
349 ("RIO: spurious doorbell,"
350 " sid %2.2x tid %2.2x info %4.4x\n",
351 DBELL_SID(dmsg
), DBELL_TID(dmsg
),
354 setbits32(&fsl_dbell
->dbell_regs
->dmr
, DOORBELL_DMR_DI
);
355 out_be32(&fsl_dbell
->dbell_regs
->dsr
, DOORBELL_DSR_DIQI
);
362 void msg_unit_error_handler(void)
365 /*XXX: Error recovery is not implemented, we just clear errors */
366 out_be32((u32
*)(rio_regs_win
+ RIO_LTLEDCSR
), 0);
368 out_be32((u32
*)(rmu_regs_win
+ RIO_IM0SR
), IMSR_CLEAR
);
369 out_be32((u32
*)(rmu_regs_win
+ RIO_IM1SR
), IMSR_CLEAR
);
370 out_be32((u32
*)(rmu_regs_win
+ RIO_OM0SR
), OMSR_CLEAR
);
371 out_be32((u32
*)(rmu_regs_win
+ RIO_OM1SR
), OMSR_CLEAR
);
373 out_be32(&dbell
->dbell_regs
->odsr
, ODSR_CLEAR
);
374 out_be32(&dbell
->dbell_regs
->dsr
, IDSR_CLEAR
);
376 out_be32(&pw
->pw_regs
->pwsr
, IPWSR_CLEAR
);
380 * fsl_rio_port_write_handler - MPC85xx port write interrupt handler
381 * @irq: Linux interrupt number
382 * @dev_instance: Pointer to interrupt-specific data
384 * Handles port write interrupts. Parses a list of registered
385 * port write event handlers and executes a matching event handler.
388 fsl_rio_port_write_handler(int irq
, void *dev_instance
)
391 struct fsl_rio_pw
*pw
= (struct fsl_rio_pw
*)dev_instance
;
394 epwisr
= in_be32(rio_regs_win
+ RIO_EPWISR
);
395 if (!(epwisr
& RIO_EPWISR_PW
))
398 ipwmr
= in_be32(&pw
->pw_regs
->pwmr
);
399 ipwsr
= in_be32(&pw
->pw_regs
->pwsr
);
402 pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr
, ipwsr
);
403 if (ipwsr
& RIO_IPWSR_QF
)
405 if (ipwsr
& RIO_IPWSR_TE
)
407 if (ipwsr
& RIO_IPWSR_QFI
)
409 if (ipwsr
& RIO_IPWSR_PWD
)
411 if (ipwsr
& RIO_IPWSR_PWB
)
415 /* Schedule deferred processing if PW was received */
416 if (ipwsr
& RIO_IPWSR_QFI
) {
417 /* Save PW message (if there is room in FIFO),
418 * otherwise discard it.
420 if (kfifo_avail(&pw
->pw_fifo
) >= RIO_PW_MSG_SIZE
) {
421 pw
->port_write_msg
.msg_count
++;
422 kfifo_in(&pw
->pw_fifo
, pw
->port_write_msg
.virt
,
425 pw
->port_write_msg
.discard_count
++;
426 pr_debug("RIO: ISR Discarded Port-Write Msg(s) (%d)\n",
427 pw
->port_write_msg
.discard_count
);
429 /* Clear interrupt and issue Clear Queue command. This allows
430 * another port-write to be received.
432 out_be32(&pw
->pw_regs
->pwsr
, RIO_IPWSR_QFI
);
433 out_be32(&pw
->pw_regs
->pwmr
, ipwmr
| RIO_IPWMR_CQ
);
435 schedule_work(&pw
->pw_work
);
438 if ((ipwmr
& RIO_IPWMR_EIE
) && (ipwsr
& RIO_IPWSR_TE
)) {
439 pw
->port_write_msg
.err_count
++;
440 pr_debug("RIO: Port-Write Transaction Err (%d)\n",
441 pw
->port_write_msg
.err_count
);
442 /* Clear Transaction Error: port-write controller should be
443 * disabled when clearing this error
445 out_be32(&pw
->pw_regs
->pwmr
, ipwmr
& ~RIO_IPWMR_PWE
);
446 out_be32(&pw
->pw_regs
->pwsr
, RIO_IPWSR_TE
);
447 out_be32(&pw
->pw_regs
->pwmr
, ipwmr
);
450 if (ipwsr
& RIO_IPWSR_PWD
) {
451 pw
->port_write_msg
.discard_count
++;
452 pr_debug("RIO: Port Discarded Port-Write Msg(s) (%d)\n",
453 pw
->port_write_msg
.discard_count
);
454 out_be32(&pw
->pw_regs
->pwsr
, RIO_IPWSR_PWD
);
458 if (epwisr
& RIO_EPWISR_PINT1
) {
459 tmp
= in_be32(rio_regs_win
+ RIO_LTLEDCSR
);
460 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp
);
461 fsl_rio_port_error_handler(0);
464 if (epwisr
& RIO_EPWISR_PINT2
) {
465 tmp
= in_be32(rio_regs_win
+ RIO_LTLEDCSR
);
466 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp
);
467 fsl_rio_port_error_handler(1);
470 if (epwisr
& RIO_EPWISR_MU
) {
471 tmp
= in_be32(rio_regs_win
+ RIO_LTLEDCSR
);
472 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp
);
473 msg_unit_error_handler();
479 static void fsl_pw_dpc(struct work_struct
*work
)
481 struct fsl_rio_pw
*pw
= container_of(work
, struct fsl_rio_pw
, pw_work
);
482 u32 msg_buffer
[RIO_PW_MSG_SIZE
/sizeof(u32
)];
485 * Process port-write messages
487 while (kfifo_out_spinlocked(&pw
->pw_fifo
, (unsigned char *)msg_buffer
,
488 RIO_PW_MSG_SIZE
, &pw
->pw_fifo_lock
)) {
489 /* Process one message */
493 pr_debug("%s : Port-Write Message:", __func__
);
494 for (i
= 0; i
< RIO_PW_MSG_SIZE
/sizeof(u32
); i
++) {
496 pr_debug("\n0x%02x: 0x%08x", i
*4,
499 pr_debug(" 0x%08x", msg_buffer
[i
]);
504 /* Pass the port-write message to RIO core for processing */
505 rio_inb_pwrite_handler((union rio_pw_msg
*)msg_buffer
);
510 * fsl_rio_pw_enable - enable/disable port-write interface init
511 * @mport: Master port implementing the port write unit
512 * @enable: 1=enable; 0=disable port-write message handling
514 int fsl_rio_pw_enable(struct rio_mport
*mport
, int enable
)
518 rval
= in_be32(&pw
->pw_regs
->pwmr
);
521 rval
|= RIO_IPWMR_PWE
;
523 rval
&= ~RIO_IPWMR_PWE
;
525 out_be32(&pw
->pw_regs
->pwmr
, rval
);
531 * fsl_rio_port_write_init - MPC85xx port write interface init
532 * @mport: Master port implementing the port write unit
534 * Initializes port write unit hardware and DMA buffer
535 * ring. Called from fsl_rio_setup(). Returns %0 on success
536 * or %-ENOMEM on failure.
539 int fsl_rio_port_write_init(struct fsl_rio_pw
*pw
)
543 /* Following configurations require a disabled port write controller */
544 out_be32(&pw
->pw_regs
->pwmr
,
545 in_be32(&pw
->pw_regs
->pwmr
) & ~RIO_IPWMR_PWE
);
547 /* Initialize port write */
548 pw
->port_write_msg
.virt
= dma_alloc_coherent(pw
->dev
,
550 &pw
->port_write_msg
.phys
, GFP_KERNEL
);
551 if (!pw
->port_write_msg
.virt
) {
552 pr_err("RIO: unable allocate port write queue\n");
556 pw
->port_write_msg
.err_count
= 0;
557 pw
->port_write_msg
.discard_count
= 0;
559 /* Point dequeue/enqueue pointers at first entry */
560 out_be32(&pw
->pw_regs
->epwqbar
, 0);
561 out_be32(&pw
->pw_regs
->pwqbar
, (u32
) pw
->port_write_msg
.phys
);
563 pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n",
564 in_be32(&pw
->pw_regs
->epwqbar
),
565 in_be32(&pw
->pw_regs
->pwqbar
));
567 /* Clear interrupt status IPWSR */
568 out_be32(&pw
->pw_regs
->pwsr
,
569 (RIO_IPWSR_TE
| RIO_IPWSR_QFI
| RIO_IPWSR_PWD
));
571 /* Configure port write contoller for snooping enable all reporting,
573 out_be32(&pw
->pw_regs
->pwmr
,
574 RIO_IPWMR_SEN
| RIO_IPWMR_QFIE
| RIO_IPWMR_EIE
| RIO_IPWMR_CQ
);
577 /* Hook up port-write handler */
578 rc
= request_irq(IRQ_RIO_PW(pw
), fsl_rio_port_write_handler
,
579 IRQF_SHARED
, "port-write", (void *)pw
);
581 pr_err("MPC85xx RIO: unable to request inbound doorbell irq");
584 /* Enable Error Interrupt */
585 out_be32((u32
*)(rio_regs_win
+ RIO_LTLEECSR
), LTLEECSR_ENABLE_ALL
);
587 INIT_WORK(&pw
->pw_work
, fsl_pw_dpc
);
588 spin_lock_init(&pw
->pw_fifo_lock
);
589 if (kfifo_alloc(&pw
->pw_fifo
, RIO_PW_MSG_SIZE
* 32, GFP_KERNEL
)) {
590 pr_err("FIFO allocation failed\n");
595 pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n",
596 in_be32(&pw
->pw_regs
->pwmr
),
597 in_be32(&pw
->pw_regs
->pwsr
));
602 free_irq(IRQ_RIO_PW(pw
), (void *)pw
);
604 dma_free_coherent(pw
->dev
, RIO_PW_MSG_SIZE
,
605 pw
->port_write_msg
.virt
,
606 pw
->port_write_msg
.phys
);
611 * fsl_rio_doorbell_send - Send a MPC85xx doorbell message
612 * @mport: RapidIO master port info
613 * @index: ID of RapidIO interface
614 * @destid: Destination ID of target device
615 * @data: 16-bit info field of RapidIO doorbell message
617 * Sends a MPC85xx doorbell message. Returns %0 on success or
618 * %-EINVAL on failure.
620 int fsl_rio_doorbell_send(struct rio_mport
*mport
,
621 int index
, u16 destid
, u16 data
)
623 pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
624 index
, destid
, data
);
626 /* In the serial version silicons, such as MPC8548, MPC8641,
627 * below operations is must be.
629 out_be32(&dbell
->dbell_regs
->odmr
, 0x00000000);
630 out_be32(&dbell
->dbell_regs
->odretcr
, 0x00000004);
631 out_be32(&dbell
->dbell_regs
->oddpr
, destid
<< 16);
632 out_be32(&dbell
->dbell_regs
->oddatr
, (index
<< 20) | data
);
633 out_be32(&dbell
->dbell_regs
->odmr
, 0x00000001);
639 * fsl_add_outb_message - Add message to the MPC85xx outbound message queue
640 * @mport: Master port with outbound message queue
641 * @rdev: Target of outbound message
642 * @mbox: Outbound mailbox
643 * @buffer: Message to add to outbound queue
644 * @len: Length of message
646 * Adds the @buffer message to the MPC85xx outbound message queue. Returns
647 * %0 on success or %-EINVAL on failure.
650 fsl_add_outb_message(struct rio_mport
*mport
, struct rio_dev
*rdev
, int mbox
,
651 void *buffer
, size_t len
)
653 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
655 struct rio_tx_desc
*desc
= (struct rio_tx_desc
*)rmu
->msg_tx_ring
.virt
656 + rmu
->msg_tx_ring
.tx_slot
;
659 pr_debug("RIO: fsl_add_outb_message(): destid %4.4x mbox %d buffer " \
660 "%8.8x len %8.8x\n", rdev
->destid
, mbox
, (int)buffer
, len
);
661 if ((len
< 8) || (len
> RIO_MAX_MSG_SIZE
)) {
666 /* Copy and clear rest of buffer */
667 memcpy(rmu
->msg_tx_ring
.virt_buffer
[rmu
->msg_tx_ring
.tx_slot
], buffer
,
669 if (len
< (RIO_MAX_MSG_SIZE
- 4))
670 memset(rmu
->msg_tx_ring
.virt_buffer
[rmu
->msg_tx_ring
.tx_slot
]
671 + len
, 0, RIO_MAX_MSG_SIZE
- len
);
673 /* Set mbox field for message, and set destid */
674 desc
->dport
= (rdev
->destid
<< 16) | (mbox
& 0x3);
676 /* Enable EOMI interrupt and priority */
677 desc
->dattr
= 0x28000000 | ((mport
->index
) << 20);
679 /* Set transfer size aligned to next power of 2 (in double words) */
680 desc
->dwcnt
= is_power_of_2(len
) ? len
: 1 << get_bitmask_order(len
);
682 /* Set snooping and source buffer address */
683 desc
->saddr
= 0x00000004
684 | rmu
->msg_tx_ring
.phys_buffer
[rmu
->msg_tx_ring
.tx_slot
];
686 /* Increment enqueue pointer */
687 omr
= in_be32(&rmu
->msg_regs
->omr
);
688 out_be32(&rmu
->msg_regs
->omr
, omr
| RIO_MSG_OMR_MUI
);
690 /* Go to next descriptor */
691 if (++rmu
->msg_tx_ring
.tx_slot
== rmu
->msg_tx_ring
.size
)
692 rmu
->msg_tx_ring
.tx_slot
= 0;
699 * fsl_open_outb_mbox - Initialize MPC85xx outbound mailbox
700 * @mport: Master port implementing the outbound message unit
701 * @dev_id: Device specific pointer to pass on event
702 * @mbox: Mailbox to open
703 * @entries: Number of entries in the outbound mailbox ring
705 * Initializes buffer ring, request the outbound message interrupt,
706 * and enables the outbound message unit. Returns %0 on success and
707 * %-EINVAL or %-ENOMEM on failure.
710 fsl_open_outb_mbox(struct rio_mport
*mport
, void *dev_id
, int mbox
, int entries
)
713 struct rio_priv
*priv
= mport
->priv
;
714 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
716 if ((entries
< RIO_MIN_TX_RING_SIZE
) ||
717 (entries
> RIO_MAX_TX_RING_SIZE
) || (!is_power_of_2(entries
))) {
722 /* Initialize shadow copy ring */
723 rmu
->msg_tx_ring
.dev_id
= dev_id
;
724 rmu
->msg_tx_ring
.size
= entries
;
726 for (i
= 0; i
< rmu
->msg_tx_ring
.size
; i
++) {
727 rmu
->msg_tx_ring
.virt_buffer
[i
] =
728 dma_alloc_coherent(priv
->dev
, RIO_MSG_BUFFER_SIZE
,
729 &rmu
->msg_tx_ring
.phys_buffer
[i
], GFP_KERNEL
);
730 if (!rmu
->msg_tx_ring
.virt_buffer
[i
]) {
732 for (j
= 0; j
< rmu
->msg_tx_ring
.size
; j
++)
733 if (rmu
->msg_tx_ring
.virt_buffer
[j
])
734 dma_free_coherent(priv
->dev
,
744 /* Initialize outbound message descriptor ring */
745 rmu
->msg_tx_ring
.virt
= dma_alloc_coherent(priv
->dev
,
746 rmu
->msg_tx_ring
.size
* RIO_MSG_DESC_SIZE
,
747 &rmu
->msg_tx_ring
.phys
, GFP_KERNEL
);
748 if (!rmu
->msg_tx_ring
.virt
) {
752 memset(rmu
->msg_tx_ring
.virt
, 0,
753 rmu
->msg_tx_ring
.size
* RIO_MSG_DESC_SIZE
);
754 rmu
->msg_tx_ring
.tx_slot
= 0;
756 /* Point dequeue/enqueue pointers at first entry in ring */
757 out_be32(&rmu
->msg_regs
->odqdpar
, rmu
->msg_tx_ring
.phys
);
758 out_be32(&rmu
->msg_regs
->odqepar
, rmu
->msg_tx_ring
.phys
);
760 /* Configure for snooping */
761 out_be32(&rmu
->msg_regs
->osar
, 0x00000004);
763 /* Clear interrupt status */
764 out_be32(&rmu
->msg_regs
->osr
, 0x000000b3);
766 /* Hook up outbound message handler */
767 rc
= request_irq(IRQ_RIO_TX(mport
), fsl_rio_tx_handler
, 0,
768 "msg_tx", (void *)mport
);
773 * Configure outbound message unit
775 * Interrupts (all enabled, except QEIE)
779 out_be32(&rmu
->msg_regs
->omr
, 0x00100220);
781 /* Set number of entries */
782 out_be32(&rmu
->msg_regs
->omr
,
783 in_be32(&rmu
->msg_regs
->omr
) |
784 ((get_bitmask_order(entries
) - 2) << 12));
786 /* Now enable the unit */
787 out_be32(&rmu
->msg_regs
->omr
, in_be32(&rmu
->msg_regs
->omr
) | 0x1);
793 dma_free_coherent(priv
->dev
,
794 rmu
->msg_tx_ring
.size
* RIO_MSG_DESC_SIZE
,
795 rmu
->msg_tx_ring
.virt
, rmu
->msg_tx_ring
.phys
);
798 for (i
= 0; i
< rmu
->msg_tx_ring
.size
; i
++)
799 dma_free_coherent(priv
->dev
, RIO_MSG_BUFFER_SIZE
,
800 rmu
->msg_tx_ring
.virt_buffer
[i
],
801 rmu
->msg_tx_ring
.phys_buffer
[i
]);
807 * fsl_close_outb_mbox - Shut down MPC85xx outbound mailbox
808 * @mport: Master port implementing the outbound message unit
809 * @mbox: Mailbox to close
811 * Disables the outbound message unit, free all buffers, and
812 * frees the outbound message interrupt.
814 void fsl_close_outb_mbox(struct rio_mport
*mport
, int mbox
)
816 struct rio_priv
*priv
= mport
->priv
;
817 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
819 /* Disable inbound message unit */
820 out_be32(&rmu
->msg_regs
->omr
, 0);
823 dma_free_coherent(priv
->dev
,
824 rmu
->msg_tx_ring
.size
* RIO_MSG_DESC_SIZE
,
825 rmu
->msg_tx_ring
.virt
, rmu
->msg_tx_ring
.phys
);
828 free_irq(IRQ_RIO_TX(mport
), (void *)mport
);
832 * fsl_open_inb_mbox - Initialize MPC85xx inbound mailbox
833 * @mport: Master port implementing the inbound message unit
834 * @dev_id: Device specific pointer to pass on event
835 * @mbox: Mailbox to open
836 * @entries: Number of entries in the inbound mailbox ring
838 * Initializes buffer ring, request the inbound message interrupt,
839 * and enables the inbound message unit. Returns %0 on success
840 * and %-EINVAL or %-ENOMEM on failure.
843 fsl_open_inb_mbox(struct rio_mport
*mport
, void *dev_id
, int mbox
, int entries
)
846 struct rio_priv
*priv
= mport
->priv
;
847 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
849 if ((entries
< RIO_MIN_RX_RING_SIZE
) ||
850 (entries
> RIO_MAX_RX_RING_SIZE
) || (!is_power_of_2(entries
))) {
855 /* Initialize client buffer ring */
856 rmu
->msg_rx_ring
.dev_id
= dev_id
;
857 rmu
->msg_rx_ring
.size
= entries
;
858 rmu
->msg_rx_ring
.rx_slot
= 0;
859 for (i
= 0; i
< rmu
->msg_rx_ring
.size
; i
++)
860 rmu
->msg_rx_ring
.virt_buffer
[i
] = NULL
;
862 /* Initialize inbound message ring */
863 rmu
->msg_rx_ring
.virt
= dma_alloc_coherent(priv
->dev
,
864 rmu
->msg_rx_ring
.size
* RIO_MAX_MSG_SIZE
,
865 &rmu
->msg_rx_ring
.phys
, GFP_KERNEL
);
866 if (!rmu
->msg_rx_ring
.virt
) {
871 /* Point dequeue/enqueue pointers at first entry in ring */
872 out_be32(&rmu
->msg_regs
->ifqdpar
, (u32
) rmu
->msg_rx_ring
.phys
);
873 out_be32(&rmu
->msg_regs
->ifqepar
, (u32
) rmu
->msg_rx_ring
.phys
);
875 /* Clear interrupt status */
876 out_be32(&rmu
->msg_regs
->isr
, 0x00000091);
878 /* Hook up inbound message handler */
879 rc
= request_irq(IRQ_RIO_RX(mport
), fsl_rio_rx_handler
, 0,
880 "msg_rx", (void *)mport
);
882 dma_free_coherent(priv
->dev
, RIO_MSG_BUFFER_SIZE
,
883 rmu
->msg_tx_ring
.virt_buffer
[i
],
884 rmu
->msg_tx_ring
.phys_buffer
[i
]);
889 * Configure inbound message unit:
891 * 4KB max message size
892 * Unmask all interrupt sources
895 out_be32(&rmu
->msg_regs
->imr
, 0x001b0060);
897 /* Set number of queue entries */
898 setbits32(&rmu
->msg_regs
->imr
, (get_bitmask_order(entries
) - 2) << 12);
900 /* Now enable the unit */
901 setbits32(&rmu
->msg_regs
->imr
, 0x1);
908 * fsl_close_inb_mbox - Shut down MPC85xx inbound mailbox
909 * @mport: Master port implementing the inbound message unit
910 * @mbox: Mailbox to close
912 * Disables the inbound message unit, free all buffers, and
913 * frees the inbound message interrupt.
915 void fsl_close_inb_mbox(struct rio_mport
*mport
, int mbox
)
917 struct rio_priv
*priv
= mport
->priv
;
918 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
920 /* Disable inbound message unit */
921 out_be32(&rmu
->msg_regs
->imr
, 0);
924 dma_free_coherent(priv
->dev
, rmu
->msg_rx_ring
.size
* RIO_MAX_MSG_SIZE
,
925 rmu
->msg_rx_ring
.virt
, rmu
->msg_rx_ring
.phys
);
928 free_irq(IRQ_RIO_RX(mport
), (void *)mport
);
932 * fsl_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
933 * @mport: Master port implementing the inbound message unit
934 * @mbox: Inbound mailbox number
935 * @buf: Buffer to add to inbound queue
937 * Adds the @buf buffer to the MPC85xx inbound message queue. Returns
938 * %0 on success or %-EINVAL on failure.
940 int fsl_add_inb_buffer(struct rio_mport
*mport
, int mbox
, void *buf
)
943 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
945 pr_debug("RIO: fsl_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
946 rmu
->msg_rx_ring
.rx_slot
);
948 if (rmu
->msg_rx_ring
.virt_buffer
[rmu
->msg_rx_ring
.rx_slot
]) {
950 "RIO: error adding inbound buffer %d, buffer exists\n",
951 rmu
->msg_rx_ring
.rx_slot
);
956 rmu
->msg_rx_ring
.virt_buffer
[rmu
->msg_rx_ring
.rx_slot
] = buf
;
957 if (++rmu
->msg_rx_ring
.rx_slot
== rmu
->msg_rx_ring
.size
)
958 rmu
->msg_rx_ring
.rx_slot
= 0;
965 * fsl_get_inb_message - Fetch inbound message from the MPC85xx message unit
966 * @mport: Master port implementing the inbound message unit
967 * @mbox: Inbound mailbox number
969 * Gets the next available inbound message from the inbound message queue.
970 * A pointer to the message is returned on success or NULL on failure.
972 void *fsl_get_inb_message(struct rio_mport
*mport
, int mbox
)
974 struct fsl_rmu
*rmu
= GET_RMM_HANDLE(mport
);
975 u32 phys_buf
, virt_buf
;
979 phys_buf
= in_be32(&rmu
->msg_regs
->ifqdpar
);
981 /* If no more messages, then bail out */
982 if (phys_buf
== in_be32(&rmu
->msg_regs
->ifqepar
))
985 virt_buf
= (u32
) rmu
->msg_rx_ring
.virt
+ (phys_buf
986 - rmu
->msg_rx_ring
.phys
);
987 buf_idx
= (phys_buf
- rmu
->msg_rx_ring
.phys
) / RIO_MAX_MSG_SIZE
;
988 buf
= rmu
->msg_rx_ring
.virt_buffer
[buf_idx
];
992 "RIO: inbound message copy failed, no buffers\n");
996 /* Copy max message size, caller is expected to allocate that big */
997 memcpy(buf
, (void *)virt_buf
, RIO_MAX_MSG_SIZE
);
999 /* Clear the available buffer */
1000 rmu
->msg_rx_ring
.virt_buffer
[buf_idx
] = NULL
;
1003 setbits32(&rmu
->msg_regs
->imr
, RIO_MSG_IMR_MI
);
1010 * fsl_rio_doorbell_init - MPC85xx doorbell interface init
1011 * @mport: Master port implementing the inbound doorbell unit
1013 * Initializes doorbell unit hardware and inbound DMA buffer
1014 * ring. Called from fsl_rio_setup(). Returns %0 on success
1015 * or %-ENOMEM on failure.
1017 int fsl_rio_doorbell_init(struct fsl_rio_dbell
*dbell
)
1021 /* Initialize inbound doorbells */
1022 dbell
->dbell_ring
.virt
= dma_alloc_coherent(dbell
->dev
, 512 *
1023 DOORBELL_MESSAGE_SIZE
, &dbell
->dbell_ring
.phys
, GFP_KERNEL
);
1024 if (!dbell
->dbell_ring
.virt
) {
1025 printk(KERN_ERR
"RIO: unable allocate inbound doorbell ring\n");
1030 /* Point dequeue/enqueue pointers at first entry in ring */
1031 out_be32(&dbell
->dbell_regs
->dqdpar
, (u32
) dbell
->dbell_ring
.phys
);
1032 out_be32(&dbell
->dbell_regs
->dqepar
, (u32
) dbell
->dbell_ring
.phys
);
1034 /* Clear interrupt status */
1035 out_be32(&dbell
->dbell_regs
->dsr
, 0x00000091);
1037 /* Hook up doorbell handler */
1038 rc
= request_irq(IRQ_RIO_BELL(dbell
), fsl_rio_dbell_handler
, 0,
1039 "dbell_rx", (void *)dbell
);
1041 dma_free_coherent(dbell
->dev
, 512 * DOORBELL_MESSAGE_SIZE
,
1042 dbell
->dbell_ring
.virt
, dbell
->dbell_ring
.phys
);
1044 "MPC85xx RIO: unable to request inbound doorbell irq");
1048 /* Configure doorbells for snooping, 512 entries, and enable */
1049 out_be32(&dbell
->dbell_regs
->dmr
, 0x00108161);
1055 int fsl_rio_setup_rmu(struct rio_mport
*mport
, struct device_node
*node
)
1057 struct rio_priv
*priv
;
1058 struct fsl_rmu
*rmu
;
1060 const u32
*msg_addr
;
1064 if (!mport
|| !mport
->priv
)
1070 dev_warn(priv
->dev
, "Can't get %s property 'fsl,rmu'\n",
1071 priv
->dev
->of_node
->full_name
);
1075 rmu
= kzalloc(sizeof(struct fsl_rmu
), GFP_KERNEL
);
1079 aw
= of_n_addr_cells(node
);
1080 msg_addr
= of_get_property(node
, "reg", &mlen
);
1082 pr_err("%s: unable to find 'reg' property of message-unit\n",
1087 msg_start
= of_read_number(msg_addr
, aw
);
1089 rmu
->msg_regs
= (struct rio_msg_regs
*)
1090 (rmu_regs_win
+ (u32
)msg_start
);
1092 rmu
->txirq
= irq_of_parse_and_map(node
, 0);
1093 rmu
->rxirq
= irq_of_parse_and_map(node
, 1);
1094 printk(KERN_INFO
"%s: txirq: %d, rxirq %d\n",
1095 node
->full_name
, rmu
->txirq
, rmu
->rxirq
);
1097 priv
->rmm_handle
= rmu
;
1099 rio_init_dbell_res(&mport
->riores
[RIO_DOORBELL_RESOURCE
], 0, 0xffff);
1100 rio_init_mbox_res(&mport
->riores
[RIO_INB_MBOX_RESOURCE
], 0, 0);
1101 rio_init_mbox_res(&mport
->riores
[RIO_OUTB_MBOX_RESOURCE
], 0, 0);