blob: 5d3b0f014d350f580c1387c3dcd4af621ddc9282 [file] [log] [blame]
Alexandre Bouninea3725c42010-10-27 15:34:33 -07001/*
2 * IDT CPS Gen.2 Serial RapidIO switch family support
3 *
4 * Copyright 2010 Integrated Device Technology, Inc.
5 * Alexandre Bounine <alexandre.bounine@idt.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 */
12
Paul Gortmaker0a422f22011-07-15 16:48:24 -040013#include <linux/stat.h>
Alexandre Bouninea3725c42010-10-27 15:34:33 -070014#include <linux/rio.h>
15#include <linux/rio_drv.h>
16#include <linux/rio_ids.h>
17#include <linux/delay.h>
Ralf Baechle27f62b92013-06-13 02:45:53 +020018
19#include <asm/page.h>
Alexandre Bouninea3725c42010-10-27 15:34:33 -070020#include "../rio.h"
21
22#define LOCAL_RTE_CONF_DESTID_SEL 0x010070
23#define LOCAL_RTE_CONF_DESTID_SEL_PSEL 0x0000001f
24
25#define IDT_LT_ERR_REPORT_EN 0x03100c
26
27#define IDT_PORT_ERR_REPORT_EN(n) (0x031044 + (n)*0x40)
28#define IDT_PORT_ERR_REPORT_EN_BC 0x03ff04
29
30#define IDT_PORT_ISERR_REPORT_EN(n) (0x03104C + (n)*0x40)
31#define IDT_PORT_ISERR_REPORT_EN_BC 0x03ff0c
32#define IDT_PORT_INIT_TX_ACQUIRED 0x00000020
33
34#define IDT_LANE_ERR_REPORT_EN(n) (0x038010 + (n)*0x100)
35#define IDT_LANE_ERR_REPORT_EN_BC 0x03ff10
36
37#define IDT_DEV_CTRL_1 0xf2000c
38#define IDT_DEV_CTRL_1_GENPW 0x02000000
39#define IDT_DEV_CTRL_1_PRSTBEH 0x00000001
40
41#define IDT_CFGBLK_ERR_CAPTURE_EN 0x020008
42#define IDT_CFGBLK_ERR_REPORT 0xf20014
43#define IDT_CFGBLK_ERR_REPORT_GENPW 0x00000002
44
45#define IDT_AUX_PORT_ERR_CAP_EN 0x020000
46#define IDT_AUX_ERR_REPORT_EN 0xf20018
47#define IDT_AUX_PORT_ERR_LOG_I2C 0x00000002
48#define IDT_AUX_PORT_ERR_LOG_JTAG 0x00000001
49
50#define IDT_ISLTL_ADDRESS_CAP 0x021014
51
52#define IDT_RIO_DOMAIN 0xf20020
53#define IDT_RIO_DOMAIN_MASK 0x000000ff
54
55#define IDT_PW_INFO_CSR 0xf20024
56
57#define IDT_SOFT_RESET 0xf20040
58#define IDT_SOFT_RESET_REQ 0x00030097
59
60#define IDT_I2C_MCTRL 0xf20050
61#define IDT_I2C_MCTRL_GENPW 0x04000000
62
63#define IDT_JTAG_CTRL 0xf2005c
64#define IDT_JTAG_CTRL_GENPW 0x00000002
65
66#define IDT_LANE_CTRL(n) (0xff8000 + (n)*0x100)
67#define IDT_LANE_CTRL_BC 0xffff00
68#define IDT_LANE_CTRL_GENPW 0x00200000
69#define IDT_LANE_DFE_1_BC 0xffff18
70#define IDT_LANE_DFE_2_BC 0xffff1c
71
72#define IDT_PORT_OPS(n) (0xf40004 + (n)*0x100)
73#define IDT_PORT_OPS_GENPW 0x08000000
74#define IDT_PORT_OPS_PL_ELOG 0x00000040
75#define IDT_PORT_OPS_LL_ELOG 0x00000020
76#define IDT_PORT_OPS_LT_ELOG 0x00000010
77#define IDT_PORT_OPS_BC 0xf4ff04
78
79#define IDT_PORT_ISERR_DET(n) (0xf40008 + (n)*0x100)
80
81#define IDT_ERR_CAP 0xfd0000
82#define IDT_ERR_CAP_LOG_OVERWR 0x00000004
83
84#define IDT_ERR_RD 0xfd0004
85
86#define IDT_DEFAULT_ROUTE 0xde
87#define IDT_NO_ROUTE 0xdf
88
89static int
90idtg2_route_add_entry(struct rio_mport *mport, u16 destid, u8 hopcount,
91 u16 table, u16 route_destid, u8 route_port)
92{
93 /*
94 * Select routing table to update
95 */
96 if (table == RIO_GLOBAL_TABLE)
97 table = 0;
98 else
99 table++;
100
Alexandre Bounine0bf24612011-05-17 15:44:08 -0700101 if (route_port == RIO_INVALID_ROUTE)
102 route_port = IDT_DEFAULT_ROUTE;
103
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700104 rio_mport_write_config_32(mport, destid, hopcount,
105 LOCAL_RTE_CONF_DESTID_SEL, table);
106
107 /*
108 * Program destination port for the specified destID
109 */
110 rio_mport_write_config_32(mport, destid, hopcount,
111 RIO_STD_RTE_CONF_DESTID_SEL_CSR,
112 (u32)route_destid);
113
114 rio_mport_write_config_32(mport, destid, hopcount,
115 RIO_STD_RTE_CONF_PORT_SEL_CSR,
116 (u32)route_port);
117 udelay(10);
118
119 return 0;
120}
121
122static int
123idtg2_route_get_entry(struct rio_mport *mport, u16 destid, u8 hopcount,
124 u16 table, u16 route_destid, u8 *route_port)
125{
126 u32 result;
127
128 /*
129 * Select routing table to read
130 */
131 if (table == RIO_GLOBAL_TABLE)
132 table = 0;
133 else
134 table++;
135
136 rio_mport_write_config_32(mport, destid, hopcount,
137 LOCAL_RTE_CONF_DESTID_SEL, table);
138
139 rio_mport_write_config_32(mport, destid, hopcount,
140 RIO_STD_RTE_CONF_DESTID_SEL_CSR,
141 route_destid);
142
143 rio_mport_read_config_32(mport, destid, hopcount,
144 RIO_STD_RTE_CONF_PORT_SEL_CSR, &result);
145
146 if (IDT_DEFAULT_ROUTE == (u8)result || IDT_NO_ROUTE == (u8)result)
147 *route_port = RIO_INVALID_ROUTE;
148 else
149 *route_port = (u8)result;
150
151 return 0;
152}
153
154static int
155idtg2_route_clr_table(struct rio_mport *mport, u16 destid, u8 hopcount,
156 u16 table)
157{
158 u32 i;
159
160 /*
161 * Select routing table to read
162 */
163 if (table == RIO_GLOBAL_TABLE)
164 table = 0;
165 else
166 table++;
167
168 rio_mport_write_config_32(mport, destid, hopcount,
169 LOCAL_RTE_CONF_DESTID_SEL, table);
170
171 for (i = RIO_STD_RTE_CONF_EXTCFGEN;
172 i <= (RIO_STD_RTE_CONF_EXTCFGEN | 0xff);) {
173 rio_mport_write_config_32(mport, destid, hopcount,
174 RIO_STD_RTE_CONF_DESTID_SEL_CSR, i);
175 rio_mport_write_config_32(mport, destid, hopcount,
176 RIO_STD_RTE_CONF_PORT_SEL_CSR,
177 (IDT_DEFAULT_ROUTE << 24) | (IDT_DEFAULT_ROUTE << 16) |
178 (IDT_DEFAULT_ROUTE << 8) | IDT_DEFAULT_ROUTE);
179 i += 4;
180 }
181
182 return 0;
183}
184
185
186static int
187idtg2_set_domain(struct rio_mport *mport, u16 destid, u8 hopcount,
188 u8 sw_domain)
189{
190 /*
191 * Switch domain configuration operates only at global level
192 */
193 rio_mport_write_config_32(mport, destid, hopcount,
194 IDT_RIO_DOMAIN, (u32)sw_domain);
195 return 0;
196}
197
198static int
199idtg2_get_domain(struct rio_mport *mport, u16 destid, u8 hopcount,
200 u8 *sw_domain)
201{
202 u32 regval;
203
204 /*
205 * Switch domain configuration operates only at global level
206 */
207 rio_mport_read_config_32(mport, destid, hopcount,
208 IDT_RIO_DOMAIN, &regval);
209
210 *sw_domain = (u8)(regval & 0xff);
211
212 return 0;
213}
214
215static int
216idtg2_em_init(struct rio_dev *rdev)
217{
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700218 u32 regval;
219 int i, tmp;
220
221 /*
222 * This routine performs device-specific initialization only.
223 * All standard EM configuration should be performed at upper level.
224 */
225
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800226 pr_debug("RIO: %s [%d:%d]\n", __func__, rdev->destid, rdev->hopcount);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700227
228 /* Set Port-Write info CSR: PRIO=3 and CRF=1 */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800229 rio_write_config_32(rdev, IDT_PW_INFO_CSR, 0x0000e000);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700230
231 /*
232 * Configure LT LAYER error reporting.
233 */
234
235 /* Enable standard (RIO.p8) error reporting */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800236 rio_write_config_32(rdev, IDT_LT_ERR_REPORT_EN,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700237 REM_LTL_ERR_ILLTRAN | REM_LTL_ERR_UNSOLR |
238 REM_LTL_ERR_UNSUPTR);
239
240 /* Use Port-Writes for LT layer error reporting.
241 * Enable per-port reset
242 */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800243 rio_read_config_32(rdev, IDT_DEV_CTRL_1, &regval);
244 rio_write_config_32(rdev, IDT_DEV_CTRL_1,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700245 regval | IDT_DEV_CTRL_1_GENPW | IDT_DEV_CTRL_1_PRSTBEH);
246
247 /*
248 * Configure PORT error reporting.
249 */
250
251 /* Report all RIO.p8 errors supported by device */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800252 rio_write_config_32(rdev, IDT_PORT_ERR_REPORT_EN_BC, 0x807e8037);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700253
254 /* Configure reporting of implementation specific errors/events */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800255 rio_write_config_32(rdev, IDT_PORT_ISERR_REPORT_EN_BC,
256 IDT_PORT_INIT_TX_ACQUIRED);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700257
258 /* Use Port-Writes for port error reporting and enable error logging */
259 tmp = RIO_GET_TOTAL_PORTS(rdev->swpinfo);
260 for (i = 0; i < tmp; i++) {
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800261 rio_read_config_32(rdev, IDT_PORT_OPS(i), &regval);
262 rio_write_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700263 IDT_PORT_OPS(i), regval | IDT_PORT_OPS_GENPW |
264 IDT_PORT_OPS_PL_ELOG |
265 IDT_PORT_OPS_LL_ELOG |
266 IDT_PORT_OPS_LT_ELOG);
267 }
268 /* Overwrite error log if full */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800269 rio_write_config_32(rdev, IDT_ERR_CAP, IDT_ERR_CAP_LOG_OVERWR);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700270
271 /*
272 * Configure LANE error reporting.
273 */
274
275 /* Disable line error reporting */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800276 rio_write_config_32(rdev, IDT_LANE_ERR_REPORT_EN_BC, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700277
278 /* Use Port-Writes for lane error reporting (when enabled)
279 * (do per-lane update because lanes may have different configuration)
280 */
281 tmp = (rdev->did == RIO_DID_IDTCPS1848) ? 48 : 16;
282 for (i = 0; i < tmp; i++) {
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800283 rio_read_config_32(rdev, IDT_LANE_CTRL(i), &regval);
284 rio_write_config_32(rdev, IDT_LANE_CTRL(i),
285 regval | IDT_LANE_CTRL_GENPW);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700286 }
287
288 /*
289 * Configure AUX error reporting.
290 */
291
292 /* Disable JTAG and I2C Error capture */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800293 rio_write_config_32(rdev, IDT_AUX_PORT_ERR_CAP_EN, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700294
295 /* Disable JTAG and I2C Error reporting/logging */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800296 rio_write_config_32(rdev, IDT_AUX_ERR_REPORT_EN, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700297
298 /* Disable Port-Write notification from JTAG */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800299 rio_write_config_32(rdev, IDT_JTAG_CTRL, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700300
301 /* Disable Port-Write notification from I2C */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800302 rio_read_config_32(rdev, IDT_I2C_MCTRL, &regval);
303 rio_write_config_32(rdev, IDT_I2C_MCTRL, regval & ~IDT_I2C_MCTRL_GENPW);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700304
305 /*
306 * Configure CFG_BLK error reporting.
307 */
308
309 /* Disable Configuration Block error capture */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800310 rio_write_config_32(rdev, IDT_CFGBLK_ERR_CAPTURE_EN, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700311
312 /* Disable Port-Writes for Configuration Block error reporting */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800313 rio_read_config_32(rdev, IDT_CFGBLK_ERR_REPORT, &regval);
314 rio_write_config_32(rdev, IDT_CFGBLK_ERR_REPORT,
315 regval & ~IDT_CFGBLK_ERR_REPORT_GENPW);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700316
317 /* set TVAL = ~50us */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800318 rio_write_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700319 rdev->phys_efptr + RIO_PORT_LINKTO_CTL_CSR, 0x8e << 8);
320
321 return 0;
322}
323
324static int
325idtg2_em_handler(struct rio_dev *rdev, u8 portnum)
326{
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700327 u32 regval, em_perrdet, em_ltlerrdet;
328
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800329 rio_read_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700330 rdev->em_efptr + RIO_EM_LTL_ERR_DETECT, &em_ltlerrdet);
331 if (em_ltlerrdet) {
332 /* Service Logical/Transport Layer Error(s) */
333 if (em_ltlerrdet & REM_LTL_ERR_IMPSPEC) {
334 /* Implementation specific error reported */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800335 rio_read_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700336 IDT_ISLTL_ADDRESS_CAP, &regval);
337
338 pr_debug("RIO: %s Implementation Specific LTL errors" \
339 " 0x%x @(0x%x)\n",
340 rio_name(rdev), em_ltlerrdet, regval);
341
342 /* Clear implementation specific address capture CSR */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800343 rio_write_config_32(rdev, IDT_ISLTL_ADDRESS_CAP, 0);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700344
345 }
346 }
347
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800348 rio_read_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700349 rdev->em_efptr + RIO_EM_PN_ERR_DETECT(portnum), &em_perrdet);
350 if (em_perrdet) {
351 /* Service Port-Level Error(s) */
352 if (em_perrdet & REM_PED_IMPL_SPEC) {
353 /* Implementation Specific port error reported */
354
355 /* Get IS errors reported */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800356 rio_read_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700357 IDT_PORT_ISERR_DET(portnum), &regval);
358
359 pr_debug("RIO: %s Implementation Specific Port" \
360 " errors 0x%x\n", rio_name(rdev), regval);
361
362 /* Clear all implementation specific events */
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800363 rio_write_config_32(rdev,
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700364 IDT_PORT_ISERR_DET(portnum), 0);
365 }
366 }
367
368 return 0;
369}
370
371static ssize_t
372idtg2_show_errlog(struct device *dev, struct device_attribute *attr, char *buf)
373{
374 struct rio_dev *rdev = to_rio_dev(dev);
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700375 ssize_t len = 0;
376 u32 regval;
377
Alexandre Bouninea93192a2011-01-12 17:00:38 -0800378 while (!rio_read_config_32(rdev, IDT_ERR_RD, &regval)) {
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700379 if (!regval) /* 0 = end of log */
380 break;
381 len += snprintf(buf + len, PAGE_SIZE - len,
382 "%08x\n", regval);
383 if (len >= (PAGE_SIZE - 10))
384 break;
385 }
386
387 return len;
388}
389
390static DEVICE_ATTR(errlog, S_IRUGO, idtg2_show_errlog, NULL);
391
392static int idtg2_sysfs(struct rio_dev *rdev, int create)
393{
394 struct device *dev = &rdev->dev;
395 int err = 0;
396
397 if (create == RIO_SW_SYSFS_CREATE) {
398 /* Initialize sysfs entries */
399 err = device_create_file(dev, &dev_attr_errlog);
400 if (err)
401 dev_err(dev, "Unable create sysfs errlog file\n");
402 } else
403 device_remove_file(dev, &dev_attr_errlog);
404
405 return err;
406}
407
408static int idtg2_switch_init(struct rio_dev *rdev, int do_enum)
409{
410 pr_debug("RIO: %s for %s\n", __func__, rio_name(rdev));
411 rdev->rswitch->add_entry = idtg2_route_add_entry;
412 rdev->rswitch->get_entry = idtg2_route_get_entry;
413 rdev->rswitch->clr_table = idtg2_route_clr_table;
414 rdev->rswitch->set_domain = idtg2_set_domain;
415 rdev->rswitch->get_domain = idtg2_get_domain;
416 rdev->rswitch->em_init = idtg2_em_init;
417 rdev->rswitch->em_handle = idtg2_em_handler;
418 rdev->rswitch->sw_sysfs = idtg2_sysfs;
419
Alexandre Bounine0bf24612011-05-17 15:44:08 -0700420 if (do_enum) {
421 /* Ensure that default routing is disabled on startup */
422 rio_write_config_32(rdev,
423 RIO_STD_RTE_DEFAULT_PORT, IDT_NO_ROUTE);
424 }
425
Alexandre Bouninea3725c42010-10-27 15:34:33 -0700426 return 0;
427}
428
429DECLARE_RIO_SWITCH_INIT(RIO_VID_IDT, RIO_DID_IDTCPS1848, idtg2_switch_init);
430DECLARE_RIO_SWITCH_INIT(RIO_VID_IDT, RIO_DID_IDTCPS1616, idtg2_switch_init);
Alexandre Bounine2e9d4d82011-01-12 17:00:43 -0800431DECLARE_RIO_SWITCH_INIT(RIO_VID_IDT, RIO_DID_IDTVPS1616, idtg2_switch_init);
432DECLARE_RIO_SWITCH_INIT(RIO_VID_IDT, RIO_DID_IDTSPS1616, idtg2_switch_init);
Alexandre Bounine13209c22011-04-14 15:22:14 -0700433DECLARE_RIO_SWITCH_INIT(RIO_VID_IDT, RIO_DID_IDTCPS1432, idtg2_switch_init);