All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv3] ethernet: aquantia: Try MAC address from device tree
@ 2021-12-01  2:57 Tianhao Chai
  2021-12-01  8:12 ` [EXT] " Igor Russkikh
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Tianhao Chai @ 2021-12-01  2:57 UTC (permalink / raw)
  To: Igor Russkikh, David S. Miller, Jakub Kicinski, netdev,
	linux-kernel, Andrew Lunn, Heiner Kallweit, Julian Wiedmann
  Cc: Hector Martin, Sven Peter, Alyssa Rosenzweig

Apple M1 Mac minis (2020) with 10GE NICs do not have MAC address in the
card, but instead need to obtain MAC addresses from the device tree. In
this case the hardware will report an invalid MAC.

Currently atlantic driver does not query the DT for MAC address and will
randomly assign a MAC if the NIC doesn't have a permanent MAC burnt in.
This patch causes the driver to perfer a valid MAC address from OF (if
present) over HW self-reported MAC and only fall back to a random MAC
address when neither of them is valid.

Signed-off-by: Tianhao Chai <cth451@gmail.com>
---
 .../net/ethernet/aquantia/atlantic/aq_nic.c   | 24 +++++++++++--------
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_nic.c b/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
index 1acf544afeb4..2a1ab154f681 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
@@ -316,18 +316,22 @@ int aq_nic_ndev_register(struct aq_nic_s *self)
 	aq_macsec_init(self);
 #endif
 
-	mutex_lock(&self->fwreq_mutex);
-	err = self->aq_fw_ops->get_mac_permanent(self->aq_hw, addr);
-	mutex_unlock(&self->fwreq_mutex);
-	if (err)
-		goto err_exit;
+	if (platform_get_ethdev_address(&self->pdev->dev, self->ndev) != 0) {
+		// If DT has none or an invalid one, ask device for MAC address
+		mutex_lock(&self->fwreq_mutex);
+		err = self->aq_fw_ops->get_mac_permanent(self->aq_hw, addr);
+		mutex_unlock(&self->fwreq_mutex);
 
-	eth_hw_addr_set(self->ndev, addr);
+		if (err)
+			goto err_exit;
 
-	if (!is_valid_ether_addr(self->ndev->dev_addr) ||
-	    !aq_nic_is_valid_ether_addr(self->ndev->dev_addr)) {
-		netdev_warn(self->ndev, "MAC is invalid, will use random.");
-		eth_hw_addr_random(self->ndev);
+		if (is_valid_ether_addr(addr) &&
+		    aq_nic_is_valid_ether_addr(addr)) {
+			eth_hw_addr_set(self->ndev, addr);
+		} else {
+			netdev_warn(self->ndev, "MAC is invalid, will use random.");
+			eth_hw_addr_random(self->ndev);
+		}
 	}
 
 #if defined(AQ_CFG_MAC_ADDR_PERMANENT)
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [EXT] [PATCHv3] ethernet: aquantia: Try MAC address from device tree
  2021-12-01  2:57 [PATCHv3] ethernet: aquantia: Try MAC address from device tree Tianhao Chai
@ 2021-12-01  8:12 ` Igor Russkikh
  2021-12-01 13:08 ` Hector Martin
  2021-12-02 12:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Igor Russkikh @ 2021-12-01  8:12 UTC (permalink / raw)
  To: Tianhao Chai, David S. Miller, Jakub Kicinski, netdev,
	linux-kernel, Andrew Lunn, Heiner Kallweit, Julian Wiedmann
  Cc: Hector Martin, Sven Peter, Alyssa Rosenzweig

Hi Tianhao,

> Apple M1 Mac minis (2020) with 10GE NICs do not have MAC address in the
> card, but instead need to obtain MAC addresses from the device tree. In
> this case the hardware will report an invalid MAC.
> 
> Currently atlantic driver does not query the DT for MAC address and will
> randomly assign a MAC if the NIC doesn't have a permanent MAC burnt in.
> This patch causes the driver to perfer a valid MAC address from OF (if
> present) over HW self-reported MAC and only fall back to a random MAC
> address when neither of them is valid.
> 
> Signed-off-by: Tianhao Chai <cth451@gmail.com>
Reviewed-by: Igor Russkikh <irusskikh@marvell.com>

Regards,
  Igor

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv3] ethernet: aquantia: Try MAC address from device tree
  2021-12-01  2:57 [PATCHv3] ethernet: aquantia: Try MAC address from device tree Tianhao Chai
  2021-12-01  8:12 ` [EXT] " Igor Russkikh
@ 2021-12-01 13:08 ` Hector Martin
  2021-12-02 12:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Hector Martin @ 2021-12-01 13:08 UTC (permalink / raw)
  To: Tianhao Chai, Igor Russkikh, David S. Miller, Jakub Kicinski,
	netdev, linux-kernel, Andrew Lunn, Heiner Kallweit,
	Julian Wiedmann
  Cc: Sven Peter, Alyssa Rosenzweig

On 01/12/2021 11.57, Tianhao Chai wrote:
> Apple M1 Mac minis (2020) with 10GE NICs do not have MAC address in the
> card, but instead need to obtain MAC addresses from the device tree. In
> this case the hardware will report an invalid MAC.
> 
> Currently atlantic driver does not query the DT for MAC address and will
> randomly assign a MAC if the NIC doesn't have a permanent MAC burnt in.
> This patch causes the driver to perfer a valid MAC address from OF (if
> present) over HW self-reported MAC and only fall back to a random MAC
> address when neither of them is valid.
> 
> Signed-off-by: Tianhao Chai <cth451@gmail.com>
> ---
>   .../net/ethernet/aquantia/atlantic/aq_nic.c   | 24 +++++++++++--------
>   1 file changed, 14 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_nic.c b/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
> index 1acf544afeb4..2a1ab154f681 100644
> --- a/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
> +++ b/drivers/net/ethernet/aquantia/atlantic/aq_nic.c
> @@ -316,18 +316,22 @@ int aq_nic_ndev_register(struct aq_nic_s *self)
>   	aq_macsec_init(self);
>   #endif
>   
> -	mutex_lock(&self->fwreq_mutex);
> -	err = self->aq_fw_ops->get_mac_permanent(self->aq_hw, addr);
> -	mutex_unlock(&self->fwreq_mutex);
> -	if (err)
> -		goto err_exit;
> +	if (platform_get_ethdev_address(&self->pdev->dev, self->ndev) != 0) {
> +		// If DT has none or an invalid one, ask device for MAC address
> +		mutex_lock(&self->fwreq_mutex);
> +		err = self->aq_fw_ops->get_mac_permanent(self->aq_hw, addr);
> +		mutex_unlock(&self->fwreq_mutex);
>   
> -	eth_hw_addr_set(self->ndev, addr);
> +		if (err)
> +			goto err_exit;
>   
> -	if (!is_valid_ether_addr(self->ndev->dev_addr) ||
> -	    !aq_nic_is_valid_ether_addr(self->ndev->dev_addr)) {
> -		netdev_warn(self->ndev, "MAC is invalid, will use random.");
> -		eth_hw_addr_random(self->ndev);
> +		if (is_valid_ether_addr(addr) &&
> +		    aq_nic_is_valid_ether_addr(addr)) {
> +			eth_hw_addr_set(self->ndev, addr);
> +		} else {
> +			netdev_warn(self->ndev, "MAC is invalid, will use random.");
> +			eth_hw_addr_random(self->ndev);
> +		}
>   	}
>   
>   #if defined(AQ_CFG_MAC_ADDR_PERMANENT)
> 

Reviewed-by: Hector Martin <marcan@marcan.st>

-- 
Hector Martin (marcan@marcan.st)
Public Key: https://mrcn.st/pub

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv3] ethernet: aquantia: Try MAC address from device tree
  2021-12-01  2:57 [PATCHv3] ethernet: aquantia: Try MAC address from device tree Tianhao Chai
  2021-12-01  8:12 ` [EXT] " Igor Russkikh
  2021-12-01 13:08 ` Hector Martin
@ 2021-12-02 12:20 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-12-02 12:20 UTC (permalink / raw)
  To: Tianhao Chai
  Cc: irusskikh, davem, kuba, netdev, linux-kernel, andrew, hkallweit1,
	jwi, marcan, sven, alyssa

Hello:

This patch was applied to netdev/net.git (master)
by David S. Miller <davem@davemloft.net>:

On Tue, 30 Nov 2021 20:57:06 -0600 you wrote:
> Apple M1 Mac minis (2020) with 10GE NICs do not have MAC address in the
> card, but instead need to obtain MAC addresses from the device tree. In
> this case the hardware will report an invalid MAC.
> 
> Currently atlantic driver does not query the DT for MAC address and will
> randomly assign a MAC if the NIC doesn't have a permanent MAC burnt in.
> This patch causes the driver to perfer a valid MAC address from OF (if
> present) over HW self-reported MAC and only fall back to a random MAC
> address when neither of them is valid.
> 
> [...]

Here is the summary with links:
  - [PATCHv3] ethernet: aquantia: Try MAC address from device tree
    https://git.kernel.org/netdev/net/c/553217c24426

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-12-02 12:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-01  2:57 [PATCHv3] ethernet: aquantia: Try MAC address from device tree Tianhao Chai
2021-12-01  8:12 ` [EXT] " Igor Russkikh
2021-12-01 13:08 ` Hector Martin
2021-12-02 12:20 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.