blob: 935822a25030c8efce5825d424a420f8f82996a7 [file] [log] [blame]
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001/*
Zhang Weid02443a2008-04-18 13:33:38 -07002 * Freescale MPC85xx/MPC86xx RapidIO support
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08003 *
Zhang Weiad1e9382008-04-18 13:33:41 -07004 * Copyright (C) 2007, 2008 Freescale Semiconductor, Inc.
5 * Zhang Wei <wei.zhang@freescale.com>
6 *
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08007 * Copyright 2005 MontaVista Software, Inc.
8 * Matt Porter <mporter@kernel.crashing.org>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 */
15
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080016#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/dma-mapping.h>
20#include <linux/interrupt.h>
21#include <linux/rio.h>
22#include <linux/rio_drv.h>
Zhang Weicc2bb692008-04-18 13:33:41 -070023#include <linux/of_platform.h>
Zhang Wei61b26912008-04-18 13:33:44 -070024#include <linux/delay.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080025
26#include <asm/io.h>
27
Zhang Weiad1e9382008-04-18 13:33:41 -070028/* RapidIO definition irq, which read from OF-tree */
29#define IRQ_RIO_BELL(m) (((struct rio_priv *)(m->priv))->bellirq)
30#define IRQ_RIO_TX(m) (((struct rio_priv *)(m->priv))->txirq)
31#define IRQ_RIO_RX(m) (((struct rio_priv *)(m->priv))->rxirq)
32
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080033#define RIO_ATMU_REGS_OFFSET 0x10c00
Zhang Wei61b26912008-04-18 13:33:44 -070034#define RIO_P_MSG_REGS_OFFSET 0x11000
35#define RIO_S_MSG_REGS_OFFSET 0x13000
36#define RIO_ESCSR 0x158
37#define RIO_CCSR 0x15c
38#define RIO_ISR_AACR 0x10120
39#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080040#define RIO_MAINT_WIN_SIZE 0x400000
41#define RIO_DBELL_WIN_SIZE 0x1000
42
43#define RIO_MSG_OMR_MUI 0x00000002
44#define RIO_MSG_OSR_TE 0x00000080
45#define RIO_MSG_OSR_QOI 0x00000020
46#define RIO_MSG_OSR_QFI 0x00000010
47#define RIO_MSG_OSR_MUB 0x00000004
48#define RIO_MSG_OSR_EOMI 0x00000002
49#define RIO_MSG_OSR_QEI 0x00000001
50
51#define RIO_MSG_IMR_MI 0x00000002
52#define RIO_MSG_ISR_TE 0x00000080
53#define RIO_MSG_ISR_QFI 0x00000010
54#define RIO_MSG_ISR_DIQI 0x00000001
55
56#define RIO_MSG_DESC_SIZE 32
57#define RIO_MSG_BUFFER_SIZE 4096
58#define RIO_MIN_TX_RING_SIZE 2
59#define RIO_MAX_TX_RING_SIZE 2048
60#define RIO_MIN_RX_RING_SIZE 2
61#define RIO_MAX_RX_RING_SIZE 2048
62
63#define DOORBELL_DMR_DI 0x00000002
64#define DOORBELL_DSR_TE 0x00000080
65#define DOORBELL_DSR_QFI 0x00000010
66#define DOORBELL_DSR_DIQI 0x00000001
67#define DOORBELL_TID_OFFSET 0x03
68#define DOORBELL_SID_OFFSET 0x05
69#define DOORBELL_INFO_OFFSET 0x06
70
71#define DOORBELL_MESSAGE_SIZE 0x08
72#define DBELL_SID(x) (*(u8 *)(x + DOORBELL_SID_OFFSET))
73#define DBELL_TID(x) (*(u8 *)(x + DOORBELL_TID_OFFSET))
74#define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
75
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080076struct rio_atmu_regs {
77 u32 rowtar;
Zhang Wei61b26912008-04-18 13:33:44 -070078 u32 rowtear;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080079 u32 rowbar;
80 u32 pad2;
81 u32 rowar;
82 u32 pad3[3];
83};
84
85struct rio_msg_regs {
86 u32 omr;
87 u32 osr;
88 u32 pad1;
89 u32 odqdpar;
90 u32 pad2;
91 u32 osar;
92 u32 odpr;
93 u32 odatr;
94 u32 odcr;
95 u32 pad3;
96 u32 odqepar;
97 u32 pad4[13];
98 u32 imr;
99 u32 isr;
100 u32 pad5;
101 u32 ifqdpar;
102 u32 pad6;
103 u32 ifqepar;
Zhang Wei61b26912008-04-18 13:33:44 -0700104 u32 pad7[226];
105 u32 odmr;
106 u32 odsr;
107 u32 res0[4];
108 u32 oddpr;
109 u32 oddatr;
110 u32 res1[3];
111 u32 odretcr;
112 u32 res2[12];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800113 u32 dmr;
114 u32 dsr;
115 u32 pad8;
116 u32 dqdpar;
117 u32 pad9;
118 u32 dqepar;
119 u32 pad10[26];
120 u32 pwmr;
121 u32 pwsr;
122 u32 pad11;
123 u32 pwqbar;
124};
125
126struct rio_tx_desc {
127 u32 res1;
128 u32 saddr;
129 u32 dport;
130 u32 dattr;
131 u32 res2;
132 u32 res3;
133 u32 dwcnt;
134 u32 res4;
135};
136
Zhang Weiad1e9382008-04-18 13:33:41 -0700137struct rio_dbell_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800138 void *virt;
139 dma_addr_t phys;
Zhang Weiad1e9382008-04-18 13:33:41 -0700140};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800141
Zhang Weiad1e9382008-04-18 13:33:41 -0700142struct rio_msg_tx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800143 void *virt;
144 dma_addr_t phys;
145 void *virt_buffer[RIO_MAX_TX_RING_SIZE];
146 dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE];
147 int tx_slot;
148 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800149 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700150};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800151
Zhang Weiad1e9382008-04-18 13:33:41 -0700152struct rio_msg_rx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800153 void *virt;
154 dma_addr_t phys;
155 void *virt_buffer[RIO_MAX_RX_RING_SIZE];
156 int rx_slot;
157 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800158 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700159};
160
161struct rio_priv {
162 void __iomem *regs_win;
163 struct rio_atmu_regs __iomem *atmu_regs;
164 struct rio_atmu_regs __iomem *maint_atmu_regs;
165 struct rio_atmu_regs __iomem *dbell_atmu_regs;
166 void __iomem *dbell_win;
167 void __iomem *maint_win;
168 struct rio_msg_regs __iomem *msg_regs;
169 struct rio_dbell_ring dbell_ring;
170 struct rio_msg_tx_ring msg_tx_ring;
171 struct rio_msg_rx_ring msg_rx_ring;
172 int bellirq;
173 int txirq;
174 int rxirq;
175};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800176
177/**
Zhang Weid02443a2008-04-18 13:33:38 -0700178 * fsl_rio_doorbell_send - Send a MPC85xx doorbell message
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800179 * @index: ID of RapidIO interface
180 * @destid: Destination ID of target device
181 * @data: 16-bit info field of RapidIO doorbell message
182 *
183 * Sends a MPC85xx doorbell message. Returns %0 on success or
184 * %-EINVAL on failure.
185 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700186static int fsl_rio_doorbell_send(struct rio_mport *mport,
187 int index, u16 destid, u16 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800188{
Zhang Weiad1e9382008-04-18 13:33:41 -0700189 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700190 pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800191 index, destid, data);
Zhang Wei61b26912008-04-18 13:33:44 -0700192 switch (mport->phy_type) {
193 case RIO_PHY_PARALLEL:
194 out_be32(&priv->dbell_atmu_regs->rowtar, destid << 22);
195 out_be16(priv->dbell_win, data);
196 break;
197 case RIO_PHY_SERIAL:
198 /* In the serial version silicons, such as MPC8548, MPC8641,
199 * below operations is must be.
200 */
201 out_be32(&priv->msg_regs->odmr, 0x00000000);
202 out_be32(&priv->msg_regs->odretcr, 0x00000004);
203 out_be32(&priv->msg_regs->oddpr, destid << 16);
204 out_be32(&priv->msg_regs->oddatr, data);
205 out_be32(&priv->msg_regs->odmr, 0x00000001);
206 break;
207 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800208
209 return 0;
210}
211
212/**
Zhang Weid02443a2008-04-18 13:33:38 -0700213 * fsl_local_config_read - Generate a MPC85xx local config space read
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800214 * @index: ID of RapdiIO interface
215 * @offset: Offset into configuration space
216 * @len: Length (in bytes) of the maintenance transaction
217 * @data: Value to be read into
218 *
219 * Generates a MPC85xx local configuration space read. Returns %0 on
220 * success or %-EINVAL on failure.
221 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700222static int fsl_local_config_read(struct rio_mport *mport,
223 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800224{
Zhang Weiad1e9382008-04-18 13:33:41 -0700225 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700226 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800227 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700228 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800229
230 return 0;
231}
232
233/**
Zhang Weid02443a2008-04-18 13:33:38 -0700234 * fsl_local_config_write - Generate a MPC85xx local config space write
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800235 * @index: ID of RapdiIO interface
236 * @offset: Offset into configuration space
237 * @len: Length (in bytes) of the maintenance transaction
238 * @data: Value to be written
239 *
240 * Generates a MPC85xx local configuration space write. Returns %0 on
241 * success or %-EINVAL on failure.
242 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700243static int fsl_local_config_write(struct rio_mport *mport,
244 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800245{
Zhang Weiad1e9382008-04-18 13:33:41 -0700246 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800247 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700248 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800249 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700250 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800251
252 return 0;
253}
254
255/**
Zhang Weid02443a2008-04-18 13:33:38 -0700256 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800257 * @index: ID of RapdiIO interface
258 * @destid: Destination ID of transaction
259 * @hopcount: Number of hops to target device
260 * @offset: Offset into configuration space
261 * @len: Length (in bytes) of the maintenance transaction
262 * @val: Location to be read into
263 *
264 * Generates a MPC85xx read maintenance transaction. Returns %0 on
265 * success or %-EINVAL on failure.
266 */
267static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700268fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
269 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800270{
Zhang Weiad1e9382008-04-18 13:33:41 -0700271 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800272 u8 *data;
273
274 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700275 ("fsl_rio_config_read: index %d destid %d hopcount %d offset %8.8x len %d\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800276 index, destid, hopcount, offset, len);
Zhang Weiad1e9382008-04-18 13:33:41 -0700277 out_be32(&priv->maint_atmu_regs->rowtar,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800278 (destid << 22) | (hopcount << 12) | ((offset & ~0x3) >> 9));
279
Zhang Weiad1e9382008-04-18 13:33:41 -0700280 data = (u8 *) priv->maint_win + offset;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800281 switch (len) {
282 case 1:
283 *val = in_8((u8 *) data);
284 break;
285 case 2:
286 *val = in_be16((u16 *) data);
287 break;
288 default:
289 *val = in_be32((u32 *) data);
290 break;
291 }
292
293 return 0;
294}
295
296/**
Zhang Weid02443a2008-04-18 13:33:38 -0700297 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800298 * @index: ID of RapdiIO interface
299 * @destid: Destination ID of transaction
300 * @hopcount: Number of hops to target device
301 * @offset: Offset into configuration space
302 * @len: Length (in bytes) of the maintenance transaction
303 * @val: Value to be written
304 *
305 * Generates an MPC85xx write maintenance transaction. Returns %0 on
306 * success or %-EINVAL on failure.
307 */
308static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700309fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
310 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800311{
Zhang Weiad1e9382008-04-18 13:33:41 -0700312 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800313 u8 *data;
314 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700315 ("fsl_rio_config_write: index %d destid %d hopcount %d offset %8.8x len %d val %8.8x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800316 index, destid, hopcount, offset, len, val);
Zhang Weiad1e9382008-04-18 13:33:41 -0700317 out_be32(&priv->maint_atmu_regs->rowtar,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800318 (destid << 22) | (hopcount << 12) | ((offset & ~0x3) >> 9));
319
Zhang Weiad1e9382008-04-18 13:33:41 -0700320 data = (u8 *) priv->maint_win + offset;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800321 switch (len) {
322 case 1:
323 out_8((u8 *) data, val);
324 break;
325 case 2:
326 out_be16((u16 *) data, val);
327 break;
328 default:
329 out_be32((u32 *) data, val);
330 break;
331 }
332
333 return 0;
334}
335
336/**
337 * rio_hw_add_outb_message - Add message to the MPC85xx outbound message queue
338 * @mport: Master port with outbound message queue
339 * @rdev: Target of outbound message
340 * @mbox: Outbound mailbox
341 * @buffer: Message to add to outbound queue
342 * @len: Length of message
343 *
344 * Adds the @buffer message to the MPC85xx outbound message queue. Returns
345 * %0 on success or %-EINVAL on failure.
346 */
347int
348rio_hw_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox,
349 void *buffer, size_t len)
350{
Zhang Weiad1e9382008-04-18 13:33:41 -0700351 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800352 u32 omr;
Zhang Weiad1e9382008-04-18 13:33:41 -0700353 struct rio_tx_desc *desc = (struct rio_tx_desc *)priv->msg_tx_ring.virt
354 + priv->msg_tx_ring.tx_slot;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800355 int ret = 0;
356
357 pr_debug
358 ("RIO: rio_hw_add_outb_message(): destid %4.4x mbox %d buffer %8.8x len %8.8x\n",
359 rdev->destid, mbox, (int)buffer, len);
360
361 if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) {
362 ret = -EINVAL;
363 goto out;
364 }
365
366 /* Copy and clear rest of buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700367 memcpy(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot], buffer,
368 len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800369 if (len < (RIO_MAX_MSG_SIZE - 4))
Zhang Weiad1e9382008-04-18 13:33:41 -0700370 memset(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot]
371 + len, 0, RIO_MAX_MSG_SIZE - len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800372
Zhang Wei61b26912008-04-18 13:33:44 -0700373 switch (mport->phy_type) {
374 case RIO_PHY_PARALLEL:
375 /* Set mbox field for message */
376 desc->dport = mbox & 0x3;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800377
Zhang Wei61b26912008-04-18 13:33:44 -0700378 /* Enable EOMI interrupt, set priority, and set destid */
379 desc->dattr = 0x28000000 | (rdev->destid << 2);
380 break;
381 case RIO_PHY_SERIAL:
382 /* Set mbox field for message, and set destid */
383 desc->dport = (rdev->destid << 16) | (mbox & 0x3);
384
385 /* Enable EOMI interrupt and priority */
386 desc->dattr = 0x28000000;
387 break;
388 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800389
390 /* Set transfer size aligned to next power of 2 (in double words) */
391 desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len);
392
393 /* Set snooping and source buffer address */
Zhang Weiad1e9382008-04-18 13:33:41 -0700394 desc->saddr = 0x00000004
395 | priv->msg_tx_ring.phys_buffer[priv->msg_tx_ring.tx_slot];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800396
397 /* Increment enqueue pointer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700398 omr = in_be32(&priv->msg_regs->omr);
399 out_be32(&priv->msg_regs->omr, omr | RIO_MSG_OMR_MUI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800400
401 /* Go to next descriptor */
Zhang Weiad1e9382008-04-18 13:33:41 -0700402 if (++priv->msg_tx_ring.tx_slot == priv->msg_tx_ring.size)
403 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800404
405 out:
406 return ret;
407}
408
409EXPORT_SYMBOL_GPL(rio_hw_add_outb_message);
410
411/**
Zhang Weid02443a2008-04-18 13:33:38 -0700412 * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800413 * @irq: Linux interrupt number
414 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800415 *
416 * Handles outbound message interrupts. Executes a register outbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000417 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800418 */
419static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700420fsl_rio_tx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800421{
422 int osr;
423 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700424 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800425
Zhang Weiad1e9382008-04-18 13:33:41 -0700426 osr = in_be32(&priv->msg_regs->osr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800427
428 if (osr & RIO_MSG_OSR_TE) {
429 pr_info("RIO: outbound message transmission error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700430 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800431 goto out;
432 }
433
434 if (osr & RIO_MSG_OSR_QOI) {
435 pr_info("RIO: outbound message queue overflow\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700436 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_QOI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800437 goto out;
438 }
439
440 if (osr & RIO_MSG_OSR_EOMI) {
Zhang Weiad1e9382008-04-18 13:33:41 -0700441 u32 dqp = in_be32(&priv->msg_regs->odqdpar);
442 int slot = (dqp - priv->msg_tx_ring.phys) >> 5;
443 port->outb_msg[0].mcback(port, priv->msg_tx_ring.dev_id, -1,
444 slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800445
446 /* Ack the end-of-message interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700447 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_EOMI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800448 }
449
450 out:
451 return IRQ_HANDLED;
452}
453
454/**
455 * rio_open_outb_mbox - Initialize MPC85xx outbound mailbox
456 * @mport: Master port implementing the outbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800457 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800458 * @mbox: Mailbox to open
459 * @entries: Number of entries in the outbound mailbox ring
460 *
461 * Initializes buffer ring, request the outbound message interrupt,
462 * and enables the outbound message unit. Returns %0 on success and
463 * %-EINVAL or %-ENOMEM on failure.
464 */
Matt Porter6978bbc2005-11-07 01:00:20 -0800465int rio_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800466{
467 int i, j, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700468 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800469
470 if ((entries < RIO_MIN_TX_RING_SIZE) ||
471 (entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) {
472 rc = -EINVAL;
473 goto out;
474 }
475
476 /* Initialize shadow copy ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700477 priv->msg_tx_ring.dev_id = dev_id;
478 priv->msg_tx_ring.size = entries;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800479
Zhang Weiad1e9382008-04-18 13:33:41 -0700480 for (i = 0; i < priv->msg_tx_ring.size; i++) {
481 priv->msg_tx_ring.virt_buffer[i] =
482 dma_alloc_coherent(NULL, RIO_MSG_BUFFER_SIZE,
483 &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL);
484 if (!priv->msg_tx_ring.virt_buffer[i]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800485 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -0700486 for (j = 0; j < priv->msg_tx_ring.size; j++)
487 if (priv->msg_tx_ring.virt_buffer[j])
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800488 dma_free_coherent(NULL,
Zhang Weiad1e9382008-04-18 13:33:41 -0700489 RIO_MSG_BUFFER_SIZE,
490 priv->msg_tx_ring.
491 virt_buffer[j],
492 priv->msg_tx_ring.
493 phys_buffer[j]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800494 goto out;
495 }
496 }
497
498 /* Initialize outbound message descriptor ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700499 priv->msg_tx_ring.virt = dma_alloc_coherent(NULL,
500 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
501 &priv->msg_tx_ring.phys, GFP_KERNEL);
502 if (!priv->msg_tx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800503 rc = -ENOMEM;
504 goto out_dma;
505 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700506 memset(priv->msg_tx_ring.virt, 0,
507 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE);
508 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800509
510 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700511 out_be32(&priv->msg_regs->odqdpar, priv->msg_tx_ring.phys);
512 out_be32(&priv->msg_regs->odqepar, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800513
514 /* Configure for snooping */
Zhang Weiad1e9382008-04-18 13:33:41 -0700515 out_be32(&priv->msg_regs->osar, 0x00000004);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800516
517 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700518 out_be32(&priv->msg_regs->osr, 0x000000b3);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800519
520 /* Hook up outbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700521 rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0,
522 "msg_tx", (void *)mport);
523 if (rc < 0)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800524 goto out_irq;
525
526 /*
527 * Configure outbound message unit
528 * Snooping
529 * Interrupts (all enabled, except QEIE)
530 * Chaining mode
531 * Disable
532 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700533 out_be32(&priv->msg_regs->omr, 0x00100220);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800534
535 /* Set number of entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700536 out_be32(&priv->msg_regs->omr,
537 in_be32(&priv->msg_regs->omr) |
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800538 ((get_bitmask_order(entries) - 2) << 12));
539
540 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700541 out_be32(&priv->msg_regs->omr, in_be32(&priv->msg_regs->omr) | 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800542
543 out:
544 return rc;
545
546 out_irq:
Zhang Weiad1e9382008-04-18 13:33:41 -0700547 dma_free_coherent(NULL, priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
548 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800549
550 out_dma:
Zhang Weiad1e9382008-04-18 13:33:41 -0700551 for (i = 0; i < priv->msg_tx_ring.size; i++)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800552 dma_free_coherent(NULL, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700553 priv->msg_tx_ring.virt_buffer[i],
554 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800555
556 return rc;
557}
558
559/**
560 * rio_close_outb_mbox - Shut down MPC85xx outbound mailbox
561 * @mport: Master port implementing the outbound message unit
562 * @mbox: Mailbox to close
563 *
564 * Disables the outbound message unit, free all buffers, and
565 * frees the outbound message interrupt.
566 */
567void rio_close_outb_mbox(struct rio_mport *mport, int mbox)
568{
Zhang Weiad1e9382008-04-18 13:33:41 -0700569 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800570 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700571 out_be32(&priv->msg_regs->omr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800572
573 /* Free ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700574 dma_free_coherent(NULL, priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
575 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800576
577 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700578 free_irq(IRQ_RIO_TX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800579}
580
581/**
Zhang Weid02443a2008-04-18 13:33:38 -0700582 * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800583 * @irq: Linux interrupt number
584 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800585 *
586 * Handles inbound message interrupts. Executes a registered inbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000587 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800588 */
589static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700590fsl_rio_rx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800591{
592 int isr;
593 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700594 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800595
Zhang Weiad1e9382008-04-18 13:33:41 -0700596 isr = in_be32(&priv->msg_regs->isr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800597
598 if (isr & RIO_MSG_ISR_TE) {
599 pr_info("RIO: inbound message reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700600 out_be32((void *)&priv->msg_regs->isr, RIO_MSG_ISR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800601 goto out;
602 }
603
604 /* XXX Need to check/dispatch until queue empty */
605 if (isr & RIO_MSG_ISR_DIQI) {
606 /*
607 * We implement *only* mailbox 0, but can receive messages
608 * for any mailbox/letter to that mailbox destination. So,
609 * make the callback with an unknown/invalid mailbox number
610 * argument.
611 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700612 port->inb_msg[0].mcback(port, priv->msg_rx_ring.dev_id, -1, -1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800613
614 /* Ack the queueing interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700615 out_be32(&priv->msg_regs->isr, RIO_MSG_ISR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800616 }
617
618 out:
619 return IRQ_HANDLED;
620}
621
622/**
623 * rio_open_inb_mbox - Initialize MPC85xx inbound mailbox
624 * @mport: Master port implementing the inbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800625 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800626 * @mbox: Mailbox to open
627 * @entries: Number of entries in the inbound mailbox ring
628 *
629 * Initializes buffer ring, request the inbound message interrupt,
630 * and enables the inbound message unit. Returns %0 on success
631 * and %-EINVAL or %-ENOMEM on failure.
632 */
Matt Porter6978bbc2005-11-07 01:00:20 -0800633int rio_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800634{
635 int i, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700636 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800637
638 if ((entries < RIO_MIN_RX_RING_SIZE) ||
639 (entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) {
640 rc = -EINVAL;
641 goto out;
642 }
643
644 /* Initialize client buffer ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700645 priv->msg_rx_ring.dev_id = dev_id;
646 priv->msg_rx_ring.size = entries;
647 priv->msg_rx_ring.rx_slot = 0;
648 for (i = 0; i < priv->msg_rx_ring.size; i++)
649 priv->msg_rx_ring.virt_buffer[i] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800650
651 /* Initialize inbound message ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700652 priv->msg_rx_ring.virt = dma_alloc_coherent(NULL,
653 priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
654 &priv->msg_rx_ring.phys, GFP_KERNEL);
655 if (!priv->msg_rx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800656 rc = -ENOMEM;
657 goto out;
658 }
659
660 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700661 out_be32(&priv->msg_regs->ifqdpar, (u32) priv->msg_rx_ring.phys);
662 out_be32(&priv->msg_regs->ifqepar, (u32) priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800663
664 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700665 out_be32(&priv->msg_regs->isr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800666
667 /* Hook up inbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700668 rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
669 "msg_rx", (void *)mport);
670 if (rc < 0) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800671 dma_free_coherent(NULL, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700672 priv->msg_tx_ring.virt_buffer[i],
673 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800674 goto out;
675 }
676
677 /*
678 * Configure inbound message unit:
679 * Snooping
680 * 4KB max message size
681 * Unmask all interrupt sources
682 * Disable
683 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700684 out_be32(&priv->msg_regs->imr, 0x001b0060);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800685
686 /* Set number of queue entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700687 setbits32(&priv->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800688
689 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700690 setbits32(&priv->msg_regs->imr, 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800691
692 out:
693 return rc;
694}
695
696/**
697 * rio_close_inb_mbox - Shut down MPC85xx inbound mailbox
698 * @mport: Master port implementing the inbound message unit
699 * @mbox: Mailbox to close
700 *
701 * Disables the inbound message unit, free all buffers, and
702 * frees the inbound message interrupt.
703 */
704void rio_close_inb_mbox(struct rio_mport *mport, int mbox)
705{
Zhang Weiad1e9382008-04-18 13:33:41 -0700706 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800707 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700708 out_be32(&priv->msg_regs->imr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800709
710 /* Free ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700711 dma_free_coherent(NULL, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
712 priv->msg_rx_ring.virt, priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800713
714 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700715 free_irq(IRQ_RIO_RX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800716}
717
718/**
719 * rio_hw_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
720 * @mport: Master port implementing the inbound message unit
721 * @mbox: Inbound mailbox number
722 * @buf: Buffer to add to inbound queue
723 *
724 * Adds the @buf buffer to the MPC85xx inbound message queue. Returns
725 * %0 on success or %-EINVAL on failure.
726 */
727int rio_hw_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf)
728{
729 int rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700730 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800731
732 pr_debug("RIO: rio_hw_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700733 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800734
Zhang Weiad1e9382008-04-18 13:33:41 -0700735 if (priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800736 printk(KERN_ERR
737 "RIO: error adding inbound buffer %d, buffer exists\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700738 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800739 rc = -EINVAL;
740 goto out;
741 }
742
Zhang Weiad1e9382008-04-18 13:33:41 -0700743 priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot] = buf;
744 if (++priv->msg_rx_ring.rx_slot == priv->msg_rx_ring.size)
745 priv->msg_rx_ring.rx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800746
747 out:
748 return rc;
749}
750
751EXPORT_SYMBOL_GPL(rio_hw_add_inb_buffer);
752
753/**
754 * rio_hw_get_inb_message - Fetch inbound message from the MPC85xx message unit
755 * @mport: Master port implementing the inbound message unit
756 * @mbox: Inbound mailbox number
757 *
758 * Gets the next available inbound message from the inbound message queue.
759 * A pointer to the message is returned on success or NULL on failure.
760 */
761void *rio_hw_get_inb_message(struct rio_mport *mport, int mbox)
762{
Zhang Weiad1e9382008-04-18 13:33:41 -0700763 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800764 u32 phys_buf, virt_buf;
765 void *buf = NULL;
766 int buf_idx;
767
Zhang Weiad1e9382008-04-18 13:33:41 -0700768 phys_buf = in_be32(&priv->msg_regs->ifqdpar);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800769
770 /* If no more messages, then bail out */
Zhang Weiad1e9382008-04-18 13:33:41 -0700771 if (phys_buf == in_be32(&priv->msg_regs->ifqepar))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800772 goto out2;
773
Zhang Weiad1e9382008-04-18 13:33:41 -0700774 virt_buf = (u32) priv->msg_rx_ring.virt + (phys_buf
775 - priv->msg_rx_ring.phys);
776 buf_idx = (phys_buf - priv->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE;
777 buf = priv->msg_rx_ring.virt_buffer[buf_idx];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800778
779 if (!buf) {
780 printk(KERN_ERR
781 "RIO: inbound message copy failed, no buffers\n");
782 goto out1;
783 }
784
785 /* Copy max message size, caller is expected to allocate that big */
786 memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE);
787
788 /* Clear the available buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700789 priv->msg_rx_ring.virt_buffer[buf_idx] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800790
791 out1:
Zhang Weiad1e9382008-04-18 13:33:41 -0700792 setbits32(&priv->msg_regs->imr, RIO_MSG_IMR_MI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800793
794 out2:
795 return buf;
796}
797
798EXPORT_SYMBOL_GPL(rio_hw_get_inb_message);
799
800/**
Zhang Weid02443a2008-04-18 13:33:38 -0700801 * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800802 * @irq: Linux interrupt number
803 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800804 *
805 * Handles doorbell interrupts. Parses a list of registered
806 * doorbell event handlers and executes a matching event handler.
807 */
808static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700809fsl_rio_dbell_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800810{
811 int dsr;
812 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700813 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800814
Zhang Weiad1e9382008-04-18 13:33:41 -0700815 dsr = in_be32(&priv->msg_regs->dsr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800816
817 if (dsr & DOORBELL_DSR_TE) {
818 pr_info("RIO: doorbell reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700819 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800820 goto out;
821 }
822
823 if (dsr & DOORBELL_DSR_QFI) {
824 pr_info("RIO: doorbell queue full\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700825 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_QFI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800826 goto out;
827 }
828
829 /* XXX Need to check/dispatch until queue empty */
830 if (dsr & DOORBELL_DSR_DIQI) {
831 u32 dmsg =
Zhang Weiad1e9382008-04-18 13:33:41 -0700832 (u32) priv->dbell_ring.virt +
833 (in_be32(&priv->msg_regs->dqdpar) & 0xfff);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800834 struct rio_dbell *dbell;
835 int found = 0;
836
837 pr_debug
838 ("RIO: processing doorbell, sid %2.2x tid %2.2x info %4.4x\n",
839 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
840
841 list_for_each_entry(dbell, &port->dbells, node) {
842 if ((dbell->res->start <= DBELL_INF(dmsg)) &&
843 (dbell->res->end >= DBELL_INF(dmsg))) {
844 found = 1;
845 break;
846 }
847 }
848 if (found) {
Matt Porter6978bbc2005-11-07 01:00:20 -0800849 dbell->dinb(port, dbell->dev_id, DBELL_SID(dmsg), DBELL_TID(dmsg),
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800850 DBELL_INF(dmsg));
851 } else {
852 pr_debug
853 ("RIO: spurious doorbell, sid %2.2x tid %2.2x info %4.4x\n",
854 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
855 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700856 setbits32(&priv->msg_regs->dmr, DOORBELL_DMR_DI);
857 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800858 }
859
860 out:
861 return IRQ_HANDLED;
862}
863
864/**
Zhang Weid02443a2008-04-18 13:33:38 -0700865 * fsl_rio_doorbell_init - MPC85xx doorbell interface init
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800866 * @mport: Master port implementing the inbound doorbell unit
867 *
868 * Initializes doorbell unit hardware and inbound DMA buffer
Zhang Weid02443a2008-04-18 13:33:38 -0700869 * ring. Called from fsl_rio_setup(). Returns %0 on success
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800870 * or %-ENOMEM on failure.
871 */
Zhang Weid02443a2008-04-18 13:33:38 -0700872static int fsl_rio_doorbell_init(struct rio_mport *mport)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800873{
Zhang Weiad1e9382008-04-18 13:33:41 -0700874 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800875 int rc = 0;
876
877 /* Map outbound doorbell window immediately after maintenance window */
Zhang Weiad1e9382008-04-18 13:33:41 -0700878 priv->dbell_win = ioremap(mport->iores.start + RIO_MAINT_WIN_SIZE,
879 RIO_DBELL_WIN_SIZE);
880 if (!priv->dbell_win) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800881 printk(KERN_ERR
882 "RIO: unable to map outbound doorbell window\n");
883 rc = -ENOMEM;
884 goto out;
885 }
886
887 /* Initialize inbound doorbells */
Zhang Weiad1e9382008-04-18 13:33:41 -0700888 priv->dbell_ring.virt = dma_alloc_coherent(NULL, 512 *
889 DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL);
890 if (!priv->dbell_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800891 printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n");
892 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -0700893 iounmap(priv->dbell_win);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800894 goto out;
895 }
896
897 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700898 out_be32(&priv->msg_regs->dqdpar, (u32) priv->dbell_ring.phys);
899 out_be32(&priv->msg_regs->dqepar, (u32) priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800900
901 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700902 out_be32(&priv->msg_regs->dsr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800903
904 /* Hook up doorbell handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700905 rc = request_irq(IRQ_RIO_BELL(mport), fsl_rio_dbell_handler, 0,
906 "dbell_rx", (void *)mport);
907 if (rc < 0) {
908 iounmap(priv->dbell_win);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800909 dma_free_coherent(NULL, 512 * DOORBELL_MESSAGE_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700910 priv->dbell_ring.virt, priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800911 printk(KERN_ERR
912 "MPC85xx RIO: unable to request inbound doorbell irq");
913 goto out;
914 }
915
916 /* Configure doorbells for snooping, 512 entries, and enable */
Zhang Weiad1e9382008-04-18 13:33:41 -0700917 out_be32(&priv->msg_regs->dmr, 0x00108161);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800918
919 out:
920 return rc;
921}
922
923static char *cmdline = NULL;
924
Zhang Weid02443a2008-04-18 13:33:38 -0700925static int fsl_rio_get_hdid(int index)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800926{
927 /* XXX Need to parse multiple entries in some format */
928 if (!cmdline)
929 return -1;
930
931 return simple_strtol(cmdline, NULL, 0);
932}
933
Zhang Weid02443a2008-04-18 13:33:38 -0700934static int fsl_rio_get_cmdline(char *s)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800935{
936 if (!s)
937 return 0;
938
939 cmdline = s;
940 return 1;
941}
942
Zhang Weid02443a2008-04-18 13:33:38 -0700943__setup("riohdid=", fsl_rio_get_cmdline);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800944
945/**
Zhang Weid02443a2008-04-18 13:33:38 -0700946 * fsl_rio_setup - Setup MPC85xx RapidIO interface
Zhang Weicc2bb692008-04-18 13:33:41 -0700947 * @fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800948 *
949 * Initializes MPC85xx RapidIO hardware interface, configures
950 * master port with system-specific info, and registers the
951 * master port with the RapidIO subsystem.
952 */
Zhang Weicc2bb692008-04-18 13:33:41 -0700953int fsl_rio_setup(struct of_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800954{
955 struct rio_ops *ops;
956 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -0700957 struct rio_priv *priv;
958 int rc = 0;
959 const u32 *dt_range, *cell;
960 struct resource regs;
961 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -0700962 u32 ccsr;
Zhang Weicc2bb692008-04-18 13:33:41 -0700963 u64 law_start, law_size;
964 int paw, aw, sw;
965
966 if (!dev->node) {
967 dev_err(&dev->dev, "Device OF-Node is NULL");
968 return -EFAULT;
969 }
970
971 rc = of_address_to_resource(dev->node, 0, &regs);
972 if (rc) {
973 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
974 dev->node->full_name);
975 return -EFAULT;
976 }
977 dev_info(&dev->dev, "Of-device full name %s\n", dev->node->full_name);
978 dev_info(&dev->dev, "Regs start 0x%08x size 0x%08x\n", regs.start,
979 regs.end - regs.start + 1);
980
981 dt_range = of_get_property(dev->node, "ranges", &rlen);
982 if (!dt_range) {
983 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
984 dev->node->full_name);
985 return -EFAULT;
986 }
987
988 /* Get node address wide */
989 cell = of_get_property(dev->node, "#address-cells", NULL);
990 if (cell)
991 aw = *cell;
992 else
993 aw = of_n_addr_cells(dev->node);
994 /* Get node size wide */
995 cell = of_get_property(dev->node, "#size-cells", NULL);
996 if (cell)
997 sw = *cell;
998 else
999 sw = of_n_size_cells(dev->node);
1000 /* Get parent address wide wide */
1001 paw = of_n_addr_cells(dev->node);
1002
1003 law_start = of_read_number(dt_range + aw, paw);
1004 law_size = of_read_number(dt_range + aw + paw, sw);
1005
1006 dev_info(&dev->dev, "LAW start 0x%016llx, size 0x%016llx.\n",
1007 law_start, law_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001008
1009 ops = kmalloc(sizeof(struct rio_ops), GFP_KERNEL);
Zhang Weid02443a2008-04-18 13:33:38 -07001010 ops->lcread = fsl_local_config_read;
1011 ops->lcwrite = fsl_local_config_write;
1012 ops->cread = fsl_rio_config_read;
1013 ops->cwrite = fsl_rio_config_write;
1014 ops->dsend = fsl_rio_doorbell_send;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001015
Zhang Weiad1e9382008-04-18 13:33:41 -07001016 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001017 port->id = 0;
1018 port->index = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001019
1020 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
1021 if (!priv) {
1022 printk(KERN_ERR "Can't alloc memory for 'priv'\n");
1023 rc = -ENOMEM;
1024 goto err;
1025 }
1026
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001027 INIT_LIST_HEAD(&port->dbells);
1028 port->iores.start = law_start;
1029 port->iores.end = law_start + law_size;
1030 port->iores.flags = IORESOURCE_MEM;
1031
Zhang Weicc2bb692008-04-18 13:33:41 -07001032 priv->bellirq = irq_of_parse_and_map(dev->node, 2);
1033 priv->txirq = irq_of_parse_and_map(dev->node, 3);
1034 priv->rxirq = irq_of_parse_and_map(dev->node, 4);
1035 dev_info(&dev->dev, "bellirq: %d, txirq: %d, rxirq %d\n", priv->bellirq,
1036 priv->txirq, priv->rxirq);
1037
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001038 rio_init_dbell_res(&port->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
1039 rio_init_mbox_res(&port->riores[RIO_INB_MBOX_RESOURCE], 0, 0);
1040 rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0);
1041 strcpy(port->name, "RIO0 mport");
1042
1043 port->ops = ops;
Zhang Weid02443a2008-04-18 13:33:38 -07001044 port->host_deviceid = fsl_rio_get_hdid(port->id);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001045
Zhang Weiad1e9382008-04-18 13:33:41 -07001046 port->priv = priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001047 rio_register_mport(port);
1048
Zhang Weicc2bb692008-04-18 13:33:41 -07001049 priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1);
Zhang Weie0423232008-04-18 13:33:42 -07001050
Zhang Wei61b26912008-04-18 13:33:44 -07001051 /* Probe the master port phy type */
1052 ccsr = in_be32(priv->regs_win + RIO_CCSR);
1053 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
1054 dev_info(&dev->dev, "RapidIO PHY type: %s\n",
1055 (port->phy_type == RIO_PHY_PARALLEL) ? "parallel" :
1056 ((port->phy_type == RIO_PHY_SERIAL) ? "serial" :
1057 "unknown"));
1058
Zhang Weie0423232008-04-18 13:33:42 -07001059 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
1060 & RIO_PEF_CTLS) >> 4;
1061 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
1062 port->sys_size ? 65536 : 256);
1063
Zhang Weiad1e9382008-04-18 13:33:41 -07001064 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
1065 + RIO_ATMU_REGS_OFFSET);
1066 priv->maint_atmu_regs = priv->atmu_regs + 1;
1067 priv->dbell_atmu_regs = priv->atmu_regs + 2;
Zhang Wei61b26912008-04-18 13:33:44 -07001068 priv->msg_regs = (struct rio_msg_regs *)(priv->regs_win +
1069 ((port->phy_type == RIO_PHY_SERIAL) ?
1070 RIO_S_MSG_REGS_OFFSET : RIO_P_MSG_REGS_OFFSET));
1071
1072 /* Set to receive any dist ID for serial RapidIO controller. */
1073 if (port->phy_type == RIO_PHY_SERIAL)
1074 out_be32((priv->regs_win + RIO_ISR_AACR), RIO_ISR_AACR_AA);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001075
1076 /* Configure maintenance transaction window */
Zhang Weiad1e9382008-04-18 13:33:41 -07001077 out_be32(&priv->maint_atmu_regs->rowbar, 0x000c0000);
1078 out_be32(&priv->maint_atmu_regs->rowar, 0x80077015);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001079
Zhang Weiad1e9382008-04-18 13:33:41 -07001080 priv->maint_win = ioremap(law_start, RIO_MAINT_WIN_SIZE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001081
1082 /* Configure outbound doorbell window */
Zhang Weiad1e9382008-04-18 13:33:41 -07001083 out_be32(&priv->dbell_atmu_regs->rowbar, 0x000c0400);
1084 out_be32(&priv->dbell_atmu_regs->rowar, 0x8004200b);
Zhang Weid02443a2008-04-18 13:33:38 -07001085 fsl_rio_doorbell_init(port);
Zhang Weiad1e9382008-04-18 13:33:41 -07001086
Zhang Weicc2bb692008-04-18 13:33:41 -07001087 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001088err:
1089 if (priv)
1090 iounmap(priv->regs_win);
Zhang Weicc2bb692008-04-18 13:33:41 -07001091 kfree(ops);
Zhang Weiad1e9382008-04-18 13:33:41 -07001092 kfree(priv);
1093 kfree(port);
Zhang Weicc2bb692008-04-18 13:33:41 -07001094 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001095}
Zhang Weicc2bb692008-04-18 13:33:41 -07001096
1097/* The probe function for RapidIO peer-to-peer network.
1098 */
1099static int __devinit fsl_of_rio_rpn_probe(struct of_device *dev,
1100 const struct of_device_id *match)
1101{
1102 int rc;
1103 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
1104 dev->node->full_name);
1105
1106 rc = fsl_rio_setup(dev);
1107 if (rc)
1108 goto out;
1109
1110 /* Enumerate all registered ports */
1111 rc = rio_init_mports();
1112out:
1113 return rc;
1114};
1115
1116static const struct of_device_id fsl_of_rio_rpn_ids[] = {
1117 {
1118 .compatible = "fsl,rapidio-delta",
1119 },
1120 {},
1121};
1122
1123static struct of_platform_driver fsl_of_rio_rpn_driver = {
1124 .name = "fsl-of-rio",
1125 .match_table = fsl_of_rio_rpn_ids,
1126 .probe = fsl_of_rio_rpn_probe,
1127};
1128
1129static __init int fsl_of_rio_rpn_init(void)
1130{
1131 return of_register_platform_driver(&fsl_of_rio_rpn_driver);
1132}
1133
1134subsys_initcall(fsl_of_rio_rpn_init);