1. 26 8月, 2021 3 次提交
  2. 23 4月, 2021 1 次提交
  3. 10 2月, 2021 1 次提交
  4. 03 2月, 2021 1 次提交
    • S
      common: Drop asm/global_data.h from common header · 401d1c4f
      Simon Glass 提交于
      Move this out of the common header and include it only where needed.  In
      a number of cases this requires adding "struct udevice;" to avoid adding
      another large header or in other cases replacing / adding missing header
      files that had been pulled in, very indirectly.   Finally, we have a few
      cases where we did not need to include <asm/global_data.h> at all, so
      remove that include.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      401d1c4f
  5. 20 1月, 2021 2 次提交
  6. 29 10月, 2020 1 次提交
  7. 27 10月, 2020 6 次提交
  8. 23 9月, 2020 1 次提交
    • M
      xilinx: common: Do not save fdt_blob to bss section · e2572b55
      Michal Simek 提交于
      For SPL flow without specifying address for DT loading DTB is automatically
      appended behind U-Boot code. Specifically _end symbol is used. Just behind
      it there is place for bss section.
      It means if early code is using static variable and there is a write to
      this variable DTB file is corrupted if variable is located between DTB
      start and end.
      In this particular case offset of this variable from bss section start is
      very small (0x40) that's why DT is currupted which breaks this boot flow.
      Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
      e2572b55
  9. 20 8月, 2020 5 次提交
  10. 19 5月, 2020 2 次提交
  11. 27 4月, 2020 2 次提交
  12. 06 4月, 2020 1 次提交
  13. 06 2月, 2020 1 次提交
    • S
      dm: core: Rename ofnode_get_chosen_prop() · 14ca9f7f
      Simon Glass 提交于
      This function is actually intended to read a string rather than a
      property. All of its current callers use it that way. Also there is no way
      to return the length of the property from this function.
      
      Rename it to better indicate its purpose, using ofnode_read as the prefix
      since this matches most other functions.
      
      Also add some tests which are missing for these functions.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      14ca9f7f
  14. 14 1月, 2020 2 次提交
  15. 08 10月, 2019 2 次提交
  16. 14 2月, 2019 3 次提交