1. 08 7月, 2021 5 次提交
    • T
      ppc: Remove T4160RDB board · ec6b37ce
      Tom Rini 提交于
      This board has not been converted to CONFIG_DM_PCI by the deadline and is
      also missing conversion to CONFIG_DM.  Remove it.  As this is the last
      ARCH_T4160 platform, remove that support as well.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      ec6b37ce
    • T
      ppc: Remove sbc8641d board · 1c58857a
      Tom Rini 提交于
      This board has not been converted to CONFIG_DM_PCI by the deadline and is
      also missing conversion to CONFIG_DM.  Remove it.  This is also the last
      of the ARCH_MPC8641/MPC8610 platforms, so remove that support as well.
      
      Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
      Cc: Priyanka Jain <priyanka.jain@nxp.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      1c58857a
    • T
      ppc: Remove xpedite boards · ed7fe2be
      Tom Rini 提交于
      These boards have not been converted to CONFIG_DM_PCI by the deadline and is
      also missing conversion to CONFIG_DM.  Remove them.  As this includes
      the last ARCH_MPC8572 platform, remove that as well.
      
      Cc: Peter Tyser <ptyser@xes-inc.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Acked-by: NPeter Tyser <ptyser@xes-inc.com>
      ed7fe2be
    • T
      ppc: Remove MPC8555CDS boards · 98898601
      Tom Rini 提交于
      These boards have not been converted to CONFIG_DM_PCI by the deadline and is
      also missing conversion to CONFIG_DM.  Remove them.  As this is the only
      ARCH_MPC8555 platform left, remove that support as well.
      
      Cc: Priyanka Jain <priyanka.jain@nxp.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      98898601
    • T
      ppc: Remove MPC8541CDS board · a8571337
      Tom Rini 提交于
      This board has not been converted to CONFIG_DM_PCI by the deadline and is
      also missing conversion to CONFIG_DM.  Remove it.  As this is the only
      MPC8541 target left, remove that architecture support as well.
      
      Cc: Priyanka Jain <priyanka.jain@nxp.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      a8571337
  2. 10 4月, 2021 1 次提交
  3. 21 2月, 2021 1 次提交
    • I
      dm: i2c: use CONFIG_IS_ENABLED macro for DM_I2C/DM_I2C_GPIO · 2147a169
      Igor Opaniuk 提交于
      Use CONFIG_IS_ENABLED() macro, which provides more convenient
      way to check $(SPL)DM_I2C/$(SPL)DM_I2C_GPIO configs
      for both SPL and U-Boot proper.
      
      CONFIG_IS_ENABLED(DM_I2C) expands to:
      - 1 if CONFIG_SPL_BUILD is undefined and CONFIG_DM_I2C is set to 'y',
      - 1 if CONFIG_SPL_BUILD is defined and CONFIG_SPL_DM_I2C is set to 'y',
      - 0 otherwise.
      
      All occurences were replaced automatically using these bash cmds:
      $ find . -type f -exec sed -i
           's/ifndef CONFIG_DM_I2C/if !CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/ifdef CONFIG_DM_I2C/if CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/defined(CONFIG_DM_I2C)/CONFIG_IS_ENABLED(DM_I2C)/g' {} +
      $ find . -type f -exec sed -i
          's/ifndef CONFIG_DM_I2C_GPIO/if !CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      $ find . -type f -exec sed -i
          's/ifdef CONFIG_DM_I2C_GPIO/if CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      $ find . -type f -exec sed -i
          's/defined(CONFIG_DM_I2C_GPIO)/CONFIG_IS_ENABLED(DM_I2C_GPIO)/g' {} +
      Reviewed-by: NHeiko Schocher <hs@denx.de>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      Signed-off-by: NIgor Opaniuk <igor.opaniuk@foundries.io>
      Reviewed-by: NTom Rini <trini@konsulko.com>
      Reviewed-by: NPriyanka Jain <priyanka.jain@nxp.com>
      2147a169
  4. 10 12月, 2020 1 次提交
  5. 22 10月, 2020 1 次提交
  6. 04 6月, 2020 2 次提交
  7. 19 5月, 2020 6 次提交
  8. 10 4月, 2020 1 次提交
  9. 23 12月, 2019 1 次提交
  10. 26 8月, 2019 1 次提交
  11. 22 8月, 2019 1 次提交
  12. 12 8月, 2019 1 次提交
  13. 21 5月, 2019 1 次提交
  14. 03 3月, 2019 1 次提交
  15. 19 2月, 2019 1 次提交
  16. 07 12月, 2018 1 次提交
  17. 27 7月, 2018 1 次提交
  18. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  19. 28 4月, 2018 1 次提交
  20. 15 2月, 2018 1 次提交
  21. 10 2月, 2018 1 次提交
    • Y
      drivers/ddr/fsl: Dual-license DDR driver · ee3556bc
      York Sun 提交于
      To make this driver easier to be reused, dual-license DDR driver.
      Signed-off-by: NYork Sun <york.sun@nxp.com>
      CC: Simon Glass <sjg@chromium.org>
      CC: Tom Rini <trini@konsulko.com>
      CC: Heinrich Schuchardt <xypron.glpk@gmx.de>
      CC: Thomas Schaefer <thomas.schaefer@kontron.com>
      CC: Masahiro Yamada <yamada.masahiro@socionext.com>
      CC: Robert P. J. Day <rpjday@crashcourse.ca>
      CC: Alexander Merkle <alexander.merkle@lauterbach.com>
      CC: Joakim Tjernlund <joakim.tjernlund@transmode.se>
      CC: Curt Brune <curt@cumulusnetworks.com>
      CC: Valentin Longchamp <valentin.longchamp@keymile.com>
      CC: Wolfgang Denk <wd@denx.de>
      CC: Anatolij Gustschin <agust@denx.de>
      CC: Ira W. Snyder <iws@ovro.caltech.edu>
      CC: Marek Vasut <marek.vasut@gmail.com>
      CC: Kyle Moffett <Kyle.D.Moffett@boeing.com>
      CC: Sebastien Carlier <sebastien.carlier@gmail.com>
      CC: Stefan Roese <sr@denx.de>
      CC: Peter Tyser <ptyser@xes-inc.com>
      CC: Paul Gortmaker <paul.gortmaker@windriver.com>
      CC: Peter Tyser <ptyser@xes-inc.com>
      CC: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
      ee3556bc
  22. 31 1月, 2018 6 次提交
  23. 24 1月, 2018 1 次提交
  24. 11 9月, 2017 1 次提交
  25. 16 8月, 2017 1 次提交