diff mbox series

[v1,1/1] mtd: spi-nor: Add some M45PEx ids

Message ID 20210629150846.21547-2-hongweiz@ami.com
State Changes Requested
Delegated to: Ambarus Tudor
Headers show
Series mtd: spi-nor: Add some M45PEx ids | expand

Commit Message

Hongwei Zhang June 29, 2021, 3:08 p.m. UTC
Add some Micron M45PEx flash memeories into the IDs table.

Fixes: dd1e9367157f900616f (ARM: dts: everest: Add phase corrections for
eMMC)

Signed-off-by: Hongwei Zhang <hongweiz@ami.com>
---
 drivers/mtd/spi-nor/micron-st.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Michael Walle June 30, 2021, 1:56 p.m. UTC | #1
Hi Hongwei,

Am 2021-06-29 17:08, schrieb Hongwei Zhang:
> Add some Micron M45PEx flash memeories into the IDs table.

Did you test all these flashes?

> Fixes: dd1e9367157f900616f (ARM: dts: everest: Add phase corrections 
> for
> eMMC)

Bogus Fixes tag. First, I cannot find this commit id, which tree is
that? Secondly, adding new flash ids don't fix anything, esp not
something related to eMMC.

> 
> Signed-off-by: Hongwei Zhang <hongweiz@ami.com>
> ---
>  drivers/mtd/spi-nor/micron-st.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/mtd/spi-nor/micron-st.c 
> b/drivers/mtd/spi-nor/micron-st.c
> index ef3695080710..379b14e339ff 100644
> --- a/drivers/mtd/spi-nor/micron-st.c
> +++ b/drivers/mtd/spi-nor/micron-st.c
> @@ -95,8 +95,12 @@ static const struct flash_info st_parts[] = {
>  	{ "m25p128-nonjedec", INFO(0, 0, 256 * 1024,  64, 0) },
> 
>  	{ "m45pe10", INFO(0x204011,  0, 64 * 1024,    2, 0) },
> +	{ "m45pe20", INFO(0x204012,  0, 64 * 1024,    4, 0) },
> +	{ "m45pe40", INFO(0x204013,  0, 64 * 1024,    8, 0) },
>  	{ "m45pe80", INFO(0x204014,  0, 64 * 1024,   16, 0) },
>  	{ "m45pe16", INFO(0x204015,  0, 64 * 1024,   32, 0) },
> +	{ "m45pe32", INFO(0x204016,  0, 64 * 1024,   64, 0) },
> +	{ "m45pe64", INFO(0x204017,  0, 64 * 1024,  128, 0) },
> 
>  	{ "m25pe20", INFO(0x208012,  0, 64 * 1024,  4,       0) },
>  	{ "m25pe80", INFO(0x208014,  0, 64 * 1024, 16,       0) },
Hongwei Zhang June 30, 2021, 6:20 p.m. UTC | #2
Hi Michael,

>Subject:	[EXTERNAL] Re: [PATCH v1 1/1] mtd: spi-nor: Add some M45PEx ids
>
>Hi Hongwei,
>
>Am 2021-06-29 17:08, schrieb Hongwei Zhang:
>> Add some Micron M45PEx flash memeories into the IDs table.
>
>Did you test all these flashes?
>
No, the patch was added in porting drivers related to AST2600 EVB.

>> Fixes: dd1e9367157f900616f (ARM: dts: everest: Add phase corrections
>> for
>> eMMC)
>
>Bogus Fixes tag. First, I cannot find this commit id, which tree is
>that? Secondly, adding new flash ids don't fix anything, esp not
>something related to eMMC.
>
Sorry for the confusion, I thought Fixes tag could be also used for referencing
the revision base for the patch to aplly on.
I used dev-5.10 branch from https://github.com/openbmc/linux.git , should I
use a different repository?

Thanks,
--Hongwei
>>
>> Signed-off-by: Hongwei Zhang <hongweiz@ami.com>
>> ---
>>  drivers/mtd/spi-nor/micron-st.c | 4 ++++
>>  1 file changed, 4 insertions(+)
>>
>> diff --git a/drivers/mtd/spi-nor/micron-st.c
>> b/drivers/mtd/spi-nor/micron-st.c
>> index ef3695080710..379b14e339ff 100644
>> --- a/drivers/mtd/spi-nor/micron-st.c
>> +++ b/drivers/mtd/spi-nor/micron-st.c
>> @@ -95,8 +95,12 @@ static const struct flash_info st_parts[] = {
>>       { "m25p128-nonjedec", INFO(0, 0, 256 * 1024,  64, 0) },
>>
>>       { "m45pe10", INFO(0x204011,  0, 64 * 1024,    2, 0) },
>> +     { "m45pe20", INFO(0x204012,  0, 64 * 1024,    4, 0) },
>> +     { "m45pe40", INFO(0x204013,  0, 64 * 1024,    8, 0) },
>>       { "m45pe80", INFO(0x204014,  0, 64 * 1024,   16, 0) },
>>       { "m45pe16", INFO(0x204015,  0, 64 * 1024,   32, 0) },
>> +     { "m45pe32", INFO(0x204016,  0, 64 * 1024,   64, 0) },
>> +     { "m45pe64", INFO(0x204017,  0, 64 * 1024,  128, 0) },
>>
>>       { "m25pe20", INFO(0x208012,  0, 64 * 1024,  4,       0) },
>>       { "m25pe80", INFO(0x208014,  0, 64 * 1024, 16,       0) },
>
>--
>-michael
>
Michael Walle July 1, 2021, 10:02 a.m. UTC | #3
Hi Hongwei,

Am 2021-06-30 20:20, schrieb Hongwei Zhang:
>> Am 2021-06-29 17:08, schrieb Hongwei Zhang:
>>> Add some Micron M45PEx flash memeories into the IDs table.
>> 
>> Did you test all these flashes?
>> 
> No, the patch was added in porting drivers related to AST2600 EVB.

Please note, that all flashes which are added must be tested.

>>> Fixes: dd1e9367157f900616f (ARM: dts: everest: Add phase corrections
>>> for
>>> eMMC)
>> 
>> Bogus Fixes tag. First, I cannot find this commit id, which tree is
>> that? Secondly, adding new flash ids don't fix anything, esp not
>> something related to eMMC.
>> 
> Sorry for the confusion, I thought Fixes tag could be also used for 
> referencing
> the revision base for the patch to aplly on.
> I used dev-5.10 branch from https://github.com/openbmc/linux.git , 
> should I
> use a different repository?

AFAIK commits in fixes tags must be relative to Linus Torvalds' tree
(or a subtree must not rebase, like the networking trees, which means
they will end up in Torvalds' tree).

Anyway, this is not a fix and therefore there must be no Fixes: tag.

-michael
Hongwei Zhang July 1, 2021, 3:18 p.m. UTC | #4
Hi Michael,

Ok, I will separately resubmit a revised patch with update later.

Regards,
--Hongwei

>Subject:	[EXTERNAL] Re: [PATCH v1 1/1] mtd: spi-nor: Add some M45PEx ids
>
>>> Am 2021-06-29 17:08, schrieb Hongwei Zhang:
>>>> Add some Micron M45PEx flash memeories into the IDs table.
>>>
>>> Did you test all these flashes?
>>>
>> No, the patch was added in porting drivers related to AST2600 EVB.
>
>Please note, that all flashes which are added must be tested.
>
>>>> Fixes: dd1e9367157f900616f (ARM: dts: everest: Add phase corrections 
>>>> for
>>>> eMMC)
>>>
>>> Bogus Fixes tag. First, I cannot find this commit id, which tree is 
>>> that? Secondly, adding new flash ids don't fix anything, esp not 
>>> something related to eMMC.
>>>
>> Sorry for the confusion, I thought Fixes tag could be also used for 
>> referencing the revision base for the patch to aplly on.
>> I used dev-5.10 branch from 
>> https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith
>> 
>ub.com%2Fopenbmc%2Flinux.git&amp;data=04%7C01%7Chongweiz%40ami.com%7C72a7d2569f6a4cb
>629fe08d93c775f8a%7C27e97857e15f486cb58e86c2b3040f93%7C1%7C0%7C637607305682606148%7
>CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0
>%3D%7C1000&amp;sdata=h%2BoFfg9m0udXdQgb85oq0NKEIcL1DFNha186lP0HwG8%3D&amp;reserve
>d=0 , should I use a different repository?
>
>AFAIK commits in fixes tags must be relative to Linus Torvalds' tree (or a subtree must not rebase, like 
>the networking trees, which means they will end up in Torvalds' tree).
>
>Anyway, this is not a fix and therefore there must be no Fixes: tag.
>
>-michael
diff mbox series

Patch

diff --git a/drivers/mtd/spi-nor/micron-st.c b/drivers/mtd/spi-nor/micron-st.c
index ef3695080710..379b14e339ff 100644
--- a/drivers/mtd/spi-nor/micron-st.c
+++ b/drivers/mtd/spi-nor/micron-st.c
@@ -95,8 +95,12 @@  static const struct flash_info st_parts[] = {
 	{ "m25p128-nonjedec", INFO(0, 0, 256 * 1024,  64, 0) },
 
 	{ "m45pe10", INFO(0x204011,  0, 64 * 1024,    2, 0) },
+	{ "m45pe20", INFO(0x204012,  0, 64 * 1024,    4, 0) },
+	{ "m45pe40", INFO(0x204013,  0, 64 * 1024,    8, 0) },
 	{ "m45pe80", INFO(0x204014,  0, 64 * 1024,   16, 0) },
 	{ "m45pe16", INFO(0x204015,  0, 64 * 1024,   32, 0) },
+	{ "m45pe32", INFO(0x204016,  0, 64 * 1024,   64, 0) },
+	{ "m45pe64", INFO(0x204017,  0, 64 * 1024,  128, 0) },
 
 	{ "m25pe20", INFO(0x208012,  0, 64 * 1024,  4,       0) },
 	{ "m25pe80", INFO(0x208014,  0, 64 * 1024, 16,       0) },