blob: 33b2151f878c4ccc9b0c8b79f273f1c73d998007 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kim Phillipsfd47a742007-12-20 14:09:22 -06002/*
3 * Copyright 2007 Freescale Semiconductor, Inc.
4 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kim Phillipsfd47a742007-12-20 14:09:22 -06007 */
8
9#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -070010#include <clock_legacy.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090012#include <linux/libfdt.h>
Kim Phillipsfd47a742007-12-20 14:09:22 -060013#include <fdt_support.h>
Kim Phillips868e3462008-06-16 15:55:53 -050014#include <asm/processor.h>
Kim Phillipsfd47a742007-12-20 14:09:22 -060015
Kumar Gala1f164482008-01-17 08:25:45 -060016extern void ft_qe_setup(void *blob);
17
Kim Phillipsfd47a742007-12-20 14:09:22 -060018DECLARE_GLOBAL_DATA_PTR;
19
Heiko Schocher466924f2010-02-18 08:08:25 +010020#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
Mario Six9164bdd2019-01-21 09:17:25 +010021 (defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X))
Zhao Qiang978679d2014-06-03 16:27:07 +080022#include <linux/immap_qe.h>
Heiko Schocherd2c4f3a2009-02-24 11:30:51 +010023
24void fdt_fixup_muram (void *blob)
25{
26 ulong data[2];
27
28 data[0] = 0;
29 data[1] = QE_MURAM_SIZE - 2 * sizeof(unsigned long);
Heiko Schocher0b000742009-04-24 06:50:45 +020030 do_fixup_by_compat(blob, "fsl,qe-muram-data", "reg",
31 data, sizeof (data), 0);
Heiko Schocherd2c4f3a2009-02-24 11:30:51 +010032}
33#endif
34
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090035void ft_cpu_setup(void *blob, struct bd_info *bd)
Kim Phillipsfd47a742007-12-20 14:09:22 -060036{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020037 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
Kim Phillips868e3462008-06-16 15:55:53 -050038 int spridr = immr->sysconf.spridr;
39
40 /*
41 * delete crypto node if not on an E-processor
42 * initial revisions of the MPC834xE/6xE have the original SEC 2.0.
43 * EA revisions got the SEC uprevved to 2.4 but since the default device
44 * tree contains SEC 2.0 properties we uprev them here.
45 */
46 if (!IS_E_PROCESSOR(spridr))
47 fdt_fixup_crypto_node(blob, 0);
48 else if (IS_E_PROCESSOR(spridr) &&
49 (SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
50 SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
51 REVID_MAJOR(spridr) >= 2)
52 fdt_fixup_crypto_node(blob, 0x0204);
53
Mario Six9164bdd2019-01-21 09:17:25 +010054#ifdef CONFIG_ARCH_MPC8313
Kim Phillips3b1b1442009-10-12 11:06:19 -050055 /*
56 * mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
57 * h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
58 * so if on Rev. 2 (and higher) h/w, we fix them up here
59 */
60 if (REVID_MAJOR(immr->sysconf.spridr) >= 2) {
61 int nodeoffset, path;
62 const char *prop;
63
64 nodeoffset = fdt_path_offset(blob, "/aliases");
65 if (nodeoffset >= 0) {
Kim Phillips3b1b1442009-10-12 11:06:19 -050066 prop = fdt_getprop(blob, nodeoffset, "ethernet0", NULL);
67 if (prop) {
68 u32 tmp[] = { 32, 0x8, 33, 0x8, 34, 0x8 };
69
70 path = fdt_path_offset(blob, prop);
Kim Phillipsb5c312a2012-10-29 13:34:39 +000071 prop = fdt_getprop(blob, path, "interrupts",
72 NULL);
Kim Phillips3b1b1442009-10-12 11:06:19 -050073 if (prop)
74 fdt_setprop(blob, path, "interrupts",
75 &tmp, sizeof(tmp));
76 }
Kim Phillips3b1b1442009-10-12 11:06:19 -050077 prop = fdt_getprop(blob, nodeoffset, "ethernet1", NULL);
78 if (prop) {
79 u32 tmp[] = { 35, 0x8, 36, 0x8, 37, 0x8 };
80
81 path = fdt_path_offset(blob, prop);
Kim Phillipsb5c312a2012-10-29 13:34:39 +000082 prop = fdt_getprop(blob, path, "interrupts",
83 NULL);
Kim Phillips3b1b1442009-10-12 11:06:19 -050084 if (prop)
85 fdt_setprop(blob, path, "interrupts",
86 &tmp, sizeof(tmp));
87 }
Kim Phillips3b1b1442009-10-12 11:06:19 -050088 }
89 }
90#endif
Kim Phillipsfd47a742007-12-20 14:09:22 -060091
92 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
93 "timebase-frequency", (bd->bi_busfreq / 4), 1);
94 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
95 "bus-frequency", bd->bi_busfreq, 1);
96 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
Simon Glasscc76e9e2012-12-13 20:48:47 +000097 "clock-frequency", gd->arch.core_clk, 1);
Kim Phillipsfd47a742007-12-20 14:09:22 -060098 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
99 "bus-frequency", bd->bi_busfreq, 1);
Anton Vorontsov3114a9b2008-03-24 20:47:09 +0300100 do_fixup_by_compat_u32(blob, "fsl,soc",
101 "bus-frequency", bd->bi_busfreq, 1);
102 do_fixup_by_compat_u32(blob, "fsl,soc",
103 "clock-frequency", bd->bi_busfreq, 1);
104 do_fixup_by_compat_u32(blob, "fsl,immr",
105 "bus-frequency", bd->bi_busfreq, 1);
106 do_fixup_by_compat_u32(blob, "fsl,immr",
107 "clock-frequency", bd->bi_busfreq, 1);
Kim Phillipsfd47a742007-12-20 14:09:22 -0600108#ifdef CONFIG_QE
Kumar Gala1f164482008-01-17 08:25:45 -0600109 ft_qe_setup(blob);
Kim Phillipsfd47a742007-12-20 14:09:22 -0600110#endif
111
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200112#ifdef CONFIG_SYS_NS16550
Mario Sixa3a8d0c2019-01-21 09:18:06 +0100113 do_fixup_by_compat_u32(blob, "ns16550",
114 "clock-frequency", get_serial_clock(), 1);
Kim Phillipsfd47a742007-12-20 14:09:22 -0600115#endif
116
Stefan Roesea13a2aa2020-08-12 13:16:36 +0200117 fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size);
Heiko Schocherd2c4f3a2009-02-24 11:30:51 +0100118
Heiko Schocher04e3b3a2014-01-25 07:53:47 +0100119#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
Mario Six9164bdd2019-01-21 09:17:25 +0100120 (defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X))
Heiko Schocherd2c4f3a2009-02-24 11:30:51 +0100121 fdt_fixup_muram (blob);
122#endif
Kim Phillipsfd47a742007-12-20 14:09:22 -0600123}