All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [RFC PATCH v1] kirkwood_nand: claim MPP pins on the fly
@ 2016-01-15  4:22 Chris Packham
  2016-01-22 20:11 ` Scott Wood
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Packham @ 2016-01-15  4:22 UTC (permalink / raw)
  To: u-boot

Claim the MPP pins for the NAND flash controller only when it's actually
being used. This allows the pins to be shared with the SPI interface
which already supports an equivalent on-access MPP reconfiguration.

Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
I haven't wrapped this with a configuration option because I think it
should be safe to enable by default. It will either re-apply the same
MPP configuration that has already been done in the board init or put
the MPP pins into the correct mode to access NAND.

I've only got access to one kirkwood based board with NAND flash so I'd
appreciate some feedback from someone with access to a few different
boards.

From the datasheets I have access to it looks like there is only one
possible MPP configuration for NF_IO[0-7] so that is what I've
implemented. I'm not aware of anything using this driver that needs a
different MPP config.

 drivers/mtd/nand/kirkwood_nand.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/drivers/mtd/nand/kirkwood_nand.c b/drivers/mtd/nand/kirkwood_nand.c
index 4fc34d6..ff81212 100644
--- a/drivers/mtd/nand/kirkwood_nand.c
+++ b/drivers/mtd/nand/kirkwood_nand.c
@@ -9,6 +9,7 @@
 #include <common.h>
 #include <asm/io.h>
 #include <asm/arch/soc.h>
+#include <asm/arch/mpp.h>
 #include <nand.h>
 
 /* NAND Flash Soc registers */
@@ -22,6 +23,8 @@ struct kwnandf_registers {
 static struct kwnandf_registers *nf_reg =
 	(struct kwnandf_registers *)KW_NANDF_BASE;
 
+static u32 nand_mpp_backup[9] = { 0 };
+
 /*
  * hardware specific access to control-lines/bits
  */
@@ -49,6 +52,22 @@ static void kw_nand_hwcontrol(struct mtd_info *mtd, int cmd,
 void kw_nand_select_chip(struct mtd_info *mtd, int chip)
 {
 	u32 data;
+	u32 nand_config[] = {
+		MPP0_NF_IO2,
+		MPP1_NF_IO3,
+		MPP2_NF_IO4,
+		MPP3_NF_IO5,
+		MPP4_NF_IO6,
+		MPP5_NF_IO7,
+		MPP18_NF_IO0,
+		MPP19_NF_IO1,
+		0
+	};
+
+	if (chip >= 0)
+		kirkwood_mpp_conf(nand_config, nand_mpp_backup);
+	else
+		kirkwood_mpp_conf(nand_mpp_backup, NULL);
 
 	data = readl(&nf_reg->ctrl);
 	data |= NAND_ACTCEBOOT_BIT;
-- 
2.7.0

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

* [U-Boot] [RFC PATCH v1] kirkwood_nand: claim MPP pins on the fly
  2016-01-15  4:22 [U-Boot] [RFC PATCH v1] kirkwood_nand: claim MPP pins on the fly Chris Packham
@ 2016-01-22 20:11 ` Scott Wood
  2016-01-23  8:44   ` Chris Packham
  0 siblings, 1 reply; 7+ messages in thread
From: Scott Wood @ 2016-01-22 20:11 UTC (permalink / raw)
  To: u-boot

On Fri, 2016-01-15 at 17:22 +1300, Chris Packham wrote:
> Claim the MPP pins for the NAND flash controller only when it's actually
> being used. This allows the pins to be shared with the SPI interface
> which already supports an equivalent on-access MPP reconfiguration.
> 
> Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> I haven't wrapped this with a configuration option because I think it
> should be safe to enable by default. It will either re-apply the same
> MPP configuration that has already been done in the board init or put
> the MPP pins into the correct mode to access NAND.
> 
> I've only got access to one kirkwood based board with NAND flash so I'd
> appreciate some feedback from someone with access to a few different
> boards.
> 
> From the datasheets I have access to it looks like there is only one
> possible MPP configuration for NF_IO[0-7] so that is what I've
> implemented. I'm not aware of anything using this driver that needs a
> different MPP config.
> 
>  drivers/mtd/nand/kirkwood_nand.c | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
> diff --git a/drivers/mtd/nand/kirkwood_nand.c
> b/drivers/mtd/nand/kirkwood_nand.c
> index 4fc34d6..ff81212 100644
> --- a/drivers/mtd/nand/kirkwood_nand.c
> +++ b/drivers/mtd/nand/kirkwood_nand.c
> @@ -9,6 +9,7 @@
>  #include <common.h>
>  #include <asm/io.h>
>  #include <asm/arch/soc.h>
> +#include <asm/arch/mpp.h>
>  #include <nand.h>
>  
>  /* NAND Flash Soc registers */
> @@ -22,6 +23,8 @@ struct kwnandf_registers {
>  static struct kwnandf_registers *nf_reg =
>  	(struct kwnandf_registers *)KW_NANDF_BASE;
>  
> +static u32 nand_mpp_backup[9] = { 0 };

There's a non-static nand_mpp_backup[] in drivers/spi/kirkwood_spi.c, with a
different length.  And the length assumed by kirkwood_mpp_conf seems to be
different still (and larger than the spi array).

> +
>  /*
>   * hardware specific access to control-lines/bits
>   */
> @@ -49,6 +52,22 @@ static void kw_nand_hwcontrol(struct mtd_info *mtd, int
> cmd,
>  void kw_nand_select_chip(struct mtd_info *mtd, int chip)
>  {
>  	u32 data;
> +	u32 nand_config[] = {
> +		MPP0_NF_IO2,
> +		MPP1_NF_IO3,
> +		MPP2_NF_IO4,
> +		MPP3_NF_IO5,
> +		MPP4_NF_IO6,
> +		MPP5_NF_IO7,
> +		MPP18_NF_IO0,
> +		MPP19_NF_IO1,
> +		0
> +	};

If you make this static const the compiler won't need to create the table at
runtime.

-Scott

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

* [U-Boot] [RFC PATCH v1] kirkwood_nand: claim MPP pins on the fly
  2016-01-22 20:11 ` Scott Wood
@ 2016-01-23  8:44   ` Chris Packham
  2016-02-01 23:35     ` [U-Boot] [PATCH v2] " Chris Packham
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Packham @ 2016-01-23  8:44 UTC (permalink / raw)
  To: u-boot

Hi Scott,

On Sat, Jan 23, 2016 at 9:11 AM, Scott Wood <oss@buserror.net> wrote:
> On Fri, 2016-01-15 at 17:22 +1300, Chris Packham wrote:
>> Claim the MPP pins for the NAND flash controller only when it's actually
>> being used. This allows the pins to be shared with the SPI interface
>> which already supports an equivalent on-access MPP reconfiguration.
>>
>> Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
>> ---
>> I haven't wrapped this with a configuration option because I think it
>> should be safe to enable by default. It will either re-apply the same
>> MPP configuration that has already been done in the board init or put
>> the MPP pins into the correct mode to access NAND.
>>
>> I've only got access to one kirkwood based board with NAND flash so I'd
>> appreciate some feedback from someone with access to a few different
>> boards.
>>
>> From the datasheets I have access to it looks like there is only one
>> possible MPP configuration for NF_IO[0-7] so that is what I've
>> implemented. I'm not aware of anything using this driver that needs a
>> different MPP config.
>>
>>  drivers/mtd/nand/kirkwood_nand.c | 19 +++++++++++++++++++
>>  1 file changed, 19 insertions(+)
>>
>> diff --git a/drivers/mtd/nand/kirkwood_nand.c
>> b/drivers/mtd/nand/kirkwood_nand.c
>> index 4fc34d6..ff81212 100644
>> --- a/drivers/mtd/nand/kirkwood_nand.c
>> +++ b/drivers/mtd/nand/kirkwood_nand.c
>> @@ -9,6 +9,7 @@
>>  #include <common.h>
>>  #include <asm/io.h>
>>  #include <asm/arch/soc.h>
>> +#include <asm/arch/mpp.h>
>>  #include <nand.h>
>>
>>  /* NAND Flash Soc registers */
>> @@ -22,6 +23,8 @@ struct kwnandf_registers {
>>  static struct kwnandf_registers *nf_reg =
>>       (struct kwnandf_registers *)KW_NANDF_BASE;
>>
>> +static u32 nand_mpp_backup[9] = { 0 };
>
> There's a non-static nand_mpp_backup[] in drivers/spi/kirkwood_spi.c, with a
> different length.  And the length assumed by kirkwood_mpp_conf seems to be
> different still (and larger than the spi array).

I assume you mean "u32 spi_mpp_backup[4];". The length of the backup
reflects the pins that are being changed. In kirkwood_spi it's
configuring SPI_CK, SPI_MSIO, SPI_MOSI. So spi_mpp_config[4] reflects
these 3 pin settings plus an empty end marker, spi_mpp_backup[4] is
symmetrical although possibly only 3 are necessary.

In the nand case there are 8 NF_IO pins, hence the array sizes are 8+1.

kirkwood_mpp_conf doesn't enforce any particular size for mpp_save it
is required to be at least as big as mpp_list.

>
>> +
>>  /*
>>   * hardware specific access to control-lines/bits
>>   */
>> @@ -49,6 +52,22 @@ static void kw_nand_hwcontrol(struct mtd_info *mtd, int
>> cmd,
>>  void kw_nand_select_chip(struct mtd_info *mtd, int chip)
>>  {
>>       u32 data;
>> +     u32 nand_config[] = {
>> +             MPP0_NF_IO2,
>> +             MPP1_NF_IO3,
>> +             MPP2_NF_IO4,
>> +             MPP3_NF_IO5,
>> +             MPP4_NF_IO6,
>> +             MPP5_NF_IO7,
>> +             MPP18_NF_IO0,
>> +             MPP19_NF_IO1,
>> +             0
>> +     };
>
> If you make this static const the compiler won't need to create the table at
> runtime.

Agreed. Will do in v2.

>
> -Scott
>

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

* [U-Boot] [PATCH v2] kirkwood_nand: claim MPP pins on the fly
  2016-01-23  8:44   ` Chris Packham
@ 2016-02-01 23:35     ` Chris Packham
  2016-03-24  8:40       ` Stefan Roese
  0 siblings, 1 reply; 7+ messages in thread
From: Chris Packham @ 2016-02-01 23:35 UTC (permalink / raw)
  To: u-boot

Claim the MPP pins for the NAND flash controller only when it's actually
being used. This allows the pins to be shared with the SPI interface
which already supports an equivalent on-access MPP reconfiguration.

Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
Signed-off-by: Chris Packham <judge.packham@gmail.com>
---
I haven't wrapped this with a configuration option because I think it
should be safe to enable by default. It will either re-apply the same
MPP configuration that has already been done in the board init or put
the MPP pins into the correct mode to access NAND.

I've only got access to one kirkwood based board with NAND flash so I'd
appreciate some feedback from someone with access to a few different
boards.

From the datasheets I have access to it looks like there is only one
possible MPP configuration for NF_IO[0-7] so that is what I've
implemented. I'm not aware of anything using this driver that needs a
different MPP config.

Changes in v2:
- make nand_config static const

 drivers/mtd/nand/kirkwood_nand.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/drivers/mtd/nand/kirkwood_nand.c b/drivers/mtd/nand/kirkwood_nand.c
index 4fc34d6..d734113 100644
--- a/drivers/mtd/nand/kirkwood_nand.c
+++ b/drivers/mtd/nand/kirkwood_nand.c
@@ -9,6 +9,7 @@
 #include <common.h>
 #include <asm/io.h>
 #include <asm/arch/soc.h>
+#include <asm/arch/mpp.h>
 #include <nand.h>
 
 /* NAND Flash Soc registers */
@@ -22,6 +23,8 @@ struct kwnandf_registers {
 static struct kwnandf_registers *nf_reg =
 	(struct kwnandf_registers *)KW_NANDF_BASE;
 
+static u32 nand_mpp_backup[9] = { 0 };
+
 /*
  * hardware specific access to control-lines/bits
  */
@@ -49,6 +52,22 @@ static void kw_nand_hwcontrol(struct mtd_info *mtd, int cmd,
 void kw_nand_select_chip(struct mtd_info *mtd, int chip)
 {
 	u32 data;
+	static const u32 nand_config[] = {
+		MPP0_NF_IO2,
+		MPP1_NF_IO3,
+		MPP2_NF_IO4,
+		MPP3_NF_IO5,
+		MPP4_NF_IO6,
+		MPP5_NF_IO7,
+		MPP18_NF_IO0,
+		MPP19_NF_IO1,
+		0
+	};
+
+	if (chip >= 0)
+		kirkwood_mpp_conf(nand_config, nand_mpp_backup);
+	else
+		kirkwood_mpp_conf(nand_mpp_backup, NULL);
 
 	data = readl(&nf_reg->ctrl);
 	data |= NAND_ACTCEBOOT_BIT;
-- 
2.7.0

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

* [U-Boot] [PATCH v2] kirkwood_nand: claim MPP pins on the fly
  2016-02-01 23:35     ` [U-Boot] [PATCH v2] " Chris Packham
@ 2016-03-24  8:40       ` Stefan Roese
  2016-04-04 22:48         ` Scott Wood
  0 siblings, 1 reply; 7+ messages in thread
From: Stefan Roese @ 2016-03-24  8:40 UTC (permalink / raw)
  To: u-boot

On 02.02.2016 00:35, Chris Packham wrote:
> Claim the MPP pins for the NAND flash controller only when it's actually
> being used. This allows the pins to be shared with the SPI interface
> which already supports an equivalent on-access MPP reconfiguration.
>
> Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
> Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ---
> I haven't wrapped this with a configuration option because I think it
> should be safe to enable by default. It will either re-apply the same
> MPP configuration that has already been done in the board init or put
> the MPP pins into the correct mode to access NAND.
>
> I've only got access to one kirkwood based board with NAND flash so I'd
> appreciate some feedback from someone with access to a few different
> boards.
>
>  From the datasheets I have access to it looks like there is only one
> possible MPP configuration for NF_IO[0-7] so that is what I've
> implemented. I'm not aware of anything using this driver that needs a
> different MPP config.
>
> Changes in v2:
> - make nand_config static const

Scott, are you okay with this patch in v2? If yes, will you pull it?
Or should I include it in a marvell pull request?

Thanks,
Stefan

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

* [U-Boot] [PATCH v2] kirkwood_nand: claim MPP pins on the fly
  2016-03-24  8:40       ` Stefan Roese
@ 2016-04-04 22:48         ` Scott Wood
  2016-04-06 13:42           ` Stefan Roese
  0 siblings, 1 reply; 7+ messages in thread
From: Scott Wood @ 2016-04-04 22:48 UTC (permalink / raw)
  To: u-boot

On 03/24/2016 03:40 AM, Stefan Roese wrote:
> On 02.02.2016 00:35, Chris Packham wrote:
>> Claim the MPP pins for the NAND flash controller only when it's actually
>> being used. This allows the pins to be shared with the SPI interface
>> which already supports an equivalent on-access MPP reconfiguration.
>>
>> Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
>> ---
>> I haven't wrapped this with a configuration option because I think it
>> should be safe to enable by default. It will either re-apply the same
>> MPP configuration that has already been done in the board init or put
>> the MPP pins into the correct mode to access NAND.
>>
>> I've only got access to one kirkwood based board with NAND flash so I'd
>> appreciate some feedback from someone with access to a few different
>> boards.
>>
>>  From the datasheets I have access to it looks like there is only one
>> possible MPP configuration for NF_IO[0-7] so that is what I've
>> implemented. I'm not aware of anything using this driver that needs a
>> different MPP config.
>>
>> Changes in v2:
>> - make nand_config static const
> 
> Scott, are you okay with this patch in v2?

Yes.
Acked-by: Scott Wood <oss@buserror.net>

> If yes, will you pull it?
> Or should I include it in a marvell pull request?

Go ahead.

-Scott

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

* [U-Boot] [PATCH v2] kirkwood_nand: claim MPP pins on the fly
  2016-04-04 22:48         ` Scott Wood
@ 2016-04-06 13:42           ` Stefan Roese
  0 siblings, 0 replies; 7+ messages in thread
From: Stefan Roese @ 2016-04-06 13:42 UTC (permalink / raw)
  To: u-boot

On 05.04.2016 00:48, Scott Wood wrote:
> On 03/24/2016 03:40 AM, Stefan Roese wrote:
>> On 02.02.2016 00:35, Chris Packham wrote:
>>> Claim the MPP pins for the NAND flash controller only when it's actually
>>> being used. This allows the pins to be shared with the SPI interface
>>> which already supports an equivalent on-access MPP reconfiguration.
>>>
>>> Reviewed-by: Mark Tomlinson <mark.tomlinson@alliedtelesis.co.nz>
>>> Signed-off-by: Chris Packham <judge.packham@gmail.com>
>>> ---
>>> I haven't wrapped this with a configuration option because I think it
>>> should be safe to enable by default. It will either re-apply the same
>>> MPP configuration that has already been done in the board init or put
>>> the MPP pins into the correct mode to access NAND.
>>>
>>> I've only got access to one kirkwood based board with NAND flash so I'd
>>> appreciate some feedback from someone with access to a few different
>>> boards.
>>>
>>>   From the datasheets I have access to it looks like there is only one
>>> possible MPP configuration for NF_IO[0-7] so that is what I've
>>> implemented. I'm not aware of anything using this driver that needs a
>>> different MPP config.
>>>
>>> Changes in v2:
>>> - make nand_config static const
>>
>> Scott, are you okay with this patch in v2?
>
> Yes.
> Acked-by: Scott Wood <oss@buserror.net>
>
>> If yes, will you pull it?
>> Or should I include it in a marvell pull request?
>
> Go ahead.

Applied to u-boot-marvell/master.

Thanks,
Stefan

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

end of thread, other threads:[~2016-04-06 13:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-15  4:22 [U-Boot] [RFC PATCH v1] kirkwood_nand: claim MPP pins on the fly Chris Packham
2016-01-22 20:11 ` Scott Wood
2016-01-23  8:44   ` Chris Packham
2016-02-01 23:35     ` [U-Boot] [PATCH v2] " Chris Packham
2016-03-24  8:40       ` Stefan Roese
2016-04-04 22:48         ` Scott Wood
2016-04-06 13:42           ` Stefan Roese

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.