All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/14] Add Support for Secure Boot on LS208x
@ 2016-01-27 10:00 Saksham Jain
  2016-01-27 10:00 ` [U-Boot] [PATCH 01/14] armv8: ls2080: Add SFP Configs for LS2080/LS2085 Saksham Jain
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Saksham Jain @ 2016-01-27 10:00 UTC (permalink / raw)
  To: u-boot

Secure Boot ESBC has been enabled on FSL LS208x platforms.
This patchset is dependent on
http://patchwork.ozlabs.org/patch/571612/

Saksham Jain (14):
  armv8: ls2080: Add SFP Configs for LS2080/LS2085
  armv8: ls2080: Add Secure Boot configs: SEC, Security Monitor, SRK and
    RCW
  SECURE BOOT: Add new ESBC header for ls-ch3 Secure Boot
  SECURE BOOT: Add Secure Boot support on ls2080aqds/rdb
  armv8: fsl-lsch3: Add bootscript header address for Secure Boot
  SECURE BOOT: Copy Bootscript and header from NOR to DDR for LS2080/5
  SECURE BOOT: Change env variable "fdt_high" for LS2080a and LS2085a
  armv8 : ls2080: Add config for endianess of CCSR GUR
  armv8: fsl-lsch3: Disable SMMU during Secure Boot
  crypto/fsl: Correct 64bit Write when MMU disabled
  crypto/fsl: Make CAAM transactions cacheable
  SECURE_BOOT: Use default bootargs during Secure Boot
  SECURE BOOT: Halt execution when secure boot fail after reset request
  SECURE_BOOT: Enable IE (Key extention) Feature in Ls2085a & LS2088a

 arch/arm/cpu/armv8/fsl-layerscape/soc.c            |  18 ++-
 arch/arm/include/asm/arch-fsl-layerscape/config.h  |  18 +++
 .../include/asm/arch-fsl-layerscape/immap_lsch3.h  |  28 ++++
 arch/arm/include/asm/fsl_secure_boot.h             |  45 ++++++-
 board/freescale/common/cmd_esbc_validate.c         |   2 +-
 board/freescale/common/fsl_validate.c              | 149 ++++++++++++++++++---
 board/freescale/ls2080aqds/ls2080aqds.c            |   5 +-
 board/freescale/ls2080ardb/ls2080ardb.c            |   5 +-
 configs/ls2080aqds_SECURE_BOOT_defconfig           |  15 +++
 configs/ls2080ardb_SECURE_BOOT_defconfig           |  15 +++
 configs/ls2085aqds_SECURE_BOOT_defconfig           |  15 +++
 configs/ls2085ardb_SECURE_BOOT_defconfig           |  15 +++
 drivers/crypto/fsl/desc_constr.h                   |   7 +-
 drivers/crypto/fsl/jr.c                            |  13 ++
 drivers/crypto/fsl/jr.h                            |   3 +
 include/config_fsl_chain_trust.h                   |  25 ++--
 include/configs/ls2080aqds.h                       |   2 +
 include/configs/ls2080ardb.h                       |   2 +
 include/fsl_secboot_err.h                          |   3 +
 include/fsl_sfp.h                                  |   3 +-
 include/fsl_validate.h                             |  84 ++++++++++--
 21 files changed, 422 insertions(+), 50 deletions(-)
 create mode 100644 configs/ls2080aqds_SECURE_BOOT_defconfig
 create mode 100644 configs/ls2080ardb_SECURE_BOOT_defconfig
 create mode 100644 configs/ls2085aqds_SECURE_BOOT_defconfig
 create mode 100644 configs/ls2085ardb_SECURE_BOOT_defconfig

-- 
1.8.1.4

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

end of thread, other threads:[~2016-01-27 10:01 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-27 10:00 [U-Boot] [PATCH 00/14] Add Support for Secure Boot on LS208x Saksham Jain
2016-01-27 10:00 ` [U-Boot] [PATCH 01/14] armv8: ls2080: Add SFP Configs for LS2080/LS2085 Saksham Jain
2016-01-27 10:00 ` [U-Boot] [PATCH 02/14] armv8: ls2080: Add Secure Boot configs: SEC, Security Monitor, SRK and RCW Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 03/14] SECURE BOOT: Add new ESBC header for ls-ch3 Secure Boot Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 04/14] SECURE BOOT: Add Secure Boot support on ls2080aqds/rdb Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 05/14] armv8: fsl-lsch3: Add bootscript header address for Secure Boot Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 06/14] SECURE BOOT: Copy Bootscript and header from NOR to DDR for LS2080/5 Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 07/14] SECURE BOOT: Change env variable "fdt_high" for LS2080a and LS2085a Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 08/14] armv8 : ls2080: Add config for endianess of CCSR GUR Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 09/14] armv8: fsl-lsch3: Disable SMMU during Secure Boot Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 10/14] crypto/fsl: Correct 64bit Write when MMU disabled Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 11/14] crypto/fsl: Make CAAM transactions cacheable Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 12/14] SECURE_BOOT: Use default bootargs during Secure Boot Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 13/14] SECURE BOOT: Halt execution when secure boot fail after reset request Saksham Jain
2016-01-27 10:01 ` [U-Boot] [PATCH 14/14] SECURE_BOOT: Enable IE (Key extention) Feature in Ls2085a & LS2088a Saksham Jain

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.