23 Jan, 2020

1 commit


06 Dec, 2019

1 commit


24 Nov, 2019

1 commit


23 Nov, 2019

4 commits

  • Select CONFIG_FASTBOOT_FLASH, CONFIG_FASTBOOT_FLASH_MMC_DEV
    for rockchip SoC plaforms in fastboot Kconfig file instead
    of defined it in board defconfig.

    This eventually drop the explicit configs defined in
    supporting board defconfig files.

    Tested-by: Levin Du
    Signed-off-by: Jagan Teki
    Reviewed-by: Kever Yang

    Jagan Teki
     
  • Rockchip support differnet or common gadget product number
    between Rockchip SoCs like,

    0x310a - rk3036
    0x320a - rk3229, rk3288
    0x330a - rk3328

    So, select them on Kconfig based on platform specific
    config defined.
       
    This eventually drop the explicit configs defined in
    supporting board defconfig files.

    Tested-by: Levin Du
    Signed-off-by: Jagan Teki
    Reviewed-by: Kever Yang

    Jagan Teki
     
  • Gadget vendor number, 0x2207 is common across all platfroms
    supported in Rockchip SoC.

    So, select the same number globally, if ARCH_ROCKCHIP.

    This eventually drop the explicit configs defined in supported
    board defconfig files.

    Tested-by: Levin Du
    Signed-off-by: Jagan Teki
    Reviewed-by: Kever Yang

    Jagan Teki
     
  • Select the gadget manufacturer as 'Rockchip' for
    all rockchip platform SoC's.

    This eventually drop the explicit defined added
    on supported board defconfig files.

    Tested-by: Levin Du
    Signed-off-by: Jagan Teki
    Reviewed-by: Kever Yang

    Jagan Teki
     

21 Nov, 2019

2 commits

  • - In ARMv8 NXP Layerscape platforms we also need to make use of
    CONFIG_SYS_RELOC_GD_ENV_ADDR now, do so.
    - On ENV_IS_IN_REMOTE, CONFIG_ENV_OFFSET is never used, drop the define
    to 0.
    - Add Kconfig entry for ENV_ADDR.
    - Make ENV_ADDR / ENV_OFFSET depend on the env locations that use it.
    - Add ENV_xxx_REDUND options that depend on their primary option and
    SYS_REDUNDAND_ENVIRONMENT
    - On a number of PowerPC platforms, use SPL_ENV_ADDR not CONFIG_ENV_ADDR
    for the pre-main-U-Boot environment location.
    - On ENV_IS_IN_SPI_FLASH, check not for CONFIG_ENV_ADDR being set but
    rather it being non-zero, as it will now be zero by default.
    - Rework the env_offset absolute in env/embedded.o to not use
    CONFIG_ENV_OFFSET as it was the only use of ENV_OFFSET within
    ENV_IS_IN_FLASH.
    - Migrate all platforms.

    Cc: Wolfgang Denk
    Cc: Joe Hershberger
    Cc: Patrick Delaunay
    Cc: uboot-stm32@st-md-mailman.stormreply.com
    Signed-off-by: Tom Rini
    Acked-by: Joe Hershberger
    Reviewed-by: Simon Goldschmidt

    Tom Rini
     
  • Today in initr_reloc_global_data() we use some non-obvious tests to
    determine if we need to relocate the env_addr within gd or not. In
    order to facilitate migration of other symbols to Kconfig we need to
    introduce a new symbol for this particular use case.

    Cc: Wolfgang Denk
    Cc: Joe Hershberger
    Signed-off-by: Tom Rini

    Tom Rini
     

17 Nov, 2019

1 commit


12 Nov, 2019

2 commits


10 Nov, 2019

1 commit

  • We use to reserve IRAM to avoid the SPL text overlap with ATF M0 code,
    and when we introduce the TPL, the SPL space is in DRAM, we reserve
    space to avoid SPL text overlap with ATF bl31.

    Now we decide to move ATF entry point to 0x40000 instead of 0x1000,
    so that the SPL can have 0x4000 as code size and no need to reserve
    space or relocate before loading ATF.

    The mainline ATF has update since:
    0aad563c rockchip: Update BL31_BASE to 0x40000

    Signed-off-by: Kever Yang

    Kever Yang
     

08 Nov, 2019

1 commit


24 Oct, 2019

1 commit

  • The mode selection for the DWC3 is kind of obsolete. The driver does not
    have to be host only or gadget only. This choice is confusing.
    All the remaining callers of dwc3_uboot_init() explicitly set dr_mode
    before calling the function, so none rely on a default behavior.

    Remove the choice menu and keep only the USB_DWC3_GADGET option. Enable it
    by default if USB_GADGET and USB_DWC3 are enabled.
    It must be disabled for the evb-rk3328 as it uses DWC2 for the gadget and
    DWC3 for the host.

    Signed-off-by: Jean-Jacques Hiblot

    Jean-Jacques Hiblot
     

23 Aug, 2019

1 commit


14 Aug, 2019

1 commit


05 Aug, 2019

1 commit


20 Jul, 2019

2 commits


26 Jun, 2019

1 commit

  • The ROCK64 is a credit card size SBC based on Rockchip RK3328
    Quad-Core ARM Cortex A53.

    This series allow building u-boot SPL and u-boot.itb for Rock64
    board. The proprietary TPL is stil required for deploy:

    ./tools/mkimage -n rk3328 -T rksd \
    -d ./rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin idbloader.img
    cat ./spl/u-boot-spl.bin >> idbloader.img
    dd if=idbloader.img of=/dev/sdcard seek=64 conv=notrunc
    dd if=u-boot.itb of=/dev/sdcard seek=16384 conv=notrunc

    Signed-off-by: Matwey V. Kornilov
    Reviewed-by: Kever Yang

    Matwey V. Kornilov