GAH jump to start of SPI Flash not the offset *in* SPI
[ls2.git] / coldboot / coldboot.c
1 #include <stdint.h>
2 #include <stdbool.h>
3
4 #include "console.h"
5 #include "microwatt_soc.h"
6 #include "io.h"
7
8 #include <stdlib.h>
9 #include <stdint.h>
10 #include <gram.h>
11
12 #include "elf64.h"
13
14 static inline void mtspr(int sprnum, unsigned long val)
15 {
16 __asm__ volatile("mtspr %0,%1" : : "i" (sprnum), "r" (val));
17 }
18
19 static inline uint32_t read32(const void *addr)
20 {
21 return *(volatile uint32_t *)addr;
22 }
23
24 static inline void write32(void *addr, uint32_t value)
25 {
26 *(volatile uint32_t *)addr = value;
27 }
28
29 struct uart_regs {
30 uint32_t divisor;
31 uint32_t rx_data;
32 uint32_t rx_rdy;
33 uint32_t rx_err;
34 uint32_t tx_data;
35 uint32_t tx_rdy;
36 uint32_t zero0; // reserved
37 uint32_t zero1; // reserved
38 uint32_t ev_status;
39 uint32_t ev_pending;
40 uint32_t ev_enable;
41 };
42
43 void uart_writeuint32(uint32_t val) {
44 const char lut[] = { '0', '1', '2', '3', '4', '5', '6', '7',
45 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
46 uint8_t *val_arr = (uint8_t*)(&val);
47 size_t i;
48
49 for (i = 0; i < 4; i++) {
50 putchar(lut[(val_arr[3-i] >> 4) & 0xF]);
51 putchar(lut[val_arr[3-i] & 0xF]);
52 }
53 }
54
55 void memcpy(void *dest, void *src, size_t n) {
56 int i;
57 //cast src and dest to char*
58 char *src_char = (char *)src;
59 char *dest_char = (char *)dest;
60 for (i=0; i<n; i++) {
61 #if 1
62 if ((i % 4096) == 0) {
63 puts("memcpy ");
64 uart_writeuint32(i);
65 puts("\r\n");
66 }
67 #endif
68 dest_char[i] = src_char[i]; //copy contents byte by byte
69 }
70 }
71
72 void isr(void) {
73
74 }
75
76 // WARNING
77 // KESTREL SPECIFIC
78 #define TERCEL_SPI_REG_SYS_PHY_CFG1 0x10
79 #define TERCEL_SPI_REG_SYS_FLASH_CFG5 0x24
80 #define TERCEL_SPI_PHY_CLOCK_DIVISOR_MASK 0xff
81 #define TERCEL_SPI_PHY_CLOCK_DIVISOR_SHIFT 0
82 #define TERCEL_SPI_FLASH_EN_MULTCYC_READ_MASK 0x1
83 #define TERCEL_SPI_FLASH_EN_MULTCYC_READ_SHIFT 0
84 static inline uint32_t read_tercel_register(uint8_t reg)
85 {
86 return readl((unsigned long)(SPI_FCTRL_BASE+reg));
87 }
88
89 static inline void write_tercel_register(uint8_t reg, uint32_t value)
90 {
91 writel(value, (unsigned long)(SPI_FCTRL_BASE+reg));
92 }
93
94 // TODO: need to use this
95 // https://gitlab.raptorengineering.com/kestrel-collaboration/kestrel-firmware/bare-metal-firmware/-/blob/master/main.c#L2328
96
97 /* this is a "level 1" speed-up, which gets an initial improvement of 10-50x
98 * over the default speed (which is a scant 100 bytes per second).
99 */
100 static void crank_up_qspi_level1(void)
101 {
102 // WARNING: KESTREL SPECIFIC
103 // Set SPI clock cycle divider to 1
104 uint32_t dword;
105 dword = read_tercel_register(TERCEL_SPI_REG_SYS_PHY_CFG1);
106 dword &= ~(TERCEL_SPI_PHY_CLOCK_DIVISOR_MASK <<
107 TERCEL_SPI_PHY_CLOCK_DIVISOR_SHIFT);
108 dword |= ((1 & TERCEL_SPI_PHY_CLOCK_DIVISOR_MASK) <<
109 TERCEL_SPI_PHY_CLOCK_DIVISOR_SHIFT);
110 write_tercel_register(TERCEL_SPI_REG_SYS_PHY_CFG1, dword);
111 // Enable read merging
112 dword = read_tercel_register(TERCEL_SPI_REG_SYS_FLASH_CFG5);
113 dword |= (TERCEL_SPI_FLASH_EN_MULTCYC_READ_MASK <<
114 TERCEL_SPI_FLASH_EN_MULTCYC_READ_SHIFT);
115 write_tercel_register(TERCEL_SPI_REG_SYS_FLASH_CFG5, dword);
116 }
117
118 static bool fl_read(void *dst, uint32_t offset, uint32_t size)
119 {
120 uint8_t *d = dst;
121 memcpy(d, (void *)(unsigned long)(SPI_FLASH_BASE + offset), size);
122 return true;
123 }
124
125 static unsigned long copy_flash(unsigned int offset, unsigned int dst_offs)
126 {
127 Elf64_Ehdr ehdr;
128 Elf64_Phdr ph;
129 unsigned int i, poff, size, off;
130 void *addr;
131
132 puts("Trying flash...\r\n");
133 if (!fl_read(&ehdr, offset, sizeof(ehdr)))
134 return -1ul;
135 if (!IS_ELF(ehdr) || ehdr.e_ident[EI_CLASS] != ELFCLASS64) {
136 puts("Doesn't look like an elf64\r\n");
137 goto dump;
138 }
139 if (ehdr.e_ident[EI_DATA] != ELFDATA2LSB ||
140 ehdr.e_machine != EM_PPC64) {
141 puts("Not a ppc64le binary\r\n");
142 goto dump;
143 }
144
145 poff = offset + ehdr.e_phoff;
146 for (i = 0; i < ehdr.e_phnum; i++) {
147 if (!fl_read(&ph, poff, sizeof(ph)))
148 goto dump;
149 if (ph.p_type != PT_LOAD)
150 continue;
151
152 /* XXX Add bound checking ! */
153 size = ph.p_filesz;
154 addr = (void *)ph.p_vaddr;
155 off = offset + ph.p_offset;
156 //printf("Copy segment %d (0x%x bytes) to %p\n", i, size, addr);
157 puts("Copy segment ");
158 uart_writeuint32(i);
159 puts(" size ");
160 uart_writeuint32(size);
161 puts(" addr ");
162 uart_writeuint32((uint32_t)(unsigned long)addr);
163 puts("\r\n");
164 fl_read(addr+dst_offs, off, size);
165 poff += ehdr.e_phentsize;
166 }
167
168 puts("Booting from DRAM at");
169 uart_writeuint32((unsigned int)(dst_offs+ehdr.e_entry));
170 puts("\r\n");
171
172 puts("Dump DRAM\r\n");
173 for (i = 0; i < 64; i++) {
174 uart_writeuint32(readl(dst_offs+ehdr.e_entry+(i*4)));
175 puts(" ");
176 if ((i & 7) == 7) puts("\r\n");
177 }
178 puts("\r\n");
179
180 //flush_cpu_icache();
181 return dst_offs+ehdr.e_entry;
182 dump:
183 puts("HDR: \r\n");
184 for (i = 0; i < 8; i++) {
185 uart_writeuint32(ehdr.e_ident[i]);
186 puts("\r\n");
187 }
188
189 return -1ul;
190 }
191
192
193 // XXX
194 // Defining gram_[read|write] allows a trace of all register
195 // accesses to be dumped to console for debugging purposes.
196 // To use, define GRAM_RW_FUNC in gram.h
197 uint32_t gram_read(const struct gramCtx *ctx, void *addr) {
198 uint32_t dword;
199
200 puts("gram_read: ");
201 uart_writeuint32((unsigned long)addr);
202 dword = readl((unsigned long)addr);
203 puts(": ");
204 uart_writeuint32((unsigned long)dword);
205 puts("\n");
206
207 return dword;
208 }
209
210 int gram_write(const struct gramCtx *ctx, void *addr, uint32_t value) {
211 puts("gram_write: ");
212 uart_writeuint32((unsigned long)addr);
213 puts(": ");
214 uart_writeuint32((unsigned long)value);
215 writel(value, (unsigned long)addr);
216 puts("\n");
217
218 return 0;
219 }
220
221 int main(void) {
222 const int kNumIterations = 14;
223 int res, failcnt = 0;
224 uint32_t tmp;
225 unsigned long ftr, spi_offs=0x0;
226 volatile uint32_t *ram = (uint32_t*)MEMORY_BASE;
227
228 console_init();
229 //puts("Firmware launched...\n");
230
231 #if 1
232 puts(" Soc signature: ");
233 tmp = readl(SYSCON_BASE + SYS_REG_SIGNATURE);
234 uart_writeuint32(tmp);
235 puts(" Soc features: ");
236 ftr = readl(SYSCON_BASE + SYS_REG_INFO);
237 if (ftr & SYS_REG_INFO_HAS_UART)
238 puts("UART ");
239 if (ftr & SYS_REG_INFO_HAS_DRAM)
240 puts("DRAM ");
241 if (ftr & SYS_REG_INFO_HAS_BRAM)
242 puts("BRAM ");
243 if (ftr & SYS_REG_INFO_HAS_SPI_FLASH)
244 puts("SPIFLASH ");
245 if (ftr & SYS_REG_INFO_HAS_LITEETH)
246 puts("ETHERNET ");
247 puts("\r\n");
248
249 if (ftr & SYS_REG_INFO_HAS_SPI_FLASH) {
250 // speed up the QSPI to at least a sane level
251 crank_up_qspi_level1();
252
253 puts("SPI Offset: ");
254 spi_offs = readl(SYSCON_BASE + SYS_REG_SPI_INFO);
255 uart_writeuint32(spi_offs);
256 puts("\r\n");
257 }
258
259 #endif
260
261 #if 1
262 #if 1
263 // print out configuration parameters for QSPI
264 volatile uint32_t *qspi_cfg = (uint32_t*)SPI_FCTRL_BASE;
265 for (int k=0; k < 2; k++) {
266 tmp = readl((unsigned long)&(qspi_cfg[k]));
267 puts("cfg");
268 uart_writeuint32(k);
269 puts(" ");
270 uart_writeuint32(tmp);
271 puts("\n");
272 }
273 #endif
274 volatile uint32_t *qspi = (uint32_t*)SPI_FLASH_BASE;
275 //volatile uint8_t *qspi_bytes = (uint8_t*)spi_offs;
276 // let's not, eh? writel(0xDEAF0123, (unsigned long)&(qspi[0]));
277 // tmp = readl((unsigned long)&(qspi[0]));
278 for (int i=0;i<256;i++) {
279 tmp = readl((unsigned long)&(qspi[i]));
280 uart_writeuint32(tmp);
281 puts(" ");
282 if ((i & 0x7) == 0x7) puts("\r\n");
283 }
284 puts("\r\n");
285 /*
286 for (i=0;i<256;i++) {
287 tmp = readb((unsigned long)&(qspi_bytes[i]));
288 uart_writeuint32(tmp);
289 puts(" ");
290 }
291 */
292 #if 0
293 while (1) {
294 // quick read
295 tmp = readl((unsigned long)&(qspi[0x1000/4]));
296 puts("read 0x1000");
297 uart_writeuint32(tmp);
298 putchar(10);
299 }
300 while (1) {
301 unsigned char c = getchar();
302 putchar(c);
303 if (c == 13) { // if CR send LF
304
305 // quick read
306 tmp = readl((unsigned long)&(qspi[1<<i]));
307 puts("read ");
308 uart_writeuint32(1<<i);
309 puts(" ");
310 uart_writeuint32(tmp);
311 putchar(10);
312 i++;
313 }
314 }
315
316 return 0;
317 #endif
318 #endif
319 #if 0
320 volatile uint32_t *hyperram = (uint32_t*)0xa0000000;
321 writel(0xDEAF0123, (unsigned long)&(hyperram[0]));
322 tmp = readl((unsigned long)&(hyperram[0]));
323 while (1) {
324 unsigned char c = getchar();
325 putchar(c);
326 if (c == 13) { // if CR send LF
327
328 // quick write/read
329 writel(0xDEAF0123+i, (unsigned long)&(hyperram[1<<i]));
330 tmp = readl((unsigned long)&(hyperram[1<<i]));
331 puts("read ");
332 uart_writeuint32(1<<i);
333 puts(" ");
334 uart_writeuint32(tmp);
335 putchar(10);
336 i++;
337 }
338 }
339
340 return 0;
341 #endif
342
343 // init DRAM only if SYSCON says it exists (duh)
344 if (ftr & SYS_REG_INFO_HAS_DRAM)
345 {
346 puts("DRAM init... ");
347
348 struct gramCtx ctx;
349 #if 1
350 struct gramProfile profile = {
351 .mode_registers = {
352 0xb20, 0x806, 0x200, 0x0
353 },
354 .rdly_p0 = 2,
355 .rdly_p1 = 2,
356 };
357 #endif
358 #if 0
359 struct gramProfile profile = {
360 .mode_registers = {
361 0x0320, 0x0006, 0x0200, 0x0000
362 },
363 .rdly_p0 = 1,
364 .rdly_p1 = 1,
365 };
366 #endif
367 struct gramProfile profile2;
368 gram_init(&ctx, &profile, (void*)MEMORY_BASE,
369 (void*)DRAM_CTRL_BASE,
370 (void*)DRAM_INIT_BASE);
371 puts("done\n");
372
373 puts("MR profile: ");
374 uart_writeuint32(profile.mode_registers[0]);
375 puts(" ");
376 uart_writeuint32(profile.mode_registers[1]);
377 puts(" ");
378 uart_writeuint32(profile.mode_registers[2]);
379 puts(" ");
380 uart_writeuint32(profile.mode_registers[3]);
381 puts("\n");
382
383 // FIXME
384 // Early read test for WB access sim
385 //uart_writeuint32(*ram);
386
387 #if 1
388 puts("Rdly\np0: ");
389 for (size_t i = 0; i < 8; i++) {
390 profile2.rdly_p0 = i;
391 gram_load_calibration(&ctx, &profile2);
392 gram_reset_burstdet(&ctx);
393
394 for (size_t j = 0; j < 128; j++) {
395 tmp = readl((unsigned long)&(ram[i]));
396 }
397 if (gram_read_burstdet(&ctx, 0)) {
398 puts("1");
399 } else {
400 puts("0");
401 }
402 }
403 puts("\n");
404
405 puts("Rdly\np1: ");
406 for (size_t i = 0; i < 8; i++) {
407 profile2.rdly_p1 = i;
408 gram_load_calibration(&ctx, &profile2);
409 gram_reset_burstdet(&ctx);
410 for (size_t j = 0; j < 128; j++) {
411 tmp = readl((unsigned long)&(ram[i]));
412 }
413 if (gram_read_burstdet(&ctx, 1)) {
414 puts("1");
415 } else {
416 puts("0");
417 }
418 }
419 puts("\n");
420
421 puts("Auto calibrating... ");
422 res = gram_generate_calibration(&ctx, &profile2);
423 if (res != GRAM_ERR_NONE) {
424 puts("failed\n");
425 gram_load_calibration(&ctx, &profile);
426 } else {
427 gram_load_calibration(&ctx, &profile2);
428 }
429 puts("done\n");
430
431 puts("Auto calibration profile:");
432 puts("p0 rdly:");
433 uart_writeuint32(profile2.rdly_p0);
434 puts(" p1 rdly:");
435 uart_writeuint32(profile2.rdly_p1);
436 puts("\n");
437 #endif
438
439 puts("Reloading built-in calibration profile...");
440 gram_load_calibration(&ctx, &profile);
441
442 puts("DRAM test... \n");
443 for (size_t i = 0; i < kNumIterations; i++) {
444 writel(0xDEAF0000 | i*4, (unsigned long)&(ram[i]));
445 }
446
447 #if 0
448 for (int dly = 0; dly < 8; dly++) {
449 failcnt = 0;
450 profile2.rdly_p0 = dly;
451 profile2.rdly_p1 = dly;
452 puts("p0 rdly:");
453 uart_writeuint32(profile2.rdly_p0);
454 puts(" p1 rdly:");
455 uart_writeuint32(profile2.rdly_p1);
456 gram_load_calibration(&ctx, &profile2);
457 for (size_t i = 0; i < kNumIterations; i++) {
458 if (readl((unsigned long)&(ram[i])) != (0xDEAF0000 | i*4)) {
459 puts("fail : *(0x");
460 uart_writeuint32((unsigned long)(&ram[i]));
461 puts(") = ");
462 uart_writeuint32(readl((unsigned long)&(ram[i])));
463 puts("\n");
464 failcnt++;
465
466 if (failcnt > 10) {
467 puts("Test canceled (more than 10 errors)\n");
468 break;
469 }
470 }
471 }
472 }
473 #else
474 failcnt = 0;
475 for (size_t i = 0; i < kNumIterations; i++) {
476 if (readl((unsigned long)&(ram[i])) != (0xDEAF0000 | i*4)) {
477 puts("fail : *(0x");
478 uart_writeuint32((unsigned long)(&ram[i]));
479 puts(") = ");
480 uart_writeuint32(readl((unsigned long)&(ram[i])));
481 puts("\n");
482 failcnt++;
483
484 if (failcnt > 10) {
485 puts("Test canceled (more than 10 errors)\n");
486 break;
487 }
488 }
489 }
490 }
491 #endif
492 puts("done\n");
493
494 // temporary hard-hack: boot directly from QSPI. really
495 // should do something like detect at least... something
496 if ((ftr & SYS_REG_INFO_HAS_SPI_FLASH))
497 {
498 // jump to absolute address
499 mtspr(8, SPI_FLASH_BASE); // move address to LR
500 __asm__ volatile("blr");
501 return 0;
502 }
503
504 // memcpy from SPI Flash then boot
505 if ((ftr & SYS_REG_INFO_HAS_SPI_FLASH) &&
506 (failcnt == 0))
507 {
508 // identify ELF, copy if present, and get the start address
509 unsigned long faddr = copy_flash(spi_offs,
510 0x600000); // hack!
511 if (faddr != -1ul) {
512 // jump to absolute address
513 mtspr(8, faddr); // move address to LR
514 __asm__ volatile("blr");
515
516 // works with head.S which copies r3 into ctr then does bctr
517 return faddr;
518 }
519 }
520
521 return 0;
522 }
523