]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esd/pci405/cmd_pci405.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / esd / pci405 / cmd_pci405.c
1 /*
2  * (C) Copyright 2002-2004
3  * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <command.h>
10 #include <malloc.h>
11 #include <net.h>
12 #include <asm/io.h>
13 #include <pci.h>
14 #include <asm/4xx_pci.h>
15 #include <asm/processor.h>
16
17 #include "pci405.h"
18
19 #if defined(CONFIG_CMD_BSP)
20
21 /*
22  * Command loadpci: wait for signal from host and boot image.
23  */
24 int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
25 {
26         unsigned int *ptr;
27         int count = 0;
28         int count2 = 0;
29         int i;
30         char addr[16];
31         char str[] = "\\|/-";
32         char *local_args[2];
33
34         /*
35          * Mark sync address
36          */
37         ptr = 0;
38         /* cppcheck-suppress nullPointer */
39         *ptr = 0xffffffff;
40         puts("\nWaiting for image from pci host -");
41
42         /*
43          * Wait for host to write the start address
44          */
45         /* cppcheck-suppress nullPointer */
46         while (*ptr == 0xffffffff) {
47                 count++;
48                 if (!(count % 100)) {
49                         count2++;
50                         putc(0x08); /* backspace */
51                         putc(str[count2 % 4]);
52                 }
53
54                 /* Abort if ctrl-c was pressed */
55                 if (ctrlc()) {
56                         puts("\nAbort\n");
57                         return 0;
58                 }
59
60                 udelay(1000);
61         }
62
63         if (*ptr == PCI_RECONFIG_MAGIC) {
64                 /*
65                  * Save own pci configuration in PRAM
66                  */
67                 memset((char *)PCI_REGS_ADDR, 0, PCI_REGS_LEN);
68                 ptr = (unsigned int *)PCI_REGS_ADDR + 1;
69                 for (i=0; i<0x40; i+=4) {
70                         pci_read_config_dword(PCIDEVID_405GP, i, ptr++);
71                 }
72                 ptr = (unsigned int *)PCI_REGS_ADDR;
73                 *ptr = crc32(0, (uchar *)PCI_REGS_ADDR+4, PCI_REGS_LEN-4);
74
75                 printf("\nStoring PCI Configuration Regs...\n");
76         } else {
77                 sprintf(addr, "%08x", *ptr);
78
79                 /*
80                  * Boot image via bootm
81                  */
82                 printf("\nBooting Image at addr 0x%s ...\n", addr);
83                 setenv("loadaddr", addr);
84
85                 local_args[0] = argv[0];
86                 local_args[1] = NULL;
87                 do_bootm (cmdtp, 0, 1, local_args);
88         }
89
90         return 0;
91 }
92 U_BOOT_CMD(
93         loadpci,        1,      1,      do_loadpci,
94         "Wait for pci-image and boot it",
95         ""
96 );
97 #endif