blob: 097974e59faced80a623d24a8eadd001e81c062a [file] [log] [blame]
Josh Boyer53261522007-09-07 07:51:44 -05001/*
2 * Old U-boot compatibility for Walnut
3 *
4 * Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
5 *
6 * Copyright 2007 IBM Corporation
7 * Based on cuboot-83xx.c, which is:
8 * Copyright (c) 2007 Freescale Semiconductor, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
13 */
14
15#include "ops.h"
16#include "stdio.h"
17#include "dcr.h"
18#include "4xx.h"
19#include "io.h"
20
21BSS_STACK(4096);
22
Josh Boyer53261522007-09-07 07:51:44 -050023static void walnut_flashsel_fixup(void)
24{
25 void *devp, *sram;
26 u32 reg_flash[3] = {0x0, 0x0, 0x80000};
27 u32 reg_sram[3] = {0x0, 0x0, 0x80000};
28 u8 *fpga;
29 u8 fpga_brds1 = 0x0;
30
31 devp = finddevice("/plb/ebc/fpga");
32 if (!devp)
33 fatal("Couldn't locate FPGA node\n\r");
34
35 if (getprop(devp, "virtual-reg", &fpga, sizeof(fpga)) != sizeof(fpga))
36 fatal("no virtual-reg property\n\r");
37
38 fpga_brds1 = in_8(fpga);
39
40 devp = finddevice("/plb/ebc/flash");
41 if (!devp)
42 fatal("Couldn't locate flash node\n\r");
43
44 if (getprop(devp, "reg", reg_flash, sizeof(reg_flash)) != sizeof(reg_flash))
45 fatal("flash reg property has unexpected size\n\r");
46
47 sram = finddevice("/plb/ebc/sram");
48 if (!sram)
49 fatal("Couldn't locate sram node\n\r");
50
51 if (getprop(sram, "reg", reg_sram, sizeof(reg_sram)) != sizeof(reg_sram))
52 fatal("sram reg property has unexpected size\n\r");
53
54 if (fpga_brds1 & 0x1) {
55 reg_flash[1] ^= 0x80000;
56 reg_sram[1] ^= 0x80000;
57 }
58
59 setprop(devp, "reg", reg_flash, sizeof(reg_flash));
60 setprop(sram, "reg", reg_sram, sizeof(reg_sram));
61}
62
Josh Boyerb3af7a52007-10-20 00:53:11 +100063#define WALNUT_OPENBIOS_MAC_OFF 0xfffffe0b
Josh Boyer53261522007-09-07 07:51:44 -050064static void walnut_fixups(void)
65{
Benjamin Herrenschmidtd23f5092007-12-21 15:39:31 +110066 ibm4xx_sdram_fixup_memsize();
Josh Boyer53261522007-09-07 07:51:44 -050067 ibm405gp_fixup_clocks(33330000, 0xa8c000);
68 ibm4xx_quiesce_eth((u32 *)0xef600800, NULL);
69 ibm4xx_fixup_ebc_ranges("/plb/ebc");
70 walnut_flashsel_fixup();
David Gibsonecc6cd72008-02-26 11:43:20 +110071 dt_fixup_mac_address_by_alias("ethernet0", (u8 *) WALNUT_OPENBIOS_MAC_OFF);
Josh Boyer53261522007-09-07 07:51:44 -050072}
73
74void platform_init(void)
75{
76 unsigned long end_of_ram = 0x2000000;
77 unsigned long avail_ram = end_of_ram - (unsigned long) _end;
78
79 simple_alloc_init(_end, avail_ram, 32, 32);
80 platform_ops.fixups = walnut_fixups;
81 platform_ops.exit = ibm40x_dbcr_reset;
David Gibson2f0dfea2007-12-10 14:28:39 +110082 fdt_init(_dtb_start);
Josh Boyer53261522007-09-07 07:51:44 -050083 serial_console_init();
84}