31 Aug, 2016

1 commit


23 Aug, 2016

1 commit


18 Aug, 2016

3 commits


17 Aug, 2016

1 commit


02 Jun, 2016

1 commit


30 May, 2016

1 commit

  • Commit 6ca5f482a38ce ("driver: net: cpsw: add support for RGMII id mode
    support and RMII clock source selection") enables the external chip clock
    for RMII mode using private data. This data needs to be populated from
    DT data. The above commit misses populating this data.

    Signed-off-by: Lokesh Vutla

    Lokesh Vutla
     

26 May, 2016

5 commits


25 May, 2016

7 commits


23 May, 2016

3 commits


20 May, 2016

1 commit

  • All the output clock parameters of a DPLL needs to be programmed before
    locking the DPLL. But it is being configured after locking the DPLL which
    could potentially bypass DPLL. So fixing this sequence.

    Reported-by: Richard Woodruff
    Signed-off-by: Lokesh Vutla

    Lokesh Vutla
     

19 May, 2016

6 commits


17 May, 2016

1 commit

  • * 'master' of git://git.denx.de/u-boot: (31 commits)
    Prepare v2016.05
    sunxi: Enable USB host in CHIP defconfig
    test, tools: update tbot documentation
    tests: py: fix NameError exception if bdi cmd is not supported
    arm/arm64: Move barrier instructions into separate header
    arm: socfpga: Update iomux and pll for c5 socdk RevE
    warp7: Fix boot by selecting CONFIG_OF_LIBFDT
    usb: gadget: dfu: discard dead code
    dfu: avoid memory leak
    usb: dwc2: Add delay to fix the USB detection problem on SoCFPGA
    usb: hub: Don't continue on get_port_status failure
    usb: Assure Get Descriptor request is in separate microframe
    usb: Wait after sending Set Configuration request
    socfpga: fix broken build if CONFIG_ETH_DESIGNWARE disabled
    mtd: cqspi: Simplify indirect read code
    mtd: cqspi: Simplify indirect write code
    arm: socfpga: socrates: Add 'time' command
    ARM: socfpga: Disable USB OC protection on SoCrates
    usb: Don't init pointer to zero, but NULL
    usb: ehci-mx6: allow board_ehci_hcd_init to fail
    ...

    Signed-off-by: Lokesh Vutla

    Lokesh Vutla
     

16 May, 2016

1 commit


15 May, 2016

1 commit


13 May, 2016

6 commits

  • update tbot documentation in U-Boot, as I just
    merged the event system into tbots master
    branch.

    Signed-off-by: Heiko Schocher

    Heiko Schocher
     
  • test/py raises an error, if a board has not enabled bdi command

    > pytest.skip('bdinfo command not supported')
    E NameError: global name 'pytest' is not defined

    import pytest in test/py/u_boot_utils.py fixes this.

    Signed-off-by: Heiko Schocher
    Reviewed-by: Stephen Warren

    Heiko Schocher
     
  • The commit 539982820939 ("ARM: DRA7: Fixup DSPEVE and IVA clock
    frequencies based on OPP") only updates the 'assigned-clock-rates'
    property and expects that the 'assigned-clocks' property is already
    defined in the existing DTBs. The kernel clock init configuration
    logic requires both these properties to be defined in a clock
    node inorder to properly update the clock frequencies. Enhance
    the current frequency update logic to also add the 'assigned-clocks'
    property so that the DSPEVE and IVA DPLLs are configured properly
    even for kernels that do not have the OPP_NOM DPLL clock rate
    configuration in the DTBs. The additional logic is a no-op for
    kernels that do use DTBs with corresponding 'assigned-clocks'
    property.

    Signed-off-by: Suman Anna

    Suman Anna
     
  • The commit 539982820939 ("ARM: DRA7: Fixup DSPEVE and IVA clock
    frequencies based on OPP") defined different clock rates for
    DSP at OPP_HIGH between DRA75x/AM572x and DRA72x/AM571x family
    of SoCs. The DRA72x OPP_HIGH clock rate was based on the current
    DRA72x Data Manual. The OPP_HIGH clock rate for AM571x is though
    defined to be as the same as the AM572x SoCs - 750 MHz. The DRA7xx
    DMs will be updated soon to mark the highest supported frequency
    as 750 MHz. So, fixup the DSP OPP_HIGH clock rate accordingly.
    The clock rates are also consolidated since they are identical
    across all the DRA75x/AM572x, DRA72x/AM571x family of SoCs.

    While at this, fix couple of minor typos, one a fix for the
    IVA clock number macro in the IVA clock names definition, and
    another a trace correction.

    Fixes: 539982820939 ("ARM: DRA7: Fixup DSPEVE and IVA clock frequencies based on OPP")
    Signed-off-by: Suman Anna

    Suman Anna
     
  • Now SPL will be able to select serial device dynamically, remove icev2
    defconfig which is created to pass a separate serial device.

    Signed-off-by: Lokesh Vutla

    Lokesh Vutla
     
  • Different AM335x based platforms have different serial consoles. As serial
    console is Kconfig option a separate defconfig has to be created for each
    platform. So pass the serial device dynamically.

    Signed-off-by: Lokesh Vutla

    Lokesh Vutla
     

12 May, 2016

1 commit

  • Commit bfb33f0bc45b ("sunxi: mctl_mem_matches: Add missing memory
    barrier") broke compilation for the Pine64, as dram_helper.c now
    includes , which does not compile on arm64.

    Fix this by moving all barrier instructions into a separate header
    file, which can easily be shared between arm and arm64.
    Also extend the inline assembly to take the "sy" argument, which is
    optional for ARMv7, but mandatory for v8.

    This fixes compilation for 64-bit sunxi boards (Pine64).

    Acked-by: Ian Campbell
    Signed-off-by: Andre Przywara

    Andre Przywara