14 Mar, 2017

1 commit


28 Jan, 2017

3 commits


26 Jan, 2017

1 commit


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


11 Jan, 2017

1 commit

  • Move (and rename) the following CONFIG options to Kconfig:

    CONFIG_DAVINCI_MMC (renamed to CONFIG_MMC_DAVINCI)
    CONFIG_OMAP_HSMMC (renamed to CONFIG_MMC_OMAP_HS)
    CONFIG_MXC_MMC (renamed to CONFIG_MMC_MXC)
    CONFIG_MXS_MMC (renamed to CONFIG_MMC_MXS)
    CONFIG_TEGRA_MMC (renamed to CONFIG_MMC_SDHCI_TEGRA)
    CONFIG_SUNXI_MMC (renamed to CONFIG_MMC_SUNXI)

    They are the same option names as used in Linux.

    This commit was created as follows:

    [1] Rename the options with the following command:

    find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
    -type f -print | xargs sed -i -e '
    s/CONFIG_DAVINCI_MMC/CONFIG_MMC_DAVINCI/g
    s/CONFIG_OMAP_HSMMC/CONFIG_MMC_OMAP_HS/g
    s/CONFIG_MXC_MMC/CONFIG_MMC_MXC/g
    s/CONFIG_MXS_MMC/CONFIG_MMC_MXS/g
    s/CONFIG_TEGRA_MMC/CONFIG_MMC_SDHCI_TEGRA/g
    s/CONFIG_SUNXI_MMC/CONFIG_MMC_SUNXI/g
    '

    [2] Commit the changes

    [3] Create entries in driver/mmc/Kconfig.
    (copied from Linux)

    [4] Move the options with the following command
    tools/moveconfig.py -y -r HEAD \
    MMC_DAVINCI MMC_OMAP_HS MMC_MXC MMC_MXS MMC_SDHCI_TEGRA MMC_SUNXI

    [5] Sort and align drivers/mmc/Makefile for readability

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Marek Vasut

    Masahiro Yamada
     

30 Dec, 2016

1 commit


05 Dec, 2016

2 commits


03 Dec, 2016

1 commit

  • AM57xx GP EVM has USB2 port of the SoC exposed as
    USB client port.

    It is useful to be able to use this port for USB
    DFU downloads.

    Enable USB DFU support. Tested on AM57x GP EVM Rev
    A3 using DFU to download to connected SD card.

    configs for HS version of the AM57x EVM are
    included in the patch but not really tested.

    Signed-off-by: Sekhar Nori
    Reviewed-by: Tom Rini

    Sekhar Nori
     

22 Nov, 2016

2 commits


24 Oct, 2016

1 commit


15 Oct, 2016

1 commit


12 Oct, 2016

4 commits


07 Oct, 2016

1 commit


20 Sep, 2016

1 commit


17 Sep, 2016

5 commits


10 Sep, 2016

2 commits


09 Sep, 2016

1 commit


30 Jul, 2016

1 commit

  • AM571x IDK and AM572x IDK EVMs have spansion s25fl256s QSPI flash on the
    board connected to TI QSPI IP over CS0. Therefore enable QSPI support.

    Signed-off-by: Vignesh R
    Reviewed-by: Mugunthan V N
    Reviewed-by: Tom Rini
    Reviewed-by: Jagan Teki

    Vignesh R
     

26 Jul, 2016

1 commit


17 Jun, 2016

1 commit


13 Jun, 2016

3 commits


10 Jun, 2016

1 commit


04 Jun, 2016

2 commits

  • Create an entry for "config USB_XHCI_DWC3" in Kconfig and
    switch over to it for all boards.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     
  • Move CONFIG_USB_XHCI to defconfig files for all boards, renaming it
    into CONFIG_USB_XHCI_HCD.

    As commented in the help of "config USB_XHCI" entry, this has been
    a TODO for a long time; now CONFIG_USB_XHCI_HCD and CONFIG_USB_XHCI
    have been unified in favor of the former.

    Note:
    Some boards define CONFIG_USB_XHCI in their headers without
    CONFIG_USB, which does not meet the "depends on" in Kconfig.
    I added CONFIG_USB=y for those boards when converting.
    Otherwise, they would fail to build.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

28 May, 2016

1 commit

  • Adds the board specific ft_board_setup() functions that
    are called when CONFIG_OF_BOARD_SETUP is defined. These functions
    will currently just call the ft_cpu_setup() function.

    Adds CONFIG_OF_BOARD_SETUP to the defconfig files
    for dra72_evm, dra74_evm, and am57xx_evm.

    Signed-off-by: Daniel Allred
    Signed-off-by: Madan Srinivas

    Reviewed-by: Tom Rini

    Daniel Allred