// SPDX-License-Identifier: GPL-2.0-only /* * OF helpers for network devices. * * Initially copied out of arch/powerpc/kernel/prom_parse.c */ #include #include #include #include #include #include #include #include /** * of_get_phy_mode - Get phy mode for given device_node * @np: Pointer to the given device_node * @interface: Pointer to the result * * The function gets phy interface string from property 'phy-mode' or * 'phy-connection-type'. The index in phy_modes table is set in * interface and 0 returned. In case of error interface is set to * PHY_INTERFACE_MODE_NA and an errno is returned, e.g. -ENODEV. */ int of_get_phy_mode(struct device_node *np, phy_interface_t *interface) { const char *pm; int err, i; *interface = PHY_INTERFACE_MODE_NA; err = of_property_read_string(np, "phy-mode", &pm); if (err < 0) err = of_property_read_string(np, "phy-connection-type", &pm); if (err < 0) return err; for (i = 0; i < PHY_INTERFACE_MODE_MAX; i++) if (!strcasecmp(pm, phy_modes(i))) { *interface = i; return 0; } return -ENODEV; } EXPORT_SYMBOL_GPL(of_get_phy_mode); static int of_get_mac_addr(struct device_node *np, const char *name, u8 *addr) { struct property *pp = of_find_property(np, name, NULL); if (pp && pp->length == ETH_ALEN && is_valid_ether_addr(pp->value)) { memcpy(addr, pp->value, ETH_ALEN); return 0; } return -ENODEV; } static int of_get_mac_addr_nvmem(struct device_node *np, u8 *addr) { struct platform_device *pdev = of_find_device_by_node(np); struct nvmem_cell *cell; const void *mac; size_t len; int ret; /* Try lookup by device first, there might be a nvmem_cell_lookup * associated with a given device. */ if (pdev) { ret = nvmem_get_mac_address(&pdev->dev, addr); put_device(&pdev->dev); return ret; } cell = of_nvmem_cell_get(np, "mac-address"); if (IS_ERR(cell)) return PTR_ERR(cell); mac = nvmem_cell_read(cell, &len); nvmem_cell_put(cell); if (IS_ERR(mac)) return PTR_ERR(mac); if (len != ETH_ALEN || !is_valid_ether_addr(mac)) { kfree(mac); return -EINVAL; } memcpy(addr, mac, ETH_ALEN); kfree(mac); return 0; } static int of_add_mac_address(struct device_node *np, u8* addr) { struct property *prop; prop = kzalloc(sizeof(*prop), GFP_KERNEL); if (!prop) return -ENOMEM; prop->name = "mac-address"; prop->length = ETH_ALEN; prop->value = kmemdup(addr, ETH_ALEN, GFP_KERNEL); if (!prop->value || of_update_property(np, prop)) goto free; return 0; free: kfree(prop->value); kfree(prop); return -ENOMEM; } /** * Search the device tree for the best MAC address to use. 'mac-address' is * checked first, because that is supposed to contain to "most recent" MAC * address. If that isn't set, then 'local-mac-address' is checked next, * because that is the default address. If that isn't set, then the obsolete * 'address' is checked, just in case we're using an old device tree. If any * of the above isn't set, then try to get MAC address from nvmem cell named * 'mac-address'. * * Note that the 'address' property is supposed to contain a virtual address of * the register set, but some DTS files have redefined that property to be the * MAC address. * * All-zero MAC addresses are rejected, because those could be properties that * exist in the device tree, but were not set by U-Boot. For example, the * DTS could define 'mac-address' and 'local-mac-address', with zero MAC * addresses. Some older U-Boots only initialized 'local-mac-address'. In * this case, the real MAC is in 'local-mac-address', and 'mac-address' exists * but is all zeros. * * DT can tell the system to increment the mac-address after is extracted by * using: * - mac-address-increment-byte to decide what byte to increase * (if not defined is increased the last byte) * - mac-address-increment to decide how much to increase. The value WILL * overflow to other bytes if the increment is over 255 or the total * increment will exceed 255 of the current byte. * (example 00:01:02:03:04:ff + 1 == 00:01:02:03:05:00) * (example 00:01:02:03:04:fe + 5 == 00:01:02:03:05:03) * * Return: 0 on success and errno in case of error. */ int of_get_mac_address(struct device_node *np, u8 *addr) { u32 inc_idx, mac_inc, mac_val; int ret; /* Check first if the increment byte is present and valid. * If not set assume to increment the last byte if found. */ if (of_property_read_u32(np, "mac-address-increment-byte", &inc_idx)) inc_idx = 5; if (inc_idx < 3 || inc_idx > 5) return -EINVAL; if (!np) return -ENODEV; ret = of_get_mac_addr(np, "mac-address", addr); if (!ret) goto found; ret = of_get_mac_addr(np, "local-mac-address", addr); if (!ret) goto found; ret = of_get_mac_addr(np, "address", addr); if (!ret) goto found; ret = of_get_mac_addr_nvmem(np, addr); if (ret) return ret; found: if (!of_property_read_u32(np, "mac-address-increment", &mac_inc)) { /* Convert to a contiguous value */ mac_val = (addr[3] << 16) + (addr[4] << 8) + addr[5]; mac_val += mac_inc << 8 * (5-inc_idx); /* Apply the incremented value handling overflow case */ addr[3] = (mac_val >> 16) & 0xff; addr[4] = (mac_val >> 8) & 0xff; addr[5] = (mac_val >> 0) & 0xff; } of_add_mac_address(np, addr); return ret; } EXPORT_SYMBOL(of_get_mac_address);