diff mbox

[U-Boot] ARM: zynq: Wire-up saving environment to QSPI

Message ID c4df415bc26257233792984979fab9841e872342.1455361371.git.monstr@monstr.eu
State Accepted
Commit 18c61e95714f4a18f1a206369fc187639d9845e1
Delegated to: Jagannadha Sutradharudu Teki
Headers show

Commit Message

Michal Simek Feb. 13, 2016, 11:02 a.m. UTC
Extend options for saving variables to QSPI.

Signed-off-by: Michal Simek <monstr@monstr.eu>
---

 include/configs/zynq-common.h | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Jagan Teki Feb. 15, 2016, 1:17 p.m. UTC | #1
On 13 February 2016 at 16:32, Michal Simek <monstr@monstr.eu> wrote:
> Extend options for saving variables to QSPI.
>
> Signed-off-by: Michal Simek <monstr@monstr.eu>
> ---

Applied to u-boot-spi/master
Michal Simek Feb. 22, 2016, 3:19 p.m. UTC | #2
On 15.2.2016 14:17, Jagan Teki wrote:
> On 13 February 2016 at 16:32, Michal Simek <monstr@monstr.eu> wrote:
>> Extend options for saving variables to QSPI.
>>
>> Signed-off-by: Michal Simek <monstr@monstr.eu>
>> ---
> 
> Applied to u-boot-spi/master
> 

Are you going to send PR to this release?

Thanks,
Michal
Jagan Teki Feb. 22, 2016, 3:20 p.m. UTC | #3
On Monday 22 February 2016 08:49 PM, Michal Simek wrote:
> On 15.2.2016 14:17, Jagan Teki wrote:
>> On 13 February 2016 at 16:32, Michal Simek <monstr@monstr.eu> wrote:
>>> Extend options for saving variables to QSPI.
>>>
>>> Signed-off-by: Michal Simek <monstr@monstr.eu>
>>> ---
>>
>> Applied to u-boot-spi/master
>>
>
> Are you going to send PR to this release?

Yes.
Michal Simek Feb. 22, 2016, 3:23 p.m. UTC | #4
On 22.2.2016 16:20, Jagan Teki wrote:
> 
> 
> On Monday 22 February 2016 08:49 PM, Michal Simek wrote:
>> On 15.2.2016 14:17, Jagan Teki wrote:
>>> On 13 February 2016 at 16:32, Michal Simek <monstr@monstr.eu> wrote:
>>>> Extend options for saving variables to QSPI.
>>>>
>>>> Signed-off-by: Michal Simek <monstr@monstr.eu>
>>>> ---
>>>
>>> Applied to u-boot-spi/master
>>>
>>
>> Are you going to send PR to this release?
> 
> Yes.

Good.

Thanks,
Michal
diff mbox

Patch

diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
index 73b7f2072bc6..1eee8a0667dc 100644
--- a/include/configs/zynq-common.h
+++ b/include/configs/zynq-common.h
@@ -198,7 +198,11 @@ 
 /* Environment */
 #ifndef CONFIG_ENV_IS_NOWHERE
 # ifndef CONFIG_SYS_NO_FLASH
+/* Environment in NOR flash */
 #  define CONFIG_ENV_IS_IN_FLASH
+# elif defined(CONFIG_ZYNQ_QSPI)
+/* Environment in Serial Flash */
+#  define CONFIG_ENV_IS_IN_SPI_FLASH
 # elif defined(CONFIG_SYS_NO_FLASH)
 #  define CONFIG_ENV_IS_NOWHERE
 # endif