0004-net-smsc95xx-Allow-mac-address-to-be-set-as-a-parame.patch 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. From 824cc151d839ce92269200119f9148013755adb8 Mon Sep 17 00:00:00 2001
  2. From: popcornmix <popcornmix@gmail.com>
  3. Date: Tue, 18 Feb 2014 01:43:50 -0300
  4. Subject: [PATCH 4/7] net/smsc95xx: Allow mac address to be set as a parameter
  5. ---
  6. drivers/net/usb/smsc95xx.c | 56 ++++++++++++++++++++++++++++++++++++++
  7. 1 file changed, 56 insertions(+)
  8. diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
  9. index bfb58c91db04..29b7c4cb90f1 100644
  10. --- a/drivers/net/usb/smsc95xx.c
  11. +++ b/drivers/net/usb/smsc95xx.c
  12. @@ -54,6 +54,7 @@
  13. #define SUSPEND_SUSPEND3 (0x08)
  14. #define SUSPEND_ALLMODES (SUSPEND_SUSPEND0 | SUSPEND_SUSPEND1 | \
  15. SUSPEND_SUSPEND2 | SUSPEND_SUSPEND3)
  16. +#define MAC_ADDR_LEN (6)
  17. #define SMSC95XX_NR_IRQS (1) /* raise to 12 for GPIOs */
  18. #define PHY_HWIRQ (SMSC95XX_NR_IRQS - 1)
  19. @@ -78,6 +79,10 @@ static bool turbo_mode = true;
  20. module_param(turbo_mode, bool, 0644);
  21. MODULE_PARM_DESC(turbo_mode, "Enable multiple frames per Rx transaction");
  22. +static char *macaddr = ":";
  23. +module_param(macaddr, charp, 0);
  24. +MODULE_PARM_DESC(macaddr, "MAC address");
  25. +
  26. static int __must_check smsc95xx_read_reg(struct usbnet *dev, u32 index,
  27. u32 *data)
  28. {
  29. @@ -761,8 +766,59 @@ static int smsc95xx_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
  30. return phy_mii_ioctl(netdev->phydev, rq, cmd);
  31. }
  32. +/* Check the macaddr module parameter for a MAC address */
  33. +static int smsc95xx_is_macaddr_param(struct usbnet *dev, u8 *dev_mac)
  34. +{
  35. + int i, j, got_num, num;
  36. + u8 mtbl[MAC_ADDR_LEN];
  37. +
  38. + if (macaddr[0] == ':')
  39. + return 0;
  40. +
  41. + i = 0;
  42. + j = 0;
  43. + num = 0;
  44. + got_num = 0;
  45. + while (j < MAC_ADDR_LEN) {
  46. + if (macaddr[i] && macaddr[i] != ':') {
  47. + got_num++;
  48. + if ('0' <= macaddr[i] && macaddr[i] <= '9')
  49. + num = num * 16 + macaddr[i] - '0';
  50. + else if ('A' <= macaddr[i] && macaddr[i] <= 'F')
  51. + num = num * 16 + 10 + macaddr[i] - 'A';
  52. + else if ('a' <= macaddr[i] && macaddr[i] <= 'f')
  53. + num = num * 16 + 10 + macaddr[i] - 'a';
  54. + else
  55. + break;
  56. + i++;
  57. + } else if (got_num == 2) {
  58. + mtbl[j++] = (u8) num;
  59. + num = 0;
  60. + got_num = 0;
  61. + i++;
  62. + } else {
  63. + break;
  64. + }
  65. + }
  66. +
  67. + if (j == MAC_ADDR_LEN) {
  68. + netif_dbg(dev, ifup, dev->net, "Overriding MAC address with: "
  69. + "%02x:%02x:%02x:%02x:%02x:%02x\n", mtbl[0], mtbl[1], mtbl[2],
  70. + mtbl[3], mtbl[4], mtbl[5]);
  71. + for (i = 0; i < MAC_ADDR_LEN; i++)
  72. + dev_mac[i] = mtbl[i];
  73. + return 1;
  74. + } else {
  75. + return 0;
  76. + }
  77. +}
  78. +
  79. static void smsc95xx_init_mac_address(struct usbnet *dev)
  80. {
  81. + /* Check module parameters */
  82. + if (smsc95xx_is_macaddr_param(dev, dev->net->dev_addr))
  83. + return;
  84. +
  85. u8 addr[ETH_ALEN];
  86. /* maybe the boot loader passed the MAC address in devicetree */
  87. --
  88. 2.37.0