public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-fsl-qoriq.git master
@ 2014-12-11 18:52 York Sun
  2014-12-11 19:15 ` York Sun
  0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-12-11 18:52 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit 32fdf0e4d82bdca5d64d86330e461e59685f9959:

  Prepare v2015.01-rc3 (2014-12-08 16:35:08 -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 0de15707a71ec64dbc1ead2831457f1550179ea7:

  kconfig: ls102xa: Change the prompt messages (2014-12-11 09:42:41 -0800)

----------------------------------------------------------------
Alison Wang (12):
      ls102xa: pblimage: Add pblimage tool support for LS102xA
      spl: Use u-boot.img instead of u-boot.bin
      arm: spl: Add I2C linker list in generic .lds
      kconfig: ls1021a: add SUPPORT_SPL
      ls102xa: qixis: Add CONFIG_QIXIS_I2C_ACCESS macro
      arm: ls102xa: Add SD boot support for LS1021AQDS board
      arm: ls102xa: Add SD boot support for LS1021ATWR board
      arm: ls1021a: Add CONFIG_DOS_PARTITION and CONFIG_CMD_FAT support
      arm: ls102xa: Fix SD/NAND/QSPI boot defination error for QE support
      arm: ls102xa: Add QSPI boot support for LS1021AQDS/TWR board
      arm: ls102xa: Add NAND boot support for LS1021AQDS board
      kconfig: ls102xa: Change the prompt messages

Chenhui Zhao (1):
      ls1021aqds: set the default I2C channel before DDR init

Jaiprakash Singh (1):
      driver/mtd: Fix IFC compilation warnings

Minghuan Lian (1):
      arm: ls102xa: Update PCIe dts node status

Nikhil Badola (3):
      drivers: usb: Make usb device-tree fixup code architecture independent
      drivers: usb: fsl: Add USB device-tree errata framework
      drivers: usb: fsl: Check USB Erratum A007792 applicability

Tang Yuantian (2):
      arm: ls102xa: fixed a bus frequency setting error
      fsl/sleep: updated the deep sleep framework for QorIQ platforms

Xiubo Li (6):
      ARM: HYP/non-sec: add the pen address BE mode support.
      ARM: HYP/non-sec: Fix the ARCH Timer frequency setting.
      ls1021a: adding a secondary core boot address and kick functions
      ls102xa: changing a few targets' configurations.
      ARM: ls102xa: allow all the peripheral access permission as R/W.
      ARM: ls102xa: Setting device's stream id for SMMUs.

Yao Yuan (1):
      ls1021aqds: add hwconfig setting to do pin mux

chenhui zhao (1):
      arm: ls102xa: clear EPU registers for deep sleep

 Makefile                                           |   11 +-
 arch/arm/Kconfig                                   |    6 +-
 arch/arm/cpu/armv7/ls102xa/Makefile                |    2 +
 arch/arm/cpu/armv7/ls102xa/cpu.c                   |   34 +++
 arch/arm/cpu/armv7/ls102xa/fdt.c                   |    2 +-
 arch/arm/cpu/armv7/ls102xa/fsl_epu.c               |   57 ++++
 arch/arm/cpu/armv7/ls102xa/fsl_epu.h               |   68 +++++
 arch/arm/cpu/armv7/ls102xa/spl.c                   |   33 +++
 arch/arm/cpu/armv7/nonsec_virt.S                   |    7 +-
 arch/arm/cpu/u-boot-spl.lds                        |    3 +
 arch/arm/include/asm/arch-ls102xa/config.h         |    9 +
 arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h  |    9 +
 .../include/asm/arch-ls102xa/ls102xa_stream_id.h   |   17 ++
 arch/arm/include/asm/arch-ls102xa/ns_access.h      |  118 ++++++++
 arch/arm/include/asm/arch-ls102xa/spl.h            |   20 ++
 arch/arm/include/asm/pcie_layerscape.h             |   13 +
 arch/powerpc/cpu/mpc8xxx/fdt.c                     |  104 -------
 board/freescale/common/Makefile                    |   10 +
 board/freescale/common/arm_sleep.c                 |   95 +++++++
 board/freescale/common/ls102xa_stream_id.c         |   18 ++
 board/freescale/common/mpc85xx_sleep.c             |   88 ++++++
 board/freescale/common/ns_access.c                 |   30 +++
 board/freescale/common/qixis.h                     |    7 +
 board/freescale/common/sleep.h                     |   21 ++
 board/freescale/ls1021aqds/MAINTAINERS             |    3 +
 board/freescale/ls1021aqds/ddr.c                   |    5 +-
 board/freescale/ls1021aqds/ls1021aqds.c            |  283 ++++++++++++++++++--
 board/freescale/ls1021aqds/ls102xa_pbi.cfg         |   12 +
 board/freescale/ls1021aqds/ls102xa_rcw_nand.cfg    |    7 +
 board/freescale/ls1021aqds/ls102xa_rcw_sd.cfg      |   14 +
 board/freescale/ls1021atwr/MAINTAINERS             |    2 +
 board/freescale/ls1021atwr/ls1021atwr.c            |  151 +++++++++++
 board/freescale/ls1021atwr/ls102xa_pbi.cfg         |   12 +
 board/freescale/ls1021atwr/ls102xa_rcw_sd.cfg      |   14 +
 configs/ls1021aqds_nand_defconfig                  |    4 +
 configs/ls1021aqds_qspi_defconfig                  |    3 +
 configs/ls1021aqds_sdcard_defconfig                |    4 +
 configs/ls1021atwr_qspi_defconfig                  |    3 +
 configs/ls1021atwr_sdcard_defconfig                |    4 +
 drivers/ddr/fsl/arm_ddr_gen3.c                     |   45 +++-
 drivers/ddr/fsl/fsl_ddr_gen4.c                     |   44 ++-
 drivers/ddr/fsl/mpc85xx_ddr_gen3.c                 |   67 ++---
 drivers/mtd/nand/fsl_ifc_nand.c                    |    2 +-
 drivers/mtd/nand/fsl_ifc_spl.c                     |   10 +
 drivers/pci/Makefile                               |    1 +
 drivers/pci/pcie_layerscape.c                      |   51 ++++
 drivers/usb/host/ehci-fsl.c                        |  186 +++++++++++++
 include/configs/ls1021aqds.h                       |  175 +++++++++++-
 include/configs/ls1021atwr.h                       |   95 ++++++-
 include/configs/sun7i.h                            |    1 +
 include/fsl_ddr_sdram.h                            |   12 +-
 include/fsl_usb.h                                  |   23 ++
 tools/pblimage.c                                   |  110 +++++---
 53 files changed, 1904 insertions(+), 221 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_epu.c
 create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_epu.h
 create mode 100644 arch/arm/cpu/armv7/ls102xa/spl.c
 create mode 100644 arch/arm/include/asm/arch-ls102xa/ls102xa_stream_id.h
 create mode 100644 arch/arm/include/asm/arch-ls102xa/ns_access.h
 create mode 100644 arch/arm/include/asm/arch-ls102xa/spl.h
 create mode 100644 arch/arm/include/asm/pcie_layerscape.h
 create mode 100644 board/freescale/common/arm_sleep.c
 create mode 100644 board/freescale/common/ls102xa_stream_id.c
 create mode 100644 board/freescale/common/mpc85xx_sleep.c
 create mode 100644 board/freescale/common/ns_access.c
 create mode 100644 board/freescale/common/sleep.h
 create mode 100644 board/freescale/ls1021aqds/ls102xa_pbi.cfg
 create mode 100644 board/freescale/ls1021aqds/ls102xa_rcw_nand.cfg
 create mode 100644 board/freescale/ls1021aqds/ls102xa_rcw_sd.cfg
 create mode 100644 board/freescale/ls1021atwr/ls102xa_pbi.cfg
 create mode 100644 board/freescale/ls1021atwr/ls102xa_rcw_sd.cfg
 create mode 100644 configs/ls1021aqds_nand_defconfig
 create mode 100644 configs/ls1021aqds_qspi_defconfig
 create mode 100644 configs/ls1021aqds_sdcard_defconfig
 create mode 100644 configs/ls1021atwr_qspi_defconfig
 create mode 100644 configs/ls1021atwr_sdcard_defconfig
 create mode 100644 drivers/pci/pcie_layerscape.c

Thanks.

York

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-fsl-qoriq.git master
@ 2014-12-11 20:41 York Sun
  2014-12-12  1:33 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: York Sun @ 2014-12-11 20:41 UTC (permalink / raw)
  To: u-boot

Tom,

This replace PR sent earlier today.

The following changes since commit 32fdf0e4d82bdca5d64d86330e461e59685f9959:

  Prepare v2015.01-rc3 (2014-12-08 16:35:08 -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 d0419f400af6f4bbe5c4ee5c97f6fbbdedec6cf3:

  ARM: HYP/non-sec: Fix the ARCH Timer frequency setting for sun7i (2014-12-11
12:37:42 -0800)

----------------------------------------------------------------
Alison Wang (12):
      ls102xa: pblimage: Add pblimage tool support for LS102xA
      spl: Use u-boot.img instead of u-boot.bin
      arm: spl: Add I2C linker list in generic .lds
      kconfig: ls1021a: add SUPPORT_SPL
      ls102xa: qixis: Add CONFIG_QIXIS_I2C_ACCESS macro
      arm: ls102xa: Add SD boot support for LS1021AQDS board
      arm: ls102xa: Add SD boot support for LS1021ATWR board
      arm: ls1021a: Add CONFIG_DOS_PARTITION and CONFIG_CMD_FAT support
      arm: ls102xa: Fix SD/NAND/QSPI boot defination error for QE support
      arm: ls102xa: Add QSPI boot support for LS1021AQDS/TWR board
      arm: ls102xa: Add NAND boot support for LS1021AQDS board
      kconfig: ls102xa: Change the prompt messages

Chenhui Zhao (1):
      ls1021aqds: set the default I2C channel before DDR init

Jaiprakash Singh (1):
      driver/mtd: Fix IFC compilation warnings

Minghuan Lian (1):
      arm: ls102xa: Update PCIe dts node status

Nikhil Badola (3):
      drivers: usb: Make usb device-tree fixup code architecture independent
      drivers: usb: fsl: Add USB device-tree errata framework
      drivers: usb: fsl: Check USB Erratum A007792 applicability

Tang Yuantian (2):
      arm: ls102xa: fixed a bus frequency setting error
      fsl/sleep: updated the deep sleep framework for QorIQ platforms

Xiubo Li (7):
      ARM: HYP/non-sec: add the pen address BE mode support.
      ARM: HYP/non-sec: Fix the ARCH Timer frequency setting.
      ls1021a: adding a secondary core boot address and kick functions
      ls102xa: changing a few targets' configurations.
      ARM: ls102xa: allow all the peripheral access permission as R/W.
      ARM: ls102xa: Setting device's stream id for SMMUs.
      ARM: HYP/non-sec: Fix the ARCH Timer frequency setting for sun7i

Yao Yuan (1):
      ls1021aqds: add hwconfig setting to do pin mux

chenhui zhao (1):
      arm: ls102xa: clear EPU registers for deep sleep

 Makefile                                           |   11 +-
 arch/arm/Kconfig                                   |    6 +-
 arch/arm/cpu/armv7/ls102xa/Makefile                |    2 +
 arch/arm/cpu/armv7/ls102xa/cpu.c                   |   34 +++
 arch/arm/cpu/armv7/ls102xa/fdt.c                   |    2 +-
 arch/arm/cpu/armv7/ls102xa/fsl_epu.c               |   57 ++++
 arch/arm/cpu/armv7/ls102xa/fsl_epu.h               |   68 +++++
 arch/arm/cpu/armv7/ls102xa/spl.c                   |   33 +++
 arch/arm/cpu/armv7/nonsec_virt.S                   |    7 +-
 arch/arm/cpu/u-boot-spl.lds                        |    3 +
 arch/arm/include/asm/arch-ls102xa/config.h         |    9 +
 arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h  |    9 +
 .../include/asm/arch-ls102xa/ls102xa_stream_id.h   |   17 ++
 arch/arm/include/asm/arch-ls102xa/ns_access.h      |  118 ++++++++
 arch/arm/include/asm/arch-ls102xa/spl.h            |   20 ++
 arch/arm/include/asm/pcie_layerscape.h             |   13 +
 arch/powerpc/cpu/mpc8xxx/fdt.c                     |  104 -------
 board/freescale/common/Makefile                    |   10 +
 board/freescale/common/arm_sleep.c                 |   95 +++++++
 board/freescale/common/ls102xa_stream_id.c         |   18 ++
 board/freescale/common/mpc85xx_sleep.c             |   88 ++++++
 board/freescale/common/ns_access.c                 |   30 +++
 board/freescale/common/qixis.h                     |    7 +
 board/freescale/common/sleep.h                     |   21 ++
 board/freescale/ls1021aqds/MAINTAINERS             |    3 +
 board/freescale/ls1021aqds/ddr.c                   |    5 +-
 board/freescale/ls1021aqds/ls1021aqds.c            |  283 ++++++++++++++++++--
 board/freescale/ls1021aqds/ls102xa_pbi.cfg         |   12 +
 board/freescale/ls1021aqds/ls102xa_rcw_nand.cfg    |    7 +
 board/freescale/ls1021aqds/ls102xa_rcw_sd.cfg      |   14 +
 board/freescale/ls1021atwr/MAINTAINERS             |    2 +
 board/freescale/ls1021atwr/ls1021atwr.c            |  151 +++++++++++
 board/freescale/ls1021atwr/ls102xa_pbi.cfg         |   12 +
 board/freescale/ls1021atwr/ls102xa_rcw_sd.cfg      |   14 +
 configs/ls1021aqds_nand_defconfig                  |    4 +
 configs/ls1021aqds_qspi_defconfig                  |    3 +
 configs/ls1021aqds_sdcard_defconfig                |    4 +
 configs/ls1021atwr_qspi_defconfig                  |    3 +
 configs/ls1021atwr_sdcard_defconfig                |    4 +
 drivers/ddr/fsl/arm_ddr_gen3.c                     |   45 +++-
 drivers/ddr/fsl/fsl_ddr_gen4.c                     |   44 ++-
 drivers/ddr/fsl/mpc85xx_ddr_gen3.c                 |   67 ++---
 drivers/mtd/nand/fsl_ifc_nand.c                    |    2 +-
 drivers/mtd/nand/fsl_ifc_spl.c                     |   10 +
 drivers/pci/Makefile                               |    1 +
 drivers/pci/pcie_layerscape.c                      |   51 ++++
 drivers/usb/host/ehci-fsl.c                        |  186 +++++++++++++
 include/configs/ls1021aqds.h                       |  175 +++++++++++-
 include/configs/ls1021atwr.h                       |   95 ++++++-
 include/configs/sun7i.h                            |    1 +
 include/fsl_ddr_sdram.h                            |   12 +-
 include/fsl_usb.h                                  |   23 ++
 tools/pblimage.c                                   |  110 +++++---
 53 files changed, 1904 insertions(+), 221 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_epu.c
 create mode 100644 arch/arm/cpu/armv7/ls102xa/fsl_epu.h
 create mode 100644 arch/arm/cpu/armv7/ls102xa/spl.c
 create mode 100644 arch/arm/include/asm/arch-ls102xa/ls102xa_stream_id.h
 create mode 100644 arch/arm/include/asm/arch-ls102xa/ns_access.h
 create mode 100644 arch/arm/include/asm/arch-ls102xa/spl.h
 create mode 100644 arch/arm/include/asm/pcie_layerscape.h
 create mode 100644 board/freescale/common/arm_sleep.c
 create mode 100644 board/freescale/common/ls102xa_stream_id.c
 create mode 100644 board/freescale/common/mpc85xx_sleep.c
 create mode 100644 board/freescale/common/ns_access.c
 create mode 100644 board/freescale/common/sleep.h
 create mode 100644 board/freescale/ls1021aqds/ls102xa_pbi.cfg
 create mode 100644 board/freescale/ls1021aqds/ls102xa_rcw_nand.cfg
 create mode 100644 board/freescale/ls1021aqds/ls102xa_rcw_sd.cfg
 create mode 100644 board/freescale/ls1021atwr/ls102xa_pbi.cfg
 create mode 100644 board/freescale/ls1021atwr/ls102xa_rcw_sd.cfg
 create mode 100644 configs/ls1021aqds_nand_defconfig
 create mode 100644 configs/ls1021aqds_qspi_defconfig
 create mode 100644 configs/ls1021aqds_sdcard_defconfig
 create mode 100644 configs/ls1021atwr_qspi_defconfig
 create mode 100644 configs/ls1021atwr_sdcard_defconfig
 create mode 100644 drivers/pci/pcie_layerscape.c

Thanks.

York

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [U-Boot] Please pull u-boot-fsl-qoriq.git master
@ 2016-01-27 17:30 york sun
  2016-01-28 23:18 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: york sun @ 2016-01-27 17:30 UTC (permalink / raw)
  To: u-boot

Tom,

The following changes since commit 12f229ea8f6c8e20f8fd07906eafc853c4c354a9:

  Merge git://git.denx.de/u-boot-fdt (2016-01-22 17:01:22 -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 b0f20caf6570fbc4d19c41dcedf9679784042860:

  armv8/ls1043aqds: add QSPI boot support (2016-01-27 08:29:09 -0800)

----------------------------------------------------------------
Aneesh Bansal (11):
      SECURE BOOT: change prototype of fsl_secboot_validate function
      SECURE BOOT: separate functions for reading keys
      SECURE BOOT: separate function created for signature
      SECURE BOOT: support for validation of dynamic image
      secure_boot: include/configs: make secure boot header file uniform
      secure_boot: include/configs: move definition of CONFIG_CMD_BLOB
      secure_boot: split the secure boot functionality in two parts
      secure_boot: create function to determine boot mode
      secure_boot: enable chain of trust for ARM platforms
      secure_boot: enable chain of trust for PowerPC platforms
      secure_boot: change error handler for esbc_validate

Ed Swarthout (1):
      drivers/ddr/fsl: fsl_ddr_sdram_size remove unused controllers

Gong Qianyu (9):
      freescale/qixis: Add support for booting from SD/QSPI
      armv8/ls1043aqds: fix qixis_reset command issue
      armv8/ls1043aqds: enable qixis_reset command to boot from NAND/SD
      spi: fsl_qspi: fix compile warning for 64-bit platform
      spi: fsl_qspi: Fix qspi_op_rdid memcpy issue
      spi: fsl_qspi: Fix qspi_op_rdsr memcpy issue
      dm: env_sf: fix saveenv() to use driver model
      armv8/ls1043aqds: add DSPI support
      armv8/ls1043aqds: add QSPI support in SD boot

Prabhakar Kushwaha (8):
      armv8: fsl-lsch3: fixup SYSCLK frequency in device tree
      driver: net: fsl-mc: Add version check for MC objects
      driver: net: fsl-mc: flib changes for MC FW 9.0.0
      driver: net: fsl-mc: Prepare extended cfg for DPNI create
      driver: net: ldpaa: Report back only error frames for tx
      driver: net: ldpaa: Increase num of buffers for a pool
      driver: net: ldpaa: Add debug info of printing DPMAC stats
      driver: net: fsl-mc: Remove portal id hard-coding

Pratiyush Mohan Srivastava (4):
      armv8: Enable all 8 DPMAC ports in LS2080A Personality
      armv8: ls2040a: Add support of LS2040A SoC
      armv8: ls2080a: Increase MC's DDR size to 512 MB
      drivers: net: fsl_mc: Compare pointer value qbman_swp_mc_start

Qianyu Gong (1):
      armv8/ls1043aqds: add QSPI boot support

Shaohui Xie (3):
      armv8/ls1043aqds: Add support for >2GB memory
      armv8: fsl-layerscape: fixes lsch2 serdes registers define
      armv8/ls1043aqds: Select lpuart pins of various muxes

Shengzhou Liu (2):
      fsl/ddr: Add workaround for ERRATUM_A009942
      driver/ddr/fsl: Add workaround for A009663

Tang Yuantian (1):
      arm: ls1021a: Adjust sata register default values

Wenbin Song (2):
      armv8/ls1043aqds: Spilt off board device tree
      armv8/ls1043aqds: Add lpuart support

Yangbo Lu (2):
      mmc: fsl_esdhc: increase data transaction timeout to 500ms
      mmc: fsl_esdhc: set Abort command type for CMD12

 arch/arm/cpu/armv7/ls102xa/ls102xa_sata.c          |   10 +-
 arch/arm/cpu/armv8/fsl-layerscape/fdt.c            |    3 +
 arch/arm/cpu/armv8/fsl-layerscape/ls2080a_serdes.c |    5 -
 arch/arm/cpu/armv8/fsl-layerscape/soc.c            |    9 +
 arch/arm/dts/Makefile                              |    3 +-
 arch/arm/dts/fsl-ls1043a-qds-duart.dts             |   16 +
 arch/arm/dts/fsl-ls1043a-qds-lpuart.dts            |   16 +
 .../{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi}  |    5 +-
 arch/arm/dts/fsl-ls1043a.dtsi                      |   64 +++
 arch/arm/include/asm/arch-fsl-layerscape/config.h  |    4 +
 arch/arm/include/asm/arch-fsl-layerscape/cpu.h     |    3 +
 .../include/asm/arch-fsl-layerscape/immap_lsch2.h  |   70 ++-
 arch/arm/include/asm/arch-fsl-layerscape/soc.h     |    1 +
 arch/arm/include/asm/arch-ls102xa/config.h         |    1 +
 arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h  |    2 +
 arch/arm/include/asm/fsl_secure_boot.h             |   20 +-
 arch/powerpc/cpu/mpc85xx/cmd_errata.c              |    3 +
 arch/powerpc/cpu/mpc85xx/cpu_init.c                |   14 +
 arch/powerpc/include/asm/config_mpc85xx.h          |    2 +
 arch/powerpc/include/asm/fsl_secure_boot.h         |   47 +-
 arch/powerpc/include/asm/immap_85xx.h              |    3 +
 board/freescale/common/Makefile                    |    1 +
 board/freescale/common/cmd_esbc_validate.c         |   28 +-
 board/freescale/common/fsl_chain_of_trust.c        |   70 +++
 board/freescale/common/fsl_validate.c              |  323 +++++++-----
 board/freescale/common/qixis.c                     |   36 ++
 board/freescale/ls1021aqds/ls1021aqds.c            |    4 +
 board/freescale/ls1021atwr/ls1021atwr.c            |    4 +
 board/freescale/ls1043aqds/MAINTAINERS             |    2 +
 board/freescale/ls1043aqds/README                  |    1 +
 board/freescale/ls1043aqds/ddr.c                   |   19 +-
 board/freescale/ls1043aqds/ls1043aqds.c            |   27 +-
 .../ls1043aqds/ls1043aqds_rcw_sd_qspi.cfg          |    8 +
 common/env_sf.c                                    |   29 ++
 configs/ls1043aqds_defconfig                       |    5 +-
 configs/ls1043aqds_lpuart_defconfig                |   10 +
 configs/ls1043aqds_nand_defconfig                  |    5 +
 configs/ls1043aqds_nor_ddr3_defconfig              |    5 +
 configs/ls1043aqds_qspi_defconfig                  |    9 +
 configs/ls1043aqds_sdcard_ifc_defconfig            |    5 +
 configs/ls1043aqds_sdcard_qspi_defconfig           |   10 +
 drivers/ddr/fsl/fsl_ddr_gen4.c                     |   28 +
 drivers/ddr/fsl/main.c                             |    1 +
 drivers/mmc/fsl_esdhc.c                            |   14 +-
 drivers/net/fsl-mc/dpio/qbman_portal.c             |    4 +-
 drivers/net/fsl-mc/dpni.c                          |   81 +++
 drivers/net/fsl-mc/mc.c                            |   67 ++-
 drivers/net/ldpaa_eth/ldpaa_eth.c                  |  122 ++++-
 drivers/net/ldpaa_eth/ldpaa_eth.h                  |    2 +-
 drivers/spi/fsl_qspi.c                             |   20 +-
 ...nfig_fsl_secboot.h => config_fsl_chain_trust.h} |   49 +-
 include/configs/B4860QDS.h                         |    4 -
 include/configs/BSC9132QDS.h                       |    4 -
 include/configs/P1010RDB.h                         |    4 -
 include/configs/P2041RDB.h                         |    4 -
 include/configs/T102xQDS.h                         |   10 +-
 include/configs/T102xRDB.h                         |   10 +-
 include/configs/T1040QDS.h                         |    3 -
 include/configs/T104xRDB.h                         |    3 -
 include/configs/T208xQDS.h                         |    4 -
 include/configs/T208xRDB.h                         |    4 -
 include/configs/T4240QDS.h                         |    4 -
 include/configs/T4240RDB.h                         |    9 -
 include/configs/corenet_ds.h                       |    4 -
 include/configs/ls1021aqds.h                       |    5 +-
 include/configs/ls1021atwr.h                       |    5 +-
 include/configs/ls1043a_common.h                   |   33 ++
 include/configs/ls1043aqds.h                       |   52 +-
 include/configs/ls1043ardb.h                       |   18 -
 include/configs/ls2080a_common.h                   |    2 +-
 include/fsl-mc/fsl_dpbp.h                          |    2 +-
 include/fsl-mc/fsl_dpio.h                          |    5 +-
 include/fsl-mc/fsl_dpmac.h                         |    2 +-
 include/fsl-mc/fsl_dpmng.h                         |    2 +-
 include/fsl-mc/fsl_dpni.h                          |  539 ++++++++++++++------
 include/fsl-mc/fsl_dprc.h                          |   94 +++-
 include/fsl-mc/fsl_mc_cmd.h                        |    5 +-
 include/fsl_ddr_sdram.h                            |    1 +
 include/fsl_validate.h                             |   10 +-
 79 files changed, 1630 insertions(+), 502 deletions(-)
 create mode 100644 arch/arm/dts/fsl-ls1043a-qds-duart.dts
 create mode 100644 arch/arm/dts/fsl-ls1043a-qds-lpuart.dts
 rename arch/arm/dts/{fsl-ls1043a-qds.dts => fsl-ls1043a-qds.dtsi} (98%)
 create mode 100644 board/freescale/common/fsl_chain_of_trust.c
 create mode 100644 board/freescale/ls1043aqds/ls1043aqds_rcw_sd_qspi.cfg
 create mode 100644 configs/ls1043aqds_lpuart_defconfig
 create mode 100644 configs/ls1043aqds_qspi_defconfig
 create mode 100644 configs/ls1043aqds_sdcard_qspi_defconfig
 rename include/{config_fsl_secboot.h => config_fsl_chain_trust.h} (76%)

Thanks.

York

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

end of thread, other threads:[~2016-01-28 23:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-11 18:52 [U-Boot] Please pull u-boot-fsl-qoriq.git master York Sun
2014-12-11 19:15 ` York Sun
  -- strict thread matches above, loose matches on Subject: below --
2014-12-11 20:41 York Sun
2014-12-12  1:33 ` Tom Rini
2016-01-27 17:30 york sun
2016-01-28 23:18 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox