Tom, The following changes since commit c43fd23cf619856b0763a64a6a3bcf3663058c49:
Prepare v2014.10 (2014-10-14 04:47:15 -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 ba4740205d22d31da289f5b6b2f8db7d27896f40: ls102x: Add support for secure boot and enable blob command (2014-10-16 14:21:26 -0700) ---------------------------------------------------------------- Ruchika Gupta (10): powerpc/P1010RDB:Update RESET_VECTOR_ADDRESS for 768KB u-boot size fsl_sec : Move SEC CCSR definition to common include fsl_sec : Change accessor function to take care of endianness fsl_sec: Add hardware accelerated SHA256 and SHA1 mpc85xx: configs - Add hash command in freescale platforms ls102x: configs - Add hash command in freescale LS1 platforms powerpc/mpc85xx: SECURE BOOT - Bypass PAMU in case of secure boot crypto/fsl: Add command for encapsulating/decapsulating blobs mpc85xx: configs - Enable blob command in freescale platforms ls102x: Add support for secure boot and enable blob command README | 6 + arch/arm/include/asm/arch-ls102xa/config.h | 4 + arch/powerpc/cpu/mpc85xx/cpu_init.c | 18 +- arch/powerpc/cpu/mpc85xx/fdt.c | 2 +- arch/powerpc/cpu/mpc85xx/liodn.c | 4 +- arch/powerpc/cpu/mpc8xxx/fdt.c | 4 +- arch/powerpc/include/asm/config_mpc85xx.h | 1 + arch/powerpc/include/asm/immap_85xx.h | 73 +-- arch/powerpc/include/asm/types.h | 4 + board/freescale/ls1021aqds/MAINTAINERS | 1 + board/freescale/ls1021aqds/ls1021aqds.c | 10 + board/freescale/ls1021atwr/MAINTAINERS | 1 + board/freescale/ls1021atwr/ls1021atwr.c | 10 + common/Makefile | 2 + common/cmd_blob.c | 109 +++++ configs/ls1021aqds_nor_SECURE_BOOT_defconfig | 3 + configs/ls1021atwr_nor_SECURE_BOOT_defconfig | 3 + drivers/crypto/Makefile | 1 + drivers/crypto/fsl/Makefile | 10 + drivers/crypto/fsl/desc.h | 651 ++++++++++++++++++++++++++ drivers/crypto/fsl/desc_constr.h | 280 +++++++++++ drivers/crypto/fsl/error.c | 258 ++++++++++ drivers/crypto/fsl/fsl_blob.c | 61 +++ drivers/crypto/fsl/fsl_hash.c | 77 +++ drivers/crypto/fsl/jobdesc.c | 125 +++++ drivers/crypto/fsl/jobdesc.h | 29 ++ drivers/crypto/fsl/jr.c | 462 ++++++++++++++++++ drivers/crypto/fsl/jr.h | 97 ++++ include/configs/B4860QDS.h | 11 + include/configs/BSC9131RDB.h | 7 + include/configs/BSC9132QDS.h | 11 + include/configs/C29XPCIE.h | 7 + include/configs/P1010RDB.h | 13 +- include/configs/P2041RDB.h | 11 + include/configs/T1040QDS.h | 8 + include/configs/T104xRDB.h | 8 + include/configs/T208xQDS.h | 8 + include/configs/T208xRDB.h | 8 + include/configs/T4240QDS.h | 11 + include/configs/T4240RDB.h | 8 + include/configs/corenet_ds.h | 11 + include/configs/ls1021aqds.h | 11 + include/configs/ls1021atwr.h | 12 + include/fsl_sec.h | 181 +++++++ 44 files changed, 2558 insertions(+), 74 deletions(-) create mode 100644 common/cmd_blob.c create mode 100644 configs/ls1021aqds_nor_SECURE_BOOT_defconfig create mode 100644 configs/ls1021atwr_nor_SECURE_BOOT_defconfig create mode 100644 drivers/crypto/fsl/Makefile create mode 100644 drivers/crypto/fsl/desc.h create mode 100644 drivers/crypto/fsl/desc_constr.h create mode 100644 drivers/crypto/fsl/error.c create mode 100644 drivers/crypto/fsl/fsl_blob.c create mode 100644 drivers/crypto/fsl/fsl_hash.c create mode 100644 drivers/crypto/fsl/jobdesc.c create mode 100644 drivers/crypto/fsl/jobdesc.h create mode 100644 drivers/crypto/fsl/jr.c create mode 100644 drivers/crypto/fsl/jr.h create mode 100644 include/fsl_sec.h Thanks, York _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot