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