* [U-Boot] Please pull u-boot-fsl-qoriq
@ 2014-09-08 17:45 York Sun
2014-09-10 12:29 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-09-08 17:45 UTC (permalink / raw)
To: u-boot
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
Thanks,
York
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-fsl-qoriq
2014-09-08 17:45 [U-Boot] Please " York Sun
@ 2014-09-10 12:29 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-09-10 12:29 UTC (permalink / raw)
To: u-boot
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>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-fsl-qoriq
@ 2014-09-25 20:57 York Sun
2014-09-27 11:36 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-09-25 20:57 UTC (permalink / raw)
To: u-boot
Tom,
The following changes since commit 47d3debe1ab8315dc9ade22279e02f60eceda25b:
Merge git://git.denx.de/u-boot-dm (2014-09-23 15:21:43 -0400)
are available in the git repository at:
u-boot
git://git.denx.de/u-boot-fsl-qoriq.git master
for you to fetch changes up to c7eae7fcb11bc7dab519fca8d8902f1fbc5c3c76:
board/ls1021aqds: Add DDR4 support (2014-09-25 09:12:12 -0700)
----------------------------------------------------------------
Arnab Basu (2):
fdt_support: Move of_read_number to fdt_support.h
fdt_support: Make of_bus_default_count_cells non static
Prabhakar Kushwaha (3):
board/ls2085a: Update env_addr after NOR flash relocation
driver/mtd: Use generic timer API for FSL IFC, eLBC
board/ls2085a: Add support of NOR and NAND flash for simulator
York Sun (8):
driver/ddr: Restruct driver to allow standalone memory space
ARMv8/ls2085a_emu: Enable DP-DDR as standalone memory block
driver/ddr/fsl: Fix tXP and tCKE
armv8/fsl-lsch3: Release secondary cores from boot hold off with Boot Page
ARMv8/ls2085a: Enable secondary cores
ARMv8/ls2085a: Move u-boot location to make room for RCW
driver/ddr/fsl: Fix DDR4 driver
board/ls1021aqds: Add DDR4 support
README | 6 +
arch/arm/cpu/armv8/fsl-lsch3/Makefile | 2 +
arch/arm/cpu/armv8/fsl-lsch3/cpu.c | 13 ++
arch/arm/cpu/armv8/fsl-lsch3/cpu.h | 1 +
arch/arm/cpu/armv8/fsl-lsch3/fdt.c | 58 +++++
arch/arm/cpu/armv8/fsl-lsch3/lowlevel.S | 125 +++++++++--
arch/arm/cpu/armv8/fsl-lsch3/mp.c | 168 ++++++++++++++
arch/arm/cpu/armv8/fsl-lsch3/mp.h | 36 +++
arch/arm/cpu/armv8/transition.S | 63 +-----
arch/arm/include/asm/arch-fsl-lsch3/config.h | 6 +-
arch/arm/include/asm/arch-fsl-lsch3/immap_lsch3.h | 35 +++
arch/arm/include/asm/arch-ls102xa/config.h | 5 +
arch/arm/include/asm/macro.h | 93 ++++++++
arch/arm/lib/gic_64.S | 10 +-
arch/powerpc/cpu/mpc85xx/cpu.c | 4 +-
board/freescale/ls1021aqds/MAINTAINERS | 1 +
board/freescale/ls1021aqds/ddr.c | 9 +-
board/freescale/ls1021aqds/ddr.h | 10 +
board/freescale/ls2085a/ddr.c | 34 ++-
board/freescale/ls2085a/ddr.h | 29 +++
board/freescale/ls2085a/ls2085a.c | 21 +-
common/fdt_support.c | 11 +-
configs/ls1021aqds_ddr4_nor_defconfig | 3 +
drivers/ddr/fsl/ctrl_regs.c | 37 +++-
drivers/ddr/fsl/ddr4_dimm_params.c | 12 +-
drivers/ddr/fsl/fsl_ddr_gen4.c | 3 +-
drivers/ddr/fsl/interactive.c | 2 -
drivers/ddr/fsl/main.c | 244 ++++++++++++++-------
drivers/ddr/fsl/options.c | 27 ++-
drivers/ddr/fsl/util.c | 26 ++-
drivers/mtd/nand/fsl_elbc_nand.c | 8 +-
drivers/mtd/nand/fsl_ifc_nand.c | 21 +-
include/configs/ls1021aqds.h | 4 +-
include/configs/ls2085a_common.h | 87 +++++++-
include/configs/ls2085a_emu.h | 1 +
include/configs/ls2085a_simu.h | 9 +
include/fdt_support.h | 12 +
include/fsl_ddr.h | 15 +-
include/fsl_ddr_sdram.h | 18 +-
39 files changed, 1018 insertions(+), 251 deletions(-)
create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/fdt.c
create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/mp.c
create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/mp.h
create mode 100644 configs/ls1021aqds_ddr4_nor_defconfig
Thanks,
York
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-fsl-qoriq
2014-09-25 20:57 [U-Boot] Please pull u-boot-fsl-qoriq York Sun
@ 2014-09-27 11:36 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-09-27 11:36 UTC (permalink / raw)
To: u-boot
On Thu, Sep 25, 2014 at 01:57:16PM -0700, York Sun wrote:
> Tom,
>
> The following changes since commit 47d3debe1ab8315dc9ade22279e02f60eceda25b:
>
> Merge git://git.denx.de/u-boot-dm (2014-09-23 15:21:43 -0400)
>
> are available in the git repository at:
>
> u-boot
> git://git.denx.de/u-boot-fsl-qoriq.git master
>
> for you to fetch changes up to c7eae7fcb11bc7dab519fca8d8902f1fbc5c3c76:
>
> board/ls1021aqds: Add DDR4 support (2014-09-25 09:12:12 -0700)
>
> ----------------------------------------------------------------
> Arnab Basu (2):
> fdt_support: Move of_read_number to fdt_support.h
> fdt_support: Make of_bus_default_count_cells non static
>
> Prabhakar Kushwaha (3):
> board/ls2085a: Update env_addr after NOR flash relocation
> driver/mtd: Use generic timer API for FSL IFC, eLBC
> board/ls2085a: Add support of NOR and NAND flash for simulator
>
> York Sun (8):
> driver/ddr: Restruct driver to allow standalone memory space
> ARMv8/ls2085a_emu: Enable DP-DDR as standalone memory block
> driver/ddr/fsl: Fix tXP and tCKE
> armv8/fsl-lsch3: Release secondary cores from boot hold off with Boot Page
> ARMv8/ls2085a: Enable secondary cores
> ARMv8/ls2085a: Move u-boot location to make room for RCW
> driver/ddr/fsl: Fix DDR4 driver
> board/ls1021aqds: Add DDR4 support
>
> README | 6 +
> arch/arm/cpu/armv8/fsl-lsch3/Makefile | 2 +
> arch/arm/cpu/armv8/fsl-lsch3/cpu.c | 13 ++
> arch/arm/cpu/armv8/fsl-lsch3/cpu.h | 1 +
> arch/arm/cpu/armv8/fsl-lsch3/fdt.c | 58 +++++
> arch/arm/cpu/armv8/fsl-lsch3/lowlevel.S | 125 +++++++++--
> arch/arm/cpu/armv8/fsl-lsch3/mp.c | 168 ++++++++++++++
> arch/arm/cpu/armv8/fsl-lsch3/mp.h | 36 +++
> arch/arm/cpu/armv8/transition.S | 63 +-----
> arch/arm/include/asm/arch-fsl-lsch3/config.h | 6 +-
> arch/arm/include/asm/arch-fsl-lsch3/immap_lsch3.h | 35 +++
> arch/arm/include/asm/arch-ls102xa/config.h | 5 +
> arch/arm/include/asm/macro.h | 93 ++++++++
> arch/arm/lib/gic_64.S | 10 +-
> arch/powerpc/cpu/mpc85xx/cpu.c | 4 +-
> board/freescale/ls1021aqds/MAINTAINERS | 1 +
> board/freescale/ls1021aqds/ddr.c | 9 +-
> board/freescale/ls1021aqds/ddr.h | 10 +
> board/freescale/ls2085a/ddr.c | 34 ++-
> board/freescale/ls2085a/ddr.h | 29 +++
> board/freescale/ls2085a/ls2085a.c | 21 +-
> common/fdt_support.c | 11 +-
> configs/ls1021aqds_ddr4_nor_defconfig | 3 +
> drivers/ddr/fsl/ctrl_regs.c | 37 +++-
> drivers/ddr/fsl/ddr4_dimm_params.c | 12 +-
> drivers/ddr/fsl/fsl_ddr_gen4.c | 3 +-
> drivers/ddr/fsl/interactive.c | 2 -
> drivers/ddr/fsl/main.c | 244 ++++++++++++++-------
> drivers/ddr/fsl/options.c | 27 ++-
> drivers/ddr/fsl/util.c | 26 ++-
> drivers/mtd/nand/fsl_elbc_nand.c | 8 +-
> drivers/mtd/nand/fsl_ifc_nand.c | 21 +-
> include/configs/ls1021aqds.h | 4 +-
> include/configs/ls2085a_common.h | 87 +++++++-
> include/configs/ls2085a_emu.h | 1 +
> include/configs/ls2085a_simu.h | 9 +
> include/fdt_support.h | 12 +
> include/fsl_ddr.h | 15 +-
> include/fsl_ddr_sdram.h | 18 +-
> 39 files changed, 1018 insertions(+), 251 deletions(-)
> create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/fdt.c
> create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/mp.c
> create mode 100644 arch/arm/cpu/armv8/fsl-lsch3/mp.h
> create mode 100644 configs/ls1021aqds_ddr4_nor_defconfig
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140927/c17926e4/attachment.pgp>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] please pull u-boot-fsl-qoriq
@ 2014-11-25 17:37 York Sun
2014-11-26 16:25 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-11-25 17:37 UTC (permalink / raw)
To: u-boot
Tom,
The following changes since commit f196044dfd64745a163773c6c746f9e149ace127:
ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-fsl-qoriq.git master
for you to fetch changes up to 0ab172353e14dbdb7278755de6feae3fc4b54c2f:
arm: ls102xa: Select ge2_clk125 for eTSEC clock muxing (2014-11-24 09:27:24 -0800)
----------------------------------------------------------------
Alison Wang (3):
arm: ls102xa: Remove bit reversing for SCFG registers
arm: ls102xa: Add SystemID EEPROM support for LS1021ATWR board
arm: ls102xa: Select ge2_clk125 for eTSEC clock muxing
Jason Jin (1):
arm: ls102xa: Add snoop disable for slave port 0, 1 and 2
Nikhil Badola (4):
drivers: usb: fsl: Move USB Errata checking code
drivers : usb: fsl: Implement usb Erratum A007798 workaround
drivers: usb: fsl: Define USB configs for LS102XA
ls1: config: Enable USB EHCI Host on LS1021AQDS
Tang Yuantian (1):
arm: ls102xa: Fixed a register definition error
Yuan Yao (1):
ls102xa: ifc: nor: fix the write issue when bytes unaligned
Zhao Qiang (4):
qe: add u-qe support to arm board
qe: add qe support to ls1021aqds
qe: add qe support for ls1021a-twr board
u_qe: add u_qe_upload_firmware for u_qe
arch/arm/include/asm/arch-ls102xa/config.h | 8 ++
arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h | 5 +-
arch/arm/include/asm/global_data.h | 8 ++
arch/powerpc/cpu/mpc85xx/cmd_errata.c | 5 +
arch/powerpc/include/asm/config_mpc85xx.h | 1 +
arch/powerpc/include/asm/fsl_errata.h | 55 --------
board/freescale/common/sys_eeprom.c | 4 +-
board/freescale/ls1021aqds/ls1021aqds.c | 18 ++-
board/freescale/ls1021atwr/ls1021atwr.c | 23 +++-
drivers/Makefile | 1 +
drivers/qe/Makefile | 3 +-
drivers/qe/fdt.c | 2 +
drivers/qe/qe.c | 140 +++++++++++++++++++++
drivers/qe/qe.h | 5 +
drivers/usb/host/ehci-fsl.c | 5 +-
include/configs/ls1021aqds.h | 25 ++++
include/configs/ls1021atwr.h | 18 +++
include/fsl_usb.h | 77 ++++++++++++
include/usb/ehci-fsl.h | 3 +
19 files changed, 335 insertions(+), 71 deletions(-)
Thanks.
York
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] please pull u-boot-fsl-qoriq
2014-11-25 17:37 [U-Boot] please " York Sun
@ 2014-11-26 16:25 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-11-26 16:25 UTC (permalink / raw)
To: u-boot
On Tue, Nov 25, 2014 at 09:37:19AM -0800, York Sun wrote:
> Tom,
>
> The following changes since commit f196044dfd64745a163773c6c746f9e149ace127:
>
> ARM: atmel: add sama5d4 xplained ultra board support (2014-11-17 08:47:18 -0500)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-fsl-qoriq.git master
>
> for you to fetch changes up to 0ab172353e14dbdb7278755de6feae3fc4b54c2f:
>
> arm: ls102xa: Select ge2_clk125 for eTSEC clock muxing (2014-11-24 09:27:24 -0800)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20141126/fe490419/attachment.pgp>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-11-26 16:25 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-25 20:57 [U-Boot] Please pull u-boot-fsl-qoriq York Sun
2014-09-27 11:36 ` Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2014-11-25 17:37 [U-Boot] please " York Sun
2014-11-26 16:25 ` Tom Rini
2014-09-08 17:45 [U-Boot] Please " York Sun
2014-09-10 12:29 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox