blob: 29c688a787a3419bc0280ad38867f791c70c9dfe [file] [log] [blame]
stroese65f36a72003-03-25 14:41:35 +00001/*
stroesea530a9a2004-12-16 18:38:22 +00002 * (C) Copyright 2002-2004
stroese65f36a72003-03-25 14:41:35 +00003 * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
stroese65f36a72003-03-25 14:41:35 +00006 */
7
8#include <common.h>
wdenk57b2d802003-06-27 21:31:46 +00009#include <command.h>
stroese65f36a72003-03-25 14:41:35 +000010#include <malloc.h>
11#include <net.h>
12#include <asm/io.h>
13#include <pci.h>
Stefan Roeseca8725f2007-10-03 15:01:02 +020014#include <asm/4xx_pci.h>
stroesea530a9a2004-12-16 18:38:22 +000015#include <asm/processor.h>
stroese65f36a72003-03-25 14:41:35 +000016
17#include "pci405.h"
18
Jon Loeliger4ed9ed62007-07-09 18:24:55 -050019#if defined(CONFIG_CMD_BSP)
stroese65f36a72003-03-25 14:41:35 +000020
stroese65f36a72003-03-25 14:41:35 +000021/*
22 * Command loadpci: wait for signal from host and boot image.
23 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +020024int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese65f36a72003-03-25 14:41:35 +000025{
Wolfgang Denk6ae80832014-11-06 14:02:57 +010026 unsigned int *ptr;
stroese65f36a72003-03-25 14:41:35 +000027 int count = 0;
28 int count2 = 0;
stroese65f36a72003-03-25 14:41:35 +000029 int i;
30 char addr[16];
31 char str[] = "\\|/-";
32 char *local_args[2];
33
stroese65f36a72003-03-25 14:41:35 +000034 /*
35 * Mark sync address
36 */
37 ptr = 0;
Wolfgang Denk6ae80832014-11-06 14:02:57 +010038 /* cppcheck-suppress nullPointer */
stroese65f36a72003-03-25 14:41:35 +000039 *ptr = 0xffffffff;
40 puts("\nWaiting for image from pci host -");
41
42 /*
43 * Wait for host to write the start address
44 */
Wolfgang Denk6ae80832014-11-06 14:02:57 +010045 /* cppcheck-suppress nullPointer */
stroese65f36a72003-03-25 14:41:35 +000046 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;
Wolfgang Denk7fb52662005-10-13 16:45:02 +020073 *ptr = crc32(0, (uchar *)PCI_REGS_ADDR+4, PCI_REGS_LEN-4);
stroese65f36a72003-03-25 14:41:35 +000074
75 printf("\nStoring PCI Configuration Regs...\n");
76 } else {
77 sprintf(addr, "%08x", *ptr);
stroese51fbb182003-05-23 11:35:09 +000078
stroesea530a9a2004-12-16 18:38:22 +000079 /*
80 * Boot image via bootm
81 */
82 printf("\nBooting Image at addr 0x%s ...\n", addr);
stroese65f36a72003-03-25 14:41:35 +000083 setenv("loadaddr", addr);
stroese51fbb182003-05-23 11:35:09 +000084
stroese65f36a72003-03-25 14:41:35 +000085 local_args[0] = argv[0];
86 local_args[1] = NULL;
Stefan Roese98adee82011-11-15 08:03:06 +000087 do_bootm (cmdtp, 0, 1, local_args);
stroese65f36a72003-03-25 14:41:35 +000088 }
89
90 return 0;
91}
stroese9cead262003-09-12 08:46:10 +000092U_BOOT_CMD(
93 loadpci, 1, 1, do_loadpci,
Peter Tyserdfb72b82009-01-27 18:03:12 -060094 "Wait for pci-image and boot it",
Wolfgang Denkc54781c2009-05-24 17:06:54 +020095 ""
stroese9cead262003-09-12 08:46:10 +000096);
stroese65f36a72003-03-25 14:41:35 +000097#endif