mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/3] net/designware: update version display to print user ID and Synosys ID
Date: Thu, 4 Oct 2012 17:21:01 +0200	[thread overview]
Message-ID: <20121004152101.GK1322@pengutronix.de> (raw)
In-Reply-To: <1349334027-9525-1-git-send-email-plagnioj@jcrosoft.com>

On Thu, Oct 04, 2012 at 09:00:25AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> So we can check it with the kernel one
> 
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

Applied this series.

Thanks
 Sascha

> ---
>  drivers/net/designware.c |   11 ++++++++++-
>  1 file changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/designware.c b/drivers/net/designware.c
> index a9a04e3..6a36f14 100644
> --- a/drivers/net/designware.c
> +++ b/drivers/net/designware.c
> @@ -373,6 +373,15 @@ static int dwc_ether_set_ethaddr(struct eth_device *dev, u8 adr[6])
>  	return 0;
>  }
>  
> +static void dwc_version(struct device_d *dev, u32 hwid)
> +{
> +	u32 uid = ((hwid & 0x0000ff00) >> 8);
> +	u32 synid = (hwid & 0x000000ff);
> +
> +	dev_info(dev, "user ID: 0x%x, Synopsys ID: 0x%x\n",
> +		uid, synid);
> +}
> +
>  static int dwc_ether_probe(struct device_d *dev)
>  {
>  	struct dw_eth_dev *priv;
> @@ -390,7 +399,7 @@ static int dwc_ether_probe(struct device_d *dev)
>  
>  	base = dev_request_mem_region(dev, 0);
>  	priv->mac_regs_p = base;
> -	dev_info(dev, "MAC version %08x\n", readl(&priv->mac_regs_p->version));
> +	dwc_version(dev, readl(&priv->mac_regs_p->version));
>  	priv->dma_regs_p = base + DW_DMA_BASE_OFFSET;
>  	priv->tx_mac_descrtable = dma_alloc_coherent(
>  		CONFIG_TX_DESCR_NUM * sizeof(struct dmamacdescr));
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      parent reply	other threads:[~2012-10-04 15:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-04  7:00 Jean-Christophe PLAGNIOL-VILLARD
2012-10-04  7:00 ` [PATCH 2/3] net/designware: fix phy_addr type to int Jean-Christophe PLAGNIOL-VILLARD
2012-10-04  7:00 ` [PATCH 3/3] net/designware: fix phylib support Jean-Christophe PLAGNIOL-VILLARD
2012-10-04 15:21 ` Sascha Hauer [this message]

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=20121004152101.GK1322@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=plagnioj@jcrosoft.com \
    /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