From: Andy Green <hidden> Date: 2012-07-02 06:40:41
The following series adds some code to generate legal, locally administered
MAC addresses from OMAP4 CPU Die ID fuse data, and then adds a helper at
net/ethernet taking care of accepting device path / MAC mapping registrations
and running a notifier to enforce the requested MAC when the matching network
device turns up.
On PandaBoard / ES, two devices have no board-level MAC either assigned by
the manufacturer or stored on the board, the last patch in the series adds
these device paths and gets them set when the network device is registered.
Lastly for convenient testing, there's a little patch on omap2plus_defconfig
that will get Ethernet and WLAN up on Pandaboard.
The patches are against today's linux-omap.
Thanks to Tony Lindgren and Arnd Bergmann for comments leading to the
helper in net/ethernet.
---
Andy Green (4):
OMAP2+: add cpu id register to MAC address helper
net ethernet introduce mac_la_ap helper
OMAP4 PANDA register ethernet and wlan for automatic mac allocation
config test config extending omap2plus with wl12xx etc
arch/arm/configs/omap2plus_defconfig | 35 +++----
arch/arm/mach-omap2/Kconfig | 1
arch/arm/mach-omap2/board-omap4panda.c | 30 ++++++
arch/arm/mach-omap2/id.c | 39 ++++++++
arch/arm/mach-omap2/include/mach/id.h | 1
include/net/mac-la-ap.h | 28 +++++
net/Kconfig | 14 +++
net/ethernet/Makefile | 2
net/ethernet/mac-la-ap.c | 165 ++++++++++++++++++++++++++++++++
9 files changed, 294 insertions(+), 21 deletions(-)
create mode 100644 include/net/mac-la-ap.h
create mode 100644 net/ethernet/mac-la-ap.c
From: Andy Green <hidden> Date: 2012-07-02 06:40:49
From: Andy Green <redacted>
Introduce a generic helper function that can generate a valid MAC
address using data from the OMAP unique CPU ID register.
For comparison purposes this produces a MAC address of
2e:20:3c:ea:46:01
for the ethernet device on my PandaBoard ES.
The MAC address space has space set aside for these kind of "locally
administered" MAC addresses, analogous to IPv4 10.x.x.x range, and this
patch marks the generated MAC addresses as such.
The patch leaves two bits allowing elaborating 4 different MACs from the
generated data.
Signed-off-by: Andy Green <redacted>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Nicolas Pitre <redacted>
Tested-by: Steven Rostedt <rostedt@goodmis.org>
---
arch/arm/mach-omap2/id.c | 39 +++++++++++++++++++++++++++++++++
arch/arm/mach-omap2/include/mach/id.h | 1 +
2 files changed, 40 insertions(+)
@@ -530,3 +530,42 @@ void __init omap2_set_globals_tap(struct omap_globals *omap2_globals)elsetap_prod_id=0x0208;}++/*+*thisusestheuniqueper-cpuinfofromthecpufusessetatfactoryto+*generatea6-byteMACaddress.Twobitsinthegeneratedcodeareused+*toelaboratethegeneratedaddressintofour,soitcanbeusedonmultiple+*networkinterfaces.+*/++voidomap2_die_id_to_ethernet_mac(u8*mac,intsubtype)+{+structomap_die_idodi;+u32tap=read_tap_reg(OMAP_TAP_IDCODE);++omap_get_die_id(&odi);++mac[0]=odi.id_2;+mac[1]=odi.id_2>>8;+mac[2]=odi.id_1;+mac[3]=odi.id_1>>8;+mac[4]=odi.id_1>>16;+mac[5]=odi.id_1>>24;++/* XOR other chip-specific data with ID */++tap^=odi.id_3;++mac[0]^=tap;+mac[1]^=tap>>8;+mac[2]^=tap>>16;+mac[3]^=tap>>24;++/* allow four MACs from this same basic data */++mac[1]=(mac[1]&~0xc0)|((subtype&3)<<6);++/* mark it as not multicast, and outside official 80211 MAC namespace */++mac[0]=(mac[0]&~1)|2;+}
From: Andy Green <hidden> Date: 2012-07-02 06:40:56
From: Andy Green <redacted>
This introduces a small helper in net/ethernet, which registers a
network notifier on init, and accepts registrations of expected asynchronously-
probed network device paths (like, "usb1/1-1/1-1.1/1-1.1:1.0") and the MAC
that is needed to be assigned to the device when it appears.
This allows platform code to enforce valid, consistent MAC addresses on to
devices that have not been probed at boot-time, but due to being wired on the
board are always present at the same interface. It has been tested with USB
and SDIO probed devices.
To make use of this safely you also need to make sure that any drivers that
may compete for the bus ordinal you are using (eg, mUSB and ehci in Panda
case) are loaded in a deterministic order.
At registration it makes a copy of the incoming data, so the data may be
__initdata or otherwise transitory. Registration can be called multiple times
so registrations from Device Tree and platform may be mixed.
Since it needs to be called quite early in boot and there is no lifecycle for
what it does, it could not be modular and is not a driver.
Via suggestions from Arnd Bergmann and Tony Lindgren.
Signed-off-by: Andy Green <redacted>
---
include/net/mac-la-ap.h | 28 ++++++++
net/Kconfig | 14 ++++
net/ethernet/Makefile | 2 +
net/ethernet/mac-la-ap.c | 165 ++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 209 insertions(+)
create mode 100644 include/net/mac-la-ap.h
create mode 100644 net/ethernet/mac-la-ap.c
@@ -0,0 +1,28 @@+/*+*mac-la-ap.h:LocallyAdministeredMACaddressforAsyncprobeddevices+*/++/**+*structmac_la_ap-associatesasynchronouslyprobeddevicepathwith+*MACaddresstobeassignedtothedevicewhenit+*iscreated+*+*@device_path:devicepathnameofnetworkdevice+*@mac:MACaddresstoassigntonetworkdevicematchingdevicepath+*@list:canbeleftuninitializedwhenpassingfromplatform+*/++structmac_la_ap{+char*device_path;+u8mac[6];+structlist_headlist;/* unused in platform data usage */+};++/**+*mac_la_ap_register_device_macs-addanarrayofdevicepathtomonitor+*andMACtoapplywhenthenetworkdevice+*atthedevicepathappears+*@macs:arrayofstructmac_la_apterminatedbyentrywithNULLdevice_path+*/+intmac_la_ap_register_device_macs(conststructmac_la_ap*macs);+
@@ -335,6 +335,20 @@ source "net/caif/Kconfig"source"net/ceph/Kconfig"source"net/nfc/Kconfig"+configMAC_LA_AP+bool"Locally Administered MAC for Aysnchronously Probed devices"+---help---+Thishelperallowsplatformstomandatealocally-administered+sythesizedMACaddressfornetworkdevicesthatareonasynchronously-+probedbuseslikeUSBorSDIO.Thisisnecessarywhentheboardhas+thesenetworkassetsbutnoarrangementsforstoringorsettingthe+MACaddressofthenetworkasset(noranyofficialMACaddress+reservedforthedevice).Inthatcase,seeninPandaandother+boards,theplatformcansynthesizeaconstantlocally-administered+MACaddressfromSoCUIDbitsthathasagoodprobabilityofdiffering+betweenboardsbutwillbeconstantonanygiveboard.Thishelper+willtakecareofwatchingforthenetworkdevicestoappearand+forcetheMACtothesynthesizedonewhentheydo.endif# if NET
From: Andy Green <hidden> Date: 2012-07-02 06:41:04
From: Andy Green <redacted>
This provides the board-specific device paths needed to get
the panda boardfile working with the mac-la-ap api.
On Pandaboard / ES, neither the onboard Ethernet or onboard WLAN
module have onboard arrangements for MAC storage, without this
series yielding randomized MAC per-boot and consequent DHCP problems,
or in the case of wlan0 a MAC set by a firmware file in the rootfs
which unless customized yields a MAC of 00:00:00:00:00:00. No
official MAC is reserved for either network device even if you do
take the approach to customize the firmware file.
This gets sane, consistent MAC addresses on both devices which
should stand a good probability of differing between PandaBoards.
Signed-off-by: Andy Green <redacted>
---
arch/arm/mach-omap2/Kconfig | 1 +
arch/arm/mach-omap2/board-omap4panda.c | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+)
From: Andy Green <hidden> Date: 2012-07-02 06:41:11
From: Andy Green <redacted>
This is just provided for testing convenience, it has enough config
options to get Ethernet and WL12xx driver on PandaBoard / ES up
You should be able to reproduce something like this, with different
MAC addresses.
# ifconfig -a
eth0 Link encap:Ethernet HWaddr 2e:20:3c:ea:46:01
inet addr:10.42.0.98 Bcast:10.42.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:13 errors:0 dropped:0 overruns:0 frame:0
TX packets:31 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1647 (1.6 KB) TX bytes:5534 (5.5 KB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:100 (100.0 B) TX bytes:100 (100.0 B)
wlan0 Link encap:Ethernet HWaddr 2e:60:3c:ea:46:01
BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Signed-off-by: Andy Green <redacted>
---
arch/arm/configs/omap2plus_defconfig | 35 ++++++++++++++--------------------
1 file changed, 14 insertions(+), 21 deletions(-)
@@ -212,23 +208,20 @@ CONFIG_JFFS2_RUBIN=y CONFIG_UBIFS_FS=y CONFIG_CRAMFS=y CONFIG_NFS_FS=y-CONFIG_NFS_V3=y CONFIG_NFS_V3_ACL=y CONFIG_NFS_V4=y CONFIG_ROOT_NFS=y-CONFIG_PARTITION_ADVANCED=y CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_ISO8859_1=y CONFIG_PRINTK_TIME=y CONFIG_MAGIC_SYSRQ=y-CONFIG_DEBUG_KERNEL=y CONFIG_SCHEDSTATS=y CONFIG_TIMER_STATS=y CONFIG_PROVE_LOCKING=y-CONFIG_DEBUG_SPINLOCK_SLEEP=y # CONFIG_DEBUG_BUGVERBOSE is not set CONFIG_DEBUG_INFO=y-# CONFIG_RCU_CPU_STALL_DETECTOR is not set+CONFIG_DEBUG_LL=y+CONFIG_EARLY_PRINTK=y CONFIG_SECURITY=y CONFIG_CRYPTO_MICHAEL_MIC=y # CONFIG_CRYPTO_ANSI_CPRNG is not set
From: Andy Green <redacted>
This introduces a small helper in net/ethernet, which registers a
network notifier on init, and accepts registrations of expected asynchronously-
probed network device paths (like, "usb1/1-1/1-1.1/1-1.1:1.0") and the MAC
that is needed to be assigned to the device when it appears.
This allows platform code to enforce valid, consistent MAC addresses on to
devices that have not been probed at boot-time, but due to being wired on the
board are always present at the same interface. It has been tested with USB
and SDIO probed devices.
To make use of this safely you also need to make sure that any drivers that
may compete for the bus ordinal you are using (eg, mUSB and ehci in Panda
case) are loaded in a deterministic order.
At registration it makes a copy of the incoming data, so the data may be
__initdata or otherwise transitory. Registration can be called multiple times
so registrations from Device Tree and platform may be mixed.
Since it needs to be called quite early in boot and there is no lifecycle for
what it does, it could not be modular and is not a driver.
Via suggestions from Arnd Bergmann and Tony Lindgren.
Signed-off-by: Andy Green <redacted>
Yes, looks good to me in principle. It needs to get sent to the linux-kernel
and netdev mailing lists for review though. A few small comments.
I find the name a bit non-obvious, not sure if we can come up with the
perfect one.
How about mac-platform?
quoted hunk
+/**
+ * mac_la_ap_register_device_macs - add an array of device path to monitor
+ * and MAC to apply when the network device
+ * at the device path appears
+ * @macs: array of struct mac_la_ap terminated by entry with NULL device_path
+ */
+int mac_la_ap_register_device_macs(const struct mac_la_ap *macs);
+
@@ -335,6 +335,20 @@ source "net/caif/Kconfig"source"net/ceph/Kconfig"source"net/nfc/Kconfig"+configMAC_LA_AP+bool"Locally Administered MAC for Aysnchronously Probed devices"+---help---+Thishelperallowsplatformstomandatealocally-administered+sythesizedMACaddressfornetworkdevicesthatareonasynchronously-+probedbuseslikeUSBorSDIO.Thisisnecessarywhentheboardhas+thesenetworkassetsbutnoarrangementsforstoringorsettingthe+MACaddressofthenetworkasset(noranyofficialMACaddress+reservedforthedevice).Inthatcase,seeninPandaandother+boards,theplatformcansynthesizeaconstantlocally-administered+MACaddressfromSoCUIDbitsthathasagoodprobabilityofdiffering+betweenboardsbutwillbeconstantonanygiveboard.Thishelper+willtakecareofwatchingforthenetworkdevicestoappearand+forcetheMACtothesynthesizedonewhentheydo.endif# if NET
This one needs to be either a silent option (only selected by the
platforms that want it) or the header file has to provide a
static-inline fallback that does nothing, so we don't get
a build failure on platforms that need it if the option gets
disabled.
I'd prefer making it a silent option because then we don't bloat
the kernel if someone accidentally enables it on a platform that
does not use it.
+static struct mac_la_ap mac_la_ap_list;
The normal way to do this is to have just a list head that the
entries get added to:
static LIST_HEAD(mac_la_ap_list);
That also takes care of the initialization.
+static int mac_la_ap_init(void)
+{
+ int ret;
+
+ INIT_LIST_HEAD(&mac_la_ap_list.list);
+ mutex_init(&mac_la_ap_mutex);
+ ret = register_netdevice_notifier(&mac_la_ap_netdev_notifier);
+ if (!ret)
+ mac_la_ap_started = 1;
+ else
+ pr_err("mac_la_ap_init: Notifier registration failed\n");
+
+ return ret;
+}
The mutex is already initialized, and the list head too if you do the
change above.
I think it would be simpler to register the notifier from an
initcall and drop the mac_la_ap_started variable.
I'm not sure if there is any point in exporting this function, my feeling
is that it would only ever be called from built-in code. If we can call it
from a module, we should probably also allow this file to be a loadable
module as well.
Arnd
I find the name a bit non-obvious, not sure if we can come up with the
perfect one.
How about mac-platform?
I really find it unfortunate that 'mac' for ethernet has the same name
as the Apple box as well. 'mac' in other contexts can usually
differentiate these two, but saying 'mac-platform' just screams of
forbidden fruit.
mac-probe.h ?
-- Steve
From: Andy Green <hidden> Date: 2012-07-03 04:38:41
On 07/03/12 00:12, the mail apparently from Arnd Bergmann included:
On Monday 02 July 2012, Andy Green wrote:
quoted
From: Andy Green <redacted>
This introduces a small helper in net/ethernet, which registers a
network notifier on init, and accepts registrations of expected asynchronously-
Yes, looks good to me in principle. It needs to get sent to the linux-kernel
and netdev mailing lists for review though. A few small comments.
I wanted to hear that it had actually converged with what was being
talked about first. I just sent out a v3 with the relevant patch also
cc-d to those lists but stg mail didn't seem to send it to them. I'll
wait for any further comments here and resend the whole thing including
those lists.
I find the name a bit non-obvious, not sure if we can come up with the
perfect one.
How about mac-platform?
Done.
quoted
endif # if NET
This one needs to be either a silent option (only selected by the
platforms that want it) or the header file has to provide a
static-inline fallback that does nothing, so we don't get
a build failure on platforms that need it if the option gets
disabled.
I'd prefer making it a silent option because then we don't bloat
the kernel if someone accidentally enables it on a platform that
does not use it.
Done. It's already added as a select on the Panda board config.
I also moved it out of the "if NET" clause and took care about the case
that CONFIG_NET is off but we still have mac-platform references.
quoted
+static struct mac_la_ap mac_la_ap_list;
The normal way to do this is to have just a list head that the
entries get added to:
static LIST_HEAD(mac_la_ap_list);
That also takes care of the initialization.
I think it would be simpler to register the notifier from an
initcall and drop the mac_la_ap_started variable.
That was my first approach, to structure it as a real driver. I had
tried a few likely-looking initcall levels but the init of the helper
was coming after the init of the network code.
I found this time that core_initcall works, so I used that, dropped the
flag. But isn't it a bit tricky with these to know if the prerequisite
you're trying to ensure is already initialized might not actually be at
the same initcall level and you're working by accident?
I'm not sure if there is any point in exporting this function, my feeling
is that it would only ever be called from built-in code. If we can call it
from a module, we should probably also allow this file to be a loadable
module as well.
I think it would be simpler to register the notifier from an
initcall and drop the mac_la_ap_started variable.
That was my first approach, to structure it as a real driver. I had
tried a few likely-looking initcall levels but the init of the helper
was coming after the init of the network code.
I found this time that core_initcall works, so I used that, dropped the
flag. But isn't it a bit tricky with these to know if the prerequisite
you're trying to ensure is already initialized might not actually be at
the same initcall level and you're working by accident?
Well, you would only need to ensure that it's called before any of the
network devices are added, which should all happen very late in the
boot cycle compared to the platform init code.
I think core_initcall is fine here.
Arnd
I find the name a bit non-obvious, not sure if we can come up with the
perfect one.
How about mac-platform?
I really find it unfortunate that 'mac' for ethernet has the same name
as the Apple box as well. 'mac' in other contexts can usually
differentiate these two, but saying 'mac-platform' just screams of
forbidden fruit.
mac-probe.h ?