1. 27 6月, 2017 1 次提交
  2. 04 6月, 2017 1 次提交
  3. 01 6月, 2017 1 次提交
  4. 23 5月, 2017 7 次提交
  5. 22 5月, 2017 3 次提交
  6. 17 5月, 2017 1 次提交
  7. 16 5月, 2017 1 次提交
  8. 06 4月, 2017 3 次提交
    • T
      OpenRISC: Remove · 70cc0c34
      Tom Rini 提交于
      The OpenRISC architecture is currently unmaintained, remove.
      
      Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      70cc0c34
    • T
      SPARC: Remove · 936478e7
      Tom Rini 提交于
      The SPARC architecture is currently unmaintained, remove.
      
      Cc: Francois Retief <fgretief@spaceteq.co.za>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      936478e7
    • T
      Blackfin: Remove · ea3310e8
      Tom Rini 提交于
      The architecture is currently unmaintained, remove.
      
      Cc: Benjamin Matthews <mben12@gmail.com>
      Cc: Chong Huang <chuang@ucrobotics.com>
      Cc: Dimitar Penev <dpn@switchfin.org>
      Cc: Haitao Zhang <hzhang@ucrobotics.com>
      Cc: I-SYST Micromodule <support@i-syst.com>
      Cc: M.Hasewinkel (MHA) <info@ssv-embedded.de>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Martin Strubel <strubel@section5.ch>
      Cc: Peter Meerwald <devel@bct-electronic.com>
      Cc: Sonic Zhang <sonic.adi@gmail.com>
      Cc: Valentin Yakovenkov <yakovenkov@niistt.ru>
      Cc: Wojtek Skulski <info@skutek.com>
      Cc: Wojtek Skulski <skulski@pas.rochester.edu>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      ea3310e8
  9. 29 3月, 2017 1 次提交
    • V
      arc: use timer driver for ARC boards · 1c694102
      Vlad Zakharov 提交于
      This commit replaces legacy timer code with usage of arc timer
      driver.
      
      It removes arch/arc/lib/time.c file and selects CONFIG_CLK,
      CONFIG_TIMER and CONFIG_ARC_TIMER options for all ARC boards by default.
      Therefore we remove CONFIG_CLK option from less common axs101 and
      axs103 defconfigs.
      
      Also it removes legacy CONFIG_SYS_TIMER_RATE config symbol from
      axs10x.h, tb100.h and nsim.h configs files as it is no longer required.
      Signed-off-by: NVlad Zakharov <vzakhar@synopsys.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      1c694102
  10. 24 3月, 2017 1 次提交
    • V
      arc: use timer driver for ARC boards · 3daa7c7b
      Vlad Zakharov 提交于
      This commit replaces legacy timer code with usage of arc timer
      driver.
      
      It removes arch/arc/lib/time.c file and selects CONFIG_CLK,
      CONFIG_TIMER and CONFIG_ARC_TIMER options for all ARC boards by default.
      Therefore we remove CONFIG_CLK option from less common axs101 and
      axs103 defconfigs.
      
      Also it removes legacy CONFIG_SYS_TIMER_RATE config symbol from
      axs10x.h, tb100.h and nsim.h configs files as it is no longer required.
      Signed-off-by: NVlad Zakharov <vzakhar@synopsys.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      3daa7c7b
  11. 26 1月, 2017 2 次提交
  12. 24 1月, 2017 1 次提交
  13. 02 10月, 2016 1 次提交
  14. 16 8月, 2016 1 次提交
  15. 15 7月, 2016 1 次提交
  16. 12 7月, 2016 1 次提交
  17. 28 5月, 2016 1 次提交
  18. 17 1月, 2016 1 次提交
  19. 14 12月, 2015 1 次提交
  20. 03 12月, 2015 1 次提交
  21. 25 10月, 2015 1 次提交
  22. 23 10月, 2015 2 次提交
  23. 28 8月, 2015 1 次提交
  24. 28 7月, 2015 1 次提交
  25. 07 7月, 2015 1 次提交
  26. 15 6月, 2015 1 次提交
  27. 30 4月, 2015 1 次提交
  28. 19 4月, 2015 1 次提交
    • M
      dm: select CONFIG_DM* options · 58d423b8
      Masahiro Yamada 提交于
      As mentioned in the previous commit, adding default values in each
      Kconfig causes problems because it does not co-exist with the
      "depends on" syntax.  (Please note this is not a bug of Kconfig.)
      We should not do so unless we have a special reason.  Actually,
      for CONFIG_DM*, we have no good reason to do so.
      
      Generally, CONFIG_DM is not a user-configurable option.  Once we
      convert a driver into Driver Model, the board only works with Driver
      Model, i.e. CONFIG_DM must be always enabled for that board.
      So, using "select DM" is more suitable rather than allowing users to
      modify it.  Another good thing is, Kconfig warns unmet dependencies
      for "select" syntax, so we easily notice bugs.
      
      Actually, CONFIG_DM and other related options have been added
      without consistency: some into arch/*/Kconfig, some into
      board/*/Kconfig, and some into configs/*_defconfig.
      
      This commit prefers "select" and cleans up the following issues.
      
      [1] Never use "CONFIG_DM=n" in defconfig files
      
      It is really rare to add "CONFIG_FOO=n" to disable CONFIG options.
      It is more common to use "# CONFIG_FOO is not set".  But here, we
      do not even have to do it.
      Less than half of OMAP3 boards have been converted to Driver Model.
      Adding the default values to arch/arm/cpu/armv7/omap3/Kconfig is
      weird.  Instead, add "select DM" only to appropriate boards, which
      eventually eliminates "CONFIG_DM=n", etc.
      
      [2] Delete redundant CONFIGs
      
      Sandbox sets CONFIG_DM in arch/sandbox/Kconfig and defines it again
      in configs/sandbox_defconfig.
      Likewise, OMAP3 sets CONFIG_DM arch/arm/cpu/armv7/omap3/Kconfig and
      defines it also in omap3_beagle_defconfig and devkit8000_defconfig.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      58d423b8