blob: 8f4ad84689de9254f28b5f4e722e28063cb8af77 [file] [log] [blame]
Stefan Roese2076d0a2006-01-18 20:03:15 +01001/*
Matthias Fuchsca0c2d42008-10-28 13:36:57 +01002 * (C) Copyright 2005-2008
Stefan Roese2076d0a2006-01-18 20:03:15 +01003 * Matthias Fuchs, esd GmbH Germany, matthias.fuchs@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>
25#include <command.h>
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010026#if !defined(CONFIG_440)
27#include <asm/4xx_pci.h>
28#endif
Stefan Roese2076d0a2006-01-18 20:03:15 +010029
Jon Loeligerb9307262007-07-09 18:24:55 -050030#if defined(CONFIG_CMD_BSP)
Stefan Roese2076d0a2006-01-18 20:03:15 +010031
Wolfgang Denk74de7ae2009-04-01 23:34:12 +020032extern int do_source (cmd_tbl_t *, int, int, char *[]);
Stefan Roese2076d0a2006-01-18 20:03:15 +010033
34#define ADDRMASK 0xfffff000
35
36/*
37 * Command loadpci: wait for signal from host and boot image.
38 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020039int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Stefan Roese2076d0a2006-01-18 20:03:15 +010040{
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010041 u32 *ptr = 0;
Stefan Roese2076d0a2006-01-18 20:03:15 +010042 int count = 0;
43 int count2 = 0;
44 char addr[16];
45 char str[] = "\\|/-";
46 char *local_args[2];
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010047 u32 la, ptm1la;
Stefan Roese2076d0a2006-01-18 20:03:15 +010048
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010049#if defined(CONFIG_440)
Niklaus Gigerddc922f2009-10-04 20:04:20 +020050 ptm1la = in32r(PCIL0_PTM1LA);
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010051#else
52 ptm1la = in32r(PTM1LA);
53#endif
Stefan Roese2076d0a2006-01-18 20:03:15 +010054 while(1) {
55 /*
56 * Mark sync address
57 */
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010058 ptr = (u32 *)ptm1la;
Stefan Roese2076d0a2006-01-18 20:03:15 +010059 memset(ptr, 0, 0x20);
60
61 *ptr = 0xffffffff;
62 puts("\nWaiting for action from pci host -");
63
64 /*
65 * Wait for host to write the start address
66 */
67 while (*ptr == 0xffffffff) {
68 count++;
69 if (!(count % 100)) {
70 count2++;
71 putc(0x08); /* backspace */
72 putc(str[count2 % 4]);
73 }
74
75 /* Abort if ctrl-c was pressed */
76 if (ctrlc()) {
77 puts("\nAbort\n");
78 return 0;
79 }
80
81 udelay(1000);
82 }
83
84 printf("\nGot bootcode %08x: ", *ptr);
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010085 la = ptm1la + (*ptr & ADDRMASK);
86 sprintf(addr, "%08x", la);
Stefan Roese2076d0a2006-01-18 20:03:15 +010087
88 switch (*ptr & ~ADDRMASK) {
89 case 0:
90 /*
91 * Boot image via bootm
92 */
93 printf("booting image at addr 0x%s ...\n", addr);
94 setenv("loadaddr", addr);
Matthias Fuchsca0c2d42008-10-28 13:36:57 +010095 do_bootm(cmdtp, 0, 0, NULL);
Stefan Roese2076d0a2006-01-18 20:03:15 +010096 break;
97
98 case 1:
99 /*
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200100 * Boot image via "source" command
Stefan Roese2076d0a2006-01-18 20:03:15 +0100101 */
102 printf("executing script at addr 0x%s ...\n", addr);
Stefan Roese2076d0a2006-01-18 20:03:15 +0100103 local_args[0] = addr;
104 local_args[1] = NULL;
Wolfgang Denk74de7ae2009-04-01 23:34:12 +0200105 do_source(cmdtp, 0, 1, local_args);
Stefan Roese2076d0a2006-01-18 20:03:15 +0100106 break;
107
108 case 2:
109 /*
110 * Call run_cmd
111 */
112 printf("running command at addr 0x%s ...\n", addr);
Matthias Fuchsca0c2d42008-10-28 13:36:57 +0100113 run_command((char*)la, 0);
Stefan Roese2076d0a2006-01-18 20:03:15 +0100114 break;
115
116 default:
117 printf("unhandled boot method\n");
118 break;
119 }
120 }
121}
122
123U_BOOT_CMD(
124 loadpci, 1, 1, do_loadpci,
Peter Tyser2fb26042009-01-27 18:03:12 -0600125 "Wait for pci bootcmd and boot it",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200126 ""
127);
Stefan Roese2076d0a2006-01-18 20:03:15 +0100128
129#endif