aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-17 02:20:52 -0500
committerMarcel Holtmann <marcel@holtmann.org>2014-11-17 03:49:16 -0500
commit0e57547eb7f0aa99aba32b50c49dbd722a80d6fb (patch)
treeca66721d651bfa5ca441546976a83dc2b88af86b /net/mac802154
parentf3ea5e44231a88eaea69a13410d1b80c19cfa1df (diff)
ieee802154: setting extended address while iface add
This patch adds support for setting an extended address while registration a new interface. If ieee802154_is_valid_extended_addr getting as parameter and invalid extended address then the perm address is fallback. This is useful to make some default handling while for example default registration of a wpan interface while phy registration. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/cfg.c7
-rw-r--r--net/mac802154/ieee802154_i.h2
-rw-r--r--net/mac802154/iface.c12
-rw-r--r--net/mac802154/main.c3
4 files changed, 15 insertions, 9 deletions
diff --git a/net/mac802154/cfg.c b/net/mac802154/cfg.c
index ae1a9ef2d42c..568d712bfc8c 100644
--- a/net/mac802154/cfg.c
+++ b/net/mac802154/cfg.c
@@ -28,7 +28,8 @@ ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy,
28 struct net_device *dev; 28 struct net_device *dev;
29 29
30 rtnl_lock(); 30 rtnl_lock();
31 dev = ieee802154_if_add(local, name, type); 31 dev = ieee802154_if_add(local, name, type,
32 cpu_to_le64(0x0000000000000000ULL));
32 rtnl_unlock(); 33 rtnl_unlock();
33 34
34 return dev; 35 return dev;
@@ -44,12 +45,12 @@ static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,
44 45
45static int 46static int
46ieee802154_add_iface(struct wpan_phy *phy, const char *name, 47ieee802154_add_iface(struct wpan_phy *phy, const char *name,
47 enum nl802154_iftype type) 48 enum nl802154_iftype type, __le64 extended_addr)
48{ 49{
49 struct ieee802154_local *local = wpan_phy_priv(phy); 50 struct ieee802154_local *local = wpan_phy_priv(phy);
50 struct net_device *err; 51 struct net_device *err;
51 52
52 err = ieee802154_if_add(local, name, type); 53 err = ieee802154_if_add(local, name, type, extended_addr);
53 if (IS_ERR(err)) 54 if (IS_ERR(err))
54 return PTR_ERR(err); 55 return PTR_ERR(err);
55 56
diff --git a/net/mac802154/ieee802154_i.h b/net/mac802154/ieee802154_i.h
index 46553830896d..cc691637d24b 100644
--- a/net/mac802154/ieee802154_i.h
+++ b/net/mac802154/ieee802154_i.h
@@ -176,7 +176,7 @@ void ieee802154_iface_exit(void);
176void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata); 176void ieee802154_if_remove(struct ieee802154_sub_if_data *sdata);
177struct net_device * 177struct net_device *
178ieee802154_if_add(struct ieee802154_local *local, const char *name, 178ieee802154_if_add(struct ieee802154_local *local, const char *name,
179 enum nl802154_iftype type); 179 enum nl802154_iftype type, __le64 extended_addr);
180void ieee802154_remove_interfaces(struct ieee802154_local *local); 180void ieee802154_remove_interfaces(struct ieee802154_local *local);
181 181
182#endif /* __IEEE802154_I_H */ 182#endif /* __IEEE802154_I_H */
diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
index ba63ac93ae90..38dfc72d24b6 100644
--- a/net/mac802154/iface.c
+++ b/net/mac802154/iface.c
@@ -458,7 +458,7 @@ ieee802154_setup_sdata(struct ieee802154_sub_if_data *sdata,
458 458
459struct net_device * 459struct net_device *
460ieee802154_if_add(struct ieee802154_local *local, const char *name, 460ieee802154_if_add(struct ieee802154_local *local, const char *name,
461 enum nl802154_iftype type) 461 enum nl802154_iftype type, __le64 extended_addr)
462{ 462{
463 struct net_device *ndev = NULL; 463 struct net_device *ndev = NULL;
464 struct ieee802154_sub_if_data *sdata = NULL; 464 struct ieee802154_sub_if_data *sdata = NULL;
@@ -477,9 +477,16 @@ ieee802154_if_add(struct ieee802154_local *local, const char *name,
477 if (ret < 0) 477 if (ret < 0)
478 goto err; 478 goto err;
479 479
480 ieee802154_le64_to_be64(ndev->perm_addr,
481 &local->hw.phy->perm_extended_addr);
480 switch (type) { 482 switch (type) {
481 case NL802154_IFTYPE_NODE: 483 case NL802154_IFTYPE_NODE:
482 ndev->type = ARPHRD_IEEE802154; 484 ndev->type = ARPHRD_IEEE802154;
485 if (ieee802154_is_valid_extended_addr(extended_addr))
486 ieee802154_le64_to_be64(ndev->dev_addr, &extended_addr);
487 else
488 memcpy(ndev->dev_addr, ndev->perm_addr,
489 IEEE802154_EXTENDED_ADDR_LEN);
483 break; 490 break;
484 case NL802154_IFTYPE_MONITOR: 491 case NL802154_IFTYPE_MONITOR:
485 ndev->type = ARPHRD_IEEE802154_MONITOR; 492 ndev->type = ARPHRD_IEEE802154_MONITOR;
@@ -489,9 +496,6 @@ ieee802154_if_add(struct ieee802154_local *local, const char *name,
489 goto err; 496 goto err;
490 } 497 }
491 498
492 ieee802154_le64_to_be64(ndev->perm_addr,
493 &local->hw.phy->perm_extended_addr);
494 memcpy(ndev->dev_addr, ndev->perm_addr, IEEE802154_EXTENDED_ADDR_LEN);
495 /* TODO check this */ 499 /* TODO check this */
496 SET_NETDEV_DEV(ndev, &local->phy->dev); 500 SET_NETDEV_DEV(ndev, &local->phy->dev);
497 sdata = netdev_priv(ndev); 501 sdata = netdev_priv(ndev);
diff --git a/net/mac802154/main.c b/net/mac802154/main.c
index bbb19dd585a0..8500378c8318 100644
--- a/net/mac802154/main.c
+++ b/net/mac802154/main.c
@@ -161,7 +161,8 @@ int ieee802154_register_hw(struct ieee802154_hw *hw)
161 161
162 rtnl_lock(); 162 rtnl_lock();
163 163
164 dev = ieee802154_if_add(local, "wpan%d", NL802154_IFTYPE_NODE); 164 dev = ieee802154_if_add(local, "wpan%d", NL802154_IFTYPE_NODE,
165 cpu_to_le64(0x0000000000000000ULL));
165 if (IS_ERR(dev)) { 166 if (IS_ERR(dev)) {
166 rtnl_unlock(); 167 rtnl_unlock();
167 rc = PTR_ERR(dev); 168 rc = PTR_ERR(dev);