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] Please pull u-boot-sunxi.git/master
Date: Wed, 30 Jul 2014 10:37:52 +0200	[thread overview]
Message-ID: <53D8AEE0.2040902@redhat.com> (raw)

Hi Albert

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 9d195a546179bc732aba9eacccf0a9a3db591288:

  ARM: HYP/non-sec: remove MIDR check to validate CBAR (2014-07-28 17:19:55 +0200)

are available in the git repository at:

  http://git.denx.de/u-boot-sunxi.git master

for you to fetch changes up to 4854154002d92b3fc9fd708774cec7c04c954247:

  sun7i: Add bananapi board (2014-07-30 10:23:07 +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/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 ++++
 boards.cfg                                    |  28 +++-
 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 +++
 27 files changed, 923 insertions(+), 11 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 drivers/usb/host/ehci-sunxi.c

Regards,

Hans

             reply	other threads:[~2014-07-30  8:37 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-30  8:37 Hans de Goede [this message]
2014-07-31  4:30 ` [U-Boot] Please pull u-boot-sunxi.git/master 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
  -- 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-31 14:30 Hans de Goede
2014-08-01  1:54 ` Masahiro Yamada
2014-08-09 13:41   ` Albert ARIBAUD
2014-08-09 16:42 ` Albert ARIBAUD
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=53D8AEE0.2040902@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.