From: Florian Fainelli <f.fainelli@gmail.com>
To: Steve Lin <steven.lin1@broadcom.com>,
davem@davemloft.net, rafal@milecki.pl, jon.mason@broadcom.com,
tklauser@distanz.ch
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
bcm-kernel-feedback-list@broadcom.com
Subject: Re: [PATCH] net: ethernet: bgmac: Allow MAC address to be specified in DTB
Date: Thu, 16 Mar 2017 09:39:47 -0700 [thread overview]
Message-ID: <d6bf9f70-6857-440c-bd1c-40c2fa472b41@gmail.com> (raw)
In-Reply-To: <1489679338-39705-1-git-send-email-steven.lin1@broadcom.com>
On 03/16/2017 08:48 AM, Steve Lin wrote:
> Allows the BCMA version of the bgmac driver to obtain MAC address
> from the device tree. If no MAC address is specified there, then
> the previous behavior (obtaining MAC address from SPROM) is
> used.
>
> Signed-off-by: Steve Lin <steven.lin1@broadcom.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
PS: you might want to specify which tree this applies to by using [PATCH
net-next] or [PATCH net] in the subject, see the netdev-FAQ.txt for
details:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/networking/netdev-FAQ.txt
> ---
> drivers/net/ethernet/broadcom/bgmac-bcma.c | 39 ++++++++++++++++++------------
> 1 file changed, 23 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/net/ethernet/broadcom/bgmac-bcma.c b/drivers/net/ethernet/broadcom/bgmac-bcma.c
> index cf15b7e..6322594 100644
> --- a/drivers/net/ethernet/broadcom/bgmac-bcma.c
> +++ b/drivers/net/ethernet/broadcom/bgmac-bcma.c
> @@ -11,6 +11,7 @@
> #include <linux/bcma/bcma.h>
> #include <linux/brcmphy.h>
> #include <linux/etherdevice.h>
> +#include <linux/of_net.h>
> #include "bgmac.h"
>
> static inline bool bgmac_is_bcm4707_family(struct bcma_device *core)
> @@ -114,7 +115,7 @@ static int bgmac_probe(struct bcma_device *core)
> struct ssb_sprom *sprom = &core->bus->sprom;
> struct mii_bus *mii_bus;
> struct bgmac *bgmac;
> - u8 *mac;
> + const u8 *mac = NULL;
> int err;
>
> bgmac = bgmac_alloc(&core->dev);
> @@ -127,21 +128,27 @@ static int bgmac_probe(struct bcma_device *core)
>
> bcma_set_drvdata(core, bgmac);
>
> - switch (core->core_unit) {
> - case 0:
> - mac = sprom->et0mac;
> - break;
> - case 1:
> - mac = sprom->et1mac;
> - break;
> - case 2:
> - mac = sprom->et2mac;
> - break;
> - default:
> - dev_err(bgmac->dev, "Unsupported core_unit %d\n",
> - core->core_unit);
> - err = -ENOTSUPP;
> - goto err;
> + if (bgmac->dev->of_node)
> + mac = of_get_mac_address(bgmac->dev->of_node);
> +
> + /* If no MAC address assigned via device tree, check SPROM */
> + if (!mac) {
> + switch (core->core_unit) {
> + case 0:
> + mac = sprom->et0mac;
> + break;
> + case 1:
> + mac = sprom->et1mac;
> + break;
> + case 2:
> + mac = sprom->et2mac;
> + break;
> + default:
> + dev_err(bgmac->dev, "Unsupported core_unit %d\n",
> + core->core_unit);
> + err = -ENOTSUPP;
> + goto err;
> + }
> }
>
> ether_addr_copy(bgmac->net_dev->dev_addr, mac);
>
--
Florian
next prev parent reply other threads:[~2017-03-16 16:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-16 15:48 [PATCH] net: ethernet: bgmac: Allow MAC address to be specified in DTB Steve Lin
2017-03-16 16:39 ` Florian Fainelli [this message]
2017-03-16 17:13 ` Jon Mason
2017-03-16 18:58 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d6bf9f70-6857-440c-bd1c-40c2fa472b41@gmail.com \
--to=f.fainelli@gmail.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=davem@davemloft.net \
--cc=jon.mason@broadcom.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=rafal@milecki.pl \
--cc=steven.lin1@broadcom.com \
--cc=tklauser@distanz.ch \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox