19 Feb, 2019

1 commit


27 Jan, 2019

1 commit

  • Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
    CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE. This lets us re-use the
    same script for both SPL and TPL. Add logic to scripts/Makefile.spl to
    pass in the right value when preprocessing the script.

    Cc: Stefano Babic
    Cc: Fabio Estevam
    Cc: Jagan Teki
    Cc: Maxime Ripard
    Cc: Andreas Bießmann
    Cc: Philipp Tomsich
    Cc: Michal Simek
    Cc: Daniel Schwierzeck
    Cc: York Sun
    Cc: Bin Meng
    Cc: Heiko Schocher
    Cc: Adam Ford
    Signed-off-by: Tom Rini
    Reviewed-by: Daniel Schwierzeck
    Tested-by: Daniel Schwierzeck
    Tested-by: Adam Ford #da850evm & omap3_logic_somlv
    Reviewed-by: Simon Goldschmidt

    Tom Rini
     

11 Dec, 2018

1 commit

  • I had requested the da850 boards because their previous maintainer
    had an invalid e-mail address. I work at Logic PD who makes
    the da850-evm kits, so I have access to various boards of theirs.

    The Spectrum Digital AM18xx board is based on the Logic PD
    da850 EVM, but it's not the same company. Since I don't have the
    hardware to test/verify changes, I would prefer to not be
    responsible for this board.

    Signed-off-by: Adam Ford

    Adam Ford
     

10 Oct, 2018

1 commit


12 Sep, 2018

3 commits


20 Aug, 2018

1 commit


19 Jun, 2018

1 commit


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
     

09 Apr, 2018

1 commit

  • In order that we can use eth_env_* even when CONFIG_NET isn't set, move
    these functions to environment code from net code.

    This fixes failures such as:

    board/ti/am335x/built-in.o: In function `board_late_init':
    board/ti/am335x/board.c:752: undefined reference to `eth_env_set_enetaddr'
    u-boot/board/ti/am335x/board.c:766: undefined reference to `eth_env_set_enetaddr'

    which caters for use cases such as:

    commit f411b5cca48f ("board: am335x: Always set eth/eth1addr environment
    variable")

    when Ethernet is required in Linux, but not U-Boot.

    Signed-off-by: Alex Kiernan

    Alex Kiernan
     

29 Sep, 2017

1 commit


13 Sep, 2017

4 commits


16 Aug, 2017

4 commits


05 Jun, 2017

1 commit


12 May, 2017

1 commit


07 Apr, 2017

1 commit

  • With d53ecad92f06 some unused interrupt related code was removed.
    However all of these options are currently unused. Rather than migrate
    some of these options to Kconfig we just remove the code in question.

    The only related code changes here are that in some cases we use
    CONFIG_STACKSIZE in non-IRQ related context. In these cases we rename
    and move the value local to the code in question.

    Fixes: d53ecad92f06 ("Merge branch 'master' of git://git.denx.de/u-boot-sunxi")
    Signed-off-by: Tom Rini

    Tom Rini
     

21 Mar, 2017

1 commit


18 Feb, 2017

1 commit


29 Jan, 2017

1 commit


15 Jan, 2017

1 commit

  • Before we can sync with the latest mach-types.h file from the Linux
    Kernel we need to remove some instances of MACH_TYPE_xxx from our
    sources. As these values have been removed from the canonical upstream
    source we should not be using them either, so drop.

    Cc: Tom Warren
    Cc: Lucas Stach
    Cc: Luka Perkov
    Cc: Stephen Warren
    Cc: Heiko Schocher
    Cc: Thomas Weber
    Cc: Lucile Quirion
    Cc: Matthias Weisser
    Cc: Suriyan Ramasami
    Cc: Nobuhiro Iwamatsu
    Cc: Bo Shen
    Cc: Nick Thompson
    Cc: Stefano Babic
    Cc: Erik van Luijk
    Cc: Lokesh Vutla
    Signed-off-by: Tom Rini

    Tom Rini
     

11 Jan, 2017

1 commit

  • Move (and rename) the following CONFIG options to Kconfig:

    CONFIG_DAVINCI_MMC (renamed to CONFIG_MMC_DAVINCI)
    CONFIG_OMAP_HSMMC (renamed to CONFIG_MMC_OMAP_HS)
    CONFIG_MXC_MMC (renamed to CONFIG_MMC_MXC)
    CONFIG_MXS_MMC (renamed to CONFIG_MMC_MXS)
    CONFIG_TEGRA_MMC (renamed to CONFIG_MMC_SDHCI_TEGRA)
    CONFIG_SUNXI_MMC (renamed to CONFIG_MMC_SUNXI)

    They are the same option names as used in Linux.

    This commit was created as follows:

    [1] Rename the options with the following command:

    find . -name .git -prune -o ! -path ./scripts/config_whitelist.txt \
    -type f -print | xargs sed -i -e '
    s/CONFIG_DAVINCI_MMC/CONFIG_MMC_DAVINCI/g
    s/CONFIG_OMAP_HSMMC/CONFIG_MMC_OMAP_HS/g
    s/CONFIG_MXC_MMC/CONFIG_MMC_MXC/g
    s/CONFIG_MXS_MMC/CONFIG_MMC_MXS/g
    s/CONFIG_TEGRA_MMC/CONFIG_MMC_SDHCI_TEGRA/g
    s/CONFIG_SUNXI_MMC/CONFIG_MMC_SUNXI/g
    '

    [2] Commit the changes

    [3] Create entries in driver/mmc/Kconfig.
    (copied from Linux)

    [4] Move the options with the following command
    tools/moveconfig.py -y -r HEAD \
    MMC_DAVINCI MMC_OMAP_HS MMC_MXC MMC_MXS MMC_SDHCI_TEGRA MMC_SUNXI

    [5] Sort and align drivers/mmc/Makefile for readability

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Marek Vasut

    Masahiro Yamada
     

05 Dec, 2016

1 commit

  • Apparently the indentation is wrong in this case, as the second message
    should be printed indepdently of the if statement.

    Fix this indentation to avoid both compiler warnings and puzzled readers.

    Pointed out by GCC 6.2's -Wmisleading-indentation warning.

    Signed-off-by: Andre Przywara

    Andre Przywara
     

04 Dec, 2016

2 commits


14 Nov, 2016

1 commit


24 Sep, 2016

1 commit


19 Jan, 2016

1 commit

  • In a number of places we had wordings of the GPL (or LGPL in a few
    cases) license text that were split in such a way that it wasn't caught
    previously. Convert all of these to the correct SPDX-License-Identifier
    tag.

    Signed-off-by: Tom Rini

    Tom Rini
     

28 Sep, 2015

1 commit


12 Sep, 2015

1 commit


24 Apr, 2015

1 commit


19 Apr, 2015

1 commit


25 Feb, 2015

1 commit


23 Nov, 2014

1 commit