05 Mar, 2018

1 commit

  • Thomas reported U-Boot failed to build host tools if libfdt-devel
    package is installed because tools include libfdt headers from
    /usr/include/ instead of using internal ones.

    This commit moves the header code:
    include/libfdt.h -> include/linux/libfdt.h
    include/libfdt_env.h -> include/linux/libfdt_env.h

    and replaces include directives:
    #include -> #include
    #include -> #include

    Reported-by: Thomas Petazzoni
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

11 Jan, 2018

1 commit

  • This patch adds changes necessary to move functionality present in
    PowerPC folders with ARM architectures that have DPAA1 QBMan hardware

    - Create new board/freescale/common/fsl_portals.c to house shared
    device tree fixups for DPAA1 devices with ARM and PowerPC cores
    - Add new header file to top includes directory to allow files in
    both architectures to grab the function prototypes
    - Port inhibit_portals() from PowerPC to ARM. This function is used in
    setup to disable interrupts on all QMan and BMan portals. It is
    needed because the interrupts are enabled by default for all portals
    including unused/uninitialised portals. When the kernel attempts to
    go to deep sleep the unused portals prevent it from doing so

    Signed-off-by: Ahmed Mansour
    Reviewed-by: York Sun

    Ahmed Mansour
     

16 Aug, 2017

3 commits

  • We are now using an env_ prefix for environment functions. Rename these
    other functions as well, for consistency:

    getenv_vlan()
    getenv_bootm_size()
    getenv_bootm_low()
    getenv_bootm_mapsize()
    env_get_default()

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

    Simon Glass
     
  • 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
     
  • We are now using an env_ prefix for environment functions. Rename setenv()
    for consistency. Also add function comments in common.h.

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

    Simon Glass
     

23 Jul, 2017

2 commits


10 Jul, 2017

1 commit


07 Jul, 2017

1 commit


12 Jun, 2017

1 commit


15 May, 2017

1 commit


13 Apr, 2017

1 commit


06 Apr, 2017

2 commits


28 Sep, 2016

1 commit


24 Sep, 2016

1 commit


16 Jul, 2016

1 commit

  • Fix a number of typos, including:

    * "compatble" -> "compatible"
    * "eanbeld" -> "enabled"
    * "envrionment" -> "environment"
    * "FTD" -> "FDT" (for "flattened device tree")
    * "ommitted" -> "omitted"
    * "overriden" -> "overridden"
    * "partiton" -> "partition"
    * "propogate" -> "propagate"
    * "resourse" -> "resource"
    * "rest in piece" -> "rest in peace"
    * "suport" -> "support"
    * "varible" -> "variable"

    Signed-off-by: Robert P. J. Day

    Robert P. J. Day
     

17 May, 2016

1 commit


06 Feb, 2016

1 commit

  • Correct spelling of "U-Boot" shall be used in all written text
    (documentation, comments in source files etc.).

    Signed-off-by: Bin Meng
    Reviewed-by: Heiko Schocher
    Reviewed-by: Simon Glass
    Reviewed-by: Minkyu Kang

    Bin Meng
     

15 Jan, 2016

1 commit


19 Nov, 2015

13 commits


17 Feb, 2015

6 commits

  • This is not used anymore since the procedure was split into a simple
    read function and a later alaysis.

    The ivm_read_eeprom name is now used for the previous
    ivm_simple_read_eeprom function.

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     
  • This allows to define the ethaddr env variable according to the the IVM
    content by reading the IVM in misc_init_r.

    Later, when HUSH is available the content read earlier is analyzed to
    populate some non env variables.

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     
  • This allows to define the ethaddr env variable according to the the IVM
    content by reading the IVM in misc_init_r.

    Later, when HUSH is available the content read earlier is analyzed to
    populate some non env variables.

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     
  • This allows to define the ethaddr env variable according to the the IVM
    content by reading the IVM in misc_init_r.

    Later, when HUSH is available the content read earlier is analyzed to
    populate some non env variables.

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     
  • This allows to define the ethaddr env variable according to the the IVM
    content by reading the IVM in misc_init_r.

    Later, when HUSH is available the content read earlier is analyzed to
    populate some non env variables.

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     
  • This allows to first read the IVM content (earlier in the boot sequence)
    and define the ethaddr env variable thanks to the ivm_read_eepromi().
    Later, the IVM content can be parsed and used to define some hush
    variables, when the hush subsystem is available thanks to
    ivm_analyze_eeprom().

    To avoid the HW read to happen twice, the buffer passed to
    ivm_read_eeprom() has to be reused by ivm_analyze_eeprom (and thus
    allocated before calling ivm_read_eeprom()).

    Signed-off-by: Valentin Longchamp

    Valentin Longchamp
     

06 Dec, 2014

1 commit

  • This define is never set in our setup, so we can remove it safely. The
    former code causes cppcheck to complain about:
    [board/keymile/km82xx/km82xx.c:311]: (error) Uninitialized variable:
    psize

    Signed-off-by: Holger Brunck
    cc: Valentin Longchamp
    cc: Wolfgang Denk
    Reviewed-by: York Sun

    Holger Brunck