15 Feb, 2018

1 commit

  • Migrate the option CONFIG_SPL_FRAMEWORK and make this gate most of the
    current set of options we have in Kconfig. We will need to have some
    options available for SPL and !SPL_FRAMEWORK so this is important. In a
    few cases we re-order existing options so that we have less escapes from
    the SPL_FRAMEWORK guard.

    Signed-off-by: Tom Rini

    Tom Rini
     

11 Feb, 2018

1 commit

  • On the NIOS2 and Xtensa architectures, we do not have
    CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current
    values into the defconfig and removing them from the headers.

    I did not attempt to add more default values in and for now will leave
    that to maintainers.

    Signed-off-by: Tom Rini

    Tom Rini
     

13 Aug, 2017

1 commit


22 May, 2017

1 commit


19 Nov, 2016

2 commits


17 Sep, 2016

6 commits


31 Jul, 2014

1 commit


30 Jul, 2014

1 commit

  • We are about to switch to Kconfig in the next commit.
    But there are something to get done beforehand.

    In Kconfig, include/generated/autoconf.h defines boolean
    CONFIG macros as 1.

    CONFIG_SPL and CONFIG_TPL, if defined, must be set to 1.
    Otherwise, when switching to Kconfig, the build log
    would be sprinkled with warning messages like this:
    warning: "CONFIG_SPL" redefined [enabled by default]

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Simon Glass

    Masahiro Yamada
     

01 Apr, 2014

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


26 Oct, 2012

1 commit

  • The woodburn board is based on the MX35 SOC.
    Support for both external (NOR) and internal
    (SD Card) boot mode are added. It uses the
    generic SPL framework to implement the internal boot
    mode.

    The following peripherals are supported:
    - Ethernet (FEC)
    - SD Card
    - NAND (512 MB)
    - NOR Flash

    In the internal boot mode, a simple imximage header
    is generated to set the address in internal RAM
    where the SOC must copy the SPL code. The initial setup
    is then demanded to the SPL itself.

    Signed-off-by: Stefano Babic

    Stefano Babic