1. 07 12月, 2018 2 次提交
  2. 03 12月, 2018 1 次提交
  3. 14 11月, 2018 1 次提交
  4. 09 10月, 2018 1 次提交
  5. 30 9月, 2018 1 次提交
  6. 29 9月, 2018 2 次提交
  7. 24 9月, 2018 1 次提交
  8. 04 9月, 2018 1 次提交
  9. 21 8月, 2018 1 次提交
    • J
      cmd: Add bind/unbind commands to bind a device to a driver from the command line · 49c752c9
      Jean-Jacques Hiblot 提交于
      In some cases it can be useful to be able to bind a device to a driver from
      the command line.
      The obvious example is for versatile devices such as USB gadget.
      Another use case is when the devices are not yet ready at startup and
      require some setup before the drivers are bound (ex: FPGA which bitsream is
      fetched from a mass storage or ethernet)
      
      usage example:
      
      bind usb_dev_generic 0 usb_ether
      unbind usb_dev_generic 0 usb_ether
      or
      unbind eth 1
      
      bind /ocp/omap_dwc3@48380000/usb@48390000 usb_ether
      unbind /ocp/omap_dwc3@48380000/usb@48390000
      Signed-off-by: NJean-Jacques Hiblot <jjhiblot@ti.com>
      49c752c9
  10. 17 8月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_NR_DRAM_BANKS · 86cf1c82
      Tom Rini 提交于
      We have the following cases:
      - CONFIG_NR_DRAM_BANKS was defined, migrate normally
      - CONFIG_NR_DRAM_BANKS_MAX was defined and then used for
        CONFIG_NR_DRAM_BANKS after a check, just migrate it over now.
      - CONFIG_NR_DRAM_BANKS was very oddly defined on p2771-0000-* (to 1024 +
        2), set this to 8.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      86cf1c82
  11. 11 8月, 2018 1 次提交
  12. 08 8月, 2018 1 次提交
  13. 28 7月, 2018 1 次提交
  14. 20 7月, 2018 1 次提交
  15. 04 6月, 2018 1 次提交
  16. 26 5月, 2018 1 次提交
  17. 18 5月, 2018 1 次提交
  18. 28 4月, 2018 1 次提交
  19. 09 4月, 2018 1 次提交
  20. 14 2月, 2018 1 次提交
    • T
      SystemACE: Remove · 34a5c425
      Tom Rini 提交于
      This driver is no longer used on any supported platform in U-Boot and
      there is no interest in maintaining it further from people that have
      used it historically.
      
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Michal Simek <michal.simek@xilinx.com>
      c: Alexey Brodkin <alexey.brodkin@gmail.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Acked-by: NMichal Simek <michal.simek@xilinx.com>
      34a5c425
  21. 11 2月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_SYS_TEXT_BASE · 278b90ce
      Tom Rini 提交于
      On the NIOS2 and Xtensa architectures, we do not have
      CONFIG_SYS_TEXT_BASE set.  This is a strict migration of the current
      values into the defconfig and removing them from the headers.
      
      I did not attempt to add more default values in and for now will leave
      that to maintainers.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      278b90ce
  22. 09 2月, 2018 1 次提交
    • T
      block: Migrate SystemACE chip to Kconfig · 560eeee8
      Tom Rini 提交于
      Migrate the base and sub-options to Kconfig.  Note that we only enable
      this in the base sandbox config now.
      
      Cc: Alexey Brodkin <alexey.brodkin@gmail.com>
      Cc: Michal Simek <michal.simek@xilinx.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      ---
      Is this driver still used anywhere?  It's fishy that it's only enabled
      in sandbox anymore.
      560eeee8
  23. 04 2月, 2018 1 次提交
    • S
      log: Add a way to log error-return values · 3707c6ee
      Simon Glass 提交于
      When functions return an error it propagates up the stack to the point
      where it is reported. Often the error code provides enough information
      about the root cause of the error that this is obvious what went wrong.
      
      However in some cases the error may be hard to trace. For example if a
      driver uses several devices to perform an operation, it may not be
      obvious which one failed.
      
      Add a log_ret() macro to help with this. This can be used to wrap any
      error-return value. The logging system will then output a log record when
      the original error is generated, making it easy to trace the call stack
      of the error.
      
      This macro can significantly impact code size, so its use is controlled
      by a Kconfig option, which is enabled for sandbox.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      3707c6ee
  24. 08 12月, 2017 2 次提交
  25. 11 10月, 2017 1 次提交
    • T
      cmd: Toggle the default value of CONFIG_CMD_IMLS · ad12dc18
      Tuomas Tynkkynen 提交于
      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: NTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
      ad12dc18
  26. 03 10月, 2017 1 次提交
  27. 27 9月, 2017 1 次提交
  28. 16 9月, 2017 1 次提交
  29. 15 9月, 2017 2 次提交
  30. 02 9月, 2017 1 次提交
  31. 28 8月, 2017 2 次提交
  32. 15 8月, 2017 1 次提交
  33. 12 8月, 2017 3 次提交