mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: barebox@lists.infradead.org,
	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Subject: Re: [PATCH 2/7] i.MX: ocotp: Change MAC address layout for VFxxx
Date: Wed, 23 May 2018 10:21:59 +0200	[thread overview]
Message-ID: <20180523082159.yj2rymltv2vwphg6@pengutronix.de> (raw)
In-Reply-To: <20180522230518.9070-3-andrew.smirnov@gmail.com>

On Tue, May 22, 2018 at 04:05:13PM -0700, Andrey Smirnov wrote:
> For reasons unclear VFxxx port of U-Boot chose to store MAC address in
> OCOTP using a layout that is incompatible with rest of i.MX
> world (both in U-Boot and Barebox). Unfortunately for us, that means
> that there are a number of boards out there that have had their MAC
> addresses programmed using U-Boot and in order to properly support
> those boards we need to change VFxxx port of Barebox to be compatible.
> 
> Since the number of Barebox users on VFxx is in single digits, just
> chage the layout to that of U-Boot without trying to make this a
> configurable option.
> 
> Cc: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
> Tested-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> ---
>  arch/arm/mach-imx/ocotp.c | 64 +++++++++++++++++++++++++++++++++------
>  1 file changed, 54 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/arm/mach-imx/ocotp.c b/arch/arm/mach-imx/ocotp.c
> index d5e6b3d3e..a70adee37 100644
> --- a/arch/arm/mach-imx/ocotp.c
> +++ b/arch/arm/mach-imx/ocotp.c
> @@ -76,9 +76,16 @@
>  #define MAX_MAC_OFFSETS			2
>  #define MAC_BYTES			8
>  
> +enum imx_ocotp_format_mac_direction {
> +	OCOTP_HW_TO_MAC,
> +	OCOTP_MAC_TO_HW,
> +};
> +
>  struct imx_ocotp_data {
>  	int num_regs;
>  	u32 (*addr_to_offset)(u32 addr);
> +	void (*format_mac)(u8 *dst, const u8 *src,
> +			   enum imx_ocotp_format_mac_direction dir);
>  	u8  mac_offsets[MAX_MAC_OFFSETS];
>  	u8  mac_offsets_num;
>  };
> @@ -87,6 +94,7 @@ struct ocotp_priv_ethaddr {
>  	char value[MAC_BYTES];
>  	struct regmap *map;
>  	u8 offset;
> +	const struct imx_ocotp_data *data;
>  };
>  
>  struct ocotp_priv {
> @@ -368,16 +376,46 @@ bool imx_ocotp_sense_enable(bool enable)
>  	return old_value;
>  }
>  
> -static void memreverse(void *dest, const void *src, size_t n)
> +static void imx_ocotp_format_mac(u8 *dst, const u8 *src,
> +				 enum imx_ocotp_format_mac_direction dir)
>  {
> -	char *destp = dest;
> -	const char *srcp = src + n - 1;
> +	/*
> +	 * This transformation is symmetic, so we don't care about the
> +	 * value of 'dir'.
> +	 */
> +	dst[5] = src[0];
> +	dst[4] = src[1];
> +	dst[3] = src[2];
> +	dst[2] = src[3];
> +	dst[1] = src[4];
> +	dst[0] = src[5];
> +}
>  
> -	while(n--)
> -		*destp++ = *srcp--;
> +static void vf610_ocotp_format_mac(u8 *dst, const u8 *src,
> +				   enum imx_ocotp_format_mac_direction dir)
> +{
> +	switch (dir) {
> +	case OCOTP_HW_TO_MAC:
> +		dst[1] = src[0];
> +		dst[0] = src[1];
> +		dst[5] = src[4];
> +		dst[4] = src[5];
> +		dst[3] = src[6];
> +		dst[2] = src[7];
> +		break;
> +	case OCOTP_MAC_TO_HW:
> +		dst[0] = src[1];
> +		dst[1] = dst[0];
> +		dst[4] = dst[5];
> +		dst[5] = dst[4];
> +		dst[6] = dst[3];
> +		dst[7] = dst[2];
> +		break;

only src[1] used? This looks wrong.

Sascha


-- 
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

  reply	other threads:[~2018-05-23  8:22 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-22 23:05 [PATCH 0/7] VF610 OCOTP MAC address layout change Andrey Smirnov
2018-05-22 23:05 ` [PATCH 1/7] i.MX: ocotp: Unify code paths for reading MAC address Andrey Smirnov
2018-05-22 23:05 ` [PATCH 2/7] i.MX: ocotp: Change MAC address layout for VFxxx Andrey Smirnov
2018-05-23  8:21   ` Sascha Hauer [this message]
2018-05-25  3:06     ` Andrey Smirnov
2018-05-22 23:05 ` [PATCH 3/7] i.MX: ocotp: Simplify OCOTP field packing/unpacking Andrey Smirnov
2018-05-22 23:05 ` [PATCH 4/7] i.MX: ocotp: Simplify BF macro Andrey Smirnov
2018-05-22 23:05 ` [PATCH 5/7] i.MX: ocotp: Move OCOTP driver to drivers/nvmem Andrey Smirnov
2018-05-22 23:05 ` [PATCH 6/7] nvmem: Use name from struct nvmem_config for cdev Andrey Smirnov
2018-05-22 23:05 ` [PATCH 7/7] nvmem: ocotp: Convert to NVMEM device Andrey Smirnov

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=20180523082159.yj2rymltv2vwphg6@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=andrew.smirnov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=vivien.didelot@savoirfairelinux.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