26 Mar, 2019

1 commit

  • This converts the following to Kconfig:
    CONFIG_SF_DEFAULT_BUS
    CONFIG_SF_DEFAULT_CS
    CONFIG_SF_DEFAULT_MODE
    CONFIG_SF_DEFAULT_SPEED

    I use moveconfig script and then manual check on generated u-boot.cfg
    to solve the remaining issue.

    Signed-off-by: Patrick Delaunay

    Patrick Delaunay
     

08 Feb, 2019

1 commit


21 Jan, 2019

1 commit

  • Add gpio command to defconfig - this can be used to detect whether the
    button is pressed or light LEDs.
    Add DS1307 RTC driver and the date command.
    Add CONFIG_WATCHDOG, so that U-Boot calls watchdog_reset.
    Add CONFIG_MISC_INIT_R so that ethernet addresses are read from OTP
    before network controller is initialized.

    Signed-off-by: Marek Behún
    Reviewed-by: Stefan Roese
    Signed-off-by: Stefan Roese

    Marek Behún
     

08 Jan, 2019

1 commit


14 Nov, 2018

1 commit


19 Sep, 2018

2 commits


04 Sep, 2018

1 commit


17 Aug, 2018

1 commit

  • We have the following cases:
    - CONFIG_NR_DRAM_BANKS was defined, migrate normally
    - CONFIG_NR_DRAM_BANKS_MAX was defined and then used for
    CONFIG_NR_DRAM_BANKS after a check, just migrate it over now.
    - CONFIG_NR_DRAM_BANKS was very oddly defined on p2771-0000-* (to 1024 +
    2), set this to 8.

    Signed-off-by: Tom Rini

    Tom Rini
     

10 Jul, 2018

1 commit


04 Jun, 2018

1 commit


29 May, 2018

1 commit


14 May, 2018

1 commit

  • This adds basic support for the Turris Mox board from CZ.NIC, which is
    currently being crowdfunded on Indiegogo.

    Turris Mox is as modular router based on the Armada 3720 SOC (same as
    EspressoBin).

    The basic module can be extended by different modules. The device tree
    binary for the kernel can be dependent on which modules are connected,
    and in what order. Because of this, the board specific code creates
    in U-Boot a variable called module_topology, which carries this
    information.

    Signed-off-by: Marek Behun
    Signed-off-by: Stefan Roese

    Marek Behún