linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64
@ 2017-09-29 16:07 thor.thayer
  2017-10-06 14:56 ` Thor Thayer
  0 siblings, 1 reply; 5+ messages in thread
From: thor.thayer @ 2017-09-29 16:07 UTC (permalink / raw)
  To: cyrille.pitchen, marek.vasut, dwmw2, computersforpeace,
	boris.brezillon, richard
  Cc: linux-mtd, linux-kernel, Thor Thayer

From: Thor Thayer <thor.thayer@linux.intel.com>

Allow ARM64 support for the Cadence QSPI interface by
adding ARM64 as a dependency.

Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
---
 drivers/mtd/spi-nor/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
index 69c638dd0484..f26aaa6d1430 100644
--- a/drivers/mtd/spi-nor/Kconfig
+++ b/drivers/mtd/spi-nor/Kconfig
@@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI
 
 config SPI_CADENCE_QUADSPI
 	tristate "Cadence Quad SPI controller"
-	depends on OF && (ARM || COMPILE_TEST)
+	depends on OF && (ARM || ARM64 || COMPILE_TEST)
 	help
 	  Enable support for the Cadence Quad SPI Flash controller.
 
-- 
2.7.4

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

* Re: [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64
  2017-09-29 16:07 [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64 thor.thayer
@ 2017-10-06 14:56 ` Thor Thayer
  2017-10-06 15:00   ` Marek Vasut
  0 siblings, 1 reply; 5+ messages in thread
From: Thor Thayer @ 2017-10-06 14:56 UTC (permalink / raw)
  To: cyrille.pitchen, marek.vasut, dwmw2, computersforpeace,
	boris.brezillon, richard
  Cc: linux-mtd, linux-kernel

gentle ping...


On 09/29/2017 11:07 AM, thor.thayer@linux.intel.com wrote:
> From: Thor Thayer <thor.thayer@linux.intel.com>
> 
> Allow ARM64 support for the Cadence QSPI interface by
> adding ARM64 as a dependency.
> 
> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
> ---
>   drivers/mtd/spi-nor/Kconfig | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
> index 69c638dd0484..f26aaa6d1430 100644
> --- a/drivers/mtd/spi-nor/Kconfig
> +++ b/drivers/mtd/spi-nor/Kconfig
> @@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI
>   
>   config SPI_CADENCE_QUADSPI
>   	tristate "Cadence Quad SPI controller"
> -	depends on OF && (ARM || COMPILE_TEST)
> +	depends on OF && (ARM || ARM64 || COMPILE_TEST)
>   	help
>   	  Enable support for the Cadence Quad SPI Flash controller.
>   
> 

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

* Re: [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64
  2017-10-06 14:56 ` Thor Thayer
@ 2017-10-06 15:00   ` Marek Vasut
  2017-10-06 15:04     ` Thor Thayer
  2017-10-10 16:30     ` Cyrille Pitchen
  0 siblings, 2 replies; 5+ messages in thread
From: Marek Vasut @ 2017-10-06 15:00 UTC (permalink / raw)
  To: thor.thayer, cyrille.pitchen, dwmw2, computersforpeace,
	boris.brezillon, richard
  Cc: linux-mtd, linux-kernel

On 10/06/2017 04:56 PM, Thor Thayer wrote:
> gentle ping...
> 
> 
> On 09/29/2017 11:07 AM, thor.thayer@linux.intel.com wrote:
>> From: Thor Thayer <thor.thayer@linux.intel.com>
>>
>> Allow ARM64 support for the Cadence QSPI interface by
>> adding ARM64 as a dependency.
>>
>> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>

Reviewed-by: Marek Vasut <marek.vasut@gmail.com>

I presume it was tested on Stratix 10 ?

>> ---
>>   drivers/mtd/spi-nor/Kconfig | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
>> index 69c638dd0484..f26aaa6d1430 100644
>> --- a/drivers/mtd/spi-nor/Kconfig
>> +++ b/drivers/mtd/spi-nor/Kconfig
>> @@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI
>>     config SPI_CADENCE_QUADSPI
>>       tristate "Cadence Quad SPI controller"
>> -    depends on OF && (ARM || COMPILE_TEST)
>> +    depends on OF && (ARM || ARM64 || COMPILE_TEST)
>>       help
>>         Enable support for the Cadence Quad SPI Flash controller.
>>  
> 


-- 
Best regards,
Marek Vasut

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

* Re: [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64
  2017-10-06 15:00   ` Marek Vasut
@ 2017-10-06 15:04     ` Thor Thayer
  2017-10-10 16:30     ` Cyrille Pitchen
  1 sibling, 0 replies; 5+ messages in thread
From: Thor Thayer @ 2017-10-06 15:04 UTC (permalink / raw)
  To: Marek Vasut, cyrille.pitchen, dwmw2, computersforpeace,
	boris.brezillon, richard
  Cc: linux-mtd, linux-kernel

On 10/06/2017 10:00 AM, Marek Vasut wrote:
> On 10/06/2017 04:56 PM, Thor Thayer wrote:
>> gentle ping...
>>
>>
>> On 09/29/2017 11:07 AM, thor.thayer@linux.intel.com wrote:
>>> From: Thor Thayer <thor.thayer@linux.intel.com>
>>>
>>> Allow ARM64 support for the Cadence QSPI interface by
>>> adding ARM64 as a dependency.
>>>
>>> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
> 
> Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
> 
> I presume it was tested on Stratix 10 ?
> 

Yes, that is correct. Thanks for the review!

>>> ---
>>>    drivers/mtd/spi-nor/Kconfig | 2 +-
>>>    1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
>>> index 69c638dd0484..f26aaa6d1430 100644
>>> --- a/drivers/mtd/spi-nor/Kconfig
>>> +++ b/drivers/mtd/spi-nor/Kconfig
>>> @@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI
>>>      config SPI_CADENCE_QUADSPI
>>>        tristate "Cadence Quad SPI controller"
>>> -    depends on OF && (ARM || COMPILE_TEST)
>>> +    depends on OF && (ARM || ARM64 || COMPILE_TEST)
>>>        help
>>>          Enable support for the Cadence Quad SPI Flash controller.
>>>   
>>
> 
> 

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

* Re: [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64
  2017-10-06 15:00   ` Marek Vasut
  2017-10-06 15:04     ` Thor Thayer
@ 2017-10-10 16:30     ` Cyrille Pitchen
  1 sibling, 0 replies; 5+ messages in thread
From: Cyrille Pitchen @ 2017-10-10 16:30 UTC (permalink / raw)
  To: Marek Vasut, thor.thayer, dwmw2, computersforpeace,
	boris.brezillon, richard
  Cc: linux-mtd, linux-kernel

Le 06/10/2017 à 17:00, Marek Vasut a écrit :
> On 10/06/2017 04:56 PM, Thor Thayer wrote:
>> gentle ping...
>>
>>
>> On 09/29/2017 11:07 AM, thor.thayer@linux.intel.com wrote:
>>> From: Thor Thayer <thor.thayer@linux.intel.com>
>>>
>>> Allow ARM64 support for the Cadence QSPI interface by
>>> adding ARM64 as a dependency.
>>>
>>> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
> 
> Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
> 

Applied to the spi-nor/next branch of l2-mtd

Thanks!

> I presume it was tested on Stratix 10 ?
> 
>>> ---
>>>   drivers/mtd/spi-nor/Kconfig | 2 +-
>>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig
>>> index 69c638dd0484..f26aaa6d1430 100644
>>> --- a/drivers/mtd/spi-nor/Kconfig
>>> +++ b/drivers/mtd/spi-nor/Kconfig
>>> @@ -50,7 +50,7 @@ config SPI_ATMEL_QUADSPI
>>>     config SPI_CADENCE_QUADSPI
>>>       tristate "Cadence Quad SPI controller"
>>> -    depends on OF && (ARM || COMPILE_TEST)
>>> +    depends on OF && (ARM || ARM64 || COMPILE_TEST)
>>>       help
>>>         Enable support for the Cadence Quad SPI Flash controller.
>>>  
>>
> 
> 

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

end of thread, other threads:[~2017-10-10 16:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-29 16:07 [PATCH] mtd: spi-nor: Allow Cadence QSPI support for ARM64 thor.thayer
2017-10-06 14:56 ` Thor Thayer
2017-10-06 15:00   ` Marek Vasut
2017-10-06 15:04     ` Thor Thayer
2017-10-10 16:30     ` Cyrille Pitchen

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).