mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] imx-bbu-nand-fcb: add support for imx6ull
@ 2017-05-19 14:02 Christian Hemp
  2017-05-22 10:18 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Hemp @ 2017-05-19 14:02 UTC (permalink / raw)
  To: barebox

The i.MX 6ull secures the fcb with bch 40. This is identical to i.MX 6ul.

Signed-off-by: Christian Hemp <c.hemp@phytec.de>
---
 common/imx-bbu-nand-fcb.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/imx-bbu-nand-fcb.c b/common/imx-bbu-nand-fcb.c
index 5d3d3f7..7218c5e 100644
--- a/common/imx-bbu-nand-fcb.c
+++ b/common/imx-bbu-nand-fcb.c
@@ -441,7 +441,7 @@ static int read_fcb(struct mtd_info *mtd, int num, struct fcb_block **retfcb)
 		goto err;
 	}
 
-	if (cpu_is_mx6ul())
+	if (cpu_is_mx6ul() || cpu_is_mx6ull())
 		fcb = read_fcb_bch(rawpage, 40);
 	else
 		fcb = read_fcb_hamming_13_8(rawpage);
@@ -899,8 +899,8 @@ static int imx_bbu_write_fcbs_dbbts(struct mtd_info *mtd, struct fcb_block *fcb)
 
 	fcb_raw_page = xzalloc(mtd->writesize + mtd->oobsize);
 
-	if (cpu_is_mx6ul()) {
-		/* 40 bit BCH, for i.MX6UL */
+	if (cpu_is_mx6ul() || cpu_is_mx6ull()) {
+		/* 40 bit BCH, for i.MX6UL(L) */
 		encode_bch_ecc(fcb_raw_page + 32, fcb, 40);
 	} else {
 		memcpy(fcb_raw_page + 12, fcb, sizeof(struct fcb_block));
-- 
1.9.1


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

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

* Re: [PATCH] imx-bbu-nand-fcb: add support for imx6ull
  2017-05-19 14:02 [PATCH] imx-bbu-nand-fcb: add support for imx6ull Christian Hemp
@ 2017-05-22 10:18 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2017-05-22 10:18 UTC (permalink / raw)
  To: Christian Hemp; +Cc: barebox

On Fri, May 19, 2017 at 04:02:37PM +0200, Christian Hemp wrote:
> The i.MX 6ull secures the fcb with bch 40. This is identical to i.MX 6ul.
> 
> Signed-off-by: Christian Hemp <c.hemp@phytec.de>
> ---
>  common/imx-bbu-nand-fcb.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/common/imx-bbu-nand-fcb.c b/common/imx-bbu-nand-fcb.c
> index 5d3d3f7..7218c5e 100644
> --- a/common/imx-bbu-nand-fcb.c
> +++ b/common/imx-bbu-nand-fcb.c
> @@ -441,7 +441,7 @@ static int read_fcb(struct mtd_info *mtd, int num, struct fcb_block **retfcb)
>  		goto err;
>  	}
>  
> -	if (cpu_is_mx6ul())
> +	if (cpu_is_mx6ul() || cpu_is_mx6ull())
>  		fcb = read_fcb_bch(rawpage, 40);
>  	else
>  		fcb = read_fcb_hamming_13_8(rawpage);
> @@ -899,8 +899,8 @@ static int imx_bbu_write_fcbs_dbbts(struct mtd_info *mtd, struct fcb_block *fcb)
>  
>  	fcb_raw_page = xzalloc(mtd->writesize + mtd->oobsize);
>  
> -	if (cpu_is_mx6ul()) {
> -		/* 40 bit BCH, for i.MX6UL */
> +	if (cpu_is_mx6ul() || cpu_is_mx6ull()) {
> +		/* 40 bit BCH, for i.MX6UL(L) */
>  		encode_bch_ecc(fcb_raw_page + 32, fcb, 40);
>  	} else {
>  		memcpy(fcb_raw_page + 12, fcb, sizeof(struct fcb_block));
> -- 
> 1.9.1
> 
> 
> _______________________________________________
> 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

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

end of thread, other threads:[~2017-05-22 10:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-19 14:02 [PATCH] imx-bbu-nand-fcb: add support for imx6ull Christian Hemp
2017-05-22 10:18 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox