blob: 692160cea8ab320922782ebfc97c9cd21b807b23 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Grandegger, DENX Software Engineering, wg@denx.de.
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 <malloc.h>
26#include <net.h>
27#include <asm/io.h>
28#include <pci.h>
wdenk57b2d802003-06-27 21:31:46 +000029#include <command.h>
wdenkc6097192002-11-03 00:24:07 +000030#include "pn62.h"
31
Jon Loeliger145318c2007-07-09 18:38:39 -050032#if defined(CONFIG_CMD_BSP)
wdenkc6097192002-11-03 00:24:07 +000033
34extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
35
36/*
37 * Command led: controls the various LEDs 0..11 on the PN62 card.
38 */
Wolfgang Denk3b683112010-07-17 01:06:04 +020039int do_led(cmd_tbl_t * cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +000040{
Wolfgang Denk3b683112010-07-17 01:06:04 +020041 unsigned int number, function;
wdenkc6097192002-11-03 00:24:07 +000042
Wolfgang Denk3b683112010-07-17 01:06:04 +020043 if (argc != 3)
44 return cmd_usage(cmdtp);
45
46 number = simple_strtoul(argv[1], NULL, 10);
47 if (number > PN62_LED_MAX)
48 return 1;
49
50 function = simple_strtoul(argv[2], NULL, 16);
51 set_led(number, function);
52 return 0;
wdenkc6097192002-11-03 00:24:07 +000053}
wdenkf287a242003-07-01 21:06:45 +000054U_BOOT_CMD(
55 led , 3, 1, do_led,
Peter Tyserdfb72b82009-01-27 18:03:12 -060056 "set LED 0..11 on the PN62 board",
Wolfgang Denkc54781c2009-05-24 17:06:54 +020057 "i fun"
58 " - set 'i'th LED to function 'fun'"
wdenk57b2d802003-06-27 21:31:46 +000059);
wdenkc6097192002-11-03 00:24:07 +000060
61/*
62 * Command loadpci: loads a image over PCI.
63 */
64#define CMD_MOVE_WINDOW 0x1
65#define CMD_BOOT_IMAGE 0x2
66
Wolfgang Denk6262d0212010-06-28 22:00:46 +020067int do_loadpci (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +000068{
69 char *s;
70 ulong addr = 0, count = 0;
71 u32 off;
72 int cmd, rcode = 0;
73
74 /* pre-set load_addr */
75 if ((s = getenv("loadaddr")) != NULL) {
76 addr = simple_strtoul(s, NULL, 16);
77 }
78
79 switch (argc) {
80 case 1:
81 break;
82 case 2:
83 addr = simple_strtoul(argv[1], NULL, 16);
84 break;
85 default:
Wolfgang Denk3b683112010-07-17 01:06:04 +020086 return cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +000087 }
88
89 printf ("## Ready for image download ...\n");
90
91 show_startup_phase(12);
92
93 while (1) {
94 /* Alive indicator */
95 i2155x_write_scrapad(BOOT_PROTO, BOOT_PROTO_READY);
96
97 /* Toggle status LEDs */
98 cmd = (count / 200) % 4; /* downscale */
99 set_led(4, cmd == 0 ? LED_1 : LED_0);
100 set_led(5, cmd == 1 ? LED_1 : LED_0);
101 set_led(6, cmd == 2 ? LED_1 : LED_0);
102 set_led(7, cmd == 3 ? LED_1 : LED_0);
103 udelay(1000);
104 count++;
105
106 cmd = i2155x_read_scrapad(BOOT_CMD);
107
108 if (cmd == BOOT_CMD_MOVE) {
109 off = i2155x_read_scrapad(BOOT_DATA);
110 off += addr;
111 i2155x_set_bar_base(3, off);
112 printf ("## BAR3 Addr moved = 0x%08x\n", off);
113 i2155x_write_scrapad(BOOT_CMD, ~cmd);
114 show_startup_phase(13);
115 }
116 else if (cmd == BOOT_CMD_BOOT) {
117 set_led(4, LED_1);
118 set_led(5, LED_1);
119 set_led(6, LED_1);
120 set_led(7, LED_1);
121
122 i2155x_write_scrapad(BOOT_CMD, ~cmd);
123 show_startup_phase(14);
124 break;
125 }
126
127 /* Abort if ctrl-c was pressed */
128 if (ctrlc()) {
129 printf("\nAbort\n");
130 return 0;
131 }
132
133 }
134
135 /* Repoint to the default shared memory */
136 i2155x_set_bar_base(3, PN62_SMEM_DEFAULT);
137
138 load_addr = addr;
139 printf ("## Start Addr = 0x%08lx\n", addr);
140
141 show_startup_phase(15);
142
143 /* Loading ok, check if we should attempt an auto-start */
144 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
145 char *local_args[2];
146 local_args[0] = argv[0];
147 local_args[1] = NULL;
148
149 printf ("Automatic boot of image at addr 0x%08lX ...\n",
150 load_addr);
151 rcode = do_bootm (cmdtp, 0, 1, local_args);
152 }
153
wdenkc6097192002-11-03 00:24:07 +0000154 return rcode;
155}
156
wdenkf287a242003-07-01 21:06:45 +0000157U_BOOT_CMD(
158 loadpci, 2, 1, do_loadpci,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600159 "load binary file over PCI",
wdenk57b2d802003-06-27 21:31:46 +0000160 "[addr]\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200161 " - load binary file over PCI to address 'addr'"
wdenk57b2d802003-06-27 21:31:46 +0000162);
163
wdenkc6097192002-11-03 00:24:07 +0000164#endif