Lines Matching +full:local +full:- +full:mac +full:- +full:address

1 // SPDX-License-Identifier: GPL-2.0-only
16 * of_get_phy_mode - Get phy mode for given device_node
19 * The function gets phy interface string from property 'phy-mode' or
20 * 'phy-connection-type', and return its index in phy_modes table, or errno in
28 err = of_property_read_string(np, "phy-mode", &pm); in of_get_phy_mode()
30 err = of_property_read_string(np, "phy-connection-type", &pm); in of_get_phy_mode()
38 return -ENODEV; in of_get_phy_mode()
46 if (pp && pp->length == ETH_ALEN && is_valid_ether_addr(pp->value)) in of_get_mac_addr()
47 return pp->value; in of_get_mac_addr()
54 const void *mac; in of_get_mac_addr_nvmem() local
59 return ERR_PTR(-ENODEV); in of_get_mac_addr_nvmem()
61 ret = nvmem_get_mac_address(&pdev->dev, &nvmem_mac); in of_get_mac_addr_nvmem()
63 put_device(&pdev->dev); in of_get_mac_addr_nvmem()
67 mac = devm_kmemdup(&pdev->dev, nvmem_mac, ETH_ALEN, GFP_KERNEL); in of_get_mac_addr_nvmem()
68 put_device(&pdev->dev); in of_get_mac_addr_nvmem()
69 if (!mac) in of_get_mac_addr_nvmem()
70 return ERR_PTR(-ENOMEM); in of_get_mac_addr_nvmem()
72 return mac; in of_get_mac_addr_nvmem()
76 * Search the device tree for the best MAC address to use. 'mac-address' is
77 * checked first, because that is supposed to contain to "most recent" MAC
78 * address. If that isn't set, then 'local-mac-address' is checked next,
79 * because that is the default address. If that isn't set, then the obsolete
80 * 'address' is checked, just in case we're using an old device tree. If any
81 * of the above isn't set, then try to get MAC address from nvmem cell named
82 * 'mac-address'.
84 * Note that the 'address' property is supposed to contain a virtual address of
86 * MAC address.
88 * All-zero MAC addresses are rejected, because those could be properties that
89 * exist in the device tree, but were not set by U-Boot. For example, the
90 * DTS could define 'mac-address' and 'local-mac-address', with zero MAC
91 * addresses. Some older U-Boots only initialized 'local-mac-address'. In
92 * this case, the real MAC is in 'local-mac-address', and 'mac-address' exists
101 addr = of_get_mac_addr(np, "mac-address"); in of_get_mac_address()
105 addr = of_get_mac_addr(np, "local-mac-address"); in of_get_mac_address()
109 addr = of_get_mac_addr(np, "address"); in of_get_mac_address()