linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16 12:58 ` Schrempf Frieder
@ 2018-12-25  3:25   ` posting test
  0 siblings, 0 replies; 7+ messages in thread
From: posting test @ 2018-12-25  3:25 UTC (permalink / raw)
  To: Schrempf Frieder, bbrezillon, miquel.raynal
  Cc: richard, dwmw2, computersforpeace, marek.vasut, peron.clem,
	linux-mtd, linux-kernel

Hi Schrempf, Miquel,

Thanks a lot.


On 2019年01月16日 21:58, Schrempf Frieder wrote:
> On 16.01.19 06:53, Yoshio Furuyama wrote:
>> Add device table for Toshiba Memory products.
>> Also, generalize OOB layout structure and function names.
>>
>> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>
> Reviewed-by: Frieder Schrempf <frieder.schrempf@kontron.de>
>
>> ---
>>    drivers/mtd/nand/spi/toshiba.c |   79 +++++++++++++++++++++++++++++++++-------
>>    1 file changed, 65 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/mtd/nand/spi/toshiba.c b/drivers/mtd/nand/spi/toshiba.c
>> index 0812655..0916962 100644
>> --- a/drivers/mtd/nand/spi/toshiba.c
>> +++ b/drivers/mtd/nand/spi/toshiba.c
>> @@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
>>    static SPINAND_OP_VARIANTS(update_cache_variants,
>>    		SPINAND_PROG_LOAD(false, 0, NULL, 0));
>>    
>> -static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
>> +static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
>>    				     struct mtd_oob_region *region)
>>    {
>> -	if (section > 7)
>> +	if (section > 0)
>>    		return -ERANGE;
>>    
>> -	region->offset = 128 + 16 * section;
>> -	region->length = 16;
>> +	region->offset = mtd->oobsize / 2;
>> +	region->length = mtd->oobsize / 2;
>>    
>>    	return 0;
>>    }
>>    
>> -static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>> +static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
>>    				      struct mtd_oob_region *region)
>>    {
>>    	if (section > 0)
>> @@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>>    
>>    	/* 2 bytes reserved for BBM */
>>    	region->offset = 2;
>> -	region->length = 126;
>> +	region->length = mtd->oobsize / 2 - 2;
>>    
>>    	return 0;
>>    }
>>    
>> -static const struct mtd_ooblayout_ops tc58cvg2s0h_ooblayout = {
>> -	.ecc = tc58cvg2s0h_ooblayout_ecc,
>> -	.free = tc58cvg2s0h_ooblayout_free,
>> +static const struct mtd_ooblayout_ops tc58cxgxsx_ooblayout = {
>> +	.ecc = tc58cxgxsx_ooblayout_ecc,
>> +	.free = tc58cxgxsx_ooblayout_free,
>>    };
>>    
>> -static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
>> +static int tc58cxgxsx_ecc_get_status(struct spinand_device *spinand,
>>    				      u8 status)
>>    {
>>    	struct nand_device *nand = spinand_to_nand(spinand);
>> @@ -94,15 +94,66 @@ static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
>>    }
>>    
>>    static const struct spinand_info toshiba_spinand_table[] = {
>> -	SPINAND_INFO("TC58CVG2S0H", 0xCD,
>> +	/* 3.3V 1Gb */
>> +	SPINAND_INFO("TC58CVG0S3", 0xC2,
>> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
>> +		     NAND_ECCREQ(8, 512),
>> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +					      &write_cache_variants,
>> +					      &update_cache_variants),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>> +	/* 3.3V 2Gb */
>> +	SPINAND_INFO("TC58CVG1S3", 0xCB,
>> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
>> +		     NAND_ECCREQ(8, 512),
>> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +					      &write_cache_variants,
>> +					      &update_cache_variants),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>> +	/* 3.3V 4Gb */
>> +	SPINAND_INFO("TC58CVG2S0", 0xCD,
>> +		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>> +		     NAND_ECCREQ(8, 512),
>> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +					      &write_cache_variants,
>> +					      &update_cache_variants),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>> +	/* 1.8V 1Gb */
>> +	SPINAND_INFO("TC58CYG0S3", 0xB2,
>> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
>> +		     NAND_ECCREQ(8, 512),
>> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +					      &write_cache_variants,
>> +					      &update_cache_variants),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>> +	/* 1.8V 2Gb */
>> +	SPINAND_INFO("TC58CYG1S3", 0xBB,
>> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
>> +		     NAND_ECCREQ(8, 512),
>> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +					      &write_cache_variants,
>> +					      &update_cache_variants),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>> +	/* 1.8V 4Gb */
>> +	SPINAND_INFO("TC58CYG2S0", 0xBD,
>>    		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>>    		     NAND_ECCREQ(8, 512),
>>    		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>>    					      &write_cache_variants,
>>    					      &update_cache_variants),
>> -		     SPINAND_HAS_QE_BIT,
>> -		     SPINAND_ECCINFO(&tc58cvg2s0h_ooblayout,
>> -				     tc58cvg2s0h_ecc_get_status)),
>> +		     0,
>> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +				     tc58cxgxsx_ecc_get_status)),
>>    };
>>    
>>    static int toshiba_spinand_detect(struct spinand_device *spinand)
>>
>


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

* [PATCH] mtd: spinand: Add support for all Toshiba Memory products
@ 2019-01-16  5:53 Yoshio Furuyama
  2019-01-16 10:04 ` Miquel Raynal
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Yoshio Furuyama @ 2019-01-16  5:53 UTC (permalink / raw)
  To: bbrezillon, miquel.raynal
  Cc: richard, dwmw2, computersforpeace, marek.vasut, frieder.schrempf,
	peron.clem, linux-mtd, linux-kernel, tmcmc-mb-yfuruyama7

Add device table for Toshiba Memory products.
Also, generalize OOB layout structure and function names.

Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>

---
 drivers/mtd/nand/spi/toshiba.c |   79 +++++++++++++++++++++++++++++++++-------
 1 file changed, 65 insertions(+), 14 deletions(-)

diff --git a/drivers/mtd/nand/spi/toshiba.c b/drivers/mtd/nand/spi/toshiba.c
index 0812655..0916962 100644
--- a/drivers/mtd/nand/spi/toshiba.c
+++ b/drivers/mtd/nand/spi/toshiba.c
@@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
 static SPINAND_OP_VARIANTS(update_cache_variants,
 		SPINAND_PROG_LOAD(false, 0, NULL, 0));
 
-static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
+static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
 				     struct mtd_oob_region *region)
 {
-	if (section > 7)
+	if (section > 0)
 		return -ERANGE;
 
-	region->offset = 128 + 16 * section;
-	region->length = 16;
+	region->offset = mtd->oobsize / 2;
+	region->length = mtd->oobsize / 2;
 
 	return 0;
 }
 
-static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
+static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
 				      struct mtd_oob_region *region)
 {
 	if (section > 0)
@@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
 
 	/* 2 bytes reserved for BBM */
 	region->offset = 2;
-	region->length = 126;
+	region->length = mtd->oobsize / 2 - 2;
 
 	return 0;
 }
 
-static const struct mtd_ooblayout_ops tc58cvg2s0h_ooblayout = {
-	.ecc = tc58cvg2s0h_ooblayout_ecc,
-	.free = tc58cvg2s0h_ooblayout_free,
+static const struct mtd_ooblayout_ops tc58cxgxsx_ooblayout = {
+	.ecc = tc58cxgxsx_ooblayout_ecc,
+	.free = tc58cxgxsx_ooblayout_free,
 };
 
-static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
+static int tc58cxgxsx_ecc_get_status(struct spinand_device *spinand,
 				      u8 status)
 {
 	struct nand_device *nand = spinand_to_nand(spinand);
@@ -94,15 +94,66 @@ static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
 }
 
 static const struct spinand_info toshiba_spinand_table[] = {
-	SPINAND_INFO("TC58CVG2S0H", 0xCD,
+	/* 3.3V 1Gb */
+	SPINAND_INFO("TC58CVG0S3", 0xC2,
+		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
+		     NAND_ECCREQ(8, 512),
+		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
+					      &write_cache_variants,
+					      &update_cache_variants),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
+	/* 3.3V 2Gb */
+	SPINAND_INFO("TC58CVG1S3", 0xCB,
+		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
+		     NAND_ECCREQ(8, 512),
+		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
+					      &write_cache_variants,
+					      &update_cache_variants),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
+	/* 3.3V 4Gb */
+	SPINAND_INFO("TC58CVG2S0", 0xCD,
+		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
+		     NAND_ECCREQ(8, 512),
+		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
+					      &write_cache_variants,
+					      &update_cache_variants),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
+	/* 1.8V 1Gb */
+	SPINAND_INFO("TC58CYG0S3", 0xB2,
+		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
+		     NAND_ECCREQ(8, 512),
+		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
+					      &write_cache_variants,
+					      &update_cache_variants),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
+	/* 1.8V 2Gb */
+	SPINAND_INFO("TC58CYG1S3", 0xBB,
+		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
+		     NAND_ECCREQ(8, 512),
+		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
+					      &write_cache_variants,
+					      &update_cache_variants),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
+	/* 1.8V 4Gb */
+	SPINAND_INFO("TC58CYG2S0", 0xBD,
 		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
 		     NAND_ECCREQ(8, 512),
 		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
 					      &write_cache_variants,
 					      &update_cache_variants),
-		     SPINAND_HAS_QE_BIT,
-		     SPINAND_ECCINFO(&tc58cvg2s0h_ooblayout,
-				     tc58cvg2s0h_ecc_get_status)),
+		     0,
+		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
+				     tc58cxgxsx_ecc_get_status)),
 };
 
 static int toshiba_spinand_detect(struct spinand_device *spinand)
-- 
1.7.9.5


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

* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16  5:53 [PATCH] mtd: spinand: Add support for all Toshiba Memory products Yoshio Furuyama
@ 2019-01-16 10:04 ` Miquel Raynal
  2019-01-16 10:42 ` Schrempf Frieder
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Miquel Raynal @ 2019-01-16 10:04 UTC (permalink / raw)
  To: Yoshio Furuyama
  Cc: bbrezillon, richard, dwmw2, computersforpeace, marek.vasut,
	frieder.schrempf, peron.clem, linux-mtd, linux-kernel

Hi Yoshio,

Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp> wrote on Wed, 16
Jan 2019 14:53:19 +0900:

> Add device table for Toshiba Memory products.
> Also, generalize OOB layout structure and function names.
> 
> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>
> 
> ---
>  drivers/mtd/nand/spi/toshiba.c |   79 +++++++++++++++++++++++++++++++++-------
>  1 file changed, 65 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/mtd/nand/spi/toshiba.c b/drivers/mtd/nand/spi/toshiba.c
> index 0812655..0916962 100644
> --- a/drivers/mtd/nand/spi/toshiba.c
> +++ b/drivers/mtd/nand/spi/toshiba.c
> @@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
>  static SPINAND_OP_VARIANTS(update_cache_variants,
>  		SPINAND_PROG_LOAD(false, 0, NULL, 0));
>  
> -static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
>  				     struct mtd_oob_region *region)
>  {
> -	if (section > 7)
> +	if (section > 0)
>  		return -ERANGE;
>  
> -	region->offset = 128 + 16 * section;
> -	region->length = 16;
> +	region->offset = mtd->oobsize / 2;
> +	region->length = mtd->oobsize / 2;
>  
>  	return 0;
>  }
>  
> -static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
>  				      struct mtd_oob_region *region)
>  {
>  	if (section > 0)
> @@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>  
>  	/* 2 bytes reserved for BBM */
>  	region->offset = 2;
> -	region->length = 126;
> +	region->length = mtd->oobsize / 2 - 2;

I know this is valid C but I am always puzzled when reading such
mathematical operation, I would prefer (mtd->oobsize / 2) - 2.

I'm fine with the rest so if there is no other comment I will fix when
applying.


Thanks,
Miquèl

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

* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16  5:53 [PATCH] mtd: spinand: Add support for all Toshiba Memory products Yoshio Furuyama
  2019-01-16 10:04 ` Miquel Raynal
@ 2019-01-16 10:42 ` Schrempf Frieder
  2019-01-16 12:55   ` Schrempf Frieder
  2019-01-16 12:58 ` Schrempf Frieder
  2019-01-25 12:35 ` Miquel Raynal
  3 siblings, 1 reply; 7+ messages in thread
From: Schrempf Frieder @ 2019-01-16 10:42 UTC (permalink / raw)
  To: Yoshio Furuyama, bbrezillon, miquel.raynal
  Cc: richard, dwmw2, computersforpeace, marek.vasut, peron.clem,
	linux-mtd, linux-kernel

Hi Yoshio,

On 16.01.19 06:53, Yoshio Furuyama wrote:
> Add device table for Toshiba Memory products.
> Also, generalize OOB layout structure and function names.
> 
> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>
> 
> ---
>   drivers/mtd/nand/spi/toshiba.c |   79 +++++++++++++++++++++++++++++++++-------
>   1 file changed, 65 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/mtd/nand/spi/toshiba.c b/drivers/mtd/nand/spi/toshiba.c
> index 0812655..0916962 100644
> --- a/drivers/mtd/nand/spi/toshiba.c
> +++ b/drivers/mtd/nand/spi/toshiba.c
> @@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
>   static SPINAND_OP_VARIANTS(update_cache_variants,
>   		SPINAND_PROG_LOAD(false, 0, NULL, 0));
>   
> -static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
>   				     struct mtd_oob_region *region)
>   {
> -	if (section > 7)
> +	if (section > 0)
>   		return -ERANGE;
>   
> -	region->offset = 128 + 16 * section;
> -	region->length = 16;
> +	region->offset = mtd->oobsize / 2;
> +	region->length = mtd->oobsize / 2;
>   
>   	return 0;
>   }
>   
> -static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
>   				      struct mtd_oob_region *region)
>   {
>   	if (section > 0)
> @@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>   
>   	/* 2 bytes reserved for BBM */
>   	region->offset = 2;
> -	region->length = 126;
> +	region->length = mtd->oobsize / 2 - 2;
>   
>   	return 0;
>   }
>   
> -static const struct mtd_ooblayout_ops tc58cvg2s0h_ooblayout = {
> -	.ecc = tc58cvg2s0h_ooblayout_ecc,
> -	.free = tc58cvg2s0h_ooblayout_free,
> +static const struct mtd_ooblayout_ops tc58cxgxsx_ooblayout = {
> +	.ecc = tc58cxgxsx_ooblayout_ecc,
> +	.free = tc58cxgxsx_ooblayout_free,
>   };
>   
> -static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
> +static int tc58cxgxsx_ecc_get_status(struct spinand_device *spinand,
>   				      u8 status)
>   {
>   	struct nand_device *nand = spinand_to_nand(spinand);
> @@ -94,15 +94,66 @@ static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
>   }
>   
>   static const struct spinand_info toshiba_spinand_table[] = {
> -	SPINAND_INFO("TC58CVG2S0H", 0xCD,
> +	/* 3.3V 1Gb */
> +	SPINAND_INFO("TC58CVG0S3", 0xC2,
> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 3.3V 2Gb */
> +	SPINAND_INFO("TC58CVG1S3", 0xCB,
> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 3.3V 4Gb */
> +	SPINAND_INFO("TC58CVG2S0", 0xCD,
> +		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 1Gb */
> +	SPINAND_INFO("TC58CYG0S3", 0xB2,
> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 2Gb */
> +	SPINAND_INFO("TC58CYG1S3", 0xBB,
> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 4Gb */
> +	SPINAND_INFO("TC58CYG2S0", 0xBD,
>   		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>   		     NAND_ECCREQ(8, 512),
>   		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>   					      &write_cache_variants,
>   					      &update_cache_variants),
> -		     SPINAND_HAS_QE_BIT,

You're removing the SPINAND_HAS_QE_BIT. I just double checked one of the 
datasheets and it seems like there is indeed no QE bit in the 
configuration register. I wonder where I got that information from. 
Maybe I was looking at the wrong datasheet!?

Anyway, I will try to do a quick test on my device with TC58CVG2S0 and 
let you now about the results.

Thanks,
Frieder

> -		     SPINAND_ECCINFO(&tc58cvg2s0h_ooblayout,
> -				     tc58cvg2s0h_ecc_get_status)),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
>   };
>   
>   static int toshiba_spinand_detect(struct spinand_device *spinand)
> 

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

* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16 10:42 ` Schrempf Frieder
@ 2019-01-16 12:55   ` Schrempf Frieder
  0 siblings, 0 replies; 7+ messages in thread
From: Schrempf Frieder @ 2019-01-16 12:55 UTC (permalink / raw)
  To: Yoshio Furuyama, bbrezillon, miquel.raynal
  Cc: richard, dwmw2, computersforpeace, marek.vasut, peron.clem,
	linux-mtd, linux-kernel

On 16.01.19 11:42, Frieder Schrempf wrote:
> Hi Yoshio,
> 
> On 16.01.19 06:53, Yoshio Furuyama wrote:
>> Add device table for Toshiba Memory products.
>> Also, generalize OOB layout structure and function names.
>>
>> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>
>>
>> ---
>>   drivers/mtd/nand/spi/toshiba.c |   79 
>> +++++++++++++++++++++++++++++++++-------
>>   1 file changed, 65 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/mtd/nand/spi/toshiba.c 
>> b/drivers/mtd/nand/spi/toshiba.c
>> index 0812655..0916962 100644
>> --- a/drivers/mtd/nand/spi/toshiba.c
>> +++ b/drivers/mtd/nand/spi/toshiba.c
>> @@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
>>   static SPINAND_OP_VARIANTS(update_cache_variants,
>>           SPINAND_PROG_LOAD(false, 0, NULL, 0));
>> -static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
>> +static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
>>                        struct mtd_oob_region *region)
>>   {
>> -    if (section > 7)
>> +    if (section > 0)
>>           return -ERANGE;
>> -    region->offset = 128 + 16 * section;
>> -    region->length = 16;
>> +    region->offset = mtd->oobsize / 2;
>> +    region->length = mtd->oobsize / 2;
>>       return 0;
>>   }
>> -static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>> +static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
>>                         struct mtd_oob_region *region)
>>   {
>>       if (section > 0)
>> @@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct 
>> mtd_info *mtd, int section,
>>       /* 2 bytes reserved for BBM */
>>       region->offset = 2;
>> -    region->length = 126;
>> +    region->length = mtd->oobsize / 2 - 2;
>>       return 0;
>>   }
>> -static const struct mtd_ooblayout_ops tc58cvg2s0h_ooblayout = {
>> -    .ecc = tc58cvg2s0h_ooblayout_ecc,
>> -    .free = tc58cvg2s0h_ooblayout_free,
>> +static const struct mtd_ooblayout_ops tc58cxgxsx_ooblayout = {
>> +    .ecc = tc58cxgxsx_ooblayout_ecc,
>> +    .free = tc58cxgxsx_ooblayout_free,
>>   };
>> -static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
>> +static int tc58cxgxsx_ecc_get_status(struct spinand_device *spinand,
>>                         u8 status)
>>   {
>>       struct nand_device *nand = spinand_to_nand(spinand);
>> @@ -94,15 +94,66 @@ static int tc58cvg2s0h_ecc_get_status(struct 
>> spinand_device *spinand,
>>   }
>>   static const struct spinand_info toshiba_spinand_table[] = {
>> -    SPINAND_INFO("TC58CVG2S0H", 0xCD,
>> +    /* 3.3V 1Gb */
>> +    SPINAND_INFO("TC58CVG0S3", 0xC2,
>> +             NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
>> +             NAND_ECCREQ(8, 512),
>> +             SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +                          &write_cache_variants,
>> +                          &update_cache_variants),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>> +    /* 3.3V 2Gb */
>> +    SPINAND_INFO("TC58CVG1S3", 0xCB,
>> +             NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
>> +             NAND_ECCREQ(8, 512),
>> +             SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +                          &write_cache_variants,
>> +                          &update_cache_variants),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>> +    /* 3.3V 4Gb */
>> +    SPINAND_INFO("TC58CVG2S0", 0xCD,
>> +             NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>> +             NAND_ECCREQ(8, 512),
>> +             SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +                          &write_cache_variants,
>> +                          &update_cache_variants),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>> +    /* 1.8V 1Gb */
>> +    SPINAND_INFO("TC58CYG0S3", 0xB2,
>> +             NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
>> +             NAND_ECCREQ(8, 512),
>> +             SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +                          &write_cache_variants,
>> +                          &update_cache_variants),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>> +    /* 1.8V 2Gb */
>> +    SPINAND_INFO("TC58CYG1S3", 0xBB,
>> +             NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
>> +             NAND_ECCREQ(8, 512),
>> +             SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>> +                          &write_cache_variants,
>> +                          &update_cache_variants),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>> +    /* 1.8V 4Gb */
>> +    SPINAND_INFO("TC58CYG2S0", 0xBD,
>>                NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>>                NAND_ECCREQ(8, 512),
>>                SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>>                             &write_cache_variants,
>>                             &update_cache_variants),
>> -             SPINAND_HAS_QE_BIT,
> 
> You're removing the SPINAND_HAS_QE_BIT. I just double checked one of the 
> datasheets and it seems like there is indeed no QE bit in the 
> configuration register. I wonder where I got that information from. 
> Maybe I was looking at the wrong datasheet!?
> 
> Anyway, I will try to do a quick test on my device with TC58CVG2S0 and 
> let you now about the results.

As expected, it seems to work fine without setting the QE bit. The bit 
is marked as reserved in the datasheet, so it probably does not hurt 
much that the driver queued for 5.0 sets it.

> 
> Thanks,
> Frieder
> 
>> -             SPINAND_ECCINFO(&tc58cvg2s0h_ooblayout,
>> -                     tc58cvg2s0h_ecc_get_status)),
>> +             0,
>> +             SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
>> +                     tc58cxgxsx_ecc_get_status)),
>>   };
>>   static int toshiba_spinand_detect(struct spinand_device *spinand)
>>

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

* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16  5:53 [PATCH] mtd: spinand: Add support for all Toshiba Memory products Yoshio Furuyama
  2019-01-16 10:04 ` Miquel Raynal
  2019-01-16 10:42 ` Schrempf Frieder
@ 2019-01-16 12:58 ` Schrempf Frieder
  2018-12-25  3:25   ` posting test
  2019-01-25 12:35 ` Miquel Raynal
  3 siblings, 1 reply; 7+ messages in thread
From: Schrempf Frieder @ 2019-01-16 12:58 UTC (permalink / raw)
  To: Yoshio Furuyama, bbrezillon, miquel.raynal
  Cc: richard, dwmw2, computersforpeace, marek.vasut, peron.clem,
	linux-mtd, linux-kernel

On 16.01.19 06:53, Yoshio Furuyama wrote:
> Add device table for Toshiba Memory products.
> Also, generalize OOB layout structure and function names.
> 
> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>

Reviewed-by: Frieder Schrempf <frieder.schrempf@kontron.de>

> 
> ---
>   drivers/mtd/nand/spi/toshiba.c |   79 +++++++++++++++++++++++++++++++++-------
>   1 file changed, 65 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/mtd/nand/spi/toshiba.c b/drivers/mtd/nand/spi/toshiba.c
> index 0812655..0916962 100644
> --- a/drivers/mtd/nand/spi/toshiba.c
> +++ b/drivers/mtd/nand/spi/toshiba.c
> @@ -25,19 +25,19 @@ static SPINAND_OP_VARIANTS(write_cache_variants,
>   static SPINAND_OP_VARIANTS(update_cache_variants,
>   		SPINAND_PROG_LOAD(false, 0, NULL, 0));
>   
> -static int tc58cvg2s0h_ooblayout_ecc(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_ecc(struct mtd_info *mtd, int section,
>   				     struct mtd_oob_region *region)
>   {
> -	if (section > 7)
> +	if (section > 0)
>   		return -ERANGE;
>   
> -	region->offset = 128 + 16 * section;
> -	region->length = 16;
> +	region->offset = mtd->oobsize / 2;
> +	region->length = mtd->oobsize / 2;
>   
>   	return 0;
>   }
>   
> -static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
> +static int tc58cxgxsx_ooblayout_free(struct mtd_info *mtd, int section,
>   				      struct mtd_oob_region *region)
>   {
>   	if (section > 0)
> @@ -45,17 +45,17 @@ static int tc58cvg2s0h_ooblayout_free(struct mtd_info *mtd, int section,
>   
>   	/* 2 bytes reserved for BBM */
>   	region->offset = 2;
> -	region->length = 126;
> +	region->length = mtd->oobsize / 2 - 2;
>   
>   	return 0;
>   }
>   
> -static const struct mtd_ooblayout_ops tc58cvg2s0h_ooblayout = {
> -	.ecc = tc58cvg2s0h_ooblayout_ecc,
> -	.free = tc58cvg2s0h_ooblayout_free,
> +static const struct mtd_ooblayout_ops tc58cxgxsx_ooblayout = {
> +	.ecc = tc58cxgxsx_ooblayout_ecc,
> +	.free = tc58cxgxsx_ooblayout_free,
>   };
>   
> -static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
> +static int tc58cxgxsx_ecc_get_status(struct spinand_device *spinand,
>   				      u8 status)
>   {
>   	struct nand_device *nand = spinand_to_nand(spinand);
> @@ -94,15 +94,66 @@ static int tc58cvg2s0h_ecc_get_status(struct spinand_device *spinand,
>   }
>   
>   static const struct spinand_info toshiba_spinand_table[] = {
> -	SPINAND_INFO("TC58CVG2S0H", 0xCD,
> +	/* 3.3V 1Gb */
> +	SPINAND_INFO("TC58CVG0S3", 0xC2,
> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 3.3V 2Gb */
> +	SPINAND_INFO("TC58CVG1S3", 0xCB,
> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 3.3V 4Gb */
> +	SPINAND_INFO("TC58CVG2S0", 0xCD,
> +		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 1Gb */
> +	SPINAND_INFO("TC58CYG0S3", 0xB2,
> +		     NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 2Gb */
> +	SPINAND_INFO("TC58CYG1S3", 0xBB,
> +		     NAND_MEMORG(1, 2048, 128, 64, 2048, 1, 1, 1),
> +		     NAND_ECCREQ(8, 512),
> +		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
> +					      &write_cache_variants,
> +					      &update_cache_variants),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
> +	/* 1.8V 4Gb */
> +	SPINAND_INFO("TC58CYG2S0", 0xBD,
>   		     NAND_MEMORG(1, 4096, 256, 64, 2048, 1, 1, 1),
>   		     NAND_ECCREQ(8, 512),
>   		     SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
>   					      &write_cache_variants,
>   					      &update_cache_variants),
> -		     SPINAND_HAS_QE_BIT,
> -		     SPINAND_ECCINFO(&tc58cvg2s0h_ooblayout,
> -				     tc58cvg2s0h_ecc_get_status)),
> +		     0,
> +		     SPINAND_ECCINFO(&tc58cxgxsx_ooblayout,
> +				     tc58cxgxsx_ecc_get_status)),
>   };
>   
>   static int toshiba_spinand_detect(struct spinand_device *spinand)
> 

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

* Re: [PATCH] mtd: spinand: Add support for all Toshiba Memory products
  2019-01-16  5:53 [PATCH] mtd: spinand: Add support for all Toshiba Memory products Yoshio Furuyama
                   ` (2 preceding siblings ...)
  2019-01-16 12:58 ` Schrempf Frieder
@ 2019-01-25 12:35 ` Miquel Raynal
  3 siblings, 0 replies; 7+ messages in thread
From: Miquel Raynal @ 2019-01-25 12:35 UTC (permalink / raw)
  To: Yoshio Furuyama
  Cc: bbrezillon, richard, dwmw2, computersforpeace, marek.vasut,
	frieder.schrempf, peron.clem, linux-mtd, linux-kernel

Hi Yoshio,

Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp> wrote on Wed, 16
Jan 2019 14:53:19 +0900:

> Add device table for Toshiba Memory products.
> Also, generalize OOB layout structure and function names.
> 
> Signed-off-by: Yoshio Furuyama <tmcmc-mb-yfuruyama7@ml.toshiba.co.jp>
> 
> ---

Applied to nand/next with the mathematical operations enclosed in
braces as discussed:

-	region->length = mtd->oobsize / 2 - 2;  
+	region->length = (mtd->oobsize / 2) - 2;  


Thanks,
Miquèl

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

end of thread, other threads:[~2019-01-25 12:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-16  5:53 [PATCH] mtd: spinand: Add support for all Toshiba Memory products Yoshio Furuyama
2019-01-16 10:04 ` Miquel Raynal
2019-01-16 10:42 ` Schrempf Frieder
2019-01-16 12:55   ` Schrempf Frieder
2019-01-16 12:58 ` Schrempf Frieder
2018-12-25  3:25   ` posting test
2019-01-25 12:35 ` Miquel Raynal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).