07 Jul, 2015

1 commit


14 Jul, 2014

1 commit


08 Jul, 2014

19 commits


05 Jul, 2014

4 commits


03 Jul, 2014

1 commit

  • The armv8 ARM Trusted Firmware (ATF) can be used to load various ATF
    images and u-boot, and does this for virtual platforms by using
    semihosting. This commit extends this idea by allowing u-boot to also
    use semihosting to load the kernel/ramdisk/dtb. This eliminates the need
    for a bootwrapper and produces a more realistic boot sequence with
    virtual models.

    Though the semihosting code is quite generic, support for armv7 in
    fastmodel is less useful due to the wide range of available silicon
    and the lack of a free armv7 fastmodel, so this change contains an
    untested armv7 placeholder for the service trap opcode.

    Please refer to doc/README.semihosting for a more detailed description
    of semihosting and how it is used with the armv8 virtual platforms.

    Signed-off-by: Darwin Rambo
    Cc: trini@ti.com
    Cc: fenghua@phytium.com.cn
    Cc: bhupesh.sharma@freescale.com

    Darwin Rambo
     

02 Jul, 2014

1 commit


01 Jul, 2014

2 commits


25 Jun, 2014

1 commit


20 Jun, 2014

7 commits


19 Jun, 2014

3 commits

  • nios-32 arch was removed back in 2010 (1117cbf). Code depending on
    its headers (nios.h, nios-io.h) can't possibly compile since then.
    As it wasn't fixed till now it is safe to remove.

    Signed-off-by: Vasili Galka

    Vasili Galka
     
  • commit 18b06652cd "tools: include u-boot version of sha256.h"
    unconditionally forced the sha256.h from u-boot to be used
    for tools instead of the host version. This is fragile though
    as it will also include the host version. Therefore move it
    to include/u-boot to join u-boot/md5.h etc which were renamed
    for the same reason.

    cc: Simon Glass
    Signed-off-by: Jeroen Hofstee

    Jeroen Hofstee
     
  • Fix the following warning messages:

    In function 'flash_erase': 180:21:
    warning: variable 'last' set but not used [-Wunused-but-set-variable]
    In function 'write_buff': 322:10:
    warning: variable 'port_width' set but not used [-Wunused-but-set-variable]

    Signed-off-by: Masahiro Yamada
    Cc: TsiChung Liew

    Masahiro Yamada