04 Dec, 2018

1 commit


01 Oct, 2018

3 commits


14 Aug, 2018

1 commit

  • Change the way MAC address fixup is done:
    1. Stop using LK handed device-tree and calculate
    the MAC address our own.
    2. Allow overriding the generated MACS with environment variables:
    "wlanaddr" and "btaddr".

    Signed-off-by: Ramon Fried

    Ramon Fried
     

11 Aug, 2018

1 commit


25 Jul, 2018

1 commit

  • Some times gcc may generate data that is then used within code that may
    be part of an efi runtime section. That data could be jump tables,
    constants or strings.

    In order to make sure we catch these, we need to ensure that gcc emits
    them into a section that we can relocate together with all the other
    efi runtime bits. This only works if the -ffunction-sections and
    -fdata-sections flags are passed and the efi runtime functions are
    in a section that starts with ".text".

    Up to now we had all efi runtime bits in sections that did not
    interfere with the normal section naming scheme, but this forces
    us to do so. Hence we need to move the efi_loader text/data/rodata
    sections before the global *(.text*) catch-all section.

    With this patch in place, we should hopefully have an easier time
    to extend the efi runtime functionality in the future.

    Signed-off-by: Alexander Graf
    [agraf: Fix x86_64 breakage]

    Alexander Graf
     

04 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
     

05 Feb, 2018

1 commit


16 Jan, 2018

5 commits


12 Sep, 2017

1 commit


16 Aug, 2017

1 commit


23 Jun, 2017

1 commit


01 Jun, 2017

1 commit

  • Add support for requesting GPIOs with a live device tree.

    This involves adjusting the function signature for the legacy function
    gpio_request_by_name_nodev(), so fix up all callers.

    Signed-off-by: Simon Glass
    Fixes to stm32f746-disco.c:
    Signed-off-by: Tom Rini

    Simon Glass
     

06 Apr, 2017

1 commit


08 Feb, 2017

1 commit

  • At present devices use a simple integer offset to record the device tree
    node associated with the device. In preparation for supporting a live
    device tree, which uses a node pointer instead, refactor existing code to
    access this field through an inline function.

    Signed-off-by: Simon Glass

    Simon Glass
     

02 Apr, 2016

1 commit

  • This commit add support for 96Boards Dragonboard410C.
    It is board based on APQ8016 Qualcomm SoC, complying with
    96boards specification.
    Features (present out of the box):
    - 4x Cortex A53 (ARMv8)
    - 2x USB Host port
    - 1x USB Device port
    - 4x LEDs
    - 1x HDMI connector
    - 1x uSD connector
    - 3x buttons (Power, Vol+, Vol-/Reset)
    - WIFI, Bluetooth with integrated antenna
    - 8GiB eMMC

    U-Boot boots chained with fastboot in 64-bit mode.
    For detailed build instructions see readme.txt in board directory.

    Signed-off-by: Mateusz Kulikowski
    Tested-by: Simon Glass

    Mateusz Kulikowski