06 Feb, 2020

1 commit

  • At present dm/device.h includes the linux-compatible features. This
    requires including linux/compat.h which in turn includes a lot of headers.
    One of these is malloc.h which we thus end up including in every file in
    U-Boot. Apart from the inefficiency of this, it is problematic for sandbox
    which needs to use the system malloc() in some files.

    Move the compatibility features into a separate header file.

    Signed-off-by: Simon Glass

    Simon Glass
     

07 Jan, 2020

1 commit


03 Dec, 2019

2 commits


24 Oct, 2019

3 commits


08 Oct, 2019

4 commits


30 Jul, 2019

8 commits


21 Jul, 2019

1 commit


11 May, 2019

4 commits


16 Apr, 2019

2 commits


18 Feb, 2019

1 commit


24 Jan, 2019

1 commit


21 Dec, 2018

2 commits


31 Oct, 2018

1 commit


26 Sep, 2018

1 commit

  • This patch modifies PL bitstream loading sequence as per
    latest Xilfpga which supports all variants of bitstream images
    generated from vivado and from bootgen. With this new change in
    Xilfpga, uboot doesn't need to validate and swap bitstream as it will
    be taken care inside Xilfpga. ZynqMP PL driver now checks for supporting
    PMUFW version before skipping the validation and swap sequence as there
    can be old PMUFW which doesn't supports this feature. In this case, driver
    uses old way of PL bitstream loading sequence.

    Signed-off-by: Siva Durga Prasad Paladugu
    Signed-off-by: Michal Simek

    Siva Durga Prasad Paladugu
     

11 Sep, 2018

1 commit


19 Jul, 2018

2 commits

  • Disable the use of function zynq_loadfs when compiling
    the driver for the SPL, as the following filesystem
    functions are not found by the linker:
    - fs_set_blk_dev
    - fs_read
    - fs_set_blk_dev
    - fs_read
    - fs_read

    Signed-off-by: Luis Araneda
    Signed-off-by: Michal Simek

    Luis Araneda
     
  • This patch basically adds two new commands for loadig secure
    images.
    1. zynq rsa adds support to load secure image which can be both
    authenticated or encrypted or both authenticated and encrypted
    image in xilinx bootimage(BOOT.bin) format.
    2. zynq aes command adds support to decrypt and load encrypted
    image back to DDR as per destination address. The image has
    to be encrypted using xilinx bootgen tool and to get only the
    encrypted image from tool use -split option while invoking
    bootgen.

    Signed-off-by: Siva Durga Prasad Paladugu
    Signed-off-by: Michal Simek

    Siva Durga Prasad Paladugu
     

01 Jun, 2018

2 commits

  • This patch adds support for loading secure bitstreams on ZynqMP
    platforms. The secure bitstream images has to be generated using
    Xilinx bootgen tool.

    Signed-off-by: Siva Durga Prasad Paladugu
    Signed-off-by: Michal Simek

    Siva Durga Prasad Paladugu
     
  • This patch adds support to load secure bitstreams(authenticated or
    encrypted or both). As of now, this feature is added and tested only
    for xilinx bitstreams and the secure bitstream was generated using
    xilinx bootgen tool, but the command is defined in more generic way.

    Command example to load authenticated and device key
    encrypted bitstream is as follows
    "fpga loads 0 100000 2000000 0 1"

    Signed-off-by: Siva Durga Prasad Paladugu
    Signed-off-by: Michal Simek

    Siva Durga Prasad Paladugu
     

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
     

28 Apr, 2018

1 commit


27 Apr, 2018

1 commit