From: Hans de Goede <hdegoede@redhat.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-sunxi.git/master
Date: Thu, 31 Jul 2014 16:30:22 +0200 [thread overview]
Message-ID: <53DA52FE.3030202@redhat.com> (raw)
Hi Albert
Note:
1) This superseeds my previous pull-req as that conflicted with the Kconfig changes
which have landed in u-boot/master, this pull-req replaces all the boards.cfg changes
from the previous series with defconfig changes / additions;
2) Since this new pull-req is intended to resolve conflicts with u-boot/master it
is based on u-boot/master rather then on u-boot-arm/master.
Please pull from u-boot-sunxi.git/master for a set of patches adding
AHCI, EHCI, PSCI support + support for 14 new boards.
The following changes since commit 25b4adbba018633b943a99322bfb2fb819c0bafb:
include: remove CONFIG_SPL/CONFIG_TPL definition in config headers (2014-07-30 14:42:03 -0400)
are available in the git repository at:
http://git.denx.de/u-boot-sunxi.git master
for you to fetch changes up to 3340eab26d89176dd0bf543e6d2590665c577423:
sun7i: Add bananapi board (2014-07-31 15:37:24 +0200)
----------------------------------------------------------------
Hans de Goede (8):
sun4i: add USB EHCI settings
sun5i: add USB EHCI settings
sunxi: Enable EHCI on various sunxi boards
sunxi: Add CONFIG_MACPWR option
sun4i: Add support for a number of new sun4i boards
sun5i: Add support for a number of new sun5i boards
sun7i: Add support for a number of new sun7i boards
sun7i: Add bananapi board
Ian Campbell (2):
ahci: provide sunxi SATA driver using AHCI platform framework
cubieboard2: Enable AXP209 power controller
Marc Zyngier (2):
sunxi: HYP/non-sec: add sun7i PSCI backend
sunxi: HYP/non-sec: configure CNTFRQ on all CPUs
Roman Byshko (5):
sunxi: add defines to control USB Host clocks/resets
sunxi: add USB EHCI driver
sunxi: add general USB settings
sun7i: add USB EHCI settings
sun7i: cubietruck: enable USB EHCI
arch/arm/cpu/armv7/sunxi/Makefile | 3 +
arch/arm/cpu/armv7/sunxi/board.c | 5 +
arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 4 +
arch/arm/cpu/armv7/sunxi/psci.S | 162 +++++++++++++++++++++
arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 15 +-
board/sunxi/MAINTAINERS | 19 ++-
board/sunxi/Makefile | 16 ++
board/sunxi/ahci.c | 84 +++++++++++
board/sunxi/dram_a10_olinuxino_l.c | 31 ++++
board/sunxi/dram_a10s_olinuxino_m.c | 31 ++++
board/sunxi/dram_a13_olinuxino.c | 31 ++++
board/sunxi/dram_bananapi.c | 31 ++++
board/sunxi/dram_linksprite_pcduino3.c | 31 ++++
board/sunxi/dram_sun4i_360_1024_iow16.c | 31 ++++
board/sunxi/dram_sun4i_360_1024_iow8.c | 31 ++++
board/sunxi/dram_sun4i_360_512.c | 31 ++++
board/sunxi/dram_sun4i_384_1024_iow8.c | 31 ++++
board/sunxi/dram_sun7i_384_1024_iow16.c | 31 ++++
board/sunxi/dram_sun7i_384_512_busw16_iow16.c | 31 ++++
configs/A10-OLinuXino-Lime_defconfig | 4 +
configs/A10s-OLinuXino-M_defconfig | 4 +
configs/A13-OLinuXinoM_defconfig | 2 +-
configs/A13-OLinuXino_defconfig | 4 +
configs/A20-OLinuXino_MICRO_defconfig | 4 +
configs/Auxtek-T004_defconfig | 4 +
configs/Bananapi_defconfig | 4 +
configs/Cubieboard2_FEL_defconfig | 2 +-
configs/Cubieboard2_defconfig | 2 +-
configs/Cubieboard_defconfig | 2 +-
configs/Cubietruck_FEL_defconfig | 2 +-
configs/Cubietruck_defconfig | 2 +-
configs/Linksprite_pcDuino3_defconfig | 4 +
configs/Mele_A1000G_defconfig | 4 +
configs/Mele_A1000_defconfig | 4 +
configs/Mini-X-1Gb_defconfig | 4 +
configs/Mini-X_defconfig | 4 +
configs/ba10_tv_box_defconfig | 4 +
configs/i12-tvbox_defconfig | 4 +
configs/qt840a_defconfig | 4 +
configs/r7-tv-dongle_defconfig | 2 +-
drivers/block/ahci.c | 16 ++
drivers/usb/host/Makefile | 1 +
drivers/usb/host/ehci-sunxi.c | 201 ++++++++++++++++++++++++++
include/ahci.h | 4 +
include/configs/sun4i.h | 12 ++
include/configs/sun5i.h | 5 +
include/configs/sun7i.h | 19 +++
include/configs/sunxi-common.h | 18 +++
48 files changed, 982 insertions(+), 13 deletions(-)
create mode 100644 arch/arm/cpu/armv7/sunxi/psci.S
create mode 100644 board/sunxi/ahci.c
create mode 100644 board/sunxi/dram_a10_olinuxino_l.c
create mode 100644 board/sunxi/dram_a10s_olinuxino_m.c
create mode 100644 board/sunxi/dram_a13_olinuxino.c
create mode 100644 board/sunxi/dram_bananapi.c
create mode 100644 board/sunxi/dram_linksprite_pcduino3.c
create mode 100644 board/sunxi/dram_sun4i_360_1024_iow16.c
create mode 100644 board/sunxi/dram_sun4i_360_1024_iow8.c
create mode 100644 board/sunxi/dram_sun4i_360_512.c
create mode 100644 board/sunxi/dram_sun4i_384_1024_iow8.c
create mode 100644 board/sunxi/dram_sun7i_384_1024_iow16.c
create mode 100644 board/sunxi/dram_sun7i_384_512_busw16_iow16.c
create mode 100644 configs/A10-OLinuXino-Lime_defconfig
create mode 100644 configs/A10s-OLinuXino-M_defconfig
create mode 100644 configs/A13-OLinuXino_defconfig
create mode 100644 configs/A20-OLinuXino_MICRO_defconfig
create mode 100644 configs/Auxtek-T004_defconfig
create mode 100644 configs/Bananapi_defconfig
create mode 100644 configs/Linksprite_pcDuino3_defconfig
create mode 100644 configs/Mele_A1000G_defconfig
create mode 100644 configs/Mele_A1000_defconfig
create mode 100644 configs/Mini-X-1Gb_defconfig
create mode 100644 configs/Mini-X_defconfig
create mode 100644 configs/ba10_tv_box_defconfig
create mode 100644 configs/i12-tvbox_defconfig
create mode 100644 configs/qt840a_defconfig
create mode 100644 drivers/usb/host/ehci-sunxi.c
Regards,
Hans
next reply other threads:[~2014-07-31 14:30 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-31 14:30 Hans de Goede [this message]
2014-08-01 1:54 ` [U-Boot] Please pull u-boot-sunxi.git/master Masahiro Yamada
2014-08-09 13:41 ` Albert ARIBAUD
2014-08-09 16:42 ` Albert ARIBAUD
-- strict thread matches above, loose matches on Subject: below --
2014-09-05 13:23 Ian Campbell
2014-09-09 7:58 ` Albert ARIBAUD
2014-09-09 8:27 ` Ian Campbell
2014-08-28 21:17 Hans de Goede
2014-08-12 8:36 Hans de Goede
2014-08-29 17:48 ` Tom Rini
2014-07-30 8:37 Hans de Goede
2014-07-31 4:30 ` Masahiro Yamada
2014-07-31 7:54 ` Ian Campbell
2014-07-31 8:09 ` Hans de Goede
2014-07-31 8:23 ` Masahiro Yamada
2014-07-31 14:25 ` Hans de Goede
2014-07-18 19:14 Ian Campbell
2014-07-18 19:45 ` Siarhei Siamashka
2014-07-18 20:05 ` Ian Campbell
2014-07-28 8:53 ` Albert ARIBAUD
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=53DA52FE.3030202@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox