* [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips
@ 2011-02-23 11:28 Michael Trimarchi
2011-02-23 11:42 ` Albert ARIBAUD
2011-02-23 16:32 ` Scott Wood
0 siblings, 2 replies; 5+ messages in thread
From: Michael Trimarchi @ 2011-02-23 11:28 UTC (permalink / raw)
To: u-boot
Change since V1:
- add a better description
Signed-off-by: Michael Trimarchi <michael@evidence.eu.com>
Cc: Scott Wood <scottwood@freescale.com>
---
drivers/mtd/nand/atmel_nand.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c
index ab8bbb3..c167f77 100644
--- a/drivers/mtd/nand/atmel_nand.c
+++ b/drivers/mtd/nand/atmel_nand.c
@@ -249,8 +249,18 @@ static void at91_nand_hwcontrol(struct mtd_info *mtd,
if (ctrl & NAND_ALE)
IO_ADDR_W |= CONFIG_SYS_NAND_MASK_ALE;
+ /*
+ * atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN
+ * If NCE is hooked up to NCS3, we don't need to (and can't)
+ * explicitly set the state of the NCE pin. Instead, the
+ * controller asserts it automatically as part of a
+ * command/data access. Only "CE don't care"-type NAND chips
+ * can be used in this manner.
+ */
+#ifdef CONFIG_SYS_NAND_ENABLE_PIN
at91_set_gpio_value(CONFIG_SYS_NAND_ENABLE_PIN,
!(ctrl & NAND_NCE));
+#endif
this->IO_ADDR_W = (void *) IO_ADDR_W;
}
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips
2011-02-23 11:28 [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips Michael Trimarchi
@ 2011-02-23 11:42 ` Albert ARIBAUD
2011-02-23 12:10 ` Michael Trimarchi
2011-02-23 16:32 ` Scott Wood
1 sibling, 1 reply; 5+ messages in thread
From: Albert ARIBAUD @ 2011-02-23 11:42 UTC (permalink / raw)
To: u-boot
Hi Michael,
Le 23/02/2011 12:28, Michael Trimarchi a ?crit :
> Change since V1:
>
> - add a better description
History should not be put above the '---' cut line; it should be below.
> Signed-off-by: Michael Trimarchi<michael@evidence.eu.com>
> Cc: Scott Wood<scottwood@freescale.com>
> ---
> drivers/mtd/nand/atmel_nand.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>[...]
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips
2011-02-23 11:42 ` Albert ARIBAUD
@ 2011-02-23 12:10 ` Michael Trimarchi
2011-02-23 12:46 ` Wolfgang Denk
0 siblings, 1 reply; 5+ messages in thread
From: Michael Trimarchi @ 2011-02-23 12:10 UTC (permalink / raw)
To: u-boot
Hi,
On 02/23/2011 12:42 PM, Albert ARIBAUD wrote:
> Hi Michael,
>
> Le 23/02/2011 12:28, Michael Trimarchi a ?crit :
>> Change since V1:
>>
>> - add a better description
>
> History should not be put above the '---' cut line; it should be below.
>
>> Signed-off-by: Michael Trimarchi<michael@evidence.eu.com>
>> Cc: Scott Wood<scottwood@freescale.com>
>> ---
>> drivers/mtd/nand/atmel_nand.c | 10 ++++++++++
>> 1 files changed, 10 insertions(+), 0 deletions(-)
>> [...]
>
I will edit the text and resend with mutt. do I need to change again revision?
Michael Trimarchi
> Amicalement,
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips
2011-02-23 12:10 ` Michael Trimarchi
@ 2011-02-23 12:46 ` Wolfgang Denk
0 siblings, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2011-02-23 12:46 UTC (permalink / raw)
To: u-boot
Dear Michael Trimarchi,
In message <4D64F927.1000200@gandalf.sssup.it> you wrote:
>
> I will edit the text and resend with mutt. do I need to change again revision?
Yes, please, as it's a new commit (commit message has changed).
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Houston, Tranquillity Base here. The Eagle has landed.
-- Neil Armstrong
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips
2011-02-23 11:28 [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips Michael Trimarchi
2011-02-23 11:42 ` Albert ARIBAUD
@ 2011-02-23 16:32 ` Scott Wood
1 sibling, 0 replies; 5+ messages in thread
From: Scott Wood @ 2011-02-23 16:32 UTC (permalink / raw)
To: u-boot
On Wed, 23 Feb 2011 12:28:34 +0100
Michael Trimarchi <trimarchi@gandalf.sssup.it> wrote:
> Change since V1:
>
> - add a better description
This part does not go in the changelog -- it should be below the --- line.
> Signed-off-by: Michael Trimarchi <michael@evidence.eu.com>
> Cc: Scott Wood <scottwood@freescale.com>
> ---
> drivers/mtd/nand/atmel_nand.c | 10 ++++++++++
> 1 files changed, 10 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c
> index ab8bbb3..c167f77 100644
> --- a/drivers/mtd/nand/atmel_nand.c
> +++ b/drivers/mtd/nand/atmel_nand.c
> @@ -249,8 +249,18 @@ static void at91_nand_hwcontrol(struct mtd_info *mtd,
> if (ctrl & NAND_ALE)
> IO_ADDR_W |= CONFIG_SYS_NAND_MASK_ALE;
>
> + /*
> + * atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN
> + * If NCE is hooked up to NCS3, we don't need to (and can't)
> + * explicitly set the state of the NCE pin. Instead, the
> + * controller asserts it automatically as part of a
> + * command/data access. Only "CE don't care"-type NAND chips
> + * can be used in this manner.
> + */
This was meant for the changelog, not the code. For the code, it seems
reasonably self-explanatory that if you don't have
CONFIG_SYS_NAND_ENABLE_PIN, you don't use it.
If you want to put a short comment in the code about this situation, fine
(though it really belongs in a README that documents
CONFIG_SYS_NAND_ENABLE_PIN instead), but the text above should go in the git
changelog.
-Scott
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-02-23 16:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-23 11:28 [U-Boot] [PATCH V2] This patch fix the usage of the "CE don't care"-type NAND chips Michael Trimarchi
2011-02-23 11:42 ` Albert ARIBAUD
2011-02-23 12:10 ` Michael Trimarchi
2011-02-23 12:46 ` Wolfgang Denk
2011-02-23 16:32 ` Scott Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox