blob: 5b6f556094dd088271b569cd6c79f8c85fe2bf0d [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>
Zhang Weicc2bb692008-04-18 13:33:41 -070031#include <linux/of_platform.h>
Zhang Wei61b26912008-04-18 13:33:44 -070032#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080034
Liu Gang6ec4bed2011-11-12 20:02:28 +080035#include <linux/io.h>
36#include <linux/uaccess.h>
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070037#include <asm/machdep.h>
Liu Gang6ec4bed2011-11-12 20:02:28 +080038
39#include "fsl_rio.h"
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080040
Alexandre Bounine5b2074a2010-05-26 14:44:00 -070041#undef DEBUG_PW /* Port-Write debugging */
42
Shaohui Xie6ff31452010-11-18 14:57:53 +080043#define RIO_PORT1_EDCSR 0x0640
44#define RIO_PORT2_EDCSR 0x0680
45#define RIO_PORT1_IECSR 0x10130
46#define RIO_PORT2_IECSR 0x101B0
Shaohui Xie6ff31452010-11-18 14:57:53 +080047
Alexandre Bounineaf84ca32010-10-27 15:34:34 -070048#define RIO_GCCSR 0x13c
Zhang Wei61b26912008-04-18 13:33:44 -070049#define RIO_ESCSR 0x158
Liu Gang6ec4bed2011-11-12 20:02:28 +080050#define ESCSR_CLEAR 0x07120204
Shaohui Xie6ff31452010-11-18 14:57:53 +080051#define RIO_PORT2_ESCSR 0x178
Zhang Wei61b26912008-04-18 13:33:44 -070052#define RIO_CCSR 0x15c
Shaohui Xie6ff31452010-11-18 14:57:53 +080053#define RIO_LTLEDCSR_IER 0x80000000
54#define RIO_LTLEDCSR_PRT 0x01000000
Liu Gang6ec4bed2011-11-12 20:02:28 +080055#define IECSR_CLEAR 0x80000000
Zhang Wei61b26912008-04-18 13:33:44 -070056#define RIO_ISR_AACR 0x10120
57#define RIO_ISR_AACR_AA 0x1 /* Accept All ID */
Matt Porter2b0c28d7f2005-11-07 01:00:19 -080058
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070059#define __fsl_read_rio_config(x, addr, err, op) \
60 __asm__ __volatile__( \
61 "1: "op" %1,0(%2)\n" \
62 " eieio\n" \
63 "2:\n" \
64 ".section .fixup,\"ax\"\n" \
65 "3: li %1,-1\n" \
66 " li %0,%3\n" \
67 " b 2b\n" \
68 ".section __ex_table,\"a\"\n" \
Liu Gangb6c46dc2012-03-06 10:58:12 +080069 PPC_LONG_ALIGN "\n" \
70 PPC_LONG "1b,3b\n" \
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070071 ".text" \
72 : "=r" (err), "=r" (x) \
73 : "b" (addr), "i" (-EFAULT), "0" (err))
74
Liu Gang6ec4bed2011-11-12 20:02:28 +080075void __iomem *rio_regs_win;
Liu Gangabc3aea2011-11-12 20:02:29 +080076void __iomem *rmu_regs_win;
77resource_size_t rio_law_start;
78
79struct fsl_rio_dbell *dbell;
80struct fsl_rio_pw *pw;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070081
Li Yangff33f182010-06-18 14:24:20 +080082#ifdef CONFIG_E500
Shaohui Xiecce1f102010-11-18 14:57:32 +080083int fsl_rio_mcheck_exception(struct pt_regs *regs)
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070084{
Scott Wood82a9a482011-06-16 14:09:17 -050085 const struct exception_table_entry *entry;
86 unsigned long reason;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070087
Scott Wood82a9a482011-06-16 14:09:17 -050088 if (!rio_regs_win)
89 return 0;
90
91 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
92 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
93 /* Check if we are prepared to handle this fault */
94 entry = search_exception_tables(regs->nip);
95 if (entry) {
96 pr_debug("RIO: %s - MC Exception handled\n",
97 __func__);
98 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
99 0);
100 regs->msr |= MSR_RI;
101 regs->nip = entry->fixup;
102 return 1;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700103 }
104 }
105
Shaohui Xiecce1f102010-11-18 14:57:32 +0800106 return 0;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700107}
Shaohui Xiecce1f102010-11-18 14:57:32 +0800108EXPORT_SYMBOL_GPL(fsl_rio_mcheck_exception);
Li Yangff33f182010-06-18 14:24:20 +0800109#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700110
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800111/**
Zhang Weid02443a2008-04-18 13:33:38 -0700112 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700113 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800114 * @index: ID of RapdiIO interface
115 * @offset: Offset into configuration space
116 * @len: Length (in bytes) of the maintenance transaction
117 * @data: Value to be read into
118 *
119 * Generates a MPC85xx local configuration space read. Returns %0 on
120 * success or %-EINVAL on failure.
121 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700122static int fsl_local_config_read(struct rio_mport *mport,
123 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800124{
Zhang Weiad1e9382008-04-18 13:33:41 -0700125 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700126 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Liu Gangabc3aea2011-11-12 20:02:29 +0800127 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700128 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800129
130 return 0;
131}
132
133/**
Zhang Weid02443a2008-04-18 13:33:38 -0700134 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700135 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800136 * @index: ID of RapdiIO interface
137 * @offset: Offset into configuration space
138 * @len: Length (in bytes) of the maintenance transaction
139 * @data: Value to be written
140 *
141 * Generates a MPC85xx local configuration space write. Returns %0 on
142 * success or %-EINVAL on failure.
143 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700144static int fsl_local_config_write(struct rio_mport *mport,
145 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800146{
Zhang Weiad1e9382008-04-18 13:33:41 -0700147 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800148 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800149 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
150 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700151 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800152
153 return 0;
154}
155
156/**
Zhang Weid02443a2008-04-18 13:33:38 -0700157 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700158 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800159 * @index: ID of RapdiIO interface
160 * @destid: Destination ID of transaction
161 * @hopcount: Number of hops to target device
162 * @offset: Offset into configuration space
163 * @len: Length (in bytes) of the maintenance transaction
164 * @val: Location to be read into
165 *
166 * Generates a MPC85xx read maintenance transaction. Returns %0 on
167 * success or %-EINVAL on failure.
168 */
169static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700170fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
171 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800172{
Zhang Weiad1e9382008-04-18 13:33:41 -0700173 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800174 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700175 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800176
177 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800178 ("fsl_rio_config_read:"
179 " index %d destid %d hopcount %d offset %8.8x len %d\n",
Liu Gangabc3aea2011-11-12 20:02:29 +0800180 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800181
Thomas Mollbd4fb652010-05-26 14:44:05 -0700182 /* 16MB maintenance window possible */
183 /* allow only aligned access to maintenance registers */
184 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
185 return -EINVAL;
186
187 out_be32(&priv->maint_atmu_regs->rowtar,
188 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800189 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700190
191 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800192 switch (len) {
193 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700194 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800195 break;
196 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700197 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800198 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700199 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700200 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800201 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700202 default:
203 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800204 }
205
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700206 if (err) {
207 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
208 err, destid, hopcount, offset);
209 }
210
211 *val = rval;
212
213 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800214}
215
216/**
Zhang Weid02443a2008-04-18 13:33:38 -0700217 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700218 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800219 * @index: ID of RapdiIO interface
220 * @destid: Destination ID of transaction
221 * @hopcount: Number of hops to target device
222 * @offset: Offset into configuration space
223 * @len: Length (in bytes) of the maintenance transaction
224 * @val: Value to be written
225 *
226 * Generates an MPC85xx write maintenance transaction. Returns %0 on
227 * success or %-EINVAL on failure.
228 */
229static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700230fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
231 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800232{
Zhang Weiad1e9382008-04-18 13:33:41 -0700233 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800234 u8 *data;
235 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800236 ("fsl_rio_config_write:"
Liu Gangabc3aea2011-11-12 20:02:29 +0800237 " index %d destid %d hopcount %d offset %8.8x len %d val %8.8x\n",
238 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800239
Thomas Mollbd4fb652010-05-26 14:44:05 -0700240 /* 16MB maintenance windows possible */
241 /* allow only aligned access to maintenance registers */
242 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
243 return -EINVAL;
244
245 out_be32(&priv->maint_atmu_regs->rowtar,
246 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800247 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700248
249 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800250 switch (len) {
251 case 1:
252 out_8((u8 *) data, val);
253 break;
254 case 2:
255 out_be16((u16 *) data, val);
256 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700257 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800258 out_be32((u32 *) data, val);
259 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700260 default:
261 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800262 }
263
264 return 0;
265}
266
Liu Gangabc3aea2011-11-12 20:02:29 +0800267void fsl_rio_port_error_handler(int offset)
Shaohui Xie6ff31452010-11-18 14:57:53 +0800268{
269 /*XXX: Error recovery is not implemented, we just clear errors */
270 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
271
272 if (offset == 0) {
273 out_be32((u32 *)(rio_regs_win + RIO_PORT1_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700274 out_be32((u32 *)(rio_regs_win + RIO_PORT1_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800275 out_be32((u32 *)(rio_regs_win + RIO_ESCSR), ESCSR_CLEAR);
276 } else {
277 out_be32((u32 *)(rio_regs_win + RIO_PORT2_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700278 out_be32((u32 *)(rio_regs_win + RIO_PORT2_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800279 out_be32((u32 *)(rio_regs_win + RIO_PORT2_ESCSR), ESCSR_CLEAR);
280 }
281}
Zhang Wei7f620df2008-04-18 13:33:44 -0700282static inline void fsl_rio_info(struct device *dev, u32 ccsr)
283{
284 const char *str;
285 if (ccsr & 1) {
286 /* Serial phy */
287 switch (ccsr >> 30) {
288 case 0:
289 str = "1";
290 break;
291 case 1:
292 str = "4";
293 break;
294 default:
295 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +0000296 break;
Zhang Wei7f620df2008-04-18 13:33:44 -0700297 }
298 dev_info(dev, "Hardware port width: %s\n", str);
299
300 switch ((ccsr >> 27) & 7) {
301 case 0:
302 str = "Single-lane 0";
303 break;
304 case 1:
305 str = "Single-lane 2";
306 break;
307 case 2:
308 str = "Four-lane";
309 break;
310 default:
311 str = "Unknown";
312 break;
313 }
314 dev_info(dev, "Training connection status: %s\n", str);
315 } else {
316 /* Parallel phy */
317 if (!(ccsr & 0x80000000))
318 dev_info(dev, "Output port operating in 8-bit mode\n");
319 if (!(ccsr & 0x08000000))
320 dev_info(dev, "Input port operating in 8-bit mode\n");
321 }
322}
323
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800324/**
Randy Dunlap9941d942008-04-30 16:45:58 -0700325 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -0600326 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800327 *
328 * Initializes MPC85xx RapidIO hardware interface, configures
329 * master port with system-specific info, and registers the
330 * master port with the RapidIO subsystem.
331 */
Grant Likelya454dc52010-07-22 15:52:34 -0600332int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800333{
334 struct rio_ops *ops;
335 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -0700336 struct rio_priv *priv;
337 int rc = 0;
Liu Gangabc3aea2011-11-12 20:02:29 +0800338 const u32 *dt_range, *cell, *port_index;
339 u32 active_ports = 0;
340 struct resource regs, rmu_regs;
341 struct device_node *np, *rmu_node;
Zhang Weicc2bb692008-04-18 13:33:41 -0700342 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -0700343 u32 ccsr;
Liu Gangabc3aea2011-11-12 20:02:29 +0800344 u64 range_start, range_size;
Zhang Weicc2bb692008-04-18 13:33:41 -0700345 int paw, aw, sw;
Liu Gangabc3aea2011-11-12 20:02:29 +0800346 u32 i;
347 static int tmp;
348 struct device_node *rmu_np[MAX_MSG_UNIT_NUM] = {NULL};
Zhang Weicc2bb692008-04-18 13:33:41 -0700349
Grant Likely61c7a082010-04-13 16:12:29 -0700350 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -0700351 dev_err(&dev->dev, "Device OF-Node is NULL");
Liu Gangabc3aea2011-11-12 20:02:29 +0800352 return -ENODEV;
Zhang Weicc2bb692008-04-18 13:33:41 -0700353 }
354
Grant Likely61c7a082010-04-13 16:12:29 -0700355 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700356 if (rc) {
357 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700358 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700359 return -EFAULT;
360 }
Liu Gang6ec4bed2011-11-12 20:02:28 +0800361 dev_info(&dev->dev, "Of-device full name %s\n",
362 dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -0500363 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700364
Liu Gangabc3aea2011-11-12 20:02:29 +0800365 rio_regs_win = ioremap(regs.start, resource_size(&regs));
366 if (!rio_regs_win) {
367 dev_err(&dev->dev, "Unable to map rio register window\n");
368 rc = -ENOMEM;
369 goto err_rio_regs;
Zhang Weicc2bb692008-04-18 13:33:41 -0700370 }
371
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -0700372 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +0200373 if (!ops) {
374 rc = -ENOMEM;
375 goto err_ops;
376 }
Zhang Weid02443a2008-04-18 13:33:38 -0700377 ops->lcread = fsl_local_config_read;
378 ops->lcwrite = fsl_local_config_write;
379 ops->cread = fsl_rio_config_read;
380 ops->cwrite = fsl_rio_config_write;
Liu Gangabc3aea2011-11-12 20:02:29 +0800381 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700382 ops->pwenable = fsl_rio_pw_enable;
Liu Gangabc3aea2011-11-12 20:02:29 +0800383 ops->open_outb_mbox = fsl_open_outb_mbox;
384 ops->open_inb_mbox = fsl_open_inb_mbox;
385 ops->close_outb_mbox = fsl_close_outb_mbox;
386 ops->close_inb_mbox = fsl_close_inb_mbox;
387 ops->add_outb_message = fsl_add_outb_message;
388 ops->add_inb_buffer = fsl_add_inb_buffer;
389 ops->get_inb_message = fsl_get_inb_message;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800390
Liu Gangabc3aea2011-11-12 20:02:29 +0800391 rmu_node = of_parse_phandle(dev->dev.of_node, "fsl,srio-rmu-handle", 0);
392 if (!rmu_node)
393 goto err_rmu;
394 rc = of_address_to_resource(rmu_node, 0, &rmu_regs);
395 if (rc) {
396 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
397 rmu_node->full_name);
398 goto err_rmu;
399 }
400 rmu_regs_win = ioremap(rmu_regs.start, resource_size(&rmu_regs));
401 if (!rmu_regs_win) {
402 dev_err(&dev->dev, "Unable to map rmu register window\n");
Julia Lawall6c759332009-08-07 09:00:34 +0200403 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800404 goto err_rmu;
Julia Lawall6c759332009-08-07 09:00:34 +0200405 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800406 for_each_compatible_node(np, NULL, "fsl,srio-msg-unit") {
407 rmu_np[tmp] = np;
408 tmp++;
409 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700410
Liu Gangabc3aea2011-11-12 20:02:29 +0800411 /*set up doobell node*/
412 np = of_find_compatible_node(NULL, NULL, "fsl,srio-dbell-unit");
413 if (!np) {
414 rc = -ENODEV;
415 goto err_dbell;
416 }
417 dbell = kzalloc(sizeof(struct fsl_rio_dbell), GFP_KERNEL);
418 if (!(dbell)) {
419 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_dbell'\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700420 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800421 goto err_dbell;
Zhang Weiad1e9382008-04-18 13:33:41 -0700422 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800423 dbell->dev = &dev->dev;
424 dbell->bellirq = irq_of_parse_and_map(np, 1);
425 dev_info(&dev->dev, "bellirq: %d\n", dbell->bellirq);
Zhang Weiad1e9382008-04-18 13:33:41 -0700426
Liu Gangabc3aea2011-11-12 20:02:29 +0800427 aw = of_n_addr_cells(np);
428 dt_range = of_get_property(np, "reg", &rlen);
429 if (!dt_range) {
430 pr_err("%s: unable to find 'reg' property\n",
431 np->full_name);
432 rc = -ENOMEM;
433 goto err_pw;
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700434 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800435 range_start = of_read_number(dt_range, aw);
436 dbell->dbell_regs = (struct rio_dbell_regs *)(rmu_regs_win +
437 (u32)range_start);
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700438
Liu Gangabc3aea2011-11-12 20:02:29 +0800439 /*set up port write node*/
440 np = of_find_compatible_node(NULL, NULL, "fsl,srio-port-write-unit");
441 if (!np) {
442 rc = -ENODEV;
443 goto err_pw;
Zhang Wei7f620df2008-04-18 13:33:44 -0700444 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800445 pw = kzalloc(sizeof(struct fsl_rio_pw), GFP_KERNEL);
446 if (!(pw)) {
447 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_pw'\n");
448 rc = -ENOMEM;
449 goto err_pw;
450 }
451 pw->dev = &dev->dev;
452 pw->pwirq = irq_of_parse_and_map(np, 0);
453 dev_info(&dev->dev, "pwirq: %d\n", pw->pwirq);
454 aw = of_n_addr_cells(np);
455 dt_range = of_get_property(np, "reg", &rlen);
456 if (!dt_range) {
457 pr_err("%s: unable to find 'reg' property\n",
458 np->full_name);
459 rc = -ENOMEM;
Alexandre Bounine59f99962011-04-14 15:22:14 -0700460 goto err;
Liu Gangabc3aea2011-11-12 20:02:29 +0800461 }
462 range_start = of_read_number(dt_range, aw);
463 pw->pw_regs = (struct rio_pw_regs *)(rmu_regs_win + (u32)range_start);
Alexandre Bounine59f99962011-04-14 15:22:14 -0700464
Liu Gangabc3aea2011-11-12 20:02:29 +0800465 /*set up ports node*/
466 for_each_child_of_node(dev->dev.of_node, np) {
467 port_index = of_get_property(np, "cell-index", NULL);
468 if (!port_index) {
469 dev_err(&dev->dev, "Can't get %s property 'cell-index'\n",
470 np->full_name);
471 continue;
472 }
Alexandre Bounineaf84ca32010-10-27 15:34:34 -0700473
Liu Gangabc3aea2011-11-12 20:02:29 +0800474 dt_range = of_get_property(np, "ranges", &rlen);
475 if (!dt_range) {
476 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
477 np->full_name);
478 continue;
479 }
Zhang Wei61b26912008-04-18 13:33:44 -0700480
Liu Gangabc3aea2011-11-12 20:02:29 +0800481 /* Get node address wide */
482 cell = of_get_property(np, "#address-cells", NULL);
483 if (cell)
484 aw = *cell;
485 else
486 aw = of_n_addr_cells(np);
487 /* Get node size wide */
488 cell = of_get_property(np, "#size-cells", NULL);
489 if (cell)
490 sw = *cell;
491 else
492 sw = of_n_size_cells(np);
493 /* Get parent address wide wide */
494 paw = of_n_addr_cells(np);
495 range_start = of_read_number(dt_range + aw, paw);
496 range_size = of_read_number(dt_range + aw + paw, sw);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800497
Liu Gangabc3aea2011-11-12 20:02:29 +0800498 dev_info(&dev->dev, "%s: LAW start 0x%016llx, size 0x%016llx.\n",
499 np->full_name, range_start, range_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800500
Liu Gangabc3aea2011-11-12 20:02:29 +0800501 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
502 if (!port)
503 continue;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800504
Liu Gangabc3aea2011-11-12 20:02:29 +0800505 i = *port_index - 1;
506 port->index = (unsigned char)i;
Liu Gang6ec4bed2011-11-12 20:02:28 +0800507
Liu Gangabc3aea2011-11-12 20:02:29 +0800508 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
509 if (!priv) {
510 dev_err(&dev->dev, "Can't alloc memory for 'priv'\n");
511 kfree(port);
512 continue;
513 }
514
515 INIT_LIST_HEAD(&port->dbells);
516 port->iores.start = range_start;
517 port->iores.end = port->iores.start + range_size - 1;
518 port->iores.flags = IORESOURCE_MEM;
519 port->iores.name = "rio_io_win";
520
521 if (request_resource(&iomem_resource, &port->iores) < 0) {
522 dev_err(&dev->dev, "RIO: Error requesting master port region"
523 " 0x%016llx-0x%016llx\n",
524 (u64)port->iores.start, (u64)port->iores.end);
525 kfree(priv);
526 kfree(port);
527 continue;
528 }
529 sprintf(port->name, "RIO mport %d", i);
530
531 priv->dev = &dev->dev;
532 port->ops = ops;
533 port->priv = priv;
534 port->phys_efptr = 0x100;
535 priv->regs_win = rio_regs_win;
536
537 /* Probe the master port phy type */
538 ccsr = in_be32(priv->regs_win + RIO_CCSR + i*0x20);
539 port->phy_type = (ccsr & 1) ? RIO_PHY_SERIAL : RIO_PHY_PARALLEL;
540 if (port->phy_type == RIO_PHY_PARALLEL) {
541 dev_err(&dev->dev, "RIO: Parallel PHY type, unsupported port type!\n");
542 release_resource(&port->iores);
543 kfree(priv);
544 kfree(port);
545 continue;
546 }
547 dev_info(&dev->dev, "RapidIO PHY type: Serial\n");
548 /* Checking the port training status */
549 if (in_be32((priv->regs_win + RIO_ESCSR + i*0x20)) & 1) {
550 dev_err(&dev->dev, "Port %d is not ready. "
551 "Try to restart connection...\n", i);
552 /* Disable ports */
553 out_be32(priv->regs_win
554 + RIO_CCSR + i*0x20, 0);
555 /* Set 1x lane */
556 setbits32(priv->regs_win
557 + RIO_CCSR + i*0x20, 0x02000000);
558 /* Enable ports */
559 setbits32(priv->regs_win
560 + RIO_CCSR + i*0x20, 0x00600000);
561 msleep(100);
562 if (in_be32((priv->regs_win
563 + RIO_ESCSR + i*0x20)) & 1) {
564 dev_err(&dev->dev,
565 "Port %d restart failed.\n", i);
566 release_resource(&port->iores);
567 kfree(priv);
568 kfree(port);
569 continue;
570 }
571 dev_info(&dev->dev, "Port %d restart success!\n", i);
572 }
573 fsl_rio_info(&dev->dev, ccsr);
574
575 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
576 & RIO_PEF_CTLS) >> 4;
577 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
578 port->sys_size ? 65536 : 256);
579
580 if (rio_register_mport(port)) {
581 release_resource(&port->iores);
582 kfree(priv);
583 kfree(port);
584 continue;
585 }
586 if (port->host_deviceid >= 0)
587 out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
588 RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
589 else
590 out_be32(priv->regs_win + RIO_GCCSR,
591 RIO_PORT_GEN_MASTER);
592
593 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
594 + ((i == 0) ? RIO_ATMU_REGS_PORT1_OFFSET :
595 RIO_ATMU_REGS_PORT2_OFFSET));
596
597 priv->maint_atmu_regs = priv->atmu_regs + 1;
598
599 /* Set to receive any dist ID for serial RapidIO controller. */
600 if (port->phy_type == RIO_PHY_SERIAL)
601 out_be32((priv->regs_win
602 + RIO_ISR_AACR + i*0x80), RIO_ISR_AACR_AA);
603
604 /* Configure maintenance transaction window */
605 out_be32(&priv->maint_atmu_regs->rowbar,
606 port->iores.start >> 12);
607 out_be32(&priv->maint_atmu_regs->rowar,
608 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
609
610 priv->maint_win = ioremap(port->iores.start,
611 RIO_MAINT_WIN_SIZE);
612
613 rio_law_start = range_start;
614
615 fsl_rio_setup_rmu(port, rmu_np[i]);
616
617 dbell->mport[i] = port;
618
619 active_ports++;
620 }
621
622 if (!active_ports) {
623 rc = -ENOLINK;
624 goto err;
625 }
626
627 fsl_rio_doorbell_init(dbell);
628 fsl_rio_port_write_init(pw);
Zhang Weiad1e9382008-04-18 13:33:41 -0700629
Zhang Weicc2bb692008-04-18 13:33:41 -0700630 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700631err:
Liu Gangabc3aea2011-11-12 20:02:29 +0800632 kfree(pw);
633err_pw:
634 kfree(dbell);
635err_dbell:
636 iounmap(rmu_regs_win);
637err_rmu:
Julia Lawall6c759332009-08-07 09:00:34 +0200638 kfree(ops);
639err_ops:
Liu Gangabc3aea2011-11-12 20:02:29 +0800640 iounmap(rio_regs_win);
641err_rio_regs:
Zhang Weicc2bb692008-04-18 13:33:41 -0700642 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800643}
Zhang Weicc2bb692008-04-18 13:33:41 -0700644
645/* The probe function for RapidIO peer-to-peer network.
646 */
Grant Likely00006122011-02-22 19:59:54 -0700647static int __devinit fsl_of_rio_rpn_probe(struct platform_device *dev)
Zhang Weicc2bb692008-04-18 13:33:41 -0700648{
Zhang Weicc2bb692008-04-18 13:33:41 -0700649 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700650 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700651
Alexandre Bounine2f809982011-03-23 16:43:04 -0700652 return fsl_rio_setup(dev);
Zhang Weicc2bb692008-04-18 13:33:41 -0700653};
654
655static const struct of_device_id fsl_of_rio_rpn_ids[] = {
656 {
Liu Gangabc3aea2011-11-12 20:02:29 +0800657 .compatible = "fsl,srio",
Zhang Weicc2bb692008-04-18 13:33:41 -0700658 },
659 {},
660};
661
Grant Likely00006122011-02-22 19:59:54 -0700662static struct platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700663 .driver = {
664 .name = "fsl-of-rio",
665 .owner = THIS_MODULE,
666 .of_match_table = fsl_of_rio_rpn_ids,
667 },
Zhang Weicc2bb692008-04-18 13:33:41 -0700668 .probe = fsl_of_rio_rpn_probe,
669};
670
671static __init int fsl_of_rio_rpn_init(void)
672{
Grant Likely00006122011-02-22 19:59:54 -0700673 return platform_driver_register(&fsl_of_rio_rpn_driver);
Zhang Weicc2bb692008-04-18 13:33:41 -0700674}
675
676subsys_initcall(fsl_of_rio_rpn_init);