blob: 412763672d23faa754e26d5b655cccd21046f4ad [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
53#define RIO_ESCSR 0x158
54#define RIO_CCSR 0x15c
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070055#define RIO_LTLEDCSR 0x0608
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070056#define RIO_LTLEDCSR_IER 0x80000000
57#define RIO_LTLEDCSR_PRT 0x01000000
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070058#define RIO_LTLEECSR 0x060c
59#define RIO_EPWISR 0x10010
Zhang Wei61b26912008-04-18 13:33:44 -070060#define RIO_ISR_AACR 0x10120
61#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080062#define RIO_MAINT_WIN_SIZE 0x400000
63#define RIO_DBELL_WIN_SIZE 0x1000
64
65#define RIO_MSG_OMR_MUI 0x00000002
66#define RIO_MSG_OSR_TE 0x00000080
67#define RIO_MSG_OSR_QOI 0x00000020
68#define RIO_MSG_OSR_QFI 0x00000010
69#define RIO_MSG_OSR_MUB 0x00000004
70#define RIO_MSG_OSR_EOMI 0x00000002
71#define RIO_MSG_OSR_QEI 0x00000001
72
73#define RIO_MSG_IMR_MI 0x00000002
74#define RIO_MSG_ISR_TE 0x00000080
75#define RIO_MSG_ISR_QFI 0x00000010
76#define RIO_MSG_ISR_DIQI 0x00000001
77
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070078#define RIO_IPWMR_SEN 0x00100000
79#define RIO_IPWMR_QFIE 0x00000100
80#define RIO_IPWMR_EIE 0x00000020
81#define RIO_IPWMR_CQ 0x00000002
82#define RIO_IPWMR_PWE 0x00000001
83
84#define RIO_IPWSR_QF 0x00100000
85#define RIO_IPWSR_TE 0x00000080
86#define RIO_IPWSR_QFI 0x00000010
87#define RIO_IPWSR_PWD 0x00000008
88#define RIO_IPWSR_PWB 0x00000004
89
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080090#define RIO_MSG_DESC_SIZE 32
91#define RIO_MSG_BUFFER_SIZE 4096
92#define RIO_MIN_TX_RING_SIZE 2
93#define RIO_MAX_TX_RING_SIZE 2048
94#define RIO_MIN_RX_RING_SIZE 2
95#define RIO_MAX_RX_RING_SIZE 2048
96
97#define DOORBELL_DMR_DI 0x00000002
98#define DOORBELL_DSR_TE 0x00000080
99#define DOORBELL_DSR_QFI 0x00000010
100#define DOORBELL_DSR_DIQI 0x00000001
Zhang Wei6c391032008-04-18 13:33:48 -0700101#define DOORBELL_TID_OFFSET 0x02
102#define DOORBELL_SID_OFFSET 0x04
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800103#define DOORBELL_INFO_OFFSET 0x06
104
105#define DOORBELL_MESSAGE_SIZE 0x08
Zhang Wei6c391032008-04-18 13:33:48 -0700106#define DBELL_SID(x) (*(u16 *)(x + DOORBELL_SID_OFFSET))
107#define DBELL_TID(x) (*(u16 *)(x + DOORBELL_TID_OFFSET))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800108#define DBELL_INF(x) (*(u16 *)(x + DOORBELL_INFO_OFFSET))
109
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800110struct rio_atmu_regs {
111 u32 rowtar;
Zhang Wei61b26912008-04-18 13:33:44 -0700112 u32 rowtear;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800113 u32 rowbar;
114 u32 pad2;
115 u32 rowar;
116 u32 pad3[3];
117};
118
119struct rio_msg_regs {
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800120 u32 omr; /* 0xD_3000 - Outbound message 0 mode register */
121 u32 osr; /* 0xD_3004 - Outbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800122 u32 pad1;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800123 u32 odqdpar; /* 0xD_300C - Outbound message 0 descriptor queue
124 dequeue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800125 u32 pad2;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800126 u32 osar; /* 0xD_3014 - Outbound message 0 source address
127 register */
128 u32 odpr; /* 0xD_3018 - Outbound message 0 destination port
129 register */
130 u32 odatr; /* 0xD_301C - Outbound message 0 destination attributes
131 Register*/
132 u32 odcr; /* 0xD_3020 - Outbound message 0 double-word count
133 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800134 u32 pad3;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800135 u32 odqepar; /* 0xD_3028 - Outbound message 0 descriptor queue
136 enqueue pointer address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800137 u32 pad4[13];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800138 u32 imr; /* 0xD_3060 - Inbound message 0 mode register */
139 u32 isr; /* 0xD_3064 - Inbound message 0 status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800140 u32 pad5;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800141 u32 ifqdpar; /* 0xD_306C - Inbound message 0 frame queue dequeue
142 pointer address register*/
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800143 u32 pad6;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800144 u32 ifqepar; /* 0xD_3074 - Inbound message 0 frame queue enqueue
145 pointer address register */
Zhang Wei61b26912008-04-18 13:33:44 -0700146 u32 pad7[226];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800147 u32 odmr; /* 0xD_3400 - Outbound doorbell mode register */
148 u32 odsr; /* 0xD_3404 - Outbound doorbell status register */
Zhang Wei61b26912008-04-18 13:33:44 -0700149 u32 res0[4];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800150 u32 oddpr; /* 0xD_3418 - Outbound doorbell destination port
151 register */
152 u32 oddatr; /* 0xD_341c - Outbound doorbell destination attributes
153 register */
Zhang Wei61b26912008-04-18 13:33:44 -0700154 u32 res1[3];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800155 u32 odretcr; /* 0xD_342C - Outbound doorbell retry error threshold
156 configuration register */
Zhang Wei61b26912008-04-18 13:33:44 -0700157 u32 res2[12];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800158 u32 dmr; /* 0xD_3460 - Inbound doorbell mode register */
159 u32 dsr; /* 0xD_3464 - Inbound doorbell status register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800160 u32 pad8;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800161 u32 dqdpar; /* 0xD_346C - Inbound doorbell queue dequeue Pointer
162 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800163 u32 pad9;
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800164 u32 dqepar; /* 0xD_3474 - Inbound doorbell Queue enqueue pointer
165 address register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800166 u32 pad10[26];
Shaohui Xieabd12fe2010-10-14 10:04:02 +0800167 u32 pwmr; /* 0xD_34E0 - Inbound port-write mode register */
168 u32 pwsr; /* 0xD_34E4 - Inbound port-write status register */
169 u32 epwqbar; /* 0xD_34E8 - Extended Port-Write Queue Base Address
170 register */
171 u32 pwqbar; /* 0xD_34EC - Inbound port-write queue base address
172 register */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800173};
174
175struct rio_tx_desc {
176 u32 res1;
177 u32 saddr;
178 u32 dport;
179 u32 dattr;
180 u32 res2;
181 u32 res3;
182 u32 dwcnt;
183 u32 res4;
184};
185
Zhang Weiad1e9382008-04-18 13:33:41 -0700186struct rio_dbell_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800187 void *virt;
188 dma_addr_t phys;
Zhang Weiad1e9382008-04-18 13:33:41 -0700189};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800190
Zhang Weiad1e9382008-04-18 13:33:41 -0700191struct rio_msg_tx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800192 void *virt;
193 dma_addr_t phys;
194 void *virt_buffer[RIO_MAX_TX_RING_SIZE];
195 dma_addr_t phys_buffer[RIO_MAX_TX_RING_SIZE];
196 int tx_slot;
197 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800198 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700199};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800200
Zhang Weiad1e9382008-04-18 13:33:41 -0700201struct rio_msg_rx_ring {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800202 void *virt;
203 dma_addr_t phys;
204 void *virt_buffer[RIO_MAX_RX_RING_SIZE];
205 int rx_slot;
206 int size;
Matt Porter6978bbc2005-11-07 01:00:20 -0800207 void *dev_id;
Zhang Weiad1e9382008-04-18 13:33:41 -0700208};
209
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700210struct rio_port_write_msg {
211 void *virt;
212 dma_addr_t phys;
213 u32 msg_count;
214 u32 err_count;
215 u32 discard_count;
216};
217
Zhang Weiad1e9382008-04-18 13:33:41 -0700218struct rio_priv {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400219 struct device *dev;
Zhang Weiad1e9382008-04-18 13:33:41 -0700220 void __iomem *regs_win;
221 struct rio_atmu_regs __iomem *atmu_regs;
222 struct rio_atmu_regs __iomem *maint_atmu_regs;
223 struct rio_atmu_regs __iomem *dbell_atmu_regs;
224 void __iomem *dbell_win;
225 void __iomem *maint_win;
226 struct rio_msg_regs __iomem *msg_regs;
227 struct rio_dbell_ring dbell_ring;
228 struct rio_msg_tx_ring msg_tx_ring;
229 struct rio_msg_rx_ring msg_rx_ring;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700230 struct rio_port_write_msg port_write_msg;
Zhang Weiad1e9382008-04-18 13:33:41 -0700231 int bellirq;
232 int txirq;
233 int rxirq;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700234 int pwirq;
235 struct work_struct pw_work;
236 struct kfifo pw_fifo;
237 spinlock_t pw_fifo_lock;
Zhang Weiad1e9382008-04-18 13:33:41 -0700238};
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800239
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700240#define __fsl_read_rio_config(x, addr, err, op) \
241 __asm__ __volatile__( \
242 "1: "op" %1,0(%2)\n" \
243 " eieio\n" \
244 "2:\n" \
245 ".section .fixup,\"ax\"\n" \
246 "3: li %1,-1\n" \
247 " li %0,%3\n" \
248 " b 2b\n" \
249 ".section __ex_table,\"a\"\n" \
250 " .align 2\n" \
251 " .long 1b,3b\n" \
252 ".text" \
253 : "=r" (err), "=r" (x) \
254 : "b" (addr), "i" (-EFAULT), "0" (err))
255
256static void __iomem *rio_regs_win;
257
Li Yangff33f182010-06-18 14:24:20 +0800258#ifdef CONFIG_E500
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700259static int (*saved_mcheck_exception)(struct pt_regs *regs);
260
261static int fsl_rio_mcheck_exception(struct pt_regs *regs)
262{
263 const struct exception_table_entry *entry = NULL;
Li Yangff33f182010-06-18 14:24:20 +0800264 unsigned long reason = mfspr(SPRN_MCSR);
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700265
266 if (reason & MCSR_BUS_RBERR) {
267 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
268 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
269 /* Check if we are prepared to handle this fault */
270 entry = search_exception_tables(regs->nip);
271 if (entry) {
272 pr_debug("RIO: %s - MC Exception handled\n",
273 __func__);
274 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
275 0);
276 regs->msr |= MSR_RI;
277 regs->nip = entry->fixup;
278 return 1;
279 }
280 }
281 }
282
283 if (saved_mcheck_exception)
284 return saved_mcheck_exception(regs);
285 else
286 return cur_cpu_spec->machine_check(regs);
287}
Li Yangff33f182010-06-18 14:24:20 +0800288#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700289
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800290/**
Zhang Weid02443a2008-04-18 13:33:38 -0700291 * fsl_rio_doorbell_send - Send a MPC85xx doorbell message
Randy Dunlap9941d942008-04-30 16:45:58 -0700292 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800293 * @index: ID of RapidIO interface
294 * @destid: Destination ID of target device
295 * @data: 16-bit info field of RapidIO doorbell message
296 *
297 * Sends a MPC85xx doorbell message. Returns %0 on success or
298 * %-EINVAL on failure.
299 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700300static int fsl_rio_doorbell_send(struct rio_mport *mport,
301 int index, u16 destid, u16 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800302{
Zhang Weiad1e9382008-04-18 13:33:41 -0700303 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700304 pr_debug("fsl_doorbell_send: index %d destid %4.4x data %4.4x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800305 index, destid, data);
Zhang Wei61b26912008-04-18 13:33:44 -0700306 switch (mport->phy_type) {
307 case RIO_PHY_PARALLEL:
308 out_be32(&priv->dbell_atmu_regs->rowtar, destid << 22);
309 out_be16(priv->dbell_win, data);
310 break;
311 case RIO_PHY_SERIAL:
312 /* In the serial version silicons, such as MPC8548, MPC8641,
313 * below operations is must be.
314 */
315 out_be32(&priv->msg_regs->odmr, 0x00000000);
316 out_be32(&priv->msg_regs->odretcr, 0x00000004);
317 out_be32(&priv->msg_regs->oddpr, destid << 16);
318 out_be32(&priv->msg_regs->oddatr, data);
319 out_be32(&priv->msg_regs->odmr, 0x00000001);
320 break;
321 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800322
323 return 0;
324}
325
326/**
Zhang Weid02443a2008-04-18 13:33:38 -0700327 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700328 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800329 * @index: ID of RapdiIO interface
330 * @offset: Offset into configuration space
331 * @len: Length (in bytes) of the maintenance transaction
332 * @data: Value to be read into
333 *
334 * Generates a MPC85xx local configuration space read. Returns %0 on
335 * success or %-EINVAL on failure.
336 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700337static int fsl_local_config_read(struct rio_mport *mport,
338 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800339{
Zhang Weiad1e9382008-04-18 13:33:41 -0700340 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700341 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800342 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700343 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800344
345 return 0;
346}
347
348/**
Zhang Weid02443a2008-04-18 13:33:38 -0700349 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700350 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800351 * @index: ID of RapdiIO interface
352 * @offset: Offset into configuration space
353 * @len: Length (in bytes) of the maintenance transaction
354 * @data: Value to be written
355 *
356 * Generates a MPC85xx local configuration space write. Returns %0 on
357 * success or %-EINVAL on failure.
358 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700359static int fsl_local_config_write(struct rio_mport *mport,
360 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800361{
Zhang Weiad1e9382008-04-18 13:33:41 -0700362 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800363 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700364 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800365 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700366 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800367
368 return 0;
369}
370
371/**
Zhang Weid02443a2008-04-18 13:33:38 -0700372 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
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 * @destid: Destination ID of transaction
376 * @hopcount: Number of hops to target device
377 * @offset: Offset into configuration space
378 * @len: Length (in bytes) of the maintenance transaction
379 * @val: Location to be read into
380 *
381 * Generates a MPC85xx read maintenance transaction. Returns %0 on
382 * success or %-EINVAL on failure.
383 */
384static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700385fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
386 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800387{
Zhang Weiad1e9382008-04-18 13:33:41 -0700388 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800389 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700390 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800391
392 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700393 ("fsl_rio_config_read: index %d destid %d hopcount %d offset %8.8x len %d\n",
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800394 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800395
Thomas Mollbd4fb652010-05-26 14:44:05 -0700396 /* 16MB maintenance window possible */
397 /* allow only aligned access to maintenance registers */
398 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
399 return -EINVAL;
400
401 out_be32(&priv->maint_atmu_regs->rowtar,
402 (destid << 22) | (hopcount << 12) | (offset >> 12));
403 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
404
405 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800406 switch (len) {
407 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700408 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800409 break;
410 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700411 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800412 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700413 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700414 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800415 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700416 default:
417 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800418 }
419
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700420 if (err) {
421 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
422 err, destid, hopcount, offset);
423 }
424
425 *val = rval;
426
427 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800428}
429
430/**
Zhang Weid02443a2008-04-18 13:33:38 -0700431 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700432 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800433 * @index: ID of RapdiIO interface
434 * @destid: Destination ID of transaction
435 * @hopcount: Number of hops to target device
436 * @offset: Offset into configuration space
437 * @len: Length (in bytes) of the maintenance transaction
438 * @val: Value to be written
439 *
440 * Generates an MPC85xx write maintenance transaction. Returns %0 on
441 * success or %-EINVAL on failure.
442 */
443static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700444fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
445 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800446{
Zhang Weiad1e9382008-04-18 13:33:41 -0700447 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800448 u8 *data;
449 pr_debug
Zhang Weid02443a2008-04-18 13:33:38 -0700450 ("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 -0800451 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800452
Thomas Mollbd4fb652010-05-26 14:44:05 -0700453 /* 16MB maintenance windows possible */
454 /* allow only aligned access to maintenance registers */
455 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
456 return -EINVAL;
457
458 out_be32(&priv->maint_atmu_regs->rowtar,
459 (destid << 22) | (hopcount << 12) | (offset >> 12));
460 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
461
462 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800463 switch (len) {
464 case 1:
465 out_8((u8 *) data, val);
466 break;
467 case 2:
468 out_be16((u16 *) data, val);
469 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700470 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800471 out_be32((u32 *) data, val);
472 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700473 default:
474 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800475 }
476
477 return 0;
478}
479
480/**
481 * rio_hw_add_outb_message - Add message to the MPC85xx outbound message queue
482 * @mport: Master port with outbound message queue
483 * @rdev: Target of outbound message
484 * @mbox: Outbound mailbox
485 * @buffer: Message to add to outbound queue
486 * @len: Length of message
487 *
488 * Adds the @buffer message to the MPC85xx outbound message queue. Returns
489 * %0 on success or %-EINVAL on failure.
490 */
491int
492rio_hw_add_outb_message(struct rio_mport *mport, struct rio_dev *rdev, int mbox,
493 void *buffer, size_t len)
494{
Zhang Weiad1e9382008-04-18 13:33:41 -0700495 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800496 u32 omr;
Zhang Weiad1e9382008-04-18 13:33:41 -0700497 struct rio_tx_desc *desc = (struct rio_tx_desc *)priv->msg_tx_ring.virt
498 + priv->msg_tx_ring.tx_slot;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800499 int ret = 0;
500
501 pr_debug
502 ("RIO: rio_hw_add_outb_message(): destid %4.4x mbox %d buffer %8.8x len %8.8x\n",
503 rdev->destid, mbox, (int)buffer, len);
504
505 if ((len < 8) || (len > RIO_MAX_MSG_SIZE)) {
506 ret = -EINVAL;
507 goto out;
508 }
509
510 /* Copy and clear rest of buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700511 memcpy(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot], buffer,
512 len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800513 if (len < (RIO_MAX_MSG_SIZE - 4))
Zhang Weiad1e9382008-04-18 13:33:41 -0700514 memset(priv->msg_tx_ring.virt_buffer[priv->msg_tx_ring.tx_slot]
515 + len, 0, RIO_MAX_MSG_SIZE - len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800516
Zhang Wei61b26912008-04-18 13:33:44 -0700517 switch (mport->phy_type) {
518 case RIO_PHY_PARALLEL:
519 /* Set mbox field for message */
520 desc->dport = mbox & 0x3;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800521
Zhang Wei61b26912008-04-18 13:33:44 -0700522 /* Enable EOMI interrupt, set priority, and set destid */
523 desc->dattr = 0x28000000 | (rdev->destid << 2);
524 break;
525 case RIO_PHY_SERIAL:
526 /* Set mbox field for message, and set destid */
527 desc->dport = (rdev->destid << 16) | (mbox & 0x3);
528
529 /* Enable EOMI interrupt and priority */
530 desc->dattr = 0x28000000;
531 break;
532 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800533
534 /* Set transfer size aligned to next power of 2 (in double words) */
535 desc->dwcnt = is_power_of_2(len) ? len : 1 << get_bitmask_order(len);
536
537 /* Set snooping and source buffer address */
Zhang Weiad1e9382008-04-18 13:33:41 -0700538 desc->saddr = 0x00000004
539 | priv->msg_tx_ring.phys_buffer[priv->msg_tx_ring.tx_slot];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800540
541 /* Increment enqueue pointer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700542 omr = in_be32(&priv->msg_regs->omr);
543 out_be32(&priv->msg_regs->omr, omr | RIO_MSG_OMR_MUI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800544
545 /* Go to next descriptor */
Zhang Weiad1e9382008-04-18 13:33:41 -0700546 if (++priv->msg_tx_ring.tx_slot == priv->msg_tx_ring.size)
547 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800548
549 out:
550 return ret;
551}
552
553EXPORT_SYMBOL_GPL(rio_hw_add_outb_message);
554
555/**
Zhang Weid02443a2008-04-18 13:33:38 -0700556 * fsl_rio_tx_handler - MPC85xx outbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800557 * @irq: Linux interrupt number
558 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800559 *
560 * Handles outbound message interrupts. Executes a register outbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000561 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800562 */
563static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700564fsl_rio_tx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800565{
566 int osr;
567 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700568 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800569
Zhang Weiad1e9382008-04-18 13:33:41 -0700570 osr = in_be32(&priv->msg_regs->osr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800571
572 if (osr & RIO_MSG_OSR_TE) {
573 pr_info("RIO: outbound message transmission error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700574 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800575 goto out;
576 }
577
578 if (osr & RIO_MSG_OSR_QOI) {
579 pr_info("RIO: outbound message queue overflow\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700580 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_QOI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800581 goto out;
582 }
583
584 if (osr & RIO_MSG_OSR_EOMI) {
Zhang Weiad1e9382008-04-18 13:33:41 -0700585 u32 dqp = in_be32(&priv->msg_regs->odqdpar);
586 int slot = (dqp - priv->msg_tx_ring.phys) >> 5;
587 port->outb_msg[0].mcback(port, priv->msg_tx_ring.dev_id, -1,
588 slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800589
590 /* Ack the end-of-message interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700591 out_be32(&priv->msg_regs->osr, RIO_MSG_OSR_EOMI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800592 }
593
594 out:
595 return IRQ_HANDLED;
596}
597
598/**
599 * rio_open_outb_mbox - Initialize MPC85xx outbound mailbox
600 * @mport: Master port implementing the outbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800601 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800602 * @mbox: Mailbox to open
603 * @entries: Number of entries in the outbound mailbox ring
604 *
605 * Initializes buffer ring, request the outbound message interrupt,
606 * and enables the outbound message unit. Returns %0 on success and
607 * %-EINVAL or %-ENOMEM on failure.
608 */
Matt Porter6978bbc2005-11-07 01:00:20 -0800609int rio_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800610{
611 int i, j, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700612 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800613
614 if ((entries < RIO_MIN_TX_RING_SIZE) ||
615 (entries > RIO_MAX_TX_RING_SIZE) || (!is_power_of_2(entries))) {
616 rc = -EINVAL;
617 goto out;
618 }
619
620 /* Initialize shadow copy ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700621 priv->msg_tx_ring.dev_id = dev_id;
622 priv->msg_tx_ring.size = entries;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800623
Zhang Weiad1e9382008-04-18 13:33:41 -0700624 for (i = 0; i < priv->msg_tx_ring.size; i++) {
625 priv->msg_tx_ring.virt_buffer[i] =
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400626 dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700627 &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL);
628 if (!priv->msg_tx_ring.virt_buffer[i]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800629 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -0700630 for (j = 0; j < priv->msg_tx_ring.size; j++)
631 if (priv->msg_tx_ring.virt_buffer[j])
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400632 dma_free_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700633 RIO_MSG_BUFFER_SIZE,
634 priv->msg_tx_ring.
635 virt_buffer[j],
636 priv->msg_tx_ring.
637 phys_buffer[j]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800638 goto out;
639 }
640 }
641
642 /* Initialize outbound message descriptor ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400643 priv->msg_tx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700644 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
645 &priv->msg_tx_ring.phys, GFP_KERNEL);
646 if (!priv->msg_tx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800647 rc = -ENOMEM;
648 goto out_dma;
649 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700650 memset(priv->msg_tx_ring.virt, 0,
651 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE);
652 priv->msg_tx_ring.tx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800653
654 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700655 out_be32(&priv->msg_regs->odqdpar, priv->msg_tx_ring.phys);
656 out_be32(&priv->msg_regs->odqepar, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800657
658 /* Configure for snooping */
Zhang Weiad1e9382008-04-18 13:33:41 -0700659 out_be32(&priv->msg_regs->osar, 0x00000004);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800660
661 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700662 out_be32(&priv->msg_regs->osr, 0x000000b3);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800663
664 /* Hook up outbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700665 rc = request_irq(IRQ_RIO_TX(mport), fsl_rio_tx_handler, 0,
666 "msg_tx", (void *)mport);
667 if (rc < 0)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800668 goto out_irq;
669
670 /*
671 * Configure outbound message unit
672 * Snooping
673 * Interrupts (all enabled, except QEIE)
674 * Chaining mode
675 * Disable
676 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700677 out_be32(&priv->msg_regs->omr, 0x00100220);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800678
679 /* Set number of entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700680 out_be32(&priv->msg_regs->omr,
681 in_be32(&priv->msg_regs->omr) |
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800682 ((get_bitmask_order(entries) - 2) << 12));
683
684 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700685 out_be32(&priv->msg_regs->omr, in_be32(&priv->msg_regs->omr) | 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800686
687 out:
688 return rc;
689
690 out_irq:
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400691 dma_free_coherent(priv->dev,
692 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700693 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800694
695 out_dma:
Zhang Weiad1e9382008-04-18 13:33:41 -0700696 for (i = 0; i < priv->msg_tx_ring.size; i++)
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400697 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700698 priv->msg_tx_ring.virt_buffer[i],
699 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800700
701 return rc;
702}
703
704/**
705 * rio_close_outb_mbox - Shut down MPC85xx outbound mailbox
706 * @mport: Master port implementing the outbound message unit
707 * @mbox: Mailbox to close
708 *
709 * Disables the outbound message unit, free all buffers, and
710 * frees the outbound message interrupt.
711 */
712void rio_close_outb_mbox(struct rio_mport *mport, int mbox)
713{
Zhang Weiad1e9382008-04-18 13:33:41 -0700714 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800715 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700716 out_be32(&priv->msg_regs->omr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800717
718 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400719 dma_free_coherent(priv->dev,
720 priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700721 priv->msg_tx_ring.virt, priv->msg_tx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800722
723 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700724 free_irq(IRQ_RIO_TX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800725}
726
727/**
Zhang Weid02443a2008-04-18 13:33:38 -0700728 * fsl_rio_rx_handler - MPC85xx inbound message interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800729 * @irq: Linux interrupt number
730 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800731 *
732 * Handles inbound message interrupts. Executes a registered inbound
Simon Arlotta8de5ce2007-05-12 05:42:54 +1000733 * mailbox event handler and acks the interrupt occurrence.
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800734 */
735static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700736fsl_rio_rx_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800737{
738 int isr;
739 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700740 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800741
Zhang Weiad1e9382008-04-18 13:33:41 -0700742 isr = in_be32(&priv->msg_regs->isr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800743
744 if (isr & RIO_MSG_ISR_TE) {
745 pr_info("RIO: inbound message reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700746 out_be32((void *)&priv->msg_regs->isr, RIO_MSG_ISR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800747 goto out;
748 }
749
750 /* XXX Need to check/dispatch until queue empty */
751 if (isr & RIO_MSG_ISR_DIQI) {
752 /*
753 * We implement *only* mailbox 0, but can receive messages
754 * for any mailbox/letter to that mailbox destination. So,
755 * make the callback with an unknown/invalid mailbox number
756 * argument.
757 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700758 port->inb_msg[0].mcback(port, priv->msg_rx_ring.dev_id, -1, -1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800759
760 /* Ack the queueing interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700761 out_be32(&priv->msg_regs->isr, RIO_MSG_ISR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800762 }
763
764 out:
765 return IRQ_HANDLED;
766}
767
768/**
769 * rio_open_inb_mbox - Initialize MPC85xx inbound mailbox
770 * @mport: Master port implementing the inbound message unit
Matt Porter6978bbc2005-11-07 01:00:20 -0800771 * @dev_id: Device specific pointer to pass on event
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800772 * @mbox: Mailbox to open
773 * @entries: Number of entries in the inbound mailbox ring
774 *
775 * Initializes buffer ring, request the inbound message interrupt,
776 * and enables the inbound message unit. Returns %0 on success
777 * and %-EINVAL or %-ENOMEM on failure.
778 */
Matt Porter6978bbc2005-11-07 01:00:20 -0800779int rio_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entries)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800780{
781 int i, rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700782 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800783
784 if ((entries < RIO_MIN_RX_RING_SIZE) ||
785 (entries > RIO_MAX_RX_RING_SIZE) || (!is_power_of_2(entries))) {
786 rc = -EINVAL;
787 goto out;
788 }
789
790 /* Initialize client buffer ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700791 priv->msg_rx_ring.dev_id = dev_id;
792 priv->msg_rx_ring.size = entries;
793 priv->msg_rx_ring.rx_slot = 0;
794 for (i = 0; i < priv->msg_rx_ring.size; i++)
795 priv->msg_rx_ring.virt_buffer[i] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800796
797 /* Initialize inbound message ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400798 priv->msg_rx_ring.virt = dma_alloc_coherent(priv->dev,
Zhang Weiad1e9382008-04-18 13:33:41 -0700799 priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
800 &priv->msg_rx_ring.phys, GFP_KERNEL);
801 if (!priv->msg_rx_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800802 rc = -ENOMEM;
803 goto out;
804 }
805
806 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -0700807 out_be32(&priv->msg_regs->ifqdpar, (u32) priv->msg_rx_ring.phys);
808 out_be32(&priv->msg_regs->ifqepar, (u32) priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800809
810 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -0700811 out_be32(&priv->msg_regs->isr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800812
813 /* Hook up inbound message handler */
Zhang Weiad1e9382008-04-18 13:33:41 -0700814 rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0,
815 "msg_rx", (void *)mport);
816 if (rc < 0) {
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400817 dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700818 priv->msg_tx_ring.virt_buffer[i],
819 priv->msg_tx_ring.phys_buffer[i]);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800820 goto out;
821 }
822
823 /*
824 * Configure inbound message unit:
825 * Snooping
826 * 4KB max message size
827 * Unmask all interrupt sources
828 * Disable
829 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700830 out_be32(&priv->msg_regs->imr, 0x001b0060);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800831
832 /* Set number of queue entries */
Zhang Weiad1e9382008-04-18 13:33:41 -0700833 setbits32(&priv->msg_regs->imr, (get_bitmask_order(entries) - 2) << 12);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800834
835 /* Now enable the unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700836 setbits32(&priv->msg_regs->imr, 0x1);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800837
838 out:
839 return rc;
840}
841
842/**
843 * rio_close_inb_mbox - Shut down MPC85xx inbound mailbox
844 * @mport: Master port implementing the inbound message unit
845 * @mbox: Mailbox to close
846 *
847 * Disables the inbound message unit, free all buffers, and
848 * frees the inbound message interrupt.
849 */
850void rio_close_inb_mbox(struct rio_mport *mport, int mbox)
851{
Zhang Weiad1e9382008-04-18 13:33:41 -0700852 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800853 /* Disable inbound message unit */
Zhang Weiad1e9382008-04-18 13:33:41 -0700854 out_be32(&priv->msg_regs->imr, 0);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800855
856 /* Free ring */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +0400857 dma_free_coherent(priv->dev, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -0700858 priv->msg_rx_ring.virt, priv->msg_rx_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800859
860 /* Free interrupt */
Zhang Weiad1e9382008-04-18 13:33:41 -0700861 free_irq(IRQ_RIO_RX(mport), (void *)mport);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800862}
863
864/**
865 * rio_hw_add_inb_buffer - Add buffer to the MPC85xx inbound message queue
866 * @mport: Master port implementing the inbound message unit
867 * @mbox: Inbound mailbox number
868 * @buf: Buffer to add to inbound queue
869 *
870 * Adds the @buf buffer to the MPC85xx inbound message queue. Returns
871 * %0 on success or %-EINVAL on failure.
872 */
873int rio_hw_add_inb_buffer(struct rio_mport *mport, int mbox, void *buf)
874{
875 int rc = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700876 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800877
878 pr_debug("RIO: rio_hw_add_inb_buffer(), msg_rx_ring.rx_slot %d\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700879 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800880
Zhang Weiad1e9382008-04-18 13:33:41 -0700881 if (priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot]) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800882 printk(KERN_ERR
883 "RIO: error adding inbound buffer %d, buffer exists\n",
Zhang Weiad1e9382008-04-18 13:33:41 -0700884 priv->msg_rx_ring.rx_slot);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800885 rc = -EINVAL;
886 goto out;
887 }
888
Zhang Weiad1e9382008-04-18 13:33:41 -0700889 priv->msg_rx_ring.virt_buffer[priv->msg_rx_ring.rx_slot] = buf;
890 if (++priv->msg_rx_ring.rx_slot == priv->msg_rx_ring.size)
891 priv->msg_rx_ring.rx_slot = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800892
893 out:
894 return rc;
895}
896
897EXPORT_SYMBOL_GPL(rio_hw_add_inb_buffer);
898
899/**
900 * rio_hw_get_inb_message - Fetch inbound message from the MPC85xx message unit
901 * @mport: Master port implementing the inbound message unit
902 * @mbox: Inbound mailbox number
903 *
904 * Gets the next available inbound message from the inbound message queue.
905 * A pointer to the message is returned on success or NULL on failure.
906 */
907void *rio_hw_get_inb_message(struct rio_mport *mport, int mbox)
908{
Zhang Weiad1e9382008-04-18 13:33:41 -0700909 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800910 u32 phys_buf, virt_buf;
911 void *buf = NULL;
912 int buf_idx;
913
Zhang Weiad1e9382008-04-18 13:33:41 -0700914 phys_buf = in_be32(&priv->msg_regs->ifqdpar);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800915
916 /* If no more messages, then bail out */
Zhang Weiad1e9382008-04-18 13:33:41 -0700917 if (phys_buf == in_be32(&priv->msg_regs->ifqepar))
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800918 goto out2;
919
Zhang Weiad1e9382008-04-18 13:33:41 -0700920 virt_buf = (u32) priv->msg_rx_ring.virt + (phys_buf
921 - priv->msg_rx_ring.phys);
922 buf_idx = (phys_buf - priv->msg_rx_ring.phys) / RIO_MAX_MSG_SIZE;
923 buf = priv->msg_rx_ring.virt_buffer[buf_idx];
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800924
925 if (!buf) {
926 printk(KERN_ERR
927 "RIO: inbound message copy failed, no buffers\n");
928 goto out1;
929 }
930
931 /* Copy max message size, caller is expected to allocate that big */
932 memcpy(buf, (void *)virt_buf, RIO_MAX_MSG_SIZE);
933
934 /* Clear the available buffer */
Zhang Weiad1e9382008-04-18 13:33:41 -0700935 priv->msg_rx_ring.virt_buffer[buf_idx] = NULL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800936
937 out1:
Zhang Weiad1e9382008-04-18 13:33:41 -0700938 setbits32(&priv->msg_regs->imr, RIO_MSG_IMR_MI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800939
940 out2:
941 return buf;
942}
943
944EXPORT_SYMBOL_GPL(rio_hw_get_inb_message);
945
946/**
Zhang Weid02443a2008-04-18 13:33:38 -0700947 * fsl_rio_dbell_handler - MPC85xx doorbell interrupt handler
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800948 * @irq: Linux interrupt number
949 * @dev_instance: Pointer to interrupt-specific data
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800950 *
951 * Handles doorbell interrupts. Parses a list of registered
952 * doorbell event handlers and executes a matching event handler.
953 */
954static irqreturn_t
Zhang Weid02443a2008-04-18 13:33:38 -0700955fsl_rio_dbell_handler(int irq, void *dev_instance)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800956{
957 int dsr;
958 struct rio_mport *port = (struct rio_mport *)dev_instance;
Zhang Weiad1e9382008-04-18 13:33:41 -0700959 struct rio_priv *priv = port->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800960
Zhang Weiad1e9382008-04-18 13:33:41 -0700961 dsr = in_be32(&priv->msg_regs->dsr);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800962
963 if (dsr & DOORBELL_DSR_TE) {
964 pr_info("RIO: doorbell reception error\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700965 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_TE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800966 goto out;
967 }
968
969 if (dsr & DOORBELL_DSR_QFI) {
970 pr_info("RIO: doorbell queue full\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700971 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_QFI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800972 goto out;
973 }
974
975 /* XXX Need to check/dispatch until queue empty */
976 if (dsr & DOORBELL_DSR_DIQI) {
977 u32 dmsg =
Zhang Weiad1e9382008-04-18 13:33:41 -0700978 (u32) priv->dbell_ring.virt +
979 (in_be32(&priv->msg_regs->dqdpar) & 0xfff);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800980 struct rio_dbell *dbell;
981 int found = 0;
982
983 pr_debug
984 ("RIO: processing doorbell, sid %2.2x tid %2.2x info %4.4x\n",
985 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
986
987 list_for_each_entry(dbell, &port->dbells, node) {
988 if ((dbell->res->start <= DBELL_INF(dmsg)) &&
989 (dbell->res->end >= DBELL_INF(dmsg))) {
990 found = 1;
991 break;
992 }
993 }
994 if (found) {
Matt Porter6978bbc2005-11-07 01:00:20 -0800995 dbell->dinb(port, dbell->dev_id, DBELL_SID(dmsg), DBELL_TID(dmsg),
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800996 DBELL_INF(dmsg));
997 } else {
998 pr_debug
999 ("RIO: spurious doorbell, sid %2.2x tid %2.2x info %4.4x\n",
1000 DBELL_SID(dmsg), DBELL_TID(dmsg), DBELL_INF(dmsg));
1001 }
Zhang Weiad1e9382008-04-18 13:33:41 -07001002 setbits32(&priv->msg_regs->dmr, DOORBELL_DMR_DI);
1003 out_be32(&priv->msg_regs->dsr, DOORBELL_DSR_DIQI);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001004 }
1005
1006 out:
1007 return IRQ_HANDLED;
1008}
1009
1010/**
Zhang Weid02443a2008-04-18 13:33:38 -07001011 * fsl_rio_doorbell_init - MPC85xx doorbell interface init
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001012 * @mport: Master port implementing the inbound doorbell unit
1013 *
1014 * Initializes doorbell unit hardware and inbound DMA buffer
Zhang Weid02443a2008-04-18 13:33:38 -07001015 * ring. Called from fsl_rio_setup(). Returns %0 on success
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001016 * or %-ENOMEM on failure.
1017 */
Zhang Weid02443a2008-04-18 13:33:38 -07001018static int fsl_rio_doorbell_init(struct rio_mport *mport)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001019{
Zhang Weiad1e9382008-04-18 13:33:41 -07001020 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001021 int rc = 0;
1022
1023 /* Map outbound doorbell window immediately after maintenance window */
Zhang Weiad1e9382008-04-18 13:33:41 -07001024 priv->dbell_win = ioremap(mport->iores.start + RIO_MAINT_WIN_SIZE,
1025 RIO_DBELL_WIN_SIZE);
1026 if (!priv->dbell_win) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001027 printk(KERN_ERR
1028 "RIO: unable to map outbound doorbell window\n");
1029 rc = -ENOMEM;
1030 goto out;
1031 }
1032
1033 /* Initialize inbound doorbells */
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001034 priv->dbell_ring.virt = dma_alloc_coherent(priv->dev, 512 *
Zhang Weiad1e9382008-04-18 13:33:41 -07001035 DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL);
1036 if (!priv->dbell_ring.virt) {
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001037 printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n");
1038 rc = -ENOMEM;
Zhang Weiad1e9382008-04-18 13:33:41 -07001039 iounmap(priv->dbell_win);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001040 goto out;
1041 }
1042
1043 /* Point dequeue/enqueue pointers at first entry in ring */
Zhang Weiad1e9382008-04-18 13:33:41 -07001044 out_be32(&priv->msg_regs->dqdpar, (u32) priv->dbell_ring.phys);
1045 out_be32(&priv->msg_regs->dqepar, (u32) priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001046
1047 /* Clear interrupt status */
Zhang Weiad1e9382008-04-18 13:33:41 -07001048 out_be32(&priv->msg_regs->dsr, 0x00000091);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001049
1050 /* Hook up doorbell handler */
Zhang Weiad1e9382008-04-18 13:33:41 -07001051 rc = request_irq(IRQ_RIO_BELL(mport), fsl_rio_dbell_handler, 0,
1052 "dbell_rx", (void *)mport);
1053 if (rc < 0) {
1054 iounmap(priv->dbell_win);
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001055 dma_free_coherent(priv->dev, 512 * DOORBELL_MESSAGE_SIZE,
Zhang Weiad1e9382008-04-18 13:33:41 -07001056 priv->dbell_ring.virt, priv->dbell_ring.phys);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001057 printk(KERN_ERR
1058 "MPC85xx RIO: unable to request inbound doorbell irq");
1059 goto out;
1060 }
1061
1062 /* Configure doorbells for snooping, 512 entries, and enable */
Zhang Weiad1e9382008-04-18 13:33:41 -07001063 out_be32(&priv->msg_regs->dmr, 0x00108161);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001064
1065 out:
1066 return rc;
1067}
1068
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001069/**
1070 * fsl_rio_port_write_handler - MPC85xx port write interrupt handler
1071 * @irq: Linux interrupt number
1072 * @dev_instance: Pointer to interrupt-specific data
1073 *
1074 * Handles port write interrupts. Parses a list of registered
1075 * port write event handlers and executes a matching event handler.
1076 */
1077static irqreturn_t
1078fsl_rio_port_write_handler(int irq, void *dev_instance)
1079{
1080 u32 ipwmr, ipwsr;
1081 struct rio_mport *port = (struct rio_mport *)dev_instance;
1082 struct rio_priv *priv = port->priv;
1083 u32 epwisr, tmp;
1084
1085 ipwmr = in_be32(&priv->msg_regs->pwmr);
1086 ipwsr = in_be32(&priv->msg_regs->pwsr);
1087
1088 epwisr = in_be32(priv->regs_win + RIO_EPWISR);
1089 if (epwisr & 0x80000000) {
1090 tmp = in_be32(priv->regs_win + RIO_LTLEDCSR);
1091 pr_info("RIO_LTLEDCSR = 0x%x\n", tmp);
1092 out_be32(priv->regs_win + RIO_LTLEDCSR, 0);
1093 }
1094
1095 if (!(epwisr & 0x00000001))
1096 return IRQ_HANDLED;
1097
1098#ifdef DEBUG_PW
1099 pr_debug("PW Int->IPWMR: 0x%08x IPWSR: 0x%08x (", ipwmr, ipwsr);
1100 if (ipwsr & RIO_IPWSR_QF)
1101 pr_debug(" QF");
1102 if (ipwsr & RIO_IPWSR_TE)
1103 pr_debug(" TE");
1104 if (ipwsr & RIO_IPWSR_QFI)
1105 pr_debug(" QFI");
1106 if (ipwsr & RIO_IPWSR_PWD)
1107 pr_debug(" PWD");
1108 if (ipwsr & RIO_IPWSR_PWB)
1109 pr_debug(" PWB");
1110 pr_debug(" )\n");
1111#endif
1112 out_be32(&priv->msg_regs->pwsr,
1113 ipwsr & (RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD));
1114
1115 if ((ipwmr & RIO_IPWMR_EIE) && (ipwsr & RIO_IPWSR_TE)) {
1116 priv->port_write_msg.err_count++;
1117 pr_info("RIO: Port-Write Transaction Err (%d)\n",
1118 priv->port_write_msg.err_count);
1119 }
1120 if (ipwsr & RIO_IPWSR_PWD) {
1121 priv->port_write_msg.discard_count++;
1122 pr_info("RIO: Port Discarded Port-Write Msg(s) (%d)\n",
1123 priv->port_write_msg.discard_count);
1124 }
1125
1126 /* Schedule deferred processing if PW was received */
1127 if (ipwsr & RIO_IPWSR_QFI) {
1128 /* Save PW message (if there is room in FIFO),
1129 * otherwise discard it.
1130 */
1131 if (kfifo_avail(&priv->pw_fifo) >= RIO_PW_MSG_SIZE) {
1132 priv->port_write_msg.msg_count++;
1133 kfifo_in(&priv->pw_fifo, priv->port_write_msg.virt,
1134 RIO_PW_MSG_SIZE);
1135 } else {
1136 priv->port_write_msg.discard_count++;
1137 pr_info("RIO: ISR Discarded Port-Write Msg(s) (%d)\n",
1138 priv->port_write_msg.discard_count);
1139 }
1140 schedule_work(&priv->pw_work);
1141 }
1142
1143 /* Issue Clear Queue command. This allows another
1144 * port-write to be received.
1145 */
1146 out_be32(&priv->msg_regs->pwmr, ipwmr | RIO_IPWMR_CQ);
1147
1148 return IRQ_HANDLED;
1149}
1150
1151static void fsl_pw_dpc(struct work_struct *work)
1152{
1153 struct rio_priv *priv = container_of(work, struct rio_priv, pw_work);
1154 unsigned long flags;
1155 u32 msg_buffer[RIO_PW_MSG_SIZE/sizeof(u32)];
1156
1157 /*
1158 * Process port-write messages
1159 */
1160 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1161 while (kfifo_out(&priv->pw_fifo, (unsigned char *)msg_buffer,
1162 RIO_PW_MSG_SIZE)) {
1163 /* Process one message */
1164 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1165#ifdef DEBUG_PW
1166 {
1167 u32 i;
1168 pr_debug("%s : Port-Write Message:", __func__);
1169 for (i = 0; i < RIO_PW_MSG_SIZE/sizeof(u32); i++) {
1170 if ((i%4) == 0)
1171 pr_debug("\n0x%02x: 0x%08x", i*4,
1172 msg_buffer[i]);
1173 else
1174 pr_debug(" 0x%08x", msg_buffer[i]);
1175 }
1176 pr_debug("\n");
1177 }
1178#endif
1179 /* Pass the port-write message to RIO core for processing */
1180 rio_inb_pwrite_handler((union rio_pw_msg *)msg_buffer);
1181 spin_lock_irqsave(&priv->pw_fifo_lock, flags);
1182 }
1183 spin_unlock_irqrestore(&priv->pw_fifo_lock, flags);
1184}
1185
1186/**
1187 * fsl_rio_pw_enable - enable/disable port-write interface init
1188 * @mport: Master port implementing the port write unit
1189 * @enable: 1=enable; 0=disable port-write message handling
1190 */
1191static int fsl_rio_pw_enable(struct rio_mport *mport, int enable)
1192{
1193 struct rio_priv *priv = mport->priv;
1194 u32 rval;
1195
1196 rval = in_be32(&priv->msg_regs->pwmr);
1197
1198 if (enable)
1199 rval |= RIO_IPWMR_PWE;
1200 else
1201 rval &= ~RIO_IPWMR_PWE;
1202
1203 out_be32(&priv->msg_regs->pwmr, rval);
1204
1205 return 0;
1206}
1207
1208/**
1209 * fsl_rio_port_write_init - MPC85xx port write interface init
1210 * @mport: Master port implementing the port write unit
1211 *
1212 * Initializes port write unit hardware and DMA buffer
1213 * ring. Called from fsl_rio_setup(). Returns %0 on success
1214 * or %-ENOMEM on failure.
1215 */
1216static int fsl_rio_port_write_init(struct rio_mport *mport)
1217{
1218 struct rio_priv *priv = mport->priv;
1219 int rc = 0;
1220
1221 /* Following configurations require a disabled port write controller */
1222 out_be32(&priv->msg_regs->pwmr,
1223 in_be32(&priv->msg_regs->pwmr) & ~RIO_IPWMR_PWE);
1224
1225 /* Initialize port write */
1226 priv->port_write_msg.virt = dma_alloc_coherent(priv->dev,
1227 RIO_PW_MSG_SIZE,
1228 &priv->port_write_msg.phys, GFP_KERNEL);
1229 if (!priv->port_write_msg.virt) {
1230 pr_err("RIO: unable allocate port write queue\n");
1231 return -ENOMEM;
1232 }
1233
1234 priv->port_write_msg.err_count = 0;
1235 priv->port_write_msg.discard_count = 0;
1236
1237 /* Point dequeue/enqueue pointers at first entry */
1238 out_be32(&priv->msg_regs->epwqbar, 0);
1239 out_be32(&priv->msg_regs->pwqbar, (u32) priv->port_write_msg.phys);
1240
1241 pr_debug("EIPWQBAR: 0x%08x IPWQBAR: 0x%08x\n",
1242 in_be32(&priv->msg_regs->epwqbar),
1243 in_be32(&priv->msg_regs->pwqbar));
1244
1245 /* Clear interrupt status IPWSR */
1246 out_be32(&priv->msg_regs->pwsr,
1247 (RIO_IPWSR_TE | RIO_IPWSR_QFI | RIO_IPWSR_PWD));
1248
1249 /* Configure port write contoller for snooping enable all reporting,
1250 clear queue full */
1251 out_be32(&priv->msg_regs->pwmr,
1252 RIO_IPWMR_SEN | RIO_IPWMR_QFIE | RIO_IPWMR_EIE | RIO_IPWMR_CQ);
1253
1254
1255 /* Hook up port-write handler */
1256 rc = request_irq(IRQ_RIO_PW(mport), fsl_rio_port_write_handler, 0,
1257 "port-write", (void *)mport);
1258 if (rc < 0) {
1259 pr_err("MPC85xx RIO: unable to request inbound doorbell irq");
1260 goto err_out;
1261 }
1262
1263 INIT_WORK(&priv->pw_work, fsl_pw_dpc);
1264 spin_lock_init(&priv->pw_fifo_lock);
1265 if (kfifo_alloc(&priv->pw_fifo, RIO_PW_MSG_SIZE * 32, GFP_KERNEL)) {
1266 pr_err("FIFO allocation failed\n");
1267 rc = -ENOMEM;
1268 goto err_out_irq;
1269 }
1270
1271 pr_debug("IPWMR: 0x%08x IPWSR: 0x%08x\n",
1272 in_be32(&priv->msg_regs->pwmr),
1273 in_be32(&priv->msg_regs->pwsr));
1274
1275 return rc;
1276
1277err_out_irq:
1278 free_irq(IRQ_RIO_PW(mport), (void *)mport);
1279err_out:
1280 dma_free_coherent(priv->dev, RIO_PW_MSG_SIZE,
1281 priv->port_write_msg.virt,
1282 priv->port_write_msg.phys);
1283 return rc;
1284}
1285
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001286static char *cmdline = NULL;
1287
Zhang Weid02443a2008-04-18 13:33:38 -07001288static int fsl_rio_get_hdid(int index)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001289{
1290 /* XXX Need to parse multiple entries in some format */
1291 if (!cmdline)
1292 return -1;
1293
1294 return simple_strtol(cmdline, NULL, 0);
1295}
1296
Zhang Weid02443a2008-04-18 13:33:38 -07001297static int fsl_rio_get_cmdline(char *s)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001298{
1299 if (!s)
1300 return 0;
1301
1302 cmdline = s;
1303 return 1;
1304}
1305
Zhang Weid02443a2008-04-18 13:33:38 -07001306__setup("riohdid=", fsl_rio_get_cmdline);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001307
Zhang Wei7f620df2008-04-18 13:33:44 -07001308static inline void fsl_rio_info(struct device *dev, u32 ccsr)
1309{
1310 const char *str;
1311 if (ccsr & 1) {
1312 /* Serial phy */
1313 switch (ccsr >> 30) {
1314 case 0:
1315 str = "1";
1316 break;
1317 case 1:
1318 str = "4";
1319 break;
1320 default:
1321 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +00001322 break;
Zhang Wei7f620df2008-04-18 13:33:44 -07001323 }
1324 dev_info(dev, "Hardware port width: %s\n", str);
1325
1326 switch ((ccsr >> 27) & 7) {
1327 case 0:
1328 str = "Single-lane 0";
1329 break;
1330 case 1:
1331 str = "Single-lane 2";
1332 break;
1333 case 2:
1334 str = "Four-lane";
1335 break;
1336 default:
1337 str = "Unknown";
1338 break;
1339 }
1340 dev_info(dev, "Training connection status: %s\n", str);
1341 } else {
1342 /* Parallel phy */
1343 if (!(ccsr & 0x80000000))
1344 dev_info(dev, "Output port operating in 8-bit mode\n");
1345 if (!(ccsr & 0x08000000))
1346 dev_info(dev, "Input port operating in 8-bit mode\n");
1347 }
1348}
1349
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001350/**
Randy Dunlap9941d942008-04-30 16:45:58 -07001351 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -06001352 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001353 *
1354 * Initializes MPC85xx RapidIO hardware interface, configures
1355 * master port with system-specific info, and registers the
1356 * master port with the RapidIO subsystem.
1357 */
Grant Likelya454dc52010-07-22 15:52:34 -06001358int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001359{
1360 struct rio_ops *ops;
1361 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -07001362 struct rio_priv *priv;
1363 int rc = 0;
1364 const u32 *dt_range, *cell;
1365 struct resource regs;
1366 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -07001367 u32 ccsr;
Zhang Weicc2bb692008-04-18 13:33:41 -07001368 u64 law_start, law_size;
1369 int paw, aw, sw;
1370
Grant Likely61c7a082010-04-13 16:12:29 -07001371 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -07001372 dev_err(&dev->dev, "Device OF-Node is NULL");
1373 return -EFAULT;
1374 }
1375
Grant Likely61c7a082010-04-13 16:12:29 -07001376 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001377 if (rc) {
1378 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001379 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001380 return -EFAULT;
1381 }
Grant Likely61c7a082010-04-13 16:12:29 -07001382 dev_info(&dev->dev, "Of-device full name %s\n", dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -05001383 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -07001384
Grant Likely61c7a082010-04-13 16:12:29 -07001385 dt_range = of_get_property(dev->dev.of_node, "ranges", &rlen);
Zhang Weicc2bb692008-04-18 13:33:41 -07001386 if (!dt_range) {
1387 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001388 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001389 return -EFAULT;
1390 }
1391
1392 /* Get node address wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001393 cell = of_get_property(dev->dev.of_node, "#address-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001394 if (cell)
1395 aw = *cell;
1396 else
Grant Likely61c7a082010-04-13 16:12:29 -07001397 aw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001398 /* Get node size wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001399 cell = of_get_property(dev->dev.of_node, "#size-cells", NULL);
Zhang Weicc2bb692008-04-18 13:33:41 -07001400 if (cell)
1401 sw = *cell;
1402 else
Grant Likely61c7a082010-04-13 16:12:29 -07001403 sw = of_n_size_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001404 /* Get parent address wide wide */
Grant Likely61c7a082010-04-13 16:12:29 -07001405 paw = of_n_addr_cells(dev->dev.of_node);
Zhang Weicc2bb692008-04-18 13:33:41 -07001406
1407 law_start = of_read_number(dt_range + aw, paw);
1408 law_size = of_read_number(dt_range + aw + paw, sw);
1409
1410 dev_info(&dev->dev, "LAW start 0x%016llx, size 0x%016llx.\n",
1411 law_start, law_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001412
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -07001413 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001414 if (!ops) {
1415 rc = -ENOMEM;
1416 goto err_ops;
1417 }
Zhang Weid02443a2008-04-18 13:33:38 -07001418 ops->lcread = fsl_local_config_read;
1419 ops->lcwrite = fsl_local_config_write;
1420 ops->cread = fsl_rio_config_read;
1421 ops->cwrite = fsl_rio_config_write;
1422 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001423 ops->pwenable = fsl_rio_pw_enable;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001424
Zhang Weiad1e9382008-04-18 13:33:41 -07001425 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +02001426 if (!port) {
1427 rc = -ENOMEM;
1428 goto err_port;
1429 }
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001430 port->id = 0;
1431 port->index = 0;
Zhang Weiad1e9382008-04-18 13:33:41 -07001432
1433 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
1434 if (!priv) {
1435 printk(KERN_ERR "Can't alloc memory for 'priv'\n");
1436 rc = -ENOMEM;
Julia Lawall6c759332009-08-07 09:00:34 +02001437 goto err_priv;
Zhang Weiad1e9382008-04-18 13:33:41 -07001438 }
1439
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001440 INIT_LIST_HEAD(&port->dbells);
1441 port->iores.start = law_start;
Li Yang186e74b2009-05-12 16:35:59 +08001442 port->iores.end = law_start + law_size - 1;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001443 port->iores.flags = IORESOURCE_MEM;
Li Yang186e74b2009-05-12 16:35:59 +08001444 port->iores.name = "rio_io_win";
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001445
Alexandre Bounine45fdf002010-05-28 13:56:17 -04001446 priv->pwirq = irq_of_parse_and_map(dev->dev.of_node, 0);
Grant Likely61c7a082010-04-13 16:12:29 -07001447 priv->bellirq = irq_of_parse_and_map(dev->dev.of_node, 2);
1448 priv->txirq = irq_of_parse_and_map(dev->dev.of_node, 3);
1449 priv->rxirq = irq_of_parse_and_map(dev->dev.of_node, 4);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001450 dev_info(&dev->dev, "pwirq: %d, bellirq: %d, txirq: %d, rxirq %d\n",
1451 priv->pwirq, priv->bellirq, priv->txirq, priv->rxirq);
Zhang Weicc2bb692008-04-18 13:33:41 -07001452
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001453 rio_init_dbell_res(&port->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
1454 rio_init_mbox_res(&port->riores[RIO_INB_MBOX_RESOURCE], 0, 0);
1455 rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0);
1456 strcpy(port->name, "RIO0 mport");
1457
Anton Vorontsov0dbbbf12009-04-18 21:48:52 +04001458 priv->dev = &dev->dev;
1459
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001460 port->ops = ops;
Zhang Weid02443a2008-04-18 13:33:38 -07001461 port->host_deviceid = fsl_rio_get_hdid(port->id);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001462
Zhang Weiad1e9382008-04-18 13:33:41 -07001463 port->priv = priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001464 rio_register_mport(port);
1465
Zhang Weicc2bb692008-04-18 13:33:41 -07001466 priv->regs_win = ioremap(regs.start, regs.end - regs.start + 1);
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001467 rio_regs_win = priv->regs_win;
Zhang Weie0423232008-04-18 13:33:42 -07001468
Zhang Wei61b26912008-04-18 13:33:44 -07001469 /* Probe the master port phy type */
1470 ccsr = in_be32(priv->regs_win + RIO_CCSR);
1471 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
1472 dev_info(&dev->dev, "RapidIO PHY type: %s\n",
1473 (port->phy_type == RIO_PHY_PARALLEL) ? "parallel" :
1474 ((port->phy_type == RIO_PHY_SERIAL) ? "serial" :
1475 "unknown"));
Zhang Wei7f620df2008-04-18 13:33:44 -07001476 /* Checking the port training status */
1477 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1478 dev_err(&dev->dev, "Port is not ready. "
1479 "Try to restart connection...\n");
1480 switch (port->phy_type) {
1481 case RIO_PHY_SERIAL:
1482 /* Disable ports */
1483 out_be32(priv->regs_win + RIO_CCSR, 0);
1484 /* Set 1x lane */
1485 setbits32(priv->regs_win + RIO_CCSR, 0x02000000);
1486 /* Enable ports */
1487 setbits32(priv->regs_win + RIO_CCSR, 0x00600000);
1488 break;
1489 case RIO_PHY_PARALLEL:
1490 /* Disable ports */
1491 out_be32(priv->regs_win + RIO_CCSR, 0x22000000);
1492 /* Enable ports */
1493 out_be32(priv->regs_win + RIO_CCSR, 0x44000000);
1494 break;
1495 }
1496 msleep(100);
1497 if (in_be32((priv->regs_win + RIO_ESCSR)) & 1) {
1498 dev_err(&dev->dev, "Port restart failed.\n");
1499 rc = -ENOLINK;
1500 goto err;
1501 }
1502 dev_info(&dev->dev, "Port restart success!\n");
1503 }
1504 fsl_rio_info(&dev->dev, ccsr);
Zhang Wei61b26912008-04-18 13:33:44 -07001505
Zhang Weie0423232008-04-18 13:33:42 -07001506 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
1507 & RIO_PEF_CTLS) >> 4;
1508 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
1509 port->sys_size ? 65536 : 256);
1510
Zhang Weiad1e9382008-04-18 13:33:41 -07001511 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
1512 + RIO_ATMU_REGS_OFFSET);
1513 priv->maint_atmu_regs = priv->atmu_regs + 1;
1514 priv->dbell_atmu_regs = priv->atmu_regs + 2;
Zhang Wei61b26912008-04-18 13:33:44 -07001515 priv->msg_regs = (struct rio_msg_regs *)(priv->regs_win +
1516 ((port->phy_type == RIO_PHY_SERIAL) ?
1517 RIO_S_MSG_REGS_OFFSET : RIO_P_MSG_REGS_OFFSET));
1518
1519 /* Set to receive any dist ID for serial RapidIO controller. */
1520 if (port->phy_type == RIO_PHY_SERIAL)
1521 out_be32((priv->regs_win + RIO_ISR_AACR), RIO_ISR_AACR_AA);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001522
1523 /* Configure maintenance transaction window */
Li Yang186e74b2009-05-12 16:35:59 +08001524 out_be32(&priv->maint_atmu_regs->rowbar, law_start >> 12);
Thomas Mollbd4fb652010-05-26 14:44:05 -07001525 out_be32(&priv->maint_atmu_regs->rowar,
1526 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001527
Zhang Weiad1e9382008-04-18 13:33:41 -07001528 priv->maint_win = ioremap(law_start, RIO_MAINT_WIN_SIZE);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001529
1530 /* Configure outbound doorbell window */
Li Yang186e74b2009-05-12 16:35:59 +08001531 out_be32(&priv->dbell_atmu_regs->rowbar,
1532 (law_start + RIO_MAINT_WIN_SIZE) >> 12);
1533 out_be32(&priv->dbell_atmu_regs->rowar, 0x8004200b); /* 4k */
Zhang Weid02443a2008-04-18 13:33:38 -07001534 fsl_rio_doorbell_init(port);
Alexandre Bounine5b2074a2010-05-26 14:44:00 -07001535 fsl_rio_port_write_init(port);
Zhang Weiad1e9382008-04-18 13:33:41 -07001536
Li Yangff33f182010-06-18 14:24:20 +08001537#ifdef CONFIG_E500
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001538 saved_mcheck_exception = ppc_md.machine_check_exception;
1539 ppc_md.machine_check_exception = fsl_rio_mcheck_exception;
Li Yangff33f182010-06-18 14:24:20 +08001540#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -07001541 /* Ensure that RFXE is set */
1542 mtspr(SPRN_HID1, (mfspr(SPRN_HID1) | 0x20000));
1543
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);
Zhang Weiad1e9382008-04-18 13:33:41 -07001547 kfree(priv);
Julia Lawall6c759332009-08-07 09:00:34 +02001548err_priv:
Zhang Weiad1e9382008-04-18 13:33:41 -07001549 kfree(port);
Julia Lawall6c759332009-08-07 09:00:34 +02001550err_port:
1551 kfree(ops);
1552err_ops:
Zhang Weicc2bb692008-04-18 13:33:41 -07001553 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -08001554}
Zhang Weicc2bb692008-04-18 13:33:41 -07001555
1556/* The probe function for RapidIO peer-to-peer network.
1557 */
Grant Likelya454dc52010-07-22 15:52:34 -06001558static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev,
Zhang Weicc2bb692008-04-18 13:33:41 -07001559 const struct of_device_id *match)
1560{
1561 int rc;
1562 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -07001563 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -07001564
1565 rc = fsl_rio_setup(dev);
1566 if (rc)
1567 goto out;
1568
1569 /* Enumerate all registered ports */
1570 rc = rio_init_mports();
1571out:
1572 return rc;
1573};
1574
1575static const struct of_device_id fsl_of_rio_rpn_ids[] = {
1576 {
1577 .compatible = "fsl,rapidio-delta",
1578 },
1579 {},
1580};
1581
1582static struct of_platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001583 .driver = {
1584 .name = "fsl-of-rio",
1585 .owner = THIS_MODULE,
1586 .of_match_table = fsl_of_rio_rpn_ids,
1587 },
Zhang Weicc2bb692008-04-18 13:33:41 -07001588 .probe = fsl_of_rio_rpn_probe,
1589};
1590
1591static __init int fsl_of_rio_rpn_init(void)
1592{
1593 return of_register_platform_driver(&fsl_of_rio_rpn_driver);
1594}
1595
1596subsys_initcall(fsl_of_rio_rpn_init);