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