19 Jan, 2019

1 commit

  • Onc of key blocker for using USB Generic host controller
    drivers in Allwinner are CLK and RESET drivers, now these
    available for USB usage.

    So switch sunxi USB use EHCI and OHCI Generic controllers.

    Enabling USB is wisely a board choise, So Enable USB_OHCI_HCD
    where it already have USB_EHCI_HCD

    Signed-off-by: Jagan Teki
    Acked-by: Maxime Ripard

    Jagan Teki
     

31 Jul, 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
     

15 May, 2017

1 commit


21 Apr, 2017

1 commit

  • Basic U-Boot support is now present for V3s.

    Some memory addresses are changed specially for V3s, as the original
    address map cannot fit into a so small DRAM.

    As the DRAM controller code needs a big refactor, the SPL support is
    disabled in this version.

    Signed-off-by: Icenowy Zheng
    Acked-by: Maxime Ripard
    Reviewed-by: Jagan Teki
    Signed-off-by: Maxime Ripard

    Icenowy Zheng
     

30 Oct, 2016

1 commit


07 Sep, 2016

2 commits

  • Move this option to Kconfig and set its default value to 4; this
    increases the number of supported CPUs for some boards.

    It consumes 1KB memory per CPU for PSCI stack, but it should not
    be a big deal, given the amount of memory used for the modern OSes.

    Reviewed-by: Alexander Graf
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     
  • Add ARCH_SUPPORT_PSCI as a non-configurable option that platforms
    can select. Then, move CONFIG_ARMV7_PSCI, which is automatically
    enabled if both ARMV7_NONSEC and ARCH_SUPPORT_PSCI are enabled.

    Reviewed-by: Alexander Graf
    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

26 Apr, 2016

1 commit


01 Apr, 2016

1 commit

  • The Allwinner A64 SoC is used in the Pine64. This patch adds
    all bits necessary to compile U-Boot for it running in AArch64
    mode.

    Unfortunately SPL is not ready yet due to legal problems, so
    we need to boot using the binary boot0 for now.

    Signed-off-by: Siarhei Siamashka
    [agraf: remove SPL code, move to AArch64]
    Signed-off-by: Alexander Graf
    Acked-by: Hans de Goede
    Signed-off-by: Hans de Goede

    Siarhei Siamashka
     

31 Mar, 2016

1 commit


24 Feb, 2016

1 commit


10 Dec, 2015

1 commit


22 Nov, 2015

1 commit


28 Jun, 2015

1 commit


29 May, 2015

2 commits


04 May, 2015

1 commit

  • The 2/3 usb-phys on the sunxi SoCs are really a single separate functional
    block, and are modelled as such in devicetree. So once we've moved all the
    sunxi usb code to the driver-model then phy_probe will be called once
    for the entire block from the driver-model enumeration code.

    Move to this now as this also avoids problems with phy_probe being called
    multiple times once we introduce ohci support. This also allows us to get rid
    of the sunxi_usb_phy_enabled_count variable as phy_probe now is guaranteed
    to be called only once.

    Since we're effectively rewriting the probe / remove functions, move them
    to the end of the file while we are at it, as that is the most logical place
    for them.

    Signed-off-by: Hans de Goede
    Acked-by: Ian Campbell

    Hans de Goede
     

29 Mar, 2015

1 commit

  • make the CPU clock selectable via Kconfig

    this removes the sunxi specific CONFIG_CLK_FULL_SPEED defined in each
    soc header and replaces it's use in board/sunxi/board.c with
    CONFIG_SYS_CLK_FREQ from Kconfig which allows us to configure board
    specific frequency on boot

    Signed-off-by: Iain Paton
    [hdegoede@redhat.com s/CONFIG_SYS_CLK_FREQ/CONFIG_TIMER_CLK_FREQ/ for the
    arch-timer clk speed on sun7i to fix mis-compile on sun7i]
    Acked-by: Hans de Goede
    Signed-off-by: Hans de Goede

    Iain Paton
     

23 Jan, 2015

1 commit

  • The CPU info is already logged during boot e.g.
    CPU: Allwinner A20 (SUN7I)
    so the prompt is just one more thing to change for each new SoC, just makes it
    "sunxi#" instead.

    Signed-off-by: Ian Campbell
    Acked-by: Hans de Goede
    Signed-off-by: Hans de Goede

    Ian Campbell
     

14 Jan, 2015

2 commits


05 Nov, 2014

1 commit


24 Oct, 2014

1 commit

  • The basic blocks of the A23 are similar to the A31 (sun6i). Re-use
    sun6i code for initial clock, gpio, and uart setup.

    There is no SPL support for A23, as we do not have any documentation
    or sample code for DRAM initialization.

    Signed-off-by: Chen-Yu Tsai
    Acked-by: Ian Campbell

    Chen-Yu Tsai