Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 2 | /* |
ramneek mehresh | 67b5c99 | 2014-08-22 10:56:05 +0530 | [diff] [blame] | 3 | * Copyright 2009-2014 Freescale Semiconductor, Inc. |
Florinel Iordache | a618a5a | 2020-03-16 15:35:59 +0200 | [diff] [blame] | 4 | * Copyright 2020 NXP |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 5 | * |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 6 | * This file is derived from arch/powerpc/cpu/mpc85xx/cpu.c and |
| 7 | * arch/powerpc/cpu/mpc86xx/cpu.c. Basically this file contains |
Peter Tyser | 29514c7 | 2010-04-12 22:28:09 -0500 | [diff] [blame] | 8 | * cpu specific common code for 85xx/86xx processors. |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 33d1e70 | 2019-11-14 12:57:32 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 13 | #include <linux/libfdt.h> |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 14 | #include <fdt_support.h> |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 15 | #include <asm/mp.h> |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 16 | #include <asm/fsl_serdes.h> |
Andy Fleming | 7832a46 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 17 | #include <phy.h> |
Ramneek Mehresh | 7f548e0 | 2011-06-08 17:14:20 +0530 | [diff] [blame] | 18 | #include <hwconfig.h> |
Kumar Gala | 3725f55 | 2011-07-29 08:51:26 -0500 | [diff] [blame] | 19 | |
ramneek mehresh | d04f8fe | 2013-10-18 17:40:17 +0530 | [diff] [blame] | 20 | #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT |
| 21 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 22 | #endif |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 23 | |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 24 | #if defined(CONFIG_MP) && (defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) |
Kumar Gala | a24926d | 2010-06-09 13:14:28 -0500 | [diff] [blame] | 25 | static int ft_del_cpuhandle(void *blob, int cpuhandle) |
| 26 | { |
| 27 | int off, ret = -FDT_ERR_NOTFOUND; |
| 28 | |
| 29 | /* if we find a match, we'll delete at it which point the offsets are |
| 30 | * invalid so we start over from the beginning |
| 31 | */ |
| 32 | off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle", |
| 33 | &cpuhandle, 4); |
| 34 | while (off != -FDT_ERR_NOTFOUND) { |
| 35 | fdt_delprop(blob, off, "cpu-handle"); |
| 36 | ret = 1; |
| 37 | off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle", |
| 38 | &cpuhandle, 4); |
| 39 | } |
| 40 | |
| 41 | return ret; |
| 42 | } |
| 43 | |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 44 | void ft_fixup_num_cores(void *blob) { |
| 45 | int off, num_cores, del_cores; |
| 46 | |
| 47 | del_cores = 0; |
| 48 | num_cores = cpu_numcores(); |
| 49 | |
| 50 | off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4); |
| 51 | while (off != -FDT_ERR_NOTFOUND) { |
| 52 | u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0); |
York Sun | 2adf2ce | 2012-08-17 08:20:26 +0000 | [diff] [blame] | 53 | u32 phys_cpu_id = thread_to_core(*reg); |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 54 | |
York Sun | 2adf2ce | 2012-08-17 08:20:26 +0000 | [diff] [blame] | 55 | if (!is_core_valid(phys_cpu_id) || is_core_disabled(phys_cpu_id)) { |
Kumar Gala | a24926d | 2010-06-09 13:14:28 -0500 | [diff] [blame] | 56 | int ph = fdt_get_phandle(blob, off); |
| 57 | |
| 58 | /* Delete the cpu node once there are no cpu handles */ |
| 59 | if (-FDT_ERR_NOTFOUND == ft_del_cpuhandle(blob, ph)) { |
| 60 | fdt_del_node(blob, off); |
| 61 | del_cores++; |
| 62 | } |
| 63 | /* either we deleted some cpu handles or the cpu node |
| 64 | * so we reset the offset back to the start since we |
| 65 | * can't trust the offsets anymore |
| 66 | */ |
Poonam Aggrwal | 4ca72ae | 2009-09-02 19:40:36 +0530 | [diff] [blame] | 67 | off = -1; |
| 68 | } |
| 69 | off = fdt_node_offset_by_prop_value(blob, off, |
| 70 | "device_type", "cpu", 4); |
| 71 | } |
| 72 | debug ("%x core system found\n", num_cores); |
| 73 | debug ("deleted %d extra core entry entries from device tree\n", |
| 74 | del_cores); |
| 75 | } |
Kim Phillips | 6578bae | 2010-05-28 08:00:14 +0000 | [diff] [blame] | 76 | #endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */ |
| 77 | |
Andy Fleming | 7832a46 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 78 | int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc) |
Kumar Gala | 6bc9fd5 | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 79 | { |
Florinel Iordache | a618a5a | 2020-03-16 15:35:59 +0200 | [diff] [blame] | 80 | const char *conn; |
| 81 | |
| 82 | /* Do NOT apply fixup for backplane modes specified in DT */ |
| 83 | if (phyc == PHY_INTERFACE_MODE_XGMII) { |
| 84 | conn = fdt_getprop(blob, offset, "phy-connection-type", NULL); |
| 85 | if (is_backplane_mode(conn)) |
| 86 | return 0; |
| 87 | } |
Kumar Gala | 6bc9fd5 | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 88 | return fdt_setprop_string(blob, offset, "phy-connection-type", |
Andy Fleming | 7832a46 | 2011-04-13 00:37:12 -0500 | [diff] [blame] | 89 | phy_string_for_interface(phyc)); |
Kumar Gala | 6bc9fd5 | 2010-09-30 09:15:03 -0500 | [diff] [blame] | 90 | } |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 91 | |
| 92 | #ifdef CONFIG_SYS_SRIO |
Kumar Gala | 0e7ccae | 2011-10-14 00:03:58 -0500 | [diff] [blame] | 93 | static inline void ft_disable_srio_port(void *blob, int srio_off, int port) |
| 94 | { |
| 95 | int off = fdt_node_offset_by_prop_value(blob, srio_off, |
| 96 | "cell-index", &port, 4); |
| 97 | if (off >= 0) { |
| 98 | off = fdt_setprop_string(blob, off, "status", "disabled"); |
| 99 | if (off > 0) |
| 100 | printf("WARNING unable to set status for fsl,srio " |
| 101 | "port %d: %s\n", port, fdt_strerror(off)); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | static inline void ft_disable_rman(void *blob) |
| 106 | { |
| 107 | int off = fdt_node_offset_by_compatible(blob, -1, "fsl,rman"); |
| 108 | if (off >= 0) { |
| 109 | off = fdt_setprop_string(blob, off, "status", "disabled"); |
| 110 | if (off > 0) |
| 111 | printf("WARNING unable to set status for fsl,rman %s\n", |
| 112 | fdt_strerror(off)); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | static inline void ft_disable_rmu(void *blob) |
| 117 | { |
| 118 | int off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio-rmu"); |
| 119 | if (off >= 0) { |
| 120 | off = fdt_setprop_string(blob, off, "status", "disabled"); |
| 121 | if (off > 0) |
| 122 | printf("WARNING unable to set status for " |
| 123 | "fsl,srio-rmu %s\n", fdt_strerror(off)); |
| 124 | } |
| 125 | } |
| 126 | |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 127 | void ft_srio_setup(void *blob) |
| 128 | { |
Kumar Gala | 0e7ccae | 2011-10-14 00:03:58 -0500 | [diff] [blame] | 129 | int srio1_used = 0, srio2_used = 0; |
| 130 | int srio_off; |
| 131 | |
| 132 | /* search for srio node, if doesn't exist just return - nothing todo */ |
| 133 | srio_off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio"); |
| 134 | if (srio_off < 0) |
| 135 | return ; |
| 136 | |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 137 | #ifdef CONFIG_SRIO1 |
Kumar Gala | 0e7ccae | 2011-10-14 00:03:58 -0500 | [diff] [blame] | 138 | if (is_serdes_configured(SRIO1)) |
| 139 | srio1_used = 1; |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 140 | #endif |
| 141 | #ifdef CONFIG_SRIO2 |
Kumar Gala | 0e7ccae | 2011-10-14 00:03:58 -0500 | [diff] [blame] | 142 | if (is_serdes_configured(SRIO2)) |
| 143 | srio2_used = 1; |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 144 | #endif |
Kumar Gala | 0e7ccae | 2011-10-14 00:03:58 -0500 | [diff] [blame] | 145 | |
| 146 | /* mark port1 disabled */ |
| 147 | if (!srio1_used) |
| 148 | ft_disable_srio_port(blob, srio_off, 1); |
| 149 | |
| 150 | /* mark port2 disabled */ |
| 151 | if (!srio2_used) |
| 152 | ft_disable_srio_port(blob, srio_off, 2); |
| 153 | |
| 154 | /* if both ports not used, disable controller, rmu and rman */ |
| 155 | if (!srio1_used && !srio2_used) { |
| 156 | fdt_setprop_string(blob, srio_off, "status", "disabled"); |
| 157 | |
| 158 | ft_disable_rman(blob); |
| 159 | ft_disable_rmu(blob); |
| 160 | } |
Kumar Gala | 8975d7a | 2010-12-30 12:09:53 -0600 | [diff] [blame] | 161 | } |
| 162 | #endif |