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/master into master
Date: Wed, 05 Nov 2014 13:19:18 +0100	[thread overview]
Message-ID: <545A15C6.6000909@redhat.com> (raw)

Hi Tom,

Please pull u-boot-sunxi/master into master, highlights:

1) Kconfig cleanup by Ian
2) device-model support for gpio and uarts by Simon

The following changes since commit 26f195c71252e98aebfffd5cfa994a4475559370:

  ARM: kwimage: fix v0 format (2014-11-04 15:03:07 -0500)

are available in the git repository at:

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

for you to fetch changes up to 44fd5914fb08ffcd96c9db7e448787f1d2aed801:

  dm: sunxi: Request USB vbus gpio (2014-11-05 13:10:22 +0100)

----------------------------------------------------------------
Chen-Yu Tsai (1):
      ARM: sunxi: Fix Ippo-q8h-v5 defconfig filename

Hans de Goede (2):
      dm: sunxi: Request card detect gpio
      dm: sunxi: Request USB vbus gpio

Ian Campbell (7):
      sunxi: kconfig: Add top-level ARCH_SUNXI
      sunxi: kconfig: Rename TARGET_SUN[45678]I to MACH_SUN[45678]I.
      sunxi: Kconfig: Make SPL_FEL a toplevel Kconfig option
      sunxi: Use CONFIG_MACH_SUN?I from Kconfig instead of CONFIG_SUN?I
      sunxi: Drop FEL variants of defconfigs.
      sunxi: kconfig: Introduce CONFIG_TARGET_<BOARD>
      sunxi: kconfig: Add %_felconfig rule to enable FEL build of sunxi platforms.

Simon Glass (6):
      dm: sunxi: dts: Add sun7i device tree files
      dm: sunxi: Add a new config for an FDT-based pcDuino3
      dm: sunxi: Add pinmux functions which take a bank parameter
      dm: sunxi: Make sure that GPIOs are requested
      dm: sunxi: Modify the GPIO driver to support driver model
      dm: sunxi: Add support for serial using driver model

 Makefile                                   |   3 +-
 arch/arm/Kconfig                           |  26 +-
 arch/arm/cpu/armv7/sunxi/Makefile          |  20 +-
 arch/arm/cpu/armv7/sunxi/board.c           |  20 +-
 arch/arm/cpu/armv7/sunxi/clock_sun4i.c     |   2 +-
 arch/arm/cpu/armv7/sunxi/cpu_info.c        |  10 +-
 arch/arm/cpu/armv7/sunxi/dram.c            |  34 +-
 arch/arm/cpu/armv7/sunxi/pinmux.c          |  32 +-
 arch/arm/dts/Makefile                      |   1 +
 arch/arm/dts/sun7i-a20-pcduino3.dts        | 177 ++++++
 arch/arm/dts/sun7i-a20.dtsi                | 988 +++++++++++++++++++++++++++++
 arch/arm/dts/sunxi-common-regulators.dtsi  |  89 +++
 arch/arm/include/asm/arch-sunxi/clock.h    |   2 +-
 arch/arm/include/asm/arch-sunxi/gpio.h     |   6 +-
 arch/arm/include/asm/arch-sunxi/mmc.h      |   2 +-
 arch/arm/include/asm/arch-sunxi/timer.h    |   4 +-
 arch/arm/include/asm/arch-sunxi/watchdog.h |   2 +-
 board/sunxi/Kconfig                        | 146 ++++-
 board/sunxi/MAINTAINERS                    |   3 +-
 board/sunxi/Makefile                       |  44 +-
 board/sunxi/ahci.c                         |   1 +
 configs/A10-OLinuXino-Lime_defconfig       |   6 +-
 configs/A10s-OLinuXino-M_defconfig         |   6 +-
 configs/A13-OLinuXinoM_defconfig           |   6 +-
 configs/A13-OLinuXino_defconfig            |   6 +-
 configs/A20-OLinuXino-Lime2_defconfig      |   6 +-
 configs/A20-OLinuXino-Lime_defconfig       |   6 +-
 configs/A20-OLinuXino_MICRO_defconfig      |   6 +-
 configs/Auxtek-T004_defconfig              |   6 +-
 configs/Bananapi_defconfig                 |   6 +-
 configs/Colombus_defconfig                 |   5 +-
 configs/Cubieboard2_FEL_defconfig          |   5 -
 configs/Cubieboard2_defconfig              |   6 +-
 configs/Cubieboard_defconfig               |   6 +-
 configs/Cubietruck_FEL_defconfig           |   5 -
 configs/Cubietruck_defconfig               |   6 +-
 configs/Ippo_q8h_defconfig                 |   4 -
 configs/Ippo_q8h_v5_defconfig              |   6 +
 configs/Linksprite_pcDuino3_defconfig      |   6 +-
 configs/Linksprite_pcDuino3_fdt_defconfig  |  11 +
 configs/Mele_A1000G_defconfig              |   6 +-
 configs/Mele_A1000_defconfig               |   6 +-
 configs/Mele_M3_defconfig                  |   6 +-
 configs/Mini-X-1Gb_defconfig               |   6 +-
 configs/Mini-X_defconfig                   |   6 +-
 configs/ba10_tv_box_defconfig              |   6 +-
 configs/i12-tvbox_defconfig                |   6 +-
 configs/qt840a_defconfig                   |   6 +-
 configs/r7-tv-dongle_defconfig             |   6 +-
 drivers/gpio/sunxi_gpio.c                  | 170 +++++
 drivers/mmc/sunxi_mmc.c                    |  36 +-
 drivers/serial/Makefile                    |   1 +
 drivers/serial/serial_dw.c                 |  39 ++
 drivers/usb/host/ehci-sunxi.c              |  12 +-
 include/configs/sun4i.h                    |   1 -
 include/configs/sun5i.h                    |   1 -
 include/configs/sun6i.h                    |   1 -
 include/configs/sun7i.h                    |   1 -
 include/configs/sun8i.h                    |   1 -
 include/configs/sunxi-common.h             |  22 +-
 include/dt-bindings/input/input.h          | 525 +++++++++++++++
 scripts/multiconfig.sh                     |  12 +
 62 files changed, 2403 insertions(+), 199 deletions(-)
 create mode 100644 arch/arm/dts/sun7i-a20-pcduino3.dts
 create mode 100644 arch/arm/dts/sun7i-a20.dtsi
 create mode 100644 arch/arm/dts/sunxi-common-regulators.dtsi
 delete mode 100644 configs/Cubieboard2_FEL_defconfig
 delete mode 100644 configs/Cubietruck_FEL_defconfig
 delete mode 100644 configs/Ippo_q8h_defconfig
 create mode 100644 configs/Ippo_q8h_v5_defconfig
 create mode 100644 configs/Linksprite_pcDuino3_fdt_defconfig
 create mode 100644 drivers/serial/serial_dw.c
 create mode 100644 include/dt-bindings/input/input.h

Regards,

Hans

             reply	other threads:[~2014-11-05 12:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-05 12:19 Hans de Goede [this message]
2014-11-05 15:59 ` [U-Boot] Please pull u-boot-sunxi/master into master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2014-11-20 20:52 Hans de Goede
2014-11-13 15:04 Hans de Goede
2014-11-13 15:47 ` Tom Rini
2014-10-24  8:06 Hans de Goede
2014-10-27  0:36 ` Tom Rini

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=545A15C6.6000909@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.