stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 1 | /* |
stroese | c2642d1 | 2004-12-16 18:38:22 +0000 | [diff] [blame] | 2 | * (C) Copyright 2002-2004 |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 3 | * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 9 | #include <command.h> |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 10 | #include <malloc.h> |
| 11 | #include <net.h> |
| 12 | #include <asm/io.h> |
| 13 | #include <pci.h> |
Stefan Roese | 3048bcb | 2007-10-03 15:01:02 +0200 | [diff] [blame] | 14 | #include <asm/4xx_pci.h> |
stroese | c2642d1 | 2004-12-16 18:38:22 +0000 | [diff] [blame] | 15 | #include <asm/processor.h> |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 16 | |
| 17 | #include "pci405.h" |
| 18 | |
Jon Loeliger | b930726 | 2007-07-09 18:24:55 -0500 | [diff] [blame] | 19 | #if defined(CONFIG_CMD_BSP) |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 20 | |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Command loadpci: wait for signal from host and boot image. |
| 23 | */ |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 24 | int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 25 | { |
| 26 | unsigned int *ptr = 0; |
| 27 | int count = 0; |
| 28 | int count2 = 0; |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 29 | int i; |
| 30 | char addr[16]; |
| 31 | char str[] = "\\|/-"; |
| 32 | char *local_args[2]; |
| 33 | |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 34 | /* |
| 35 | * Mark sync address |
| 36 | */ |
| 37 | ptr = 0; |
| 38 | *ptr = 0xffffffff; |
| 39 | puts("\nWaiting for image from pci host -"); |
| 40 | |
| 41 | /* |
| 42 | * Wait for host to write the start address |
| 43 | */ |
| 44 | while (*ptr == 0xffffffff) { |
| 45 | count++; |
| 46 | if (!(count % 100)) { |
| 47 | count2++; |
| 48 | putc(0x08); /* backspace */ |
| 49 | putc(str[count2 % 4]); |
| 50 | } |
| 51 | |
| 52 | /* Abort if ctrl-c was pressed */ |
| 53 | if (ctrlc()) { |
| 54 | puts("\nAbort\n"); |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | udelay(1000); |
| 59 | } |
| 60 | |
| 61 | if (*ptr == PCI_RECONFIG_MAGIC) { |
| 62 | /* |
| 63 | * Save own pci configuration in PRAM |
| 64 | */ |
| 65 | memset((char *)PCI_REGS_ADDR, 0, PCI_REGS_LEN); |
| 66 | ptr = (unsigned int *)PCI_REGS_ADDR + 1; |
| 67 | for (i=0; i<0x40; i+=4) { |
| 68 | pci_read_config_dword(PCIDEVID_405GP, i, ptr++); |
| 69 | } |
| 70 | ptr = (unsigned int *)PCI_REGS_ADDR; |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 71 | *ptr = crc32(0, (uchar *)PCI_REGS_ADDR+4, PCI_REGS_LEN-4); |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 72 | |
| 73 | printf("\nStoring PCI Configuration Regs...\n"); |
| 74 | } else { |
| 75 | sprintf(addr, "%08x", *ptr); |
stroese | 3871842 | 2003-05-23 11:35:09 +0000 | [diff] [blame] | 76 | |
stroese | c2642d1 | 2004-12-16 18:38:22 +0000 | [diff] [blame] | 77 | /* |
| 78 | * Boot image via bootm |
| 79 | */ |
| 80 | printf("\nBooting Image at addr 0x%s ...\n", addr); |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 81 | setenv("loadaddr", addr); |
stroese | 3871842 | 2003-05-23 11:35:09 +0000 | [diff] [blame] | 82 | |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 83 | local_args[0] = argv[0]; |
| 84 | local_args[1] = NULL; |
Stefan Roese | 3cceed2 | 2011-11-15 08:03:06 +0000 | [diff] [blame] | 85 | do_bootm (cmdtp, 0, 1, local_args); |
stroese | d69b100 | 2003-03-25 14:41:35 +0000 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | return 0; |
| 89 | } |
stroese | 09433a7 | 2003-09-12 08:46:10 +0000 | [diff] [blame] | 90 | U_BOOT_CMD( |
| 91 | loadpci, 1, 1, do_loadpci, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 92 | "Wait for pci-image and boot it", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 93 | "" |
stroese | 09433a7 | 2003-09-12 08:46:10 +0000 | [diff] [blame] | 94 | ); |
stroese | c2642d1 | 2004-12-16 18:38:22 +0000 | [diff] [blame] | 95 | #endif |