10 Feb, 2017

2 commits


28 Jan, 2017

4 commits


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


12 Jan, 2017

1 commit


11 Jan, 2017

2 commits

  • This commit was created as follows:

    [1] Rename the option with the following command:
    find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
    -type f -print | xargs sed -i -e 's/CONFIG_DWMMC/CONFIG_MMC_DW/g'

    [2] create the entry for MMC_DW in drivers/mmc/Kconfig
    (the prompt and help were copied from Linux)

    [3] run "tools/moveconfig.py -y MMC_DW"

    [4] add "depends on MMC_DW" to the MMC_DW_ROCKCHIP entry

    [5] Clean-up doc/README.socfpga by hand

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

    Masahiro Yamada
     
  • I am trying to make all DesignWare-based driver options prefixed
    with CONFIG_MMC_DW_.

    This commit was generated as follows:

    find . -name .git -prune -o -type f -print | \
    xargs sed -i -e 's/ROCKCHIP_DWMMC/MMC_DW_ROCKCHIP/g'

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

    Masahiro Yamada
     

24 Oct, 2016

3 commits


12 Oct, 2016

1 commit


09 Sep, 2016

1 commit


26 Jul, 2016

1 commit


15 Jul, 2016

1 commit


17 Jun, 2016

1 commit


10 Jun, 2016

1 commit


28 May, 2016

1 commit


27 May, 2016

1 commit

  • The current reset API implements a method to reset the entire system.
    In the near future, I'd like to introduce code that implements the device
    tree reset bindings; i.e. the equivalent of the Linux kernel's reset API.
    This controls resets to individual HW blocks or external chips with reset
    signals. It doesn't make sense to merge the two APIs into one since they
    have different semantic purposes. Resolve the naming conflict by renaming
    the existing reset API to sysreset instead, so the new reset API can be
    called just reset.

    Signed-off-by: Stephen Warren
    Acked-by: Simon Glass

    Stephen Warren
     

26 Apr, 2016

3 commits


23 Mar, 2016

1 commit


15 Mar, 2016

2 commits

  • There are already two FIT options in Kconfig but the CONFIG options are
    still in the header files. We need to do a proper move to fix this.

    Move these options to Kconfig and tidy up board configuration:

    CONFIG_FIT
    CONFIG_OF_BOARD_SETUP
    CONFIG_OF_SYSTEM_SETUP
    CONFIG_FIT_SIGNATURE
    CONFIG_FIT_BEST_MATCH
    CONFIG_FIT_VERBOSE
    CONFIG_OF_STDOUT_VIA_ALIAS
    CONFIG_RSA

    Unfortunately the first one is a little complicated. We need to make sure
    this option is not enabled in SPL by this change. Also this option is
    enabled automatically in the host builds by defining CONFIG_FIT in the
    image.h file. To solve this, add a new IMAGE_USE_FIT #define which can
    be used in files that are built on the host but must also build for U-Boot
    and SPL.

    Note: Masahiro's moveconfig.py script is amazing.

    Signed-off-by: Simon Glass
    [trini: Add microblaze change, various configs/ re-applies]
    Signed-off-by: Tom Rini

    Simon Glass
     
  • Various boards have the wrong Kconfig ordering now. To avoid a misleading

    diff in the next patch, reorder the configuration correctly.

    Signed-off-by: Simon Glass

    Simon Glass
     

06 Feb, 2016

1 commit

  • The option was renamed to CONFIG_CONSOLE_ROTATION and Rockchip boards
    were not updated. However this option is is not needed by default for
    Rockchip since we don't need a rotated console for current boards. So just
    remove the old option.

    Signed-off-by: Simon Glass
    Reviewed-by: Tom Rini

    Simon Glass
     

26 Jan, 2016

1 commit

  • Enabling CONFIG_DISPLAY breaks building for some architectures
    (microblaze-generic), so we disable CONFIG_DISPLAY in Kconfig
    by default and enable this option in defconfigs. CONFIG_DISPLAY
    depends on CONFIG_I2C_EDID, so add and enable it in defconfigs, too.

    Signed-off-by: Anatolij Gustschin
    Reported-by: Bin Meng
    Cc: Simon Glass
    Reviewed-by: Tom Rini
    Reviewed-by: Simon Glass
    Tested-by: Bin Meng
    Signed-off-by: Anatolij Gustschin

    Anatolij Gustschin
     

22 Jan, 2016

5 commits


14 Dec, 2015

1 commit


01 Dec, 2015

2 commits


25 Nov, 2015

1 commit


22 Nov, 2015

1 commit