2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-09-02 14:10:36 +00:00
|
|
|
/*
|
2014-08-22 05:26:05 +00:00
|
|
|
* Copyright 2009-2014 Freescale Semiconductor, Inc.
|
2020-03-16 13:35:59 +00:00
|
|
|
* Copyright 2020 NXP
|
2009-09-02 14:10:36 +00:00
|
|
|
*
|
2010-04-15 14:07:28 +00:00
|
|
|
* This file is derived from arch/powerpc/cpu/mpc85xx/cpu.c and
|
|
|
|
* arch/powerpc/cpu/mpc86xx/cpu.c. Basically this file contains
|
2010-04-13 03:28:09 +00:00
|
|
|
* cpu specific common code for 85xx/86xx processors.
|
2009-09-02 14:10:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:32 +00:00
|
|
|
#include <cpu_func.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2009-09-02 14:10:36 +00:00
|
|
|
#include <fdt_support.h>
|
2010-06-10 03:33:53 +00:00
|
|
|
#include <asm/mp.h>
|
2010-12-30 18:09:53 +00:00
|
|
|
#include <asm/fsl_serdes.h>
|
2011-04-13 05:37:12 +00:00
|
|
|
#include <phy.h>
|
2011-06-08 11:44:20 +00:00
|
|
|
#include <hwconfig.h>
|
2011-07-29 13:51:26 +00:00
|
|
|
|
2013-10-18 12:10:17 +00:00
|
|
|
#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
|
|
|
|
#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
|
|
|
|
#endif
|
2009-09-02 14:10:36 +00:00
|
|
|
|
2010-06-10 03:33:53 +00:00
|
|
|
#if defined(CONFIG_MP) && (defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx))
|
2010-06-09 18:14:28 +00:00
|
|
|
static int ft_del_cpuhandle(void *blob, int cpuhandle)
|
|
|
|
{
|
|
|
|
int off, ret = -FDT_ERR_NOTFOUND;
|
|
|
|
|
|
|
|
/* if we find a match, we'll delete at it which point the offsets are
|
|
|
|
* invalid so we start over from the beginning
|
|
|
|
*/
|
|
|
|
off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
|
|
|
|
&cpuhandle, 4);
|
|
|
|
while (off != -FDT_ERR_NOTFOUND) {
|
|
|
|
fdt_delprop(blob, off, "cpu-handle");
|
|
|
|
ret = 1;
|
|
|
|
off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
|
|
|
|
&cpuhandle, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-09-02 14:10:36 +00:00
|
|
|
void ft_fixup_num_cores(void *blob) {
|
|
|
|
int off, num_cores, del_cores;
|
|
|
|
|
|
|
|
del_cores = 0;
|
|
|
|
num_cores = cpu_numcores();
|
|
|
|
|
|
|
|
off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
|
|
|
|
while (off != -FDT_ERR_NOTFOUND) {
|
|
|
|
u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
|
2012-08-17 08:20:26 +00:00
|
|
|
u32 phys_cpu_id = thread_to_core(*reg);
|
2009-09-02 14:10:36 +00:00
|
|
|
|
2012-08-17 08:20:26 +00:00
|
|
|
if (!is_core_valid(phys_cpu_id) || is_core_disabled(phys_cpu_id)) {
|
2010-06-09 18:14:28 +00:00
|
|
|
int ph = fdt_get_phandle(blob, off);
|
|
|
|
|
|
|
|
/* Delete the cpu node once there are no cpu handles */
|
|
|
|
if (-FDT_ERR_NOTFOUND == ft_del_cpuhandle(blob, ph)) {
|
|
|
|
fdt_del_node(blob, off);
|
|
|
|
del_cores++;
|
|
|
|
}
|
|
|
|
/* either we deleted some cpu handles or the cpu node
|
|
|
|
* so we reset the offset back to the start since we
|
|
|
|
* can't trust the offsets anymore
|
|
|
|
*/
|
2009-09-02 14:10:36 +00:00
|
|
|
off = -1;
|
|
|
|
}
|
|
|
|
off = fdt_node_offset_by_prop_value(blob, off,
|
|
|
|
"device_type", "cpu", 4);
|
|
|
|
}
|
|
|
|
debug ("%x core system found\n", num_cores);
|
|
|
|
debug ("deleted %d extra core entry entries from device tree\n",
|
|
|
|
del_cores);
|
|
|
|
}
|
2010-05-28 08:00:14 +00:00
|
|
|
#endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */
|
|
|
|
|
2011-04-13 05:37:12 +00:00
|
|
|
int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc)
|
2010-09-30 14:15:03 +00:00
|
|
|
{
|
2020-03-16 13:35:59 +00:00
|
|
|
const char *conn;
|
|
|
|
|
|
|
|
/* Do NOT apply fixup for backplane modes specified in DT */
|
|
|
|
if (phyc == PHY_INTERFACE_MODE_XGMII) {
|
|
|
|
conn = fdt_getprop(blob, offset, "phy-connection-type", NULL);
|
|
|
|
if (is_backplane_mode(conn))
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-30 14:15:03 +00:00
|
|
|
return fdt_setprop_string(blob, offset, "phy-connection-type",
|
2011-04-13 05:37:12 +00:00
|
|
|
phy_string_for_interface(phyc));
|
2010-09-30 14:15:03 +00:00
|
|
|
}
|
2010-12-30 18:09:53 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_SRIO
|
2011-10-14 05:03:58 +00:00
|
|
|
static inline void ft_disable_srio_port(void *blob, int srio_off, int port)
|
|
|
|
{
|
|
|
|
int off = fdt_node_offset_by_prop_value(blob, srio_off,
|
|
|
|
"cell-index", &port, 4);
|
|
|
|
if (off >= 0) {
|
|
|
|
off = fdt_setprop_string(blob, off, "status", "disabled");
|
|
|
|
if (off > 0)
|
|
|
|
printf("WARNING unable to set status for fsl,srio "
|
|
|
|
"port %d: %s\n", port, fdt_strerror(off));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ft_disable_rman(void *blob)
|
|
|
|
{
|
|
|
|
int off = fdt_node_offset_by_compatible(blob, -1, "fsl,rman");
|
|
|
|
if (off >= 0) {
|
|
|
|
off = fdt_setprop_string(blob, off, "status", "disabled");
|
|
|
|
if (off > 0)
|
|
|
|
printf("WARNING unable to set status for fsl,rman %s\n",
|
|
|
|
fdt_strerror(off));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ft_disable_rmu(void *blob)
|
|
|
|
{
|
|
|
|
int off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio-rmu");
|
|
|
|
if (off >= 0) {
|
|
|
|
off = fdt_setprop_string(blob, off, "status", "disabled");
|
|
|
|
if (off > 0)
|
|
|
|
printf("WARNING unable to set status for "
|
|
|
|
"fsl,srio-rmu %s\n", fdt_strerror(off));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-30 18:09:53 +00:00
|
|
|
void ft_srio_setup(void *blob)
|
|
|
|
{
|
2011-10-14 05:03:58 +00:00
|
|
|
int srio1_used = 0, srio2_used = 0;
|
|
|
|
int srio_off;
|
|
|
|
|
|
|
|
/* search for srio node, if doesn't exist just return - nothing todo */
|
|
|
|
srio_off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio");
|
|
|
|
if (srio_off < 0)
|
|
|
|
return ;
|
|
|
|
|
2010-12-30 18:09:53 +00:00
|
|
|
#ifdef CONFIG_SRIO1
|
2011-10-14 05:03:58 +00:00
|
|
|
if (is_serdes_configured(SRIO1))
|
|
|
|
srio1_used = 1;
|
2010-12-30 18:09:53 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SRIO2
|
2011-10-14 05:03:58 +00:00
|
|
|
if (is_serdes_configured(SRIO2))
|
|
|
|
srio2_used = 1;
|
2010-12-30 18:09:53 +00:00
|
|
|
#endif
|
2011-10-14 05:03:58 +00:00
|
|
|
|
|
|
|
/* mark port1 disabled */
|
|
|
|
if (!srio1_used)
|
|
|
|
ft_disable_srio_port(blob, srio_off, 1);
|
|
|
|
|
|
|
|
/* mark port2 disabled */
|
|
|
|
if (!srio2_used)
|
|
|
|
ft_disable_srio_port(blob, srio_off, 2);
|
|
|
|
|
|
|
|
/* if both ports not used, disable controller, rmu and rman */
|
|
|
|
if (!srio1_used && !srio2_used) {
|
|
|
|
fdt_setprop_string(blob, srio_off, "status", "disabled");
|
|
|
|
|
|
|
|
ft_disable_rman(blob);
|
|
|
|
ft_disable_rmu(blob);
|
|
|
|
}
|
2010-12-30 18:09:53 +00:00
|
|
|
}
|
|
|
|
#endif
|