18 Jan, 2020

2 commits


03 Dec, 2019

1 commit


21 May, 2019

3 commits

  • Except for one counter example, CONFIG_SYS_LBC_LBCR always has a value
    of either 0x00040000 or 0x00000000.

    CONFIG_SYS_LBC_MRTPR always has the value 0x20000000.

    CONFIG_SYS_LBC_LSDMR_{1,2,4,5} are not set for any mpc83xx board.

    CONFIG_SYS_LBC_LSRT is set by one board (to 0x32000000).

    To simplify the configuration files, hardcode the setting of these
    values for mpc83xx.

    Signed-off-by: Mario Six

    Mario Six
     
  • CONFIG_SYS_DDR_SDRAM_BASE is set to the same value as
    CONFIG_SYS_SDRAM_BASE on all existing boards. Just use
    CONFIG_SYS_SDRAM_BASE instead.

    Signed-off-by: Mario Six

    Mario Six
     
  • CONFIG_SYS_DDR_BASE is specific to mpc83xx an is always set to the same
    value as CONFIG_SYS_SDRAM_BASE. Just use CONFIG_SYS_SDRAM_BASE instead.

    Signed-off-by: Mario Six

    Mario Six
     

07 May, 2018

1 commit

  • 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: Tom Rini

    Tom Rini
     

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
     

13 Apr, 2017

1 commit


06 Apr, 2017

2 commits


21 Nov, 2014

1 commit

  • This function can fail if the device tree runs out of space. Rather than
    silently booting with an incomplete device tree, allow the failure to be
    detected.

    Unfortunately this involves changing a lot of places in the code. I have
    not changed behvaiour to return an error where one is not currently
    returned, to avoid unexpected breakage.

    Eventually it would be nice to allow boards to register functions to be
    called to update the device tree. This would avoid all the many functions
    to do this. However it's not clear yet if this should be done using driver
    model or with a linker list. This work is left for later.

    Signed-off-by: Simon Glass
    Acked-by: Anatolij Gustschin

    Simon Glass
     

24 Jul, 2013

1 commit


04 Nov, 2011

1 commit


24 Sep, 2010

1 commit


20 Aug, 2010

1 commit

  • We get two build errors:

    fsl_elbc_nand.c: In function 'fsl_elbc_run_command':
    fsl_elbc_nand.c:231: error: 'fsl_lbc_t' has no member named 'lsor'
    make[1]: *** [/work/wd/tmp-ppc/drivers/mtd/nand/fsl_elbc_nand.o] Error 1

    and

    ve8313.c: In function 'initdram':
    ve8313.c:104: error: expected '=', ',', ';', 'asm' or '__attribute__'
    before '*' token
    ve8313.c:104: error: 'lbc' undeclared (first use in this function)
    ve8313.c:104: error: (Each undeclared identifier is reported only once
    ve8313.c:104: error: for each function it appears in.)
    ve8313.c:104: error: 'immap_t' has no member named 'lbus'
    make[1]: *** [ve8313.o] Error 1
    make: *** [board/ve8313/libve8313.a] Error 2

    Due to changes to unifiy local bus struct definitions.

    Reported-by: Wolfgang Denk
    Signed-off-by: Kumar Gala

    Kumar Gala
     

10 Jul, 2010

1 commit

  • This patch add support for the ve8313 board based on
    Freescale MPC8313 CPU.

    - serial console on UART 1
    - 128 MB DDR RAM
    - 32 MB NOR Flash
    - 16 MB NAND Flash
    - Ethernet MII Mode over on TSEC0
    - micrel ksz804 phy
    - Hardware WDT MAX824

    changes since v1
    - Environment size = sector size
    - use red. environment
    - add comments from Kim Phillips
    - add MAKEALL, MAINTAINERS entry
    - Codingstyle issues fixed
    - inserted original Copyrights
    - PCI subsys vendor ID changed from 0x1057 (Motorola)
    to 0x1957 (Freescale)

    changes since v2
    - add comments from Wolfgang Denk
    - fix Codingstyle and some comments
    - reworked WDT reset (just toggling the WD_TRIG pin)
    - Environment size now 16KiB
    - fixed RAMBOOT version
    - fixed CONFIG_SYS_LOAD_ADDR
    - renamed CONFIG_TSEC1_NAME to TSEC1

    Signed-off-by: Heiko Schocher
    Signed-off-by: Kim Phillips

    Heiko Schocher