Skip to content
Snippets Groups Projects
  1. Jun 05, 2014
  2. May 27, 2014
    • Heiko Schocher's avatar
      dm: rename device struct to udevice · 54c5d08a
      Heiko Schocher authored
      
      using UBI and DM together leads in compiler error, as
      both define a "struct device", so rename "struct device"
      in include/dm/device.h to "struct udevice", as we use
      linux code (MTD/UBI/UBIFS some USB code,...) and cannot
      change the linux "struct device"
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Marek Vasut <marex@denx.de>
      54c5d08a
  3. Mar 21, 2014
    • Heiko Schocher's avatar
      tools, fit_check_sign: verify a signed fit image · 29a23f9d
      Heiko Schocher authored
      
      add host tool "fit_check_sign" which verifies, if a fit image is
      signed correct.
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      29a23f9d
    • Heiko Schocher's avatar
      rsa: add sha256-rsa2048 algorithm · 646257d1
      Heiko Schocher authored
      based on patch from andreas@oetken.name:
      
      http://patchwork.ozlabs.org/patch/294318/
      
      
      commit message:
      I currently need support for rsa-sha256 signatures in u-boot and found out that
      the code for signatures is not very generic. Thus adding of different
      hash-algorithms for rsa-signatures is not easy to do without copy-pasting the
      rsa-code. I attached a patch for how I think it could be better and included
      support for rsa-sha256. This is a fast first shot.
      
      aditionally work:
      - removed checkpatch warnings
      - removed compiler warnings
      - rebased against current head
      
      Signed-off-by: default avatarHeiko Schocher <hs@denx.de>
      Cc: andreas@oetken.name
      Cc: Simon Glass <sjg@chromium.org>
      646257d1
  4. Mar 07, 2014
    • Stephen Warren's avatar
      unit-test: make "test -e" test independent of $CWD · cfd13e8d
      Stephen Warren authored
      
      The unit-test for hush's "test -e" currently relies upon being run in
      the U-Boot build directory, because it tests for the existence of a file
      that exists in that directory.
      
      Fix this by explicitly creating the file we use for the existence test,
      and deleting it afterwards so that multiple successive unit-test
      invocations succeed. This required adding an os.c function to erase
      files.
      
      Reported-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
      cfd13e8d
    • Stephen Warren's avatar
      hush: fix some quoted variable expansion issues · fe9ca3d3
      Stephen Warren authored
      
      The following shell command fails:
      
      if test -z "$x"; then echo "zero"; else echo "non-zero"; fi
      
      (assuming $x does not exist, it prints "non-zero" rather than "zero").
      
      ... since "$x" expands to nothing, and the argument is completely
      dropped, causing too few to be passed to -z, causing cmd_test() to
      error out early.
      
      This is because when variable expansions are processed by make_string(),
      the expanded results are concatenated back into a new string. However,
      no quoting is applied when doing so, so any empty variables simply don't
      generate any parameter when the combined string is parsed again.
      
      Fix this by explicitly replacing quoting any argument that was originally
      quoted when re-generating a string from the already-parsed argument list.
      
      This also fixes loss of whitespace in commands such as:
      
      setenv space " "
      setenv var " 1${space}${space} 2 "
      echo ">>${var}<<"
      
      Reported-by: default avatarRussell King <linux@arm.linux.org.uk>
      Acked-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
      fe9ca3d3
    • Stephen Warren's avatar
      unit-test: clean up evironment after Hush tests · eebd1b58
      Stephen Warren authored
      
      Delete the temporary variables that are used to save unit-test results
      from the environment after running the test. This prevents polluting
      the environment, or growing it too much.
      
      Signed-off-by: default avatarStephen Warren <swarren@wwwdotorg.org>
      Acked-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      eebd1b58
  5. Mar 04, 2014
    • Simon Glass's avatar
      dm: Add GPIO support and tests · 96495d90
      Simon Glass authored
      
      Add driver model support for GPIOs. Since existing GPIO drivers do not use
      driver model, this feature must be enabled by CONFIG_DM_GPIO. After all
      GPO drivers are converted over we can perhaps remove this config.
      
      Tests are provided for the sandbox implementation, and are a sufficient
      sanity check for basic operation.
      
      The GPIO uclass understands the concept of named banks of GPIOs, with each
      GPIO device providing a single bank. Within each bank the GPIOs are numbered
      using an offset from 0 to n-1. For example a bank named 'b' with 20
      offsets will provide GPIOs named b0 to b19.
      
      Anonymous GPIO banks are also supported, and are just numbered without any
      prefix.
      
      Each time a GPIO driver is added to the uclass, the GPIOs are renumbered
      accordinging, so there is always a global GPIO numbering order.
      
      Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Signed-off-by: default avatarPavel Herrmann <morpheus.ibis@gmail.com>
      Signed-off-by: default avatarViktor Křivák <viktor.krivak@gmail.com>
      Signed-off-by: default avatarTomas Hlavacek <tmshlvck@gmail.com>
      96495d90
    • Simon Glass's avatar
      dm: Add a 'dm' command for testing · 06811959
      Simon Glass authored
      
      This command is not required for driver model operation, but can be useful
      for testing. It provides simple dumps of internal data structures.
      
      Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Signed-off-by: default avatarPavel Herrmann <morpheus.ibis@gmail.com>
      Signed-off-by: default avatarViktor Křivák <viktor.krivak@gmail.com>
      Signed-off-by: default avatarTomas Hlavacek <tmshlvck@gmail.com>
      06811959
    • Simon Glass's avatar
      dm: Add basic tests · 2e7d35d2
      Simon Glass authored
      
      Add some tests of driver model functionality. Coverage includes:
      
      - basic init
      - binding of drivers to devices using platform_data
      - automatic probing of devices when referenced
      - availability of platform data to devices
      - lifecycle from bind to probe to remove to unbind
      - renumbering within a uclass when devices are probed/removed
      - calling driver-defined operations
      - deactivation of drivers when removed
      - memory leak across creation and destruction of drivers/uclasses
      - uclass init/destroy methods
      - automatic probe/remove of children/parents when needed
      
      This function is enabled for sandbox, using CONFIG_DM_TEST.
      
      Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      2e7d35d2
  6. Feb 19, 2014
  7. Dec 13, 2013
  8. Nov 01, 2013
  9. Oct 14, 2013
  10. Sep 03, 2013
  11. Jul 24, 2013
  12. Jun 26, 2013
  13. Jun 04, 2013
    • Simon Glass's avatar
      sandbox: image: Create a test for loading FIT images · 301e8038
      Simon Glass authored
      
      The image code is fairly complex with various different options. It would
      be useful to have comprehensive tests for this.
      
      As a start, create a script which tries out loading a kernel/ramdisk/fdt
      from a FIT and checks that the images appear in the right place in memory.
      
      This uses sandbox which now supports bootm and related features.
      
      Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      301e8038
  14. Aug 09, 2012
    • Simon Glass's avatar
      sandbox: Add basic test for command execution · a72007d9
      Simon Glass authored and Wolfgang Denk's avatar Wolfgang Denk committed
      
      Since run_command() and run_command_list() are important and a little
      confusing, add some basic tests to check that the behaviour is correct.
      
      Note: I am not sure that this should be committed, nor where it should go
      in the source tree. Comments welcome.
      
      To run the unit tests use the ut_cmd command available in sandbox:
      
      make sandbox_config
      make
      ./u-boot -c ut_cmd
      
      (To test both hush and built-in parsers, you need to manually change
      CONFIG_SYS_HUSH_PARSER in include/configs/sandbox.h and build/run again)
      
      Signed-off-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
      a72007d9
Loading