05 Sep, 2017

1 commit

  • Before reading entire FIT image, add sanity check by testing image
    header against FDT_MAGIC. This should help avoid problems in situations
    where FIT is not yet available from storage device, for example when
    performing initial programming of device.

    Cc: Anatolij Gustschin
    Acked-by: Tomas Melin

    Niko Mauno
     

02 Sep, 2017

1 commit


29 Aug, 2017

1 commit

  • Before reading entire FIT image, add sanity check by testing image
    header against FDT_MAGIC. This should help avoid problems in situations
    where FIT is not yet available from storage device, for example when
    performing initial programming of device.

    Cc: Anatolij Gustschin
    Acked-by: Tomas Melin

    Niko Mauno
     

19 Aug, 2017

1 commit


17 Aug, 2017

1 commit


16 Aug, 2017

1 commit

  • We are now using an env_ prefix for environment functions. Rename these
    two functions for consistency. Also add function comments in common.h.

    Quite a few places use getenv() in a condition context, provoking a
    warning from checkpatch. These are fixed up in this patch also.

    Suggested-by: Wolfgang Denk
    Signed-off-by: Simon Glass

    Simon Glass
     

12 Jul, 2017

2 commits


27 Feb, 2017

1 commit

  • Passing NULL to fs_read() for actread value results in hanging U-Boot
    at least on our ARM plattform (TI AM335x). Since fs_read() and
    following functions do not catch nullpointers, writing to 0x0 occurs.

    Passing a local dummy var instead of NULL solves this issue.

    Signed-off-by: Jonathan Golder
    Cc: Anatolij Gustschin

    Jonathan Golder
     

14 Jan, 2017

3 commits


26 Jul, 2016

1 commit

  • Current implementation of splash_init_usb() requires usb_stor_scan()
    which doesn't exist in case of DM_USB simply because real probing
    happens right in usb_init().

    So disable usage of usb_stor_scan() in case of DM_USB.

    Signed-off-by: Alexey Brodkin
    Cc: Nikita Kiryanov
    Cc: Simon Glass
    Cc: Jeroen Hofstee
    Cc: Anatolij Gustschin
    Cc: Robert Winkler
    Reviewed-by: Simon Glass

    Alexey Brodkin
     

14 Jun, 2016

1 commit


04 Jun, 2016

1 commit

  • nand_info[] is now an array of pointers, with the actual mtd_info
    instance embedded in struct nand_chip.

    This is in preparation for syncing the NAND code with Linux 4.6,
    which makes the same change to struct nand_chip. It's in a separate
    commit due to the large amount of changes required to accommodate the
    change to nand_info[].

    Signed-off-by: Scott Wood

    Scott Wood
     

16 Nov, 2015

4 commits


30 Jan, 2015

1 commit

  • Move board/compulab/common/splash.c code to
    common/splash_source.c to make it available for everybody. This move
    renames cl_splash_screen_prepare() to splash_source_load(), and
    the compilation of this code is conditional on CONFIG_SPLASH_SOURCE.

    splash_source features:
    * Provide a standardized way for declaring board specific splash screen
    locations
    * Provide existing routines for auto loading the splash image from the
    locations as declared by the board
    * Introduce the "splashsource" environment variable, which makes it
    possible to select the splash image source.

    cm-t35 and cm-fx6 are updated to use the modified version.

    Signed-off-by: Nikita Kiryanov
    Cc: Stefano Babic
    Cc: Tom Rini
    Cc: Igor Grinberg
    Cc: Anatolij Gustschin
    Reviewed-by: Tom Rini
    Acked-by: Igor Grinberg

    Nikita Kiryanov