5 * SPDX-License-Identifier: GPL-2.0+
9 #include <asm/processor.h>
10 #include <asm/ppc4xx-i2c.h>
17 #define L1_MEMSIZE (32*1024*1024)
19 /* the std. DHCP stufff */
21 #define DHCP_NETMASK 1
22 #define DHCP_BOOTFILE 67
23 #define DHCP_ROOTPATH 17
24 #define DHCP_HOSTNAME 12
26 /* some extras used by CRAY
28 * on the server this looks like:
30 * option L1-initrd-image code 224 = string;
31 * option L1-initrd-image "/opt/craysv2/craymcu/l1/flash/initrd.image"
33 #define DHCP_L1_INITRD 224
35 /* new, [better?] way via official vendor-extensions, defining an option
37 * on the server this looks like:
39 * option space CRAYL1;
40 * option CRAYL1.initrd code 3 = string;
43 #define DHCP_VENDOR_SPECX 43
44 #define DHCP_VX_INITRD 3
45 #define DHCP_VX_BOOTCMD 4
46 #define DHCP_VX_BOOTARGS 5
47 #define DHCP_VX_ROOTDEV 6
48 #define DHCP_VX_FROMFLASH 7
49 #define DHCP_VX_BOOTSCRIPT 8
50 #define DHCP_VX_RCFILE 9
51 #define DHCP_VX_MAGIC 10
53 /* Things DHCP server can tellme about. If there's no flash address, then
54 * they dont participate in 'update' to flash, and we force their values
55 * back to '0' every boot to be sure to get them fresh from DHCP. Yes, I
56 * know this is a pain...
58 * If I get no bootfile, boot from flash. If rootpath, use that. If no
59 * rootpath use initrd in flash.
61 typedef struct dhcp_item_s {
63 u8 dhcp_vendor_option;
67 static dhcp_item_t Things[] = {
68 {DHCP_ROUTER, 0, NULL, "gateway"},
69 {DHCP_NETMASK, 0, NULL, "netmask"},
70 {DHCP_BOOTFILE, 0, NULL, "bootfile"},
71 {DHCP_ROOTPATH, 0, NULL, "rootpath"},
72 {DHCP_HOSTNAME, 0, NULL, "hostname"},
73 {DHCP_L1_INITRD, 0, NULL, "initrd"},
74 /* and the other way.. */
75 {DHCP_VENDOR_SPECX, DHCP_VX_INITRD, NULL, "initrd"},
76 {DHCP_VENDOR_SPECX, DHCP_VX_BOOTCMD, NULL, "bootcmd"},
77 {DHCP_VENDOR_SPECX, DHCP_VX_FROMFLASH, NULL, "fromflash"},
78 {DHCP_VENDOR_SPECX, DHCP_VX_BOOTSCRIPT, NULL, "bootscript"},
79 {DHCP_VENDOR_SPECX, DHCP_VX_RCFILE, NULL, "rcfile"},
80 {DHCP_VENDOR_SPECX, DHCP_VX_BOOTARGS, NULL, "xbootargs"},
81 {DHCP_VENDOR_SPECX, DHCP_VX_ROOTDEV, NULL, NULL},
82 {DHCP_VENDOR_SPECX, DHCP_VX_MAGIC, NULL, NULL}
85 #define N_THINGS ((sizeof(Things))/(sizeof(dhcp_item_t)))
87 extern char bootscript[];
89 /* Here is the boot logic as HUSH script. Overridden by any TFP provided
93 static void init_sdram (void);
95 /* ------------------------------------------------------------------------- */
96 int board_early_init_f (void)
98 /* Running from ROM: global data is still READONLY */
100 mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */
101 mtdcr (UIC0ER, 0x00000000); /* disable all ints */
102 mtdcr (UIC0CR, 0x00000020); /* set all but FPGA SMI to be non-critical */
103 mtdcr (UIC0PR, 0xFFFFFFE0); /* set int polarities */
104 mtdcr (UIC0TR, 0x10000000); /* set int trigger levels */
105 mtdcr (UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority */
106 mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */
110 /* ------------------------------------------------------------------------- */
111 int checkboard (void)
115 /* ------------------------------------------------------------------------- */
117 /* ------------------------------------------------------------------------- */
118 int misc_init_r (void)
126 hdr = (image_header_t *) (CONFIG_SYS_MONITOR_BASE - image_get_header_size ());
127 #if defined(CONFIG_FIT)
128 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
129 puts ("Non legacy image format not supported\n");
134 timestamp = (time_t)image_get_time (hdr);
135 to_tm (timestamp, &tm);
136 printf ("Welcome to U-Boot on Cray L1. Compiled %4d-%02d-%02d %2d:%02d:%02d (UTC)\n", tm.tm_year, tm.tm_mon, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
138 #define FACTORY_SETTINGS 0xFFFC0000
139 if ((s = getenv ("ethaddr")) == NULL) {
140 e = (char *) (FACTORY_SETTINGS);
144 || *(e + 3) != '4' || *(e + 4) != '0' || *(e + 17) != '\0') {
145 printf ("No valid MAC address in flash location 0x3C0000!\n");
147 printf ("Factory MAC: %s\n", e);
148 setenv ("ethaddr", e);
151 sprintf (bootcmd,"source %X",(unsigned)bootscript);
152 setenv ("bootcmd", bootcmd);
156 /* ------------------------------------------------------------------------- */
157 /* stubs so we can print dates w/o any nvram RTC.*/
158 int rtc_get (struct rtc_time *tmp)
162 int rtc_set (struct rtc_time *tmp)
166 void rtc_reset (void)
171 /* ------------------------------------------------------------------------- */
172 /* Do sdram bank init in C so I can read it..no console to print to yet!
174 static void init_sdram (void)
178 /* write SDRAM bank 0 register */
179 mtdcr (SDRAM0_CFGADDR, SDRAM0_B0CR);
180 mtdcr (SDRAM0_CFGDATA, 0x00062001);
182 /* Set the SDRAM Timing reg, SDTR1 and the refresh timer reg, RTR. */
183 /* To set the appropriate timings, we need to know the SDRAM speed. */
184 /* We can use the PLB speed since the SDRAM speed is the same as */
185 /* the PLB speed. The PLB speed is the FBK divider times the */
186 /* 405GP reference clock, which on the L1 is 25MHz. */
187 /* Thus, if FBK div is 2, SDRAM is 50MHz; if FBK div is 3, SDRAM is */
188 /* 150MHz; if FBK is 3, SDRAM is 150MHz. */
190 /* divisor = ((mfdcr(strap)>> 28) & 0x3); */
192 /* write SDRAM timing for 100MHz. */
193 mtdcr (SDRAM0_CFGADDR, SDRAM0_TR);
194 mtdcr (SDRAM0_CFGDATA, 0x0086400D);
196 /* write SDRAM refresh interval register */
197 mtdcr (SDRAM0_CFGADDR, SDRAM0_RTR);
198 mtdcr (SDRAM0_CFGDATA, 0x05F00000);
201 /* sdram controller.*/
202 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
203 mtdcr (SDRAM0_CFGDATA, 0x90800000);
206 /* initially, disable ECC on all banks */
208 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
209 tmp = mfdcr (SDRAM0_CFGDATA);
211 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
212 mtdcr (SDRAM0_CFGDATA, tmp);
217 extern int memory_post_test (int flags);
222 uint *pstart = (uint *) 0x00000000;
223 uint *pend = (uint *) L1_MEMSIZE;
226 if (getenv_f("booted",NULL,0) <= 0)
228 printf ("testdram..");
230 for (p = pstart; p < pend; p++)
232 for (p = pstart; p < pend; p++) {
233 if (*p != 0xaaaaaaaa) {
234 printf ("SDRAM test fails at: %08x, was %08x expected %08x\n",
235 (uint) p, *p, 0xaaaaaaaa);
240 for (p = pstart; p < pend; p++)
242 for (p = pstart; p < pend; p++) {
243 if (*p != 0x55555555) {
244 printf ("SDRAM test fails at: %08x, was %08x expected %08x\n",
245 (uint) p, *p, 0x55555555);
250 for (p = pstart; p < pend; p++)
252 for (p = pstart; p < pend; p++) {
253 if (*p != (unsigned)p) {
254 printf ("SDRAM test fails at: %08x, was %08x expected %08x\n",
255 (uint) p, *p, (uint)p);
259 printf ("Success. ");
261 printf ("Enable ECC..");
263 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
264 tmp = (mfdcr (SDRAM0_CFGDATA) & ~0xFFE00000) | 0x90800000;
265 mtdcr (SDRAM0_CFGADDR, SDRAM0_CFG);
266 mtdcr (SDRAM0_CFGDATA, tmp);
268 for (p = (unsigned long) 0; ((unsigned long) p < L1_MEMSIZE); *p++ = 0L)
271 mtdcr (SDRAM0_CFGADDR, SDRAM0_ECCCFG);
272 tmp = mfdcr (SDRAM0_CFGDATA);
274 mtdcr (SDRAM0_CFGDATA, tmp);
276 printf ("enabled.\n");
280 /* ------------------------------------------------------------------------- */
281 static u8 *dhcp_env_update (u8 thing, u8 * pop)
287 if ((Things[thing].dhcpvalue = malloc (oplen)) == NULL) {
288 printf ("Whoops! failed to malloc space for DHCP thing %s\n",
289 Things[thing].envname);
292 for (i = 0; (i < oplen); i++)
293 if ((*(Things[thing].dhcpvalue + i) = *(pop + 2 + i)) == ' ')
295 *(Things[thing].dhcpvalue + i) = '\0';
298 if (Things[thing].envname)
300 setenv (Things[thing].envname, Things[thing].dhcpvalue);
302 return ((u8 *)(Things[thing].dhcpvalue));
305 /* ------------------------------------------------------------------------- */
306 u8 *dhcp_vendorex_prep (u8 * e)
310 /* ask for the things I want. */
311 *e++ = 55; /* Parameter Request List */
313 for (thing = 0; thing < N_THINGS; thing++)
314 *e++ = Things[thing].dhcp_option;
320 /* ------------------------------------------------------------------------- */
321 /* .. return NULL means it wasnt mine, non-null means I got it..*/
322 u8 *dhcp_vendorex_proc (u8 * pop)
324 u8 oplen, *sub_op, sub_oplen, *retval;
329 /* if pop is vender spec indicator, there are sub-options. */
330 if (*pop == DHCP_VENDOR_SPECX) {
331 for (sub_op = pop + 2;
332 oplen && (sub_oplen = *(sub_op + 1));
333 oplen -= sub_oplen, sub_op += (sub_oplen + 2)) {
334 for (thing = 0; thing < N_THINGS; thing++) {
335 if (*sub_op == Things[thing].dhcp_vendor_option) {
336 if (!(retval = dhcp_env_update (thing, sub_op))) {
343 for (thing = 0; thing < N_THINGS; thing++) {
344 if (*pop == Things[thing].dhcp_option)
345 if (!(retval = dhcp_env_update (thing, pop)))