All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/29] zynq: More boards support
@ 2013-12-19 18:08 Jagannadha Sutradharudu Teki
  2013-12-19 18:23 ` Jagan Teki
  2014-01-08  9:37 ` Albert ARIBAUD
  0 siblings, 2 replies; 4+ messages in thread
From: Jagannadha Sutradharudu Teki @ 2013-12-19 18:08 UTC (permalink / raw)
  To: u-boot

These changes are from u-boot-xlnx.git repo from git.xilinx.com
This repo is well tested on xilinx zynq platform, hence pushing
the same on upstream.

Excluded qspi and nand changes from previous series.

--
Thanks,
Jagan.

Jagannadha Sutradharudu Teki (29):
  zynq: Enable CONFIG_FIT_VERBOSE
  zynq: Enable Boot FreeBSD/vxWorks
  zynq: Cleanup on miscellaneous configs
  zynq: Cleanup on memory configs
  zynq: Minor config cleanup
  zynq: Enable cache options
  zynq: Add UART0, UART1 configs support
  zynq: Add GEM0, GEM1 configs support
  zynq-common: Rename zynq with zynq-common
  doc: zynq: Add information on zynq u-boot
  zynq: Add zynq zc70x board support
  zynq: Add zynq zed board support
  zynq: Move CONFIG_SYS_SDRAM_SIZE to pre-board configs
  zynq-common: Define exact TEXT_BASE
  zynq: zc70x: Add Catalyst 24WC08 EEPROM config support
  zynq: Add zynq microzed board support
  zynq: Add zynq_zc770 xm010 board support
  zynq: Add zynq_zc770 xm013 board support
  zynq: Add zynq_zc770 xm012 board support
  zynq: Add support to find bootmode
  zynq-common: Define default environment
  zynq-common: Change Env. Sector size to 128Kb
  zynq-common: Define flash env. partition
  zynq-common: Define CONFIG_ENV_OVERWRITE
  dts: zynq: Add basic fdt support
  gpio: zynq: Add dummy gpio routines
  zynq-common: Enable verified boot(RSA)
  dts: zynq: Add more zynq dts files
  doc: Update the zynq u-boot status

 arch/arm/cpu/armv7/zynq/slcr.c             |   6 +
 arch/arm/dts/zynq-7000.dtsi                |  13 ++
 arch/arm/include/asm/arch-zynq/gpio.h      |  25 +++
 arch/arm/include/asm/arch-zynq/sys_proto.h |   1 +
 board/xilinx/dts/zynq-microzed.dts         |  14 ++
 board/xilinx/dts/zynq-zc702.dts            |  14 ++
 board/xilinx/dts/zynq-zc706.dts            |  14 ++
 board/xilinx/dts/zynq-zc770-xm010.dts      |  14 ++
 board/xilinx/dts/zynq-zc770-xm012.dts      |  14 ++
 board/xilinx/dts/zynq-zc770-xm013.dts      |  14 ++
 board/xilinx/dts/zynq-zed.dts              |  14 ++
 board/xilinx/zynq/board.c                  |  25 +++
 boards.cfg                                 |   8 +-
 doc/README.zynq                            |  91 +++++++++++
 include/configs/zynq-common.h              | 241 +++++++++++++++++++++++++++++
 include/configs/zynq.h                     | 139 -----------------
 include/configs/zynq_microzed.h            |  25 +++
 include/configs/zynq_zc70x.h               |  28 ++++
 include/configs/zynq_zc770.h               |  39 +++++
 include/configs/zynq_zed.h                 |  26 ++++
 20 files changed, 624 insertions(+), 141 deletions(-)
 create mode 100644 arch/arm/dts/zynq-7000.dtsi
 create mode 100644 arch/arm/include/asm/arch-zynq/gpio.h
 create mode 100644 board/xilinx/dts/zynq-microzed.dts
 create mode 100644 board/xilinx/dts/zynq-zc702.dts
 create mode 100644 board/xilinx/dts/zynq-zc706.dts
 create mode 100644 board/xilinx/dts/zynq-zc770-xm010.dts
 create mode 100644 board/xilinx/dts/zynq-zc770-xm012.dts
 create mode 100644 board/xilinx/dts/zynq-zc770-xm013.dts
 create mode 100644 board/xilinx/dts/zynq-zed.dts
 create mode 100644 doc/README.zynq
 create mode 100644 include/configs/zynq-common.h
 delete mode 100644 include/configs/zynq.h
 create mode 100644 include/configs/zynq_microzed.h
 create mode 100644 include/configs/zynq_zc70x.h
 create mode 100644 include/configs/zynq_zc770.h
 create mode 100644 include/configs/zynq_zed.h

-- 
1.8.3

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

* [U-Boot] [PATCH v3 00/29] zynq: More boards support
  2013-12-19 18:08 [U-Boot] [PATCH v3 00/29] zynq: More boards support Jagannadha Sutradharudu Teki
@ 2013-12-19 18:23 ` Jagan Teki
  2014-01-08  9:37 ` Albert ARIBAUD
  1 sibling, 0 replies; 4+ messages in thread
From: Jagan Teki @ 2013-12-19 18:23 UTC (permalink / raw)
  To: u-boot

Hi Tom and Albert,

Can you look into this series.

On Thu, Dec 19, 2013 at 11:38 PM, Jagannadha Sutradharudu Teki
<jagannadha.sutradharudu-teki@xilinx.com> wrote:
> These changes are from u-boot-xlnx.git repo from git.xilinx.com
> This repo is well tested on xilinx zynq platform, hence pushing
> the same on upstream.
>
> Excluded qspi and nand changes from previous series.
>
> --
> Thanks,
> Jagan.
>
> Jagannadha Sutradharudu Teki (29):
>   zynq: Enable CONFIG_FIT_VERBOSE
>   zynq: Enable Boot FreeBSD/vxWorks
>   zynq: Cleanup on miscellaneous configs
>   zynq: Cleanup on memory configs
>   zynq: Minor config cleanup
>   zynq: Enable cache options
>   zynq: Add UART0, UART1 configs support
>   zynq: Add GEM0, GEM1 configs support
>   zynq-common: Rename zynq with zynq-common
>   doc: zynq: Add information on zynq u-boot
>   zynq: Add zynq zc70x board support
>   zynq: Add zynq zed board support
>   zynq: Move CONFIG_SYS_SDRAM_SIZE to pre-board configs
>   zynq-common: Define exact TEXT_BASE
>   zynq: zc70x: Add Catalyst 24WC08 EEPROM config support
>   zynq: Add zynq microzed board support
>   zynq: Add zynq_zc770 xm010 board support
>   zynq: Add zynq_zc770 xm013 board support
>   zynq: Add zynq_zc770 xm012 board support
>   zynq: Add support to find bootmode
>   zynq-common: Define default environment
>   zynq-common: Change Env. Sector size to 128Kb
>   zynq-common: Define flash env. partition
>   zynq-common: Define CONFIG_ENV_OVERWRITE
>   dts: zynq: Add basic fdt support
>   gpio: zynq: Add dummy gpio routines
>   zynq-common: Enable verified boot(RSA)
>   dts: zynq: Add more zynq dts files
>   doc: Update the zynq u-boot status
>
>  arch/arm/cpu/armv7/zynq/slcr.c             |   6 +
>  arch/arm/dts/zynq-7000.dtsi                |  13 ++
>  arch/arm/include/asm/arch-zynq/gpio.h      |  25 +++
>  arch/arm/include/asm/arch-zynq/sys_proto.h |   1 +
>  board/xilinx/dts/zynq-microzed.dts         |  14 ++
>  board/xilinx/dts/zynq-zc702.dts            |  14 ++
>  board/xilinx/dts/zynq-zc706.dts            |  14 ++
>  board/xilinx/dts/zynq-zc770-xm010.dts      |  14 ++
>  board/xilinx/dts/zynq-zc770-xm012.dts      |  14 ++
>  board/xilinx/dts/zynq-zc770-xm013.dts      |  14 ++
>  board/xilinx/dts/zynq-zed.dts              |  14 ++
>  board/xilinx/zynq/board.c                  |  25 +++
>  boards.cfg                                 |   8 +-
>  doc/README.zynq                            |  91 +++++++++++
>  include/configs/zynq-common.h              | 241 +++++++++++++++++++++++++++++
>  include/configs/zynq.h                     | 139 -----------------
>  include/configs/zynq_microzed.h            |  25 +++
>  include/configs/zynq_zc70x.h               |  28 ++++
>  include/configs/zynq_zc770.h               |  39 +++++
>  include/configs/zynq_zed.h                 |  26 ++++
>  20 files changed, 624 insertions(+), 141 deletions(-)
>  create mode 100644 arch/arm/dts/zynq-7000.dtsi
>  create mode 100644 arch/arm/include/asm/arch-zynq/gpio.h
>  create mode 100644 board/xilinx/dts/zynq-microzed.dts
>  create mode 100644 board/xilinx/dts/zynq-zc702.dts
>  create mode 100644 board/xilinx/dts/zynq-zc706.dts
>  create mode 100644 board/xilinx/dts/zynq-zc770-xm010.dts
>  create mode 100644 board/xilinx/dts/zynq-zc770-xm012.dts
>  create mode 100644 board/xilinx/dts/zynq-zc770-xm013.dts
>  create mode 100644 board/xilinx/dts/zynq-zed.dts
>  create mode 100644 doc/README.zynq
>  create mode 100644 include/configs/zynq-common.h
>  delete mode 100644 include/configs/zynq.h
>  create mode 100644 include/configs/zynq_microzed.h
>  create mode 100644 include/configs/zynq_zc70x.h
>  create mode 100644 include/configs/zynq_zc770.h
>  create mode 100644 include/configs/zynq_zed.h
>

-- 
Thanks,
Jagan.

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

* [U-Boot] [PATCH v3 00/29] zynq: More boards support
  2013-12-19 18:08 [U-Boot] [PATCH v3 00/29] zynq: More boards support Jagannadha Sutradharudu Teki
  2013-12-19 18:23 ` Jagan Teki
@ 2014-01-08  9:37 ` Albert ARIBAUD
  2014-01-08 10:09   ` Jagan Teki
  1 sibling, 1 reply; 4+ messages in thread
From: Albert ARIBAUD @ 2014-01-08  9:37 UTC (permalink / raw)
  To: u-boot

Hi Jagannadha,

On Thu, 19 Dec 2013 23:38:51 +0530, Jagannadha Sutradharudu Teki
<jagannadha.sutradharudu-teki@xilinx.com> wrote:

> These changes are from u-boot-xlnx.git repo from git.xilinx.com
> This repo is well tested on xilinx zynq platform, hence pushing
> the same on upstream.
> 
> Excluded qspi and nand changes from previous series.

The series, with 11/29 and 19/29 replaced with v4, does not apply
cleanly to master. A 3-way am works on 10/29 and 11/29, but 12/29 v3
fails even with 3-way.

Can you please post a series rebased on master? I'll apply it as soon
as it arrives.

> Thanks,
> Jagan.

Amicalement,
-- 
Albert.

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

* [U-Boot] [PATCH v3 00/29] zynq: More boards support
  2014-01-08  9:37 ` Albert ARIBAUD
@ 2014-01-08 10:09   ` Jagan Teki
  0 siblings, 0 replies; 4+ messages in thread
From: Jagan Teki @ 2014-01-08 10:09 UTC (permalink / raw)
  To: u-boot

Hi Albert,

On Wed, Jan 8, 2014 at 3:07 PM, Albert ARIBAUD
<albert.u.boot@aribaud.net> wrote:
> Hi Jagannadha,
>
> On Thu, 19 Dec 2013 23:38:51 +0530, Jagannadha Sutradharudu Teki
> <jagannadha.sutradharudu-teki@xilinx.com> wrote:
>
>> These changes are from u-boot-xlnx.git repo from git.xilinx.com
>> This repo is well tested on xilinx zynq platform, hence pushing
>> the same on upstream.
>>
>> Excluded qspi and nand changes from previous series.
>
> The series, with 11/29 and 19/29 replaced with v4, does not apply
> cleanly to master. A 3-way am works on 10/29 and 11/29, but 12/29 v3
> fails even with 3-way.
>
> Can you please post a series rebased on master? I'll apply it as soon
> as it arrives.

OK.

I am sending the whole series again with v4 with rebase on master.
Let me know for any info.

-- 
Thanks,
Jagan.

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

end of thread, other threads:[~2014-01-08 10:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-19 18:08 [U-Boot] [PATCH v3 00/29] zynq: More boards support Jagannadha Sutradharudu Teki
2013-12-19 18:23 ` Jagan Teki
2014-01-08  9:37 ` Albert ARIBAUD
2014-01-08 10:09   ` Jagan Teki

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.