From: Takahiro Kuwano <tkuw584924@gmail.com>
To: Tudor Ambarus <tudor.ambarus@linaro.org>, Takahiro.Kuwano@infineon.com
Cc: linux-mtd@lists.infradead.org, pratyush@kernel.org,
michael@walle.cc, miquel.raynal@bootlin.com, richard@nod.at,
Bacem.Daassi@infineon.com, stable@vger.kernel.org
Subject: Re: [PATCH 1/2] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register
Date: Wed, 18 Jan 2023 16:34:31 +0900 [thread overview]
Message-ID: <30f99da3-6da7-e732-df5b-e8d61c4cde93@gmail.com> (raw)
In-Reply-To: <20230110164703.83413-1-tudor.ambarus@linaro.org>
On 1/11/2023 1:47 AM, Tudor Ambarus wrote:
> CFR5[6] is reserved bit and must be always 1. Set it to comply with flash
> requirements. While fixing SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_{EN, DS}
> definition, stop using magic numbers and describe the missing bit fields
> in CFR5 register. This is useful for both readability and future possible
> addition of Octal STR mode support.
>
> Fixes: c3266af101f2 ("mtd: spi-nor: spansion: add support for Cypress Semper flash")
> Cc: stable@vger.kernel.org
> Reported-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
> ---
> drivers/mtd/spi-nor/spansion.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/spi-nor/spansion.c b/drivers/mtd/spi-nor/spansion.c
> index b621cdfd506f..07fe0f6fdfe3 100644
> --- a/drivers/mtd/spi-nor/spansion.c
> +++ b/drivers/mtd/spi-nor/spansion.c
> @@ -21,8 +21,13 @@
> #define SPINOR_REG_CYPRESS_CFR3V 0x00800004
> #define SPINOR_REG_CYPRESS_CFR3V_PGSZ BIT(4) /* Page size. */
> #define SPINOR_REG_CYPRESS_CFR5V 0x00800006
> -#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_EN 0x3
> -#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_DS 0
> +#define SPINOR_REG_CYPRESS_CFR5_BIT6 BIT(6)
> +#define SPINOR_REG_CYPRESS_CFR5_DDR BIT(1)
> +#define SPINOR_REG_CYPRESS_CFR5_OPI BIT(0)
> +#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_EN \
> + (SPINOR_REG_CYPRESS_CFR5_BIT6 | SPINOR_REG_CYPRESS_CFR5_DDR | \
> + SPINOR_REG_CYPRESS_CFR5_OPI)
> +#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_DS SPINOR_REG_CYPRESS_CFR5_BIT6
> #define SPINOR_OP_CYPRESS_RD_FAST 0xee
>
> /* Cypress SPI NOR flash operations. */
Thank you, Tudor!
I will fix u-boot in the same manner.
Takahiro
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Takahiro Kuwano <tkuw584924@gmail.com>
To: Tudor Ambarus <tudor.ambarus@linaro.org>, Takahiro.Kuwano@infineon.com
Cc: linux-mtd@lists.infradead.org, pratyush@kernel.org,
michael@walle.cc, miquel.raynal@bootlin.com, richard@nod.at,
Bacem.Daassi@infineon.com, stable@vger.kernel.org
Subject: Re: [PATCH 1/2] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register
Date: Wed, 18 Jan 2023 16:34:31 +0900 [thread overview]
Message-ID: <30f99da3-6da7-e732-df5b-e8d61c4cde93@gmail.com> (raw)
In-Reply-To: <20230110164703.83413-1-tudor.ambarus@linaro.org>
On 1/11/2023 1:47 AM, Tudor Ambarus wrote:
> CFR5[6] is reserved bit and must be always 1. Set it to comply with flash
> requirements. While fixing SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_{EN, DS}
> definition, stop using magic numbers and describe the missing bit fields
> in CFR5 register. This is useful for both readability and future possible
> addition of Octal STR mode support.
>
> Fixes: c3266af101f2 ("mtd: spi-nor: spansion: add support for Cypress Semper flash")
> Cc: stable@vger.kernel.org
> Reported-by: Takahiro Kuwano <Takahiro.Kuwano@infineon.com>
> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
> ---
> drivers/mtd/spi-nor/spansion.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mtd/spi-nor/spansion.c b/drivers/mtd/spi-nor/spansion.c
> index b621cdfd506f..07fe0f6fdfe3 100644
> --- a/drivers/mtd/spi-nor/spansion.c
> +++ b/drivers/mtd/spi-nor/spansion.c
> @@ -21,8 +21,13 @@
> #define SPINOR_REG_CYPRESS_CFR3V 0x00800004
> #define SPINOR_REG_CYPRESS_CFR3V_PGSZ BIT(4) /* Page size. */
> #define SPINOR_REG_CYPRESS_CFR5V 0x00800006
> -#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_EN 0x3
> -#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_DS 0
> +#define SPINOR_REG_CYPRESS_CFR5_BIT6 BIT(6)
> +#define SPINOR_REG_CYPRESS_CFR5_DDR BIT(1)
> +#define SPINOR_REG_CYPRESS_CFR5_OPI BIT(0)
> +#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_EN \
> + (SPINOR_REG_CYPRESS_CFR5_BIT6 | SPINOR_REG_CYPRESS_CFR5_DDR | \
> + SPINOR_REG_CYPRESS_CFR5_OPI)
> +#define SPINOR_REG_CYPRESS_CFR5V_OCT_DTR_DS SPINOR_REG_CYPRESS_CFR5_BIT6
> #define SPINOR_OP_CYPRESS_RD_FAST 0xee
>
> /* Cypress SPI NOR flash operations. */
Thank you, Tudor!
I will fix u-boot in the same manner.
Takahiro
next prev parent reply other threads:[~2023-01-18 7:40 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-06 3:06 [PATCH] mtd: spi-nor: spansion: Keep CFR5V[6] as 1 in Octal DTR enable/disable tkuw584924
2023-01-06 3:06 ` tkuw584924
2023-01-06 9:47 ` Tudor Ambarus
2023-01-06 9:47 ` Tudor Ambarus
2023-01-06 9:55 ` Tudor Ambarus
2023-01-06 9:55 ` Tudor Ambarus
2023-01-10 4:39 ` Takahiro Kuwano
2023-01-10 4:39 ` Takahiro Kuwano
2023-01-10 16:47 ` [PATCH 1/2] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register Tudor Ambarus
2023-01-10 16:47 ` Tudor Ambarus
2023-01-10 16:47 ` [PATCH 2/2] mtd: spi-nor: spansion: Make CFRx reg fields generic Tudor Ambarus
2023-01-11 6:30 ` Dhruva Gole
2023-01-18 7:24 ` Takahiro Kuwano
2023-01-23 14:38 ` Pratyush Yadav
2023-01-11 6:28 ` [PATCH 1/2] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register Dhruva Gole
2023-01-11 6:28 ` Dhruva Gole
2023-01-18 7:34 ` Takahiro Kuwano [this message]
2023-01-18 7:34 ` Takahiro Kuwano
2023-01-23 14:37 ` Pratyush Yadav
2023-01-23 14:37 ` Pratyush Yadav
2023-01-23 16:31 ` Dhruva Gole
2023-01-23 16:31 ` Dhruva Gole
2023-01-24 10:43 ` Pratyush Yadav
2023-01-24 10:43 ` Pratyush Yadav
2023-01-24 11:12 ` Dhruva Gole
2023-01-24 11:12 ` Dhruva Gole
2023-01-24 12:03 ` Pratyush Yadav
2023-01-24 12:03 ` Pratyush Yadav
2023-02-01 7:14 ` Takahiro Kuwano
2023-02-01 7:14 ` Takahiro Kuwano
2023-01-31 9:00 ` Tudor Ambarus
2023-01-31 9:00 ` Tudor Ambarus
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=30f99da3-6da7-e732-df5b-e8d61c4cde93@gmail.com \
--to=tkuw584924@gmail.com \
--cc=Bacem.Daassi@infineon.com \
--cc=Takahiro.Kuwano@infineon.com \
--cc=linux-mtd@lists.infradead.org \
--cc=michael@walle.cc \
--cc=miquel.raynal@bootlin.com \
--cc=pratyush@kernel.org \
--cc=richard@nod.at \
--cc=stable@vger.kernel.org \
--cc=tudor.ambarus@linaro.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.