24 Feb, 2018

2 commits

  • With the contents of config_distro_defaults.h migrated to Kconfig,
    we can remove this header file completely

    Signed-off-by: Adam Ford

    Adam Ford
     
  • This converts the following to Kconfig:
    CONFIG_BOOTP_BOOTPATH
    CONFIG_BOOTP_DNS
    CONFIG_BOOTP_GATEWAY
    CONFIG_BOOTP_HOSTNAME
    CONFIG_BOOTP_PXE
    CONFIG_BOOTP_SUBNETMASK
    CONFIG_CMDLINE_EDITING
    CONFIG_AUTO_COMPLETE
    CONFIG_SYS_LONGHELP
    CONFIG_SUPPORT_RAW_INITRD
    CONFIG_ENV_VARS_UBOOT_CONFIG

    Signed-off-by: Adam Ford
    [trini: Re-run the migration]
    Signed-off-by: Tom Rini

    Adam Ford
     

24 Jan, 2018

3 commits


18 Jan, 2018

1 commit


11 Jan, 2018

1 commit

  • Using changes in this patch we were able to reduce approx 8k
    size of u-boot-spl.bin image. Following is breif description of
    changes to reduce SPL size:
    1. Changes in board/freescale/ls1088a/Makefile to remove
    compilation of eth.c and cpld.c in case of SPL build.
    2. Changes in board/freescale/ls1088a/ls1088a.c to keep
    board_early_init_f funcations in case of SPL build.
    3. Changes in ls1088a_common.h & ls1088ardb.h to remove driver
    specific macros due to which static data was being compiled in
    case of SPL build.

    Signed-off-by: Sumit Garg
    Reviewed-by: York Sun

    Sumit Garg
     

14 Dec, 2017

1 commit

  • The BRDCFG5[SPISDHC] register field of Qixis device is used
    to control SPI and SDHC signal routing.

    10 = Force SDHC Mode
    - SPI_CS[0] is routed to CPLD for SDHC_VS use.
    - SPI_CS[1] is unused.
    - SPI_CS[2:3] are routed to the TDMRiser slot.

    11 = Force eMMC Mode
    - SPI_CS[0:3] are routed to the eMMC card.

    0X = Auto Mode
    - If SDHC_CS_B=0 (SDHC card installed): Use SDHC mode
    described above.
    - Else SDHC_CS_B=1 (no SDHC card installed): Use eMMC
    mode described above.

    In default the hardware uses auto mode, but sometimes we need
    to use force SDHC mode to support SD card hotplug, or SD sleep
    waking up in kernel. This patch is to support force SDHC mode
    by hwconfig.

    Signed-off-by: Yangbo Lu
    Reviewed-by: York Sun

    Yangbo Lu
     

07 Dec, 2017

2 commits

  • Signed-off-by: Ashish Kumar
    Reviewed-by: York Sun

    Ashish Kumar
     
  • Validates PPA, MC, DPC, Bootscript, DPL and Kernel images in ESBC
    phase using esbc_validate command.

    Enable validation of boot.scr script prior to its execution dependent
    on "secureboot" flag in environment

    Add header address for PPA to be validated during ESBC phase for
    LS1088A platform based on LAyerscape Chasis 3.

    Moves sec_init prior to ppa_init as for validation of PPA sec must
    be initialised before the PPA is initialised.

    Signed-off-by: Udit Agarwal
    Signed-off-by: Vinitha Pillai-B57223
    Signed-off-by: Sumit Garg
    Reviewed-by: York Sun

    Udit Agarwal
     

16 Nov, 2017

2 commits


15 Nov, 2017

1 commit


27 Oct, 2017

1 commit


11 Oct, 2017

1 commit


11 Sep, 2017

1 commit

  • LS1088A is an ARMv8 implementation. The LS1088ARDB is an evaluatoin
    platform that supports the LS1088A family SoCs. This patch add basic
    support of the platform.

    Signed-off-by: Alison Wang
    Signed-off-by: Prabhakar Kushwaha
    Signed-off-by: Ashish Kumar
    Signed-off-by: Raghav Dogra
    Signed-off-by: Shaohui Xie
    [YS: Disabled NAND in board header file]
    Reviewed-by: York Sun

    WIP: disable NAND for LS1088ARDB

    Ashish Kumar