diff options
author | Roy Zang <tie-fei.zang@freescale.com> | 2007-09-24 06:31:55 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-10-04 12:02:50 -0400 |
commit | c4e05bc57dd14294683cdea7fe36ce3c01f5c6ae (patch) | |
tree | 8436782d7378538543d9706013f16f5f4fccd308 /arch | |
parent | 3611f2ad424094655d381f099613a6f43239824d (diff) |
[POWERPC] bootwrapper: adds cuboot for MPC7448HPC2 platform
This patch adds cuboot support for MPC7448HPC2 platform.
The cuImage can be used with legacy u-boot without FDT support.
Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/boot/Makefile | 3 | ||||
-rw-r--r-- | arch/powerpc/boot/cuboot-hpc2.c | 48 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/mpc7448hpc2.dts | 5 | ||||
-rw-r--r-- | arch/powerpc/platforms/embedded6xx/Kconfig | 1 |
4 files changed, 56 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index a90baa3aff23..f3f7ce3d79a5 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -52,7 +52,7 @@ src-plat := of.c cuboot-52xx.c cuboot-83xx.c cuboot-85xx.c holly.c \ | |||
52 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ | 52 | cuboot-ebony.c treeboot-ebony.c prpmc2800.c \ |
53 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \ | 53 | ps3-head.S ps3-hvcall.S ps3.c treeboot-bamboo.c cuboot-8xx.c \ |
54 | cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c cuboot-bamboo.c \ | 54 | cuboot-pq2.c cuboot-sequoia.c treeboot-walnut.c cuboot-bamboo.c \ |
55 | fixed-head.S ep88xc.c | 55 | fixed-head.S ep88xc.c cuboot-hpc2.c |
56 | src-boot := $(src-wlib) $(src-plat) empty.c | 56 | src-boot := $(src-wlib) $(src-plat) empty.c |
57 | 57 | ||
58 | src-boot := $(addprefix $(obj)/, $(src-boot)) | 58 | src-boot := $(addprefix $(obj)/, $(src-boot)) |
@@ -150,6 +150,7 @@ image-$(CONFIG_8260) += cuImage.pq2 | |||
150 | image-$(CONFIG_PPC_MPC52xx) += cuImage.52xx | 150 | image-$(CONFIG_PPC_MPC52xx) += cuImage.52xx |
151 | image-$(CONFIG_PPC_83xx) += cuImage.83xx | 151 | image-$(CONFIG_PPC_83xx) += cuImage.83xx |
152 | image-$(CONFIG_PPC_85xx) += cuImage.85xx | 152 | image-$(CONFIG_PPC_85xx) += cuImage.85xx |
153 | image-$(CONFIG_MPC7448HPC2) += cuImage.hpc2 | ||
153 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony | 154 | image-$(CONFIG_EBONY) += treeImage.ebony cuImage.ebony |
154 | image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo | 155 | image-$(CONFIG_BAMBOO) += treeImage.bamboo cuImage.bamboo |
155 | image-$(CONFIG_SEQUOIA) += cuImage.sequoia | 156 | image-$(CONFIG_SEQUOIA) += cuImage.sequoia |
diff --git a/arch/powerpc/boot/cuboot-hpc2.c b/arch/powerpc/boot/cuboot-hpc2.c new file mode 100644 index 000000000000..d333898bca30 --- /dev/null +++ b/arch/powerpc/boot/cuboot-hpc2.c | |||
@@ -0,0 +1,48 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved. | ||
3 | * | ||
4 | * Author: Roy Zang <tie-fei.zang@freescale.com> | ||
5 | * | ||
6 | * Description: | ||
7 | * Old U-boot compatibility for mpc7448hpc2 board | ||
8 | * Based on the code of Scott Wood <scottwood@freescale.com> | ||
9 | * for 83xx and 85xx. | ||
10 | * | ||
11 | * This is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License as published by | ||
13 | * the Free Software Foundation; either version 2 of the License, or | ||
14 | * (at your option) any later version. | ||
15 | * | ||
16 | */ | ||
17 | |||
18 | #include "ops.h" | ||
19 | #include "stdio.h" | ||
20 | #include "cuboot.h" | ||
21 | |||
22 | #define TARGET_HAS_ETH1 | ||
23 | #include "ppcboot.h" | ||
24 | |||
25 | static bd_t bd; | ||
26 | extern char _dtb_start[], _dtb_end[]; | ||
27 | |||
28 | static void platform_fixups(void) | ||
29 | { | ||
30 | void *tsi; | ||
31 | |||
32 | dt_fixup_memory(bd.bi_memstart, bd.bi_memsize); | ||
33 | dt_fixup_mac_addresses(bd.bi_enetaddr, bd.bi_enet1addr); | ||
34 | dt_fixup_cpu_clocks(bd.bi_intfreq, bd.bi_busfreq / 4, bd.bi_busfreq); | ||
35 | tsi = find_node_by_devtype(NULL, "tsi-bridge"); | ||
36 | if (tsi) | ||
37 | setprop(tsi, "bus-frequency", &bd.bi_busfreq, | ||
38 | sizeof(bd.bi_busfreq)); | ||
39 | } | ||
40 | |||
41 | void platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | ||
42 | unsigned long r6, unsigned long r7) | ||
43 | { | ||
44 | CUBOOT_INIT(); | ||
45 | ft_init(_dtb_start, _dtb_end - _dtb_start, 32); | ||
46 | serial_console_init(); | ||
47 | platform_ops.fixups = platform_fixups; | ||
48 | } | ||
diff --git a/arch/powerpc/boot/dts/mpc7448hpc2.dts b/arch/powerpc/boot/dts/mpc7448hpc2.dts index 88cd37da13ef..8fb542387436 100644 --- a/arch/powerpc/boot/dts/mpc7448hpc2.dts +++ b/arch/powerpc/boot/dts/mpc7448hpc2.dts | |||
@@ -78,6 +78,7 @@ | |||
78 | }; | 78 | }; |
79 | 79 | ||
80 | ethernet@6200 { | 80 | ethernet@6200 { |
81 | linux,network-index = <0>; | ||
81 | #size-cells = <0>; | 82 | #size-cells = <0>; |
82 | device_type = "network"; | 83 | device_type = "network"; |
83 | compatible = "tsi108-ethernet"; | 84 | compatible = "tsi108-ethernet"; |
@@ -90,6 +91,7 @@ | |||
90 | }; | 91 | }; |
91 | 92 | ||
92 | ethernet@6600 { | 93 | ethernet@6600 { |
94 | linux,network-index = <1>; | ||
93 | #address-cells = <1>; | 95 | #address-cells = <1>; |
94 | #size-cells = <0>; | 96 | #size-cells = <0>; |
95 | device_type = "network"; | 97 | device_type = "network"; |
@@ -183,5 +185,8 @@ | |||
183 | }; | 185 | }; |
184 | }; | 186 | }; |
185 | }; | 187 | }; |
188 | chosen { | ||
189 | linux,stdout-path = "/tsi108@c0000000/serial@7808"; | ||
190 | }; | ||
186 | 191 | ||
187 | }; | 192 | }; |
diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig b/arch/powerpc/platforms/embedded6xx/Kconfig index da66103009c6..8924095a7928 100644 --- a/arch/powerpc/platforms/embedded6xx/Kconfig +++ b/arch/powerpc/platforms/embedded6xx/Kconfig | |||
@@ -22,6 +22,7 @@ config MPC7448HPC2 | |||
22 | select TSI108_BRIDGE | 22 | select TSI108_BRIDGE |
23 | select DEFAULT_UIMAGE | 23 | select DEFAULT_UIMAGE |
24 | select PPC_UDBG_16550 | 24 | select PPC_UDBG_16550 |
25 | select WANT_DEVICE_TREE | ||
25 | help | 26 | help |
26 | Select MPC7448HPC2 if configuring for Freescale MPC7448HPC2 (Taiga) | 27 | Select MPC7448HPC2 if configuring for Freescale MPC7448HPC2 (Taiga) |
27 | platform | 28 | platform |