]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/hal/arm/mx25/var/v2_0/src/cmds.c
edf5c94031c6d9ff281b289e3e0892ddd34a501f
[karo-tx-redboot.git] / packages / hal / arm / mx25 / var / v2_0 / src / cmds.c
1 //==========================================================================
2 //
3 //              cmds.c
4 //
5 //              SoC [platform] specific RedBoot commands
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 #include <redboot.h>
42 #include <cyg/hal/hal_intr.h>
43 #include <cyg/hal/plf_mmap.h>
44 #include <cyg/hal/hal_soc.h>            // Hardware definitions
45 #include <cyg/hal/hal_cache.h>
46
47 #define IIM_FUSE_DEBUG
48
49 typedef unsigned long long      u64;
50 typedef unsigned int            u32;
51 typedef unsigned short          u16;
52 typedef unsigned char           u8;
53
54 u32 pll_clock(enum plls pll);
55 u32 get_main_clock(enum main_clocks clk);
56 u32 get_peri_clock(enum peri_clocks clk);
57
58 static void clock_setup(int argc, char *argv[]);
59
60 RedBoot_cmd("clock",
61                         "Setup/Display clock\nSyntax:",
62                         "[<ARM core clock in MHz> [:<ARM-AHB clock divider>]\n\
63 If a selection is zero or no divider is specified, the optimal divider values\n\
64 will be chosen. Examples:\n\
65    [clock]         -> Show various clocks\n\
66    [clock 399]     -> Core=399   AHB=133           IPG=66.5(AHB/2)\n\
67    [clock 532:4]   -> Core=532   AHB=133(Core/4)   IPG=66.5(AHB/2)\n\
68    [clock 399:4]   -> Core=399   AHB=99.75(Core/4) IPG=49.875(AHB/2)\n\
69    [clock 199:3]   -> Core=199.5 AHB=66.5(Core/3)  IPG=33.25(AHB/2)\n\
70    [clock 133:2]   -> Core=133   AHB=66.5(Core/2)  IPG=33.25(AHB/2)\n\
71                       Core range: 532-133, AHB range: 133-66.5, IPG is always AHB/2\n",
72                         clock_setup
73                    );
74
75 void clock_spi_enable(unsigned int spi_clk)
76 {
77         diag_printf("%s: stubbed\n", __func__);
78 }
79
80 static void clock_setup(int argc,char *argv[])
81 {
82         u32 i, data[2], core_clk, ahb_div, cctl, arm_src, arm_div;
83                 unsigned long temp;
84
85         if (argc == 1)
86                 goto print_clock;
87
88         for (i = 0;     i < 2; i++) {
89                 if (!parse_num(argv[1], &temp, &argv[1], ":")) {
90                         diag_printf("Error: Invalid parameter\n");
91                         return;
92                 }
93                 data[i] = temp;
94         }
95
96         core_clk = data[0];
97         ahb_div = data[1] - 1;
98
99         if (core_clk / (ahb_div + 1) > 133 ||
100                 core_clk / (ahb_div + 1) < 66) {
101                 diag_printf("Illegal AHB divider value specified\n");
102                 return;
103         }
104
105         switch (core_clk) {
106         case 532:
107                 arm_src = 0;
108                 arm_div = 1 - 1;
109                 break;
110         case 399:
111                 arm_src = 1;
112                 arm_div = 1 - 1;
113                 break;
114         case 199:
115         case 200:
116                 arm_src = 1;
117                 arm_div = 2 - 1;
118                 break;
119         case 133:
120                 arm_src = 1;
121                 arm_div = 3 - 1;
122                 break;
123         default:
124                 diag_printf("Illegal core clock value specified\n");
125                 return;
126         }
127
128         cyg_hal_plf_serial_stop();
129
130         cctl = readl(CCM_BASE_ADDR + CLKCTL_CCTL);
131         cctl &= ~0xF0004000;
132         cctl |= arm_div << 30;
133         cctl |= ahb_div << 28;
134         cctl |= arm_src << 14;
135         writel(cctl, CCM_BASE_ADDR + CLKCTL_CCTL);
136
137         hal_delay_us(10000);
138         cyg_hal_plf_serial_init();
139
140         diag_printf("\n<<<New clock settings>>>\n");
141
142         // Now printing clocks
143 print_clock:
144         diag_printf("\nMPLL\t\tUPLL\n");
145         diag_printf("=========================\n");
146         diag_printf("%-16d%-16d\n\n", pll_clock(MCU_PLL), pll_clock(USB_PLL));
147         diag_printf("CPU\t\tAHB\t\tIPG\n");
148         diag_printf("========================================\n");
149         diag_printf("%-16d%-16d%-16d\n\n",
150                                 get_main_clock(CPU_CLK),
151                                 get_main_clock(AHB_CLK),
152                                 get_main_clock(IPG_CLK));
153
154         diag_printf("UART\n");
155         diag_printf("========\n");
156         diag_printf("%-16d\n\n",
157                                 get_peri_clock(PER_UART_CLK));
158
159         diag_printf("SPI\n");
160         diag_printf("========\n");
161         diag_printf("%-16d\n\n",
162                                 get_peri_clock(SPI1_CLK));
163 }
164
165 /*!
166  * This function returns the PLL output value in Hz based on pll.
167  */
168 u32 pll_clock(enum plls pll)
169 {
170         int mfi, mfn, mfd, pdf;
171         u32 pll_out;
172         u32 reg = readl(pll);
173         u64 ref_clk;
174
175         pdf = (reg >> 26) & 0xF;
176         mfd = (reg >> 16) & 0x3FF;
177         mfi = (reg >> 10) & 0xF;
178         if (mfi < 5) {
179                 mfi = 5;
180         }
181         mfn = reg & 0x3FF;
182         if (mfn >= 512) {
183                 mfn = 1024 - mfn;
184         }
185         ref_clk = PLL_REF_CLK;
186
187         pll_out = (2 * ref_clk * mfi + ((2 * ref_clk * mfn) / (mfd + 1))) /
188                 (pdf + 1);
189         return pll_out;
190 }
191
192 /*!
193  * This function returns the main clock value in Hz.
194  */
195 u32 get_main_clock(enum main_clocks clk)
196 {
197         u32 cctl = readl(CCM_BASE_ADDR + CLKCTL_CCTL);
198         u32 div;
199         u32 ret_val = 0;
200
201         switch (clk) {
202         case CPU_CLK:
203                 ret_val = pll_clock(MCU_PLL);
204                 if (cctl & CRM_CCTL_ARM_SRC) {
205                         ret_val = (ret_val * 3) / 4;
206                 }
207                 div = ((cctl >> CRM_CCTL_ARM_OFFSET) & 3) + 1;
208                 ret_val /= div;
209                 break;
210         case AHB_CLK:
211                 div = ((cctl >> CRM_CCTL_AHB_OFFSET) & 3) + 1;
212                 ret_val = get_main_clock(CPU_CLK) / div;
213                 break;
214         case IPG_CLK:
215         case IPG_PER_CLK:
216                 ret_val = get_main_clock(AHB_CLK) / 2;
217                 break;
218         default:
219                 diag_printf("Unknown clock: %d\n", clk);
220         }
221
222         return ret_val;
223 }
224
225 /*!
226  * This function returns the peripheral clock value in Hz.
227  */
228 u32 get_peri_clock(enum peri_clocks clk)
229 {
230         u32 ret_val = 0;
231         u32 pcdr, div;
232
233         switch (clk) {
234         case PER_UART_CLK:
235                 pcdr = readl(CCM_BASE_ADDR + CLKCTL_PCDR3);
236                 div = (pcdr >> 24) + 1;
237                 ret_val = get_main_clock(AHB_CLK) / div;
238                 break;
239         case SPI1_CLK:
240         case SPI2_CLK:
241                 ret_val = get_main_clock(IPG_CLK);
242                 break;
243         default:
244                 diag_printf("%s(): This clock: %d not supported yet\n",
245                                         __FUNCTION__, clk);
246         }
247         return ret_val;
248 }
249
250
251 #define IIM_ERR_SHIFT           8
252 #define POLL_FUSE_PRGD          (IIM_STAT_PRGD | (IIM_ERR_PRGE << IIM_ERR_SHIFT))
253 #define POLL_FUSE_SNSD          (IIM_STAT_SNSD | (IIM_ERR_SNSE << IIM_ERR_SHIFT))
254
255 static void fuse_op_start(void)
256 {
257         /* Do not generate interrupt */
258         writel(0, IIM_BASE_ADDR + IIM_STATM_OFF);
259         // clear the status bits and error bits
260         writel(0x3, IIM_BASE_ADDR + IIM_STAT_OFF);
261         writel(0xFE, IIM_BASE_ADDR + IIM_ERR_OFF);
262 }
263
264 /*
265  * The action should be either:
266  *                      POLL_FUSE_PRGD
267  * or:
268  *                      POLL_FUSE_SNSD
269  */
270 static int poll_fuse_op_done(int action)
271 {
272
273         u32 status, error;
274
275         if (action != POLL_FUSE_PRGD && action != POLL_FUSE_SNSD) {
276                 diag_printf("%s(%d) invalid operation\n", __FUNCTION__, action);
277                 return -1;
278         }
279
280         /* Poll busy bit till it is NOT set */
281         while ((readl(IIM_BASE_ADDR + IIM_STAT_OFF) & IIM_STAT_BUSY) != 0 ) {
282         }
283
284         /* Test for successful write */
285         status = readl(IIM_BASE_ADDR + IIM_STAT_OFF);
286         error = readl(IIM_BASE_ADDR + IIM_ERR_OFF);
287
288         if ((status & action) != 0 && (error & (action >> IIM_ERR_SHIFT)) == 0) {
289                 if (error) {
290                         diag_printf("Even though the operation seems successful...\n");
291                         diag_printf("There are some error(s) at addr=0x%02lx: 0x%02x\n",
292                                                 (IIM_BASE_ADDR + IIM_ERR_OFF), error);
293                 }
294                 return 0;
295         }
296         diag_printf("%s(%d) failed\n", __FUNCTION__, action);
297         diag_printf("status address=0x%02lx, value=0x%02x\n",
298                                 (IIM_BASE_ADDR + IIM_STAT_OFF), status);
299         diag_printf("There are some error(s) at addr=0x%02lx: 0x%02x\n",
300                                 (IIM_BASE_ADDR + IIM_ERR_OFF), error);
301         return -1;
302 }
303
304 static void sense_fuse(int bank, int row, int bit)
305 {
306     int ret;
307     int addr, addr_l, addr_h, reg_addr;
308
309         fuse_op_start();
310
311         addr = ((bank << 11) | (row << 3) | (bit & 0x7));
312         /* Set IIM Program Upper Address */
313         addr_h = (addr >> 8) & 0x000000FF;
314         /* Set IIM Program Lower Address */
315         addr_l = (addr & 0x000000FF);
316
317 #ifdef IIM_FUSE_DEBUG
318         diag_printf("%s: addr_h=0x%02x, addr_l=0x%02x\n",
319                                 __FUNCTION__, addr_h, addr_l);
320 #endif
321         writel(addr_h, IIM_BASE_ADDR + IIM_UA_OFF);
322         writel(addr_l, IIM_BASE_ADDR + IIM_LA_OFF);
323         /* Start sensing */
324         writel(0x8, IIM_BASE_ADDR + IIM_FCTL_OFF);
325         if ((ret = poll_fuse_op_done(POLL_FUSE_SNSD)) != 0) {
326                 diag_printf("%s(bank: %d, row: %d, bit: %d failed\n",
327                                         __FUNCTION__, bank, row, bit);
328         }
329         reg_addr = IIM_BASE_ADDR + IIM_SDAT_OFF;
330         if (ret == 0)
331                 diag_printf("fuses at (bank:%d, row:%d) = 0x%02x\n", bank, row, readl(reg_addr));
332 }
333
334 void do_fuse_read(int argc, char *argv[])
335 {
336         unsigned long bank, row;
337
338         if (argc == 1) {
339                 diag_printf("Useage: fuse_read <bank> <row>\n");
340                 return;
341         } else if (argc == 3) {
342                 if (!parse_num(argv[1], &bank, &argv[1], " ")) {
343                         diag_printf("Error: Invalid parameter\n");
344                         return;
345                 }
346                 if (!parse_num(argv[2], &row, &argv[2], " ")) {
347                         diag_printf("Error: Invalid parameter\n");
348                         return;
349                 }
350
351                 diag_printf("Read fuse at bank:%ld row:%ld\n", bank, row);
352                 sense_fuse(bank, row, 0);
353
354         } else {
355                 diag_printf("Passing in wrong arguments: %d\n", argc);
356                 diag_printf("Useage: fuse_read <bank> <row>\n");
357         }
358 }
359
360 /* Blow fuses based on the bank, row and bit positions (all 0-based)
361 */
362 int fuse_blow(int bank,int row,int bit)
363 {
364         int addr, addr_l, addr_h, ret = -1;
365
366         fuse_op_start();
367
368         /* Disable IIM Program Protect */
369         writel(0xAA, IIM_BASE_ADDR + IIM_PREG_P_OFF);
370
371         addr = ((bank << 11) | (row << 3) | (bit & 0x7));
372         /* Set IIM Program Upper Address */
373         addr_h = (addr >> 8) & 0x000000FF;
374         /* Set IIM Program Lower Address */
375         addr_l = (addr & 0x000000FF);
376
377 #ifdef IIM_FUSE_DEBUG
378         diag_printf("blowing addr_h=0x%02x, addr_l=0x%02x\n", addr_h, addr_l);
379 #endif
380
381         writel(addr_h, IIM_BASE_ADDR + IIM_UA_OFF);
382         writel(addr_l, IIM_BASE_ADDR + IIM_LA_OFF);
383         /* Start Programming */
384         writel(0x71, IIM_BASE_ADDR + IIM_FCTL_OFF);
385         if (poll_fuse_op_done(POLL_FUSE_PRGD) == 0) {
386                 ret = 0;
387         }
388
389         /* Enable IIM Program Protect */
390         writel(0x0, IIM_BASE_ADDR + IIM_PREG_P_OFF);
391         return ret;
392 }
393
394 /*
395  * This command is added for burning IIM fuses
396  */
397 RedBoot_cmd("fuse_read",
398                         "read some fuses",
399                         "<bank> <row>",
400                         do_fuse_read
401                    );
402
403 RedBoot_cmd("fuse_blow",
404                         "blow some fuses",
405                         "<bank> <row> <value>",
406                         do_fuse_blow
407                    );
408
409 #define                 INIT_STRING                             "12345678"
410 static char ready_to_blow[] = INIT_STRING;
411
412 void quick_itoa(u32 num, char *a)
413 {
414         int i, j, k;
415         for (i = 0; i <= 7; i++) {
416                 j = (num >> (4 * i)) & 0xF;
417                 k = (j < 10) ? '0' : ('a' - 0xa);
418                 a[i] = j + k;
419         }
420 }
421
422 void do_fuse_blow(int argc, char *argv[])
423 {
424         unsigned long bank, row, value;
425                 int i;
426
427         if (argc == 1) {
428                 diag_printf("It is too dangeous for you to use this command.\n");
429                 return;
430         } else if (argc == 2) {
431                 if (strcasecmp(argv[1], "nandboot") == 0) {
432                         quick_itoa(readl(EPIT_BASE_ADDR + EPITCNR), ready_to_blow);
433                         diag_printf("%s\n", ready_to_blow);
434                 }
435                 return;
436         } else if (argc == 3) {
437                 if (strcasecmp(argv[1], "nandboot") == 0 &&
438                         strcasecmp(argv[2], ready_to_blow) == 0) {
439 #if defined(CYGPKG_HAL_ARM_MXC91131) || defined(CYGPKG_HAL_ARM_MX21) || defined(CYGPKG_HAL_ARM_MX27) || defined(CYGPKG_HAL_ARM_MX31) ||defined(CYGPKG_HAL_ARM_MX35) || defined(CYGPKG_HAL_ARM_MX25)
440                         diag_printf("No need to blow any fuses for NAND boot on this platform\n\n");
441 #else
442 #error "Are you sure you want this?"
443                         diag_printf("Ready to burn NAND boot fuses\n");
444                         if (fuse_blow(0, 16, 1) != 0 || fuse_blow(0, 16, 7) != 0) {
445                                 diag_printf("NAND BOOT fuse blown failed miserably ...\n");
446                         } else {
447                                 diag_printf("NAND BOOT fuse blown successfully ...\n");
448                         }
449                 } else {
450                         diag_printf("Not ready: %s, %s\n", argv[1], argv[2]);
451 #endif
452                 }
453         } else if (argc == 4) {
454                 if (!parse_num(argv[1], &bank, &argv[1], " ")) {
455                                 diag_printf("Error: Invalid fuse bank\n");
456                                 return;
457                 }
458                 if (!parse_num(argv[2], &row, &argv[2], " ")) {
459                                 diag_printf("Error: Invalid fuse row\n");
460                                 return;
461                 }
462                 if (!parse_num(argv[3], &value, &argv[3], " ")) {
463                                 diag_printf("Error: Invalid value\n");
464                                 return;
465                 }
466                 if (!verify_action("Confirm to blow fuse at bank:%ld row:%ld value:0x%02lx (%ld)",
467                                                    bank, row, value)) {
468                         diag_printf("fuse_blow canceled\n");
469                         return;
470                 }
471
472                 diag_printf("Blowing fuse at bank:%ld row:%ld value:%ld\n",
473                                         bank, row, value);
474                 for (i = 0; i < 8; i++) {
475                         if (((value >> i) & 0x1) == 0) {
476                                 continue;
477                         }
478                         if (fuse_blow(bank, row, i) != 0) {
479                                 diag_printf("fuse_blow(bank: %ld, row: %ld, bit: %d failed\n",
480                                                         bank, row, i);
481                         } else {
482                                 diag_printf("fuse_blow(bank: %ld, row: %ld, bit: %d successful\n",
483                                                         bank, row, i);
484                         }
485                 }
486                 sense_fuse(bank, row, 0);
487         } else {
488                 diag_printf("Passing in wrong arguments: %d\n", argc);
489         }
490         /* Reset to default string */
491         strcpy(ready_to_blow, INIT_STRING);
492 }
493
494 /* precondition: m>0 and n>0.  Let g=gcd(m,n). */
495 int gcd(int m, int n)
496 {
497         int t;
498         while (m > 0) {
499                 if (n > m) {t = m; m = n; n = t;} /* swap */
500                 m -= n;
501         }
502         return n;
503 }