blob: e9b71278333be8df61d2ffda606cdb8f840723c1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jon Loeliger126aa702006-05-30 17:47:00 -05002/*
Timur Tabi2feb4af2010-03-31 17:44:13 -05003 * Copyright 2006,2010 Freescale Semiconductor
Jon Loeliger126aa702006-05-30 17:47:00 -05004 * Jeff Brown
5 * Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
Jon Loeliger126aa702006-05-30 17:47:00 -05006 */
7
8#include <common.h>
Jon Loeliger126aa702006-05-30 17:47:00 -05009#include <command.h>
Andy Fleming5a8a1632008-08-31 16:33:30 -050010#include <asm/io.h>
Jon Loeligerad8f8682008-01-15 13:42:41 -060011
Timur Tabi2feb4af2010-03-31 17:44:13 -050012#define pixis_base (u8 *)PIXIS_BASE
Haiying Wang3d98b852007-01-22 12:37:30 -060013
14/*
15 * Simple board reset.
16 */
17void pixis_reset(void)
18{
Kumar Gala048e7ef2009-07-22 10:12:39 -050019 out_8(pixis_base + PIXIS_RST, 0);
Haiying Wang3d98b852007-01-22 12:37:30 -060020
Timur Tabi2feb4af2010-03-31 17:44:13 -050021 while (1);
22}
Haiying Wang3d98b852007-01-22 12:37:30 -060023
Jon Loeliger126aa702006-05-30 17:47:00 -050024/*
25 * Per table 27, page 58 of MPC8641HPCN spec.
26 */
Timur Tabi2feb4af2010-03-31 17:44:13 -050027static int set_px_sysclk(unsigned long sysclk)
Jon Loeliger126aa702006-05-30 17:47:00 -050028{
29 u8 sysclk_s, sysclk_r, sysclk_v, vclkh, vclkl, sysclk_aux;
30
31 switch (sysclk) {
32 case 33:
33 sysclk_s = 0x04;
34 sysclk_r = 0x04;
35 sysclk_v = 0x07;
36 sysclk_aux = 0x00;
37 break;
38 case 40:
39 sysclk_s = 0x01;
40 sysclk_r = 0x1F;
41 sysclk_v = 0x20;
42 sysclk_aux = 0x01;
43 break;
44 case 50:
45 sysclk_s = 0x01;
46 sysclk_r = 0x1F;
47 sysclk_v = 0x2A;
48 sysclk_aux = 0x02;
49 break;
50 case 66:
51 sysclk_s = 0x01;
52 sysclk_r = 0x04;
53 sysclk_v = 0x04;
54 sysclk_aux = 0x03;
55 break;
56 case 83:
57 sysclk_s = 0x01;
58 sysclk_r = 0x1F;
59 sysclk_v = 0x4B;
60 sysclk_aux = 0x04;
61 break;
62 case 100:
63 sysclk_s = 0x01;
64 sysclk_r = 0x1F;
65 sysclk_v = 0x5C;
66 sysclk_aux = 0x05;
67 break;
68 case 134:
69 sysclk_s = 0x06;
70 sysclk_r = 0x1F;
71 sysclk_v = 0x3B;
72 sysclk_aux = 0x06;
73 break;
74 case 166:
75 sysclk_s = 0x06;
76 sysclk_r = 0x1F;
77 sysclk_v = 0x4B;
78 sysclk_aux = 0x07;
79 break;
80 default:
81 printf("Unsupported SYSCLK frequency.\n");
82 return 0;
83 }
84
Jon Loeliger80e955c2006-08-22 12:25:27 -050085 vclkh = (sysclk_s << 5) | sysclk_r;
Jon Loeliger126aa702006-05-30 17:47:00 -050086 vclkl = sysclk_v;
87
Kumar Gala048e7ef2009-07-22 10:12:39 -050088 out_8(pixis_base + PIXIS_VCLKH, vclkh);
89 out_8(pixis_base + PIXIS_VCLKL, vclkl);
Jon Loeliger126aa702006-05-30 17:47:00 -050090
Kumar Gala048e7ef2009-07-22 10:12:39 -050091 out_8(pixis_base + PIXIS_AUX, sysclk_aux);
Jon Loeliger126aa702006-05-30 17:47:00 -050092
93 return 1;
94}
95
Timur Tabi2feb4af2010-03-31 17:44:13 -050096/* Set the CFG_SYSPLL bits
97 *
98 * This only has effect if PX_VCFGEN0[SYSPLL]=1, which is true if
99 * read_from_px_regs() is called.
100 */
101static int set_px_mpxpll(unsigned long mpxpll)
Jon Loeliger126aa702006-05-30 17:47:00 -0500102{
Jon Loeliger126aa702006-05-30 17:47:00 -0500103 switch (mpxpll) {
104 case 2:
105 case 4:
106 case 6:
107 case 8:
108 case 10:
109 case 12:
110 case 14:
111 case 16:
Timur Tabi2feb4af2010-03-31 17:44:13 -0500112 clrsetbits_8(pixis_base + PIXIS_VSPEED1, 0x1F, mpxpll);
113 return 1;
Jon Loeliger126aa702006-05-30 17:47:00 -0500114 }
115
Timur Tabi2feb4af2010-03-31 17:44:13 -0500116 printf("Unsupported MPXPLL ratio.\n");
117 return 0;
Jon Loeliger126aa702006-05-30 17:47:00 -0500118}
119
Timur Tabi2feb4af2010-03-31 17:44:13 -0500120static int set_px_corepll(unsigned long corepll)
Jon Loeliger126aa702006-05-30 17:47:00 -0500121{
Jon Loeliger126aa702006-05-30 17:47:00 -0500122 u8 val;
123
Timur Tabi2feb4af2010-03-31 17:44:13 -0500124 switch (corepll) {
Jon Loeliger126aa702006-05-30 17:47:00 -0500125 case 20:
126 val = 0x08;
127 break;
128 case 25:
129 val = 0x0C;
130 break;
131 case 30:
132 val = 0x10;
133 break;
134 case 35:
135 val = 0x1C;
136 break;
137 case 40:
138 val = 0x14;
139 break;
140 case 45:
141 val = 0x0E;
142 break;
143 default:
144 printf("Unsupported COREPLL ratio.\n");
145 return 0;
146 }
147
Timur Tabi2feb4af2010-03-31 17:44:13 -0500148 clrsetbits_8(pixis_base + PIXIS_VSPEED0, 0x1F, val);
Jon Loeliger126aa702006-05-30 17:47:00 -0500149 return 1;
150}
151
Timur Tabi2feb4af2010-03-31 17:44:13 -0500152#ifndef CONFIG_SYS_PIXIS_VCFGEN0_ENABLE
153#define CONFIG_SYS_PIXIS_VCFGEN0_ENABLE 0x1C
154#endif
Jon Loeliger126aa702006-05-30 17:47:00 -0500155
Timur Tabi2feb4af2010-03-31 17:44:13 -0500156/* Tell the PIXIS where to find the COREPLL, MPXPLL, SYSCLK values
157 *
158 * The PIXIS can be programmed to look at either the on-board dip switches
159 * or various other PIXIS registers to determine the values for COREPLL,
160 * MPXPLL, and SYSCLK.
161 *
162 * CONFIG_SYS_PIXIS_VCFGEN0_ENABLE is the value to write to the PIXIS_VCFGEN0
163 * register that tells the pixis to use the various PIXIS register.
164 */
165static void read_from_px_regs(int set)
Jon Loeliger126aa702006-05-30 17:47:00 -0500166{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500167 u8 tmp = in_8(pixis_base + PIXIS_VCFGEN0);
Jon Loeliger126aa702006-05-30 17:47:00 -0500168
169 if (set)
Timur Tabi2feb4af2010-03-31 17:44:13 -0500170 tmp = tmp | CONFIG_SYS_PIXIS_VCFGEN0_ENABLE;
Jon Loeliger126aa702006-05-30 17:47:00 -0500171 else
Timur Tabi2feb4af2010-03-31 17:44:13 -0500172 tmp = tmp & ~CONFIG_SYS_PIXIS_VCFGEN0_ENABLE;
173
Kumar Gala048e7ef2009-07-22 10:12:39 -0500174 out_8(pixis_base + PIXIS_VCFGEN0, tmp);
Jon Loeliger126aa702006-05-30 17:47:00 -0500175}
176
Timur Tabi2feb4af2010-03-31 17:44:13 -0500177/* CONFIG_SYS_PIXIS_VBOOT_ENABLE is the value to write to the PX_VCFGEN1
178 * register that tells the pixis to use the PX_VBOOT[LBMAP] register.
179 */
180#ifndef CONFIG_SYS_PIXIS_VBOOT_ENABLE
181#define CONFIG_SYS_PIXIS_VBOOT_ENABLE 0x04
182#endif
Jon Loeliger126aa702006-05-30 17:47:00 -0500183
Timur Tabi2feb4af2010-03-31 17:44:13 -0500184/* Configure the source of the boot location
185 *
186 * The PIXIS can be programmed to look at either the on-board dip switches
187 * or the PX_VBOOT[LBMAP] register to determine where we should boot.
188 *
189 * If we want to boot from the alternate boot bank, we need to tell the PIXIS
190 * to ignore the on-board dip switches and use the PX_VBOOT[LBMAP] instead.
191 */
192static void read_from_px_regs_altbank(int set)
Jon Loeliger126aa702006-05-30 17:47:00 -0500193{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500194 u8 tmp = in_8(pixis_base + PIXIS_VCFGEN1);
Jon Loeliger126aa702006-05-30 17:47:00 -0500195
196 if (set)
Timur Tabi2feb4af2010-03-31 17:44:13 -0500197 tmp = tmp | CONFIG_SYS_PIXIS_VBOOT_ENABLE;
Jon Loeliger126aa702006-05-30 17:47:00 -0500198 else
Timur Tabi2feb4af2010-03-31 17:44:13 -0500199 tmp = tmp & ~CONFIG_SYS_PIXIS_VBOOT_ENABLE;
200
Kumar Gala048e7ef2009-07-22 10:12:39 -0500201 out_8(pixis_base + PIXIS_VCFGEN1, tmp);
Jon Loeliger126aa702006-05-30 17:47:00 -0500202}
203
Timur Tabi2feb4af2010-03-31 17:44:13 -0500204/* CONFIG_SYS_PIXIS_VBOOT_MASK contains the bits to set in VBOOT register that
205 * tells the PIXIS what the alternate flash bank is.
206 *
207 * Note that it's not really a mask. It contains the actual LBMAP bits that
208 * must be set to select the alternate bank. This code assumes that the
209 * primary bank has these bits set to 0, and the alternate bank has these
210 * bits set to 1.
211 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212#ifndef CONFIG_SYS_PIXIS_VBOOT_MASK
213#define CONFIG_SYS_PIXIS_VBOOT_MASK (0x40)
Jason Jindb74b3c2007-10-29 19:26:21 +0800214#endif
Jon Loeliger126aa702006-05-30 17:47:00 -0500215
Timur Tabi2feb4af2010-03-31 17:44:13 -0500216/* Tell the PIXIS to boot from the default flash bank
217 *
218 * Program the default flash bank into the VBOOT register. This register is
219 * used only if PX_VCFGEN1[FLASH]=1.
220 */
221static void clear_altbank(void)
James Yang16c3cde2008-01-16 11:58:08 -0600222{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500223 clrbits_8(pixis_base + PIXIS_VBOOT, CONFIG_SYS_PIXIS_VBOOT_MASK);
James Yang16c3cde2008-01-16 11:58:08 -0600224}
225
Timur Tabi2feb4af2010-03-31 17:44:13 -0500226/* Tell the PIXIS to boot from the alternate flash bank
227 *
228 * Program the alternate flash bank into the VBOOT register. This register is
229 * used only if PX_VCFGEN1[FLASH]=1.
230 */
231static void set_altbank(void)
Jon Loeliger126aa702006-05-30 17:47:00 -0500232{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500233 setbits_8(pixis_base + PIXIS_VBOOT, CONFIG_SYS_PIXIS_VBOOT_MASK);
Jon Loeliger126aa702006-05-30 17:47:00 -0500234}
235
Timur Tabi2feb4af2010-03-31 17:44:13 -0500236/* Reset the board with watchdog disabled.
237 *
238 * This respects the altbank setting.
239 */
240static void set_px_go(void)
Jon Loeliger126aa702006-05-30 17:47:00 -0500241{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500242 /* Disable the VELA sequencer and watchdog */
243 clrbits_8(pixis_base + PIXIS_VCTL, 9);
Jon Loeliger126aa702006-05-30 17:47:00 -0500244
Timur Tabi2feb4af2010-03-31 17:44:13 -0500245 /* Reboot by starting the VELA sequencer */
246 setbits_8(pixis_base + PIXIS_VCTL, 0x1);
Jon Loeliger126aa702006-05-30 17:47:00 -0500247
Timur Tabi2feb4af2010-03-31 17:44:13 -0500248 while (1);
Jon Loeliger126aa702006-05-30 17:47:00 -0500249}
250
Timur Tabi2feb4af2010-03-31 17:44:13 -0500251/* Reset the board with watchdog enabled.
252 *
253 * This respects the altbank setting.
254 */
255static void set_px_go_with_watchdog(void)
Jon Loeliger126aa702006-05-30 17:47:00 -0500256{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500257 /* Disable the VELA sequencer */
258 clrbits_8(pixis_base + PIXIS_VCTL, 1);
Jon Loeliger126aa702006-05-30 17:47:00 -0500259
Timur Tabi2feb4af2010-03-31 17:44:13 -0500260 /* Enable the watchdog and reboot by starting the VELA sequencer */
261 setbits_8(pixis_base + PIXIS_VCTL, 0x9);
Jon Loeliger126aa702006-05-30 17:47:00 -0500262
Timur Tabi2feb4af2010-03-31 17:44:13 -0500263 while (1);
Jon Loeliger126aa702006-05-30 17:47:00 -0500264}
265
Timur Tabi2feb4af2010-03-31 17:44:13 -0500266/* Disable the watchdog
267 *
268 */
269static int pixis_disable_watchdog_cmd(cmd_tbl_t *cmdtp, int flag, int argc,
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200270 char * const argv[])
Jon Loeliger126aa702006-05-30 17:47:00 -0500271{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500272 /* Disable the VELA sequencer and the watchdog */
273 clrbits_8(pixis_base + PIXIS_VCTL, 9);
Jon Loeliger126aa702006-05-30 17:47:00 -0500274
275 return 0;
276}
277
Jon Loeliger126aa702006-05-30 17:47:00 -0500278U_BOOT_CMD(
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200279 diswd, 1, 0, pixis_disable_watchdog_cmd,
280 "Disable watchdog timer",
281 ""
282);
Jon Loeliger126aa702006-05-30 17:47:00 -0500283
Liu Yubff188b2008-10-10 11:40:58 +0800284#ifdef CONFIG_PIXIS_SGMII_CMD
Timur Tabi2feb4af2010-03-31 17:44:13 -0500285
286/* Enable or disable SGMII mode for a TSEC
287 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200288static int pixis_set_sgmii(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming5a8a1632008-08-31 16:33:30 -0500289{
290 int which_tsec = -1;
Timur Tabi2feb4af2010-03-31 17:44:13 -0500291 unsigned char mask;
292 unsigned char switch_mask;
Andy Fleming5a8a1632008-08-31 16:33:30 -0500293
Timur Tabi2feb4af2010-03-31 17:44:13 -0500294 if ((argc > 2) && (strcmp(argv[1], "all") != 0))
295 which_tsec = simple_strtoul(argv[1], NULL, 0);
Andy Fleming5a8a1632008-08-31 16:33:30 -0500296
297 switch (which_tsec) {
Liu Yubff188b2008-10-10 11:40:58 +0800298#ifdef CONFIG_TSEC1
Andy Fleming5a8a1632008-08-31 16:33:30 -0500299 case 1:
300 mask = PIXIS_VSPEED2_TSEC1SER;
301 switch_mask = PIXIS_VCFGEN1_TSEC1SER;
302 break;
Liu Yubff188b2008-10-10 11:40:58 +0800303#endif
304#ifdef CONFIG_TSEC2
305 case 2:
306 mask = PIXIS_VSPEED2_TSEC2SER;
307 switch_mask = PIXIS_VCFGEN1_TSEC2SER;
308 break;
309#endif
310#ifdef CONFIG_TSEC3
Andy Fleming5a8a1632008-08-31 16:33:30 -0500311 case 3:
312 mask = PIXIS_VSPEED2_TSEC3SER;
313 switch_mask = PIXIS_VCFGEN1_TSEC3SER;
314 break;
Liu Yubff188b2008-10-10 11:40:58 +0800315#endif
316#ifdef CONFIG_TSEC4
317 case 4:
318 mask = PIXIS_VSPEED2_TSEC4SER;
319 switch_mask = PIXIS_VCFGEN1_TSEC4SER;
320 break;
321#endif
Andy Fleming5a8a1632008-08-31 16:33:30 -0500322 default:
Liu Yubff188b2008-10-10 11:40:58 +0800323 mask = PIXIS_VSPEED2_MASK;
324 switch_mask = PIXIS_VCFGEN1_MASK;
Andy Fleming5a8a1632008-08-31 16:33:30 -0500325 break;
326 }
327
328 /* Toggle whether the switches or FPGA control the settings */
329 if (!strcmp(argv[argc - 1], "switch"))
Kumar Gala048e7ef2009-07-22 10:12:39 -0500330 clrbits_8(pixis_base + PIXIS_VCFGEN1, switch_mask);
Andy Fleming5a8a1632008-08-31 16:33:30 -0500331 else
Kumar Gala048e7ef2009-07-22 10:12:39 -0500332 setbits_8(pixis_base + PIXIS_VCFGEN1, switch_mask);
Andy Fleming5a8a1632008-08-31 16:33:30 -0500333
334 /* If it's not the switches, enable or disable SGMII, as specified */
335 if (!strcmp(argv[argc - 1], "on"))
Kumar Gala048e7ef2009-07-22 10:12:39 -0500336 clrbits_8(pixis_base + PIXIS_VSPEED2, mask);
Andy Fleming5a8a1632008-08-31 16:33:30 -0500337 else if (!strcmp(argv[argc - 1], "off"))
Kumar Gala048e7ef2009-07-22 10:12:39 -0500338 setbits_8(pixis_base + PIXIS_VSPEED2, mask);
Andy Fleming5a8a1632008-08-31 16:33:30 -0500339
340 return 0;
341}
342
343U_BOOT_CMD(
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200344 pixis_set_sgmii, CONFIG_SYS_MAXARGS, 1, pixis_set_sgmii,
345 "pixis_set_sgmii"
346 " - Enable or disable SGMII mode for a given TSEC \n",
347 "\npixis_set_sgmii [TSEC num] <on|off|switch>\n"
348 " TSEC num: 1,2,3,4 or 'all'. 'all' is default.\n"
349 " on - enables SGMII\n"
350 " off - disables SGMII\n"
351 " switch - use switch settings"
352);
Timur Tabi2feb4af2010-03-31 17:44:13 -0500353
Andy Fleming5a8a1632008-08-31 16:33:30 -0500354#endif
355
Jon Loeliger126aa702006-05-30 17:47:00 -0500356/*
357 * This function takes the non-integral cpu:mpx pll ratio
358 * and converts it to an integer that can be used to assign
359 * FPGA register values.
360 * input: strptr i.e. argv[2]
361 */
Timur Tabi2feb4af2010-03-31 17:44:13 -0500362static unsigned long strfractoint(char *strptr)
Jon Loeliger126aa702006-05-30 17:47:00 -0500363{
Timur Tabi2feb4af2010-03-31 17:44:13 -0500364 int i, j;
Jon Loeliger126aa702006-05-30 17:47:00 -0500365 int mulconst;
Kumar Gala8dbd4b72011-11-09 10:02:11 -0600366 int no_dec = 0;
Timur Tabi2feb4af2010-03-31 17:44:13 -0500367 unsigned long intval = 0, decval = 0;
368 char intarr[3], decarr[3];
Jon Loeliger126aa702006-05-30 17:47:00 -0500369
370 /* Assign the integer part to intarr[]
371 * If there is no decimal point i.e.
372 * if the ratio is an integral value
373 * simply create the intarr.
374 */
375 i = 0;
James Yang16c3cde2008-01-16 11:58:08 -0600376 while (strptr[i] != '.') {
Jon Loeliger126aa702006-05-30 17:47:00 -0500377 if (strptr[i] == 0) {
378 no_dec = 1;
379 break;
380 }
381 intarr[i] = strptr[i];
382 i++;
383 }
384
Jon Loeliger126aa702006-05-30 17:47:00 -0500385 intarr[i] = '\0';
386
387 if (no_dec) {
388 /* Currently needed only for single digit corepll ratios */
Jon Loeliger80e955c2006-08-22 12:25:27 -0500389 mulconst = 10;
Jon Loeliger126aa702006-05-30 17:47:00 -0500390 decval = 0;
391 } else {
392 j = 0;
Jon Loeliger80e955c2006-08-22 12:25:27 -0500393 i++; /* Skipping the decimal point */
James Yang16c3cde2008-01-16 11:58:08 -0600394 while ((strptr[i] >= '0') && (strptr[i] <= '9')) {
Jon Loeliger126aa702006-05-30 17:47:00 -0500395 decarr[j] = strptr[i];
396 i++;
397 j++;
398 }
399
Jon Loeliger126aa702006-05-30 17:47:00 -0500400 decarr[j] = '\0';
401
402 mulconst = 1;
Timur Tabi2feb4af2010-03-31 17:44:13 -0500403 for (i = 0; i < j; i++)
Jon Loeliger126aa702006-05-30 17:47:00 -0500404 mulconst *= 10;
Timur Tabi2feb4af2010-03-31 17:44:13 -0500405 decval = simple_strtoul(decarr, NULL, 10);
Jon Loeliger126aa702006-05-30 17:47:00 -0500406 }
407
Timur Tabi2feb4af2010-03-31 17:44:13 -0500408 intval = simple_strtoul(intarr, NULL, 10);
Jon Loeliger126aa702006-05-30 17:47:00 -0500409 intval = intval * mulconst;
410
Timur Tabi2feb4af2010-03-31 17:44:13 -0500411 return intval + decval;
Jon Loeliger126aa702006-05-30 17:47:00 -0500412}
Haiying Wang3d98b852007-01-22 12:37:30 -0600413
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200414static int pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Haiying Wang3d98b852007-01-22 12:37:30 -0600415{
James Yang16c3cde2008-01-16 11:58:08 -0600416 unsigned int i;
417 char *p_cf = NULL;
418 char *p_cf_sysclk = NULL;
419 char *p_cf_corepll = NULL;
420 char *p_cf_mpxpll = NULL;
421 char *p_altbank = NULL;
422 char *p_wd = NULL;
Timur Tabi2feb4af2010-03-31 17:44:13 -0500423 int unknown_param = 0;
Haiying Wang3d98b852007-01-22 12:37:30 -0600424
425 /*
426 * No args is a simple reset request.
427 */
428 if (argc <= 1) {
429 pixis_reset();
430 /* not reached */
431 }
432
James Yang16c3cde2008-01-16 11:58:08 -0600433 for (i = 1; i < argc; i++) {
434 if (strcmp(argv[i], "cf") == 0) {
435 p_cf = argv[i];
436 if (i + 3 >= argc) {
437 break;
Haiying Wang3d98b852007-01-22 12:37:30 -0600438 }
James Yang16c3cde2008-01-16 11:58:08 -0600439 p_cf_sysclk = argv[i+1];
440 p_cf_corepll = argv[i+2];
441 p_cf_mpxpll = argv[i+3];
442 i += 3;
443 continue;
Haiying Wang3d98b852007-01-22 12:37:30 -0600444 }
445
James Yang16c3cde2008-01-16 11:58:08 -0600446 if (strcmp(argv[i], "altbank") == 0) {
447 p_altbank = argv[i];
448 continue;
449 }
450
451 if (strcmp(argv[i], "wd") == 0) {
452 p_wd = argv[i];
453 continue;
454 }
455
456 unknown_param = 1;
457 }
458
459 /*
460 * Check that cf has all required parms
461 */
462 if ((p_cf && !(p_cf_sysclk && p_cf_corepll && p_cf_mpxpll))
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200463 || unknown_param) {
Ed Swarthoutf7fecc32008-10-08 23:38:01 -0500464#ifdef CONFIG_SYS_LONGHELP
James Yang16c3cde2008-01-16 11:58:08 -0600465 puts(cmdtp->help);
York Sun5bdeff32013-05-31 08:48:04 -0700466 putc('\n');
Ed Swarthoutf7fecc32008-10-08 23:38:01 -0500467#endif
Haiying Wang3d98b852007-01-22 12:37:30 -0600468 return 1;
469 }
470
James Yang16c3cde2008-01-16 11:58:08 -0600471 /*
472 * PIXIS seems to be sensitive to the ordering of
473 * the registers that are touched.
474 */
475 read_from_px_regs(0);
476
Timur Tabi2feb4af2010-03-31 17:44:13 -0500477 if (p_altbank)
James Yang16c3cde2008-01-16 11:58:08 -0600478 read_from_px_regs_altbank(0);
Timur Tabi2feb4af2010-03-31 17:44:13 -0500479
James Yang16c3cde2008-01-16 11:58:08 -0600480 clear_altbank();
481
482 /*
483 * Clock configuration specified.
484 */
485 if (p_cf) {
486 unsigned long sysclk;
487 unsigned long corepll;
488 unsigned long mpxpll;
489
490 sysclk = simple_strtoul(p_cf_sysclk, NULL, 10);
Timur Tabi2feb4af2010-03-31 17:44:13 -0500491 corepll = strfractoint(p_cf_corepll);
James Yang16c3cde2008-01-16 11:58:08 -0600492 mpxpll = simple_strtoul(p_cf_mpxpll, NULL, 10);
493
494 if (!(set_px_sysclk(sysclk)
495 && set_px_corepll(corepll)
496 && set_px_mpxpll(mpxpll))) {
Ed Swarthoutf7fecc32008-10-08 23:38:01 -0500497#ifdef CONFIG_SYS_LONGHELP
James Yang16c3cde2008-01-16 11:58:08 -0600498 puts(cmdtp->help);
York Sun5bdeff32013-05-31 08:48:04 -0700499 putc('\n');
Ed Swarthoutf7fecc32008-10-08 23:38:01 -0500500#endif
James Yang16c3cde2008-01-16 11:58:08 -0600501 return 1;
502 }
503 read_from_px_regs(1);
504 }
505
506 /*
507 * Altbank specified
508 *
509 * NOTE CHANGE IN BEHAVIOR: previous code would default
510 * to enabling watchdog if altbank is specified.
511 * Now the watchdog must be enabled explicitly using 'wd'.
512 */
513 if (p_altbank) {
514 set_altbank();
515 read_from_px_regs_altbank(1);
516 }
517
518 /*
519 * Reset with watchdog specified.
520 */
Timur Tabi2feb4af2010-03-31 17:44:13 -0500521 if (p_wd)
James Yang16c3cde2008-01-16 11:58:08 -0600522 set_px_go_with_watchdog();
Timur Tabi2feb4af2010-03-31 17:44:13 -0500523 else
James Yang16c3cde2008-01-16 11:58:08 -0600524 set_px_go();
James Yang16c3cde2008-01-16 11:58:08 -0600525
526 /*
527 * Shouldn't be reached.
528 */
Haiying Wang3d98b852007-01-22 12:37:30 -0600529 return 0;
530}
531
532
533U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200534 pixis_reset, CONFIG_SYS_MAXARGS, 1, pixis_reset_cmd,
Peter Tyser2fb26042009-01-27 18:03:12 -0600535 "Reset the board using the FPGA sequencer",
Haiying Wang3d98b852007-01-22 12:37:30 -0600536 " pixis_reset\n"
537 " pixis_reset [altbank]\n"
538 " pixis_reset altbank wd\n"
539 " pixis_reset altbank cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio>\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200540 " pixis_reset cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio>"
541);