]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bootce.c
common: bootce: add missing call to ce_prepare_run_bin() in nbootce
[karo-tx-uboot.git] / common / cmd_bootce.c
1 /*
2  * Copyright (C) 2012 Lothar Waßmann <LW@KARO-electronics.de>
3  * based on: code from RedBoot (C) Uwe Steinkohl <US@KARO-electronics.de>
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <command.h>
26 #include <net.h>
27 #include <wince.h>
28 #include <nand.h>
29 #include <malloc.h>
30 #include <asm/errno.h>
31 #include <jffs2/load_kernel.h>
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 #define WINCE_VRAM_BASE         0x80000000
36 #define CE_FIX_ADDRESS(a)       ((void *)((a) - WINCE_VRAM_BASE + CONFIG_SYS_SDRAM_BASE))
37
38 #ifndef INT_MAX
39 #define INT_MAX                 ((int)(~0U >> 1))
40 #endif
41
42 /* Bin image parse states */
43 #define CE_PS_RTI_ADDR          0
44 #define CE_PS_RTI_LEN           1
45 #define CE_PS_E_ADDR            2
46 #define CE_PS_E_LEN             3
47 #define CE_PS_E_CHKSUM          4
48 #define CE_PS_E_DATA            5
49
50 #define CE_MIN(a, b)            (((a) < (b)) ? (a) : (b))
51 #define CE_MAX(a, b)            (((a) > (b)) ? (a) : (b))
52
53 static ce_bin __attribute__ ((aligned (32))) g_bin;
54 static ce_net __attribute__ ((aligned (32))) g_net;
55 static IPaddr_t server_ip;
56
57 static void ce_init_bin(ce_bin *bin, unsigned char *dataBuffer)
58 {
59         memset(bin, 0, sizeof(*bin));
60
61         bin->data = dataBuffer;
62         bin->parseState = CE_PS_RTI_ADDR;
63         bin->parsePtr = (unsigned char *)bin;
64 }
65
66 static int ce_is_bin_image(void *image, int imglen)
67 {
68         if (imglen < CE_BIN_SIGN_LEN) {
69                 return 0;
70         }
71
72         return memcmp(image, CE_BIN_SIGN, CE_BIN_SIGN_LEN) == 0;
73 }
74
75 static const struct ce_magic {
76         char magic[8];
77         size_t size;
78         ce_std_driver_globals drv_glb;
79 } ce_magic_template = {
80         .magic = "KARO_CE6",
81         .size = sizeof(ce_std_driver_globals),
82         .drv_glb = {
83                 .header = {
84                         .signature = STD_DRV_GLB_SIGNATURE,
85                         .oalVersion = 1,
86                         .bspVersion = 2,
87                 },
88         },
89 };
90
91 #ifdef DEBUG
92 static void __attribute__((unused)) ce_dump_block(void *ptr, int length)
93 {
94         char *p = ptr;
95         int i;
96         int j;
97
98         for (i = 0; i < length; i++) {
99                 if (!(i % 16)) {
100                         printf("\n%p: ", ptr + i);
101                 }
102
103                 printf("%02x ", p[i]);
104                 if (!((i + 1) % 16)){
105                         printf("      ");
106                         for (j = i - 15; j <= i; j++){
107                                 if((p[j] > 0x1f) && (p[j] < 0x7f)) {
108                                         printf("%c", p[j]);
109                                 } else {
110                                         printf(".");
111                                 }
112                         }
113                 }
114         }
115         printf("\n");
116 }
117 #else
118 static inline void ce_dump_block(void *ptr, int length)
119 {
120 }
121 #endif
122
123 static void ce_setup_std_drv_globals(ce_std_driver_globals *std_drv_glb)
124 {
125         char *mtdparts = getenv("mtdparts");
126         size_t max_len = ALIGN((unsigned long)std_drv_glb, SZ_4K) -
127                 (unsigned long)&std_drv_glb->mtdparts;
128
129         if (eth_get_dev()) {
130                 memcpy(&std_drv_glb->kitl.mac, eth_get_dev()->enetaddr,
131                         sizeof(std_drv_glb->kitl.mac));
132         }
133         snprintf(std_drv_glb->deviceId, sizeof(std_drv_glb->deviceId),
134                 "Triton%02X", eth_get_dev()->enetaddr[5]);
135
136         NetCopyIP(&std_drv_glb->kitl.ipAddress, &NetOurIP);
137         std_drv_glb->kitl.ipMask = getenv_IPaddr("netmask");
138         std_drv_glb->kitl.ipRoute = getenv_IPaddr("gatewayip");
139
140         if (mtdparts) {
141                 strncpy(std_drv_glb->mtdparts, mtdparts, max_len);
142                 std_drv_glb->mtdparts[max_len - 1] = '\0';
143         } else {
144                 printf("Failed to get mtdparts environment variable\n");
145         }
146 }
147
148 static void ce_prepare_run_bin(ce_bin *bin)
149 {
150         ce_driver_globals *drv_glb;
151         struct ce_magic *ce_magic = (void *)CONFIG_SYS_SDRAM_BASE + 0x160;
152         ce_std_driver_globals *std_drv_glb = &ce_magic->drv_glb;
153
154         /* Clear os RAM area (if needed) */
155         if (bin->edbgConfig.flags & EDBG_FL_CLEANBOOT) {
156                 debug("cleaning memory from %p to %p\n",
157                         bin->eRamStart, bin->eRamStart + bin->eRamLen);
158
159                 printf("Preparing clean boot ... ");
160                 memset(bin->eRamStart, 0, bin->eRamLen);
161                 printf("ok\n");
162         }
163
164         /* Prepare driver globals (if needed) */
165         if (bin->eDrvGlb) {
166                 debug("Copying CE MAGIC from %p to %p..%p\n",
167                         &ce_magic_template, ce_magic,
168                         (void *)ce_magic + sizeof(*ce_magic) - 1);
169                 memcpy(ce_magic, &ce_magic_template, sizeof(*ce_magic));
170
171                 ce_setup_std_drv_globals(std_drv_glb);
172                 ce_magic->size = sizeof(*std_drv_glb) +
173                         strlen(std_drv_glb->mtdparts) + 1;
174                 ce_dump_block(ce_magic, offsetof(struct ce_magic, drv_glb) +
175                         ce_magic->size);
176
177                 drv_glb = bin->eDrvGlb;
178                 memset(drv_glb, 0, sizeof(*drv_glb));
179
180                 drv_glb->signature = DRV_GLB_SIGNATURE;
181
182                 /* Local ethernet MAC address */
183                 memcpy(drv_glb->macAddr, std_drv_glb->kitl.mac,
184                         sizeof(drv_glb->macAddr));
185                 debug("got MAC address %pM from environment\n",
186                         drv_glb->macAddr);
187
188                 /* Local IP address */
189                 drv_glb->ipAddr = getenv_IPaddr("ipaddr");
190
191                 /* Subnet mask */
192                 drv_glb->ipMask = getenv_IPaddr("netmask");
193
194                 /* Gateway config */
195                 drv_glb->ipGate = getenv_IPaddr("gatewayip");
196 #ifdef DEBUG
197                 debug("got IP address %pI4 from environment\n",
198                         &drv_glb->ipAddr);
199                 debug("got IP mask %pI4 from environment\n",
200                         &drv_glb->ipMask);
201                 debug("got gateway address %pI4 from environment\n",
202                         &drv_glb->ipGate);
203 #endif
204                 /* EDBG services config */
205                 memcpy(&drv_glb->edbgConfig, &bin->edbgConfig,
206                         sizeof(bin->edbgConfig));
207         }
208
209         /*
210          * Make sure, all the above makes it into SDRAM because
211          * WinCE switches the cache & MMU off, obviously without
212          * flushing it first!
213          */
214         flush_dcache_all();
215 }
216
217 static int ce_lookup_ep_bin(ce_bin *bin)
218 {
219         ce_rom_hdr *header;
220         ce_toc_entry *tentry;
221         e32_rom *e32;
222         unsigned int i;
223         uint32_t *sig = (uint32_t *)(bin->rtiPhysAddr + ROM_SIGNATURE_OFFSET);
224
225         debug("Looking for TOC signature at %p\n", sig);
226
227         /* Check image Table Of Contents (TOC) signature */
228         if (*sig != ROM_SIGNATURE) {
229                 printf("Error: Did not find image TOC signature!\n");
230                 printf("Expected %08x at address %p; found %08x instead\n",
231                         ROM_SIGNATURE, sig, *sig);
232                 return 0;
233         }
234
235         /* Lookup entry point */
236         header = CE_FIX_ADDRESS(*(unsigned int *)(bin->rtiPhysAddr +
237                                                 ROM_SIGNATURE_OFFSET +
238                                                 sizeof(unsigned int)));
239         tentry = (ce_toc_entry *)(header + 1);
240
241         for (i = 0; i < header->nummods; i++) {
242                 // Look for 'nk.exe' module
243                 if (strcmp(CE_FIX_ADDRESS(tentry[i].fileName), "nk.exe") == 0) {
244                         // Save entry point and RAM addresses
245
246                         e32 = CE_FIX_ADDRESS(tentry[i].e32Offset);
247
248                         bin->eEntryPoint = CE_FIX_ADDRESS(tentry[i].loadOffset) +
249                                 e32->e32_entryrva;
250                         bin->eRamStart = CE_FIX_ADDRESS(header->ramStart);
251                         bin->eRamLen = header->ramEnd - header->ramStart;
252                         // Save driver_globals address
253                         // Must follow RAM section in CE config.bib file
254                         //
255                         // eg.
256                         //
257                         // RAM          80900000        03200000        RAM
258                         // DRV_GLB      83B00000        00001000        RESERVED
259                         //
260                         bin->eDrvGlb = CE_FIX_ADDRESS(header->ramEnd);
261                         return 1;
262                 }
263         }
264
265         // Error: Did not find 'nk.exe' module
266         return 0;
267 }
268
269 static int ce_parse_bin(ce_bin *bin)
270 {
271         unsigned char *pbData = bin->data;
272         int len = bin->dataLen;
273         int copyLen;
274
275         debug("starting ce image parsing:\n\tbin->binLen: 0x%08X\n", bin->binLen);
276
277         if (len) {
278                 if (bin->binLen == 0) {
279                         // Check for the .BIN signature first
280                         if (!ce_is_bin_image(pbData, len)) {
281                                 printf("Error: Invalid or corrupted .BIN image!\n");
282                                 return CE_PR_ERROR;
283                         }
284
285                         printf("Loading Windows CE .BIN image ...\n");
286                         // Skip signature
287                         len -= CE_BIN_SIGN_LEN;
288                         pbData += CE_BIN_SIGN_LEN;
289                 }
290
291                 while (len) {
292                         switch (bin->parseState) {
293                         case CE_PS_RTI_ADDR:
294                         case CE_PS_RTI_LEN:
295                         case CE_PS_E_ADDR:
296                         case CE_PS_E_LEN:
297                         case CE_PS_E_CHKSUM:
298                                 copyLen = CE_MIN(sizeof(unsigned int) - bin->parseLen, len);
299                                 memcpy(&bin->parsePtr[bin->parseLen], pbData, copyLen);
300
301                                 bin->parseLen += copyLen;
302                                 len -= copyLen;
303                                 pbData += copyLen;
304
305                                 if (bin->parseLen == sizeof(unsigned int)) {
306                                         if (bin->parseState == CE_PS_RTI_ADDR)
307                                                 bin->rtiPhysAddr = CE_FIX_ADDRESS(bin->rtiPhysAddr);
308                                         else if (bin->parseState == CE_PS_E_ADDR &&
309                                                 bin->ePhysAddr)
310                                                 bin->ePhysAddr = CE_FIX_ADDRESS(bin->ePhysAddr);
311
312                                         bin->parseState++;
313                                         bin->parseLen = 0;
314                                         bin->parsePtr += sizeof(unsigned int);
315
316                                         if (bin->parseState == CE_PS_E_DATA) {
317                                                 if (bin->ePhysAddr) {
318                                                         bin->parsePtr = bin->ePhysAddr;
319                                                         bin->parseChkSum = 0;
320                                                 } else {
321                                                         /* EOF */
322                                                         len = 0;
323                                                         bin->endOfBin = 1;
324                                                 }
325                                         }
326                                 }
327                                 break;
328
329                         case CE_PS_E_DATA:
330                                 debug("ePhysAddr=%p physlen=%08x parselen=%08x\n",
331                                         bin->ePhysAddr, bin->ePhysLen, bin->parseLen);
332                                 if (bin->ePhysAddr) {
333                                         copyLen = CE_MIN(bin->ePhysLen - bin->parseLen, len);
334                                         bin->parseLen += copyLen;
335                                         len -= copyLen;
336
337                                         while (copyLen--) {
338                                                 bin->parseChkSum += *pbData;
339                                                 *bin->parsePtr++ = *pbData++;
340                                         }
341
342                                         if (bin->parseLen == bin->ePhysLen) {
343                                                 printf("Section [%02d]: address %p, size 0x%08X, checksum %s\n",
344                                                         bin->section,
345                                                         bin->ePhysAddr,
346                                                         bin->ePhysLen,
347                                                         (bin->eChkSum == bin->parseChkSum) ? "ok" : "fail");
348
349                                                 if (bin->eChkSum != bin->parseChkSum) {
350                                                         printf("Error: Checksum error, corrupted .BIN file!\n");
351                                                         printf("checksum calculated: 0x%08x from file: 0x%08x\n",
352                                                                 bin->parseChkSum, bin->eChkSum);
353                                                         bin->binLen = 0;
354                                                         return CE_PR_ERROR;
355                                                 }
356
357                                                 bin->section++;
358                                                 bin->parseState = CE_PS_E_ADDR;
359                                                 bin->parseLen = 0;
360                                                 bin->parsePtr = (unsigned char *)&bin->ePhysAddr;
361                                         }
362                                 } else {
363                                         bin->parseLen = 0;
364                                         bin->endOfBin = 1;
365                                         len = 0;
366                                 }
367                                 break;
368                         }
369                 }
370         }
371
372         if (bin->endOfBin) {
373                 if (!ce_lookup_ep_bin(bin)) {
374                         printf("Error: entry point not found!\n");
375                         bin->binLen = 0;
376                         return CE_PR_ERROR;
377                 }
378
379                 printf("Entry point: %p, address range: %p-%p\n",
380                         bin->eEntryPoint,
381                         bin->rtiPhysAddr,
382                         bin->rtiPhysAddr + bin->rtiPhysLen);
383
384                 return CE_PR_EOF;
385         }
386
387         /* Need more data */
388         bin->binLen += bin->dataLen;
389         return CE_PR_MORE;
390 }
391
392 static int ce_bin_load(void *image, int imglen)
393 {
394         ce_init_bin(&g_bin, image);
395         g_bin.dataLen = imglen;
396         if (ce_parse_bin(&g_bin) == CE_PR_EOF) {
397                 ce_prepare_run_bin(&g_bin);
398                 return 1;
399         }
400
401         return 0;
402 }
403
404 static void ce_run_bin(void (*entry)(void))
405 {
406         printf("Launching Windows CE ...\n");
407 #ifdef TEST_LAUNCH
408 return;
409 #endif
410         entry();
411 }
412
413 static int do_bootce(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
414 {
415         void *addr;
416         size_t image_size;
417
418         if (argc > 1) {
419                 addr = (void *)simple_strtoul(argv[1], NULL, 16);
420                 image_size = INT_MAX;           /* actually we do not know the image size */
421         } else if (getenv("fileaddr") != NULL) {
422                 addr = (void *)getenv_ulong("fileaddr", 16, 0);
423                 image_size = getenv_ulong("filesize", 16, INT_MAX);
424         } else {
425                 return CMD_RET_USAGE;
426         }
427
428         printf ("## Booting Windows CE Image from address %p ...\n", addr);
429
430         /* check if there is a valid windows CE image */
431         if (ce_is_bin_image(addr, image_size)) {
432                 if (!ce_bin_load(addr, image_size)) {
433                         /* Ops! Corrupted .BIN image! */
434                         /* Handle error here ...      */
435                         printf("corrupted .BIN image !!!\n");
436                         return CMD_RET_FAILURE;
437                 }
438                 if (getenv_yesno("autostart") != 1) {
439                         /*
440                          * just use bootce to load the image to SDRAM;
441                          * Do not start it automatically.
442                          */
443                         setenv_addr("fileaddr", g_bin.eEntryPoint);
444                         return CMD_RET_SUCCESS;
445                 }
446                 ce_run_bin(g_bin.eEntryPoint);          /* start the image */
447         } else {
448                 printf("Image does not seem to be a valid Windows CE image!\n");
449                 return CMD_RET_FAILURE;
450         }
451         return CMD_RET_FAILURE; /* never reached - just to keep compiler happy */
452 }
453 U_BOOT_CMD(
454         bootce, 2, 0, do_bootce,
455         "Boot a Windows CE image from RAM",
456         "[addr]\n"
457         "\taddr\t\tboot image from address addr (default ${fileaddr})"
458 );
459
460 static int ce_nand_load(ce_bin *bin, loff_t *offset, void *buf, size_t max_len)
461 {
462         int ret;
463         size_t len = max_len;
464         nand_info_t *nand = &nand_info[0];
465
466         while (nand_block_isbad(nand, *offset & ~(max_len - 1))) {
467                 printf("Skipping bad block 0x%08llx\n",
468                         *offset & ~(max_len - 1));
469                 *offset += max_len;
470                 if (*offset + max_len > nand->size)
471                         return -EINVAL;
472         }
473
474         ret = nand_read(nand, *offset, &len, buf);
475         if (ret < 0)
476                 return ret;
477
478         bin->dataLen = len;
479         return len;
480 }
481
482 static int do_nbootce(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
483 {
484         int ret;
485         struct mtd_device *dev;
486         struct part_info *part_info;
487         u8 part_num;
488         loff_t offset;
489         char *end;
490         void *buffer;
491         size_t bufsize = nand_info[0].erasesize, len;
492
493         if (argc < 2 || argc > 3)
494                 return CMD_RET_USAGE;
495
496         ret = mtdparts_init();
497         if (ret)
498                 return CMD_RET_FAILURE;
499
500         offset = simple_strtoul(argv[1], &end, 16);
501         if (*end != '\0') {
502                 ret = find_dev_and_part(argv[1], &dev, &part_num,
503                                         &part_info);
504                 if (ret != 0) {
505                         printf("Partition '%s' not found\n", argv[1]);
506                         return CMD_RET_FAILURE;
507                 }
508                 offset = part_info->offset;
509                 printf ("## Booting Windows CE Image from NAND partition %s at offset %08llx\n",
510                         argv[1], offset);
511         } else {
512                 printf ("## Booting Windows CE Image from NAND offset %08llx\n",
513                         offset);
514         }
515
516         buffer = malloc(bufsize);
517         if (buffer == NULL) {
518                 printf("Failed to allocate %u byte buffer\n", bufsize);
519                 return CMD_RET_FAILURE;
520         }
521
522         ce_init_bin(&g_bin, buffer);
523
524         ret = ce_nand_load(&g_bin, &offset, buffer, bufsize);
525         if (ret < 0) {
526                 printf("Failed to read NAND: %d\n", ret);
527                 goto err;
528         }
529         len = ret;
530         /* check if there is a valid windows CE image header */
531         if (ce_is_bin_image(buffer, len)) {
532                 do {
533                         ret = ce_parse_bin(&g_bin);
534                         switch (ret) {
535                         case CE_PR_MORE:
536                         {
537                                 if (ctrlc()) {
538                                         printf("NBOOTCE - canceled by user\n");
539                                         goto err;
540                                 }
541                                 offset += len;
542                                 len = ce_nand_load(&g_bin, &offset, buffer,
543                                                 bufsize);
544                                 if (len < 0) {
545                                         printf("Nand read error: %d\n", len);
546                                         ret = len;
547                                         goto err;
548                                 }
549                         }
550                         break;
551
552                         case CE_PR_EOF:
553                                 ce_prepare_run_bin(&g_bin);
554                                 break;
555
556                         case CE_PR_ERROR:
557                                 break;
558                         }
559                 } while (ret == CE_PR_MORE);
560                 free(buffer);
561                 if (ret != CE_PR_EOF)
562                         return CMD_RET_FAILURE;
563
564                 if (getenv_yesno("autostart") != 1) {
565                         /*
566                          * just use bootce to load the image to SDRAM;
567                          * Do not start it automatically.
568                          */
569                         setenv_addr("fileaddr", g_bin.eEntryPoint);
570                         return CMD_RET_SUCCESS;
571                 }
572                 ce_run_bin(g_bin.eEntryPoint);          /* start the image */
573         } else {
574                 printf("Image does not seem to be a valid Windows CE image!\n");
575         }
576 err:
577         free(buffer);
578         return CMD_RET_FAILURE;
579 }
580 U_BOOT_CMD(
581         nbootce, 2, 0, do_nbootce,
582         "Boot a Windows CE image from NAND",
583         "off|partitition\n"
584         "\toff\t\t- flash offset (hex)\n"
585         "\tpartition\t- partition name"
586 );
587
588 static int ce_send_write_ack(ce_net *net)
589 {
590         int ret;
591         unsigned short wdata[2];
592         int retries = 0;
593
594         wdata[0] = htons(EDBG_CMD_WRITE_ACK);
595         wdata[1] = htons(net->blockNum);
596         net->dataLen = sizeof(wdata);
597         memcpy(net->data, wdata, net->dataLen);
598
599         do {
600                 ret = bootme_send_frame(net->data, net->dataLen);
601                 if (ret) {
602                         printf("Failed to send write ack %d; retries=%d\n",
603                                 ret, retries);
604                 }
605         } while (ret != 0 && retries-- > 0);
606         return ret;
607 }
608
609 static enum bootme_state ce_process_download(ce_net *net, ce_bin *bin)
610 {
611         int ret = net->state;
612
613         if (net->dataLen >= 4) {
614                 unsigned short command;
615                 unsigned short blknum;
616
617                 memcpy(&command, net->data, sizeof(command));
618                 command = ntohs(command);
619                 debug("command found: 0x%04X\n", command);
620
621                 if (net->state == BOOTME_DOWNLOAD) {
622                         unsigned short nxt = net->blockNum + 1;
623
624                         memcpy(&blknum, &net->data[2], sizeof(blknum));
625                         blknum = ntohs(blknum);
626                         if (blknum == nxt) {
627                                 net->blockNum = blknum;
628                         } else {
629                                 int rc = ce_send_write_ack(net);
630
631                                 if (net->verbose)
632                                         printf("Dropping out of sequence packet with ID %d (expected %d)\n",
633                                                 blknum, nxt);
634                                 if (rc != 0)
635                                         return rc;
636
637                                 return ret;
638                         }
639                 }
640
641                 switch (command) {
642                 case EDBG_CMD_WRITE_REQ:
643                         if (net->state == BOOTME_INIT) {
644                                 // Check file name for WRITE request
645                                 // CE EShell uses "boot.bin" file name
646                                 if (strncmp((char *)&net->data[2],
647                                                 "boot.bin", 8) == 0) {
648                                         // Some diag output
649                                         if (net->verbose) {
650                                                 printf("Locked Down download link, IP: %pI4\n",
651                                                         &NetServerIP);
652                                                 printf("Sending BOOTME request [%d] to %pI4\n",
653                                                         net->seqNum, &NetServerIP);
654                                         }
655
656                                         // Lock down EShell download link
657                                         ret = BOOTME_DOWNLOAD;
658                                 } else {
659                                         // Unknown link
660                                         printf("Unknown link\n");
661                                 }
662
663                                 if (ret == BOOTME_DOWNLOAD) {
664                                         int rc = ce_send_write_ack(net);
665                                         if (rc != 0)
666                                                 return rc;
667                                 }
668                         }
669                         break;
670
671                 case EDBG_CMD_WRITE:
672                         /* Fixup data len */
673                         bin->data = &net->data[4];
674                         bin->dataLen = net->dataLen - 4;
675                         ret = ce_parse_bin(bin);
676                         if (ret != CE_PR_ERROR) {
677                                 int rc = ce_send_write_ack(net);
678                                 if (rc)
679                                         return rc;
680                                 if (ret == CE_PR_EOF)
681                                         ret = BOOTME_DONE;
682                         } else {
683                                 ret = BOOTME_ERROR;
684                         }
685                         break;
686
687                 case EDBG_CMD_READ_REQ:
688                         printf("Ignoring EDBG_CMD_READ_REQ\n");
689                         /* Read requests are not supported
690                          * Do nothing ...
691                          */
692                         break;
693
694                 case EDBG_CMD_ERROR:
695                         printf("Error: unknown error on the host side\n");
696
697                         bin->binLen = 0;
698                         ret = BOOTME_ERROR;
699                         break;
700
701                 default:
702                         printf("unknown command 0x%04X\n", command);
703                         net->state = BOOTME_ERROR;
704                 }
705         }
706         return ret;
707 }
708
709 static enum bootme_state ce_process_edbg(ce_net *net, ce_bin *bin)
710 {
711         enum bootme_state ret = net->state;
712         eth_dbg_hdr header;
713
714         if (net->dataLen < sizeof(header)) {
715                 /* Bad packet */
716                 printf("Invalid packet size %u\n", net->dataLen);
717                 net->dataLen = 0;
718                 return ret;
719         }
720         memcpy(&header, net->data, sizeof(header));
721         if (header.id != EDBG_ID) {
722                 /* Bad packet */
723                 printf("Bad EDBG ID %08x\n", header.id);
724                 net->dataLen = 0;
725                 return ret;
726         }
727
728         if (header.service != EDBG_SVC_ADMIN) {
729                 /* Unknown service */
730                 printf("Bad EDBG service %02x\n", header.service);
731                 net->dataLen = 0;
732                 return ret;
733         }
734
735         if (net->state == BOOTME_INIT) {
736                 /* Some diag output */
737                 if (net->verbose) {
738                         printf("Locked Down EDBG service link, IP: %pI4\n",
739                                 &NetServerIP);
740                 }
741
742                 /* Lock down EDBG link */
743                 net->state = BOOTME_DEBUG;
744         }
745
746         switch (header.cmd) {
747         case EDBG_CMD_JUMPIMG:
748                 net->gotJumpingRequest = 1;
749
750                 if (net->verbose) {
751                         printf("Received JUMPING command\n");
752                 }
753                 /* Just pass through and copy CONFIG structure */
754                 ret = BOOTME_DONE;
755         case EDBG_CMD_OS_CONFIG:
756                 /* Copy config structure */
757                 memcpy(&bin->edbgConfig, &net->data[sizeof(header)],
758                         sizeof(edbg_os_config_data));
759                 if (net->verbose) {
760                         printf("Received CONFIG command\n");
761                         if (bin->edbgConfig.flags & EDBG_FL_DBGMSG) {
762                                 printf("--> Enabling DBGMSG service, IP: %pI4, port: %d\n",
763                                         &bin->edbgConfig.dbgMsgIPAddr,
764                                         ntohs(bin->edbgConfig.dbgMsgPort));
765                         }
766
767                         if (bin->edbgConfig.flags & EDBG_FL_PPSH) {
768                                 printf("--> Enabling PPSH service, IP: %pI4, port: %d\n",
769                                         &bin->edbgConfig.ppshIPAddr,
770                                         ntohs(bin->edbgConfig.ppshPort));
771                         }
772
773                         if (bin->edbgConfig.flags & EDBG_FL_KDBG) {
774                                 printf("--> Enabling KDBG service, IP: %pI4, port: %d\n",
775                                         &bin->edbgConfig.kdbgIPAddr,
776                                         ntohs(bin->edbgConfig.kdbgPort));
777                         }
778
779                         if (bin->edbgConfig.flags & EDBG_FL_CLEANBOOT) {
780                                 printf("--> Force clean boot\n");
781                         }
782                 }
783                 break;
784
785         default:
786                 if (net->verbose) {
787                         printf("Received unknown command: %08X\n", header.cmd);
788                 }
789                 return BOOTME_ERROR;
790         }
791
792         /* Respond with ack */
793         header.flags = EDBG_FL_FROM_DEV | EDBG_FL_ACK;
794         memcpy(net->data, &header, sizeof(header));
795         net->dataLen = EDBG_DATA_OFFSET;
796
797         int retries = 10;
798         int rc;
799         do {
800                 rc = bootme_send_frame(net->data, net->dataLen);
801                 if (rc != 0) {
802                         printf("Failed to send ACK: %d\n", rc);
803                 }
804         } while (rc && retries-- > 0);
805         return rc ?: ret;
806 }
807
808 static enum bootme_state ce_edbg_handler(const void *buf, size_t len)
809 {
810         if (len == 0)
811                 return BOOTME_DONE;
812
813         g_net.data = (void *)buf;
814         g_net.dataLen = len;
815
816         return ce_process_edbg(&g_net, &g_bin);
817 }
818
819 static void ce_init_edbg_link(ce_net *net)
820 {
821         /* Initialize EDBG link for commands */
822         net->state = BOOTME_INIT;
823 }
824
825 static enum bootme_state ce_download_handler(const void *buf, size_t len)
826 {
827         g_net.data = (void *)buf;
828         g_net.dataLen = len;
829
830         g_net.state = ce_process_download(&g_net, &g_bin);
831         return g_net.state;
832 }
833
834 static int ce_send_bootme(ce_net *net)
835 {
836         eth_dbg_hdr *header;
837         edbg_bootme_data *data;
838         unsigned char txbuf[PKTSIZE_ALIGN];
839 #ifdef DEBUG
840         int     i;
841         unsigned char   *pkt;
842 #endif
843         /* Fill out BOOTME packet */
844         net->data = txbuf;
845
846         memset(net->data, 0, PKTSIZE);
847         header = (eth_dbg_hdr *)net->data;
848         data = (edbg_bootme_data *)header->data;
849
850         header->id = EDBG_ID;
851         header->service = EDBG_SVC_ADMIN;
852         header->flags = EDBG_FL_FROM_DEV;
853         header->seqNum = net->seqNum++;
854         header->cmd = EDBG_CMD_BOOTME;
855
856         data->versionMajor = 0;
857         data->versionMinor = 0;
858         data->cpuId = EDBG_CPU_TYPE_ARM;
859         data->bootmeVer = EDBG_CURRENT_BOOTME_VERSION;
860         data->bootFlags = 0;
861         data->downloadPort = 0;
862         data->svcPort = 0;
863
864         /* MAC address from environment*/
865         if (!eth_getenv_enetaddr("ethaddr", data->macAddr)) {
866                 printf("'ethaddr' is not set or invalid\n");
867                 memset(data->macAddr, 0, sizeof(data->macAddr));
868         }
869
870         /* IP address from active config */
871         NetCopyIP(&data->ipAddr, &NetOurIP);
872
873         // Device name string (NULL terminated). Should include
874         // platform and number based on Ether address (e.g. Odo42, CEPCLS2346, etc)
875
876         // We will use lower MAC address segment to create device name
877         // eg. MAC '00-0C-C6-69-09-05', device name 'Triton05'
878
879         strncpy(data->platformId, "Triton", sizeof(data->platformId));
880         snprintf(data->deviceName, sizeof(data->deviceName), "%s%02X",
881                 data->platformId, data->macAddr[5]);
882
883 #ifdef DEBUG
884         printf("header->id: %08X\n", header->id);
885         printf("header->service: %08X\n", header->service);
886         printf("header->flags: %08X\n", header->flags);
887         printf("header->seqNum: %08X\n", header->seqNum);
888         printf("header->cmd: %08X\n\n", header->cmd);
889
890         printf("data->versionMajor: %08X\n", data->versionMajor);
891         printf("data->versionMinor: %08X\n", data->versionMinor);
892         printf("data->cpuId: %08X\n", data->cpuId);
893         printf("data->bootmeVer: %08X\n", data->bootmeVer);
894         printf("data->bootFlags: %08X\n", data->bootFlags);
895         printf("data->svcPort: %08X\n\n", ntohs(data->svcPort));
896
897         printf("data->macAddr: %pM\n", data->macAddr);
898         printf("data->ipAddr: %pI4\n", &data->ipAddr);
899         printf("data->platformId: %s\n", data->platformId);
900         printf("data->deviceName: %s\n", data->deviceName);
901 #endif
902         // Some diag output ...
903         if (net->verbose) {
904                 printf("Sending BOOTME request [%d] to %pI4\n", net->seqNum,
905                         &server_ip);
906         }
907
908         net->dataLen = BOOTME_PKT_SIZE;
909 //      net->status = CE_PR_MORE;
910         net->state = BOOTME_INIT;
911 #ifdef DEBUG
912         debug("Start of buffer:      %p\n", net->data);
913         debug("Start of ethernet buffer:   %p\n", net->data);
914         debug("Start of CE header:         %p\n", header);
915         debug("Start of CE data:           %p\n", data);
916
917         pkt = net->data;
918         debug("packet to send (ceconnect): \n");
919         for (i = 0; i < net->dataLen; i++) {
920                 debug("0x%02X ", pkt[i]);
921                 if (!((i + 1) % 16))
922                         debug("\n");
923         }
924         debug("\n");
925 #endif
926         return BootMeRequest(server_ip, net->data, net->dataLen, 1);
927 }
928
929 static inline int ce_init_download_link(ce_net *net, ce_bin *bin, int verbose)
930 {
931         if (!eth_get_dev()) {
932                 printf("No network interface available\n");
933                 return -ENODEV;
934         }
935         printf("Using device '%s'\n", eth_get_name());
936
937         /* Initialize EDBG link for download */
938         memset(net, 0, sizeof(*net));
939
940         net->verbose = verbose;
941
942         /* buffer will be dynamically assigned in ce_download_handler() */
943         ce_init_bin(bin, NULL);
944         return 0;
945 }
946
947 #define UINT_MAX ~0UL
948
949 static inline int ce_download_file(ce_net *net, ulong timeout)
950 {
951         ulong start = get_timer_masked();
952
953         while (net->state == BOOTME_INIT) {
954                 int ret;
955
956                 if (timeout && get_timer(start) > timeout) {
957                         printf("CELOAD - Canceled, timeout\n");
958                         return 1;
959                 }
960
961                 if (ctrlc()) {
962                         printf("CELOAD - canceled by user\n");
963                         return 1;
964                 }
965
966                 if (ce_send_bootme(&g_net)) {
967                         printf("CELOAD - error while sending BOOTME request\n");
968                         return 1;
969                 }
970                 if (net->verbose) {
971                         if (timeout) {
972                                 printf("Waiting for connection, timeout %lu sec\n",
973                                         DIV_ROUND_UP(timeout - get_timer(start),
974                                                 CONFIG_SYS_HZ));
975                         } else {
976                                 printf("Waiting for connection, enter ^C to abort\n");
977                         }
978                 }
979
980                 ret = BootMeDownload(ce_download_handler);
981                 if (ret == BOOTME_ERROR) {
982                         printf("CELOAD - aborted\n");
983                         return 1;
984                 }
985         }
986         return 0;
987 }
988
989 static void ce_disconnect(void)
990 {
991         net_set_udp_handler(NULL);
992         eth_halt();
993 }
994
995 static int do_ceconnect(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
996 {
997         int verbose = 0;
998         ulong timeout = 0;
999         int ret = 1;
1000         int i;
1001
1002         server_ip = 0;
1003
1004         for (i = 1; i < argc; i++){
1005                 if (*argv[i] != '-')
1006                         break;
1007                 if (argv[i][1] == 'v') {
1008                         verbose = 1;
1009                 } else if (argv[i][1] == 't') {
1010                         i++;
1011                         if (argc > i) {
1012                                 timeout = simple_strtoul(argv[i],
1013                                                         NULL, 0);
1014                                 if (timeout >= UINT_MAX / CONFIG_SYS_HZ) {
1015                                         printf("Timeout value %lu out of range (max.: %lu)\n",
1016                                                 timeout, UINT_MAX / CONFIG_SYS_HZ - 1);
1017                                         return CMD_RET_USAGE;
1018                                 }
1019                                 timeout *= CONFIG_SYS_HZ;
1020                         } else {
1021                                 printf("Option requires an argument - t\n");
1022                                 return CMD_RET_USAGE;
1023                         }
1024                 } else if (argv[i][1] == 'h') {
1025                         i++;
1026                         if (argc > i) {
1027                                 server_ip = string_to_ip(argv[i]);
1028                                 printf("Using server %pI4\n", &server_ip);
1029                         } else {
1030                                 printf("Option requires an argument - h\n");
1031                                 return CMD_RET_USAGE;
1032                         }
1033                 }
1034         }
1035
1036         if (ce_init_download_link(&g_net, &g_bin, verbose) != 0)
1037                 goto err;
1038
1039         if (ce_download_file(&g_net, timeout))
1040                 goto err;
1041
1042         if (g_bin.binLen) {
1043                 // Try to receive edbg commands from host
1044                 ce_init_edbg_link(&g_net);
1045                 if (verbose)
1046                         printf("Waiting for EDBG commands ...\n");
1047
1048                 ret = BootMeDebugStart(ce_edbg_handler);
1049                 if (ret != BOOTME_DONE)
1050                         goto err;
1051
1052                 // Prepare WinCE image for execution
1053                 ce_prepare_run_bin(&g_bin);
1054
1055                 // Launch WinCE, if necessary
1056                 if (g_net.gotJumpingRequest)
1057                         ce_run_bin(g_bin.eEntryPoint);
1058         }
1059         ret = 0;
1060 err:
1061         ce_disconnect();
1062         return ret == 0 ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
1063 }
1064 U_BOOT_CMD(
1065         ceconnect, 6, 1, do_ceconnect,
1066         "Set up a connection to the CE host PC over TCP/IP and download the run-time image",
1067         "[-v] [-t <timeout>] [-h host]\n"
1068         "  -v            - verbose operation\n"
1069         "  -t <timeout>  - max wait time (#sec) for the connection\n"
1070         "  -h <host>     - send BOOTME requests to <host> (default: broadcast address 255.255.255.255)"
1071 );