blob: c04b718307c89837efe57b1df82c97e204e3cde0 [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 *
Liu Gang6ec4bed2011-11-12 20:02:28 +080013 * Copyright (C) 2007, 2008, 2010, 2011 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>
Rob Herring26a20562013-09-26 07:40:04 -050031#include <linux/of_address.h>
32#include <linux/of_irq.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>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080036
Liu Gang6ec4bed2011-11-12 20:02:28 +080037#include <linux/io.h>
38#include <linux/uaccess.h>
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070039#include <asm/machdep.h>
Liu Gang6ec4bed2011-11-12 20:02:28 +080040
41#include "fsl_rio.h"
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080042
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070043#undef DEBUG_PW /* Port-Write debugging */
44
Shaohui Xie6ff31452010-11-18 14:57:53 +080045#define RIO_PORT1_EDCSR 0x0640
46#define RIO_PORT2_EDCSR 0x0680
47#define RIO_PORT1_IECSR 0x10130
48#define RIO_PORT2_IECSR 0x101B0
Shaohui Xie6ff31452010-11-18 14:57:53 +080049
Alexandre Bounineaf84ca32010-10-27 15:34:34 -070050#define RIO_GCCSR 0x13c
Zhang Wei61b26912008-04-18 13:33:44 -070051#define RIO_ESCSR 0x158
Liu Gang6ec4bed2011-11-12 20:02:28 +080052#define ESCSR_CLEAR 0x07120204
Shaohui Xie6ff31452010-11-18 14:57:53 +080053#define RIO_PORT2_ESCSR 0x178
Zhang Wei61b26912008-04-18 13:33:44 -070054#define RIO_CCSR 0x15c
Shaohui Xie6ff31452010-11-18 14:57:53 +080055#define RIO_LTLEDCSR_IER 0x80000000
56#define RIO_LTLEDCSR_PRT 0x01000000
Liu Gang6ec4bed2011-11-12 20:02:28 +080057#define IECSR_CLEAR 0x80000000
Zhang Wei61b26912008-04-18 13:33:44 -070058#define RIO_ISR_AACR 0x10120
59#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080060
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070061#define __fsl_read_rio_config(x, addr, err, op) \
62 __asm__ __volatile__( \
63 "1: "op" %1,0(%2)\n" \
64 " eieio\n" \
65 "2:\n" \
66 ".section .fixup,\"ax\"\n" \
67 "3: li %1,-1\n" \
68 " li %0,%3\n" \
69 " b 2b\n" \
70 ".section __ex_table,\"a\"\n" \
Liu Gangb6c46dc2012-03-06 10:58:12 +080071 PPC_LONG_ALIGN "\n" \
72 PPC_LONG "1b,3b\n" \
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070073 ".text" \
74 : "=r" (err), "=r" (x) \
75 : "b" (addr), "i" (-EFAULT), "0" (err))
76
Liu Gang6ec4bed2011-11-12 20:02:28 +080077void __iomem *rio_regs_win;
Liu Gangabc3aea2011-11-12 20:02:29 +080078void __iomem *rmu_regs_win;
79resource_size_t rio_law_start;
80
81struct fsl_rio_dbell *dbell;
82struct fsl_rio_pw *pw;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070083
Li Yangff33f182010-06-18 14:24:20 +080084#ifdef CONFIG_E500
Shaohui Xiecce1f102010-11-18 14:57:32 +080085int fsl_rio_mcheck_exception(struct pt_regs *regs)
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070086{
Scott Wood82a9a482011-06-16 14:09:17 -050087 const struct exception_table_entry *entry;
88 unsigned long reason;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070089
Scott Wood82a9a482011-06-16 14:09:17 -050090 if (!rio_regs_win)
91 return 0;
92
93 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
94 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
95 /* Check if we are prepared to handle this fault */
96 entry = search_exception_tables(regs->nip);
97 if (entry) {
98 pr_debug("RIO: %s - MC Exception handled\n",
99 __func__);
100 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
101 0);
102 regs->msr |= MSR_RI;
103 regs->nip = entry->fixup;
104 return 1;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700105 }
106 }
107
Shaohui Xiecce1f102010-11-18 14:57:32 +0800108 return 0;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700109}
Shaohui Xiecce1f102010-11-18 14:57:32 +0800110EXPORT_SYMBOL_GPL(fsl_rio_mcheck_exception);
Li Yangff33f182010-06-18 14:24:20 +0800111#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700112
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800113/**
Zhang Weid02443a2008-04-18 13:33:38 -0700114 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700115 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800116 * @index: ID of RapdiIO interface
117 * @offset: Offset into configuration space
118 * @len: Length (in bytes) of the maintenance transaction
119 * @data: Value to be read into
120 *
121 * Generates a MPC85xx local configuration space read. Returns %0 on
122 * success or %-EINVAL on failure.
123 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700124static int fsl_local_config_read(struct rio_mport *mport,
125 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800126{
Zhang Weiad1e9382008-04-18 13:33:41 -0700127 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700128 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Liu Gangabc3aea2011-11-12 20:02:29 +0800129 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700130 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800131
132 return 0;
133}
134
135/**
Zhang Weid02443a2008-04-18 13:33:38 -0700136 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700137 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800138 * @index: ID of RapdiIO interface
139 * @offset: Offset into configuration space
140 * @len: Length (in bytes) of the maintenance transaction
141 * @data: Value to be written
142 *
143 * Generates a MPC85xx local configuration space write. Returns %0 on
144 * success or %-EINVAL on failure.
145 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700146static int fsl_local_config_write(struct rio_mport *mport,
147 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800148{
Zhang Weiad1e9382008-04-18 13:33:41 -0700149 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800150 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800151 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
152 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700153 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800154
155 return 0;
156}
157
158/**
Zhang Weid02443a2008-04-18 13:33:38 -0700159 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700160 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800161 * @index: ID of RapdiIO interface
162 * @destid: Destination ID of transaction
163 * @hopcount: Number of hops to target device
164 * @offset: Offset into configuration space
165 * @len: Length (in bytes) of the maintenance transaction
166 * @val: Location to be read into
167 *
168 * Generates a MPC85xx read maintenance transaction. Returns %0 on
169 * success or %-EINVAL on failure.
170 */
171static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700172fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
173 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800174{
Zhang Weiad1e9382008-04-18 13:33:41 -0700175 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800176 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700177 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800178
179 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800180 ("fsl_rio_config_read:"
181 " index %d destid %d hopcount %d offset %8.8x len %d\n",
Liu Gangabc3aea2011-11-12 20:02:29 +0800182 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800183
Thomas Mollbd4fb652010-05-26 14:44:05 -0700184 /* 16MB maintenance window possible */
185 /* allow only aligned access to maintenance registers */
186 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
187 return -EINVAL;
188
189 out_be32(&priv->maint_atmu_regs->rowtar,
190 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800191 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700192
193 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800194 switch (len) {
195 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700196 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800197 break;
198 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700199 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800200 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700201 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700202 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800203 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700204 default:
205 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800206 }
207
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700208 if (err) {
209 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
210 err, destid, hopcount, offset);
211 }
212
213 *val = rval;
214
215 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800216}
217
218/**
Zhang Weid02443a2008-04-18 13:33:38 -0700219 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700220 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800221 * @index: ID of RapdiIO interface
222 * @destid: Destination ID of transaction
223 * @hopcount: Number of hops to target device
224 * @offset: Offset into configuration space
225 * @len: Length (in bytes) of the maintenance transaction
226 * @val: Value to be written
227 *
228 * Generates an MPC85xx write maintenance transaction. Returns %0 on
229 * success or %-EINVAL on failure.
230 */
231static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700232fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
233 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800234{
Zhang Weiad1e9382008-04-18 13:33:41 -0700235 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800236 u8 *data;
237 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800238 ("fsl_rio_config_write:"
Liu Gangabc3aea2011-11-12 20:02:29 +0800239 " index %d destid %d hopcount %d offset %8.8x len %d val %8.8x\n",
240 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800241
Thomas Mollbd4fb652010-05-26 14:44:05 -0700242 /* 16MB maintenance windows possible */
243 /* allow only aligned access to maintenance registers */
244 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
245 return -EINVAL;
246
247 out_be32(&priv->maint_atmu_regs->rowtar,
248 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800249 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700250
251 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800252 switch (len) {
253 case 1:
254 out_8((u8 *) data, val);
255 break;
256 case 2:
257 out_be16((u16 *) data, val);
258 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700259 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800260 out_be32((u32 *) data, val);
261 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700262 default:
263 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800264 }
265
266 return 0;
267}
268
Liu Gangabc3aea2011-11-12 20:02:29 +0800269void fsl_rio_port_error_handler(int offset)
Shaohui Xie6ff31452010-11-18 14:57:53 +0800270{
271 /*XXX: Error recovery is not implemented, we just clear errors */
272 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
273
274 if (offset == 0) {
275 out_be32((u32 *)(rio_regs_win + RIO_PORT1_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700276 out_be32((u32 *)(rio_regs_win + RIO_PORT1_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800277 out_be32((u32 *)(rio_regs_win + RIO_ESCSR), ESCSR_CLEAR);
278 } else {
279 out_be32((u32 *)(rio_regs_win + RIO_PORT2_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700280 out_be32((u32 *)(rio_regs_win + RIO_PORT2_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800281 out_be32((u32 *)(rio_regs_win + RIO_PORT2_ESCSR), ESCSR_CLEAR);
282 }
283}
Zhang Wei7f620df2008-04-18 13:33:44 -0700284static inline void fsl_rio_info(struct device *dev, u32 ccsr)
285{
286 const char *str;
287 if (ccsr & 1) {
288 /* Serial phy */
289 switch (ccsr >> 30) {
290 case 0:
291 str = "1";
292 break;
293 case 1:
294 str = "4";
295 break;
296 default:
297 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +0000298 break;
Zhang Wei7f620df2008-04-18 13:33:44 -0700299 }
300 dev_info(dev, "Hardware port width: %s\n", str);
301
302 switch ((ccsr >> 27) & 7) {
303 case 0:
304 str = "Single-lane 0";
305 break;
306 case 1:
307 str = "Single-lane 2";
308 break;
309 case 2:
310 str = "Four-lane";
311 break;
312 default:
313 str = "Unknown";
314 break;
315 }
316 dev_info(dev, "Training connection status: %s\n", str);
317 } else {
318 /* Parallel phy */
319 if (!(ccsr & 0x80000000))
320 dev_info(dev, "Output port operating in 8-bit mode\n");
321 if (!(ccsr & 0x08000000))
322 dev_info(dev, "Input port operating in 8-bit mode\n");
323 }
324}
325
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800326/**
Randy Dunlap9941d942008-04-30 16:45:58 -0700327 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -0600328 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800329 *
330 * Initializes MPC85xx RapidIO hardware interface, configures
331 * master port with system-specific info, and registers the
332 * master port with the RapidIO subsystem.
333 */
Grant Likelya454dc52010-07-22 15:52:34 -0600334int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800335{
336 struct rio_ops *ops;
337 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -0700338 struct rio_priv *priv;
339 int rc = 0;
Liu Gangabc3aea2011-11-12 20:02:29 +0800340 const u32 *dt_range, *cell, *port_index;
341 u32 active_ports = 0;
342 struct resource regs, rmu_regs;
343 struct device_node *np, *rmu_node;
Zhang Weicc2bb692008-04-18 13:33:41 -0700344 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -0700345 u32 ccsr;
Liu Gangabc3aea2011-11-12 20:02:29 +0800346 u64 range_start, range_size;
Zhang Weicc2bb692008-04-18 13:33:41 -0700347 int paw, aw, sw;
Liu Gangabc3aea2011-11-12 20:02:29 +0800348 u32 i;
349 static int tmp;
350 struct device_node *rmu_np[MAX_MSG_UNIT_NUM] = {NULL};
Zhang Weicc2bb692008-04-18 13:33:41 -0700351
Grant Likely61c7a082010-04-13 16:12:29 -0700352 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -0700353 dev_err(&dev->dev, "Device OF-Node is NULL");
Liu Gangabc3aea2011-11-12 20:02:29 +0800354 return -ENODEV;
Zhang Weicc2bb692008-04-18 13:33:41 -0700355 }
356
Grant Likely61c7a082010-04-13 16:12:29 -0700357 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700358 if (rc) {
359 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700360 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700361 return -EFAULT;
362 }
Liu Gang6ec4bed2011-11-12 20:02:28 +0800363 dev_info(&dev->dev, "Of-device full name %s\n",
364 dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -0500365 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700366
Liu Gangabc3aea2011-11-12 20:02:29 +0800367 rio_regs_win = ioremap(regs.start, resource_size(&regs));
368 if (!rio_regs_win) {
369 dev_err(&dev->dev, "Unable to map rio register window\n");
370 rc = -ENOMEM;
371 goto err_rio_regs;
Zhang Weicc2bb692008-04-18 13:33:41 -0700372 }
373
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -0700374 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +0200375 if (!ops) {
376 rc = -ENOMEM;
377 goto err_ops;
378 }
Zhang Weid02443a2008-04-18 13:33:38 -0700379 ops->lcread = fsl_local_config_read;
380 ops->lcwrite = fsl_local_config_write;
381 ops->cread = fsl_rio_config_read;
382 ops->cwrite = fsl_rio_config_write;
Liu Gangabc3aea2011-11-12 20:02:29 +0800383 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700384 ops->pwenable = fsl_rio_pw_enable;
Liu Gangabc3aea2011-11-12 20:02:29 +0800385 ops->open_outb_mbox = fsl_open_outb_mbox;
386 ops->open_inb_mbox = fsl_open_inb_mbox;
387 ops->close_outb_mbox = fsl_close_outb_mbox;
388 ops->close_inb_mbox = fsl_close_inb_mbox;
389 ops->add_outb_message = fsl_add_outb_message;
390 ops->add_inb_buffer = fsl_add_inb_buffer;
391 ops->get_inb_message = fsl_get_inb_message;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800392
Liu Gangabc3aea2011-11-12 20:02:29 +0800393 rmu_node = of_parse_phandle(dev->dev.of_node, "fsl,srio-rmu-handle", 0);
Scott Wooda614db92014-04-28 18:20:09 -0500394 if (!rmu_node) {
395 dev_err(&dev->dev, "No valid fsl,srio-rmu-handle property\n");
Liu Gangabc3aea2011-11-12 20:02:29 +0800396 goto err_rmu;
Scott Wooda614db92014-04-28 18:20:09 -0500397 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800398 rc = of_address_to_resource(rmu_node, 0, &rmu_regs);
399 if (rc) {
400 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
401 rmu_node->full_name);
402 goto err_rmu;
403 }
404 rmu_regs_win = ioremap(rmu_regs.start, resource_size(&rmu_regs));
405 if (!rmu_regs_win) {
406 dev_err(&dev->dev, "Unable to map rmu register window\n");
Julia Lawall6c759332009-08-07 09:00:34 +0200407 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800408 goto err_rmu;
Julia Lawall6c759332009-08-07 09:00:34 +0200409 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800410 for_each_compatible_node(np, NULL, "fsl,srio-msg-unit") {
411 rmu_np[tmp] = np;
412 tmp++;
413 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700414
Liu Gangabc3aea2011-11-12 20:02:29 +0800415 /*set up doobell node*/
416 np = of_find_compatible_node(NULL, NULL, "fsl,srio-dbell-unit");
417 if (!np) {
Scott Wooda614db92014-04-28 18:20:09 -0500418 dev_err(&dev->dev, "No fsl,srio-dbell-unit node\n");
Liu Gangabc3aea2011-11-12 20:02:29 +0800419 rc = -ENODEV;
420 goto err_dbell;
421 }
422 dbell = kzalloc(sizeof(struct fsl_rio_dbell), GFP_KERNEL);
423 if (!(dbell)) {
424 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_dbell'\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700425 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800426 goto err_dbell;
Zhang Weiad1e9382008-04-18 13:33:41 -0700427 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800428 dbell->dev = &dev->dev;
429 dbell->bellirq = irq_of_parse_and_map(np, 1);
430 dev_info(&dev->dev, "bellirq: %d\n", dbell->bellirq);
Zhang Weiad1e9382008-04-18 13:33:41 -0700431
Liu Gangabc3aea2011-11-12 20:02:29 +0800432 aw = of_n_addr_cells(np);
433 dt_range = of_get_property(np, "reg", &rlen);
434 if (!dt_range) {
435 pr_err("%s: unable to find 'reg' property\n",
436 np->full_name);
437 rc = -ENOMEM;
438 goto err_pw;
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700439 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800440 range_start = of_read_number(dt_range, aw);
441 dbell->dbell_regs = (struct rio_dbell_regs *)(rmu_regs_win +
442 (u32)range_start);
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700443
Liu Gangabc3aea2011-11-12 20:02:29 +0800444 /*set up port write node*/
445 np = of_find_compatible_node(NULL, NULL, "fsl,srio-port-write-unit");
446 if (!np) {
Scott Wooda614db92014-04-28 18:20:09 -0500447 dev_err(&dev->dev, "No fsl,srio-port-write-unit node\n");
Liu Gangabc3aea2011-11-12 20:02:29 +0800448 rc = -ENODEV;
449 goto err_pw;
Zhang Wei7f620df2008-04-18 13:33:44 -0700450 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800451 pw = kzalloc(sizeof(struct fsl_rio_pw), GFP_KERNEL);
452 if (!(pw)) {
453 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_pw'\n");
454 rc = -ENOMEM;
455 goto err_pw;
456 }
457 pw->dev = &dev->dev;
458 pw->pwirq = irq_of_parse_and_map(np, 0);
459 dev_info(&dev->dev, "pwirq: %d\n", pw->pwirq);
460 aw = of_n_addr_cells(np);
461 dt_range = of_get_property(np, "reg", &rlen);
462 if (!dt_range) {
463 pr_err("%s: unable to find 'reg' property\n",
464 np->full_name);
465 rc = -ENOMEM;
Alexandre Bounine59f99962011-04-14 15:22:14 -0700466 goto err;
Liu Gangabc3aea2011-11-12 20:02:29 +0800467 }
468 range_start = of_read_number(dt_range, aw);
469 pw->pw_regs = (struct rio_pw_regs *)(rmu_regs_win + (u32)range_start);
Alexandre Bounine59f99962011-04-14 15:22:14 -0700470
Liu Gangabc3aea2011-11-12 20:02:29 +0800471 /*set up ports node*/
472 for_each_child_of_node(dev->dev.of_node, np) {
473 port_index = of_get_property(np, "cell-index", NULL);
474 if (!port_index) {
475 dev_err(&dev->dev, "Can't get %s property 'cell-index'\n",
476 np->full_name);
477 continue;
478 }
Alexandre Bounineaf84ca32010-10-27 15:34:34 -0700479
Liu Gangabc3aea2011-11-12 20:02:29 +0800480 dt_range = of_get_property(np, "ranges", &rlen);
481 if (!dt_range) {
482 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
483 np->full_name);
484 continue;
485 }
Zhang Wei61b26912008-04-18 13:33:44 -0700486
Liu Gangabc3aea2011-11-12 20:02:29 +0800487 /* Get node address wide */
488 cell = of_get_property(np, "#address-cells", NULL);
489 if (cell)
490 aw = *cell;
491 else
492 aw = of_n_addr_cells(np);
493 /* Get node size wide */
494 cell = of_get_property(np, "#size-cells", NULL);
495 if (cell)
496 sw = *cell;
497 else
498 sw = of_n_size_cells(np);
499 /* Get parent address wide wide */
500 paw = of_n_addr_cells(np);
501 range_start = of_read_number(dt_range + aw, paw);
502 range_size = of_read_number(dt_range + aw + paw, sw);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800503
Liu Gangabc3aea2011-11-12 20:02:29 +0800504 dev_info(&dev->dev, "%s: LAW start 0x%016llx, size 0x%016llx.\n",
505 np->full_name, range_start, range_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800506
Liu Gangabc3aea2011-11-12 20:02:29 +0800507 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
508 if (!port)
509 continue;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800510
Liu Gangabc3aea2011-11-12 20:02:29 +0800511 i = *port_index - 1;
512 port->index = (unsigned char)i;
Liu Gang6ec4bed2011-11-12 20:02:28 +0800513
Liu Gangabc3aea2011-11-12 20:02:29 +0800514 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
515 if (!priv) {
516 dev_err(&dev->dev, "Can't alloc memory for 'priv'\n");
517 kfree(port);
518 continue;
519 }
520
521 INIT_LIST_HEAD(&port->dbells);
522 port->iores.start = range_start;
523 port->iores.end = port->iores.start + range_size - 1;
524 port->iores.flags = IORESOURCE_MEM;
525 port->iores.name = "rio_io_win";
526
527 if (request_resource(&iomem_resource, &port->iores) < 0) {
528 dev_err(&dev->dev, "RIO: Error requesting master port region"
529 " 0x%016llx-0x%016llx\n",
530 (u64)port->iores.start, (u64)port->iores.end);
531 kfree(priv);
532 kfree(port);
533 continue;
534 }
535 sprintf(port->name, "RIO mport %d", i);
536
537 priv->dev = &dev->dev;
Alexandre Bounine2aaf3082014-04-07 15:38:56 -0700538 port->dev.parent = &dev->dev;
Liu Gangabc3aea2011-11-12 20:02:29 +0800539 port->ops = ops;
540 port->priv = priv;
541 port->phys_efptr = 0x100;
542 priv->regs_win = rio_regs_win;
543
544 /* Probe the master port phy type */
545 ccsr = in_be32(priv->regs_win + RIO_CCSR + i*0x20);
546 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
547 if (port->phy_type == RIO_PHY_PARALLEL) {
548 dev_err(&dev->dev, "RIO: Parallel PHY type, unsupported port type!\n");
549 release_resource(&port->iores);
550 kfree(priv);
551 kfree(port);
552 continue;
553 }
554 dev_info(&dev->dev, "RapidIO PHY type: Serial\n");
555 /* Checking the port training status */
556 if (in_be32((priv->regs_win + RIO_ESCSR + i*0x20)) & 1) {
557 dev_err(&dev->dev, "Port %d is not ready. "
558 "Try to restart connection...\n", i);
559 /* Disable ports */
560 out_be32(priv->regs_win
561 + RIO_CCSR + i*0x20, 0);
562 /* Set 1x lane */
563 setbits32(priv->regs_win
564 + RIO_CCSR + i*0x20, 0x02000000);
565 /* Enable ports */
566 setbits32(priv->regs_win
567 + RIO_CCSR + i*0x20, 0x00600000);
568 msleep(100);
569 if (in_be32((priv->regs_win
570 + RIO_ESCSR + i*0x20)) & 1) {
571 dev_err(&dev->dev,
572 "Port %d restart failed.\n", i);
573 release_resource(&port->iores);
574 kfree(priv);
575 kfree(port);
576 continue;
577 }
578 dev_info(&dev->dev, "Port %d restart success!\n", i);
579 }
580 fsl_rio_info(&dev->dev, ccsr);
581
582 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
583 & RIO_PEF_CTLS) >> 4;
584 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
585 port->sys_size ? 65536 : 256);
586
587 if (rio_register_mport(port)) {
588 release_resource(&port->iores);
589 kfree(priv);
590 kfree(port);
591 continue;
592 }
593 if (port->host_deviceid >= 0)
594 out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
595 RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
596 else
597 out_be32(priv->regs_win + RIO_GCCSR,
598 RIO_PORT_GEN_MASTER);
599
600 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
601 + ((i == 0) ? RIO_ATMU_REGS_PORT1_OFFSET :
602 RIO_ATMU_REGS_PORT2_OFFSET));
603
604 priv->maint_atmu_regs = priv->atmu_regs + 1;
605
606 /* Set to receive any dist ID for serial RapidIO controller. */
607 if (port->phy_type == RIO_PHY_SERIAL)
608 out_be32((priv->regs_win
609 + RIO_ISR_AACR + i*0x80), RIO_ISR_AACR_AA);
610
611 /* Configure maintenance transaction window */
612 out_be32(&priv->maint_atmu_regs->rowbar,
613 port->iores.start >> 12);
614 out_be32(&priv->maint_atmu_regs->rowar,
615 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
616
617 priv->maint_win = ioremap(port->iores.start,
618 RIO_MAINT_WIN_SIZE);
619
620 rio_law_start = range_start;
621
622 fsl_rio_setup_rmu(port, rmu_np[i]);
623
624 dbell->mport[i] = port;
625
626 active_ports++;
627 }
628
629 if (!active_ports) {
630 rc = -ENOLINK;
631 goto err;
632 }
633
634 fsl_rio_doorbell_init(dbell);
635 fsl_rio_port_write_init(pw);
Zhang Weiad1e9382008-04-18 13:33:41 -0700636
Zhang Weicc2bb692008-04-18 13:33:41 -0700637 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700638err:
Liu Gangabc3aea2011-11-12 20:02:29 +0800639 kfree(pw);
Scott Wooda614db92014-04-28 18:20:09 -0500640 pw = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800641err_pw:
642 kfree(dbell);
Scott Wooda614db92014-04-28 18:20:09 -0500643 dbell = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800644err_dbell:
645 iounmap(rmu_regs_win);
Scott Wooda614db92014-04-28 18:20:09 -0500646 rmu_regs_win = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800647err_rmu:
Julia Lawall6c759332009-08-07 09:00:34 +0200648 kfree(ops);
649err_ops:
Liu Gangabc3aea2011-11-12 20:02:29 +0800650 iounmap(rio_regs_win);
Scott Wooda614db92014-04-28 18:20:09 -0500651 rio_regs_win = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800652err_rio_regs:
Zhang Weicc2bb692008-04-18 13:33:41 -0700653 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800654}
Zhang Weicc2bb692008-04-18 13:33:41 -0700655
656/* The probe function for RapidIO peer-to-peer network.
657 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800658static int fsl_of_rio_rpn_probe(struct platform_device *dev)
Zhang Weicc2bb692008-04-18 13:33:41 -0700659{
Zhang Weicc2bb692008-04-18 13:33:41 -0700660 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700661 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700662
Alexandre Bounine2f809982011-03-23 16:43:04 -0700663 return fsl_rio_setup(dev);
Zhang Weicc2bb692008-04-18 13:33:41 -0700664};
665
666static const struct of_device_id fsl_of_rio_rpn_ids[] = {
667 {
Liu Gangabc3aea2011-11-12 20:02:29 +0800668 .compatible = "fsl,srio",
Zhang Weicc2bb692008-04-18 13:33:41 -0700669 },
670 {},
671};
672
Grant Likely00006122011-02-22 19:59:54 -0700673static struct platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700674 .driver = {
675 .name = "fsl-of-rio",
676 .owner = THIS_MODULE,
677 .of_match_table = fsl_of_rio_rpn_ids,
678 },
Zhang Weicc2bb692008-04-18 13:33:41 -0700679 .probe = fsl_of_rio_rpn_probe,
680};
681
682static __init int fsl_of_rio_rpn_init(void)
683{
Grant Likely00006122011-02-22 19:59:54 -0700684 return platform_driver_register(&fsl_of_rio_rpn_driver);
Zhang Weicc2bb692008-04-18 13:33:41 -0700685}
686
687subsys_initcall(fsl_of_rio_rpn_init);