of/net: Move of_get_mac_address() to a common source file.
There are two identical implementations of of_get_mac_address(), one each in arch/powerpc/kernel/prom_parse.c and arch/microblaze/kernel/prom_parse.c. Move this function to a new common file of_net.{c,h} and adjust all the callers to include the new header. Signed-off-by: David Daney <ddaney@caviumnetworks.com> [grant.likely@secretlab.ca: protect header with #ifdef] Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
3985c7ce85
commit
4b6ba8aacb
14 changed files with 74 additions and 82 deletions
|
@ -64,9 +64,6 @@ extern void kdump_move_device_tree(void);
|
||||||
/* CPU OF node matching */
|
/* CPU OF node matching */
|
||||||
struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
|
struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
|
||||||
|
|
||||||
/* Get the MAC address */
|
|
||||||
extern const void *of_get_mac_address(struct device_node *np);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* of_irq_map_pci - Resolve the interrupt for a PCI device
|
* of_irq_map_pci - Resolve the interrupt for a PCI device
|
||||||
* @pdev: the device whose interrupt is to be resolved
|
* @pdev: the device whose interrupt is to be resolved
|
||||||
|
|
|
@ -110,41 +110,3 @@ void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
|
||||||
cells = prop ? *(u32 *)prop : of_n_size_cells(dn);
|
cells = prop ? *(u32 *)prop : of_n_size_cells(dn);
|
||||||
*size = of_read_number(dma_window, cells);
|
*size = of_read_number(dma_window, cells);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
const void *of_get_mac_address(struct device_node *np)
|
|
||||||
{
|
|
||||||
struct property *pp;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "mac-address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "local-mac-address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(of_get_mac_address);
|
|
||||||
|
|
|
@ -63,9 +63,6 @@ struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
|
||||||
/* cache lookup */
|
/* cache lookup */
|
||||||
struct device_node *of_find_next_cache_node(struct device_node *np);
|
struct device_node *of_find_next_cache_node(struct device_node *np);
|
||||||
|
|
||||||
/* Get the MAC address */
|
|
||||||
extern const void *of_get_mac_address(struct device_node *np);
|
|
||||||
|
|
||||||
#ifdef CONFIG_NUMA
|
#ifdef CONFIG_NUMA
|
||||||
extern int of_node_to_nid(struct device_node *device);
|
extern int of_node_to_nid(struct device_node *device);
|
||||||
#else
|
#else
|
||||||
|
|
|
@ -117,41 +117,3 @@ void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
|
||||||
cells = prop ? *(u32 *)prop : of_n_size_cells(dn);
|
cells = prop ? *(u32 *)prop : of_n_size_cells(dn);
|
||||||
*size = of_read_number(dma_window, cells);
|
*size = of_read_number(dma_window, cells);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
const void *of_get_mac_address(struct device_node *np)
|
|
||||||
{
|
|
||||||
struct property *pp;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "mac-address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "local-mac-address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
pp = of_find_property(np, "address", NULL);
|
|
||||||
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
|
||||||
return pp->value;
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(of_get_mac_address);
|
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
#include <linux/mv643xx.h>
|
#include <linux/mv643xx.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
#include <linux/dma-mapping.h>
|
#include <linux/dma-mapping.h>
|
||||||
|
|
||||||
#include <asm/prom.h>
|
#include <asm/prom.h>
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
#include <asm/tsi108.h>
|
#include <asm/tsi108.h>
|
||||||
|
|
||||||
#include <asm/system.h>
|
#include <asm/system.h>
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
#include <linux/of_mdio.h>
|
#include <linux/of_mdio.h>
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
#include <linux/of_gpio.h>
|
#include <linux/of_gpio.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
|
|
||||||
#include <linux/vmalloc.h>
|
#include <linux/vmalloc.h>
|
||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
|
|
|
@ -95,6 +95,7 @@
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
#include <linux/phy_fixed.h>
|
#include <linux/phy_fixed.h>
|
||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
|
|
||||||
#include "gianfar.h"
|
#include "gianfar.h"
|
||||||
#include "fsl_pq_mdio.h"
|
#include "fsl_pq_mdio.h"
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
#include <linux/workqueue.h>
|
#include <linux/workqueue.h>
|
||||||
#include <linux/of_mdio.h>
|
#include <linux/of_mdio.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
|
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <linux/of_device.h>
|
#include <linux/of_device.h>
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
#include <linux/of_mdio.h>
|
#include <linux/of_mdio.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
#include <linux/phy.h>
|
#include <linux/phy.h>
|
||||||
|
|
||||||
#define DRIVER_NAME "xilinx_emaclite"
|
#define DRIVER_NAME "xilinx_emaclite"
|
||||||
|
|
|
@ -49,6 +49,10 @@ config OF_I2C
|
||||||
help
|
help
|
||||||
OpenFirmware I2C accessors
|
OpenFirmware I2C accessors
|
||||||
|
|
||||||
|
config OF_NET
|
||||||
|
depends on NETDEVICES
|
||||||
|
def_bool y
|
||||||
|
|
||||||
config OF_SPI
|
config OF_SPI
|
||||||
def_tristate SPI
|
def_tristate SPI
|
||||||
depends on SPI && !SPARC
|
depends on SPI && !SPARC
|
||||||
|
|
|
@ -6,5 +6,6 @@ obj-$(CONFIG_OF_IRQ) += irq.o
|
||||||
obj-$(CONFIG_OF_DEVICE) += device.o platform.o
|
obj-$(CONFIG_OF_DEVICE) += device.o platform.o
|
||||||
obj-$(CONFIG_OF_GPIO) += gpio.o
|
obj-$(CONFIG_OF_GPIO) += gpio.o
|
||||||
obj-$(CONFIG_OF_I2C) += of_i2c.o
|
obj-$(CONFIG_OF_I2C) += of_i2c.o
|
||||||
|
obj-$(CONFIG_OF_NET) += of_net.o
|
||||||
obj-$(CONFIG_OF_SPI) += of_spi.o
|
obj-$(CONFIG_OF_SPI) += of_spi.o
|
||||||
obj-$(CONFIG_OF_MDIO) += of_mdio.o
|
obj-$(CONFIG_OF_MDIO) += of_mdio.o
|
||||||
|
|
48
drivers/of/of_net.c
Normal file
48
drivers/of/of_net.c
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
* OF helpers for network devices.
|
||||||
|
*
|
||||||
|
* This file is released under the GPLv2
|
||||||
|
*
|
||||||
|
* Initially copied out of arch/powerpc/kernel/prom_parse.c
|
||||||
|
*/
|
||||||
|
#include <linux/etherdevice.h>
|
||||||
|
#include <linux/kernel.h>
|
||||||
|
#include <linux/of_net.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
const void *of_get_mac_address(struct device_node *np)
|
||||||
|
{
|
||||||
|
struct property *pp;
|
||||||
|
|
||||||
|
pp = of_find_property(np, "mac-address", NULL);
|
||||||
|
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
||||||
|
return pp->value;
|
||||||
|
|
||||||
|
pp = of_find_property(np, "local-mac-address", NULL);
|
||||||
|
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
||||||
|
return pp->value;
|
||||||
|
|
||||||
|
pp = of_find_property(np, "address", NULL);
|
||||||
|
if (pp && (pp->length == 6) && is_valid_ether_addr(pp->value))
|
||||||
|
return pp->value;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(of_get_mac_address);
|
15
include/linux/of_net.h
Normal file
15
include/linux/of_net.h
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
/*
|
||||||
|
* OF helpers for network devices.
|
||||||
|
*
|
||||||
|
* This file is released under the GPLv2
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __LINUX_OF_NET_H
|
||||||
|
#define __LINUX_OF_NET_H
|
||||||
|
|
||||||
|
#ifdef CONFIG_OF_NET
|
||||||
|
#include <linux/of.h>
|
||||||
|
extern const void *of_get_mac_address(struct device_node *np);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* __LINUX_OF_NET_H */
|
Loading…
Reference in a new issue