26 Feb, 2018

1 commit

  • Migrate the users of CONFIG_SYS_BOOTCOUNT_ADDR to Kconfig. We can
    provide a default for BOOTCOUNT_AM33XX as that's a specific part of the
    RTC in use. We can also provide a default for ARCH_LS1043A and
    ARCH_LS1021A as they had been previously calculated and their symbols
    are in Kconfig. In the case of other QE-enabled platforms, they are not
    so we must update the relevant defconfig files. The previous default
    only applied in some cases, even on a specific SoC family.

    Reviewed-by: Lukasz Majewski
    Reviewed-by: Alex Kiernan
    Signed-off-by: Tom Rini

    Tom Rini
     

24 Feb, 2018

2 commits


15 Feb, 2018

1 commit


14 Feb, 2018

1 commit


11 Feb, 2018

2 commits


06 Feb, 2018

1 commit

  • cmd/Makefile has:

    ifdef CONFIG_FPGA
    obj-$(CONFIG_CMD_FPGA) += fpga.o
    endif

    which means that if CONFIG_FPGA is not set, CONFIG_CMD_FPGA silently
    does nothing. Let's remove that Makefile conditional and instead express
    this equivalent dependency in Kconfig, so a lot of redundant

    # CONFIG_CMD_FPGA is not set

    can be removed from board defconfigs that don't actually have an FPGA.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

04 Feb, 2018

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
     

28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


26 Jul, 2017

1 commit


29 Jun, 2017

1 commit


28 Jan, 2017

1 commit


26 Jan, 2017

1 commit


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


30 Dec, 2016

1 commit


28 Oct, 2016

1 commit


26 Oct, 2016

1 commit


24 Oct, 2016

2 commits


17 Jun, 2016

1 commit


08 Jun, 2016

3 commits


26 Apr, 2016

3 commits


19 Apr, 2016

1 commit


09 Mar, 2016

1 commit

  • Add support for GE B450v3, B650v3 and B850v3 boards. The boards
    are based on Advantech BA16 module which has a i.MX6D processor.
    The boards support:
    - FEC Ethernet
    - USB Ports
    - SDHC and MMC boot
    - SPI NOR
    - LVDS and HDMI display

    Basic information about the module:
    - Module manufacturer: Advantech
    - CPU: Freescale ARM Cortex-A9 i.MX6D
    - SPECS:
    Up to 2GB Onboard DDR3 Memory;
    Up to 16GB Onboard eMMC NAND Flash
    Supports OpenGL ES 2.0 and OpenVG 1.1
    HDMI, 24-bit LVDS
    1x UART, 2x I2C, 8x GPIO,
    4x Host USB 2.0 port, 1x USB OTG port,
    1x micro SD (SDHC),1x SDIO, 1x SATA II,
    1x 10/100/1000 Mbps Ethernet, 1x PCIe X1 Gen2

    Signed-off-by: Akshay Bhat
    Reviewed-by: Peng Fan

    Akshay Bhat