Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 2 | /* |
Shaohui Xie | e829734 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 3 | * Copyright 2011-2015 Freescale Semiconductor, Inc. |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 7 | #include <linux/libfdt.h> |
| 8 | #include <linux/libfdt_env.h> |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 9 | #include <fdt_support.h> |
| 10 | |
Timur Tabi | 45b092d | 2012-08-14 06:47:23 +0000 | [diff] [blame] | 11 | #include <fm_eth.h> |
Shaohui Xie | e829734 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 12 | #ifdef CONFIG_FSL_LAYERSCAPE |
| 13 | #include <asm/arch/fsl_serdes.h> |
| 14 | #else |
Timur Tabi | 45b092d | 2012-08-14 06:47:23 +0000 | [diff] [blame] | 15 | #include <asm/fsl_serdes.h> |
Shaohui Xie | e829734 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 16 | #endif |
Timur Tabi | 45b092d | 2012-08-14 06:47:23 +0000 | [diff] [blame] | 17 | |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 18 | /* |
| 19 | * Given the following ... |
| 20 | * |
| 21 | * 1) A pointer to an Fman Ethernet node (as identified by the 'compat' |
| 22 | * compatible string and 'addr' physical address) |
| 23 | * |
| 24 | * 2) The name of an alias that points to the ethernet-phy node (usually inside |
| 25 | * a virtual MDIO node) |
| 26 | * |
| 27 | * ... update that Ethernet node's phy-handle property to point to the |
| 28 | * ethernet-phy node. This is how we link an Ethernet node to its PHY, so each |
| 29 | * PHY in a virtual MDIO node must have an alias. |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 30 | * |
| 31 | * Returns 0 on success, or a negative FDT error code on error. |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 32 | */ |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 33 | int fdt_set_phy_handle(void *fdt, char *compat, phys_addr_t addr, |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 34 | const char *alias) |
| 35 | { |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 36 | int offset; |
| 37 | unsigned int ph; |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 38 | const char *path; |
| 39 | |
| 40 | /* Get a path to the node that 'alias' points to */ |
| 41 | path = fdt_get_alias(fdt, alias); |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 42 | if (!path) |
| 43 | return -FDT_ERR_BADPATH; |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 44 | |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 45 | /* Get the offset of that node */ |
| 46 | offset = fdt_path_offset(fdt, path); |
| 47 | if (offset < 0) |
| 48 | return offset; |
| 49 | |
| 50 | ph = fdt_create_phandle(fdt, offset); |
| 51 | if (!ph) |
| 52 | return -FDT_ERR_BADPHANDLE; |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 53 | |
Shaohui Xie | 1aaf3f9 | 2015-11-10 19:20:16 +0800 | [diff] [blame] | 54 | ph = cpu_to_fdt32(ph); |
| 55 | |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 56 | offset = fdt_node_offset_by_compat_reg(fdt, compat, addr); |
Timur Tabi | 1fc0d59 | 2012-05-04 12:21:28 +0000 | [diff] [blame] | 57 | if (offset < 0) |
| 58 | return offset; |
| 59 | |
| 60 | return fdt_setprop(fdt, offset, "phy-handle", &ph, sizeof(ph)); |
Andy Fleming | 2915609 | 2010-10-20 15:35:16 -0500 | [diff] [blame] | 61 | } |
Timur Tabi | 45b092d | 2012-08-14 06:47:23 +0000 | [diff] [blame] | 62 | |
| 63 | /* |
| 64 | * Return the SerDes device enum for a given Fman port |
| 65 | * |
| 66 | * This function just maps the fm_port namespace to the srds_prtcl namespace. |
| 67 | */ |
| 68 | enum srds_prtcl serdes_device_from_fm_port(enum fm_port port) |
| 69 | { |
| 70 | static const enum srds_prtcl srds_table[] = { |
| 71 | [FM1_DTSEC1] = SGMII_FM1_DTSEC1, |
| 72 | [FM1_DTSEC2] = SGMII_FM1_DTSEC2, |
| 73 | [FM1_DTSEC3] = SGMII_FM1_DTSEC3, |
| 74 | [FM1_DTSEC4] = SGMII_FM1_DTSEC4, |
| 75 | [FM1_DTSEC5] = SGMII_FM1_DTSEC5, |
| 76 | [FM1_10GEC1] = XAUI_FM1, |
| 77 | [FM2_DTSEC1] = SGMII_FM2_DTSEC1, |
| 78 | [FM2_DTSEC2] = SGMII_FM2_DTSEC2, |
| 79 | [FM2_DTSEC3] = SGMII_FM2_DTSEC3, |
| 80 | [FM2_DTSEC4] = SGMII_FM2_DTSEC4, |
| 81 | [FM2_DTSEC5] = SGMII_FM2_DTSEC5, |
| 82 | [FM2_10GEC1] = XAUI_FM2, |
| 83 | }; |
| 84 | |
| 85 | if ((port < FM1_DTSEC1) || (port > FM2_10GEC1)) |
| 86 | return NONE; |
| 87 | else |
| 88 | return srds_table[port]; |
| 89 | } |