01 Mar, 2018

1 commit


02 Feb, 2018

1 commit


30 Jan, 2018

4 commits


15 Dec, 2017

1 commit


28 Nov, 2017

2 commits


11 Oct, 2017

1 commit

  • Having this as a 'default y' is rather annoying because it doesn't
    actually compile unless other options are defined in the board header:

    ../cmd/bootm.c: In function 'do_imls_nor':
    ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
    i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {

    Make it 'default n' so people who develop new boards that start from a
    blank defconfig have one less compilation failure to debug.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

04 Oct, 2017

1 commit

  • The g_dnl USB settings for the vendor ID, product ID and manufacturer are
    actually common settings that can and should be shared by all the gadgets.

    Make them common by renaming them, and convert all the users.

    Reviewed-by: Simon Glass
    Reviewed-by: Lukasz Majewski
    Signed-off-by: Maxime Ripard

    Maxime Ripard
     

28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


12 Aug, 2017

1 commit


02 Aug, 2017

1 commit

  • The Z-Turn board is a low cost development board based on the
    Xilinx Zynq SoC. While it's powerful and quite versatile, it
    so far lacked upstream support.

    This patch adds basic support for the Z-Turn. It does however
    for now miss enablement for MIO51 reset which means that USB
    and ethernet don't work. For that either FSBL or SPL need to
    be adjusted. The SPL part will follow later.

    Signed-off-by: Alexander Graf
    Signed-off-by: Michal Simek

    Alexander Graf