16ec4bedbSLiu Gang /* 26ec4bedbSLiu Gang * Freescale MPC85xx/MPC86xx RapidIO RMU support 36ec4bedbSLiu Gang * 46ec4bedbSLiu Gang * Copyright 2009 Sysgo AG 56ec4bedbSLiu Gang * Thomas Moll <thomas.moll@sysgo.com> 66ec4bedbSLiu Gang * - fixed maintenance access routines, check for aligned access 76ec4bedbSLiu Gang * 86ec4bedbSLiu Gang * Copyright 2009 Integrated Device Technology, Inc. 96ec4bedbSLiu Gang * Alex Bounine <alexandre.bounine@idt.com> 106ec4bedbSLiu Gang * - Added Port-Write message handling 116ec4bedbSLiu Gang * - Added Machine Check exception handling 126ec4bedbSLiu Gang * 136ec4bedbSLiu Gang * Copyright (C) 2007, 2008, 2010, 2011 Freescale Semiconductor, Inc. 146ec4bedbSLiu Gang * Zhang Wei <wei.zhang@freescale.com> 156ec4bedbSLiu Gang * Lian Minghuan-B31939 <Minghuan.Lian@freescale.com> 166ec4bedbSLiu Gang * Liu Gang <Gang.Liu@freescale.com> 176ec4bedbSLiu Gang * 186ec4bedbSLiu Gang * Copyright 2005 MontaVista Software, Inc. 196ec4bedbSLiu Gang * Matt Porter <mporter@kernel.crashing.org> 206ec4bedbSLiu Gang * 216ec4bedbSLiu Gang * This program is free software; you can redistribute it and/or modify it 226ec4bedbSLiu Gang * under the terms of the GNU General Public License as published by the 236ec4bedbSLiu Gang * Free Software Foundation; either version 2 of the License, or (at your 246ec4bedbSLiu Gang * option) any later version. 256ec4bedbSLiu Gang */ 266ec4bedbSLiu Gang 276ec4bedbSLiu Gang #include <linux/types.h> 286ec4bedbSLiu Gang #include <linux/dma-mapping.h> 296ec4bedbSLiu Gang #include <linux/interrupt.h> 306ec4bedbSLiu Gang #include <linux/of_platform.h> 316ec4bedbSLiu Gang #include <linux/slab.h> 326ec4bedbSLiu Gang 336ec4bedbSLiu Gang #include "fsl_rio.h" 346ec4bedbSLiu Gang 356ec4bedbSLiu Gang #define GET_RMM_HANDLE(mport) \ 366ec4bedbSLiu Gang (((struct rio_priv *)(mport->priv))->rmm_handle) 376ec4bedbSLiu Gang 386ec4bedbSLiu Gang /* RapidIO definition irq, which read from OF-tree */ 39*abc3aeaeSLiu Gang #define IRQ_RIO_PW(m) (((struct fsl_rio_pw *)(m))->pwirq) 40*abc3aeaeSLiu Gang #define IRQ_RIO_BELL(m) (((struct fsl_rio_dbell *)(m))->bellirq) 416ec4bedbSLiu Gang #define IRQ_RIO_TX(m) (((struct fsl_rmu *)(GET_RMM_HANDLE(m)))->txirq) 426ec4bedbSLiu Gang #define IRQ_RIO_RX(m) (((struct fsl_rmu *)(GET_RMM_HANDLE(m)))->rxirq) 436ec4bedbSLiu Gang 446ec4bedbSLiu Gang #define RIO_MIN_TX_RING_SIZE 2 456ec4bedbSLiu Gang #define RIO_MAX_TX_RING_SIZE 2048 466ec4bedbSLiu Gang #define RIO_MIN_RX_RING_SIZE 2 476ec4bedbSLiu Gang #define RIO_MAX_RX_RING_SIZE 2048 486ec4bedbSLiu Gang 496ec4bedbSLiu Gang #define RIO_IPWMR_SEN 0x00100000 506ec4bedbSLiu Gang #define RIO_IPWMR_QFIE 0x00000100 516ec4bedbSLiu Gang #define RIO_IPWMR_EIE 0x00000020 526ec4bedbSLiu Gang #define RIO_IPWMR_CQ 0x00000002 536ec4bedbSLiu Gang #define RIO_IPWMR_PWE 0x00000001 546ec4bedbSLiu Gang 556ec4bedbSLiu Gang #define RIO_IPWSR_QF 0x00100000 566ec4bedbSLiu Gang #define RIO_IPWSR_TE 0x00000080 576ec4bedbSLiu Gang #define RIO_IPWSR_QFI 0x00000010 586ec4bedbSLiu Gang #define RIO_IPWSR_PWD 0x00000008 596ec4bedbSLiu Gang #define RIO_IPWSR_PWB 0x00000004 606ec4bedbSLiu Gang 616ec4bedbSLiu Gang #define RIO_EPWISR 0x10010 626ec4bedbSLiu Gang /* EPWISR Error match value */ 636ec4bedbSLiu Gang #define RIO_EPWISR_PINT1 0x80000000 646ec4bedbSLiu Gang #define RIO_EPWISR_PINT2 0x40000000 656ec4bedbSLiu Gang #define RIO_EPWISR_MU 0x00000002 666ec4bedbSLiu Gang #define RIO_EPWISR_PW 0x00000001 676ec4bedbSLiu Gang 686ec4bedbSLiu Gang #define IPWSR_CLEAR 0x98 696ec4bedbSLiu Gang #define OMSR_CLEAR 0x1cb3 706ec4bedbSLiu Gang #define IMSR_CLEAR 0x491 716ec4bedbSLiu Gang #define IDSR_CLEAR 0x91 726ec4bedbSLiu Gang #define ODSR_CLEAR 0x1c00 736ec4bedbSLiu Gang #define LTLEECSR_ENABLE_ALL 0xFFC000FC 746ec4bedbSLiu Gang #define RIO_LTLEECSR 0x060c 756ec4bedbSLiu Gang 76*abc3aeaeSLiu Gang #define RIO_IM0SR 0x64 77*abc3aeaeSLiu Gang #define RIO_IM1SR 0x164 78*abc3aeaeSLiu Gang #define RIO_OM0SR 0x4 79*abc3aeaeSLiu Gang #define RIO_OM1SR 0x104 806ec4bedbSLiu Gang 816ec4bedbSLiu Gang #define RIO_DBELL_WIN_SIZE 0x1000 826ec4bedbSLiu Gang 836ec4bedbSLiu Gang #define RIO_MSG_OMR_MUI 0x00000002 846ec4bedbSLiu Gang #define RIO_MSG_OSR_TE 0x00000080 856ec4bedbSLiu Gang #define RIO_MSG_OSR_QOI 0x00000020 866ec4bedbSLiu Gang #define RIO_MSG_OSR_QFI 0x00000010 876ec4bedbSLiu Gang #define RIO_MSG_OSR_MUB 0x00000004 886ec4bedbSLiu Gang #define RIO_MSG_OSR_EOMI 0x00000002 896ec4bedbSLiu Gang #define RIO_MSG_OSR_QEI 0x00000001 906ec4bedbSLiu Gang 916ec4bedbSLiu Gang #define RIO_MSG_IMR_MI 0x00000002 926ec4bedbSLiu Gang #define RIO_MSG_ISR_TE 0x00000080 936ec4bedbSLiu Gang #define RIO_MSG_ISR_QFI 0x00000010 946ec4bedbSLiu Gang #define RIO_MSG_ISR_DIQI 0x00000001 956ec4bedbSLiu Gang 966ec4bedbSLiu Gang #define RIO_MSG_DESC_SIZE 32 976ec4bedbSLiu Gang #define RIO_MSG_BUFFER_SIZE 4096 986ec4bedbSLiu Gang 996ec4bedbSLiu Gang #define DOORBELL_DMR_DI 0x00000002 1006ec4bedbSLiu Gang #define DOORBELL_DSR_TE 0x00000080 1016ec4bedbSLiu Gang #define DOORBELL_DSR_QFI 0x00000010 1026ec4bedbSLiu Gang #define DOORBELL_DSR_DIQI 0x00000001 1036ec4bedbSLiu Gang #define DOORBELL_TID_OFFSET 0x02 1046ec4bedbSLiu Gang #define DOORBELL_SID_OFFSET 0x04 1056ec4bedbSLiu Gang #define DOORBELL_INFO_OFFSET 0x06 1066ec4bedbSLiu Gang 1076ec4bedbSLiu Gang #define DOORBELL_MESSAGE_SIZE 0x08 1086ec4bedbSLiu Gang #define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET)) 1096ec4bedbSLiu Gang #define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET)) 1106ec4bedbSLiu Gang #define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET)) 1116ec4bedbSLiu Gang 1126ec4bedbSLiu Gang struct rio_msg_regs { 113*abc3aeaeSLiu Gang u32 omr; 114*abc3aeaeSLiu Gang u32 osr; 1156ec4bedbSLiu Gang u32 pad1; 116*abc3aeaeSLiu Gang u32 odqdpar; 1176ec4bedbSLiu Gang u32 pad2; 118*abc3aeaeSLiu Gang u32 osar; 119*abc3aeaeSLiu Gang u32 odpr; 120*abc3aeaeSLiu Gang u32 odatr; 121*abc3aeaeSLiu Gang u32 odcr; 1226ec4bedbSLiu Gang u32 pad3; 123*abc3aeaeSLiu Gang u32 odqepar; 1246ec4bedbSLiu Gang u32 pad4[13]; 125*abc3aeaeSLiu Gang u32 imr; 126*abc3aeaeSLiu Gang u32 isr; 1276ec4bedbSLiu Gang u32 pad5; 128*abc3aeaeSLiu Gang u32 ifqdpar; 1296ec4bedbSLiu Gang u32 pad6; 130*abc3aeaeSLiu Gang u32 ifqepar; 1316ec4bedbSLiu Gang }; 1326ec4bedbSLiu Gang 133*abc3aeaeSLiu Gang struct rio_dbell_regs { 134*abc3aeaeSLiu Gang u32 odmr; 135*abc3aeaeSLiu Gang u32 odsr; 136*abc3aeaeSLiu Gang u32 pad1[4]; 137*abc3aeaeSLiu Gang u32 oddpr; 138*abc3aeaeSLiu Gang u32 oddatr; 139*abc3aeaeSLiu Gang u32 pad2[3]; 140*abc3aeaeSLiu Gang u32 odretcr; 141*abc3aeaeSLiu Gang u32 pad3[12]; 142*abc3aeaeSLiu Gang u32 dmr; 143*abc3aeaeSLiu Gang u32 dsr; 144*abc3aeaeSLiu Gang u32 pad4; 145*abc3aeaeSLiu Gang u32 dqdpar; 146*abc3aeaeSLiu Gang u32 pad5; 147*abc3aeaeSLiu Gang u32 dqepar; 148*abc3aeaeSLiu Gang }; 149*abc3aeaeSLiu Gang 150*abc3aeaeSLiu Gang struct rio_pw_regs { 151*abc3aeaeSLiu Gang u32 pwmr; 152*abc3aeaeSLiu Gang u32 pwsr; 153*abc3aeaeSLiu Gang u32 epwqbar; 154*abc3aeaeSLiu Gang u32 pwqbar; 155*abc3aeaeSLiu Gang }; 156*abc3aeaeSLiu Gang 157*abc3aeaeSLiu Gang 1586ec4bedbSLiu Gang struct rio_tx_desc { 159*abc3aeaeSLiu Gang u32 pad1; 1606ec4bedbSLiu Gang u32 saddr; 1616ec4bedbSLiu Gang u32 dport; 1626ec4bedbSLiu Gang u32 dattr; 163*abc3aeaeSLiu Gang u32 pad2; 164*abc3aeaeSLiu Gang u32 pad3; 1656ec4bedbSLiu Gang u32 dwcnt; 166*abc3aeaeSLiu Gang u32 pad4; 1676ec4bedbSLiu Gang }; 1686ec4bedbSLiu Gang 1696ec4bedbSLiu Gang struct rio_msg_tx_ring { 1706ec4bedbSLiu Gang void *virt; 1716ec4bedbSLiu Gang dma_addr_t phys; 1726ec4bedbSLiu Gang void *virt_buffer[RIO_MAX_TX_RING_SIZE]; 1736ec4bedbSLiu Gang dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE]; 1746ec4bedbSLiu Gang int tx_slot; 1756ec4bedbSLiu Gang int size; 1766ec4bedbSLiu Gang void *dev_id; 1776ec4bedbSLiu Gang }; 1786ec4bedbSLiu Gang 1796ec4bedbSLiu Gang struct rio_msg_rx_ring { 1806ec4bedbSLiu Gang void *virt; 1816ec4bedbSLiu Gang dma_addr_t phys; 1826ec4bedbSLiu Gang void *virt_buffer[RIO_MAX_RX_RING_SIZE]; 1836ec4bedbSLiu Gang int rx_slot; 1846ec4bedbSLiu Gang int size; 1856ec4bedbSLiu Gang void *dev_id; 1866ec4bedbSLiu Gang }; 1876ec4bedbSLiu Gang 1886ec4bedbSLiu Gang struct fsl_rmu { 1896ec4bedbSLiu Gang struct rio_msg_regs __iomem *msg_regs; 1906ec4bedbSLiu Gang struct rio_msg_tx_ring msg_tx_ring; 1916ec4bedbSLiu Gang struct rio_msg_rx_ring msg_rx_ring; 1926ec4bedbSLiu Gang int txirq; 1936ec4bedbSLiu Gang int rxirq; 1946ec4bedbSLiu Gang }; 1956ec4bedbSLiu Gang 1966ec4bedbSLiu Gang /** 1976ec4bedbSLiu Gang * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler 1986ec4bedbSLiu Gang * @irq: Linux interrupt number 1996ec4bedbSLiu Gang * @dev_instance: Pointer to interrupt-specific data 2006ec4bedbSLiu Gang * 2016ec4bedbSLiu Gang * Handles outbound message interrupts. Executes a register outbound 2026ec4bedbSLiu Gang * mailbox event handler and acks the interrupt occurrence. 2036ec4bedbSLiu Gang */ 2046ec4bedbSLiu Gang static irqreturn_t 2056ec4bedbSLiu Gang fsl_rio_tx_handler(int irq, void *dev_instance) 2066ec4bedbSLiu Gang { 2076ec4bedbSLiu Gang int osr; 2086ec4bedbSLiu Gang struct rio_mport *port = (struct rio_mport *)dev_instance; 2096ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(port); 2106ec4bedbSLiu Gang 2116ec4bedbSLiu Gang osr = in_be32(&rmu->msg_regs->osr); 2126ec4bedbSLiu Gang 2136ec4bedbSLiu Gang if (osr & RIO_MSG_OSR_TE) { 2146ec4bedbSLiu Gang pr_info("RIO: outbound message transmission error\n"); 2156ec4bedbSLiu Gang out_be32(&rmu->msg_regs->osr, RIO_MSG_OSR_TE); 2166ec4bedbSLiu Gang goto out; 2176ec4bedbSLiu Gang } 2186ec4bedbSLiu Gang 2196ec4bedbSLiu Gang if (osr & RIO_MSG_OSR_QOI) { 2206ec4bedbSLiu Gang pr_info("RIO: outbound message queue overflow\n"); 2216ec4bedbSLiu Gang out_be32(&rmu->msg_regs->osr, RIO_MSG_OSR_QOI); 2226ec4bedbSLiu Gang goto out; 2236ec4bedbSLiu Gang } 2246ec4bedbSLiu Gang 2256ec4bedbSLiu Gang if (osr & RIO_MSG_OSR_EOMI) { 2266ec4bedbSLiu Gang u32 dqp = in_be32(&rmu->msg_regs->odqdpar); 2276ec4bedbSLiu Gang int slot = (dqp - rmu->msg_tx_ring.phys) >> 5; 228*abc3aeaeSLiu Gang if (port->outb_msg[0].mcback != NULL) { 229*abc3aeaeSLiu Gang port->outb_msg[0].mcback(port, rmu->msg_tx_ring.dev_id, 230*abc3aeaeSLiu Gang -1, 2316ec4bedbSLiu Gang slot); 232*abc3aeaeSLiu Gang } 2336ec4bedbSLiu Gang /* Ack the end-of-message interrupt */ 2346ec4bedbSLiu Gang out_be32(&rmu->msg_regs->osr, RIO_MSG_OSR_EOMI); 2356ec4bedbSLiu Gang } 2366ec4bedbSLiu Gang 2376ec4bedbSLiu Gang out: 2386ec4bedbSLiu Gang return IRQ_HANDLED; 2396ec4bedbSLiu Gang } 2406ec4bedbSLiu Gang 2416ec4bedbSLiu Gang /** 2426ec4bedbSLiu Gang * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler 2436ec4bedbSLiu Gang * @irq: Linux interrupt number 2446ec4bedbSLiu Gang * @dev_instance: Pointer to interrupt-specific data 2456ec4bedbSLiu Gang * 2466ec4bedbSLiu Gang * Handles inbound message interrupts. Executes a registered inbound 2476ec4bedbSLiu Gang * mailbox event handler and acks the interrupt occurrence. 2486ec4bedbSLiu Gang */ 2496ec4bedbSLiu Gang static irqreturn_t 2506ec4bedbSLiu Gang fsl_rio_rx_handler(int irq, void *dev_instance) 2516ec4bedbSLiu Gang { 2526ec4bedbSLiu Gang int isr; 2536ec4bedbSLiu Gang struct rio_mport *port = (struct rio_mport *)dev_instance; 2546ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(port); 2556ec4bedbSLiu Gang 2566ec4bedbSLiu Gang isr = in_be32(&rmu->msg_regs->isr); 2576ec4bedbSLiu Gang 2586ec4bedbSLiu Gang if (isr & RIO_MSG_ISR_TE) { 2596ec4bedbSLiu Gang pr_info("RIO: inbound message reception error\n"); 2606ec4bedbSLiu Gang out_be32((void *)&rmu->msg_regs->isr, RIO_MSG_ISR_TE); 2616ec4bedbSLiu Gang goto out; 2626ec4bedbSLiu Gang } 2636ec4bedbSLiu Gang 2646ec4bedbSLiu Gang /* XXX Need to check/dispatch until queue empty */ 2656ec4bedbSLiu Gang if (isr & RIO_MSG_ISR_DIQI) { 2666ec4bedbSLiu Gang /* 267*abc3aeaeSLiu Gang * Can receive messages for any mailbox/letter to that 268*abc3aeaeSLiu Gang * mailbox destination. So, make the callback with an 269*abc3aeaeSLiu Gang * unknown/invalid mailbox number argument. 2706ec4bedbSLiu Gang */ 271*abc3aeaeSLiu Gang if (port->inb_msg[0].mcback != NULL) 272*abc3aeaeSLiu Gang port->inb_msg[0].mcback(port, rmu->msg_rx_ring.dev_id, 273*abc3aeaeSLiu Gang -1, 274*abc3aeaeSLiu Gang -1); 2756ec4bedbSLiu Gang 2766ec4bedbSLiu Gang /* Ack the queueing interrupt */ 2776ec4bedbSLiu Gang out_be32(&rmu->msg_regs->isr, RIO_MSG_ISR_DIQI); 2786ec4bedbSLiu Gang } 2796ec4bedbSLiu Gang 2806ec4bedbSLiu Gang out: 2816ec4bedbSLiu Gang return IRQ_HANDLED; 2826ec4bedbSLiu Gang } 2836ec4bedbSLiu Gang 2846ec4bedbSLiu Gang /** 2856ec4bedbSLiu Gang * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler 2866ec4bedbSLiu Gang * @irq: Linux interrupt number 2876ec4bedbSLiu Gang * @dev_instance: Pointer to interrupt-specific data 2886ec4bedbSLiu Gang * 2896ec4bedbSLiu Gang * Handles doorbell interrupts. Parses a list of registered 2906ec4bedbSLiu Gang * doorbell event handlers and executes a matching event handler. 2916ec4bedbSLiu Gang */ 2926ec4bedbSLiu Gang static irqreturn_t 2936ec4bedbSLiu Gang fsl_rio_dbell_handler(int irq, void *dev_instance) 2946ec4bedbSLiu Gang { 2956ec4bedbSLiu Gang int dsr; 296*abc3aeaeSLiu Gang struct fsl_rio_dbell *fsl_dbell = (struct fsl_rio_dbell *)dev_instance; 297*abc3aeaeSLiu Gang int i; 2986ec4bedbSLiu Gang 299*abc3aeaeSLiu Gang dsr = in_be32(&fsl_dbell->dbell_regs->dsr); 3006ec4bedbSLiu Gang 3016ec4bedbSLiu Gang if (dsr & DOORBELL_DSR_TE) { 3026ec4bedbSLiu Gang pr_info("RIO: doorbell reception error\n"); 303*abc3aeaeSLiu Gang out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_TE); 3046ec4bedbSLiu Gang goto out; 3056ec4bedbSLiu Gang } 3066ec4bedbSLiu Gang 3076ec4bedbSLiu Gang if (dsr & DOORBELL_DSR_QFI) { 3086ec4bedbSLiu Gang pr_info("RIO: doorbell queue full\n"); 309*abc3aeaeSLiu Gang out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_QFI); 3106ec4bedbSLiu Gang } 3116ec4bedbSLiu Gang 3126ec4bedbSLiu Gang /* XXX Need to check/dispatch until queue empty */ 3136ec4bedbSLiu Gang if (dsr & DOORBELL_DSR_DIQI) { 3146ec4bedbSLiu Gang u32 dmsg = 315*abc3aeaeSLiu Gang (u32) fsl_dbell->dbell_ring.virt + 316*abc3aeaeSLiu Gang (in_be32(&fsl_dbell->dbell_regs->dqdpar) & 0xfff); 3176ec4bedbSLiu Gang struct rio_dbell *dbell; 3186ec4bedbSLiu Gang int found = 0; 3196ec4bedbSLiu Gang 3206ec4bedbSLiu Gang pr_debug 3216ec4bedbSLiu Gang ("RIO: processing doorbell," 3226ec4bedbSLiu Gang " sid %2.2x tid %2.2x info %4.4x\n", 3236ec4bedbSLiu Gang DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg)); 3246ec4bedbSLiu Gang 325*abc3aeaeSLiu Gang for (i = 0; i < MAX_PORT_NUM; i++) { 326*abc3aeaeSLiu Gang if (fsl_dbell->mport[i]) { 327*abc3aeaeSLiu Gang list_for_each_entry(dbell, 328*abc3aeaeSLiu Gang &fsl_dbell->mport[i]->dbells, node) { 329*abc3aeaeSLiu Gang if ((dbell->res->start 330*abc3aeaeSLiu Gang <= DBELL_INF(dmsg)) 331*abc3aeaeSLiu Gang && (dbell->res->end 332*abc3aeaeSLiu Gang >= DBELL_INF(dmsg))) { 3336ec4bedbSLiu Gang found = 1; 3346ec4bedbSLiu Gang break; 3356ec4bedbSLiu Gang } 3366ec4bedbSLiu Gang } 337*abc3aeaeSLiu Gang if (found && dbell->dinb) { 338*abc3aeaeSLiu Gang dbell->dinb(fsl_dbell->mport[i], 339*abc3aeaeSLiu Gang dbell->dev_id, DBELL_SID(dmsg), 340*abc3aeaeSLiu Gang DBELL_TID(dmsg), 341*abc3aeaeSLiu Gang DBELL_INF(dmsg)); 342*abc3aeaeSLiu Gang break; 343*abc3aeaeSLiu Gang } 344*abc3aeaeSLiu Gang } 345*abc3aeaeSLiu Gang } 346*abc3aeaeSLiu Gang 347*abc3aeaeSLiu Gang if (!found) { 3486ec4bedbSLiu Gang pr_debug 3496ec4bedbSLiu Gang ("RIO: spurious doorbell," 3506ec4bedbSLiu Gang " sid %2.2x tid %2.2x info %4.4x\n", 3516ec4bedbSLiu Gang DBELL_SID(dmsg), DBELL_TID(dmsg), 3526ec4bedbSLiu Gang DBELL_INF(dmsg)); 3536ec4bedbSLiu Gang } 354*abc3aeaeSLiu Gang setbits32(&fsl_dbell->dbell_regs->dmr, DOORBELL_DMR_DI); 355*abc3aeaeSLiu Gang out_be32(&fsl_dbell->dbell_regs->dsr, DOORBELL_DSR_DIQI); 3566ec4bedbSLiu Gang } 3576ec4bedbSLiu Gang 3586ec4bedbSLiu Gang out: 3596ec4bedbSLiu Gang return IRQ_HANDLED; 3606ec4bedbSLiu Gang } 3616ec4bedbSLiu Gang 362*abc3aeaeSLiu Gang void msg_unit_error_handler(void) 3636ec4bedbSLiu Gang { 3646ec4bedbSLiu Gang 3656ec4bedbSLiu Gang /*XXX: Error recovery is not implemented, we just clear errors */ 3666ec4bedbSLiu Gang out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0); 3676ec4bedbSLiu Gang 368*abc3aeaeSLiu Gang out_be32((u32 *)(rmu_regs_win + RIO_IM0SR), IMSR_CLEAR); 369*abc3aeaeSLiu Gang out_be32((u32 *)(rmu_regs_win + RIO_IM1SR), IMSR_CLEAR); 370*abc3aeaeSLiu Gang out_be32((u32 *)(rmu_regs_win + RIO_OM0SR), OMSR_CLEAR); 371*abc3aeaeSLiu Gang out_be32((u32 *)(rmu_regs_win + RIO_OM1SR), OMSR_CLEAR); 3726ec4bedbSLiu Gang 373*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->odsr, ODSR_CLEAR); 374*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->dsr, IDSR_CLEAR); 3756ec4bedbSLiu Gang 376*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwsr, IPWSR_CLEAR); 3776ec4bedbSLiu Gang } 3786ec4bedbSLiu Gang 3796ec4bedbSLiu Gang /** 3806ec4bedbSLiu Gang * fsl_rio_port_write_handler - MPC85xx port write interrupt handler 3816ec4bedbSLiu Gang * @irq: Linux interrupt number 3826ec4bedbSLiu Gang * @dev_instance: Pointer to interrupt-specific data 3836ec4bedbSLiu Gang * 3846ec4bedbSLiu Gang * Handles port write interrupts. Parses a list of registered 3856ec4bedbSLiu Gang * port write event handlers and executes a matching event handler. 3866ec4bedbSLiu Gang */ 3876ec4bedbSLiu Gang static irqreturn_t 3886ec4bedbSLiu Gang fsl_rio_port_write_handler(int irq, void *dev_instance) 3896ec4bedbSLiu Gang { 3906ec4bedbSLiu Gang u32 ipwmr, ipwsr; 391*abc3aeaeSLiu Gang struct fsl_rio_pw *pw = (struct fsl_rio_pw *)dev_instance; 3926ec4bedbSLiu Gang u32 epwisr, tmp; 3936ec4bedbSLiu Gang 394*abc3aeaeSLiu Gang epwisr = in_be32(rio_regs_win + RIO_EPWISR); 3956ec4bedbSLiu Gang if (!(epwisr & RIO_EPWISR_PW)) 3966ec4bedbSLiu Gang goto pw_done; 3976ec4bedbSLiu Gang 398*abc3aeaeSLiu Gang ipwmr = in_be32(&pw->pw_regs->pwmr); 399*abc3aeaeSLiu Gang ipwsr = in_be32(&pw->pw_regs->pwsr); 4006ec4bedbSLiu Gang 4016ec4bedbSLiu Gang #ifdef DEBUG_PW 4026ec4bedbSLiu Gang pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr, ipwsr); 4036ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_QF) 4046ec4bedbSLiu Gang pr_debug(" QF"); 4056ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_TE) 4066ec4bedbSLiu Gang pr_debug(" TE"); 4076ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_QFI) 4086ec4bedbSLiu Gang pr_debug(" QFI"); 4096ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_PWD) 4106ec4bedbSLiu Gang pr_debug(" PWD"); 4116ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_PWB) 4126ec4bedbSLiu Gang pr_debug(" PWB"); 4136ec4bedbSLiu Gang pr_debug(" )\n"); 4146ec4bedbSLiu Gang #endif 4156ec4bedbSLiu Gang /* Schedule deferred processing if PW was received */ 4166ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_QFI) { 4176ec4bedbSLiu Gang /* Save PW message (if there is room in FIFO), 4186ec4bedbSLiu Gang * otherwise discard it. 4196ec4bedbSLiu Gang */ 420*abc3aeaeSLiu Gang if (kfifo_avail(&pw->pw_fifo) >= RIO_PW_MSG_SIZE) { 421*abc3aeaeSLiu Gang pw->port_write_msg.msg_count++; 422*abc3aeaeSLiu Gang kfifo_in(&pw->pw_fifo, pw->port_write_msg.virt, 4236ec4bedbSLiu Gang RIO_PW_MSG_SIZE); 4246ec4bedbSLiu Gang } else { 425*abc3aeaeSLiu Gang pw->port_write_msg.discard_count++; 4266ec4bedbSLiu Gang pr_debug("RIO: ISR Discarded Port-Write Msg(s) (%d)\n", 427*abc3aeaeSLiu Gang pw->port_write_msg.discard_count); 4286ec4bedbSLiu Gang } 4296ec4bedbSLiu Gang /* Clear interrupt and issue Clear Queue command. This allows 4306ec4bedbSLiu Gang * another port-write to be received. 4316ec4bedbSLiu Gang */ 432*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwsr, RIO_IPWSR_QFI); 433*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, ipwmr | RIO_IPWMR_CQ); 4346ec4bedbSLiu Gang 435*abc3aeaeSLiu Gang schedule_work(&pw->pw_work); 4366ec4bedbSLiu Gang } 4376ec4bedbSLiu Gang 4386ec4bedbSLiu Gang if ((ipwmr & RIO_IPWMR_EIE) && (ipwsr & RIO_IPWSR_TE)) { 439*abc3aeaeSLiu Gang pw->port_write_msg.err_count++; 4406ec4bedbSLiu Gang pr_debug("RIO: Port-Write Transaction Err (%d)\n", 441*abc3aeaeSLiu Gang pw->port_write_msg.err_count); 4426ec4bedbSLiu Gang /* Clear Transaction Error: port-write controller should be 4436ec4bedbSLiu Gang * disabled when clearing this error 4446ec4bedbSLiu Gang */ 445*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, ipwmr & ~RIO_IPWMR_PWE); 446*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwsr, RIO_IPWSR_TE); 447*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, ipwmr); 4486ec4bedbSLiu Gang } 4496ec4bedbSLiu Gang 4506ec4bedbSLiu Gang if (ipwsr & RIO_IPWSR_PWD) { 451*abc3aeaeSLiu Gang pw->port_write_msg.discard_count++; 4526ec4bedbSLiu Gang pr_debug("RIO: Port Discarded Port-Write Msg(s) (%d)\n", 453*abc3aeaeSLiu Gang pw->port_write_msg.discard_count); 454*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwsr, RIO_IPWSR_PWD); 4556ec4bedbSLiu Gang } 4566ec4bedbSLiu Gang 4576ec4bedbSLiu Gang pw_done: 4586ec4bedbSLiu Gang if (epwisr & RIO_EPWISR_PINT1) { 459*abc3aeaeSLiu Gang tmp = in_be32(rio_regs_win + RIO_LTLEDCSR); 4606ec4bedbSLiu Gang pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp); 461*abc3aeaeSLiu Gang fsl_rio_port_error_handler(0); 4626ec4bedbSLiu Gang } 4636ec4bedbSLiu Gang 4646ec4bedbSLiu Gang if (epwisr & RIO_EPWISR_PINT2) { 465*abc3aeaeSLiu Gang tmp = in_be32(rio_regs_win + RIO_LTLEDCSR); 4666ec4bedbSLiu Gang pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp); 467*abc3aeaeSLiu Gang fsl_rio_port_error_handler(1); 4686ec4bedbSLiu Gang } 4696ec4bedbSLiu Gang 4706ec4bedbSLiu Gang if (epwisr & RIO_EPWISR_MU) { 471*abc3aeaeSLiu Gang tmp = in_be32(rio_regs_win + RIO_LTLEDCSR); 4726ec4bedbSLiu Gang pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp); 473*abc3aeaeSLiu Gang msg_unit_error_handler(); 4746ec4bedbSLiu Gang } 4756ec4bedbSLiu Gang 4766ec4bedbSLiu Gang return IRQ_HANDLED; 4776ec4bedbSLiu Gang } 4786ec4bedbSLiu Gang 4796ec4bedbSLiu Gang static void fsl_pw_dpc(struct work_struct *work) 4806ec4bedbSLiu Gang { 481*abc3aeaeSLiu Gang struct fsl_rio_pw *pw = container_of(work, struct fsl_rio_pw, pw_work); 4826ec4bedbSLiu Gang u32 msg_buffer[RIO_PW_MSG_SIZE/sizeof(u32)]; 4836ec4bedbSLiu Gang 4846ec4bedbSLiu Gang /* 4856ec4bedbSLiu Gang * Process port-write messages 4866ec4bedbSLiu Gang */ 487*abc3aeaeSLiu Gang while (kfifo_out_spinlocked(&pw->pw_fifo, (unsigned char *)msg_buffer, 488*abc3aeaeSLiu Gang RIO_PW_MSG_SIZE, &pw->pw_fifo_lock)) { 4896ec4bedbSLiu Gang /* Process one message */ 4906ec4bedbSLiu Gang #ifdef DEBUG_PW 4916ec4bedbSLiu Gang { 4926ec4bedbSLiu Gang u32 i; 4936ec4bedbSLiu Gang pr_debug("%s : Port-Write Message:", __func__); 4946ec4bedbSLiu Gang for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32); i++) { 4956ec4bedbSLiu Gang if ((i%4) == 0) 4966ec4bedbSLiu Gang pr_debug("\n0x%02x: 0x%08x", i*4, 4976ec4bedbSLiu Gang msg_buffer[i]); 4986ec4bedbSLiu Gang else 4996ec4bedbSLiu Gang pr_debug(" 0x%08x", msg_buffer[i]); 5006ec4bedbSLiu Gang } 5016ec4bedbSLiu Gang pr_debug("\n"); 5026ec4bedbSLiu Gang } 5036ec4bedbSLiu Gang #endif 5046ec4bedbSLiu Gang /* Pass the port-write message to RIO core for processing */ 5056ec4bedbSLiu Gang rio_inb_pwrite_handler((union rio_pw_msg *)msg_buffer); 5066ec4bedbSLiu Gang } 5076ec4bedbSLiu Gang } 5086ec4bedbSLiu Gang 5096ec4bedbSLiu Gang /** 5106ec4bedbSLiu Gang * fsl_rio_pw_enable - enable/disable port-write interface init 5116ec4bedbSLiu Gang * @mport: Master port implementing the port write unit 5126ec4bedbSLiu Gang * @enable: 1=enable; 0=disable port-write message handling 5136ec4bedbSLiu Gang */ 5146ec4bedbSLiu Gang int fsl_rio_pw_enable(struct rio_mport *mport, int enable) 5156ec4bedbSLiu Gang { 5166ec4bedbSLiu Gang u32 rval; 5176ec4bedbSLiu Gang 518*abc3aeaeSLiu Gang rval = in_be32(&pw->pw_regs->pwmr); 5196ec4bedbSLiu Gang 5206ec4bedbSLiu Gang if (enable) 5216ec4bedbSLiu Gang rval |= RIO_IPWMR_PWE; 5226ec4bedbSLiu Gang else 5236ec4bedbSLiu Gang rval &= ~RIO_IPWMR_PWE; 5246ec4bedbSLiu Gang 525*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, rval); 5266ec4bedbSLiu Gang 5276ec4bedbSLiu Gang return 0; 5286ec4bedbSLiu Gang } 5296ec4bedbSLiu Gang 5306ec4bedbSLiu Gang /** 5316ec4bedbSLiu Gang * fsl_rio_port_write_init - MPC85xx port write interface init 5326ec4bedbSLiu Gang * @mport: Master port implementing the port write unit 5336ec4bedbSLiu Gang * 5346ec4bedbSLiu Gang * Initializes port write unit hardware and DMA buffer 5356ec4bedbSLiu Gang * ring. Called from fsl_rio_setup(). Returns %0 on success 5366ec4bedbSLiu Gang * or %-ENOMEM on failure. 5376ec4bedbSLiu Gang */ 5386ec4bedbSLiu Gang 539*abc3aeaeSLiu Gang int fsl_rio_port_write_init(struct fsl_rio_pw *pw) 5406ec4bedbSLiu Gang { 5416ec4bedbSLiu Gang int rc = 0; 5426ec4bedbSLiu Gang 5436ec4bedbSLiu Gang /* Following configurations require a disabled port write controller */ 544*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, 545*abc3aeaeSLiu Gang in_be32(&pw->pw_regs->pwmr) & ~RIO_IPWMR_PWE); 5466ec4bedbSLiu Gang 5476ec4bedbSLiu Gang /* Initialize port write */ 548*abc3aeaeSLiu Gang pw->port_write_msg.virt = dma_alloc_coherent(pw->dev, 5496ec4bedbSLiu Gang RIO_PW_MSG_SIZE, 550*abc3aeaeSLiu Gang &pw->port_write_msg.phys, GFP_KERNEL); 551*abc3aeaeSLiu Gang if (!pw->port_write_msg.virt) { 5526ec4bedbSLiu Gang pr_err("RIO: unable allocate port write queue\n"); 5536ec4bedbSLiu Gang return -ENOMEM; 5546ec4bedbSLiu Gang } 5556ec4bedbSLiu Gang 556*abc3aeaeSLiu Gang pw->port_write_msg.err_count = 0; 557*abc3aeaeSLiu Gang pw->port_write_msg.discard_count = 0; 5586ec4bedbSLiu Gang 5596ec4bedbSLiu Gang /* Point dequeue/enqueue pointers at first entry */ 560*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->epwqbar, 0); 561*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwqbar, (u32) pw->port_write_msg.phys); 5626ec4bedbSLiu Gang 5636ec4bedbSLiu Gang pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n", 564*abc3aeaeSLiu Gang in_be32(&pw->pw_regs->epwqbar), 565*abc3aeaeSLiu Gang in_be32(&pw->pw_regs->pwqbar)); 5666ec4bedbSLiu Gang 5676ec4bedbSLiu Gang /* Clear interrupt status IPWSR */ 568*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwsr, 5696ec4bedbSLiu Gang (RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD)); 5706ec4bedbSLiu Gang 5716ec4bedbSLiu Gang /* Configure port write contoller for snooping enable all reporting, 5726ec4bedbSLiu Gang clear queue full */ 573*abc3aeaeSLiu Gang out_be32(&pw->pw_regs->pwmr, 5746ec4bedbSLiu Gang RIO_IPWMR_SEN | RIO_IPWMR_QFIE | RIO_IPWMR_EIE | RIO_IPWMR_CQ); 5756ec4bedbSLiu Gang 5766ec4bedbSLiu Gang 5776ec4bedbSLiu Gang /* Hook up port-write handler */ 578*abc3aeaeSLiu Gang rc = request_irq(IRQ_RIO_PW(pw), fsl_rio_port_write_handler, 579*abc3aeaeSLiu Gang IRQF_SHARED, "port-write", (void *)pw); 5806ec4bedbSLiu Gang if (rc < 0) { 5816ec4bedbSLiu Gang pr_err("MPC85xx RIO: unable to request inbound doorbell irq"); 5826ec4bedbSLiu Gang goto err_out; 5836ec4bedbSLiu Gang } 5846ec4bedbSLiu Gang /* Enable Error Interrupt */ 5856ec4bedbSLiu Gang out_be32((u32 *)(rio_regs_win + RIO_LTLEECSR), LTLEECSR_ENABLE_ALL); 5866ec4bedbSLiu Gang 587*abc3aeaeSLiu Gang INIT_WORK(&pw->pw_work, fsl_pw_dpc); 588*abc3aeaeSLiu Gang spin_lock_init(&pw->pw_fifo_lock); 589*abc3aeaeSLiu Gang if (kfifo_alloc(&pw->pw_fifo, RIO_PW_MSG_SIZE * 32, GFP_KERNEL)) { 5906ec4bedbSLiu Gang pr_err("FIFO allocation failed\n"); 5916ec4bedbSLiu Gang rc = -ENOMEM; 5926ec4bedbSLiu Gang goto err_out_irq; 5936ec4bedbSLiu Gang } 5946ec4bedbSLiu Gang 5956ec4bedbSLiu Gang pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n", 596*abc3aeaeSLiu Gang in_be32(&pw->pw_regs->pwmr), 597*abc3aeaeSLiu Gang in_be32(&pw->pw_regs->pwsr)); 5986ec4bedbSLiu Gang 5996ec4bedbSLiu Gang return rc; 6006ec4bedbSLiu Gang 6016ec4bedbSLiu Gang err_out_irq: 602*abc3aeaeSLiu Gang free_irq(IRQ_RIO_PW(pw), (void *)pw); 6036ec4bedbSLiu Gang err_out: 604*abc3aeaeSLiu Gang dma_free_coherent(pw->dev, RIO_PW_MSG_SIZE, 605*abc3aeaeSLiu Gang pw->port_write_msg.virt, 606*abc3aeaeSLiu Gang pw->port_write_msg.phys); 6076ec4bedbSLiu Gang return rc; 6086ec4bedbSLiu Gang } 6096ec4bedbSLiu Gang 6106ec4bedbSLiu Gang /** 6116ec4bedbSLiu Gang * fsl_rio_doorbell_send - Send a MPC85xx doorbell message 6126ec4bedbSLiu Gang * @mport: RapidIO master port info 6136ec4bedbSLiu Gang * @index: ID of RapidIO interface 6146ec4bedbSLiu Gang * @destid: Destination ID of target device 6156ec4bedbSLiu Gang * @data: 16-bit info field of RapidIO doorbell message 6166ec4bedbSLiu Gang * 6176ec4bedbSLiu Gang * Sends a MPC85xx doorbell message. Returns %0 on success or 6186ec4bedbSLiu Gang * %-EINVAL on failure. 6196ec4bedbSLiu Gang */ 620*abc3aeaeSLiu Gang int fsl_rio_doorbell_send(struct rio_mport *mport, 6216ec4bedbSLiu Gang int index, u16 destid, u16 data) 6226ec4bedbSLiu Gang { 6236ec4bedbSLiu Gang pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n", 6246ec4bedbSLiu Gang index, destid, data); 625*abc3aeaeSLiu Gang 6266ec4bedbSLiu Gang /* In the serial version silicons, such as MPC8548, MPC8641, 6276ec4bedbSLiu Gang * below operations is must be. 6286ec4bedbSLiu Gang */ 629*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->odmr, 0x00000000); 630*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->odretcr, 0x00000004); 631*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->oddpr, destid << 16); 632*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->oddatr, (index << 20) | data); 633*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->odmr, 0x00000001); 6346ec4bedbSLiu Gang 6356ec4bedbSLiu Gang return 0; 6366ec4bedbSLiu Gang } 6376ec4bedbSLiu Gang 6386ec4bedbSLiu Gang /** 6396ec4bedbSLiu Gang * fsl_add_outb_message - Add message to the MPC85xx outbound message queue 6406ec4bedbSLiu Gang * @mport: Master port with outbound message queue 6416ec4bedbSLiu Gang * @rdev: Target of outbound message 6426ec4bedbSLiu Gang * @mbox: Outbound mailbox 6436ec4bedbSLiu Gang * @buffer: Message to add to outbound queue 6446ec4bedbSLiu Gang * @len: Length of message 6456ec4bedbSLiu Gang * 6466ec4bedbSLiu Gang * Adds the @buffer message to the MPC85xx outbound message queue. Returns 6476ec4bedbSLiu Gang * %0 on success or %-EINVAL on failure. 6486ec4bedbSLiu Gang */ 649*abc3aeaeSLiu Gang int 6506ec4bedbSLiu Gang fsl_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox, 6516ec4bedbSLiu Gang void *buffer, size_t len) 6526ec4bedbSLiu Gang { 6536ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 6546ec4bedbSLiu Gang u32 omr; 6556ec4bedbSLiu Gang struct rio_tx_desc *desc = (struct rio_tx_desc *)rmu->msg_tx_ring.virt 6566ec4bedbSLiu Gang + rmu->msg_tx_ring.tx_slot; 6576ec4bedbSLiu Gang int ret = 0; 6586ec4bedbSLiu Gang 6596ec4bedbSLiu Gang pr_debug("RIO: fsl_add_outb_message(): destid %4.4x mbox %d buffer " \ 6606ec4bedbSLiu Gang "%8.8x len %8.8x\n", rdev->destid, mbox, (int)buffer, len); 6616ec4bedbSLiu Gang if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) { 6626ec4bedbSLiu Gang ret = -EINVAL; 6636ec4bedbSLiu Gang goto out; 6646ec4bedbSLiu Gang } 6656ec4bedbSLiu Gang 6666ec4bedbSLiu Gang /* Copy and clear rest of buffer */ 6676ec4bedbSLiu Gang memcpy(rmu->msg_tx_ring.virt_buffer[rmu->msg_tx_ring.tx_slot], buffer, 6686ec4bedbSLiu Gang len); 6696ec4bedbSLiu Gang if (len < (RIO_MAX_MSG_SIZE - 4)) 6706ec4bedbSLiu Gang memset(rmu->msg_tx_ring.virt_buffer[rmu->msg_tx_ring.tx_slot] 6716ec4bedbSLiu Gang + len, 0, RIO_MAX_MSG_SIZE - len); 6726ec4bedbSLiu Gang 6736ec4bedbSLiu Gang /* Set mbox field for message, and set destid */ 6746ec4bedbSLiu Gang desc->dport = (rdev->destid << 16) | (mbox & 0x3); 6756ec4bedbSLiu Gang 6766ec4bedbSLiu Gang /* Enable EOMI interrupt and priority */ 677*abc3aeaeSLiu Gang desc->dattr = 0x28000000 | ((mport->index) << 20); 6786ec4bedbSLiu Gang 6796ec4bedbSLiu Gang /* Set transfer size aligned to next power of 2 (in double words) */ 6806ec4bedbSLiu Gang desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len); 6816ec4bedbSLiu Gang 6826ec4bedbSLiu Gang /* Set snooping and source buffer address */ 6836ec4bedbSLiu Gang desc->saddr = 0x00000004 6846ec4bedbSLiu Gang | rmu->msg_tx_ring.phys_buffer[rmu->msg_tx_ring.tx_slot]; 6856ec4bedbSLiu Gang 6866ec4bedbSLiu Gang /* Increment enqueue pointer */ 6876ec4bedbSLiu Gang omr = in_be32(&rmu->msg_regs->omr); 6886ec4bedbSLiu Gang out_be32(&rmu->msg_regs->omr, omr | RIO_MSG_OMR_MUI); 6896ec4bedbSLiu Gang 6906ec4bedbSLiu Gang /* Go to next descriptor */ 6916ec4bedbSLiu Gang if (++rmu->msg_tx_ring.tx_slot == rmu->msg_tx_ring.size) 6926ec4bedbSLiu Gang rmu->msg_tx_ring.tx_slot = 0; 6936ec4bedbSLiu Gang 6946ec4bedbSLiu Gang out: 6956ec4bedbSLiu Gang return ret; 6966ec4bedbSLiu Gang } 6976ec4bedbSLiu Gang 6986ec4bedbSLiu Gang /** 6996ec4bedbSLiu Gang * fsl_open_outb_mbox - Initialize MPC85xx outbound mailbox 7006ec4bedbSLiu Gang * @mport: Master port implementing the outbound message unit 7016ec4bedbSLiu Gang * @dev_id: Device specific pointer to pass on event 7026ec4bedbSLiu Gang * @mbox: Mailbox to open 7036ec4bedbSLiu Gang * @entries: Number of entries in the outbound mailbox ring 7046ec4bedbSLiu Gang * 7056ec4bedbSLiu Gang * Initializes buffer ring, request the outbound message interrupt, 7066ec4bedbSLiu Gang * and enables the outbound message unit. Returns %0 on success and 7076ec4bedbSLiu Gang * %-EINVAL or %-ENOMEM on failure. 7086ec4bedbSLiu Gang */ 709*abc3aeaeSLiu Gang int 7106ec4bedbSLiu Gang fsl_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries) 7116ec4bedbSLiu Gang { 7126ec4bedbSLiu Gang int i, j, rc = 0; 7136ec4bedbSLiu Gang struct rio_priv *priv = mport->priv; 7146ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 7156ec4bedbSLiu Gang 7166ec4bedbSLiu Gang if ((entries < RIO_MIN_TX_RING_SIZE) || 7176ec4bedbSLiu Gang (entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) { 7186ec4bedbSLiu Gang rc = -EINVAL; 7196ec4bedbSLiu Gang goto out; 7206ec4bedbSLiu Gang } 7216ec4bedbSLiu Gang 7226ec4bedbSLiu Gang /* Initialize shadow copy ring */ 7236ec4bedbSLiu Gang rmu->msg_tx_ring.dev_id = dev_id; 7246ec4bedbSLiu Gang rmu->msg_tx_ring.size = entries; 7256ec4bedbSLiu Gang 7266ec4bedbSLiu Gang for (i = 0; i < rmu->msg_tx_ring.size; i++) { 7276ec4bedbSLiu Gang rmu->msg_tx_ring.virt_buffer[i] = 7286ec4bedbSLiu Gang dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, 7296ec4bedbSLiu Gang &rmu->msg_tx_ring.phys_buffer[i], GFP_KERNEL); 7306ec4bedbSLiu Gang if (!rmu->msg_tx_ring.virt_buffer[i]) { 7316ec4bedbSLiu Gang rc = -ENOMEM; 7326ec4bedbSLiu Gang for (j = 0; j < rmu->msg_tx_ring.size; j++) 7336ec4bedbSLiu Gang if (rmu->msg_tx_ring.virt_buffer[j]) 7346ec4bedbSLiu Gang dma_free_coherent(priv->dev, 7356ec4bedbSLiu Gang RIO_MSG_BUFFER_SIZE, 7366ec4bedbSLiu Gang rmu->msg_tx_ring. 7376ec4bedbSLiu Gang virt_buffer[j], 7386ec4bedbSLiu Gang rmu->msg_tx_ring. 7396ec4bedbSLiu Gang phys_buffer[j]); 7406ec4bedbSLiu Gang goto out; 7416ec4bedbSLiu Gang } 7426ec4bedbSLiu Gang } 7436ec4bedbSLiu Gang 7446ec4bedbSLiu Gang /* Initialize outbound message descriptor ring */ 7456ec4bedbSLiu Gang rmu->msg_tx_ring.virt = dma_alloc_coherent(priv->dev, 7466ec4bedbSLiu Gang rmu->msg_tx_ring.size * RIO_MSG_DESC_SIZE, 7476ec4bedbSLiu Gang &rmu->msg_tx_ring.phys, GFP_KERNEL); 7486ec4bedbSLiu Gang if (!rmu->msg_tx_ring.virt) { 7496ec4bedbSLiu Gang rc = -ENOMEM; 7506ec4bedbSLiu Gang goto out_dma; 7516ec4bedbSLiu Gang } 7526ec4bedbSLiu Gang memset(rmu->msg_tx_ring.virt, 0, 7536ec4bedbSLiu Gang rmu->msg_tx_ring.size * RIO_MSG_DESC_SIZE); 7546ec4bedbSLiu Gang rmu->msg_tx_ring.tx_slot = 0; 7556ec4bedbSLiu Gang 7566ec4bedbSLiu Gang /* Point dequeue/enqueue pointers at first entry in ring */ 7576ec4bedbSLiu Gang out_be32(&rmu->msg_regs->odqdpar, rmu->msg_tx_ring.phys); 7586ec4bedbSLiu Gang out_be32(&rmu->msg_regs->odqepar, rmu->msg_tx_ring.phys); 7596ec4bedbSLiu Gang 7606ec4bedbSLiu Gang /* Configure for snooping */ 7616ec4bedbSLiu Gang out_be32(&rmu->msg_regs->osar, 0x00000004); 7626ec4bedbSLiu Gang 7636ec4bedbSLiu Gang /* Clear interrupt status */ 7646ec4bedbSLiu Gang out_be32(&rmu->msg_regs->osr, 0x000000b3); 7656ec4bedbSLiu Gang 7666ec4bedbSLiu Gang /* Hook up outbound message handler */ 7676ec4bedbSLiu Gang rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0, 7686ec4bedbSLiu Gang "msg_tx", (void *)mport); 7696ec4bedbSLiu Gang if (rc < 0) 7706ec4bedbSLiu Gang goto out_irq; 7716ec4bedbSLiu Gang 7726ec4bedbSLiu Gang /* 7736ec4bedbSLiu Gang * Configure outbound message unit 7746ec4bedbSLiu Gang * Snooping 7756ec4bedbSLiu Gang * Interrupts (all enabled, except QEIE) 7766ec4bedbSLiu Gang * Chaining mode 7776ec4bedbSLiu Gang * Disable 7786ec4bedbSLiu Gang */ 7796ec4bedbSLiu Gang out_be32(&rmu->msg_regs->omr, 0x00100220); 7806ec4bedbSLiu Gang 7816ec4bedbSLiu Gang /* Set number of entries */ 7826ec4bedbSLiu Gang out_be32(&rmu->msg_regs->omr, 7836ec4bedbSLiu Gang in_be32(&rmu->msg_regs->omr) | 7846ec4bedbSLiu Gang ((get_bitmask_order(entries) - 2) << 12)); 7856ec4bedbSLiu Gang 7866ec4bedbSLiu Gang /* Now enable the unit */ 7876ec4bedbSLiu Gang out_be32(&rmu->msg_regs->omr, in_be32(&rmu->msg_regs->omr) | 0x1); 7886ec4bedbSLiu Gang 7896ec4bedbSLiu Gang out: 7906ec4bedbSLiu Gang return rc; 7916ec4bedbSLiu Gang 7926ec4bedbSLiu Gang out_irq: 7936ec4bedbSLiu Gang dma_free_coherent(priv->dev, 7946ec4bedbSLiu Gang rmu->msg_tx_ring.size * RIO_MSG_DESC_SIZE, 7956ec4bedbSLiu Gang rmu->msg_tx_ring.virt, rmu->msg_tx_ring.phys); 7966ec4bedbSLiu Gang 7976ec4bedbSLiu Gang out_dma: 7986ec4bedbSLiu Gang for (i = 0; i < rmu->msg_tx_ring.size; i++) 7996ec4bedbSLiu Gang dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, 8006ec4bedbSLiu Gang rmu->msg_tx_ring.virt_buffer[i], 8016ec4bedbSLiu Gang rmu->msg_tx_ring.phys_buffer[i]); 8026ec4bedbSLiu Gang 8036ec4bedbSLiu Gang return rc; 8046ec4bedbSLiu Gang } 8056ec4bedbSLiu Gang 8066ec4bedbSLiu Gang /** 8076ec4bedbSLiu Gang * fsl_close_outb_mbox - Shut down MPC85xx outbound mailbox 8086ec4bedbSLiu Gang * @mport: Master port implementing the outbound message unit 8096ec4bedbSLiu Gang * @mbox: Mailbox to close 8106ec4bedbSLiu Gang * 8116ec4bedbSLiu Gang * Disables the outbound message unit, free all buffers, and 8126ec4bedbSLiu Gang * frees the outbound message interrupt. 8136ec4bedbSLiu Gang */ 814*abc3aeaeSLiu Gang void fsl_close_outb_mbox(struct rio_mport *mport, int mbox) 8156ec4bedbSLiu Gang { 8166ec4bedbSLiu Gang struct rio_priv *priv = mport->priv; 8176ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 8186ec4bedbSLiu Gang 8196ec4bedbSLiu Gang /* Disable inbound message unit */ 8206ec4bedbSLiu Gang out_be32(&rmu->msg_regs->omr, 0); 8216ec4bedbSLiu Gang 8226ec4bedbSLiu Gang /* Free ring */ 8236ec4bedbSLiu Gang dma_free_coherent(priv->dev, 8246ec4bedbSLiu Gang rmu->msg_tx_ring.size * RIO_MSG_DESC_SIZE, 8256ec4bedbSLiu Gang rmu->msg_tx_ring.virt, rmu->msg_tx_ring.phys); 8266ec4bedbSLiu Gang 8276ec4bedbSLiu Gang /* Free interrupt */ 8286ec4bedbSLiu Gang free_irq(IRQ_RIO_TX(mport), (void *)mport); 8296ec4bedbSLiu Gang } 8306ec4bedbSLiu Gang 8316ec4bedbSLiu Gang /** 8326ec4bedbSLiu Gang * fsl_open_inb_mbox - Initialize MPC85xx inbound mailbox 8336ec4bedbSLiu Gang * @mport: Master port implementing the inbound message unit 8346ec4bedbSLiu Gang * @dev_id: Device specific pointer to pass on event 8356ec4bedbSLiu Gang * @mbox: Mailbox to open 8366ec4bedbSLiu Gang * @entries: Number of entries in the inbound mailbox ring 8376ec4bedbSLiu Gang * 8386ec4bedbSLiu Gang * Initializes buffer ring, request the inbound message interrupt, 8396ec4bedbSLiu Gang * and enables the inbound message unit. Returns %0 on success 8406ec4bedbSLiu Gang * and %-EINVAL or %-ENOMEM on failure. 8416ec4bedbSLiu Gang */ 842*abc3aeaeSLiu Gang int 8436ec4bedbSLiu Gang fsl_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries) 8446ec4bedbSLiu Gang { 8456ec4bedbSLiu Gang int i, rc = 0; 8466ec4bedbSLiu Gang struct rio_priv *priv = mport->priv; 8476ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 8486ec4bedbSLiu Gang 8496ec4bedbSLiu Gang if ((entries < RIO_MIN_RX_RING_SIZE) || 8506ec4bedbSLiu Gang (entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) { 8516ec4bedbSLiu Gang rc = -EINVAL; 8526ec4bedbSLiu Gang goto out; 8536ec4bedbSLiu Gang } 8546ec4bedbSLiu Gang 8556ec4bedbSLiu Gang /* Initialize client buffer ring */ 8566ec4bedbSLiu Gang rmu->msg_rx_ring.dev_id = dev_id; 8576ec4bedbSLiu Gang rmu->msg_rx_ring.size = entries; 8586ec4bedbSLiu Gang rmu->msg_rx_ring.rx_slot = 0; 8596ec4bedbSLiu Gang for (i = 0; i < rmu->msg_rx_ring.size; i++) 8606ec4bedbSLiu Gang rmu->msg_rx_ring.virt_buffer[i] = NULL; 8616ec4bedbSLiu Gang 8626ec4bedbSLiu Gang /* Initialize inbound message ring */ 8636ec4bedbSLiu Gang rmu->msg_rx_ring.virt = dma_alloc_coherent(priv->dev, 8646ec4bedbSLiu Gang rmu->msg_rx_ring.size * RIO_MAX_MSG_SIZE, 8656ec4bedbSLiu Gang &rmu->msg_rx_ring.phys, GFP_KERNEL); 8666ec4bedbSLiu Gang if (!rmu->msg_rx_ring.virt) { 8676ec4bedbSLiu Gang rc = -ENOMEM; 8686ec4bedbSLiu Gang goto out; 8696ec4bedbSLiu Gang } 8706ec4bedbSLiu Gang 8716ec4bedbSLiu Gang /* Point dequeue/enqueue pointers at first entry in ring */ 8726ec4bedbSLiu Gang out_be32(&rmu->msg_regs->ifqdpar, (u32) rmu->msg_rx_ring.phys); 8736ec4bedbSLiu Gang out_be32(&rmu->msg_regs->ifqepar, (u32) rmu->msg_rx_ring.phys); 8746ec4bedbSLiu Gang 8756ec4bedbSLiu Gang /* Clear interrupt status */ 8766ec4bedbSLiu Gang out_be32(&rmu->msg_regs->isr, 0x00000091); 8776ec4bedbSLiu Gang 8786ec4bedbSLiu Gang /* Hook up inbound message handler */ 8796ec4bedbSLiu Gang rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0, 8806ec4bedbSLiu Gang "msg_rx", (void *)mport); 8816ec4bedbSLiu Gang if (rc < 0) { 8826ec4bedbSLiu Gang dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, 8836ec4bedbSLiu Gang rmu->msg_tx_ring.virt_buffer[i], 8846ec4bedbSLiu Gang rmu->msg_tx_ring.phys_buffer[i]); 8856ec4bedbSLiu Gang goto out; 8866ec4bedbSLiu Gang } 8876ec4bedbSLiu Gang 8886ec4bedbSLiu Gang /* 8896ec4bedbSLiu Gang * Configure inbound message unit: 8906ec4bedbSLiu Gang * Snooping 8916ec4bedbSLiu Gang * 4KB max message size 8926ec4bedbSLiu Gang * Unmask all interrupt sources 8936ec4bedbSLiu Gang * Disable 8946ec4bedbSLiu Gang */ 8956ec4bedbSLiu Gang out_be32(&rmu->msg_regs->imr, 0x001b0060); 8966ec4bedbSLiu Gang 8976ec4bedbSLiu Gang /* Set number of queue entries */ 8986ec4bedbSLiu Gang setbits32(&rmu->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12); 8996ec4bedbSLiu Gang 9006ec4bedbSLiu Gang /* Now enable the unit */ 9016ec4bedbSLiu Gang setbits32(&rmu->msg_regs->imr, 0x1); 9026ec4bedbSLiu Gang 9036ec4bedbSLiu Gang out: 9046ec4bedbSLiu Gang return rc; 9056ec4bedbSLiu Gang } 9066ec4bedbSLiu Gang 9076ec4bedbSLiu Gang /** 9086ec4bedbSLiu Gang * fsl_close_inb_mbox - Shut down MPC85xx inbound mailbox 9096ec4bedbSLiu Gang * @mport: Master port implementing the inbound message unit 9106ec4bedbSLiu Gang * @mbox: Mailbox to close 9116ec4bedbSLiu Gang * 9126ec4bedbSLiu Gang * Disables the inbound message unit, free all buffers, and 9136ec4bedbSLiu Gang * frees the inbound message interrupt. 9146ec4bedbSLiu Gang */ 915*abc3aeaeSLiu Gang void fsl_close_inb_mbox(struct rio_mport *mport, int mbox) 9166ec4bedbSLiu Gang { 9176ec4bedbSLiu Gang struct rio_priv *priv = mport->priv; 9186ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 9196ec4bedbSLiu Gang 9206ec4bedbSLiu Gang /* Disable inbound message unit */ 9216ec4bedbSLiu Gang out_be32(&rmu->msg_regs->imr, 0); 9226ec4bedbSLiu Gang 9236ec4bedbSLiu Gang /* Free ring */ 9246ec4bedbSLiu Gang dma_free_coherent(priv->dev, rmu->msg_rx_ring.size * RIO_MAX_MSG_SIZE, 9256ec4bedbSLiu Gang rmu->msg_rx_ring.virt, rmu->msg_rx_ring.phys); 9266ec4bedbSLiu Gang 9276ec4bedbSLiu Gang /* Free interrupt */ 9286ec4bedbSLiu Gang free_irq(IRQ_RIO_RX(mport), (void *)mport); 9296ec4bedbSLiu Gang } 9306ec4bedbSLiu Gang 9316ec4bedbSLiu Gang /** 9326ec4bedbSLiu Gang * fsl_add_inb_buffer - Add buffer to the MPC85xx inbound message queue 9336ec4bedbSLiu Gang * @mport: Master port implementing the inbound message unit 9346ec4bedbSLiu Gang * @mbox: Inbound mailbox number 9356ec4bedbSLiu Gang * @buf: Buffer to add to inbound queue 9366ec4bedbSLiu Gang * 9376ec4bedbSLiu Gang * Adds the @buf buffer to the MPC85xx inbound message queue. Returns 9386ec4bedbSLiu Gang * %0 on success or %-EINVAL on failure. 9396ec4bedbSLiu Gang */ 940*abc3aeaeSLiu Gang int fsl_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf) 9416ec4bedbSLiu Gang { 9426ec4bedbSLiu Gang int rc = 0; 9436ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 9446ec4bedbSLiu Gang 9456ec4bedbSLiu Gang pr_debug("RIO: fsl_add_inb_buffer(), msg_rx_ring.rx_slot %d\n", 9466ec4bedbSLiu Gang rmu->msg_rx_ring.rx_slot); 9476ec4bedbSLiu Gang 9486ec4bedbSLiu Gang if (rmu->msg_rx_ring.virt_buffer[rmu->msg_rx_ring.rx_slot]) { 9496ec4bedbSLiu Gang printk(KERN_ERR 9506ec4bedbSLiu Gang "RIO: error adding inbound buffer %d, buffer exists\n", 9516ec4bedbSLiu Gang rmu->msg_rx_ring.rx_slot); 9526ec4bedbSLiu Gang rc = -EINVAL; 9536ec4bedbSLiu Gang goto out; 9546ec4bedbSLiu Gang } 9556ec4bedbSLiu Gang 9566ec4bedbSLiu Gang rmu->msg_rx_ring.virt_buffer[rmu->msg_rx_ring.rx_slot] = buf; 9576ec4bedbSLiu Gang if (++rmu->msg_rx_ring.rx_slot == rmu->msg_rx_ring.size) 9586ec4bedbSLiu Gang rmu->msg_rx_ring.rx_slot = 0; 9596ec4bedbSLiu Gang 9606ec4bedbSLiu Gang out: 9616ec4bedbSLiu Gang return rc; 9626ec4bedbSLiu Gang } 9636ec4bedbSLiu Gang 9646ec4bedbSLiu Gang /** 9656ec4bedbSLiu Gang * fsl_get_inb_message - Fetch inbound message from the MPC85xx message unit 9666ec4bedbSLiu Gang * @mport: Master port implementing the inbound message unit 9676ec4bedbSLiu Gang * @mbox: Inbound mailbox number 9686ec4bedbSLiu Gang * 9696ec4bedbSLiu Gang * Gets the next available inbound message from the inbound message queue. 9706ec4bedbSLiu Gang * A pointer to the message is returned on success or NULL on failure. 9716ec4bedbSLiu Gang */ 972*abc3aeaeSLiu Gang void *fsl_get_inb_message(struct rio_mport *mport, int mbox) 9736ec4bedbSLiu Gang { 9746ec4bedbSLiu Gang struct fsl_rmu *rmu = GET_RMM_HANDLE(mport); 9756ec4bedbSLiu Gang u32 phys_buf, virt_buf; 9766ec4bedbSLiu Gang void *buf = NULL; 9776ec4bedbSLiu Gang int buf_idx; 9786ec4bedbSLiu Gang 9796ec4bedbSLiu Gang phys_buf = in_be32(&rmu->msg_regs->ifqdpar); 9806ec4bedbSLiu Gang 9816ec4bedbSLiu Gang /* If no more messages, then bail out */ 9826ec4bedbSLiu Gang if (phys_buf == in_be32(&rmu->msg_regs->ifqepar)) 9836ec4bedbSLiu Gang goto out2; 9846ec4bedbSLiu Gang 9856ec4bedbSLiu Gang virt_buf = (u32) rmu->msg_rx_ring.virt + (phys_buf 9866ec4bedbSLiu Gang - rmu->msg_rx_ring.phys); 9876ec4bedbSLiu Gang buf_idx = (phys_buf - rmu->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE; 9886ec4bedbSLiu Gang buf = rmu->msg_rx_ring.virt_buffer[buf_idx]; 9896ec4bedbSLiu Gang 9906ec4bedbSLiu Gang if (!buf) { 9916ec4bedbSLiu Gang printk(KERN_ERR 9926ec4bedbSLiu Gang "RIO: inbound message copy failed, no buffers\n"); 9936ec4bedbSLiu Gang goto out1; 9946ec4bedbSLiu Gang } 9956ec4bedbSLiu Gang 9966ec4bedbSLiu Gang /* Copy max message size, caller is expected to allocate that big */ 9976ec4bedbSLiu Gang memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE); 9986ec4bedbSLiu Gang 9996ec4bedbSLiu Gang /* Clear the available buffer */ 10006ec4bedbSLiu Gang rmu->msg_rx_ring.virt_buffer[buf_idx] = NULL; 10016ec4bedbSLiu Gang 10026ec4bedbSLiu Gang out1: 10036ec4bedbSLiu Gang setbits32(&rmu->msg_regs->imr, RIO_MSG_IMR_MI); 10046ec4bedbSLiu Gang 10056ec4bedbSLiu Gang out2: 10066ec4bedbSLiu Gang return buf; 10076ec4bedbSLiu Gang } 10086ec4bedbSLiu Gang 10096ec4bedbSLiu Gang /** 10106ec4bedbSLiu Gang * fsl_rio_doorbell_init - MPC85xx doorbell interface init 10116ec4bedbSLiu Gang * @mport: Master port implementing the inbound doorbell unit 10126ec4bedbSLiu Gang * 10136ec4bedbSLiu Gang * Initializes doorbell unit hardware and inbound DMA buffer 10146ec4bedbSLiu Gang * ring. Called from fsl_rio_setup(). Returns %0 on success 10156ec4bedbSLiu Gang * or %-ENOMEM on failure. 10166ec4bedbSLiu Gang */ 1017*abc3aeaeSLiu Gang int fsl_rio_doorbell_init(struct fsl_rio_dbell *dbell) 10186ec4bedbSLiu Gang { 10196ec4bedbSLiu Gang int rc = 0; 10206ec4bedbSLiu Gang 10216ec4bedbSLiu Gang /* Initialize inbound doorbells */ 1022*abc3aeaeSLiu Gang dbell->dbell_ring.virt = dma_alloc_coherent(dbell->dev, 512 * 1023*abc3aeaeSLiu Gang DOORBELL_MESSAGE_SIZE, &dbell->dbell_ring.phys, GFP_KERNEL); 1024*abc3aeaeSLiu Gang if (!dbell->dbell_ring.virt) { 10256ec4bedbSLiu Gang printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n"); 10266ec4bedbSLiu Gang rc = -ENOMEM; 10276ec4bedbSLiu Gang goto out; 10286ec4bedbSLiu Gang } 10296ec4bedbSLiu Gang 10306ec4bedbSLiu Gang /* Point dequeue/enqueue pointers at first entry in ring */ 1031*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->dqdpar, (u32) dbell->dbell_ring.phys); 1032*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->dqepar, (u32) dbell->dbell_ring.phys); 10336ec4bedbSLiu Gang 10346ec4bedbSLiu Gang /* Clear interrupt status */ 1035*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->dsr, 0x00000091); 10366ec4bedbSLiu Gang 10376ec4bedbSLiu Gang /* Hook up doorbell handler */ 1038*abc3aeaeSLiu Gang rc = request_irq(IRQ_RIO_BELL(dbell), fsl_rio_dbell_handler, 0, 1039*abc3aeaeSLiu Gang "dbell_rx", (void *)dbell); 10406ec4bedbSLiu Gang if (rc < 0) { 1041*abc3aeaeSLiu Gang dma_free_coherent(dbell->dev, 512 * DOORBELL_MESSAGE_SIZE, 1042*abc3aeaeSLiu Gang dbell->dbell_ring.virt, dbell->dbell_ring.phys); 10436ec4bedbSLiu Gang printk(KERN_ERR 10446ec4bedbSLiu Gang "MPC85xx RIO: unable to request inbound doorbell irq"); 10456ec4bedbSLiu Gang goto out; 10466ec4bedbSLiu Gang } 10476ec4bedbSLiu Gang 10486ec4bedbSLiu Gang /* Configure doorbells for snooping, 512 entries, and enable */ 1049*abc3aeaeSLiu Gang out_be32(&dbell->dbell_regs->dmr, 0x00108161); 10506ec4bedbSLiu Gang 10516ec4bedbSLiu Gang out: 10526ec4bedbSLiu Gang return rc; 10536ec4bedbSLiu Gang } 10546ec4bedbSLiu Gang 10556ec4bedbSLiu Gang int fsl_rio_setup_rmu(struct rio_mport *mport, struct device_node *node) 10566ec4bedbSLiu Gang { 10576ec4bedbSLiu Gang struct rio_priv *priv; 10586ec4bedbSLiu Gang struct fsl_rmu *rmu; 1059*abc3aeaeSLiu Gang u64 msg_start; 1060*abc3aeaeSLiu Gang const u32 *msg_addr; 1061*abc3aeaeSLiu Gang int mlen; 1062*abc3aeaeSLiu Gang int aw; 10636ec4bedbSLiu Gang 1064*abc3aeaeSLiu Gang if (!mport || !mport->priv) 1065*abc3aeaeSLiu Gang return -EINVAL; 1066*abc3aeaeSLiu Gang 1067*abc3aeaeSLiu Gang priv = mport->priv; 1068*abc3aeaeSLiu Gang 1069*abc3aeaeSLiu Gang if (!node) { 1070*abc3aeaeSLiu Gang dev_warn(priv->dev, "Can't get %s property 'fsl,rmu'\n", 1071*abc3aeaeSLiu Gang priv->dev->of_node->full_name); 1072*abc3aeaeSLiu Gang return -EINVAL; 1073*abc3aeaeSLiu Gang } 10746ec4bedbSLiu Gang 10756ec4bedbSLiu Gang rmu = kzalloc(sizeof(struct fsl_rmu), GFP_KERNEL); 10766ec4bedbSLiu Gang if (!rmu) 10776ec4bedbSLiu Gang return -ENOMEM; 10786ec4bedbSLiu Gang 1079*abc3aeaeSLiu Gang aw = of_n_addr_cells(node); 1080*abc3aeaeSLiu Gang msg_addr = of_get_property(node, "reg", &mlen); 1081*abc3aeaeSLiu Gang if (!msg_addr) { 1082*abc3aeaeSLiu Gang pr_err("%s: unable to find 'reg' property of message-unit\n", 1083*abc3aeaeSLiu Gang node->full_name); 1084*abc3aeaeSLiu Gang return -ENOMEM; 1085*abc3aeaeSLiu Gang } 1086*abc3aeaeSLiu Gang msg_start = of_read_number(msg_addr, aw); 1087*abc3aeaeSLiu Gang 1088*abc3aeaeSLiu Gang rmu->msg_regs = (struct rio_msg_regs *) 1089*abc3aeaeSLiu Gang (rmu_regs_win + (u32)msg_start); 1090*abc3aeaeSLiu Gang 1091*abc3aeaeSLiu Gang rmu->txirq = irq_of_parse_and_map(node, 0); 1092*abc3aeaeSLiu Gang rmu->rxirq = irq_of_parse_and_map(node, 1); 1093*abc3aeaeSLiu Gang printk(KERN_INFO "%s: txirq: %d, rxirq %d\n", 1094*abc3aeaeSLiu Gang node->full_name, rmu->txirq, rmu->rxirq); 1095*abc3aeaeSLiu Gang 10966ec4bedbSLiu Gang priv->rmm_handle = rmu; 10976ec4bedbSLiu Gang 10986ec4bedbSLiu Gang rio_init_dbell_res(&mport->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff); 10996ec4bedbSLiu Gang rio_init_mbox_res(&mport->riores[RIO_INB_MBOX_RESOURCE], 0, 0); 11006ec4bedbSLiu Gang rio_init_mbox_res(&mport->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0); 11016ec4bedbSLiu Gang 11026ec4bedbSLiu Gang return 0; 11036ec4bedbSLiu Gang } 1104