All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hans de Goede <hdegoede@redhat.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/6] Add Pine64 support
Date: Tue, 29 Mar 2016 17:45:45 +0200	[thread overview]
Message-ID: <56FAA329.9070602@redhat.com> (raw)
In-Reply-To: <1459265351-19812-1-git-send-email-agraf@suse.de>

Hi,

On 03/29/2016 05:29 PM, Alexander Graf wrote:
> The Pine64 is a kickstarter backed SBC that runs on the Allwinner A64 SoC.
> This SoC can run AArch64 code, so this patch set lifts all arm version
> indepenent sunxi code into a mach directory and builds the A64 code
> as armv8 (aarch64) code.
>
> With these patches applied, I can successfully boot my 1GB Pine64+ board
> with an openSUSE EFI image.

Can you provide some quick instructions on how to test this ? Bonus
point for a link to a boot0.bin which I can dd to a sdcard and use
with a u-boot.bin build with these patches.

I've a pine64+ myself to test.

Note "[PATCH 3/6] arm: Allow u32 as addrs for readX/writeX"
will need an ack from Albert, the ARM maintainer.

Regards,

Hans


>
> Alex
>
> Alexander Graf (4):
>    sunxi: Move cpu independent code to mach directory
>    sunxi: Depend SPL configs on SUPPORT_SPL
>    arm: Allow u32 as addrs for readX/writeX
>    sunxi: Explicitly cast u32 pointer conversions
>
> Siarhei Siamashka (2):
>    sunxi: Add support for Allwinner A64 SoCs
>    sunxi: Add Pine64+ support
>
>   arch/arm/Kconfig                                   |   4 +-
>   arch/arm/Makefile                                  |   1 +
>   arch/arm/cpu/armv7/sunxi/Makefile                  |  40 +-
>   arch/arm/dts/Makefile                              |   2 +
>   arch/arm/dts/a64.dtsi                              | 564 +++++++++++++++++++++
>   arch/arm/dts/pine64.dts                            |  62 +++
>   arch/arm/dts/pine64_common.dtsi                    |  76 +++
>   arch/arm/dts/pine64_plus.dts                       |  63 +++
>   arch/arm/include/asm/arch-sunxi/clock.h            |   3 +-
>   arch/arm/include/asm/arch-sunxi/clock_sun6i.h      |   4 +-
>   arch/arm/include/asm/arch-sunxi/gpio.h             |   1 +
>   arch/arm/include/asm/arch-sunxi/spl.h              |   5 +-
>   arch/arm/include/asm/io.h                          |  18 +-
>   arch/arm/include/asm/system.h                      |   6 +
>   arch/arm/mach-sunxi/Makefile                       |  51 ++
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/board.c   |  30 +-
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock.c   |   0
>   .../{cpu/armv7/sunxi => mach-sunxi}/clock_sun4i.c  |   0
>   .../{cpu/armv7/sunxi => mach-sunxi}/clock_sun6i.c  |   0
>   .../armv7/sunxi => mach-sunxi}/clock_sun8i_a83t.c  |   0
>   .../{cpu/armv7/sunxi => mach-sunxi}/clock_sun9i.c  |   0
>   .../arm/{cpu/armv7/sunxi => mach-sunxi}/cpu_info.c |   2 +
>   .../{cpu/armv7/sunxi => mach-sunxi}/dram_helpers.c |   0
>   .../{cpu/armv7/sunxi => mach-sunxi}/dram_sun4i.c   |   0
>   .../{cpu/armv7/sunxi => mach-sunxi}/dram_sun6i.c   |   0
>   .../armv7/sunxi => mach-sunxi}/dram_sun8i_a23.c    |   0
>   .../armv7/sunxi => mach-sunxi}/dram_sun8i_a33.c    |   0
>   .../armv7/sunxi => mach-sunxi}/dram_sun8i_a83t.c   |   0
>   .../armv7/sunxi => mach-sunxi}/dram_sun8i_h3.c     |   0
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/p2wi.c    |   0
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/pinmux.c  |   0
>   .../arm/{cpu/armv7/sunxi => mach-sunxi}/pmic_bus.c |   0
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/prcm.c    |   0
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/rsb.c     |   0
>   arch/arm/{cpu/armv7/sunxi => mach-sunxi}/usb_phy.c |   2 +-
>   board/sunxi/Kconfig                                |   9 +-
>   board/sunxi/board.c                                |  38 +-
>   configs/pine64_plus_defconfig                      |  12 +
>   drivers/mmc/sunxi_mmc.c                            |   6 +-
>   drivers/power/Kconfig                              |   2 +-
>   include/configs/sun50i.h                           |  22 +
>   include/configs/sunxi-common.h                     |  20 +-
>   42 files changed, 977 insertions(+), 66 deletions(-)
>   create mode 100644 arch/arm/dts/a64.dtsi
>   create mode 100644 arch/arm/dts/pine64.dts
>   create mode 100644 arch/arm/dts/pine64_common.dtsi
>   create mode 100644 arch/arm/dts/pine64_plus.dts
>   create mode 100644 arch/arm/mach-sunxi/Makefile
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/board.c (91%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock_sun4i.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock_sun6i.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock_sun8i_a83t.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/clock_sun9i.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/cpu_info.c (97%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_helpers.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun4i.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun6i.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun8i_a23.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun8i_a33.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun8i_a83t.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/dram_sun8i_h3.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/p2wi.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/pinmux.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/pmic_bus.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/prcm.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/rsb.c (100%)
>   rename arch/arm/{cpu/armv7/sunxi => mach-sunxi}/usb_phy.c (99%)
>   create mode 100644 configs/pine64_plus_defconfig
>   create mode 100644 include/configs/sun50i.h
>

  parent reply	other threads:[~2016-03-29 15:45 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-29 15:29 [U-Boot] [PATCH 0/6] Add Pine64 support Alexander Graf
2016-03-29 15:29 ` [U-Boot] [PATCH 1/6] sunxi: Move cpu independent code to mach directory Alexander Graf
2016-03-29 15:29 ` [U-Boot] [PATCH 2/6] sunxi: Depend SPL configs on SUPPORT_SPL Alexander Graf
2016-03-29 15:29 ` [U-Boot] [PATCH 3/6] arm: Allow u32 as addrs for readX/writeX Alexander Graf
2016-03-29 15:46   ` Hans de Goede
2016-03-29 15:29 ` [U-Boot] [PATCH 4/6] sunxi: Explicitly cast u32 pointer conversions Alexander Graf
2016-03-29 15:29 ` [U-Boot] [PATCH 5/6] sunxi: Add support for Allwinner A64 SoCs Alexander Graf
2016-03-29 15:29 ` [U-Boot] [PATCH 6/6] sunxi: Add Pine64+ support Alexander Graf
2016-03-29 15:45 ` Hans de Goede [this message]
2016-03-29 16:08   ` [U-Boot] [PATCH 0/6] Add Pine64 support Alexander Graf
2016-03-30  7:35     ` Hans de Goede
2016-03-31 18:53     ` Hans de Goede
2016-03-31 19:15       ` Alexander Graf
2016-03-31 19:22         ` Hans de Goede
2016-03-31 19:23           ` Hans de Goede
2016-03-30 15:53 ` [U-Boot] [PATCH 7/6] sunxi: Reserve ATF memory space on A64 Alexander Graf
2016-04-01 11:06   ` Ian Campbell
2016-04-01 11:08     ` Alexander Graf
2016-04-01 11:12       ` Ian Campbell
2016-04-01 11:23         ` Alexander Graf
2016-04-13 19:46   ` Andre Przywara
2016-04-13 19:48     ` Alexander Graf
2016-04-13 20:10       ` André Przywara
2016-04-13 21:26         ` Alexander Graf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56FAA329.9070602@redhat.com \
    --to=hdegoede@redhat.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.