mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
83216e3988
of_get_mac_address() returns a "const void*" pointer to a MAC address. Lately, support to fetch the MAC address by an NVMEM provider was added. But this will only work with platform devices. It will not work with PCI devices (e.g. of an integrated root complex) and esp. not with DSA ports. There is an of_* variant of the nvmem binding which works without devices. The returned data of a nvmem_cell_read() has to be freed after use. On the other hand the return of_get_mac_address() points to some static data without a lifetime. The trick for now, was to allocate a device resource managed buffer which is then returned. This will only work if we have an actual device. Change it, so that the caller of of_get_mac_address() has to supply a buffer where the MAC address is written to. Unfortunately, this will touch all drivers which use the of_get_mac_address(). Usually the code looks like: const char *addr; addr = of_get_mac_address(np); if (!IS_ERR(addr)) ether_addr_copy(ndev->dev_addr, addr); This can then be simply rewritten as: of_get_mac_address(np, ndev->dev_addr); Sometimes is_valid_ether_addr() is used to test the MAC address. of_get_mac_address() already makes sure, it just returns a valid MAC address. Thus we can just test its return code. But we have to be careful if there are still other sources for the MAC address before the of_get_mac_address(). In this case we have to keep the is_valid_ether_addr() call. The following coccinelle patch was used to convert common cases to the new style. Afterwards, I've manually gone over the drivers and fixed the return code variable: either used a new one or if one was already available use that. Mansour Moufid, thanks for that coccinelle patch! <spml> @a@ identifier x; expression y, z; @@ - x = of_get_mac_address(y); + x = of_get_mac_address(y, z); <... - ether_addr_copy(z, x); ...> @@ identifier a.x; @@ - if (<+... x ...+>) {} @@ identifier a.x; @@ if (<+... x ...+>) { ... } - else {} @@ identifier a.x; expression e; @@ - if (<+... x ...+>@e) - {} - else + if (!(e)) {...} @@ expression x, y, z; @@ - x = of_get_mac_address(y, z); + of_get_mac_address(y, z); ... when != x </spml> All drivers, except drivers/net/ethernet/aeroflex/greth.c, were compile-time tested. Suggested-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
195 lines
4.7 KiB
C
195 lines
4.7 KiB
C
/*
|
|
* Copyright 2012 (C), Jason Cooper <jason@lakedaemon.net>
|
|
*
|
|
* arch/arm/mach-mvebu/kirkwood.c
|
|
*
|
|
* Flattened Device Tree board initialization
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/mbus.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/of_net.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/slab.h>
|
|
#include <asm/hardware/cache-feroceon-l2.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach/map.h>
|
|
#include "kirkwood.h"
|
|
#include "kirkwood-pm.h"
|
|
#include "common.h"
|
|
|
|
static struct resource kirkwood_cpufreq_resources[] = {
|
|
[0] = {
|
|
.start = CPU_CONTROL_PHYS,
|
|
.end = CPU_CONTROL_PHYS + 3,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
};
|
|
|
|
static struct platform_device kirkwood_cpufreq_device = {
|
|
.name = "kirkwood-cpufreq",
|
|
.id = -1,
|
|
.num_resources = ARRAY_SIZE(kirkwood_cpufreq_resources),
|
|
.resource = kirkwood_cpufreq_resources,
|
|
};
|
|
|
|
static void __init kirkwood_cpufreq_init(void)
|
|
{
|
|
platform_device_register(&kirkwood_cpufreq_device);
|
|
}
|
|
|
|
static struct resource kirkwood_cpuidle_resource[] = {
|
|
{
|
|
.flags = IORESOURCE_MEM,
|
|
.start = DDR_OPERATION_BASE,
|
|
.end = DDR_OPERATION_BASE + 3,
|
|
},
|
|
};
|
|
|
|
static struct platform_device kirkwood_cpuidle = {
|
|
.name = "kirkwood_cpuidle",
|
|
.id = -1,
|
|
.resource = kirkwood_cpuidle_resource,
|
|
.num_resources = 1,
|
|
};
|
|
|
|
static void __init kirkwood_cpuidle_init(void)
|
|
{
|
|
platform_device_register(&kirkwood_cpuidle);
|
|
}
|
|
|
|
#define MV643XX_ETH_MAC_ADDR_LOW 0x0414
|
|
#define MV643XX_ETH_MAC_ADDR_HIGH 0x0418
|
|
|
|
static void __init kirkwood_dt_eth_fixup(void)
|
|
{
|
|
struct device_node *np;
|
|
|
|
/*
|
|
* The ethernet interfaces forget the MAC address assigned by u-boot
|
|
* if the clocks are turned off. Usually, u-boot on kirkwood boards
|
|
* has no DT support to properly set local-mac-address property.
|
|
* As a workaround, we get the MAC address from mv643xx_eth registers
|
|
* and update the port device node if no valid MAC address is set.
|
|
*/
|
|
for_each_compatible_node(np, NULL, "marvell,kirkwood-eth-port") {
|
|
struct device_node *pnp = of_get_parent(np);
|
|
struct clk *clk;
|
|
struct property *pmac;
|
|
u8 tmpmac[ETH_ALEN];
|
|
void __iomem *io;
|
|
u8 *macaddr;
|
|
u32 reg;
|
|
|
|
if (!pnp)
|
|
continue;
|
|
|
|
/* skip disabled nodes or nodes with valid MAC address*/
|
|
if (!of_device_is_available(pnp) ||
|
|
!of_get_mac_address(np, tmpmac))
|
|
goto eth_fixup_skip;
|
|
|
|
clk = of_clk_get(pnp, 0);
|
|
if (IS_ERR(clk))
|
|
goto eth_fixup_skip;
|
|
|
|
io = of_iomap(pnp, 0);
|
|
if (!io)
|
|
goto eth_fixup_no_map;
|
|
|
|
/* ensure port clock is not gated to not hang CPU */
|
|
clk_prepare_enable(clk);
|
|
|
|
/* store MAC address register contents in local-mac-address */
|
|
pmac = kzalloc(sizeof(*pmac) + 6, GFP_KERNEL);
|
|
if (!pmac)
|
|
goto eth_fixup_no_mem;
|
|
|
|
pmac->value = pmac + 1;
|
|
pmac->length = 6;
|
|
pmac->name = kstrdup("local-mac-address", GFP_KERNEL);
|
|
if (!pmac->name) {
|
|
kfree(pmac);
|
|
goto eth_fixup_no_mem;
|
|
}
|
|
|
|
macaddr = pmac->value;
|
|
reg = readl(io + MV643XX_ETH_MAC_ADDR_HIGH);
|
|
macaddr[0] = (reg >> 24) & 0xff;
|
|
macaddr[1] = (reg >> 16) & 0xff;
|
|
macaddr[2] = (reg >> 8) & 0xff;
|
|
macaddr[3] = reg & 0xff;
|
|
|
|
reg = readl(io + MV643XX_ETH_MAC_ADDR_LOW);
|
|
macaddr[4] = (reg >> 8) & 0xff;
|
|
macaddr[5] = reg & 0xff;
|
|
|
|
of_update_property(np, pmac);
|
|
|
|
eth_fixup_no_mem:
|
|
iounmap(io);
|
|
clk_disable_unprepare(clk);
|
|
eth_fixup_no_map:
|
|
clk_put(clk);
|
|
eth_fixup_skip:
|
|
of_node_put(pnp);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Disable propagation of mbus errors to the CPU local bus, as this
|
|
* causes mbus errors (which can occur for example for PCI aborts) to
|
|
* throw CPU aborts, which we're not set up to deal with.
|
|
*/
|
|
static void kirkwood_disable_mbus_error_propagation(void)
|
|
{
|
|
void __iomem *cpu_config;
|
|
|
|
cpu_config = ioremap(CPU_CONFIG_PHYS, 4);
|
|
writel(readl(cpu_config) & ~CPU_CONFIG_ERROR_PROP, cpu_config);
|
|
}
|
|
|
|
static struct of_dev_auxdata auxdata[] __initdata = {
|
|
OF_DEV_AUXDATA("marvell,kirkwood-audio", 0xf10a0000,
|
|
"mvebu-audio", NULL),
|
|
{ /* sentinel */ }
|
|
};
|
|
|
|
static void __init kirkwood_dt_init(void)
|
|
{
|
|
kirkwood_disable_mbus_error_propagation();
|
|
|
|
BUG_ON(mvebu_mbus_dt_init(false));
|
|
|
|
#ifdef CONFIG_CACHE_FEROCEON_L2
|
|
feroceon_of_init();
|
|
#endif
|
|
kirkwood_cpufreq_init();
|
|
kirkwood_cpuidle_init();
|
|
|
|
kirkwood_pm_init();
|
|
kirkwood_dt_eth_fixup();
|
|
|
|
of_platform_default_populate(NULL, auxdata, NULL);
|
|
}
|
|
|
|
static const char * const kirkwood_dt_board_compat[] __initconst = {
|
|
"marvell,kirkwood",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(KIRKWOOD_DT, "Marvell Kirkwood (Flattened Device Tree)")
|
|
/* Maintainer: Jason Cooper <jason@lakedaemon.net> */
|
|
.init_machine = kirkwood_dt_init,
|
|
.restart = mvebu_restart,
|
|
.dt_compat = kirkwood_dt_board_compat,
|
|
MACHINE_END
|