blob: 14232d57369c4de4f373f76e095ec95bb559345e [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 *
Thomas Mollbd4fb652010-05-26 14:44:05 -07004 * Copyright 2009 Sysgo AG
5 * Thomas Moll <thomas.moll@sysgo.com>
6 * - fixed maintenance access routines, check for aligned access
7 *
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07008 * Copyright 2009 Integrated Device Technology, Inc.
9 * Alex Bounine <alexandre.bounine@idt.com>
10 * - Added Port-Write message handling
11 * - Added Machine Check exception handling
12 *
Zhang Weiad1e9382008-04-18 13:33:41 -070013 * Copyright (C) 2007, 2008 Freescale Semiconductor, Inc.
14 * Zhang Wei <wei.zhang@freescale.com>
15 *
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080016 * Copyright 2005 MontaVista Software, Inc.
17 * Matt Porter <mporter@kernel.crashing.org>
18 *
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the
21 * Free Software Foundation; either version 2 of the License, or (at your
22 * option) any later version.
23 */
24
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080025#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/dma-mapping.h>
29#include <linux/interrupt.h>
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +040030#include <linux/device.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080031#include <linux/rio.h>
32#include <linux/rio_drv.h>
Zhang Weicc2bb692008-04-18 13:33:41 -070033#include <linux/of_platform.h>
Zhang Wei61b26912008-04-18 13:33:44 -070034#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070036#include <linux/kfifo.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080037
38#include <asm/io.h>
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070039#include <asm/machdep.h>
40#include <asm/uaccess.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080041
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070042#undef DEBUG_PW /* Port-Write debugging */
43
Zhang Weiad1e9382008-04-18 13:33:41 -070044/* RapidIO definition irq, which read from OF-tree */
45#define IRQ_RIO_BELL(m) (((struct rio_priv *)(m->priv))->bellirq)
46#define IRQ_RIO_TX(m) (((struct rio_priv *)(m->priv))->txirq)
47#define IRQ_RIO_RX(m) (((struct rio_priv *)(m->priv))->rxirq)
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070048#define IRQ_RIO_PW(m) (((struct rio_priv *)(m->priv))->pwirq)
Zhang Weiad1e9382008-04-18 13:33:41 -070049
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080050#define RIO_ATMU_REGS_OFFSET 0x10c00
Zhang Wei61b26912008-04-18 13:33:44 -070051#define RIO_P_MSG_REGS_OFFSET 0x11000
52#define RIO_S_MSG_REGS_OFFSET 0x13000
Alexandre Bounineaf84ca32010-10-27 15:34:34 -070053#define RIO_GCCSR 0x13c
Zhang Wei61b26912008-04-18 13:33:44 -070054#define RIO_ESCSR 0x158
55#define RIO_CCSR 0x15c
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070056#define RIO_LTLEDCSR 0x0608
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070057#define RIO_LTLEDCSR_IER 0x80000000
58#define RIO_LTLEDCSR_PRT 0x01000000
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070059#define RIO_LTLEECSR 0x060c
60#define RIO_EPWISR 0x10010
Zhang Wei61b26912008-04-18 13:33:44 -070061#define RIO_ISR_AACR 0x10120
62#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080063#define RIO_MAINT_WIN_SIZE 0x400000
64#define RIO_DBELL_WIN_SIZE 0x1000
65
66#define RIO_MSG_OMR_MUI 0x00000002
67#define RIO_MSG_OSR_TE 0x00000080
68#define RIO_MSG_OSR_QOI 0x00000020
69#define RIO_MSG_OSR_QFI 0x00000010
70#define RIO_MSG_OSR_MUB 0x00000004
71#define RIO_MSG_OSR_EOMI 0x00000002
72#define RIO_MSG_OSR_QEI 0x00000001
73
74#define RIO_MSG_IMR_MI 0x00000002
75#define RIO_MSG_ISR_TE 0x00000080
76#define RIO_MSG_ISR_QFI 0x00000010
77#define RIO_MSG_ISR_DIQI 0x00000001
78
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070079#define RIO_IPWMR_SEN 0x00100000
80#define RIO_IPWMR_QFIE 0x00000100
81#define RIO_IPWMR_EIE 0x00000020
82#define RIO_IPWMR_CQ 0x00000002
83#define RIO_IPWMR_PWE 0x00000001
84
85#define RIO_IPWSR_QF 0x00100000
86#define RIO_IPWSR_TE 0x00000080
87#define RIO_IPWSR_QFI 0x00000010
88#define RIO_IPWSR_PWD 0x00000008
89#define RIO_IPWSR_PWB 0x00000004
90
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -070091#define RIO_EPWISR_PINT 0x80000000
92#define RIO_EPWISR_PW 0x00000001
93
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080094#define RIO_MSG_DESC_SIZE 32
95#define RIO_MSG_BUFFER_SIZE 4096
96#define RIO_MIN_TX_RING_SIZE 2
97#define RIO_MAX_TX_RING_SIZE 2048
98#define RIO_MIN_RX_RING_SIZE 2
99#define RIO_MAX_RX_RING_SIZE 2048
100
101#define DOORBELL_DMR_DI 0x00000002
102#define DOORBELL_DSR_TE 0x00000080
103#define DOORBELL_DSR_QFI 0x00000010
104#define DOORBELL_DSR_DIQI 0x00000001
Zhang Wei6c391032008-04-18 13:33:48 -0700105#define DOORBELL_TID_OFFSET 0x02
106#define DOORBELL_SID_OFFSET 0x04
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800107#define DOORBELL_INFO_OFFSET 0x06
108
109#define DOORBELL_MESSAGE_SIZE 0x08
Zhang Wei6c391032008-04-18 13:33:48 -0700110#define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET))
111#define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800112#define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
113
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800114struct rio_atmu_regs {
115 u32 rowtar;
Zhang Wei61b26912008-04-18 13:33:44 -0700116 u32 rowtear;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800117 u32 rowbar;
118 u32 pad2;
119 u32 rowar;
120 u32 pad3[3];
121};
122
123struct rio_msg_regs {
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800124 u32 omr; /* 0xD_3000 - Outbound message 0 mode register */
125 u32 osr; /* 0xD_3004 - Outbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800126 u32 pad1;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800127 u32 odqdpar; /* 0xD_300C - Outbound message 0 descriptor queue
128 dequeue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800129 u32 pad2;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800130 u32 osar; /* 0xD_3014 - Outbound message 0 source address
131 register */
132 u32 odpr; /* 0xD_3018 - Outbound message 0 destination port
133 register */
134 u32 odatr; /* 0xD_301C - Outbound message 0 destination attributes
135 Register*/
136 u32 odcr; /* 0xD_3020 - Outbound message 0 double-word count
137 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800138 u32 pad3;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800139 u32 odqepar; /* 0xD_3028 - Outbound message 0 descriptor queue
140 enqueue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800141 u32 pad4[13];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800142 u32 imr; /* 0xD_3060 - Inbound message 0 mode register */
143 u32 isr; /* 0xD_3064 - Inbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800144 u32 pad5;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800145 u32 ifqdpar; /* 0xD_306C - Inbound message 0 frame queue dequeue
146 pointer address register*/
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800147 u32 pad6;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800148 u32 ifqepar; /* 0xD_3074 - Inbound message 0 frame queue enqueue
149 pointer address register */
Zhang Wei61b26912008-04-18 13:33:44 -0700150 u32 pad7[226];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800151 u32 odmr; /* 0xD_3400 - Outbound doorbell mode register */
152 u32 odsr; /* 0xD_3404 - Outbound doorbell status register */
Zhang Wei61b26912008-04-18 13:33:44 -0700153 u32 res0[4];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800154 u32 oddpr; /* 0xD_3418 - Outbound doorbell destination port
155 register */
156 u32 oddatr; /* 0xD_341c - Outbound doorbell destination attributes
157 register */
Zhang Wei61b26912008-04-18 13:33:44 -0700158 u32 res1[3];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800159 u32 odretcr; /* 0xD_342C - Outbound doorbell retry error threshold
160 configuration register */
Zhang Wei61b26912008-04-18 13:33:44 -0700161 u32 res2[12];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800162 u32 dmr; /* 0xD_3460 - Inbound doorbell mode register */
163 u32 dsr; /* 0xD_3464 - Inbound doorbell status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800164 u32 pad8;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800165 u32 dqdpar; /* 0xD_346C - Inbound doorbell queue dequeue Pointer
166 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800167 u32 pad9;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800168 u32 dqepar; /* 0xD_3474 - Inbound doorbell Queue enqueue pointer
169 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800170 u32 pad10[26];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800171 u32 pwmr; /* 0xD_34E0 - Inbound port-write mode register */
172 u32 pwsr; /* 0xD_34E4 - Inbound port-write status register */
173 u32 epwqbar; /* 0xD_34E8 - Extended Port-Write Queue Base Address
174 register */
175 u32 pwqbar; /* 0xD_34EC - Inbound port-write queue base address
176 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800177};
178
179struct rio_tx_desc {
180 u32 res1;
181 u32 saddr;
182 u32 dport;
183 u32 dattr;
184 u32 res2;
185 u32 res3;
186 u32 dwcnt;
187 u32 res4;
188};
189
Zhang Weiad1e9382008-04-18 13:33:41 -0700190struct rio_dbell_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800191 void *virt;
192 dma_addr_t phys;
Zhang Weiad1e9382008-04-18 13:33:41 -0700193};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800194
Zhang Weiad1e9382008-04-18 13:33:41 -0700195struct rio_msg_tx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800196 void *virt;
197 dma_addr_t phys;
198 void *virt_buffer[RIO_MAX_TX_RING_SIZE];
199 dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE];
200 int tx_slot;
201 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800202 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700203};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800204
Zhang Weiad1e9382008-04-18 13:33:41 -0700205struct rio_msg_rx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800206 void *virt;
207 dma_addr_t phys;
208 void *virt_buffer[RIO_MAX_RX_RING_SIZE];
209 int rx_slot;
210 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800211 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700212};
213
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700214struct rio_port_write_msg {
215 void *virt;
216 dma_addr_t phys;
217 u32 msg_count;
218 u32 err_count;
219 u32 discard_count;
220};
221
Zhang Weiad1e9382008-04-18 13:33:41 -0700222struct rio_priv {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400223 struct device *dev;
Zhang Weiad1e9382008-04-18 13:33:41 -0700224 void __iomem *regs_win;
225 struct rio_atmu_regs __iomem *atmu_regs;
226 struct rio_atmu_regs __iomem *maint_atmu_regs;
227 struct rio_atmu_regs __iomem *dbell_atmu_regs;
228 void __iomem *dbell_win;
229 void __iomem *maint_win;
230 struct rio_msg_regs __iomem *msg_regs;
231 struct rio_dbell_ring dbell_ring;
232 struct rio_msg_tx_ring msg_tx_ring;
233 struct rio_msg_rx_ring msg_rx_ring;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700234 struct rio_port_write_msg port_write_msg;
Zhang Weiad1e9382008-04-18 13:33:41 -0700235 int bellirq;
236 int txirq;
237 int rxirq;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700238 int pwirq;
239 struct work_struct pw_work;
240 struct kfifo pw_fifo;
241 spinlock_t pw_fifo_lock;
Zhang Weiad1e9382008-04-18 13:33:41 -0700242};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800243
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700244#define __fsl_read_rio_config(x, addr, err, op) \
245 __asm__ __volatile__( \
246 "1: "op" %1,0(%2)\n" \
247 " eieio\n" \
248 "2:\n" \
249 ".section .fixup,\"ax\"\n" \
250 "3: li %1,-1\n" \
251 " li %0,%3\n" \
252 " b 2b\n" \
253 ".section __ex_table,\"a\"\n" \
254 " .align 2\n" \
255 " .long 1b,3b\n" \
256 ".text" \
257 : "=r" (err), "=r" (x) \
258 : "b" (addr), "i" (-EFAULT), "0" (err))
259
260static void __iomem *rio_regs_win;
261
Li Yangff33f182010-06-18 14:24:20 +0800262#ifdef CONFIG_E500
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700263static int (*saved_mcheck_exception)(struct pt_regs *regs);
264
265static int fsl_rio_mcheck_exception(struct pt_regs *regs)
266{
267 const struct exception_table_entry *entry = NULL;
Li Yangff33f182010-06-18 14:24:20 +0800268 unsigned long reason = mfspr(SPRN_MCSR);
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700269
270 if (reason & MCSR_BUS_RBERR) {
271 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
272 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
273 /* Check if we are prepared to handle this fault */
274 entry = search_exception_tables(regs->nip);
275 if (entry) {
276 pr_debug("RIO: %s - MC Exception handled\n",
277 __func__);
278 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
279 0);
280 regs->msr |= MSR_RI;
281 regs->nip = entry->fixup;
282 return 1;
283 }
284 }
285 }
286
287 if (saved_mcheck_exception)
288 return saved_mcheck_exception(regs);
289 else
290 return cur_cpu_spec->machine_check(regs);
291}
Li Yangff33f182010-06-18 14:24:20 +0800292#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700293
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800294/**
Zhang Weid02443a2008-04-18 13:33:38 -0700295 * fsl_rio_doorbell_send - Send a MPC85xx doorbell message
Randy Dunlap9941d942008-04-30 16:45:58 -0700296 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800297 * @index: ID of RapidIO interface
298 * @destid: Destination ID of target device
299 * @data: 16-bit info field of RapidIO doorbell message
300 *
301 * Sends a MPC85xx doorbell message. Returns %0 on success or
302 * %-EINVAL on failure.
303 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700304static int fsl_rio_doorbell_send(struct rio_mport *mport,
305 int index, u16 destid, u16 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800306{
Zhang Weiad1e9382008-04-18 13:33:41 -0700307 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700308 pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800309 index, destid, data);
Zhang Wei61b26912008-04-18 13:33:44 -0700310 switch (mport->phy_type) {
311 case RIO_PHY_PARALLEL:
312 out_be32(&priv->dbell_atmu_regs->rowtar, destid << 22);
313 out_be16(priv->dbell_win, data);
314 break;
315 case RIO_PHY_SERIAL:
316 /* In the serial version silicons, such as MPC8548, MPC8641,
317 * below operations is must be.
318 */
319 out_be32(&priv->msg_regs->odmr, 0x00000000);
320 out_be32(&priv->msg_regs->odretcr, 0x00000004);
321 out_be32(&priv->msg_regs->oddpr, destid << 16);
322 out_be32(&priv->msg_regs->oddatr, data);
323 out_be32(&priv->msg_regs->odmr, 0x00000001);
324 break;
325 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800326
327 return 0;
328}
329
330/**
Zhang Weid02443a2008-04-18 13:33:38 -0700331 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700332 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800333 * @index: ID of RapdiIO interface
334 * @offset: Offset into configuration space
335 * @len: Length (in bytes) of the maintenance transaction
336 * @data: Value to be read into
337 *
338 * Generates a MPC85xx local configuration space read. Returns %0 on
339 * success or %-EINVAL on failure.
340 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700341static int fsl_local_config_read(struct rio_mport *mport,
342 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800343{
Zhang Weiad1e9382008-04-18 13:33:41 -0700344 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700345 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800346 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700347 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800348
349 return 0;
350}
351
352/**
Zhang Weid02443a2008-04-18 13:33:38 -0700353 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700354 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800355 * @index: ID of RapdiIO interface
356 * @offset: Offset into configuration space
357 * @len: Length (in bytes) of the maintenance transaction
358 * @data: Value to be written
359 *
360 * Generates a MPC85xx local configuration space write. Returns %0 on
361 * success or %-EINVAL on failure.
362 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700363static int fsl_local_config_write(struct rio_mport *mport,
364 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800365{
Zhang Weiad1e9382008-04-18 13:33:41 -0700366 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800367 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700368 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800369 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700370 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800371
372 return 0;
373}
374
375/**
Zhang Weid02443a2008-04-18 13:33:38 -0700376 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700377 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800378 * @index: ID of RapdiIO interface
379 * @destid: Destination ID of transaction
380 * @hopcount: Number of hops to target device
381 * @offset: Offset into configuration space
382 * @len: Length (in bytes) of the maintenance transaction
383 * @val: Location to be read into
384 *
385 * Generates a MPC85xx read maintenance transaction. Returns %0 on
386 * success or %-EINVAL on failure.
387 */
388static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700389fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
390 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800391{
Zhang Weiad1e9382008-04-18 13:33:41 -0700392 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800393 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700394 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800395
396 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700397 ("fsl_rio_config_read: index %d destid %d hopcount %d offset %8.8x len %d\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800398 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800399
Thomas Mollbd4fb652010-05-26 14:44:05 -0700400 /* 16MB maintenance window possible */
401 /* allow only aligned access to maintenance registers */
402 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
403 return -EINVAL;
404
405 out_be32(&priv->maint_atmu_regs->rowtar,
406 (destid << 22) | (hopcount << 12) | (offset >> 12));
407 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
408
409 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800410 switch (len) {
411 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700412 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800413 break;
414 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700415 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800416 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700417 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700418 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800419 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700420 default:
421 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800422 }
423
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700424 if (err) {
425 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
426 err, destid, hopcount, offset);
427 }
428
429 *val = rval;
430
431 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800432}
433
434/**
Zhang Weid02443a2008-04-18 13:33:38 -0700435 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700436 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800437 * @index: ID of RapdiIO interface
438 * @destid: Destination ID of transaction
439 * @hopcount: Number of hops to target device
440 * @offset: Offset into configuration space
441 * @len: Length (in bytes) of the maintenance transaction
442 * @val: Value to be written
443 *
444 * Generates an MPC85xx write maintenance transaction. Returns %0 on
445 * success or %-EINVAL on failure.
446 */
447static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700448fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
449 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800450{
Zhang Weiad1e9382008-04-18 13:33:41 -0700451 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800452 u8 *data;
453 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700454 ("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 -0800455 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800456
Thomas Mollbd4fb652010-05-26 14:44:05 -0700457 /* 16MB maintenance windows possible */
458 /* allow only aligned access to maintenance registers */
459 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
460 return -EINVAL;
461
462 out_be32(&priv->maint_atmu_regs->rowtar,
463 (destid << 22) | (hopcount << 12) | (offset >> 12));
464 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
465
466 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800467 switch (len) {
468 case 1:
469 out_8((u8 *) data, val);
470 break;
471 case 2:
472 out_be16((u16 *) data, val);
473 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700474 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800475 out_be32((u32 *) data, val);
476 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700477 default:
478 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800479 }
480
481 return 0;
482}
483
484/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700485 * fsl_add_outb_message - Add message to the MPC85xx outbound message queue
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800486 * @mport: Master port with outbound message queue
487 * @rdev: Target of outbound message
488 * @mbox: Outbound mailbox
489 * @buffer: Message to add to outbound queue
490 * @len: Length of message
491 *
492 * Adds the @buffer message to the MPC85xx outbound message queue. Returns
493 * %0 on success or %-EINVAL on failure.
494 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700495static int
496fsl_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800497 void *buffer, size_t len)
498{
Zhang Weiad1e9382008-04-18 13:33:41 -0700499 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800500 u32 omr;
Zhang Weiad1e9382008-04-18 13:33:41 -0700501 struct rio_tx_desc *desc = (struct rio_tx_desc *)priv->msg_tx_ring.virt
502 + priv->msg_tx_ring.tx_slot;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800503 int ret = 0;
504
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700505 pr_debug("RIO: fsl_add_outb_message(): destid %4.4x mbox %d buffer " \
506 "%8.8x len %8.8x\n", rdev->destid, mbox, (int)buffer, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800507
508 if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) {
509 ret = -EINVAL;
510 goto out;
511 }
512
513 /* Copy and clear rest of buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700514 memcpy(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot], buffer,
515 len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800516 if (len < (RIO_MAX_MSG_SIZE - 4))
Zhang Weiad1e9382008-04-18 13:33:41 -0700517 memset(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot]
518 + len, 0, RIO_MAX_MSG_SIZE - len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800519
Zhang Wei61b26912008-04-18 13:33:44 -0700520 switch (mport->phy_type) {
521 case RIO_PHY_PARALLEL:
522 /* Set mbox field for message */
523 desc->dport = mbox & 0x3;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800524
Zhang Wei61b26912008-04-18 13:33:44 -0700525 /* Enable EOMI interrupt, set priority, and set destid */
526 desc->dattr = 0x28000000 | (rdev->destid << 2);
527 break;
528 case RIO_PHY_SERIAL:
529 /* Set mbox field for message, and set destid */
530 desc->dport = (rdev->destid << 16) | (mbox & 0x3);
531
532 /* Enable EOMI interrupt and priority */
533 desc->dattr = 0x28000000;
534 break;
535 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800536
537 /* Set transfer size aligned to next power of 2 (in double words) */
538 desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len);
539
540 /* Set snooping and source buffer address */
Zhang Weiad1e9382008-04-18 13:33:41 -0700541 desc->saddr = 0x00000004
542 | priv->msg_tx_ring.phys_buffer[priv->msg_tx_ring.tx_slot];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800543
544 /* Increment enqueue pointer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700545 omr = in_be32(&priv->msg_regs->omr);
546 out_be32(&priv->msg_regs->omr, omr | RIO_MSG_OMR_MUI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800547
548 /* Go to next descriptor */
Zhang Weiad1e9382008-04-18 13:33:41 -0700549 if (++priv->msg_tx_ring.tx_slot == priv->msg_tx_ring.size)
550 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800551
552 out:
553 return ret;
554}
555
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800556/**
Zhang Weid02443a2008-04-18 13:33:38 -0700557 * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800558 * @irq: Linux interrupt number
559 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800560 *
561 * Handles outbound message interrupts. Executes a register outbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000562 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800563 */
564static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700565fsl_rio_tx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800566{
567 int osr;
568 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700569 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800570
Zhang Weiad1e9382008-04-18 13:33:41 -0700571 osr = in_be32(&priv->msg_regs->osr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800572
573 if (osr & RIO_MSG_OSR_TE) {
574 pr_info("RIO: outbound message transmission error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700575 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800576 goto out;
577 }
578
579 if (osr & RIO_MSG_OSR_QOI) {
580 pr_info("RIO: outbound message queue overflow\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700581 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_QOI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800582 goto out;
583 }
584
585 if (osr & RIO_MSG_OSR_EOMI) {
Zhang Weiad1e9382008-04-18 13:33:41 -0700586 u32 dqp = in_be32(&priv->msg_regs->odqdpar);
587 int slot = (dqp - priv->msg_tx_ring.phys) >> 5;
588 port->outb_msg[0].mcback(port, priv->msg_tx_ring.dev_id, -1,
589 slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800590
591 /* Ack the end-of-message interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700592 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_EOMI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800593 }
594
595 out:
596 return IRQ_HANDLED;
597}
598
599/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700600 * fsl_open_outb_mbox - Initialize MPC85xx outbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800601 * @mport: Master port implementing the outbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800602 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800603 * @mbox: Mailbox to open
604 * @entries: Number of entries in the outbound mailbox ring
605 *
606 * Initializes buffer ring, request the outbound message interrupt,
607 * and enables the outbound message unit. Returns %0 on success and
608 * %-EINVAL or %-ENOMEM on failure.
609 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700610static int
611fsl_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800612{
613 int i, j, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700614 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800615
616 if ((entries < RIO_MIN_TX_RING_SIZE) ||
617 (entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) {
618 rc = -EINVAL;
619 goto out;
620 }
621
622 /* Initialize shadow copy ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700623 priv->msg_tx_ring.dev_id = dev_id;
624 priv->msg_tx_ring.size = entries;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800625
Zhang Weiad1e9382008-04-18 13:33:41 -0700626 for (i = 0; i < priv->msg_tx_ring.size; i++) {
627 priv->msg_tx_ring.virt_buffer[i] =
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400628 dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700629 &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL);
630 if (!priv->msg_tx_ring.virt_buffer[i]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800631 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -0700632 for (j = 0; j < priv->msg_tx_ring.size; j++)
633 if (priv->msg_tx_ring.virt_buffer[j])
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400634 dma_free_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700635 RIO_MSG_BUFFER_SIZE,
636 priv->msg_tx_ring.
637 virt_buffer[j],
638 priv->msg_tx_ring.
639 phys_buffer[j]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800640 goto out;
641 }
642 }
643
644 /* Initialize outbound message descriptor ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400645 priv->msg_tx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700646 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
647 &priv->msg_tx_ring.phys, GFP_KERNEL);
648 if (!priv->msg_tx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800649 rc = -ENOMEM;
650 goto out_dma;
651 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700652 memset(priv->msg_tx_ring.virt, 0,
653 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE);
654 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800655
656 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700657 out_be32(&priv->msg_regs->odqdpar, priv->msg_tx_ring.phys);
658 out_be32(&priv->msg_regs->odqepar, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800659
660 /* Configure for snooping */
Zhang Weiad1e9382008-04-18 13:33:41 -0700661 out_be32(&priv->msg_regs->osar, 0x00000004);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800662
663 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700664 out_be32(&priv->msg_regs->osr, 0x000000b3);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800665
666 /* Hook up outbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700667 rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0,
668 "msg_tx", (void *)mport);
669 if (rc < 0)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800670 goto out_irq;
671
672 /*
673 * Configure outbound message unit
674 * Snooping
675 * Interrupts (all enabled, except QEIE)
676 * Chaining mode
677 * Disable
678 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700679 out_be32(&priv->msg_regs->omr, 0x00100220);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800680
681 /* Set number of entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700682 out_be32(&priv->msg_regs->omr,
683 in_be32(&priv->msg_regs->omr) |
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800684 ((get_bitmask_order(entries) - 2) << 12));
685
686 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700687 out_be32(&priv->msg_regs->omr, in_be32(&priv->msg_regs->omr) | 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800688
689 out:
690 return rc;
691
692 out_irq:
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400693 dma_free_coherent(priv->dev,
694 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700695 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800696
697 out_dma:
Zhang Weiad1e9382008-04-18 13:33:41 -0700698 for (i = 0; i < priv->msg_tx_ring.size; i++)
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400699 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700700 priv->msg_tx_ring.virt_buffer[i],
701 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800702
703 return rc;
704}
705
706/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700707 * fsl_close_outb_mbox - Shut down MPC85xx outbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800708 * @mport: Master port implementing the outbound message unit
709 * @mbox: Mailbox to close
710 *
711 * Disables the outbound message unit, free all buffers, and
712 * frees the outbound message interrupt.
713 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700714static void fsl_close_outb_mbox(struct rio_mport *mport, int mbox)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800715{
Zhang Weiad1e9382008-04-18 13:33:41 -0700716 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800717 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700718 out_be32(&priv->msg_regs->omr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800719
720 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400721 dma_free_coherent(priv->dev,
722 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700723 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800724
725 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700726 free_irq(IRQ_RIO_TX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800727}
728
729/**
Zhang Weid02443a2008-04-18 13:33:38 -0700730 * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800731 * @irq: Linux interrupt number
732 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800733 *
734 * Handles inbound message interrupts. Executes a registered inbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000735 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800736 */
737static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700738fsl_rio_rx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800739{
740 int isr;
741 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700742 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800743
Zhang Weiad1e9382008-04-18 13:33:41 -0700744 isr = in_be32(&priv->msg_regs->isr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800745
746 if (isr & RIO_MSG_ISR_TE) {
747 pr_info("RIO: inbound message reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700748 out_be32((void *)&priv->msg_regs->isr, RIO_MSG_ISR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800749 goto out;
750 }
751
752 /* XXX Need to check/dispatch until queue empty */
753 if (isr & RIO_MSG_ISR_DIQI) {
754 /*
755 * We implement *only* mailbox 0, but can receive messages
756 * for any mailbox/letter to that mailbox destination. So,
757 * make the callback with an unknown/invalid mailbox number
758 * argument.
759 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700760 port->inb_msg[0].mcback(port, priv->msg_rx_ring.dev_id, -1, -1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800761
762 /* Ack the queueing interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700763 out_be32(&priv->msg_regs->isr, RIO_MSG_ISR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800764 }
765
766 out:
767 return IRQ_HANDLED;
768}
769
770/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700771 * fsl_open_inb_mbox - Initialize MPC85xx inbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800772 * @mport: Master port implementing the inbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800773 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800774 * @mbox: Mailbox to open
775 * @entries: Number of entries in the inbound mailbox ring
776 *
777 * Initializes buffer ring, request the inbound message interrupt,
778 * and enables the inbound message unit. Returns %0 on success
779 * and %-EINVAL or %-ENOMEM on failure.
780 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700781static int
782fsl_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800783{
784 int i, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700785 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800786
787 if ((entries < RIO_MIN_RX_RING_SIZE) ||
788 (entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) {
789 rc = -EINVAL;
790 goto out;
791 }
792
793 /* Initialize client buffer ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700794 priv->msg_rx_ring.dev_id = dev_id;
795 priv->msg_rx_ring.size = entries;
796 priv->msg_rx_ring.rx_slot = 0;
797 for (i = 0; i < priv->msg_rx_ring.size; i++)
798 priv->msg_rx_ring.virt_buffer[i] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800799
800 /* Initialize inbound message ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400801 priv->msg_rx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700802 priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
803 &priv->msg_rx_ring.phys, GFP_KERNEL);
804 if (!priv->msg_rx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800805 rc = -ENOMEM;
806 goto out;
807 }
808
809 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700810 out_be32(&priv->msg_regs->ifqdpar, (u32) priv->msg_rx_ring.phys);
811 out_be32(&priv->msg_regs->ifqepar, (u32) priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800812
813 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700814 out_be32(&priv->msg_regs->isr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800815
816 /* Hook up inbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700817 rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
818 "msg_rx", (void *)mport);
819 if (rc < 0) {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400820 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700821 priv->msg_tx_ring.virt_buffer[i],
822 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800823 goto out;
824 }
825
826 /*
827 * Configure inbound message unit:
828 * Snooping
829 * 4KB max message size
830 * Unmask all interrupt sources
831 * Disable
832 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700833 out_be32(&priv->msg_regs->imr, 0x001b0060);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800834
835 /* Set number of queue entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700836 setbits32(&priv->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800837
838 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700839 setbits32(&priv->msg_regs->imr, 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800840
841 out:
842 return rc;
843}
844
845/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700846 * fsl_close_inb_mbox - Shut down MPC85xx inbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800847 * @mport: Master port implementing the inbound message unit
848 * @mbox: Mailbox to close
849 *
850 * Disables the inbound message unit, free all buffers, and
851 * frees the inbound message interrupt.
852 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700853static void fsl_close_inb_mbox(struct rio_mport *mport, int mbox)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800854{
Zhang Weiad1e9382008-04-18 13:33:41 -0700855 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800856 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700857 out_be32(&priv->msg_regs->imr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800858
859 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400860 dma_free_coherent(priv->dev, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700861 priv->msg_rx_ring.virt, priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800862
863 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700864 free_irq(IRQ_RIO_RX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800865}
866
867/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700868 * fsl_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800869 * @mport: Master port implementing the inbound message unit
870 * @mbox: Inbound mailbox number
871 * @buf: Buffer to add to inbound queue
872 *
873 * Adds the @buf buffer to the MPC85xx inbound message queue. Returns
874 * %0 on success or %-EINVAL on failure.
875 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700876static int fsl_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800877{
878 int rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700879 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800880
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700881 pr_debug("RIO: fsl_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700882 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800883
Zhang Weiad1e9382008-04-18 13:33:41 -0700884 if (priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800885 printk(KERN_ERR
886 "RIO: error adding inbound buffer %d, buffer exists\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700887 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800888 rc = -EINVAL;
889 goto out;
890 }
891
Zhang Weiad1e9382008-04-18 13:33:41 -0700892 priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot] = buf;
893 if (++priv->msg_rx_ring.rx_slot == priv->msg_rx_ring.size)
894 priv->msg_rx_ring.rx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800895
896 out:
897 return rc;
898}
899
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800900/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700901 * fsl_get_inb_message - Fetch inbound message from the MPC85xx message unit
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800902 * @mport: Master port implementing the inbound message unit
903 * @mbox: Inbound mailbox number
904 *
905 * Gets the next available inbound message from the inbound message queue.
906 * A pointer to the message is returned on success or NULL on failure.
907 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700908static void *fsl_get_inb_message(struct rio_mport *mport, int mbox)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800909{
Zhang Weiad1e9382008-04-18 13:33:41 -0700910 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800911 u32 phys_buf, virt_buf;
912 void *buf = NULL;
913 int buf_idx;
914
Zhang Weiad1e9382008-04-18 13:33:41 -0700915 phys_buf = in_be32(&priv->msg_regs->ifqdpar);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800916
917 /* If no more messages, then bail out */
Zhang Weiad1e9382008-04-18 13:33:41 -0700918 if (phys_buf == in_be32(&priv->msg_regs->ifqepar))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800919 goto out2;
920
Zhang Weiad1e9382008-04-18 13:33:41 -0700921 virt_buf = (u32) priv->msg_rx_ring.virt + (phys_buf
922 - priv->msg_rx_ring.phys);
923 buf_idx = (phys_buf - priv->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE;
924 buf = priv->msg_rx_ring.virt_buffer[buf_idx];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800925
926 if (!buf) {
927 printk(KERN_ERR
928 "RIO: inbound message copy failed, no buffers\n");
929 goto out1;
930 }
931
932 /* Copy max message size, caller is expected to allocate that big */
933 memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE);
934
935 /* Clear the available buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700936 priv->msg_rx_ring.virt_buffer[buf_idx] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800937
938 out1:
Zhang Weiad1e9382008-04-18 13:33:41 -0700939 setbits32(&priv->msg_regs->imr, RIO_MSG_IMR_MI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800940
941 out2:
942 return buf;
943}
944
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800945/**
Zhang Weid02443a2008-04-18 13:33:38 -0700946 * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800947 * @irq: Linux interrupt number
948 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800949 *
950 * Handles doorbell interrupts. Parses a list of registered
951 * doorbell event handlers and executes a matching event handler.
952 */
953static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700954fsl_rio_dbell_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800955{
956 int dsr;
957 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700958 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800959
Zhang Weiad1e9382008-04-18 13:33:41 -0700960 dsr = in_be32(&priv->msg_regs->dsr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800961
962 if (dsr & DOORBELL_DSR_TE) {
963 pr_info("RIO: doorbell reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700964 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800965 goto out;
966 }
967
968 if (dsr & DOORBELL_DSR_QFI) {
969 pr_info("RIO: doorbell queue full\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700970 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_QFI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800971 }
972
973 /* XXX Need to check/dispatch until queue empty */
974 if (dsr & DOORBELL_DSR_DIQI) {
975 u32 dmsg =
Zhang Weiad1e9382008-04-18 13:33:41 -0700976 (u32) priv->dbell_ring.virt +
977 (in_be32(&priv->msg_regs->dqdpar) & 0xfff);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800978 struct rio_dbell *dbell;
979 int found = 0;
980
981 pr_debug
982 ("RIO: processing doorbell, sid %2.2x tid %2.2x info %4.4x\n",
983 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
984
985 list_for_each_entry(dbell, &port->dbells, node) {
986 if ((dbell->res->start <= DBELL_INF(dmsg)) &&
987 (dbell->res->end >= DBELL_INF(dmsg))) {
988 found = 1;
989 break;
990 }
991 }
992 if (found) {
Matt Porter6978bbc2005-11-07 01:00:20 -0800993 dbell->dinb(port, dbell->dev_id, DBELL_SID(dmsg), DBELL_TID(dmsg),
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800994 DBELL_INF(dmsg));
995 } else {
996 pr_debug
997 ("RIO: spurious doorbell, sid %2.2x tid %2.2x info %4.4x\n",
998 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
999 }
Zhang Weiad1e9382008-04-18 13:33:41 -07001000 setbits32(&priv->msg_regs->dmr, DOORBELL_DMR_DI);
1001 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001002 }
1003
1004 out:
1005 return IRQ_HANDLED;
1006}
1007
1008/**
Zhang Weid02443a2008-04-18 13:33:38 -07001009 * fsl_rio_doorbell_init - MPC85xx doorbell interface init
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001010 * @mport: Master port implementing the inbound doorbell unit
1011 *
1012 * Initializes doorbell unit hardware and inbound DMA buffer
Zhang Weid02443a2008-04-18 13:33:38 -07001013 * ring. Called from fsl_rio_setup(). Returns %0 on success
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001014 * or %-ENOMEM on failure.
1015 */
Zhang Weid02443a2008-04-18 13:33:38 -07001016static int fsl_rio_doorbell_init(struct rio_mport *mport)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001017{
Zhang Weiad1e9382008-04-18 13:33:41 -07001018 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001019 int rc = 0;
1020
1021 /* Map outbound doorbell window immediately after maintenance window */
Zhang Weiad1e9382008-04-18 13:33:41 -07001022 priv->dbell_win = ioremap(mport->iores.start + RIO_MAINT_WIN_SIZE,
1023 RIO_DBELL_WIN_SIZE);
1024 if (!priv->dbell_win) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001025 printk(KERN_ERR
1026 "RIO: unable to map outbound doorbell window\n");
1027 rc = -ENOMEM;
1028 goto out;
1029 }
1030
1031 /* Initialize inbound doorbells */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001032 priv->dbell_ring.virt = dma_alloc_coherent(priv->dev, 512 *
Zhang Weiad1e9382008-04-18 13:33:41 -07001033 DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL);
1034 if (!priv->dbell_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001035 printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n");
1036 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -07001037 iounmap(priv->dbell_win);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001038 goto out;
1039 }
1040
1041 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -07001042 out_be32(&priv->msg_regs->dqdpar, (u32) priv->dbell_ring.phys);
1043 out_be32(&priv->msg_regs->dqepar, (u32) priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001044
1045 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -07001046 out_be32(&priv->msg_regs->dsr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001047
1048 /* Hook up doorbell handler */
Zhang Weiad1e9382008-04-18 13:33:41 -07001049 rc = request_irq(IRQ_RIO_BELL(mport), fsl_rio_dbell_handler, 0,
1050 "dbell_rx", (void *)mport);
1051 if (rc < 0) {
1052 iounmap(priv->dbell_win);
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001053 dma_free_coherent(priv->dev, 512 * DOORBELL_MESSAGE_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -07001054 priv->dbell_ring.virt, priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001055 printk(KERN_ERR
1056 "MPC85xx RIO: unable to request inbound doorbell irq");
1057 goto out;
1058 }
1059
1060 /* Configure doorbells for snooping, 512 entries, and enable */
Zhang Weiad1e9382008-04-18 13:33:41 -07001061 out_be32(&priv->msg_regs->dmr, 0x00108161);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001062
1063 out:
1064 return rc;
1065}
1066
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001067/**
1068 * fsl_rio_port_write_handler - MPC85xx port write interrupt handler
1069 * @irq: Linux interrupt number
1070 * @dev_instance: Pointer to interrupt-specific data
1071 *
1072 * Handles port write interrupts. Parses a list of registered
1073 * port write event handlers and executes a matching event handler.
1074 */
1075static irqreturn_t
1076fsl_rio_port_write_handler(int irq, void *dev_instance)
1077{
1078 u32 ipwmr, ipwsr;
1079 struct rio_mport *port = (struct rio_mport *)dev_instance;
1080 struct rio_priv *priv = port->priv;
1081 u32 epwisr, tmp;
1082
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001083 epwisr = in_be32(priv->regs_win + RIO_EPWISR);
1084 if (!(epwisr & RIO_EPWISR_PW))
1085 goto pw_done;
1086
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001087 ipwmr = in_be32(&priv->msg_regs->pwmr);
1088 ipwsr = in_be32(&priv->msg_regs->pwsr);
1089
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001090#ifdef DEBUG_PW
1091 pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr, ipwsr);
1092 if (ipwsr & RIO_IPWSR_QF)
1093 pr_debug(" QF");
1094 if (ipwsr & RIO_IPWSR_TE)
1095 pr_debug(" TE");
1096 if (ipwsr & RIO_IPWSR_QFI)
1097 pr_debug(" QFI");
1098 if (ipwsr & RIO_IPWSR_PWD)
1099 pr_debug(" PWD");
1100 if (ipwsr & RIO_IPWSR_PWB)
1101 pr_debug(" PWB");
1102 pr_debug(" )\n");
1103#endif
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001104 /* Schedule deferred processing if PW was received */
1105 if (ipwsr & RIO_IPWSR_QFI) {
1106 /* Save PW message (if there is room in FIFO),
1107 * otherwise discard it.
1108 */
1109 if (kfifo_avail(&priv->pw_fifo) >= RIO_PW_MSG_SIZE) {
1110 priv->port_write_msg.msg_count++;
1111 kfifo_in(&priv->pw_fifo, priv->port_write_msg.virt,
1112 RIO_PW_MSG_SIZE);
1113 } else {
1114 priv->port_write_msg.discard_count++;
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001115 pr_debug("RIO: ISR Discarded Port-Write Msg(s) (%d)\n",
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001116 priv->port_write_msg.discard_count);
1117 }
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001118 /* Clear interrupt and issue Clear Queue command. This allows
1119 * another port-write to be received.
1120 */
1121 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_QFI);
1122 out_be32(&priv->msg_regs->pwmr, ipwmr | RIO_IPWMR_CQ);
1123
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001124 schedule_work(&priv->pw_work);
1125 }
1126
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001127 if ((ipwmr & RIO_IPWMR_EIE) && (ipwsr & RIO_IPWSR_TE)) {
1128 priv->port_write_msg.err_count++;
1129 pr_debug("RIO: Port-Write Transaction Err (%d)\n",
1130 priv->port_write_msg.err_count);
1131 /* Clear Transaction Error: port-write controller should be
1132 * disabled when clearing this error
1133 */
1134 out_be32(&priv->msg_regs->pwmr, ipwmr & ~RIO_IPWMR_PWE);
1135 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_TE);
1136 out_be32(&priv->msg_regs->pwmr, ipwmr);
1137 }
1138
1139 if (ipwsr & RIO_IPWSR_PWD) {
1140 priv->port_write_msg.discard_count++;
1141 pr_debug("RIO: Port Discarded Port-Write Msg(s) (%d)\n",
1142 priv->port_write_msg.discard_count);
1143 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_PWD);
1144 }
1145
1146pw_done:
1147 if (epwisr & RIO_EPWISR_PINT) {
1148 tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1149 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1150 out_be32(priv->regs_win + RIO_LTLEDCSR, 0);
1151 }
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001152
1153 return IRQ_HANDLED;
1154}
1155
1156static void fsl_pw_dpc(struct work_struct *work)
1157{
1158 struct rio_priv *priv = container_of(work, struct rio_priv, pw_work);
1159 unsigned long flags;
1160 u32 msg_buffer[RIO_PW_MSG_SIZE/sizeof(u32)];
1161
1162 /*
1163 * Process port-write messages
1164 */
1165 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1166 while (kfifo_out(&priv->pw_fifo, (unsigned char *)msg_buffer,
1167 RIO_PW_MSG_SIZE)) {
1168 /* Process one message */
1169 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1170#ifdef DEBUG_PW
1171 {
1172 u32 i;
1173 pr_debug("%s : Port-Write Message:", __func__);
1174 for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32); i++) {
1175 if ((i%4) == 0)
1176 pr_debug("\n0x%02x: 0x%08x", i*4,
1177 msg_buffer[i]);
1178 else
1179 pr_debug(" 0x%08x", msg_buffer[i]);
1180 }
1181 pr_debug("\n");
1182 }
1183#endif
1184 /* Pass the port-write message to RIO core for processing */
1185 rio_inb_pwrite_handler((union rio_pw_msg *)msg_buffer);
1186 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1187 }
1188 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1189}
1190
1191/**
1192 * fsl_rio_pw_enable - enable/disable port-write interface init
1193 * @mport: Master port implementing the port write unit
1194 * @enable: 1=enable; 0=disable port-write message handling
1195 */
1196static int fsl_rio_pw_enable(struct rio_mport *mport, int enable)
1197{
1198 struct rio_priv *priv = mport->priv;
1199 u32 rval;
1200
1201 rval = in_be32(&priv->msg_regs->pwmr);
1202
1203 if (enable)
1204 rval |= RIO_IPWMR_PWE;
1205 else
1206 rval &= ~RIO_IPWMR_PWE;
1207
1208 out_be32(&priv->msg_regs->pwmr, rval);
1209
1210 return 0;
1211}
1212
1213/**
1214 * fsl_rio_port_write_init - MPC85xx port write interface init
1215 * @mport: Master port implementing the port write unit
1216 *
1217 * Initializes port write unit hardware and DMA buffer
1218 * ring. Called from fsl_rio_setup(). Returns %0 on success
1219 * or %-ENOMEM on failure.
1220 */
1221static int fsl_rio_port_write_init(struct rio_mport *mport)
1222{
1223 struct rio_priv *priv = mport->priv;
1224 int rc = 0;
1225
1226 /* Following configurations require a disabled port write controller */
1227 out_be32(&priv->msg_regs->pwmr,
1228 in_be32(&priv->msg_regs->pwmr) & ~RIO_IPWMR_PWE);
1229
1230 /* Initialize port write */
1231 priv->port_write_msg.virt = dma_alloc_coherent(priv->dev,
1232 RIO_PW_MSG_SIZE,
1233 &priv->port_write_msg.phys, GFP_KERNEL);
1234 if (!priv->port_write_msg.virt) {
1235 pr_err("RIO: unable allocate port write queue\n");
1236 return -ENOMEM;
1237 }
1238
1239 priv->port_write_msg.err_count = 0;
1240 priv->port_write_msg.discard_count = 0;
1241
1242 /* Point dequeue/enqueue pointers at first entry */
1243 out_be32(&priv->msg_regs->epwqbar, 0);
1244 out_be32(&priv->msg_regs->pwqbar, (u32) priv->port_write_msg.phys);
1245
1246 pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n",
1247 in_be32(&priv->msg_regs->epwqbar),
1248 in_be32(&priv->msg_regs->pwqbar));
1249
1250 /* Clear interrupt status IPWSR */
1251 out_be32(&priv->msg_regs->pwsr,
1252 (RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD));
1253
1254 /* Configure port write contoller for snooping enable all reporting,
1255 clear queue full */
1256 out_be32(&priv->msg_regs->pwmr,
1257 RIO_IPWMR_SEN | RIO_IPWMR_QFIE | RIO_IPWMR_EIE | RIO_IPWMR_CQ);
1258
1259
1260 /* Hook up port-write handler */
1261 rc = request_irq(IRQ_RIO_PW(mport), fsl_rio_port_write_handler, 0,
1262 "port-write", (void *)mport);
1263 if (rc < 0) {
1264 pr_err("MPC85xx RIO: unable to request inbound doorbell irq");
1265 goto err_out;
1266 }
1267
1268 INIT_WORK(&priv->pw_work, fsl_pw_dpc);
1269 spin_lock_init(&priv->pw_fifo_lock);
1270 if (kfifo_alloc(&priv->pw_fifo, RIO_PW_MSG_SIZE * 32, GFP_KERNEL)) {
1271 pr_err("FIFO allocation failed\n");
1272 rc = -ENOMEM;
1273 goto err_out_irq;
1274 }
1275
1276 pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n",
1277 in_be32(&priv->msg_regs->pwmr),
1278 in_be32(&priv->msg_regs->pwsr));
1279
1280 return rc;
1281
1282err_out_irq:
1283 free_irq(IRQ_RIO_PW(mport), (void *)mport);
1284err_out:
1285 dma_free_coherent(priv->dev, RIO_PW_MSG_SIZE,
1286 priv->port_write_msg.virt,
1287 priv->port_write_msg.phys);
1288 return rc;
1289}
1290
Zhang Wei7f620df2008-04-18 13:33:44 -07001291static inline void fsl_rio_info(struct device *dev, u32 ccsr)
1292{
1293 const char *str;
1294 if (ccsr & 1) {
1295 /* Serial phy */
1296 switch (ccsr >> 30) {
1297 case 0:
1298 str = "1";
1299 break;
1300 case 1:
1301 str = "4";
1302 break;
1303 default:
1304 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +00001305 break;
Zhang Wei7f620df2008-04-18 13:33:44 -07001306 }
1307 dev_info(dev, "Hardware port width: %s\n", str);
1308
1309 switch ((ccsr >> 27) & 7) {
1310 case 0:
1311 str = "Single-lane 0";
1312 break;
1313 case 1:
1314 str = "Single-lane 2";
1315 break;
1316 case 2:
1317 str = "Four-lane";
1318 break;
1319 default:
1320 str = "Unknown";
1321 break;
1322 }
1323 dev_info(dev, "Training connection status: %s\n", str);
1324 } else {
1325 /* Parallel phy */
1326 if (!(ccsr & 0x80000000))
1327 dev_info(dev, "Output port operating in 8-bit mode\n");
1328 if (!(ccsr & 0x08000000))
1329 dev_info(dev, "Input port operating in 8-bit mode\n");
1330 }
1331}
1332
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001333/**
Randy Dunlap9941d942008-04-30 16:45:58 -07001334 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -06001335 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001336 *
1337 * Initializes MPC85xx RapidIO hardware interface, configures
1338 * master port with system-specific info, and registers the
1339 * master port with the RapidIO subsystem.
1340 */
Grant Likelya454dc52010-07-22 15:52:34 -06001341int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001342{
1343 struct rio_ops *ops;
1344 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -07001345 struct rio_priv *priv;
1346 int rc = 0;
1347 const u32 *dt_range, *cell;
1348 struct resource regs;
1349 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -07001350 u32 ccsr;
Zhang Weicc2bb692008-04-18 13:33:41 -07001351 u64 law_start, law_size;
1352 int paw, aw, sw;
1353
Grant Likely61c7a082010-04-13 16:12:29 -07001354 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -07001355 dev_err(&dev->dev, "Device OF-Node is NULL");
1356 return -EFAULT;
1357 }
1358
Grant Likely61c7a082010-04-13 16:12:29 -07001359 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001360 if (rc) {
1361 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001362 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001363 return -EFAULT;
1364 }
Grant Likely61c7a082010-04-13 16:12:29 -07001365 dev_info(&dev->dev, "Of-device full name %s\n", dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -05001366 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001367
Grant Likely61c7a082010-04-13 16:12:29 -07001368 dt_range = of_get_property(dev->dev.of_node, "ranges", &rlen);
Zhang Weicc2bb692008-04-18 13:33:41 -07001369 if (!dt_range) {
1370 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001371 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001372 return -EFAULT;
1373 }
1374
1375 /* Get node address wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001376 cell = of_get_property(dev->dev.of_node, "#address-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001377 if (cell)
1378 aw = *cell;
1379 else
Grant Likely61c7a082010-04-13 16:12:29 -07001380 aw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001381 /* Get node size wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001382 cell = of_get_property(dev->dev.of_node, "#size-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001383 if (cell)
1384 sw = *cell;
1385 else
Grant Likely61c7a082010-04-13 16:12:29 -07001386 sw = of_n_size_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001387 /* Get parent address wide wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001388 paw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001389
1390 law_start = of_read_number(dt_range + aw, paw);
1391 law_size = of_read_number(dt_range + aw + paw, sw);
1392
1393 dev_info(&dev->dev, "LAW start 0x%016llx, size 0x%016llx.\n",
1394 law_start, law_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001395
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -07001396 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001397 if (!ops) {
1398 rc = -ENOMEM;
1399 goto err_ops;
1400 }
Zhang Weid02443a2008-04-18 13:33:38 -07001401 ops->lcread = fsl_local_config_read;
1402 ops->lcwrite = fsl_local_config_write;
1403 ops->cread = fsl_rio_config_read;
1404 ops->cwrite = fsl_rio_config_write;
1405 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001406 ops->pwenable = fsl_rio_pw_enable;
Alexandre Bouninef8f06262011-03-23 16:43:02 -07001407 ops->open_outb_mbox = fsl_open_outb_mbox;
1408 ops->open_inb_mbox = fsl_open_inb_mbox;
1409 ops->close_outb_mbox = fsl_close_outb_mbox;
1410 ops->close_inb_mbox = fsl_close_inb_mbox;
1411 ops->add_outb_message = fsl_add_outb_message;
1412 ops->add_inb_buffer = fsl_add_inb_buffer;
1413 ops->get_inb_message = fsl_get_inb_message;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001414
Zhang Weiad1e9382008-04-18 13:33:41 -07001415 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001416 if (!port) {
1417 rc = -ENOMEM;
1418 goto err_port;
1419 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001420 port->index = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001421
1422 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
1423 if (!priv) {
1424 printk(KERN_ERR "Can't alloc memory for 'priv'\n");
1425 rc = -ENOMEM;
Julia Lawall6c759332009-08-07 09:00:34 +02001426 goto err_priv;
Zhang Weiad1e9382008-04-18 13:33:41 -07001427 }
1428
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001429 INIT_LIST_HEAD(&port->dbells);
1430 port->iores.start = law_start;
Li Yang186e74b2009-05-12 16:35:59 +08001431 port->iores.end = law_start + law_size - 1;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001432 port->iores.flags = IORESOURCE_MEM;
Li Yang186e74b2009-05-12 16:35:59 +08001433 port->iores.name = "rio_io_win";
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001434
Alexandre Bouninec1256eb2011-03-23 16:43:06 -07001435 if (request_resource(&iomem_resource, &port->iores) < 0) {
1436 dev_err(&dev->dev, "RIO: Error requesting master port region"
1437 " 0x%016llx-0x%016llx\n",
1438 (u64)port->iores.start, (u64)port->iores.end);
1439 rc = -ENOMEM;
1440 goto err_res;
1441 }
1442
Alexandre Bounine45fdf002010-05-28 13:56:17 -04001443 priv->pwirq = irq_of_parse_and_map(dev->dev.of_node, 0);
Grant Likely61c7a082010-04-13 16:12:29 -07001444 priv->bellirq = irq_of_parse_and_map(dev->dev.of_node, 2);
1445 priv->txirq = irq_of_parse_and_map(dev->dev.of_node, 3);
1446 priv->rxirq = irq_of_parse_and_map(dev->dev.of_node, 4);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001447 dev_info(&dev->dev, "pwirq: %d, bellirq: %d, txirq: %d, rxirq %d\n",
1448 priv->pwirq, priv->bellirq, priv->txirq, priv->rxirq);
Zhang Weicc2bb692008-04-18 13:33:41 -07001449
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001450 rio_init_dbell_res(&port->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
1451 rio_init_mbox_res(&port->riores[RIO_INB_MBOX_RESOURCE], 0, 0);
1452 rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0);
1453 strcpy(port->name, "RIO0 mport");
1454
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001455 priv->dev = &dev->dev;
1456
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001457 port->ops = ops;
Zhang Weiad1e9382008-04-18 13:33:41 -07001458 port->priv = priv;
Alexandre Bounineaf84ca32010-10-27 15:34:34 -07001459 port->phys_efptr = 0x100;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001460 rio_register_mport(port);
1461
Zhang Weicc2bb692008-04-18 13:33:41 -07001462 priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1);
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001463 rio_regs_win = priv->regs_win;
Zhang Weie0423232008-04-18 13:33:42 -07001464
Zhang Wei61b26912008-04-18 13:33:44 -07001465 /* Probe the master port phy type */
1466 ccsr = in_be32(priv->regs_win + RIO_CCSR);
1467 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
1468 dev_info(&dev->dev, "RapidIO PHY type: %s\n",
1469 (port->phy_type == RIO_PHY_PARALLEL) ? "parallel" :
1470 ((port->phy_type == RIO_PHY_SERIAL) ? "serial" :
1471 "unknown"));
Zhang Wei7f620df2008-04-18 13:33:44 -07001472 /* Checking the port training status */
1473 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1474 dev_err(&dev->dev, "Port is not ready. "
1475 "Try to restart connection...\n");
1476 switch (port->phy_type) {
1477 case RIO_PHY_SERIAL:
1478 /* Disable ports */
1479 out_be32(priv->regs_win + RIO_CCSR, 0);
1480 /* Set 1x lane */
1481 setbits32(priv->regs_win + RIO_CCSR, 0x02000000);
1482 /* Enable ports */
1483 setbits32(priv->regs_win + RIO_CCSR, 0x00600000);
1484 break;
1485 case RIO_PHY_PARALLEL:
1486 /* Disable ports */
1487 out_be32(priv->regs_win + RIO_CCSR, 0x22000000);
1488 /* Enable ports */
1489 out_be32(priv->regs_win + RIO_CCSR, 0x44000000);
1490 break;
1491 }
1492 msleep(100);
1493 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1494 dev_err(&dev->dev, "Port restart failed.\n");
1495 rc = -ENOLINK;
1496 goto err;
1497 }
1498 dev_info(&dev->dev, "Port restart success!\n");
1499 }
1500 fsl_rio_info(&dev->dev, ccsr);
Zhang Wei61b26912008-04-18 13:33:44 -07001501
Zhang Weie0423232008-04-18 13:33:42 -07001502 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
1503 & RIO_PEF_CTLS) >> 4;
1504 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
1505 port->sys_size ? 65536 : 256);
1506
Alexandre Bounineaf84ca32010-10-27 15:34:34 -07001507 if (port->host_deviceid >= 0)
1508 out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
1509 RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
1510 else
1511 out_be32(priv->regs_win + RIO_GCCSR, 0x00000000);
1512
Zhang Weiad1e9382008-04-18 13:33:41 -07001513 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
1514 + RIO_ATMU_REGS_OFFSET);
1515 priv->maint_atmu_regs = priv->atmu_regs + 1;
1516 priv->dbell_atmu_regs = priv->atmu_regs + 2;
Zhang Wei61b26912008-04-18 13:33:44 -07001517 priv->msg_regs = (struct rio_msg_regs *)(priv->regs_win +
1518 ((port->phy_type == RIO_PHY_SERIAL) ?
1519 RIO_S_MSG_REGS_OFFSET : RIO_P_MSG_REGS_OFFSET));
1520
1521 /* Set to receive any dist ID for serial RapidIO controller. */
1522 if (port->phy_type == RIO_PHY_SERIAL)
1523 out_be32((priv->regs_win + RIO_ISR_AACR), RIO_ISR_AACR_AA);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001524
1525 /* Configure maintenance transaction window */
Li Yang186e74b2009-05-12 16:35:59 +08001526 out_be32(&priv->maint_atmu_regs->rowbar, law_start >> 12);
Thomas Mollbd4fb652010-05-26 14:44:05 -07001527 out_be32(&priv->maint_atmu_regs->rowar,
1528 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001529
Zhang Weiad1e9382008-04-18 13:33:41 -07001530 priv->maint_win = ioremap(law_start, RIO_MAINT_WIN_SIZE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001531
1532 /* Configure outbound doorbell window */
Li Yang186e74b2009-05-12 16:35:59 +08001533 out_be32(&priv->dbell_atmu_regs->rowbar,
1534 (law_start + RIO_MAINT_WIN_SIZE) >> 12);
1535 out_be32(&priv->dbell_atmu_regs->rowar, 0x8004200b); /* 4k */
Zhang Weid02443a2008-04-18 13:33:38 -07001536 fsl_rio_doorbell_init(port);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001537 fsl_rio_port_write_init(port);
Zhang Weiad1e9382008-04-18 13:33:41 -07001538
Li Yangff33f182010-06-18 14:24:20 +08001539#ifdef CONFIG_E500
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001540 saved_mcheck_exception = ppc_md.machine_check_exception;
1541 ppc_md.machine_check_exception = fsl_rio_mcheck_exception;
Li Yangff33f182010-06-18 14:24:20 +08001542#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001543
Zhang Weicc2bb692008-04-18 13:33:41 -07001544 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001545err:
Julia Lawall6c759332009-08-07 09:00:34 +02001546 iounmap(priv->regs_win);
Alexandre Bouninec1256eb2011-03-23 16:43:06 -07001547err_res:
Zhang Weiad1e9382008-04-18 13:33:41 -07001548 kfree(priv);
Julia Lawall6c759332009-08-07 09:00:34 +02001549err_priv:
Zhang Weiad1e9382008-04-18 13:33:41 -07001550 kfree(port);
Julia Lawall6c759332009-08-07 09:00:34 +02001551err_port:
1552 kfree(ops);
1553err_ops:
Zhang Weicc2bb692008-04-18 13:33:41 -07001554 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001555}
Zhang Weicc2bb692008-04-18 13:33:41 -07001556
1557/* The probe function for RapidIO peer-to-peer network.
1558 */
Grant Likely00006122011-02-22 19:59:54 -07001559static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev)
Zhang Weicc2bb692008-04-18 13:33:41 -07001560{
Zhang Weicc2bb692008-04-18 13:33:41 -07001561 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001562 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001563
Alexandre Bounine2f809982011-03-23 16:43:04 -07001564 return fsl_rio_setup(dev);
Zhang Weicc2bb692008-04-18 13:33:41 -07001565};
1566
1567static const struct of_device_id fsl_of_rio_rpn_ids[] = {
1568 {
1569 .compatible = "fsl,rapidio-delta",
1570 },
1571 {},
1572};
1573
Grant Likely00006122011-02-22 19:59:54 -07001574static struct platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001575 .driver = {
1576 .name = "fsl-of-rio",
1577 .owner = THIS_MODULE,
1578 .of_match_table = fsl_of_rio_rpn_ids,
1579 },
Zhang Weicc2bb692008-04-18 13:33:41 -07001580 .probe = fsl_of_rio_rpn_probe,
1581};
1582
1583static __init int fsl_of_rio_rpn_init(void)
1584{
Grant Likely00006122011-02-22 19:59:54 -07001585 return platform_driver_register(&fsl_of_rio_rpn_driver);
Zhang Weicc2bb692008-04-18 13:33:41 -07001586}
1587
1588subsys_initcall(fsl_of_rio_rpn_init);