From: Tom Rini <trini@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-fsl-qoriq
Date: Wed, 10 Sep 2014 08:29:42 -0400 [thread overview]
Message-ID: <20140910122942.GS25506@bill-the-cat> (raw)
In-Reply-To: <540DEB57.6020809@freescale.com>
On Mon, Sep 08, 2014 at 10:45:59AM -0700, York Sun wrote:
> Tom,
>
> This is the first pull request from u-boot-fsl-qoriq repository. In this set, I
> have v6 patches for Freescale Layerscape 1 SoC LS102xA with ARMv7 cores. These
> patches have been verified on the boards and compiled with the latest buildman
> "./tools/buildman/buildman -b u-boot-fsl-qoriq powerpc 'arm & freescale'".
>
> The following changes since commit d6c1ffc7d23f4fe4ae8c91101861055b8e1501b6:
>
> Prepare v2014.10-rc2 (2014-09-02 16:58:29 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-fsl-qoriq.git master
>
> for you to fetch changes up to b4ecc8c6f8c85d25f72933af23531728069a5b0f:
>
> ls102xa: dcu: Add platform support for DCU on LS1021ATWR board (2014-09-08
> 10:30:36 -0700)
>
> ----------------------------------------------------------------
> Alison Wang (2):
> net: mdio: Use mb() to be compatible for both ARM and PowerPC
> ls102xa: etsec: Add etsec support for LS102xA
>
> Claudiu Manoil (2):
> net: Merge asm/fsl_enet.h into fsl_mdio.h
> net: tsec: Remove tx snooping support from LS1
>
> Jingchang Lu (1):
> serial: lpuart: add 32-bit registers lpuart support
>
> Wang Huan (9):
> arm: ls102xa: Add Freescale LS102xA SoC support
> ls102xa: i2c: Add i2c support for LS102xA
> esdhc: Add CONFIG_SYS_FSL_ESDHC_LE and CONFIG_SYS_FSL_ESDHC_BE macros
> ls102xa: esdhc: Add esdhc support for LS102xA
> arm: ls102xa: Add basic support for LS1021AQDS board
> arm: ls102xa: Add basic support for LS1021ATWR board
> video: dcu: Add DCU driver support
> video: dcu: Add Sii9022A HDMI Transmitter support
> ls102xa: dcu: Add platform support for DCU on LS1021ATWR board
>
> York Sun (3):
> driver/ddr/freescale: Add support of accumulate ECC
> driver/ddr/freescale: Fix DDR3 driver for ARM
> driver/ddr/fsl: Add support of overriding chip select write leveling
>
> arch/arm/Kconfig | 8 +
> arch/arm/cpu/armv7/ls102xa/Makefile | 12 +
> arch/arm/cpu/armv7/ls102xa/clock.c | 130 ++++++
> arch/arm/cpu/armv7/ls102xa/cpu.c | 103 +++++
> arch/arm/cpu/armv7/ls102xa/fdt.c | 136 ++++++
> arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.c | 120 +++++
> arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.h | 12 +
> arch/arm/cpu/armv7/ls102xa/ls102xa_serdes.c | 41 ++
> arch/arm/cpu/armv7/ls102xa/timer.c | 127 ++++++
> arch/arm/include/asm/arch-ls102xa/clock.h | 23 +
> arch/arm/include/asm/arch-ls102xa/config.h | 78 ++++
> arch/arm/include/asm/arch-ls102xa/fsl_serdes.h | 33 ++
> arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h | 493 +++++++++++++++++++++
> arch/arm/include/asm/arch-ls102xa/imx-regs.h | 53 +++
> arch/arm/include/asm/config.h | 4 +
> arch/arm/include/asm/io.h | 8 +-
> arch/powerpc/include/asm/fsl_enet.h | 24 -
> board/freescale/common/Makefile | 2 +
> board/freescale/common/dcu_sii9022a.c | 153 +++++++
> board/freescale/common/dcu_sii9022a.h | 13 +
> board/freescale/ls1021aqds/Kconfig | 23 +
> board/freescale/ls1021aqds/MAINTAINERS | 6 +
> board/freescale/ls1021aqds/Makefile | 9 +
> board/freescale/ls1021aqds/README | 112 +++++
> board/freescale/ls1021aqds/ddr.c | 159 +++++++
> board/freescale/ls1021aqds/ddr.h | 49 ++
> board/freescale/ls1021aqds/eth.c | 186 ++++++++
> board/freescale/ls1021aqds/ls1021aqds.c | 255 +++++++++++
> board/freescale/ls1021aqds/ls1021aqds_qixis.h | 35 ++
> board/freescale/ls1021atwr/Kconfig | 23 +
> board/freescale/ls1021atwr/MAINTAINERS | 6 +
> board/freescale/ls1021atwr/Makefile | 8 +
> board/freescale/ls1021atwr/README | 109 +++++
> board/freescale/ls1021atwr/dcu.c | 47 ++
> board/freescale/ls1021atwr/ls1021atwr.c | 488 ++++++++++++++++++++
> board/freescale/mpc8360emds/mpc8360emds.c | 2 +-
> board/freescale/mpc837xemds/mpc837xemds.c | 1 -
> configs/ls1021aqds_nor_defconfig | 2 +
> configs/ls1021atwr_nor_defconfig | 2 +
> doc/README.fsl-esdhc | 5 +
> drivers/ddr/fsl/arm_ddr_gen3.c | 2 +-
> drivers/ddr/fsl/ctrl_regs.c | 8 +
> drivers/ddr/fsl/interactive.c | 2 +
> drivers/i2c/mxc_i2c.c | 4 +-
> drivers/mmc/fsl_esdhc.c | 4 +-
> drivers/net/fm/dtsec.c | 1 -
> drivers/net/fm/fm.h | 2 +-
> drivers/net/fm/init.c | 1 +
> drivers/net/fm/memac.c | 1 -
> drivers/net/fm/tgec.c | 1 -
> drivers/net/fsl_mdio.c | 10 +-
> drivers/net/tsec.c | 7 +
> drivers/qe/uec.h | 1 -
> drivers/serial/serial_lpuart.c | 118 +++++
> drivers/video/Makefile | 1 +
> drivers/video/fsl_dcu_fb.c | 365 +++++++++++++++
> drivers/watchdog/Makefile | 2 +-
> include/configs/ls1021aqds.h | 389 ++++++++++++++++
> include/configs/ls1021atwr.h | 291 ++++++++++++
> include/fm_eth.h | 2 +-
> include/fsl_dcu_fb.h | 16 +
> include/fsl_ddr_sdram.h | 2 +
> include/fsl_esdhc.h | 14 +-
> include/fsl_mdio.h | 13 +-
> include/tsec.h | 11 +-
> 65 files changed, 4322 insertions(+), 46 deletions(-)
> create mode 100644 arch/arm/cpu/armv7/ls102xa/Makefile
> create mode 100644 arch/arm/cpu/armv7/ls102xa/clock.c
> create mode 100644 arch/arm/cpu/armv7/ls102xa/cpu.c
> create mode 100644 arch/arm/cpu/armv7/ls102xa/fdt.c
> create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.c
> create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_ls1_serdes.h
> create mode 100644 arch/arm/cpu/armv7/ls102xa/ls102xa_serdes.c
> create mode 100644 arch/arm/cpu/armv7/ls102xa/timer.c
> create mode 100644 arch/arm/include/asm/arch-ls102xa/clock.h
> create mode 100644 arch/arm/include/asm/arch-ls102xa/config.h
> create mode 100644 arch/arm/include/asm/arch-ls102xa/fsl_serdes.h
> create mode 100644 arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
> create mode 100644 arch/arm/include/asm/arch-ls102xa/imx-regs.h
> delete mode 100644 arch/powerpc/include/asm/fsl_enet.h
> create mode 100644 board/freescale/common/dcu_sii9022a.c
> create mode 100644 board/freescale/common/dcu_sii9022a.h
> create mode 100644 board/freescale/ls1021aqds/Kconfig
> create mode 100644 board/freescale/ls1021aqds/MAINTAINERS
> create mode 100644 board/freescale/ls1021aqds/Makefile
> create mode 100644 board/freescale/ls1021aqds/README
> create mode 100644 board/freescale/ls1021aqds/ddr.c
> create mode 100644 board/freescale/ls1021aqds/ddr.h
> create mode 100644 board/freescale/ls1021aqds/eth.c
> create mode 100644 board/freescale/ls1021aqds/ls1021aqds.c
> create mode 100644 board/freescale/ls1021aqds/ls1021aqds_qixis.h
> create mode 100644 board/freescale/ls1021atwr/Kconfig
> create mode 100644 board/freescale/ls1021atwr/MAINTAINERS
> create mode 100644 board/freescale/ls1021atwr/Makefile
> create mode 100644 board/freescale/ls1021atwr/README
> create mode 100644 board/freescale/ls1021atwr/dcu.c
> create mode 100644 board/freescale/ls1021atwr/ls1021atwr.c
> create mode 100644 configs/ls1021aqds_nor_defconfig
> create mode 100644 configs/ls1021atwr_nor_defconfig
> create mode 100644 doc/README.fsl-esdhc
> create mode 100644 drivers/video/fsl_dcu_fb.c
> create mode 100644 include/configs/ls1021aqds.h
> create mode 100644 include/configs/ls1021atwr.h
> create mode 100644 include/fsl_dcu_fb.h
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140910/40f3a5be/attachment.pgp>
next prev parent reply other threads:[~2014-09-10 12:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-08 17:45 [U-Boot] Please pull u-boot-fsl-qoriq York Sun
2014-09-10 12:29 ` Tom Rini [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-09-25 20:57 York Sun
2014-09-27 11:36 ` Tom Rini
2014-11-25 17:37 [U-Boot] please " York Sun
2014-11-26 16:25 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140910122942.GS25506@bill-the-cat \
--to=trini@ti.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.