]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/pcippc2/pcippc2.c
Standardize command usage messages with cmd_usage()
[people/ms/u-boot.git] / board / pcippc2 / pcippc2.c
CommitLineData
c609719b
WD
1/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@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 <config.h>
25#include <common.h>
26#include <command.h>
27#include <asm/io.h>
28#include <linux/mtd/doc2000.h>
29#include <watchdog.h>
30#include <pci.h>
8ca0b3f9 31#include <netdev.h>
c609719b
WD
32
33#include "hardware.h"
34#include "pcippc2.h"
35#include "sconsole.h"
36#include "fpga_serial.h"
37
d87080b7
WD
38DECLARE_GLOBAL_DATA_PTR;
39
c609719b
WD
40#if defined(CONFIG_WATCHDOG)
41
42static int pcippc2_wdt_init_done = 0;
43
44void pcippc2_wdt_init (void);
45
46#endif
47
48 /* Check board identity
49 */
50int checkboard (void)
51{
52#ifdef CONFIG_PCIPPC2
53 puts ("Board: Gespac PCIPPC-2\n");
54#else
55 puts ("Board: Gespac PCIPPC-6\n");
56#endif
57 return 0;
58}
59
60 /* RAM size is stored in CPC0_RGBAN1
61 */
62u32 pcippc2_sdram_size (void)
63{
64 return in32 (REG (CPC0, RGBAN1));
65}
66
9973e3c6 67phys_size_t initdram (int board_type)
c609719b
WD
68{
69 return cpc710_ram_init ();
70}
71
8bde7f77 72int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
c609719b
WD
73{
74 out32 (REG (CPC0, SPOR), 0);
75 iobarrier_rw ();
76 while (1);
8bde7f77
WD
77 /* notreached */
78 return (-1);
c609719b
WD
79}
80
c837dcb1 81int board_early_init_f (void)
c609719b
WD
82{
83 out32 (REG (CPC0, RSTR), 0xC0000000);
84 iobarrier_rw ();
85
86 out32 (REG (CPC0, RSTR), 0xF0000000);
87 iobarrier_rw ();
88
89 out32 (REG (CPC0, UCTL), 0x00F80000);
90
91 out32 (REG (CPC0, SIOC0), 0x30000000);
92
93 out32 (REG (CPC0, ABCNTL), 0x00000000);
94
95 out32 (REG (CPC0, SESR), 0x00000000);
96 out32 (REG (CPC0, SEAR), 0x00000000);
97
98 /* Detect IBM Avignon CPC710 Revision */
99 if ((in32 (REG (CPC0, UCTL)) & 0x000000F0) == CPC710_TYPE_100P)
100 out32 (REG (CPC0, PGCHP), 0xA0000040);
101 else
102 out32 (REG (CPC0, PGCHP), 0x80800040);
103
104
105 out32 (REG (CPC0, ATAS), 0x709C2508);
106
107 iobarrier_rw ();
108
109 return 0;
110}
111
112void after_reloc (ulong dest_addr)
113{
c609719b
WD
114 /* Jump to the main U-Boot board init code
115 */
27b207fd 116 board_init_r ((gd_t *)gd, dest_addr);
c609719b
WD
117}
118
119int misc_init_r (void)
120{
121 pcippc2_fpga_init ();
122
e95b61cf
WD
123 pcippc2_cpci3264_init ();
124
c609719b
WD
125#if defined(CONFIG_WATCHDOG)
126 pcippc2_wdt_init ();
127#endif
128
129 fpga_serial_init (sconsole_get_baudrate ());
130
131 sconsole_putc = fpga_serial_putc;
132 sconsole_puts = fpga_serial_puts;
133 sconsole_getc = fpga_serial_getc;
134 sconsole_tstc = fpga_serial_tstc;
135 sconsole_setbrg = fpga_serial_setbrg;
136
137 sconsole_flush ();
138 return (0);
139}
140
ad10dd9a 141void pci_init_board (void)
c609719b
WD
142{
143 cpc710_pci_init ();
144
145 /* FPGA requires no retry timeouts to be enabled
146 */
147 cpc710_pci_enable_timeout ();
148}
149
150void doc_init (void)
151{
152 doc_probe (pcippc2_fpga1_phys + HW_FPGA1_DOC);
153}
154
e95b61cf
WD
155void pcippc2_cpci3264_init (void)
156{
157 pci_dev_t bdf = pci_find_device(FPGA_VENDOR_ID, FPGA_DEVICE_ID, 0);
158
159 if (bdf == -1)
160 {
161 puts("Unable to find FPGA !\n");
162 hang();
163 }
164
165 if((in32(pcippc2_fpga0_phys + HW_FPGA0_BOARD) & 0x01000000) == 0x01000000)
166 /* 32-bits Compact PCI bus - LSB bit */
167 {
168 iobarrier_rw();
169 out32(BRIDGE(CPCI, PCIDG), 0x40000000); /* 32-bits bridge, Pipeline */
170 iobarrier_rw();
171 }
172}
173
c609719b
WD
174#if defined(CONFIG_WATCHDOG)
175
176void pcippc2_wdt_init (void)
177{
178 out16r (FPGA (WDT, PROG), 0xffff);
179 out8 (FPGA (WDT, CTRL), 0x1);
180
181 pcippc2_wdt_init_done = 1;
182}
183
184void pcippc2_wdt_done (void)
185{
186 out8 (FPGA (WDT, CTRL), 0x0);
187
188 pcippc2_wdt_init_done = 0;
189}
190
191void pcippc2_wdt_reset (void)
192{
193 if (pcippc2_wdt_init_done == 1)
194 out8 (FPGA (WDT, REFRESH), 0x56);
195}
196
197void watchdog_reset (void)
198{
199 int re_enable = disable_interrupts ();
200
201 pcippc2_wdt_reset ();
202 if (re_enable)
203 enable_interrupts ();
204}
205
3fe00109 206#if defined(CONFIG_CMD_BSP)
8bde7f77 207int do_wd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
c609719b
WD
208{
209 switch (argc) {
210 case 1:
211 printf ("Watchdog timer status is %s\n",
212 pcippc2_wdt_init_done == 1 ? "on" : "off");
213
214 return 0;
215 case 2:
216 if (!strcmp(argv[1],"on")) {
217 pcippc2_wdt_init();
218 printf("Watchdog timer now is on\n");
219
220 return 0;
221
222 } else if (!strcmp(argv[1],"off")) {
223 pcippc2_wdt_done();
224 printf("Watchdog timer now is off\n");
225
226 return 0;
227
228 } else
229 break;
230 default:
231 break;
232 }
62c3ae7c 233 cmd_usage(cmdtp);
c609719b
WD
234 return 1;
235}
236
0d498393
WD
237U_BOOT_CMD(
238 wd, 2, 1, do_wd,
8bde7f77
WD
239 "wd - check and set watchdog\n",
240 "on - switch watchDog on\n"
241 "wd off - switch watchdog off\n"
242 "wd - print current status\n"
243);
244
d39b5741 245#endif
c609719b 246#endif /* CONFIG_WATCHDOG */
8ca0b3f9
BW
247
248int board_eth_init(bd_t *bis)
249{
250 return pci_eth_init(bis);
251}