Skip to content
Snippets Groups Projects
  1. Nov 26, 2018
  2. Oct 09, 2018
  3. Sep 23, 2018
    • Simon Glass's avatar
      sandbox: Enhance map_to_sysmem() to handle foreign pointers · 428aa0ca
      Simon Glass authored
      
      At present map_sysmem() maps an address into the sandbox RAM buffer,
      return a pointer, while map_to_sysmem() goes the other way.
      
      The mapping is currently just 1:1 since a case was not found where a more
      flexible mapping was needed. PCI does have a separate and more complex
      mapping, but uses its own mechanism.
      
      However this arrange cannot handle one important case, which is where a
      test declares a stack variable and passes a pointer to it into a U-Boot
      function which uses map_to_sysmem() to turn it into a address. Since the
      pointer is not inside emulated DRAM, this will fail.
      
      Add a mapping feature which can handle any such pointer, mapping it to a
      simple tag value which can be passed around in U-Boot as an address.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
      428aa0ca
  4. May 07, 2018
    • Tom Rini's avatar
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini authored
      
      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: default avatarTom Rini <trini@konsulko.com>
      83d290c5
  5. Jun 01, 2017
  6. May 08, 2017
  7. May 27, 2016
    • Stephen Warren's avatar
      Rename reset to sysreset · 11636258
      Stephen Warren authored
      
      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: default avatarStephen Warren <swarren@nvidia.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      11636258
  8. Nov 20, 2015
  9. Jul 21, 2015
  10. May 06, 2015
  11. Feb 15, 2015
  12. Oct 22, 2014
  13. Mar 18, 2014
  14. Jan 09, 2014
  15. Dec 09, 2013
  16. Jul 24, 2013
  17. May 01, 2013
    • Simon Glass's avatar
      sandbox: Add CONFIG_OF_HOSTFILE to read FDT from host file · f828bf25
      Simon Glass authored
      
      With sandbox it is tricky to add an FDT to the image at build time (or
      later) since we build an ELF file, not a plain binary, and the address
      space of the whole U-Boot is not accessible in the emulated memory map
      of sandbox.
      
      Sandbox can read files directly from the host, though, so add an option
      to read an FDT from a host file on start-up.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      f828bf25
  18. Mar 12, 2012
    • Simon Glass's avatar
      sandbox: add getopt support · 70db4212
      Simon Glass authored
      
      This adds simple command-line parsing to sandbox. The idea is that it
      sets up the state with options provided, and this state can then be
      queried later, as needed.
      
      New flags are declared with the SB_CMDLINE_OPT_SHORT helper macro,
      pointers are automatically gathered up in a special section, and
      then the core code takes care of gathering them up and processing
      at runtime.  This way there is no central place where we have to
      store a list of flags with ifdefs.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      70db4212
    • Simon Glass's avatar
      sandbox: add concept of sandbox state · 6fb62078
      Simon Glass authored
      
      The state exists through the life of U-Boot. It can be adjusted by command
      line options and perhaps later through a config file.  It is available to
      U-Boot through state_...() calls (within sandbox code).
      
      The primary purpose of this is to contain the "hardware" state.  It should
      only be used by sandbox internal code.
      
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
      6fb62078
  19. Nov 17, 2009
  20. Oct 18, 2008
  21. Aug 28, 2008
  22. Jan 17, 2008
  23. Aug 18, 2007
  24. Aug 17, 2007
  25. Aug 16, 2007
  26. Jul 10, 2007
  27. Mar 31, 2006
  28. Oct 10, 2004
  29. Sep 09, 2002
  30. Aug 27, 2002
Loading