blob: 22ffccd8bef53b69a41fcfcfdf8fb3ed46b3d760 [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 *
Shaohui Xie6ff31452010-11-18 14:57:53 +080013 * Copyright (C) 2007, 2008, 2010 Freescale Semiconductor, Inc.
Zhang Weiad1e9382008-04-18 13:33:41 -070014 * 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>
Liu Gange0ce42e2011-11-11 21:48:28 +080026#include <linux/module.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080027#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
Shaohui Xie6ff31452010-11-18 14:57:53 +080050#define IPWSR_CLEAR 0x98
51#define OMSR_CLEAR 0x1cb3
52#define IMSR_CLEAR 0x491
53#define IDSR_CLEAR 0x91
54#define ODSR_CLEAR 0x1c00
55#define LTLEECSR_ENABLE_ALL 0xFFC000FC
56#define ESCSR_CLEAR 0x07120204
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -070057#define IECSR_CLEAR 0x80000000
Shaohui Xie6ff31452010-11-18 14:57:53 +080058
59#define RIO_PORT1_EDCSR 0x0640
60#define RIO_PORT2_EDCSR 0x0680
61#define RIO_PORT1_IECSR 0x10130
62#define RIO_PORT2_IECSR 0x101B0
63#define RIO_IM0SR 0x13064
64#define RIO_IM1SR 0x13164
65#define RIO_OM0SR 0x13004
66#define RIO_OM1SR 0x13104
67
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080068#define RIO_ATMU_REGS_OFFSET 0x10c00
Zhang Wei61b26912008-04-18 13:33:44 -070069#define RIO_P_MSG_REGS_OFFSET 0x11000
70#define RIO_S_MSG_REGS_OFFSET 0x13000
Alexandre Bounineaf84ca32010-10-27 15:34:34 -070071#define RIO_GCCSR 0x13c
Zhang Wei61b26912008-04-18 13:33:44 -070072#define RIO_ESCSR 0x158
Shaohui Xie6ff31452010-11-18 14:57:53 +080073#define RIO_PORT2_ESCSR 0x178
Zhang Wei61b26912008-04-18 13:33:44 -070074#define RIO_CCSR 0x15c
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070075#define RIO_LTLEDCSR 0x0608
Shaohui Xie6ff31452010-11-18 14:57:53 +080076#define RIO_LTLEDCSR_IER 0x80000000
77#define RIO_LTLEDCSR_PRT 0x01000000
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070078#define RIO_LTLEECSR 0x060c
79#define RIO_EPWISR 0x10010
Zhang Wei61b26912008-04-18 13:33:44 -070080#define RIO_ISR_AACR 0x10120
81#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080082#define RIO_MAINT_WIN_SIZE 0x400000
83#define RIO_DBELL_WIN_SIZE 0x1000
84
85#define RIO_MSG_OMR_MUI 0x00000002
86#define RIO_MSG_OSR_TE 0x00000080
87#define RIO_MSG_OSR_QOI 0x00000020
88#define RIO_MSG_OSR_QFI 0x00000010
89#define RIO_MSG_OSR_MUB 0x00000004
90#define RIO_MSG_OSR_EOMI 0x00000002
91#define RIO_MSG_OSR_QEI 0x00000001
92
93#define RIO_MSG_IMR_MI 0x00000002
94#define RIO_MSG_ISR_TE 0x00000080
95#define RIO_MSG_ISR_QFI 0x00000010
96#define RIO_MSG_ISR_DIQI 0x00000001
97
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070098#define RIO_IPWMR_SEN 0x00100000
99#define RIO_IPWMR_QFIE 0x00000100
100#define RIO_IPWMR_EIE 0x00000020
101#define RIO_IPWMR_CQ 0x00000002
102#define RIO_IPWMR_PWE 0x00000001
103
104#define RIO_IPWSR_QF 0x00100000
105#define RIO_IPWSR_TE 0x00000080
106#define RIO_IPWSR_QFI 0x00000010
107#define RIO_IPWSR_PWD 0x00000008
108#define RIO_IPWSR_PWB 0x00000004
109
Shaohui Xie6ff31452010-11-18 14:57:53 +0800110/* EPWISR Error match value */
111#define RIO_EPWISR_PINT1 0x80000000
112#define RIO_EPWISR_PINT2 0x40000000
113#define RIO_EPWISR_MU 0x00000002
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -0700114#define RIO_EPWISR_PW 0x00000001
115
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800116#define RIO_MSG_DESC_SIZE 32
117#define RIO_MSG_BUFFER_SIZE 4096
118#define RIO_MIN_TX_RING_SIZE 2
119#define RIO_MAX_TX_RING_SIZE 2048
120#define RIO_MIN_RX_RING_SIZE 2
121#define RIO_MAX_RX_RING_SIZE 2048
122
123#define DOORBELL_DMR_DI 0x00000002
124#define DOORBELL_DSR_TE 0x00000080
125#define DOORBELL_DSR_QFI 0x00000010
126#define DOORBELL_DSR_DIQI 0x00000001
Zhang Wei6c391032008-04-18 13:33:48 -0700127#define DOORBELL_TID_OFFSET 0x02
128#define DOORBELL_SID_OFFSET 0x04
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800129#define DOORBELL_INFO_OFFSET 0x06
130
131#define DOORBELL_MESSAGE_SIZE 0x08
Zhang Wei6c391032008-04-18 13:33:48 -0700132#define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET))
133#define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800134#define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
135
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800136struct rio_atmu_regs {
137 u32 rowtar;
Zhang Wei61b26912008-04-18 13:33:44 -0700138 u32 rowtear;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800139 u32 rowbar;
140 u32 pad2;
141 u32 rowar;
142 u32 pad3[3];
143};
144
145struct rio_msg_regs {
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800146 u32 omr; /* 0xD_3000 - Outbound message 0 mode register */
147 u32 osr; /* 0xD_3004 - Outbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800148 u32 pad1;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800149 u32 odqdpar; /* 0xD_300C - Outbound message 0 descriptor queue
150 dequeue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800151 u32 pad2;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800152 u32 osar; /* 0xD_3014 - Outbound message 0 source address
153 register */
154 u32 odpr; /* 0xD_3018 - Outbound message 0 destination port
155 register */
156 u32 odatr; /* 0xD_301C - Outbound message 0 destination attributes
157 Register*/
158 u32 odcr; /* 0xD_3020 - Outbound message 0 double-word count
159 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800160 u32 pad3;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800161 u32 odqepar; /* 0xD_3028 - Outbound message 0 descriptor queue
162 enqueue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800163 u32 pad4[13];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800164 u32 imr; /* 0xD_3060 - Inbound message 0 mode register */
165 u32 isr; /* 0xD_3064 - Inbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800166 u32 pad5;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800167 u32 ifqdpar; /* 0xD_306C - Inbound message 0 frame queue dequeue
168 pointer address register*/
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800169 u32 pad6;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800170 u32 ifqepar; /* 0xD_3074 - Inbound message 0 frame queue enqueue
171 pointer address register */
Zhang Wei61b26912008-04-18 13:33:44 -0700172 u32 pad7[226];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800173 u32 odmr; /* 0xD_3400 - Outbound doorbell mode register */
174 u32 odsr; /* 0xD_3404 - Outbound doorbell status register */
Zhang Wei61b26912008-04-18 13:33:44 -0700175 u32 res0[4];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800176 u32 oddpr; /* 0xD_3418 - Outbound doorbell destination port
177 register */
178 u32 oddatr; /* 0xD_341c - Outbound doorbell destination attributes
179 register */
Zhang Wei61b26912008-04-18 13:33:44 -0700180 u32 res1[3];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800181 u32 odretcr; /* 0xD_342C - Outbound doorbell retry error threshold
182 configuration register */
Zhang Wei61b26912008-04-18 13:33:44 -0700183 u32 res2[12];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800184 u32 dmr; /* 0xD_3460 - Inbound doorbell mode register */
185 u32 dsr; /* 0xD_3464 - Inbound doorbell status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800186 u32 pad8;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800187 u32 dqdpar; /* 0xD_346C - Inbound doorbell queue dequeue Pointer
188 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800189 u32 pad9;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800190 u32 dqepar; /* 0xD_3474 - Inbound doorbell Queue enqueue pointer
191 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800192 u32 pad10[26];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800193 u32 pwmr; /* 0xD_34E0 - Inbound port-write mode register */
194 u32 pwsr; /* 0xD_34E4 - Inbound port-write status register */
195 u32 epwqbar; /* 0xD_34E8 - Extended Port-Write Queue Base Address
196 register */
197 u32 pwqbar; /* 0xD_34EC - Inbound port-write queue base address
198 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800199};
200
201struct rio_tx_desc {
202 u32 res1;
203 u32 saddr;
204 u32 dport;
205 u32 dattr;
206 u32 res2;
207 u32 res3;
208 u32 dwcnt;
209 u32 res4;
210};
211
Zhang Weiad1e9382008-04-18 13:33:41 -0700212struct rio_dbell_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800213 void *virt;
214 dma_addr_t phys;
Zhang Weiad1e9382008-04-18 13:33:41 -0700215};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800216
Zhang Weiad1e9382008-04-18 13:33:41 -0700217struct rio_msg_tx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800218 void *virt;
219 dma_addr_t phys;
220 void *virt_buffer[RIO_MAX_TX_RING_SIZE];
221 dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE];
222 int tx_slot;
223 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800224 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700225};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800226
Zhang Weiad1e9382008-04-18 13:33:41 -0700227struct rio_msg_rx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800228 void *virt;
229 dma_addr_t phys;
230 void *virt_buffer[RIO_MAX_RX_RING_SIZE];
231 int rx_slot;
232 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800233 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700234};
235
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700236struct rio_port_write_msg {
237 void *virt;
238 dma_addr_t phys;
239 u32 msg_count;
240 u32 err_count;
241 u32 discard_count;
242};
243
Zhang Weiad1e9382008-04-18 13:33:41 -0700244struct rio_priv {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400245 struct device *dev;
Zhang Weiad1e9382008-04-18 13:33:41 -0700246 void __iomem *regs_win;
247 struct rio_atmu_regs __iomem *atmu_regs;
248 struct rio_atmu_regs __iomem *maint_atmu_regs;
249 struct rio_atmu_regs __iomem *dbell_atmu_regs;
250 void __iomem *dbell_win;
251 void __iomem *maint_win;
252 struct rio_msg_regs __iomem *msg_regs;
253 struct rio_dbell_ring dbell_ring;
254 struct rio_msg_tx_ring msg_tx_ring;
255 struct rio_msg_rx_ring msg_rx_ring;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700256 struct rio_port_write_msg port_write_msg;
Zhang Weiad1e9382008-04-18 13:33:41 -0700257 int bellirq;
258 int txirq;
259 int rxirq;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700260 int pwirq;
261 struct work_struct pw_work;
262 struct kfifo pw_fifo;
263 spinlock_t pw_fifo_lock;
Zhang Weiad1e9382008-04-18 13:33:41 -0700264};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800265
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700266#define __fsl_read_rio_config(x, addr, err, op) \
267 __asm__ __volatile__( \
268 "1: "op" %1,0(%2)\n" \
269 " eieio\n" \
270 "2:\n" \
271 ".section .fixup,\"ax\"\n" \
272 "3: li %1,-1\n" \
273 " li %0,%3\n" \
274 " b 2b\n" \
275 ".section __ex_table,\"a\"\n" \
276 " .align 2\n" \
277 " .long 1b,3b\n" \
278 ".text" \
279 : "=r" (err), "=r" (x) \
280 : "b" (addr), "i" (-EFAULT), "0" (err))
281
282static void __iomem *rio_regs_win;
283
Li Yangff33f182010-06-18 14:24:20 +0800284#ifdef CONFIG_E500
Shaohui Xiecce1f102010-11-18 14:57:32 +0800285int fsl_rio_mcheck_exception(struct pt_regs *regs)
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700286{
Scott Wood82a9a482011-06-16 14:09:17 -0500287 const struct exception_table_entry *entry;
288 unsigned long reason;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700289
Scott Wood82a9a482011-06-16 14:09:17 -0500290 if (!rio_regs_win)
291 return 0;
292
293 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
294 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
295 /* Check if we are prepared to handle this fault */
296 entry = search_exception_tables(regs->nip);
297 if (entry) {
298 pr_debug("RIO: %s - MC Exception handled\n",
299 __func__);
300 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
301 0);
302 regs->msr |= MSR_RI;
303 regs->nip = entry->fixup;
304 return 1;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700305 }
306 }
307
Shaohui Xiecce1f102010-11-18 14:57:32 +0800308 return 0;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700309}
Shaohui Xiecce1f102010-11-18 14:57:32 +0800310EXPORT_SYMBOL_GPL(fsl_rio_mcheck_exception);
Li Yangff33f182010-06-18 14:24:20 +0800311#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700312
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800313/**
Zhang Weid02443a2008-04-18 13:33:38 -0700314 * fsl_rio_doorbell_send - Send a MPC85xx doorbell message
Randy Dunlap9941d942008-04-30 16:45:58 -0700315 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800316 * @index: ID of RapidIO interface
317 * @destid: Destination ID of target device
318 * @data: 16-bit info field of RapidIO doorbell message
319 *
320 * Sends a MPC85xx doorbell message. Returns %0 on success or
321 * %-EINVAL on failure.
322 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700323static int fsl_rio_doorbell_send(struct rio_mport *mport,
324 int index, u16 destid, u16 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800325{
Zhang Weiad1e9382008-04-18 13:33:41 -0700326 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700327 pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800328 index, destid, data);
Zhang Wei61b26912008-04-18 13:33:44 -0700329 switch (mport->phy_type) {
330 case RIO_PHY_PARALLEL:
331 out_be32(&priv->dbell_atmu_regs->rowtar, destid << 22);
332 out_be16(priv->dbell_win, data);
333 break;
334 case RIO_PHY_SERIAL:
335 /* In the serial version silicons, such as MPC8548, MPC8641,
336 * below operations is must be.
337 */
338 out_be32(&priv->msg_regs->odmr, 0x00000000);
339 out_be32(&priv->msg_regs->odretcr, 0x00000004);
340 out_be32(&priv->msg_regs->oddpr, destid << 16);
341 out_be32(&priv->msg_regs->oddatr, data);
342 out_be32(&priv->msg_regs->odmr, 0x00000001);
343 break;
344 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800345
346 return 0;
347}
348
349/**
Zhang Weid02443a2008-04-18 13:33:38 -0700350 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700351 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800352 * @index: ID of RapdiIO interface
353 * @offset: Offset into configuration space
354 * @len: Length (in bytes) of the maintenance transaction
355 * @data: Value to be read into
356 *
357 * Generates a MPC85xx local configuration space read. Returns %0 on
358 * success or %-EINVAL on failure.
359 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700360static int fsl_local_config_read(struct rio_mport *mport,
361 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800362{
Zhang Weiad1e9382008-04-18 13:33:41 -0700363 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700364 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800365 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700366 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800367
368 return 0;
369}
370
371/**
Zhang Weid02443a2008-04-18 13:33:38 -0700372 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700373 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800374 * @index: ID of RapdiIO interface
375 * @offset: Offset into configuration space
376 * @len: Length (in bytes) of the maintenance transaction
377 * @data: Value to be written
378 *
379 * Generates a MPC85xx local configuration space write. Returns %0 on
380 * success or %-EINVAL on failure.
381 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700382static int fsl_local_config_write(struct rio_mport *mport,
383 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800384{
Zhang Weiad1e9382008-04-18 13:33:41 -0700385 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800386 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700387 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800388 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700389 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800390
391 return 0;
392}
393
394/**
Zhang Weid02443a2008-04-18 13:33:38 -0700395 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700396 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800397 * @index: ID of RapdiIO interface
398 * @destid: Destination ID of transaction
399 * @hopcount: Number of hops to target device
400 * @offset: Offset into configuration space
401 * @len: Length (in bytes) of the maintenance transaction
402 * @val: Location to be read into
403 *
404 * Generates a MPC85xx read maintenance transaction. Returns %0 on
405 * success or %-EINVAL on failure.
406 */
407static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700408fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
409 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800410{
Zhang Weiad1e9382008-04-18 13:33:41 -0700411 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800412 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700413 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800414
415 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700416 ("fsl_rio_config_read: index %d destid %d hopcount %d offset %8.8x len %d\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800417 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800418
Thomas Mollbd4fb652010-05-26 14:44:05 -0700419 /* 16MB maintenance window possible */
420 /* allow only aligned access to maintenance registers */
421 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
422 return -EINVAL;
423
424 out_be32(&priv->maint_atmu_regs->rowtar,
425 (destid << 22) | (hopcount << 12) | (offset >> 12));
426 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
427
428 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800429 switch (len) {
430 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700431 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800432 break;
433 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700434 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800435 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700436 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700437 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800438 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700439 default:
440 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800441 }
442
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700443 if (err) {
444 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
445 err, destid, hopcount, offset);
446 }
447
448 *val = rval;
449
450 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800451}
452
453/**
Zhang Weid02443a2008-04-18 13:33:38 -0700454 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700455 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800456 * @index: ID of RapdiIO interface
457 * @destid: Destination ID of transaction
458 * @hopcount: Number of hops to target device
459 * @offset: Offset into configuration space
460 * @len: Length (in bytes) of the maintenance transaction
461 * @val: Value to be written
462 *
463 * Generates an MPC85xx write maintenance transaction. Returns %0 on
464 * success or %-EINVAL on failure.
465 */
466static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700467fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
468 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800469{
Zhang Weiad1e9382008-04-18 13:33:41 -0700470 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800471 u8 *data;
472 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700473 ("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 -0800474 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800475
Thomas Mollbd4fb652010-05-26 14:44:05 -0700476 /* 16MB maintenance windows possible */
477 /* allow only aligned access to maintenance registers */
478 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
479 return -EINVAL;
480
481 out_be32(&priv->maint_atmu_regs->rowtar,
482 (destid << 22) | (hopcount << 12) | (offset >> 12));
483 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
484
485 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800486 switch (len) {
487 case 1:
488 out_8((u8 *) data, val);
489 break;
490 case 2:
491 out_be16((u16 *) data, val);
492 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700493 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800494 out_be32((u32 *) data, val);
495 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700496 default:
497 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800498 }
499
500 return 0;
501}
502
503/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700504 * fsl_add_outb_message - Add message to the MPC85xx outbound message queue
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800505 * @mport: Master port with outbound message queue
506 * @rdev: Target of outbound message
507 * @mbox: Outbound mailbox
508 * @buffer: Message to add to outbound queue
509 * @len: Length of message
510 *
511 * Adds the @buffer message to the MPC85xx outbound message queue. Returns
512 * %0 on success or %-EINVAL on failure.
513 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700514static int
515fsl_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800516 void *buffer, size_t len)
517{
Zhang Weiad1e9382008-04-18 13:33:41 -0700518 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800519 u32 omr;
Zhang Weiad1e9382008-04-18 13:33:41 -0700520 struct rio_tx_desc *desc = (struct rio_tx_desc *)priv->msg_tx_ring.virt
521 + priv->msg_tx_ring.tx_slot;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800522 int ret = 0;
523
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700524 pr_debug("RIO: fsl_add_outb_message(): destid %4.4x mbox %d buffer " \
525 "%8.8x len %8.8x\n", rdev->destid, mbox, (int)buffer, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800526
527 if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) {
528 ret = -EINVAL;
529 goto out;
530 }
531
532 /* Copy and clear rest of buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700533 memcpy(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot], buffer,
534 len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800535 if (len < (RIO_MAX_MSG_SIZE - 4))
Zhang Weiad1e9382008-04-18 13:33:41 -0700536 memset(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot]
537 + len, 0, RIO_MAX_MSG_SIZE - len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800538
Zhang Wei61b26912008-04-18 13:33:44 -0700539 switch (mport->phy_type) {
540 case RIO_PHY_PARALLEL:
541 /* Set mbox field for message */
542 desc->dport = mbox & 0x3;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800543
Zhang Wei61b26912008-04-18 13:33:44 -0700544 /* Enable EOMI interrupt, set priority, and set destid */
545 desc->dattr = 0x28000000 | (rdev->destid << 2);
546 break;
547 case RIO_PHY_SERIAL:
548 /* Set mbox field for message, and set destid */
549 desc->dport = (rdev->destid << 16) | (mbox & 0x3);
550
551 /* Enable EOMI interrupt and priority */
552 desc->dattr = 0x28000000;
553 break;
554 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800555
556 /* Set transfer size aligned to next power of 2 (in double words) */
557 desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len);
558
559 /* Set snooping and source buffer address */
Zhang Weiad1e9382008-04-18 13:33:41 -0700560 desc->saddr = 0x00000004
561 | priv->msg_tx_ring.phys_buffer[priv->msg_tx_ring.tx_slot];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800562
563 /* Increment enqueue pointer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700564 omr = in_be32(&priv->msg_regs->omr);
565 out_be32(&priv->msg_regs->omr, omr | RIO_MSG_OMR_MUI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800566
567 /* Go to next descriptor */
Zhang Weiad1e9382008-04-18 13:33:41 -0700568 if (++priv->msg_tx_ring.tx_slot == priv->msg_tx_ring.size)
569 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800570
571 out:
572 return ret;
573}
574
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800575/**
Zhang Weid02443a2008-04-18 13:33:38 -0700576 * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800577 * @irq: Linux interrupt number
578 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800579 *
580 * Handles outbound message interrupts. Executes a register outbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000581 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800582 */
583static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700584fsl_rio_tx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800585{
586 int osr;
587 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700588 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800589
Zhang Weiad1e9382008-04-18 13:33:41 -0700590 osr = in_be32(&priv->msg_regs->osr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800591
592 if (osr & RIO_MSG_OSR_TE) {
593 pr_info("RIO: outbound message transmission error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700594 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800595 goto out;
596 }
597
598 if (osr & RIO_MSG_OSR_QOI) {
599 pr_info("RIO: outbound message queue overflow\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700600 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_QOI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800601 goto out;
602 }
603
604 if (osr & RIO_MSG_OSR_EOMI) {
Zhang Weiad1e9382008-04-18 13:33:41 -0700605 u32 dqp = in_be32(&priv->msg_regs->odqdpar);
606 int slot = (dqp - priv->msg_tx_ring.phys) >> 5;
607 port->outb_msg[0].mcback(port, priv->msg_tx_ring.dev_id, -1,
608 slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800609
610 /* Ack the end-of-message interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700611 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_EOMI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800612 }
613
614 out:
615 return IRQ_HANDLED;
616}
617
618/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700619 * fsl_open_outb_mbox - Initialize MPC85xx outbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800620 * @mport: Master port implementing the outbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800621 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800622 * @mbox: Mailbox to open
623 * @entries: Number of entries in the outbound mailbox ring
624 *
625 * Initializes buffer ring, request the outbound message interrupt,
626 * and enables the outbound message unit. Returns %0 on success and
627 * %-EINVAL or %-ENOMEM on failure.
628 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700629static int
630fsl_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800631{
632 int i, j, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700633 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800634
635 if ((entries < RIO_MIN_TX_RING_SIZE) ||
636 (entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) {
637 rc = -EINVAL;
638 goto out;
639 }
640
641 /* Initialize shadow copy ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700642 priv->msg_tx_ring.dev_id = dev_id;
643 priv->msg_tx_ring.size = entries;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800644
Zhang Weiad1e9382008-04-18 13:33:41 -0700645 for (i = 0; i < priv->msg_tx_ring.size; i++) {
646 priv->msg_tx_ring.virt_buffer[i] =
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400647 dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700648 &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL);
649 if (!priv->msg_tx_ring.virt_buffer[i]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800650 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -0700651 for (j = 0; j < priv->msg_tx_ring.size; j++)
652 if (priv->msg_tx_ring.virt_buffer[j])
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400653 dma_free_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700654 RIO_MSG_BUFFER_SIZE,
655 priv->msg_tx_ring.
656 virt_buffer[j],
657 priv->msg_tx_ring.
658 phys_buffer[j]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800659 goto out;
660 }
661 }
662
663 /* Initialize outbound message descriptor ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400664 priv->msg_tx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700665 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
666 &priv->msg_tx_ring.phys, GFP_KERNEL);
667 if (!priv->msg_tx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800668 rc = -ENOMEM;
669 goto out_dma;
670 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700671 memset(priv->msg_tx_ring.virt, 0,
672 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE);
673 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800674
675 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700676 out_be32(&priv->msg_regs->odqdpar, priv->msg_tx_ring.phys);
677 out_be32(&priv->msg_regs->odqepar, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800678
679 /* Configure for snooping */
Zhang Weiad1e9382008-04-18 13:33:41 -0700680 out_be32(&priv->msg_regs->osar, 0x00000004);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800681
682 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700683 out_be32(&priv->msg_regs->osr, 0x000000b3);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800684
685 /* Hook up outbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700686 rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0,
687 "msg_tx", (void *)mport);
688 if (rc < 0)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800689 goto out_irq;
690
691 /*
692 * Configure outbound message unit
693 * Snooping
694 * Interrupts (all enabled, except QEIE)
695 * Chaining mode
696 * Disable
697 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700698 out_be32(&priv->msg_regs->omr, 0x00100220);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800699
700 /* Set number of entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700701 out_be32(&priv->msg_regs->omr,
702 in_be32(&priv->msg_regs->omr) |
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800703 ((get_bitmask_order(entries) - 2) << 12));
704
705 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700706 out_be32(&priv->msg_regs->omr, in_be32(&priv->msg_regs->omr) | 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800707
708 out:
709 return rc;
710
711 out_irq:
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400712 dma_free_coherent(priv->dev,
713 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700714 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800715
716 out_dma:
Zhang Weiad1e9382008-04-18 13:33:41 -0700717 for (i = 0; i < priv->msg_tx_ring.size; i++)
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400718 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700719 priv->msg_tx_ring.virt_buffer[i],
720 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800721
722 return rc;
723}
724
725/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700726 * fsl_close_outb_mbox - Shut down MPC85xx outbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800727 * @mport: Master port implementing the outbound message unit
728 * @mbox: Mailbox to close
729 *
730 * Disables the outbound message unit, free all buffers, and
731 * frees the outbound message interrupt.
732 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700733static void fsl_close_outb_mbox(struct rio_mport *mport, int mbox)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800734{
Zhang Weiad1e9382008-04-18 13:33:41 -0700735 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800736 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700737 out_be32(&priv->msg_regs->omr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800738
739 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400740 dma_free_coherent(priv->dev,
741 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700742 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800743
744 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700745 free_irq(IRQ_RIO_TX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800746}
747
748/**
Zhang Weid02443a2008-04-18 13:33:38 -0700749 * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800750 * @irq: Linux interrupt number
751 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800752 *
753 * Handles inbound message interrupts. Executes a registered inbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000754 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800755 */
756static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700757fsl_rio_rx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800758{
759 int isr;
760 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700761 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800762
Zhang Weiad1e9382008-04-18 13:33:41 -0700763 isr = in_be32(&priv->msg_regs->isr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800764
765 if (isr & RIO_MSG_ISR_TE) {
766 pr_info("RIO: inbound message reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700767 out_be32((void *)&priv->msg_regs->isr, RIO_MSG_ISR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800768 goto out;
769 }
770
771 /* XXX Need to check/dispatch until queue empty */
772 if (isr & RIO_MSG_ISR_DIQI) {
773 /*
774 * We implement *only* mailbox 0, but can receive messages
775 * for any mailbox/letter to that mailbox destination. So,
776 * make the callback with an unknown/invalid mailbox number
777 * argument.
778 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700779 port->inb_msg[0].mcback(port, priv->msg_rx_ring.dev_id, -1, -1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800780
781 /* Ack the queueing interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700782 out_be32(&priv->msg_regs->isr, RIO_MSG_ISR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800783 }
784
785 out:
786 return IRQ_HANDLED;
787}
788
789/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700790 * fsl_open_inb_mbox - Initialize MPC85xx inbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800791 * @mport: Master port implementing the inbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800792 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800793 * @mbox: Mailbox to open
794 * @entries: Number of entries in the inbound mailbox ring
795 *
796 * Initializes buffer ring, request the inbound message interrupt,
797 * and enables the inbound message unit. Returns %0 on success
798 * and %-EINVAL or %-ENOMEM on failure.
799 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700800static int
801fsl_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800802{
803 int i, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700804 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800805
806 if ((entries < RIO_MIN_RX_RING_SIZE) ||
807 (entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) {
808 rc = -EINVAL;
809 goto out;
810 }
811
812 /* Initialize client buffer ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700813 priv->msg_rx_ring.dev_id = dev_id;
814 priv->msg_rx_ring.size = entries;
815 priv->msg_rx_ring.rx_slot = 0;
816 for (i = 0; i < priv->msg_rx_ring.size; i++)
817 priv->msg_rx_ring.virt_buffer[i] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800818
819 /* Initialize inbound message ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400820 priv->msg_rx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700821 priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
822 &priv->msg_rx_ring.phys, GFP_KERNEL);
823 if (!priv->msg_rx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800824 rc = -ENOMEM;
825 goto out;
826 }
827
828 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700829 out_be32(&priv->msg_regs->ifqdpar, (u32) priv->msg_rx_ring.phys);
830 out_be32(&priv->msg_regs->ifqepar, (u32) priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800831
832 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700833 out_be32(&priv->msg_regs->isr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800834
835 /* Hook up inbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700836 rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
837 "msg_rx", (void *)mport);
838 if (rc < 0) {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400839 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700840 priv->msg_tx_ring.virt_buffer[i],
841 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800842 goto out;
843 }
844
845 /*
846 * Configure inbound message unit:
847 * Snooping
848 * 4KB max message size
849 * Unmask all interrupt sources
850 * Disable
851 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700852 out_be32(&priv->msg_regs->imr, 0x001b0060);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800853
854 /* Set number of queue entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700855 setbits32(&priv->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800856
857 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700858 setbits32(&priv->msg_regs->imr, 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800859
860 out:
861 return rc;
862}
863
864/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700865 * fsl_close_inb_mbox - Shut down MPC85xx inbound mailbox
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800866 * @mport: Master port implementing the inbound message unit
867 * @mbox: Mailbox to close
868 *
869 * Disables the inbound message unit, free all buffers, and
870 * frees the inbound message interrupt.
871 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700872static void fsl_close_inb_mbox(struct rio_mport *mport, int mbox)
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 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700876 out_be32(&priv->msg_regs->imr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800877
878 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400879 dma_free_coherent(priv->dev, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700880 priv->msg_rx_ring.virt, priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800881
882 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700883 free_irq(IRQ_RIO_RX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800884}
885
886/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700887 * fsl_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800888 * @mport: Master port implementing the inbound message unit
889 * @mbox: Inbound mailbox number
890 * @buf: Buffer to add to inbound queue
891 *
892 * Adds the @buf buffer to the MPC85xx inbound message queue. Returns
893 * %0 on success or %-EINVAL on failure.
894 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700895static int fsl_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800896{
897 int rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700898 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800899
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700900 pr_debug("RIO: fsl_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700901 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800902
Zhang Weiad1e9382008-04-18 13:33:41 -0700903 if (priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800904 printk(KERN_ERR
905 "RIO: error adding inbound buffer %d, buffer exists\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700906 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800907 rc = -EINVAL;
908 goto out;
909 }
910
Zhang Weiad1e9382008-04-18 13:33:41 -0700911 priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot] = buf;
912 if (++priv->msg_rx_ring.rx_slot == priv->msg_rx_ring.size)
913 priv->msg_rx_ring.rx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800914
915 out:
916 return rc;
917}
918
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800919/**
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700920 * fsl_get_inb_message - Fetch inbound message from the MPC85xx message unit
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800921 * @mport: Master port implementing the inbound message unit
922 * @mbox: Inbound mailbox number
923 *
924 * Gets the next available inbound message from the inbound message queue.
925 * A pointer to the message is returned on success or NULL on failure.
926 */
Alexandre Bouninef8f06262011-03-23 16:43:02 -0700927static void *fsl_get_inb_message(struct rio_mport *mport, int mbox)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800928{
Zhang Weiad1e9382008-04-18 13:33:41 -0700929 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800930 u32 phys_buf, virt_buf;
931 void *buf = NULL;
932 int buf_idx;
933
Zhang Weiad1e9382008-04-18 13:33:41 -0700934 phys_buf = in_be32(&priv->msg_regs->ifqdpar);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800935
936 /* If no more messages, then bail out */
Zhang Weiad1e9382008-04-18 13:33:41 -0700937 if (phys_buf == in_be32(&priv->msg_regs->ifqepar))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800938 goto out2;
939
Zhang Weiad1e9382008-04-18 13:33:41 -0700940 virt_buf = (u32) priv->msg_rx_ring.virt + (phys_buf
941 - priv->msg_rx_ring.phys);
942 buf_idx = (phys_buf - priv->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE;
943 buf = priv->msg_rx_ring.virt_buffer[buf_idx];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800944
945 if (!buf) {
946 printk(KERN_ERR
947 "RIO: inbound message copy failed, no buffers\n");
948 goto out1;
949 }
950
951 /* Copy max message size, caller is expected to allocate that big */
952 memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE);
953
954 /* Clear the available buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700955 priv->msg_rx_ring.virt_buffer[buf_idx] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800956
957 out1:
Zhang Weiad1e9382008-04-18 13:33:41 -0700958 setbits32(&priv->msg_regs->imr, RIO_MSG_IMR_MI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800959
960 out2:
961 return buf;
962}
963
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800964/**
Zhang Weid02443a2008-04-18 13:33:38 -0700965 * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800966 * @irq: Linux interrupt number
967 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800968 *
969 * Handles doorbell interrupts. Parses a list of registered
970 * doorbell event handlers and executes a matching event handler.
971 */
972static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700973fsl_rio_dbell_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800974{
975 int dsr;
976 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700977 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800978
Zhang Weiad1e9382008-04-18 13:33:41 -0700979 dsr = in_be32(&priv->msg_regs->dsr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800980
981 if (dsr & DOORBELL_DSR_TE) {
982 pr_info("RIO: doorbell reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700983 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800984 goto out;
985 }
986
987 if (dsr & DOORBELL_DSR_QFI) {
988 pr_info("RIO: doorbell queue full\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700989 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_QFI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800990 }
991
992 /* XXX Need to check/dispatch until queue empty */
993 if (dsr & DOORBELL_DSR_DIQI) {
994 u32 dmsg =
Zhang Weiad1e9382008-04-18 13:33:41 -0700995 (u32) priv->dbell_ring.virt +
996 (in_be32(&priv->msg_regs->dqdpar) & 0xfff);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800997 struct rio_dbell *dbell;
998 int found = 0;
999
1000 pr_debug
1001 ("RIO: processing doorbell, sid %2.2x tid %2.2x info %4.4x\n",
1002 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
1003
1004 list_for_each_entry(dbell, &port->dbells, node) {
1005 if ((dbell->res->start <= DBELL_INF(dmsg)) &&
1006 (dbell->res->end >= DBELL_INF(dmsg))) {
1007 found = 1;
1008 break;
1009 }
1010 }
1011 if (found) {
Matt Porter6978bbc2005-11-07 01:00:20 -08001012 dbell->dinb(port, dbell->dev_id, DBELL_SID(dmsg), DBELL_TID(dmsg),
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001013 DBELL_INF(dmsg));
1014 } else {
1015 pr_debug
1016 ("RIO: spurious doorbell, sid %2.2x tid %2.2x info %4.4x\n",
1017 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
1018 }
Zhang Weiad1e9382008-04-18 13:33:41 -07001019 setbits32(&priv->msg_regs->dmr, DOORBELL_DMR_DI);
1020 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001021 }
1022
1023 out:
1024 return IRQ_HANDLED;
1025}
1026
1027/**
Zhang Weid02443a2008-04-18 13:33:38 -07001028 * fsl_rio_doorbell_init - MPC85xx doorbell interface init
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001029 * @mport: Master port implementing the inbound doorbell unit
1030 *
1031 * Initializes doorbell unit hardware and inbound DMA buffer
Zhang Weid02443a2008-04-18 13:33:38 -07001032 * ring. Called from fsl_rio_setup(). Returns %0 on success
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001033 * or %-ENOMEM on failure.
1034 */
Zhang Weid02443a2008-04-18 13:33:38 -07001035static int fsl_rio_doorbell_init(struct rio_mport *mport)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001036{
Zhang Weiad1e9382008-04-18 13:33:41 -07001037 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001038 int rc = 0;
1039
1040 /* Map outbound doorbell window immediately after maintenance window */
Zhang Weiad1e9382008-04-18 13:33:41 -07001041 priv->dbell_win = ioremap(mport->iores.start + RIO_MAINT_WIN_SIZE,
1042 RIO_DBELL_WIN_SIZE);
1043 if (!priv->dbell_win) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001044 printk(KERN_ERR
1045 "RIO: unable to map outbound doorbell window\n");
1046 rc = -ENOMEM;
1047 goto out;
1048 }
1049
1050 /* Initialize inbound doorbells */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001051 priv->dbell_ring.virt = dma_alloc_coherent(priv->dev, 512 *
Zhang Weiad1e9382008-04-18 13:33:41 -07001052 DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL);
1053 if (!priv->dbell_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001054 printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n");
1055 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -07001056 iounmap(priv->dbell_win);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001057 goto out;
1058 }
1059
1060 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -07001061 out_be32(&priv->msg_regs->dqdpar, (u32) priv->dbell_ring.phys);
1062 out_be32(&priv->msg_regs->dqepar, (u32) priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001063
1064 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -07001065 out_be32(&priv->msg_regs->dsr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001066
1067 /* Hook up doorbell handler */
Zhang Weiad1e9382008-04-18 13:33:41 -07001068 rc = request_irq(IRQ_RIO_BELL(mport), fsl_rio_dbell_handler, 0,
1069 "dbell_rx", (void *)mport);
1070 if (rc < 0) {
1071 iounmap(priv->dbell_win);
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001072 dma_free_coherent(priv->dev, 512 * DOORBELL_MESSAGE_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -07001073 priv->dbell_ring.virt, priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001074 printk(KERN_ERR
1075 "MPC85xx RIO: unable to request inbound doorbell irq");
1076 goto out;
1077 }
1078
1079 /* Configure doorbells for snooping, 512 entries, and enable */
Zhang Weiad1e9382008-04-18 13:33:41 -07001080 out_be32(&priv->msg_regs->dmr, 0x00108161);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001081
1082 out:
1083 return rc;
1084}
1085
Shaohui Xie6ff31452010-11-18 14:57:53 +08001086static void port_error_handler(struct rio_mport *port, int offset)
1087{
1088 /*XXX: Error recovery is not implemented, we just clear errors */
1089 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
1090
1091 if (offset == 0) {
1092 out_be32((u32 *)(rio_regs_win + RIO_PORT1_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -07001093 out_be32((u32 *)(rio_regs_win + RIO_PORT1_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +08001094 out_be32((u32 *)(rio_regs_win + RIO_ESCSR), ESCSR_CLEAR);
1095 } else {
1096 out_be32((u32 *)(rio_regs_win + RIO_PORT2_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -07001097 out_be32((u32 *)(rio_regs_win + RIO_PORT2_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +08001098 out_be32((u32 *)(rio_regs_win + RIO_PORT2_ESCSR), ESCSR_CLEAR);
1099 }
1100}
1101
1102static void msg_unit_error_handler(struct rio_mport *port)
1103{
1104 struct rio_priv *priv = port->priv;
1105
1106 /*XXX: Error recovery is not implemented, we just clear errors */
1107 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
1108
1109 out_be32((u32 *)(rio_regs_win + RIO_IM0SR), IMSR_CLEAR);
1110 out_be32((u32 *)(rio_regs_win + RIO_IM1SR), IMSR_CLEAR);
1111 out_be32((u32 *)(rio_regs_win + RIO_OM0SR), OMSR_CLEAR);
1112 out_be32((u32 *)(rio_regs_win + RIO_OM1SR), OMSR_CLEAR);
1113
1114 out_be32(&priv->msg_regs->odsr, ODSR_CLEAR);
1115 out_be32(&priv->msg_regs->dsr, IDSR_CLEAR);
1116
1117 out_be32(&priv->msg_regs->pwsr, IPWSR_CLEAR);
1118}
1119
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001120/**
1121 * fsl_rio_port_write_handler - MPC85xx port write interrupt handler
1122 * @irq: Linux interrupt number
1123 * @dev_instance: Pointer to interrupt-specific data
1124 *
1125 * Handles port write interrupts. Parses a list of registered
1126 * port write event handlers and executes a matching event handler.
1127 */
1128static irqreturn_t
1129fsl_rio_port_write_handler(int irq, void *dev_instance)
1130{
1131 u32 ipwmr, ipwsr;
1132 struct rio_mport *port = (struct rio_mport *)dev_instance;
1133 struct rio_priv *priv = port->priv;
1134 u32 epwisr, tmp;
1135
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001136 epwisr = in_be32(priv->regs_win + RIO_EPWISR);
1137 if (!(epwisr & RIO_EPWISR_PW))
1138 goto pw_done;
1139
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001140 ipwmr = in_be32(&priv->msg_regs->pwmr);
1141 ipwsr = in_be32(&priv->msg_regs->pwsr);
1142
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001143#ifdef DEBUG_PW
1144 pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr, ipwsr);
1145 if (ipwsr & RIO_IPWSR_QF)
1146 pr_debug(" QF");
1147 if (ipwsr & RIO_IPWSR_TE)
1148 pr_debug(" TE");
1149 if (ipwsr & RIO_IPWSR_QFI)
1150 pr_debug(" QFI");
1151 if (ipwsr & RIO_IPWSR_PWD)
1152 pr_debug(" PWD");
1153 if (ipwsr & RIO_IPWSR_PWB)
1154 pr_debug(" PWB");
1155 pr_debug(" )\n");
1156#endif
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001157 /* Schedule deferred processing if PW was received */
1158 if (ipwsr & RIO_IPWSR_QFI) {
1159 /* Save PW message (if there is room in FIFO),
1160 * otherwise discard it.
1161 */
1162 if (kfifo_avail(&priv->pw_fifo) >= RIO_PW_MSG_SIZE) {
1163 priv->port_write_msg.msg_count++;
1164 kfifo_in(&priv->pw_fifo, priv->port_write_msg.virt,
1165 RIO_PW_MSG_SIZE);
1166 } else {
1167 priv->port_write_msg.discard_count++;
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001168 pr_debug("RIO: ISR Discarded Port-Write Msg(s) (%d)\n",
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001169 priv->port_write_msg.discard_count);
1170 }
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001171 /* Clear interrupt and issue Clear Queue command. This allows
1172 * another port-write to be received.
1173 */
1174 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_QFI);
1175 out_be32(&priv->msg_regs->pwmr, ipwmr | RIO_IPWMR_CQ);
1176
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001177 schedule_work(&priv->pw_work);
1178 }
1179
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001180 if ((ipwmr & RIO_IPWMR_EIE) && (ipwsr & RIO_IPWSR_TE)) {
1181 priv->port_write_msg.err_count++;
1182 pr_debug("RIO: Port-Write Transaction Err (%d)\n",
1183 priv->port_write_msg.err_count);
1184 /* Clear Transaction Error: port-write controller should be
1185 * disabled when clearing this error
1186 */
1187 out_be32(&priv->msg_regs->pwmr, ipwmr & ~RIO_IPWMR_PWE);
1188 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_TE);
1189 out_be32(&priv->msg_regs->pwmr, ipwmr);
1190 }
1191
1192 if (ipwsr & RIO_IPWSR_PWD) {
1193 priv->port_write_msg.discard_count++;
1194 pr_debug("RIO: Port Discarded Port-Write Msg(s) (%d)\n",
1195 priv->port_write_msg.discard_count);
1196 out_be32(&priv->msg_regs->pwsr, RIO_IPWSR_PWD);
1197 }
1198
1199pw_done:
Shaohui Xie6ff31452010-11-18 14:57:53 +08001200 if (epwisr & RIO_EPWISR_PINT1) {
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001201 tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1202 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
Shaohui Xie6ff31452010-11-18 14:57:53 +08001203 port_error_handler(port, 0);
1204 }
1205
1206 if (epwisr & RIO_EPWISR_PINT2) {
1207 tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1208 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1209 port_error_handler(port, 1);
1210 }
1211
1212 if (epwisr & RIO_EPWISR_MU) {
1213 tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1214 pr_debug("RIO_LTLEDCSR = 0x%x\n", tmp);
1215 msg_unit_error_handler(port);
Alexandre Bounine93e2cbd2010-10-27 15:34:28 -07001216 }
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001217
1218 return IRQ_HANDLED;
1219}
1220
1221static void fsl_pw_dpc(struct work_struct *work)
1222{
1223 struct rio_priv *priv = container_of(work, struct rio_priv, pw_work);
1224 unsigned long flags;
1225 u32 msg_buffer[RIO_PW_MSG_SIZE/sizeof(u32)];
1226
1227 /*
1228 * Process port-write messages
1229 */
1230 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1231 while (kfifo_out(&priv->pw_fifo, (unsigned char *)msg_buffer,
1232 RIO_PW_MSG_SIZE)) {
1233 /* Process one message */
1234 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1235#ifdef DEBUG_PW
1236 {
1237 u32 i;
1238 pr_debug("%s : Port-Write Message:", __func__);
1239 for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32); i++) {
1240 if ((i%4) == 0)
1241 pr_debug("\n0x%02x: 0x%08x", i*4,
1242 msg_buffer[i]);
1243 else
1244 pr_debug(" 0x%08x", msg_buffer[i]);
1245 }
1246 pr_debug("\n");
1247 }
1248#endif
1249 /* Pass the port-write message to RIO core for processing */
1250 rio_inb_pwrite_handler((union rio_pw_msg *)msg_buffer);
1251 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1252 }
1253 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1254}
1255
1256/**
1257 * fsl_rio_pw_enable - enable/disable port-write interface init
1258 * @mport: Master port implementing the port write unit
1259 * @enable: 1=enable; 0=disable port-write message handling
1260 */
1261static int fsl_rio_pw_enable(struct rio_mport *mport, int enable)
1262{
1263 struct rio_priv *priv = mport->priv;
1264 u32 rval;
1265
1266 rval = in_be32(&priv->msg_regs->pwmr);
1267
1268 if (enable)
1269 rval |= RIO_IPWMR_PWE;
1270 else
1271 rval &= ~RIO_IPWMR_PWE;
1272
1273 out_be32(&priv->msg_regs->pwmr, rval);
1274
1275 return 0;
1276}
1277
1278/**
1279 * fsl_rio_port_write_init - MPC85xx port write interface init
1280 * @mport: Master port implementing the port write unit
1281 *
1282 * Initializes port write unit hardware and DMA buffer
1283 * ring. Called from fsl_rio_setup(). Returns %0 on success
1284 * or %-ENOMEM on failure.
1285 */
1286static int fsl_rio_port_write_init(struct rio_mport *mport)
1287{
1288 struct rio_priv *priv = mport->priv;
1289 int rc = 0;
1290
1291 /* Following configurations require a disabled port write controller */
1292 out_be32(&priv->msg_regs->pwmr,
1293 in_be32(&priv->msg_regs->pwmr) & ~RIO_IPWMR_PWE);
1294
1295 /* Initialize port write */
1296 priv->port_write_msg.virt = dma_alloc_coherent(priv->dev,
1297 RIO_PW_MSG_SIZE,
1298 &priv->port_write_msg.phys, GFP_KERNEL);
1299 if (!priv->port_write_msg.virt) {
1300 pr_err("RIO: unable allocate port write queue\n");
1301 return -ENOMEM;
1302 }
1303
1304 priv->port_write_msg.err_count = 0;
1305 priv->port_write_msg.discard_count = 0;
1306
1307 /* Point dequeue/enqueue pointers at first entry */
1308 out_be32(&priv->msg_regs->epwqbar, 0);
1309 out_be32(&priv->msg_regs->pwqbar, (u32) priv->port_write_msg.phys);
1310
1311 pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n",
1312 in_be32(&priv->msg_regs->epwqbar),
1313 in_be32(&priv->msg_regs->pwqbar));
1314
1315 /* Clear interrupt status IPWSR */
1316 out_be32(&priv->msg_regs->pwsr,
1317 (RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD));
1318
1319 /* Configure port write contoller for snooping enable all reporting,
1320 clear queue full */
1321 out_be32(&priv->msg_regs->pwmr,
1322 RIO_IPWMR_SEN | RIO_IPWMR_QFIE | RIO_IPWMR_EIE | RIO_IPWMR_CQ);
1323
1324
1325 /* Hook up port-write handler */
Shaohui Xie6ff31452010-11-18 14:57:53 +08001326 rc = request_irq(IRQ_RIO_PW(mport), fsl_rio_port_write_handler,
1327 IRQF_SHARED, "port-write", (void *)mport);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001328 if (rc < 0) {
1329 pr_err("MPC85xx RIO: unable to request inbound doorbell irq");
1330 goto err_out;
1331 }
Shaohui Xie6ff31452010-11-18 14:57:53 +08001332 /* Enable Error Interrupt */
1333 out_be32((u32 *)(rio_regs_win + RIO_LTLEECSR), LTLEECSR_ENABLE_ALL);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001334
1335 INIT_WORK(&priv->pw_work, fsl_pw_dpc);
1336 spin_lock_init(&priv->pw_fifo_lock);
1337 if (kfifo_alloc(&priv->pw_fifo, RIO_PW_MSG_SIZE * 32, GFP_KERNEL)) {
1338 pr_err("FIFO allocation failed\n");
1339 rc = -ENOMEM;
1340 goto err_out_irq;
1341 }
1342
1343 pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n",
1344 in_be32(&priv->msg_regs->pwmr),
1345 in_be32(&priv->msg_regs->pwsr));
1346
1347 return rc;
1348
1349err_out_irq:
1350 free_irq(IRQ_RIO_PW(mport), (void *)mport);
1351err_out:
1352 dma_free_coherent(priv->dev, RIO_PW_MSG_SIZE,
1353 priv->port_write_msg.virt,
1354 priv->port_write_msg.phys);
1355 return rc;
1356}
1357
Zhang Wei7f620df2008-04-18 13:33:44 -07001358static inline void fsl_rio_info(struct device *dev, u32 ccsr)
1359{
1360 const char *str;
1361 if (ccsr & 1) {
1362 /* Serial phy */
1363 switch (ccsr >> 30) {
1364 case 0:
1365 str = "1";
1366 break;
1367 case 1:
1368 str = "4";
1369 break;
1370 default:
1371 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +00001372 break;
Zhang Wei7f620df2008-04-18 13:33:44 -07001373 }
1374 dev_info(dev, "Hardware port width: %s\n", str);
1375
1376 switch ((ccsr >> 27) & 7) {
1377 case 0:
1378 str = "Single-lane 0";
1379 break;
1380 case 1:
1381 str = "Single-lane 2";
1382 break;
1383 case 2:
1384 str = "Four-lane";
1385 break;
1386 default:
1387 str = "Unknown";
1388 break;
1389 }
1390 dev_info(dev, "Training connection status: %s\n", str);
1391 } else {
1392 /* Parallel phy */
1393 if (!(ccsr & 0x80000000))
1394 dev_info(dev, "Output port operating in 8-bit mode\n");
1395 if (!(ccsr & 0x08000000))
1396 dev_info(dev, "Input port operating in 8-bit mode\n");
1397 }
1398}
1399
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001400/**
Randy Dunlap9941d942008-04-30 16:45:58 -07001401 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -06001402 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001403 *
1404 * Initializes MPC85xx RapidIO hardware interface, configures
1405 * master port with system-specific info, and registers the
1406 * master port with the RapidIO subsystem.
1407 */
Grant Likelya454dc52010-07-22 15:52:34 -06001408int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001409{
1410 struct rio_ops *ops;
1411 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -07001412 struct rio_priv *priv;
1413 int rc = 0;
1414 const u32 *dt_range, *cell;
1415 struct resource regs;
1416 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -07001417 u32 ccsr;
Zhang Weicc2bb692008-04-18 13:33:41 -07001418 u64 law_start, law_size;
1419 int paw, aw, sw;
1420
Grant Likely61c7a082010-04-13 16:12:29 -07001421 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -07001422 dev_err(&dev->dev, "Device OF-Node is NULL");
1423 return -EFAULT;
1424 }
1425
Grant Likely61c7a082010-04-13 16:12:29 -07001426 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001427 if (rc) {
1428 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001429 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001430 return -EFAULT;
1431 }
Grant Likely61c7a082010-04-13 16:12:29 -07001432 dev_info(&dev->dev, "Of-device full name %s\n", dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -05001433 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001434
Grant Likely61c7a082010-04-13 16:12:29 -07001435 dt_range = of_get_property(dev->dev.of_node, "ranges", &rlen);
Zhang Weicc2bb692008-04-18 13:33:41 -07001436 if (!dt_range) {
1437 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001438 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001439 return -EFAULT;
1440 }
1441
1442 /* Get node address wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001443 cell = of_get_property(dev->dev.of_node, "#address-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001444 if (cell)
1445 aw = *cell;
1446 else
Grant Likely61c7a082010-04-13 16:12:29 -07001447 aw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001448 /* Get node size wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001449 cell = of_get_property(dev->dev.of_node, "#size-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001450 if (cell)
1451 sw = *cell;
1452 else
Grant Likely61c7a082010-04-13 16:12:29 -07001453 sw = of_n_size_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001454 /* Get parent address wide wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001455 paw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001456
1457 law_start = of_read_number(dt_range + aw, paw);
1458 law_size = of_read_number(dt_range + aw + paw, sw);
1459
1460 dev_info(&dev->dev, "LAW start 0x%016llx, size 0x%016llx.\n",
1461 law_start, law_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001462
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -07001463 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001464 if (!ops) {
1465 rc = -ENOMEM;
1466 goto err_ops;
1467 }
Zhang Weid02443a2008-04-18 13:33:38 -07001468 ops->lcread = fsl_local_config_read;
1469 ops->lcwrite = fsl_local_config_write;
1470 ops->cread = fsl_rio_config_read;
1471 ops->cwrite = fsl_rio_config_write;
1472 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001473 ops->pwenable = fsl_rio_pw_enable;
Alexandre Bouninef8f06262011-03-23 16:43:02 -07001474 ops->open_outb_mbox = fsl_open_outb_mbox;
1475 ops->open_inb_mbox = fsl_open_inb_mbox;
1476 ops->close_outb_mbox = fsl_close_outb_mbox;
1477 ops->close_inb_mbox = fsl_close_inb_mbox;
1478 ops->add_outb_message = fsl_add_outb_message;
1479 ops->add_inb_buffer = fsl_add_inb_buffer;
1480 ops->get_inb_message = fsl_get_inb_message;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001481
Zhang Weiad1e9382008-04-18 13:33:41 -07001482 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001483 if (!port) {
1484 rc = -ENOMEM;
1485 goto err_port;
1486 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001487 port->index = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001488
1489 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
1490 if (!priv) {
1491 printk(KERN_ERR "Can't alloc memory for 'priv'\n");
1492 rc = -ENOMEM;
Julia Lawall6c759332009-08-07 09:00:34 +02001493 goto err_priv;
Zhang Weiad1e9382008-04-18 13:33:41 -07001494 }
1495
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001496 INIT_LIST_HEAD(&port->dbells);
1497 port->iores.start = law_start;
Li Yang186e74b2009-05-12 16:35:59 +08001498 port->iores.end = law_start + law_size - 1;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001499 port->iores.flags = IORESOURCE_MEM;
Li Yang186e74b2009-05-12 16:35:59 +08001500 port->iores.name = "rio_io_win";
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001501
Alexandre Bouninec1256eb2011-03-23 16:43:06 -07001502 if (request_resource(&iomem_resource, &port->iores) < 0) {
1503 dev_err(&dev->dev, "RIO: Error requesting master port region"
1504 " 0x%016llx-0x%016llx\n",
1505 (u64)port->iores.start, (u64)port->iores.end);
1506 rc = -ENOMEM;
1507 goto err_res;
1508 }
1509
Alexandre Bounine45fdf002010-05-28 13:56:17 -04001510 priv->pwirq = irq_of_parse_and_map(dev->dev.of_node, 0);
Grant Likely61c7a082010-04-13 16:12:29 -07001511 priv->bellirq = irq_of_parse_and_map(dev->dev.of_node, 2);
1512 priv->txirq = irq_of_parse_and_map(dev->dev.of_node, 3);
1513 priv->rxirq = irq_of_parse_and_map(dev->dev.of_node, 4);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001514 dev_info(&dev->dev, "pwirq: %d, bellirq: %d, txirq: %d, rxirq %d\n",
1515 priv->pwirq, priv->bellirq, priv->txirq, priv->rxirq);
Zhang Weicc2bb692008-04-18 13:33:41 -07001516
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001517 rio_init_dbell_res(&port->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
1518 rio_init_mbox_res(&port->riores[RIO_INB_MBOX_RESOURCE], 0, 0);
1519 rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0);
1520 strcpy(port->name, "RIO0 mport");
1521
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001522 priv->dev = &dev->dev;
1523
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001524 port->ops = ops;
Zhang Weiad1e9382008-04-18 13:33:41 -07001525 port->priv = priv;
Alexandre Bounineaf84ca32010-10-27 15:34:34 -07001526 port->phys_efptr = 0x100;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001527
Joe Perches28f65c112011-06-09 09:13:32 -07001528 priv->regs_win = ioremap(regs.start, resource_size(&regs));
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001529 rio_regs_win = priv->regs_win;
Zhang Weie0423232008-04-18 13:33:42 -07001530
Zhang Wei61b26912008-04-18 13:33:44 -07001531 /* Probe the master port phy type */
1532 ccsr = in_be32(priv->regs_win + RIO_CCSR);
1533 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
1534 dev_info(&dev->dev, "RapidIO PHY type: %s\n",
1535 (port->phy_type == RIO_PHY_PARALLEL) ? "parallel" :
1536 ((port->phy_type == RIO_PHY_SERIAL) ? "serial" :
1537 "unknown"));
Zhang Wei7f620df2008-04-18 13:33:44 -07001538 /* Checking the port training status */
1539 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1540 dev_err(&dev->dev, "Port is not ready. "
1541 "Try to restart connection...\n");
1542 switch (port->phy_type) {
1543 case RIO_PHY_SERIAL:
1544 /* Disable ports */
1545 out_be32(priv->regs_win + RIO_CCSR, 0);
1546 /* Set 1x lane */
1547 setbits32(priv->regs_win + RIO_CCSR, 0x02000000);
1548 /* Enable ports */
1549 setbits32(priv->regs_win + RIO_CCSR, 0x00600000);
1550 break;
1551 case RIO_PHY_PARALLEL:
1552 /* Disable ports */
1553 out_be32(priv->regs_win + RIO_CCSR, 0x22000000);
1554 /* Enable ports */
1555 out_be32(priv->regs_win + RIO_CCSR, 0x44000000);
1556 break;
1557 }
1558 msleep(100);
1559 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1560 dev_err(&dev->dev, "Port restart failed.\n");
1561 rc = -ENOLINK;
1562 goto err;
1563 }
1564 dev_info(&dev->dev, "Port restart success!\n");
1565 }
1566 fsl_rio_info(&dev->dev, ccsr);
Zhang Wei61b26912008-04-18 13:33:44 -07001567
Zhang Weie0423232008-04-18 13:33:42 -07001568 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
1569 & RIO_PEF_CTLS) >> 4;
1570 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
1571 port->sys_size ? 65536 : 256);
1572
Alexandre Bounine59f99962011-04-14 15:22:14 -07001573 if (rio_register_mport(port))
1574 goto err;
1575
Alexandre Bounineaf84ca32010-10-27 15:34:34 -07001576 if (port->host_deviceid >= 0)
1577 out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
1578 RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
1579 else
1580 out_be32(priv->regs_win + RIO_GCCSR, 0x00000000);
1581
Zhang Weiad1e9382008-04-18 13:33:41 -07001582 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
1583 + RIO_ATMU_REGS_OFFSET);
1584 priv->maint_atmu_regs = priv->atmu_regs + 1;
1585 priv->dbell_atmu_regs = priv->atmu_regs + 2;
Zhang Wei61b26912008-04-18 13:33:44 -07001586 priv->msg_regs = (struct rio_msg_regs *)(priv->regs_win +
1587 ((port->phy_type == RIO_PHY_SERIAL) ?
1588 RIO_S_MSG_REGS_OFFSET : RIO_P_MSG_REGS_OFFSET));
1589
1590 /* Set to receive any dist ID for serial RapidIO controller. */
1591 if (port->phy_type == RIO_PHY_SERIAL)
1592 out_be32((priv->regs_win + RIO_ISR_AACR), RIO_ISR_AACR_AA);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001593
1594 /* Configure maintenance transaction window */
Li Yang186e74b2009-05-12 16:35:59 +08001595 out_be32(&priv->maint_atmu_regs->rowbar, law_start >> 12);
Thomas Mollbd4fb652010-05-26 14:44:05 -07001596 out_be32(&priv->maint_atmu_regs->rowar,
1597 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001598
Zhang Weiad1e9382008-04-18 13:33:41 -07001599 priv->maint_win = ioremap(law_start, RIO_MAINT_WIN_SIZE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001600
1601 /* Configure outbound doorbell window */
Li Yang186e74b2009-05-12 16:35:59 +08001602 out_be32(&priv->dbell_atmu_regs->rowbar,
1603 (law_start + RIO_MAINT_WIN_SIZE) >> 12);
1604 out_be32(&priv->dbell_atmu_regs->rowar, 0x8004200b); /* 4k */
Zhang Weid02443a2008-04-18 13:33:38 -07001605 fsl_rio_doorbell_init(port);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001606 fsl_rio_port_write_init(port);
Zhang Weiad1e9382008-04-18 13:33:41 -07001607
Zhang Weicc2bb692008-04-18 13:33:41 -07001608 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001609err:
Julia Lawall6c759332009-08-07 09:00:34 +02001610 iounmap(priv->regs_win);
Liu Gange80dd9a2011-11-02 13:39:07 -07001611 release_resource(&port->iores);
Alexandre Bouninec1256eb2011-03-23 16:43:06 -07001612err_res:
Zhang Weiad1e9382008-04-18 13:33:41 -07001613 kfree(priv);
Julia Lawall6c759332009-08-07 09:00:34 +02001614err_priv:
Zhang Weiad1e9382008-04-18 13:33:41 -07001615 kfree(port);
Julia Lawall6c759332009-08-07 09:00:34 +02001616err_port:
1617 kfree(ops);
1618err_ops:
Zhang Weicc2bb692008-04-18 13:33:41 -07001619 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001620}
Zhang Weicc2bb692008-04-18 13:33:41 -07001621
1622/* The probe function for RapidIO peer-to-peer network.
1623 */
Grant Likely00006122011-02-22 19:59:54 -07001624static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev)
Zhang Weicc2bb692008-04-18 13:33:41 -07001625{
Zhang Weicc2bb692008-04-18 13:33:41 -07001626 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001627 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001628
Alexandre Bounine2f809982011-03-23 16:43:04 -07001629 return fsl_rio_setup(dev);
Zhang Weicc2bb692008-04-18 13:33:41 -07001630};
1631
1632static const struct of_device_id fsl_of_rio_rpn_ids[] = {
1633 {
1634 .compatible = "fsl,rapidio-delta",
1635 },
1636 {},
1637};
1638
Grant Likely00006122011-02-22 19:59:54 -07001639static struct platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001640 .driver = {
1641 .name = "fsl-of-rio",
1642 .owner = THIS_MODULE,
1643 .of_match_table = fsl_of_rio_rpn_ids,
1644 },
Zhang Weicc2bb692008-04-18 13:33:41 -07001645 .probe = fsl_of_rio_rpn_probe,
1646};
1647
1648static __init int fsl_of_rio_rpn_init(void)
1649{
Grant Likely00006122011-02-22 19:59:54 -07001650 return platform_driver_register(&fsl_of_rio_rpn_driver);
Zhang Weicc2bb692008-04-18 13:33:41 -07001651}
1652
1653subsys_initcall(fsl_of_rio_rpn_init);