2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-12-20 20:09:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2007 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:44:58 +00:00
|
|
|
#include <clock_legacy.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2007-12-20 20:09:22 +00:00
|
|
|
#include <fdt_support.h>
|
2008-06-16 20:55:53 +00:00
|
|
|
#include <asm/processor.h>
|
2007-12-20 20:09:22 +00:00
|
|
|
|
2008-01-17 14:25:45 +00:00
|
|
|
extern void ft_qe_setup(void *blob);
|
|
|
|
|
2007-12-20 20:09:22 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2010-02-18 07:08:25 +00:00
|
|
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
|
2019-01-21 08:17:25 +00:00
|
|
|
(defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X))
|
2014-06-03 08:27:07 +00:00
|
|
|
#include <linux/immap_qe.h>
|
2009-02-24 10:30:51 +00:00
|
|
|
|
|
|
|
void fdt_fixup_muram (void *blob)
|
|
|
|
{
|
|
|
|
ulong data[2];
|
|
|
|
|
|
|
|
data[0] = 0;
|
|
|
|
data[1] = QE_MURAM_SIZE - 2 * sizeof(unsigned long);
|
2009-04-24 04:50:45 +00:00
|
|
|
do_fixup_by_compat(blob, "fsl,qe-muram-data", "reg",
|
|
|
|
data, sizeof (data), 0);
|
2009-02-24 10:30:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-06-26 06:13:33 +00:00
|
|
|
void ft_cpu_setup(void *blob, struct bd_info *bd)
|
2007-12-20 20:09:22 +00:00
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
|
2008-06-16 20:55:53 +00:00
|
|
|
int spridr = immr->sysconf.spridr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* delete crypto node if not on an E-processor
|
|
|
|
* initial revisions of the MPC834xE/6xE have the original SEC 2.0.
|
|
|
|
* EA revisions got the SEC uprevved to 2.4 but since the default device
|
|
|
|
* tree contains SEC 2.0 properties we uprev them here.
|
|
|
|
*/
|
|
|
|
if (!IS_E_PROCESSOR(spridr))
|
|
|
|
fdt_fixup_crypto_node(blob, 0);
|
|
|
|
else if (IS_E_PROCESSOR(spridr) &&
|
|
|
|
(SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
|
|
|
|
SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
|
|
|
|
REVID_MAJOR(spridr) >= 2)
|
|
|
|
fdt_fixup_crypto_node(blob, 0x0204);
|
|
|
|
|
2007-12-20 20:09:22 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
|
2008-09-29 22:28:23 +00:00
|
|
|
defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) ||\
|
|
|
|
defined(CONFIG_HAS_ETH4) || defined(CONFIG_HAS_ETH5)
|
2019-01-21 08:17:25 +00:00
|
|
|
#ifdef CONFIG_ARCH_MPC8313
|
2009-10-12 16:06:19 +00:00
|
|
|
/*
|
|
|
|
* mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
|
|
|
|
* h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
|
|
|
|
* so if on Rev. 2 (and higher) h/w, we fix them up here
|
|
|
|
*/
|
|
|
|
if (REVID_MAJOR(immr->sysconf.spridr) >= 2) {
|
|
|
|
int nodeoffset, path;
|
|
|
|
const char *prop;
|
|
|
|
|
|
|
|
nodeoffset = fdt_path_offset(blob, "/aliases");
|
|
|
|
if (nodeoffset >= 0) {
|
|
|
|
#if defined(CONFIG_HAS_ETH0)
|
|
|
|
prop = fdt_getprop(blob, nodeoffset, "ethernet0", NULL);
|
|
|
|
if (prop) {
|
|
|
|
u32 tmp[] = { 32, 0x8, 33, 0x8, 34, 0x8 };
|
|
|
|
|
|
|
|
path = fdt_path_offset(blob, prop);
|
powerpc/mpc83xx: sparse fixes
fdt.c:91:78: warning: Using plain integer as NULL pointer
fdt.c:103:78: warning: Using plain integer as NULL pointer
speed.c:55:11: warning: symbol 'corecnf_tab' was not declared. Should it be static?
speed.c:519:5: warning: symbol 'do_clocks' was not declared. Should it be static?
mpc8313erdb.c:73:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:74:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:75:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:76:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:79:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:80:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:81:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:82:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:85:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:86:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:87:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:88:17: warning: obsolete struct initializer, use C99 syntax
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2012-10-29 13:34:39 +00:00
|
|
|
prop = fdt_getprop(blob, path, "interrupts",
|
|
|
|
NULL);
|
2009-10-12 16:06:19 +00:00
|
|
|
if (prop)
|
|
|
|
fdt_setprop(blob, path, "interrupts",
|
|
|
|
&tmp, sizeof(tmp));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_HAS_ETH1)
|
|
|
|
prop = fdt_getprop(blob, nodeoffset, "ethernet1", NULL);
|
|
|
|
if (prop) {
|
|
|
|
u32 tmp[] = { 35, 0x8, 36, 0x8, 37, 0x8 };
|
|
|
|
|
|
|
|
path = fdt_path_offset(blob, prop);
|
powerpc/mpc83xx: sparse fixes
fdt.c:91:78: warning: Using plain integer as NULL pointer
fdt.c:103:78: warning: Using plain integer as NULL pointer
speed.c:55:11: warning: symbol 'corecnf_tab' was not declared. Should it be static?
speed.c:519:5: warning: symbol 'do_clocks' was not declared. Should it be static?
mpc8313erdb.c:73:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:74:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:75:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:76:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:79:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:80:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:81:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:82:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:85:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:86:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:87:17: warning: obsolete struct initializer, use C99 syntax
mpc8313erdb.c:88:17: warning: obsolete struct initializer, use C99 syntax
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2012-10-29 13:34:39 +00:00
|
|
|
prop = fdt_getprop(blob, path, "interrupts",
|
|
|
|
NULL);
|
2009-10-12 16:06:19 +00:00
|
|
|
if (prop)
|
|
|
|
fdt_setprop(blob, path, "interrupts",
|
|
|
|
&tmp, sizeof(tmp));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2007-12-20 20:09:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
|
|
|
"timebase-frequency", (bd->bi_busfreq / 4), 1);
|
|
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
|
|
|
"bus-frequency", bd->bi_busfreq, 1);
|
|
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
2012-12-13 20:48:47 +00:00
|
|
|
"clock-frequency", gd->arch.core_clk, 1);
|
2007-12-20 20:09:22 +00:00
|
|
|
do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
|
|
|
|
"bus-frequency", bd->bi_busfreq, 1);
|
2008-03-24 17:47:09 +00:00
|
|
|
do_fixup_by_compat_u32(blob, "fsl,soc",
|
|
|
|
"bus-frequency", bd->bi_busfreq, 1);
|
|
|
|
do_fixup_by_compat_u32(blob, "fsl,soc",
|
|
|
|
"clock-frequency", bd->bi_busfreq, 1);
|
|
|
|
do_fixup_by_compat_u32(blob, "fsl,immr",
|
|
|
|
"bus-frequency", bd->bi_busfreq, 1);
|
|
|
|
do_fixup_by_compat_u32(blob, "fsl,immr",
|
|
|
|
"clock-frequency", bd->bi_busfreq, 1);
|
2007-12-20 20:09:22 +00:00
|
|
|
#ifdef CONFIG_QE
|
2008-01-17 14:25:45 +00:00
|
|
|
ft_qe_setup(blob);
|
2007-12-20 20:09:22 +00:00
|
|
|
#endif
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_NS16550
|
2019-01-21 08:18:06 +00:00
|
|
|
do_fixup_by_compat_u32(blob, "ns16550",
|
|
|
|
"clock-frequency", get_serial_clock(), 1);
|
2007-12-20 20:09:22 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-12 11:16:36 +00:00
|
|
|
fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size);
|
2009-02-24 10:30:51 +00:00
|
|
|
|
2014-01-25 06:53:47 +00:00
|
|
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
|
2019-01-21 08:17:25 +00:00
|
|
|
(defined(CONFIG_QE) && !defined(CONFIG_ARCH_MPC831X))
|
2009-02-24 10:30:51 +00:00
|
|
|
fdt_fixup_muram (blob);
|
|
|
|
#endif
|
2007-12-20 20:09:22 +00:00
|
|
|
}
|