blob: 68e7c0dd2e45551143b6afc079fd185d2ca89a80 [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
Martijn de Gouwe6a546f2014-08-05 15:52:32 +020061#define RIWTAR_TRAD_VAL_SHIFT 12
62#define RIWTAR_TRAD_MASK 0x00FFFFFF
63#define RIWBAR_BADD_VAL_SHIFT 12
64#define RIWBAR_BADD_MASK 0x003FFFFF
65#define RIWAR_ENABLE 0x80000000
66#define RIWAR_TGINT_LOCAL 0x00F00000
67#define RIWAR_RDTYP_NO_SNOOP 0x00040000
68#define RIWAR_RDTYP_SNOOP 0x00050000
69#define RIWAR_WRTYP_NO_SNOOP 0x00004000
70#define RIWAR_WRTYP_SNOOP 0x00005000
71#define RIWAR_WRTYP_ALLOC 0x00006000
72#define RIWAR_SIZE_MASK 0x0000003F
73
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070074#define __fsl_read_rio_config(x, addr, err, op) \
75 __asm__ __volatile__( \
76 "1: "op" %1,0(%2)\n" \
77 " eieio\n" \
78 "2:\n" \
79 ".section .fixup,\"ax\"\n" \
80 "3: li %1,-1\n" \
81 " li %0,%3\n" \
82 " b 2b\n" \
83 ".section __ex_table,\"a\"\n" \
Liu Gangb6c46dc2012-03-06 10:58:12 +080084 PPC_LONG_ALIGN "\n" \
85 PPC_LONG "1b,3b\n" \
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070086 ".text" \
87 : "=r" (err), "=r" (x) \
88 : "b" (addr), "i" (-EFAULT), "0" (err))
89
Liu Gang6ec4bed2011-11-12 20:02:28 +080090void __iomem *rio_regs_win;
Liu Gangabc3aea2011-11-12 20:02:29 +080091void __iomem *rmu_regs_win;
92resource_size_t rio_law_start;
93
94struct fsl_rio_dbell *dbell;
95struct fsl_rio_pw *pw;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070096
Li Yangff33f182010-06-18 14:24:20 +080097#ifdef CONFIG_E500
Shaohui Xiecce1f102010-11-18 14:57:32 +080098int fsl_rio_mcheck_exception(struct pt_regs *regs)
Alexandre Bouninea52c8f52010-05-26 14:44:00 -070099{
Scott Wood82a9a482011-06-16 14:09:17 -0500100 const struct exception_table_entry *entry;
101 unsigned long reason;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700102
Scott Wood82a9a482011-06-16 14:09:17 -0500103 if (!rio_regs_win)
104 return 0;
105
106 reason = in_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR));
107 if (reason & (RIO_LTLEDCSR_IER | RIO_LTLEDCSR_PRT)) {
108 /* Check if we are prepared to handle this fault */
109 entry = search_exception_tables(regs->nip);
110 if (entry) {
111 pr_debug("RIO: %s - MC Exception handled\n",
112 __func__);
113 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR),
114 0);
115 regs->msr |= MSR_RI;
116 regs->nip = entry->fixup;
117 return 1;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700118 }
119 }
120
Shaohui Xiecce1f102010-11-18 14:57:32 +0800121 return 0;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700122}
Shaohui Xiecce1f102010-11-18 14:57:32 +0800123EXPORT_SYMBOL_GPL(fsl_rio_mcheck_exception);
Li Yangff33f182010-06-18 14:24:20 +0800124#endif
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700125
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800126/**
Zhang Weid02443a2008-04-18 13:33:38 -0700127 * fsl_local_config_read - Generate a MPC85xx local config space read
Randy Dunlap9941d942008-04-30 16:45:58 -0700128 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800129 * @index: ID of RapdiIO interface
130 * @offset: Offset into configuration space
131 * @len: Length (in bytes) of the maintenance transaction
132 * @data: Value to be read into
133 *
134 * Generates a MPC85xx local configuration space read. Returns %0 on
135 * success or %-EINVAL on failure.
136 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700137static int fsl_local_config_read(struct rio_mport *mport,
138 int index, u32 offset, int len, u32 *data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800139{
Zhang Weiad1e9382008-04-18 13:33:41 -0700140 struct rio_priv *priv = mport->priv;
Zhang Weid02443a2008-04-18 13:33:38 -0700141 pr_debug("fsl_local_config_read: index %d offset %8.8x\n", index,
Liu Gangabc3aea2011-11-12 20:02:29 +0800142 offset);
Zhang Weiad1e9382008-04-18 13:33:41 -0700143 *data = in_be32(priv->regs_win + offset);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800144
145 return 0;
146}
147
148/**
Zhang Weid02443a2008-04-18 13:33:38 -0700149 * fsl_local_config_write - Generate a MPC85xx local config space write
Randy Dunlap9941d942008-04-30 16:45:58 -0700150 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800151 * @index: ID of RapdiIO interface
152 * @offset: Offset into configuration space
153 * @len: Length (in bytes) of the maintenance transaction
154 * @data: Value to be written
155 *
156 * Generates a MPC85xx local configuration space write. Returns %0 on
157 * success or %-EINVAL on failure.
158 */
Zhang Weiad1e9382008-04-18 13:33:41 -0700159static int fsl_local_config_write(struct rio_mport *mport,
160 int index, u32 offset, int len, u32 data)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800161{
Zhang Weiad1e9382008-04-18 13:33:41 -0700162 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800163 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800164 ("fsl_local_config_write: index %d offset %8.8x data %8.8x\n",
165 index, offset, data);
Zhang Weiad1e9382008-04-18 13:33:41 -0700166 out_be32(priv->regs_win + offset, data);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800167
168 return 0;
169}
170
171/**
Zhang Weid02443a2008-04-18 13:33:38 -0700172 * fsl_rio_config_read - Generate a MPC85xx read maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700173 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800174 * @index: ID of RapdiIO interface
175 * @destid: Destination ID of transaction
176 * @hopcount: Number of hops to target device
177 * @offset: Offset into configuration space
178 * @len: Length (in bytes) of the maintenance transaction
179 * @val: Location to be read into
180 *
181 * Generates a MPC85xx read maintenance transaction. Returns %0 on
182 * success or %-EINVAL on failure.
183 */
184static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700185fsl_rio_config_read(struct rio_mport *mport, int index, u16 destid,
186 u8 hopcount, u32 offset, int len, u32 *val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800187{
Zhang Weiad1e9382008-04-18 13:33:41 -0700188 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800189 u8 *data;
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700190 u32 rval, err = 0;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800191
192 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800193 ("fsl_rio_config_read:"
194 " index %d destid %d hopcount %d offset %8.8x len %d\n",
Liu Gangabc3aea2011-11-12 20:02:29 +0800195 index, destid, hopcount, offset, len);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800196
Thomas Mollbd4fb652010-05-26 14:44:05 -0700197 /* 16MB maintenance window possible */
198 /* allow only aligned access to maintenance registers */
199 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
200 return -EINVAL;
201
202 out_be32(&priv->maint_atmu_regs->rowtar,
203 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800204 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700205
206 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800207 switch (len) {
208 case 1:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700209 __fsl_read_rio_config(rval, data, err, "lbz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800210 break;
211 case 2:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700212 __fsl_read_rio_config(rval, data, err, "lhz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800213 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700214 case 4:
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700215 __fsl_read_rio_config(rval, data, err, "lwz");
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800216 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700217 default:
218 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800219 }
220
Alexandre Bouninea52c8f52010-05-26 14:44:00 -0700221 if (err) {
222 pr_debug("RIO: cfg_read error %d for %x:%x:%x\n",
223 err, destid, hopcount, offset);
224 }
225
226 *val = rval;
227
228 return err;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800229}
230
231/**
Zhang Weid02443a2008-04-18 13:33:38 -0700232 * fsl_rio_config_write - Generate a MPC85xx write maintenance transaction
Randy Dunlap9941d942008-04-30 16:45:58 -0700233 * @mport: RapidIO master port info
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800234 * @index: ID of RapdiIO interface
235 * @destid: Destination ID of transaction
236 * @hopcount: Number of hops to target device
237 * @offset: Offset into configuration space
238 * @len: Length (in bytes) of the maintenance transaction
239 * @val: Value to be written
240 *
241 * Generates an MPC85xx write maintenance transaction. Returns %0 on
242 * success or %-EINVAL on failure.
243 */
244static int
Zhang Weiad1e9382008-04-18 13:33:41 -0700245fsl_rio_config_write(struct rio_mport *mport, int index, u16 destid,
246 u8 hopcount, u32 offset, int len, u32 val)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800247{
Zhang Weiad1e9382008-04-18 13:33:41 -0700248 struct rio_priv *priv = mport->priv;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800249 u8 *data;
250 pr_debug
Liu Gang6ec4bed2011-11-12 20:02:28 +0800251 ("fsl_rio_config_write:"
Liu Gangabc3aea2011-11-12 20:02:29 +0800252 " index %d destid %d hopcount %d offset %8.8x len %d val %8.8x\n",
253 index, destid, hopcount, offset, len, val);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800254
Thomas Mollbd4fb652010-05-26 14:44:05 -0700255 /* 16MB maintenance windows possible */
256 /* allow only aligned access to maintenance registers */
257 if (offset > (0x1000000 - len) || !IS_ALIGNED(offset, len))
258 return -EINVAL;
259
260 out_be32(&priv->maint_atmu_regs->rowtar,
261 (destid << 22) | (hopcount << 12) | (offset >> 12));
Liu Gang6ec4bed2011-11-12 20:02:28 +0800262 out_be32(&priv->maint_atmu_regs->rowtear, (destid >> 10));
Thomas Mollbd4fb652010-05-26 14:44:05 -0700263
264 data = (u8 *) priv->maint_win + (offset & (RIO_MAINT_WIN_SIZE - 1));
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800265 switch (len) {
266 case 1:
267 out_8((u8 *) data, val);
268 break;
269 case 2:
270 out_be16((u16 *) data, val);
271 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700272 case 4:
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800273 out_be32((u32 *) data, val);
274 break;
Thomas Mollbd4fb652010-05-26 14:44:05 -0700275 default:
276 return -EINVAL;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800277 }
278
279 return 0;
280}
281
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200282static void fsl_rio_inbound_mem_init(struct rio_priv *priv)
283{
284 int i;
285
286 /* close inbound windows */
287 for (i = 0; i < RIO_INB_ATMU_COUNT; i++)
288 out_be32(&priv->inb_atmu_regs[i].riwar, 0);
289}
290
291int fsl_map_inb_mem(struct rio_mport *mport, dma_addr_t lstart,
Alexandre Bouninea057a522016-08-02 14:06:54 -0700292 u64 rstart, u64 size, u32 flags)
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200293{
294 struct rio_priv *priv = mport->priv;
295 u32 base_size;
296 unsigned int base_size_log;
297 u64 win_start, win_end;
298 u32 riwar;
299 int i;
300
Alexandre Bouninea057a522016-08-02 14:06:54 -0700301 if ((size & (size - 1)) != 0 || size > 0x400000000ULL)
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200302 return -EINVAL;
303
304 base_size_log = ilog2(size);
305 base_size = 1 << base_size_log;
306
307 /* check if addresses are aligned with the window size */
308 if (lstart & (base_size - 1))
309 return -EINVAL;
310 if (rstart & (base_size - 1))
311 return -EINVAL;
312
313 /* check for conflicting ranges */
314 for (i = 0; i < RIO_INB_ATMU_COUNT; i++) {
315 riwar = in_be32(&priv->inb_atmu_regs[i].riwar);
316 if ((riwar & RIWAR_ENABLE) == 0)
317 continue;
318 win_start = ((u64)(in_be32(&priv->inb_atmu_regs[i].riwbar) & RIWBAR_BADD_MASK))
319 << RIWBAR_BADD_VAL_SHIFT;
320 win_end = win_start + ((1 << ((riwar & RIWAR_SIZE_MASK) + 1)) - 1);
321 if (rstart < win_end && (rstart + size) > win_start)
322 return -EINVAL;
323 }
324
325 /* find unused atmu */
326 for (i = 0; i < RIO_INB_ATMU_COUNT; i++) {
327 riwar = in_be32(&priv->inb_atmu_regs[i].riwar);
328 if ((riwar & RIWAR_ENABLE) == 0)
329 break;
330 }
331 if (i >= RIO_INB_ATMU_COUNT)
332 return -ENOMEM;
333
334 out_be32(&priv->inb_atmu_regs[i].riwtar, lstart >> RIWTAR_TRAD_VAL_SHIFT);
335 out_be32(&priv->inb_atmu_regs[i].riwbar, rstart >> RIWBAR_BADD_VAL_SHIFT);
336 out_be32(&priv->inb_atmu_regs[i].riwar, RIWAR_ENABLE | RIWAR_TGINT_LOCAL |
337 RIWAR_RDTYP_SNOOP | RIWAR_WRTYP_SNOOP | (base_size_log - 1));
338
339 return 0;
340}
341
342void fsl_unmap_inb_mem(struct rio_mport *mport, dma_addr_t lstart)
343{
344 u32 win_start_shift, base_start_shift;
345 struct rio_priv *priv = mport->priv;
346 u32 riwar, riwtar;
347 int i;
348
349 /* skip default window */
350 base_start_shift = lstart >> RIWTAR_TRAD_VAL_SHIFT;
351 for (i = 0; i < RIO_INB_ATMU_COUNT; i++) {
352 riwar = in_be32(&priv->inb_atmu_regs[i].riwar);
353 if ((riwar & RIWAR_ENABLE) == 0)
354 continue;
355
356 riwtar = in_be32(&priv->inb_atmu_regs[i].riwtar);
357 win_start_shift = riwtar & RIWTAR_TRAD_MASK;
358 if (win_start_shift == base_start_shift) {
359 out_be32(&priv->inb_atmu_regs[i].riwar, riwar & ~RIWAR_ENABLE);
360 return;
361 }
362 }
363}
364
Liu Gangabc3aea2011-11-12 20:02:29 +0800365void fsl_rio_port_error_handler(int offset)
Shaohui Xie6ff31452010-11-18 14:57:53 +0800366{
367 /*XXX: Error recovery is not implemented, we just clear errors */
368 out_be32((u32 *)(rio_regs_win + RIO_LTLEDCSR), 0);
369
370 if (offset == 0) {
371 out_be32((u32 *)(rio_regs_win + RIO_PORT1_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700372 out_be32((u32 *)(rio_regs_win + RIO_PORT1_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800373 out_be32((u32 *)(rio_regs_win + RIO_ESCSR), ESCSR_CLEAR);
374 } else {
375 out_be32((u32 *)(rio_regs_win + RIO_PORT2_EDCSR), 0);
Liu Gang-B34182671ee7f2011-08-25 15:59:25 -0700376 out_be32((u32 *)(rio_regs_win + RIO_PORT2_IECSR), IECSR_CLEAR);
Shaohui Xie6ff31452010-11-18 14:57:53 +0800377 out_be32((u32 *)(rio_regs_win + RIO_PORT2_ESCSR), ESCSR_CLEAR);
378 }
379}
Zhang Wei7f620df2008-04-18 13:33:44 -0700380static inline void fsl_rio_info(struct device *dev, u32 ccsr)
381{
382 const char *str;
383 if (ccsr & 1) {
384 /* Serial phy */
385 switch (ccsr >> 30) {
386 case 0:
387 str = "1";
388 break;
389 case 1:
390 str = "4";
391 break;
392 default:
393 str = "Unknown";
Joe Perchesd258e642009-06-28 06:26:10 +0000394 break;
Zhang Wei7f620df2008-04-18 13:33:44 -0700395 }
396 dev_info(dev, "Hardware port width: %s\n", str);
397
398 switch ((ccsr >> 27) & 7) {
399 case 0:
400 str = "Single-lane 0";
401 break;
402 case 1:
403 str = "Single-lane 2";
404 break;
405 case 2:
406 str = "Four-lane";
407 break;
408 default:
409 str = "Unknown";
410 break;
411 }
412 dev_info(dev, "Training connection status: %s\n", str);
413 } else {
414 /* Parallel phy */
415 if (!(ccsr & 0x80000000))
416 dev_info(dev, "Output port operating in 8-bit mode\n");
417 if (!(ccsr & 0x08000000))
418 dev_info(dev, "Input port operating in 8-bit mode\n");
419 }
420}
421
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800422/**
Randy Dunlap9941d942008-04-30 16:45:58 -0700423 * fsl_rio_setup - Setup Freescale PowerPC RapidIO interface
Grant Likely2dc11582010-08-06 09:25:50 -0600424 * @dev: platform_device pointer
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800425 *
426 * Initializes MPC85xx RapidIO hardware interface, configures
427 * master port with system-specific info, and registers the
428 * master port with the RapidIO subsystem.
429 */
Grant Likelya454dc52010-07-22 15:52:34 -0600430int fsl_rio_setup(struct platform_device *dev)
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800431{
432 struct rio_ops *ops;
433 struct rio_mport *port;
Zhang Weicc2bb692008-04-18 13:33:41 -0700434 struct rio_priv *priv;
435 int rc = 0;
Liu Gangabc3aea2011-11-12 20:02:29 +0800436 const u32 *dt_range, *cell, *port_index;
437 u32 active_ports = 0;
438 struct resource regs, rmu_regs;
439 struct device_node *np, *rmu_node;
Zhang Weicc2bb692008-04-18 13:33:41 -0700440 int rlen;
Zhang Wei61b26912008-04-18 13:33:44 -0700441 u32 ccsr;
Liu Gangabc3aea2011-11-12 20:02:29 +0800442 u64 range_start, range_size;
Zhang Weicc2bb692008-04-18 13:33:41 -0700443 int paw, aw, sw;
Liu Gangabc3aea2011-11-12 20:02:29 +0800444 u32 i;
445 static int tmp;
446 struct device_node *rmu_np[MAX_MSG_UNIT_NUM] = {NULL};
Zhang Weicc2bb692008-04-18 13:33:41 -0700447
Grant Likely61c7a082010-04-13 16:12:29 -0700448 if (!dev->dev.of_node) {
Zhang Weicc2bb692008-04-18 13:33:41 -0700449 dev_err(&dev->dev, "Device OF-Node is NULL");
Liu Gangabc3aea2011-11-12 20:02:29 +0800450 return -ENODEV;
Zhang Weicc2bb692008-04-18 13:33:41 -0700451 }
452
Grant Likely61c7a082010-04-13 16:12:29 -0700453 rc = of_address_to_resource(dev->dev.of_node, 0, &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700454 if (rc) {
455 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700456 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700457 return -EFAULT;
458 }
Liu Gang6ec4bed2011-11-12 20:02:28 +0800459 dev_info(&dev->dev, "Of-device full name %s\n",
460 dev->dev.of_node->full_name);
Kumar Galafc274a12009-05-13 17:02:24 -0500461 dev_info(&dev->dev, "Regs: %pR\n", &regs);
Zhang Weicc2bb692008-04-18 13:33:41 -0700462
Liu Gangabc3aea2011-11-12 20:02:29 +0800463 rio_regs_win = ioremap(regs.start, resource_size(&regs));
464 if (!rio_regs_win) {
465 dev_err(&dev->dev, "Unable to map rio register window\n");
466 rc = -ENOMEM;
467 goto err_rio_regs;
Zhang Weicc2bb692008-04-18 13:33:41 -0700468 }
469
Alexandre Bouninee5cabeb2010-05-26 14:43:59 -0700470 ops = kzalloc(sizeof(struct rio_ops), GFP_KERNEL);
Julia Lawall6c759332009-08-07 09:00:34 +0200471 if (!ops) {
472 rc = -ENOMEM;
473 goto err_ops;
474 }
Zhang Weid02443a2008-04-18 13:33:38 -0700475 ops->lcread = fsl_local_config_read;
476 ops->lcwrite = fsl_local_config_write;
477 ops->cread = fsl_rio_config_read;
478 ops->cwrite = fsl_rio_config_write;
Liu Gangabc3aea2011-11-12 20:02:29 +0800479 ops->dsend = fsl_rio_doorbell_send;
Alexandre Bounine5b2074a2010-05-26 14:44:00 -0700480 ops->pwenable = fsl_rio_pw_enable;
Liu Gangabc3aea2011-11-12 20:02:29 +0800481 ops->open_outb_mbox = fsl_open_outb_mbox;
482 ops->open_inb_mbox = fsl_open_inb_mbox;
483 ops->close_outb_mbox = fsl_close_outb_mbox;
484 ops->close_inb_mbox = fsl_close_inb_mbox;
485 ops->add_outb_message = fsl_add_outb_message;
486 ops->add_inb_buffer = fsl_add_inb_buffer;
487 ops->get_inb_message = fsl_get_inb_message;
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200488 ops->map_inb = fsl_map_inb_mem;
489 ops->unmap_inb = fsl_unmap_inb_mem;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800490
Liu Gangabc3aea2011-11-12 20:02:29 +0800491 rmu_node = of_parse_phandle(dev->dev.of_node, "fsl,srio-rmu-handle", 0);
Scott Wooda614db92014-04-28 18:20:09 -0500492 if (!rmu_node) {
493 dev_err(&dev->dev, "No valid fsl,srio-rmu-handle property\n");
Dan Carpenter380afa32016-08-04 15:31:52 -0700494 rc = -ENOENT;
Liu Gangabc3aea2011-11-12 20:02:29 +0800495 goto err_rmu;
Scott Wooda614db92014-04-28 18:20:09 -0500496 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800497 rc = of_address_to_resource(rmu_node, 0, &rmu_regs);
498 if (rc) {
499 dev_err(&dev->dev, "Can't get %s property 'reg'\n",
500 rmu_node->full_name);
501 goto err_rmu;
502 }
503 rmu_regs_win = ioremap(rmu_regs.start, resource_size(&rmu_regs));
504 if (!rmu_regs_win) {
505 dev_err(&dev->dev, "Unable to map rmu register window\n");
Julia Lawall6c759332009-08-07 09:00:34 +0200506 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800507 goto err_rmu;
Julia Lawall6c759332009-08-07 09:00:34 +0200508 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800509 for_each_compatible_node(np, NULL, "fsl,srio-msg-unit") {
510 rmu_np[tmp] = np;
511 tmp++;
512 }
Zhang Weiad1e9382008-04-18 13:33:41 -0700513
Liu Gangabc3aea2011-11-12 20:02:29 +0800514 /*set up doobell node*/
515 np = of_find_compatible_node(NULL, NULL, "fsl,srio-dbell-unit");
516 if (!np) {
Scott Wooda614db92014-04-28 18:20:09 -0500517 dev_err(&dev->dev, "No fsl,srio-dbell-unit node\n");
Liu Gangabc3aea2011-11-12 20:02:29 +0800518 rc = -ENODEV;
519 goto err_dbell;
520 }
521 dbell = kzalloc(sizeof(struct fsl_rio_dbell), GFP_KERNEL);
522 if (!(dbell)) {
523 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_dbell'\n");
Zhang Weiad1e9382008-04-18 13:33:41 -0700524 rc = -ENOMEM;
Liu Gangabc3aea2011-11-12 20:02:29 +0800525 goto err_dbell;
Zhang Weiad1e9382008-04-18 13:33:41 -0700526 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800527 dbell->dev = &dev->dev;
528 dbell->bellirq = irq_of_parse_and_map(np, 1);
529 dev_info(&dev->dev, "bellirq: %d\n", dbell->bellirq);
Zhang Weiad1e9382008-04-18 13:33:41 -0700530
Liu Gangabc3aea2011-11-12 20:02:29 +0800531 aw = of_n_addr_cells(np);
532 dt_range = of_get_property(np, "reg", &rlen);
533 if (!dt_range) {
534 pr_err("%s: unable to find 'reg' property\n",
535 np->full_name);
536 rc = -ENOMEM;
537 goto err_pw;
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700538 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800539 range_start = of_read_number(dt_range, aw);
540 dbell->dbell_regs = (struct rio_dbell_regs *)(rmu_regs_win +
541 (u32)range_start);
Alexandre Bouninec1256eb2011-03-23 16:43:06 -0700542
Liu Gangabc3aea2011-11-12 20:02:29 +0800543 /*set up port write node*/
544 np = of_find_compatible_node(NULL, NULL, "fsl,srio-port-write-unit");
545 if (!np) {
Scott Wooda614db92014-04-28 18:20:09 -0500546 dev_err(&dev->dev, "No fsl,srio-port-write-unit node\n");
Liu Gangabc3aea2011-11-12 20:02:29 +0800547 rc = -ENODEV;
548 goto err_pw;
Zhang Wei7f620df2008-04-18 13:33:44 -0700549 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800550 pw = kzalloc(sizeof(struct fsl_rio_pw), GFP_KERNEL);
551 if (!(pw)) {
552 dev_err(&dev->dev, "Can't alloc memory for 'fsl_rio_pw'\n");
553 rc = -ENOMEM;
554 goto err_pw;
555 }
556 pw->dev = &dev->dev;
557 pw->pwirq = irq_of_parse_and_map(np, 0);
558 dev_info(&dev->dev, "pwirq: %d\n", pw->pwirq);
559 aw = of_n_addr_cells(np);
560 dt_range = of_get_property(np, "reg", &rlen);
561 if (!dt_range) {
562 pr_err("%s: unable to find 'reg' property\n",
563 np->full_name);
564 rc = -ENOMEM;
Alexandre Bounine59f99962011-04-14 15:22:14 -0700565 goto err;
Liu Gangabc3aea2011-11-12 20:02:29 +0800566 }
567 range_start = of_read_number(dt_range, aw);
568 pw->pw_regs = (struct rio_pw_regs *)(rmu_regs_win + (u32)range_start);
Alexandre Bounine59f99962011-04-14 15:22:14 -0700569
Liu Gangabc3aea2011-11-12 20:02:29 +0800570 /*set up ports node*/
571 for_each_child_of_node(dev->dev.of_node, np) {
572 port_index = of_get_property(np, "cell-index", NULL);
573 if (!port_index) {
574 dev_err(&dev->dev, "Can't get %s property 'cell-index'\n",
575 np->full_name);
576 continue;
577 }
Alexandre Bounineaf84ca32010-10-27 15:34:34 -0700578
Liu Gangabc3aea2011-11-12 20:02:29 +0800579 dt_range = of_get_property(np, "ranges", &rlen);
580 if (!dt_range) {
581 dev_err(&dev->dev, "Can't get %s property 'ranges'\n",
582 np->full_name);
583 continue;
584 }
Zhang Wei61b26912008-04-18 13:33:44 -0700585
Liu Gangabc3aea2011-11-12 20:02:29 +0800586 /* Get node address wide */
587 cell = of_get_property(np, "#address-cells", NULL);
588 if (cell)
589 aw = *cell;
590 else
591 aw = of_n_addr_cells(np);
592 /* Get node size wide */
593 cell = of_get_property(np, "#size-cells", NULL);
594 if (cell)
595 sw = *cell;
596 else
597 sw = of_n_size_cells(np);
598 /* Get parent address wide wide */
599 paw = of_n_addr_cells(np);
600 range_start = of_read_number(dt_range + aw, paw);
601 range_size = of_read_number(dt_range + aw + paw, sw);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800602
Liu Gangabc3aea2011-11-12 20:02:29 +0800603 dev_info(&dev->dev, "%s: LAW start 0x%016llx, size 0x%016llx.\n",
604 np->full_name, range_start, range_size);
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800605
Liu Gangabc3aea2011-11-12 20:02:29 +0800606 port = kzalloc(sizeof(struct rio_mport), GFP_KERNEL);
607 if (!port)
608 continue;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800609
Alexandre Bouninedd64f4f2016-03-22 14:26:26 -0700610 rc = rio_mport_initialize(port);
611 if (rc) {
612 kfree(port);
613 continue;
614 }
615
Liu Gangabc3aea2011-11-12 20:02:29 +0800616 i = *port_index - 1;
617 port->index = (unsigned char)i;
Liu Gang6ec4bed2011-11-12 20:02:28 +0800618
Liu Gangabc3aea2011-11-12 20:02:29 +0800619 priv = kzalloc(sizeof(struct rio_priv), GFP_KERNEL);
620 if (!priv) {
621 dev_err(&dev->dev, "Can't alloc memory for 'priv'\n");
622 kfree(port);
623 continue;
624 }
625
626 INIT_LIST_HEAD(&port->dbells);
627 port->iores.start = range_start;
628 port->iores.end = port->iores.start + range_size - 1;
629 port->iores.flags = IORESOURCE_MEM;
630 port->iores.name = "rio_io_win";
631
632 if (request_resource(&iomem_resource, &port->iores) < 0) {
633 dev_err(&dev->dev, "RIO: Error requesting master port region"
634 " 0x%016llx-0x%016llx\n",
635 (u64)port->iores.start, (u64)port->iores.end);
636 kfree(priv);
637 kfree(port);
638 continue;
639 }
640 sprintf(port->name, "RIO mport %d", i);
641
642 priv->dev = &dev->dev;
Alexandre Bounine2aaf3082014-04-07 15:38:56 -0700643 port->dev.parent = &dev->dev;
Liu Gangabc3aea2011-11-12 20:02:29 +0800644 port->ops = ops;
645 port->priv = priv;
646 port->phys_efptr = 0x100;
Alexandre Bounineadff1642016-08-02 14:07:00 -0700647 port->phys_rmap = 1;
Liu Gangabc3aea2011-11-12 20:02:29 +0800648 priv->regs_win = rio_regs_win;
649
Liu Gangabc3aea2011-11-12 20:02:29 +0800650 ccsr = in_be32(priv->regs_win + RIO_CCSR + i*0x20);
Alexandre Bounineadff1642016-08-02 14:07:00 -0700651
Liu Gangabc3aea2011-11-12 20:02:29 +0800652 /* Checking the port training status */
653 if (in_be32((priv->regs_win + RIO_ESCSR + i*0x20)) & 1) {
654 dev_err(&dev->dev, "Port %d is not ready. "
655 "Try to restart connection...\n", i);
656 /* Disable ports */
657 out_be32(priv->regs_win
658 + RIO_CCSR + i*0x20, 0);
659 /* Set 1x lane */
660 setbits32(priv->regs_win
661 + RIO_CCSR + i*0x20, 0x02000000);
662 /* Enable ports */
663 setbits32(priv->regs_win
664 + RIO_CCSR + i*0x20, 0x00600000);
665 msleep(100);
666 if (in_be32((priv->regs_win
667 + RIO_ESCSR + i*0x20)) & 1) {
668 dev_err(&dev->dev,
669 "Port %d restart failed.\n", i);
670 release_resource(&port->iores);
671 kfree(priv);
672 kfree(port);
673 continue;
674 }
675 dev_info(&dev->dev, "Port %d restart success!\n", i);
676 }
677 fsl_rio_info(&dev->dev, ccsr);
678
679 port->sys_size = (in_be32((priv->regs_win + RIO_PEF_CAR))
680 & RIO_PEF_CTLS) >> 4;
681 dev_info(&dev->dev, "RapidIO Common Transport System size: %d\n",
682 port->sys_size ? 65536 : 256);
683
Liu Gangabc3aea2011-11-12 20:02:29 +0800684 if (port->host_deviceid >= 0)
685 out_be32(priv->regs_win + RIO_GCCSR, RIO_PORT_GEN_HOST |
686 RIO_PORT_GEN_MASTER | RIO_PORT_GEN_DISCOVERED);
687 else
688 out_be32(priv->regs_win + RIO_GCCSR,
689 RIO_PORT_GEN_MASTER);
690
691 priv->atmu_regs = (struct rio_atmu_regs *)(priv->regs_win
692 + ((i == 0) ? RIO_ATMU_REGS_PORT1_OFFSET :
693 RIO_ATMU_REGS_PORT2_OFFSET));
694
695 priv->maint_atmu_regs = priv->atmu_regs + 1;
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200696 priv->inb_atmu_regs = (struct rio_inb_atmu_regs __iomem *)
697 (priv->regs_win +
698 ((i == 0) ? RIO_INB_ATMU_REGS_PORT1_OFFSET :
699 RIO_INB_ATMU_REGS_PORT2_OFFSET));
700
Alexandre Bounineadff1642016-08-02 14:07:00 -0700701 /* Set to receive packets with any dest ID */
702 out_be32((priv->regs_win + RIO_ISR_AACR + i*0x80),
703 RIO_ISR_AACR_AA);
Liu Gangabc3aea2011-11-12 20:02:29 +0800704
705 /* Configure maintenance transaction window */
706 out_be32(&priv->maint_atmu_regs->rowbar,
707 port->iores.start >> 12);
708 out_be32(&priv->maint_atmu_regs->rowar,
709 0x80077000 | (ilog2(RIO_MAINT_WIN_SIZE) - 1));
710
711 priv->maint_win = ioremap(port->iores.start,
712 RIO_MAINT_WIN_SIZE);
713
714 rio_law_start = range_start;
715
716 fsl_rio_setup_rmu(port, rmu_np[i]);
Martijn de Gouwe6a546f2014-08-05 15:52:32 +0200717 fsl_rio_inbound_mem_init(priv);
Liu Gangabc3aea2011-11-12 20:02:29 +0800718
719 dbell->mport[i] = port;
Alexandre Bounine9a0b0622016-03-22 14:26:44 -0700720 pw->mport[i] = port;
Liu Gangabc3aea2011-11-12 20:02:29 +0800721
Alexandre Bouninedd64f4f2016-03-22 14:26:26 -0700722 if (rio_register_mport(port)) {
723 release_resource(&port->iores);
724 kfree(priv);
725 kfree(port);
726 continue;
727 }
Liu Gangabc3aea2011-11-12 20:02:29 +0800728 active_ports++;
729 }
730
731 if (!active_ports) {
732 rc = -ENOLINK;
733 goto err;
734 }
735
736 fsl_rio_doorbell_init(dbell);
737 fsl_rio_port_write_init(pw);
Zhang Weiad1e9382008-04-18 13:33:41 -0700738
Zhang Weicc2bb692008-04-18 13:33:41 -0700739 return 0;
Zhang Weiad1e9382008-04-18 13:33:41 -0700740err:
Liu Gangabc3aea2011-11-12 20:02:29 +0800741 kfree(pw);
Scott Wooda614db92014-04-28 18:20:09 -0500742 pw = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800743err_pw:
744 kfree(dbell);
Scott Wooda614db92014-04-28 18:20:09 -0500745 dbell = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800746err_dbell:
747 iounmap(rmu_regs_win);
Scott Wooda614db92014-04-28 18:20:09 -0500748 rmu_regs_win = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800749err_rmu:
Julia Lawall6c759332009-08-07 09:00:34 +0200750 kfree(ops);
751err_ops:
Liu Gangabc3aea2011-11-12 20:02:29 +0800752 iounmap(rio_regs_win);
Scott Wooda614db92014-04-28 18:20:09 -0500753 rio_regs_win = NULL;
Liu Gangabc3aea2011-11-12 20:02:29 +0800754err_rio_regs:
Zhang Weicc2bb692008-04-18 13:33:41 -0700755 return rc;
Matt Porter2b0c28d7f2005-11-07 01:00:19 -0800756}
Zhang Weicc2bb692008-04-18 13:33:41 -0700757
758/* The probe function for RapidIO peer-to-peer network.
759 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800760static int fsl_of_rio_rpn_probe(struct platform_device *dev)
Zhang Weicc2bb692008-04-18 13:33:41 -0700761{
Zhang Weicc2bb692008-04-18 13:33:41 -0700762 printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n",
Grant Likely61c7a082010-04-13 16:12:29 -0700763 dev->dev.of_node->full_name);
Zhang Weicc2bb692008-04-18 13:33:41 -0700764
Alexandre Bounine2f809982011-03-23 16:43:04 -0700765 return fsl_rio_setup(dev);
Zhang Weicc2bb692008-04-18 13:33:41 -0700766};
767
768static const struct of_device_id fsl_of_rio_rpn_ids[] = {
769 {
Liu Gangabc3aea2011-11-12 20:02:29 +0800770 .compatible = "fsl,srio",
Zhang Weicc2bb692008-04-18 13:33:41 -0700771 },
772 {},
773};
774
Grant Likely00006122011-02-22 19:59:54 -0700775static struct platform_driver fsl_of_rio_rpn_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700776 .driver = {
777 .name = "fsl-of-rio",
Grant Likely40182942010-04-13 16:13:02 -0700778 .of_match_table = fsl_of_rio_rpn_ids,
779 },
Zhang Weicc2bb692008-04-18 13:33:41 -0700780 .probe = fsl_of_rio_rpn_probe,
781};
782
783static __init int fsl_of_rio_rpn_init(void)
784{
Grant Likely00006122011-02-22 19:59:54 -0700785 return platform_driver_register(&fsl_of_rio_rpn_driver);
Zhang Weicc2bb692008-04-18 13:33:41 -0700786}
787
788subsys_initcall(fsl_of_rio_rpn_init);