p4080/serdes: Implement the XAUI workaround for SERDES9 erratum
[platform/kernel/u-boot.git] / arch / powerpc / cpu / mpc85xx / fsl_corenet_serdes.c
1 /*
2  * Copyright 2009-2011 Freescale Semiconductor, Inc.
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  */
22
23 #include <common.h>
24 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
25 #include <hwconfig.h>
26 #endif
27 #include <asm/fsl_serdes.h>
28 #include <asm/immap_85xx.h>
29 #include <asm/io.h>
30 #include <asm/processor.h>
31 #include <asm/fsl_law.h>
32 #include <asm/errno.h>
33 #include "fsl_corenet_serdes.h"
34
35 static u32 serdes_prtcl_map;
36
37 #define HWCONFIG_BUFFER_SIZE    128
38
39 #ifdef DEBUG
40 static const char *serdes_prtcl_str[] = {
41         [NONE] = "NA",
42         [PCIE1] = "PCIE1",
43         [PCIE2] = "PCIE2",
44         [PCIE3] = "PCIE3",
45         [PCIE4] = "PCIE4",
46         [SATA1] = "SATA1",
47         [SATA2] = "SATA2",
48         [SRIO1] = "SRIO1",
49         [SRIO2] = "SRIO2",
50         [SGMII_FM1_DTSEC1] = "SGMII_FM1_DTSEC1",
51         [SGMII_FM1_DTSEC2] = "SGMII_FM1_DTSEC2",
52         [SGMII_FM1_DTSEC3] = "SGMII_FM1_DTSEC3",
53         [SGMII_FM1_DTSEC4] = "SGMII_FM1_DTSEC4",
54         [SGMII_FM1_DTSEC5] = "SGMII_FM1_DTSEC5",
55         [SGMII_FM2_DTSEC1] = "SGMII_FM2_DTSEC1",
56         [SGMII_FM2_DTSEC2] = "SGMII_FM2_DTSEC2",
57         [SGMII_FM2_DTSEC3] = "SGMII_FM2_DTSEC3",
58         [SGMII_FM2_DTSEC4] = "SGMII_FM2_DTSEC4",
59         [XAUI_FM1] = "XAUI_FM1",
60         [XAUI_FM2] = "XAUI_FM2",
61         [AURORA] = "DEBUG",
62 };
63 #endif
64
65 static const struct {
66         int idx;
67         unsigned int lpd; /* RCW lane powerdown bit */
68         int bank;
69 } lanes[SRDS_MAX_LANES] = {
70         { 0, 152, FSL_SRDS_BANK_1 },
71         { 1, 153, FSL_SRDS_BANK_1 },
72         { 2, 154, FSL_SRDS_BANK_1 },
73         { 3, 155, FSL_SRDS_BANK_1 },
74         { 4, 156, FSL_SRDS_BANK_1 },
75         { 5, 157, FSL_SRDS_BANK_1 },
76         { 6, 158, FSL_SRDS_BANK_1 },
77         { 7, 159, FSL_SRDS_BANK_1 },
78         { 8, 160, FSL_SRDS_BANK_1 },
79         { 9, 161, FSL_SRDS_BANK_1 },
80         { 16, 162, FSL_SRDS_BANK_2 },
81         { 17, 163, FSL_SRDS_BANK_2 },
82         { 18, 164, FSL_SRDS_BANK_2 },
83         { 19, 165, FSL_SRDS_BANK_2 },
84         { 20, 170, FSL_SRDS_BANK_3 },
85         { 21, 171, FSL_SRDS_BANK_3 },
86         { 22, 172, FSL_SRDS_BANK_3 },
87         { 23, 173, FSL_SRDS_BANK_3 },
88 };
89
90 int serdes_get_lane_idx(int lane)
91 {
92         return lanes[lane].idx;
93 }
94
95 int serdes_get_bank_by_lane(int lane)
96 {
97         return lanes[lane].bank;
98 }
99
100 int serdes_lane_enabled(int lane)
101 {
102         ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
103         serdes_corenet_t *regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
104
105         int bank = lanes[lane].bank;
106         int word = lanes[lane].lpd / 32;
107         int bit = lanes[lane].lpd % 32;
108
109         if (in_be32(&regs->bank[bank].rstctl) & SRDS_RSTCTL_SDPD)
110                 return 0;
111
112 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
113         /*
114          * For banks two and three, use the srds_lpd_b[] array instead of the
115          * RCW, because this array contains the real values of SRDS_LPD_B2 and
116          * SRDS_LPD_B3.
117          */
118         if (bank > 0)
119                 return !(srds_lpd_b[bank] & (8 >> (lane - (6 + 4 * bank))));
120 #endif
121
122         return !(in_be32(&gur->rcwsr[word]) & (0x80000000 >> bit));
123 }
124
125 int is_serdes_configured(enum srds_prtcl device)
126 {
127         ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
128
129         /* Is serdes enabled at all? */
130         if (!(in_be32(&gur->rcwsr[5]) & FSL_CORENET_RCWSR5_SRDS_EN))
131                 return 0;
132
133         return (1 << device) & serdes_prtcl_map;
134 }
135
136 static int __serdes_get_first_lane(uint32_t prtcl, enum srds_prtcl device)
137 {
138         int i;
139
140         for (i = 0; i < SRDS_MAX_LANES; i++) {
141                 if (serdes_get_prtcl(prtcl, i) == device)
142                         return i;
143         }
144
145         return -ENODEV;
146 }
147
148 /*
149  * Returns the SERDES lane (0..SRDS_MAX_LANES-1) that routes to the given
150  * device. This depends on the current SERDES protocol, as defined in the RCW.
151  *
152  * Returns a negative error code if SERDES is disabled or the given device is
153  * not supported in the current SERDES protocol.
154  */
155 int serdes_get_first_lane(enum srds_prtcl device)
156 {
157         u32 prtcl;
158         const ccsr_gur_t *gur;
159
160         gur = (typeof(gur))CONFIG_SYS_MPC85xx_GUTS_ADDR;
161
162         /* Is serdes enabled at all? */
163         if (unlikely((in_be32(&gur->rcwsr[5]) & 0x2000) == 0))
164                 return -ENODEV;
165
166         prtcl = (in_be32(&gur->rcwsr[4]) & FSL_CORENET_RCWSR4_SRDS_PRTCL) >> 26;
167
168         return __serdes_get_first_lane(prtcl, device);
169 }
170
171 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES9
172 /*
173  * Returns the SERDES bank (1, 2, or 3) that a given device is on for a given
174  * SERDES protocol.
175  *
176  * Returns a negative error code if the given device is not supported for the
177  * given SERDES protocol.
178  */
179 static int serdes_get_bank_by_device(uint32_t prtcl, enum srds_prtcl device)
180 {
181         int lane;
182
183         lane = __serdes_get_first_lane(prtcl, device);
184         if (unlikely(lane < 0))
185                 return lane;
186
187         return serdes_get_bank_by_lane(lane);
188 }
189
190 static uint32_t __serdes_get_lane_count(uint32_t prtcl, enum srds_prtcl device,
191                                         int first)
192 {
193         int lane;
194
195         for (lane = first; lane < SRDS_MAX_LANES; lane++) {
196                 if (serdes_get_prtcl(prtcl, lane) != device)
197                         break;
198         }
199
200         return lane - first;
201 }
202
203 static void __serdes_reset_rx(serdes_corenet_t *regs,
204                               uint32_t prtcl,
205                               enum srds_prtcl device)
206 {
207         int lane, idx, first, last;
208
209         lane = __serdes_get_first_lane(prtcl, device);
210         if (unlikely(lane < 0))
211                 return;
212         first = serdes_get_lane_idx(lane);
213         last = first + __serdes_get_lane_count(prtcl, device, lane);
214
215         /*
216          * Set BnGCRy0[RRST] = 0 for each lane in the each bank that is
217          * selected as XAUI to place the lane into reset.
218         */
219         for (idx = first; idx < last; idx++)
220                 clrbits_be32(&regs->lane[idx].gcr0, SRDS_GCR0_RRST);
221
222         /* Wait at least 250 ns */
223         udelay(1);
224
225         /*
226          * Set BnGCRy0[RRST] = 1 for each lane in the each bank that is
227          * selected as XAUI to bring the lane out of reset.
228          */
229         for (idx = first; idx < last; idx++)
230                 setbits_be32(&regs->lane[idx].gcr0, SRDS_GCR0_RRST);
231 }
232
233 void serdes_reset_rx(enum srds_prtcl device)
234 {
235         u32 prtcl;
236         const ccsr_gur_t *gur;
237         serdes_corenet_t *regs;
238
239         if (unlikely(device == NONE))
240                 return;
241
242         gur = (typeof(gur))CONFIG_SYS_MPC85xx_GUTS_ADDR;
243
244         /* Is serdes enabled at all? */
245         if (unlikely((in_be32(&gur->rcwsr[5]) & 0x2000) == 0))
246                 return;
247
248         regs = (typeof(regs))CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
249         prtcl = (in_be32(&gur->rcwsr[4]) & FSL_CORENET_RCWSR4_SRDS_PRTCL) >> 26;
250
251         __serdes_reset_rx(regs, prtcl, device);
252 }
253 #endif
254
255 #ifndef CONFIG_SYS_DCSRBAR_PHYS
256 #define CONFIG_SYS_DCSRBAR_PHYS 0x80000000 /* Must be 1GB-aligned for rev1.0 */
257 #define CONFIG_SYS_DCSRBAR      0x80000000
258 #define __DCSR_NOT_DEFINED_BY_CONFIG
259 #endif
260
261 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
262 static void enable_bank(ccsr_gur_t *gur, int bank)
263 {
264         u32 rcw5;
265
266         /*
267          * Enable the lanes SRDS_LPD_Bn.  The RCW bits are read-only in
268          * CCSR, and read/write in DSCR.
269          */
270         rcw5 = in_be32(gur->rcwsr + 5);
271         if (bank == FSL_SRDS_BANK_2) {
272                 rcw5 &= ~FSL_CORENET_RCWSRn_SRDS_LPD_B2;
273                 rcw5 |= srds_lpd_b[bank] << 26;
274         } else if (bank == FSL_SRDS_BANK_3) {
275                 rcw5 &= ~FSL_CORENET_RCWSRn_SRDS_LPD_B3;
276                 rcw5 |= srds_lpd_b[bank] << 18;
277         } else {
278                 printf("SERDES: enable_bank: bad bank %d\n", bank + 1);
279                 return;
280         }
281
282         /* See similar code in cpu/mpc85xx/cpu_init.c for an explanation
283          * of the DCSR mapping.
284          */
285         {
286 #ifdef __DCSR_NOT_DEFINED_BY_CONFIG
287                 struct law_entry law = find_law(CONFIG_SYS_DCSRBAR_PHYS);
288                 int law_index;
289                 if (law.index == -1)
290                         law_index = set_next_law(CONFIG_SYS_DCSRBAR_PHYS,
291                                                  LAW_SIZE_1M, LAW_TRGT_IF_DCSR);
292                 else
293                         set_law(law.index, CONFIG_SYS_DCSRBAR_PHYS, LAW_SIZE_1M,
294                                 LAW_TRGT_IF_DCSR);
295 #endif
296                 u32 *p = (void *)CONFIG_SYS_DCSRBAR + 0x20114;
297                 out_be32(p, rcw5);
298 #ifdef __DCSR_NOT_DEFINED_BY_CONFIG
299                 if (law.index == -1)
300                         disable_law(law_index);
301                 else
302                         set_law(law.index, law.addr, law.size, law.trgt_id);
303 #endif
304         }
305 }
306
307 /*
308  * To avoid problems with clock jitter, rev 2 p4080 uses the pll from
309  * bank 3 to clock banks 2 and 3, as well as a limited selection of
310  * protocol configurations.  This requires that banks 2 and 3's lanes be
311  * disabled in the RCW, and enabled with some fixup here to re-enable
312  * them, and to configure bank 2's clock parameters in bank 3's pll in
313  * cases where they differ.
314  */
315 static void p4080_erratum_serdes8(serdes_corenet_t *regs, ccsr_gur_t *gur,
316                                   u32 devdisr, u32 devdisr2, int cfg)
317 {
318         int srds_ratio_b2;
319         int rfck_sel;
320
321         /*
322          * The disabled lanes of bank 2 will cause the associated
323          * logic blocks to be disabled in DEVDISR.  We reverse that here.
324          *
325          * Note that normally it is not permitted to clear DEVDISR bits
326          * once the device has been disabled, but the hardware people
327          * say that this special case is OK.
328          */
329         clrbits_be32(&gur->devdisr, devdisr);
330         clrbits_be32(&gur->devdisr2, devdisr2);
331
332         /*
333          * Some protocols require special handling.  There are a few
334          * additional protocol configurations that can be used, which are
335          * not listed here.  See app note 4065 for supported protocol
336          * configurations.
337          */
338         switch (cfg) {
339         case 0x19:
340                 /*
341                  * Bank 2 has PCIe which wants BWSEL -- tell bank 3's PLL.
342                  * SGMII on bank 3 should still be usable.
343                  */
344                 setbits_be32(&regs->bank[FSL_SRDS_BANK_3].pllcr1,
345                              SRDS_PLLCR1_PLL_BWSEL);
346
347                 enable_bank(gur, FSL_SRDS_BANK_3);
348                 break;
349
350         case 0x0f:
351         case 0x10:
352                 /*
353                  * Banks 2 (XAUI) and 3 (SGMII) have different clocking
354                  * requirements in these configurations.  Bank 3 cannot
355                  * be used and should have its lanes (but not the bank
356                  * itself) disabled in the RCW.  We set up bank 3's pll
357                  * for bank 2's needs here.
358                  */
359                 srds_ratio_b2 = (in_be32(&gur->rcwsr[4]) >> 13) & 7;
360
361                 /* Determine refclock from XAUI ratio */
362                 switch (srds_ratio_b2) {
363                 case 1: /* 20:1 */
364                         rfck_sel = SRDS_PLLCR0_RFCK_SEL_156_25;
365                         break;
366                 case 2: /* 25:1 */
367                         rfck_sel = SRDS_PLLCR0_RFCK_SEL_125;
368                         break;
369                 default:
370                         printf("SERDES: bad SRDS_RATIO_B2 %d\n",
371                                srds_ratio_b2);
372                         return;
373                 }
374
375                 clrsetbits_be32(&regs->bank[FSL_SRDS_BANK_3].pllcr0,
376                                 SRDS_PLLCR0_RFCK_SEL_MASK, rfck_sel);
377
378                 clrsetbits_be32(&regs->bank[FSL_SRDS_BANK_3].pllcr0,
379                                 SRDS_PLLCR0_FRATE_SEL_MASK,
380                                 SRDS_PLLCR0_FRATE_SEL_6_25);
381                 break;
382         default:
383                 enable_bank(gur, FSL_SRDS_BANK_3);
384         }
385
386 }
387 #endif
388
389 void fsl_serdes_init(void)
390 {
391         ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
392         int cfg;
393         serdes_corenet_t *srds_regs;
394         int lane, bank, idx;
395         enum srds_prtcl lane_prtcl;
396         long long end_tick;
397         int have_bank[SRDS_MAX_BANK] = {};
398 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
399         u32 serdes8_devdisr = 0;
400         u32 serdes8_devdisr2 = 0;
401         char srds_lpd_opt[16];
402         const char *srds_lpd_arg;
403         size_t arglen;
404 #endif
405 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES9
406         enum srds_prtcl device;
407 #endif
408         char buffer[HWCONFIG_BUFFER_SIZE];
409         char *buf = NULL;
410
411         /*
412          * Extract hwconfig from environment since we have not properly setup
413          * the environment but need it for ddr config params
414          */
415         if (getenv_f("hwconfig", buffer, sizeof(buffer)) > 0)
416                 buf = buffer;
417
418         /* Is serdes enabled at all? */
419         if (!(in_be32(&gur->rcwsr[5]) & FSL_CORENET_RCWSR5_SRDS_EN))
420                 return;
421
422         srds_regs = (void *)(CONFIG_SYS_FSL_CORENET_SERDES_ADDR);
423         cfg = (in_be32(&gur->rcwsr[4]) & FSL_CORENET_RCWSR4_SRDS_PRTCL) >> 26;
424         debug("Using SERDES configuration 0x%x, lane settings:\n", cfg);
425
426         if (!is_serdes_prtcl_valid(cfg)) {
427                 printf("SERDES[PRTCL] = 0x%x is not valid\n", cfg);
428                 return;
429         }
430
431 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
432         /*
433          * Store the values of the fsl_srds_lpd_b2 and fsl_srds_lpd_b3
434          * hwconfig options into the srds_lpd_b[] array.  See README.p4080ds
435          * for a description of these options.
436          */
437         for (bank = 1; bank < ARRAY_SIZE(srds_lpd_b); bank++) {
438                 sprintf(srds_lpd_opt, "fsl_srds_lpd_b%u", bank + 1);
439                 srds_lpd_arg =
440                         hwconfig_subarg_f("serdes", srds_lpd_opt, &arglen, buf);
441                 if (srds_lpd_arg)
442                         srds_lpd_b[bank] =
443                                 simple_strtoul(srds_lpd_arg, NULL, 0) & 0xf;
444         }
445 #endif
446
447         /* Look for banks with all lanes disabled, and power down the bank. */
448         for (lane = 0; lane < SRDS_MAX_LANES; lane++) {
449                 enum srds_prtcl lane_prtcl = serdes_get_prtcl(cfg, lane);
450                 if (serdes_lane_enabled(lane)) {
451                         have_bank[serdes_get_bank_by_lane(lane)] = 1;
452                         serdes_prtcl_map |= (1 << lane_prtcl);
453                 }
454         }
455
456 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
457         /*
458          * Bank two uses the clock from bank three, so if bank two is enabled,
459          * then bank three must also be enabled.
460          */
461         if (have_bank[FSL_SRDS_BANK_2])
462                 have_bank[FSL_SRDS_BANK_3] = 1;
463 #endif
464
465         for (bank = 0; bank < SRDS_MAX_BANK; bank++) {
466                 if (!have_bank[bank]) {
467                         printf("SERDES: bank %d disabled\n", bank + 1);
468                         setbits_be32(&srds_regs->bank[bank].rstctl,
469                                      SRDS_RSTCTL_SDPD);
470                 }
471         }
472
473         for (lane = 0; lane < SRDS_MAX_LANES; lane++) {
474                 idx = serdes_get_lane_idx(lane);
475                 lane_prtcl = serdes_get_prtcl(cfg, lane);
476
477 #ifdef DEBUG
478                 switch (lane) {
479                 case 0:
480                         puts("Bank1: ");
481                         break;
482                 case 10:
483                         puts("\nBank2: ");
484                         break;
485                 case 14:
486                         puts("\nBank3: ");
487                         break;
488                 default:
489                         break;
490                 }
491
492                 printf("%s ", serdes_prtcl_str[lane_prtcl]);
493 #endif
494
495 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
496                 switch (lane_prtcl) {
497                 case PCIE1:
498                 case PCIE2:
499                 case PCIE3:
500                         serdes8_devdisr |= FSL_CORENET_DEVDISR_PCIE1 >>
501                                            (lane_prtcl - PCIE1);
502                         break;
503                 case SRIO1:
504                 case SRIO2:
505                         serdes8_devdisr |= FSL_CORENET_DEVDISR_SRIO1 >>
506                                            (lane_prtcl - SRIO1);
507                         break;
508                 case SGMII_FM1_DTSEC1:
509                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM1 |
510                                             FSL_CORENET_DEVDISR2_DTSEC1_1;
511                         break;
512                 case SGMII_FM1_DTSEC2:
513                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM1 |
514                                             FSL_CORENET_DEVDISR2_DTSEC1_2;
515                         break;
516                 case SGMII_FM1_DTSEC3:
517                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM1 |
518                                             FSL_CORENET_DEVDISR2_DTSEC1_3;
519                         break;
520                 case SGMII_FM1_DTSEC4:
521                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM1 |
522                                             FSL_CORENET_DEVDISR2_DTSEC1_4;
523                         break;
524                 case SGMII_FM2_DTSEC1:
525                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM2 |
526                                             FSL_CORENET_DEVDISR2_DTSEC2_1;
527                         break;
528                 case SGMII_FM2_DTSEC2:
529                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM2 |
530                                             FSL_CORENET_DEVDISR2_DTSEC2_2;
531                         break;
532                 case SGMII_FM2_DTSEC3:
533                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM2 |
534                                             FSL_CORENET_DEVDISR2_DTSEC2_3;
535                         break;
536                 case SGMII_FM2_DTSEC4:
537                         serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM2 |
538                                             FSL_CORENET_DEVDISR2_DTSEC2_4;
539                         break;
540                 case XAUI_FM1:
541                 case XAUI_FM2:
542 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES9
543                         /*
544                          * Set BnTTLCRy0[FLT_SEL] = 000011 and set
545                          * BnTTLCRy0[17] = 1 for each of the SerDes lanes
546                          * selected as XAUI on each bank before XAUI is
547                          * initialized.
548                          */
549                         clrsetbits_be32(&srds_regs->lane[idx].ttlcr0,
550                                         SRDS_TTLCR0_FLT_SEL_MASK,
551                                         0x03000000 | SRDS_TTLCR0_PM_DIS);
552 #endif
553                         if (lane_prtcl == XAUI_FM1)
554                                 serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM1    |
555                                                     FSL_CORENET_DEVDISR2_10GEC1;
556                         else
557                                 serdes8_devdisr2 |= FSL_CORENET_DEVDISR2_FM2    |
558                                                     FSL_CORENET_DEVDISR2_10GEC2;
559                         break;
560                 case AURORA:
561                         break;
562                 default:
563                         break;
564                 }
565
566 #endif
567         }
568
569 #ifdef DEBUG
570         puts("\n");
571 #endif
572
573 #endif
574
575         for (idx = 0; idx < SRDS_MAX_BANK; idx++) {
576                 u32 rstctl;
577
578                 bank = idx;
579
580 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
581                 /*
582                  * Change bank init order to 0, 2, 1, so that the third bank's
583                  * PLL is established before we start the second bank.  The
584                  * second bank uses the third bank's PLL.
585                  */
586
587                 if (idx == 1)
588                         bank = FSL_SRDS_BANK_3;
589                 else if (idx == 2)
590                         bank = FSL_SRDS_BANK_2;
591 #endif
592
593                 /* Skip disabled banks */
594                 if (!have_bank[bank])
595                         continue;
596
597 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES8
598                 if (idx == 1) {
599                         /*
600                          * Re-enable devices on banks two and three that were
601                          * disabled by the RCW, and then enable bank three. The
602                          * devices need to be enabled before either bank is
603                          * powered up.
604                          */
605                         p4080_erratum_serdes8(srds_regs, gur, serdes8_devdisr,
606                                               serdes8_devdisr2, cfg);
607                 } else if (idx == 2) {
608                         /* Eable bank two now that bank three is enabled. */
609                         enable_bank(gur, FSL_SRDS_BANK_2);
610                 }
611 #endif
612
613                 /* reset banks for errata */
614                 setbits_be32(&srds_regs->bank[bank].rstctl, SRDS_RSTCTL_RST);
615
616                 /* wait for reset complete or 1-second timeout */
617                 end_tick = usec2ticks(1000000) + get_ticks();
618                 do {
619                         rstctl = in_be32(&srds_regs->bank[bank].rstctl);
620                         if (rstctl & SRDS_RSTCTL_RSTDONE)
621                                 break;
622                 } while (end_tick > get_ticks());
623
624                 if (!(rstctl & SRDS_RSTCTL_RSTDONE)) {
625                         printf("SERDES: timeout resetting bank %d\n",
626                                bank + 1);
627                         continue;
628                 }
629         }
630
631 #ifdef CONFIG_SYS_P4080_ERRATUM_SERDES9
632         for (device = XAUI_FM1; device <= XAUI_FM2; device++) {
633                 if (is_serdes_configured(device))
634                         __serdes_reset_rx(srds_regs, cfg, device);
635         }
636 #endif
637 }