public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Andreas Bießmann" <andreas@biessmann.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master
Date: Fri, 28 Oct 2016 19:05:42 +0200	[thread overview]
Message-ID: <20161028170542.29871-1-andreas@biessmann.org> (raw)

Hi Tom,

please pull the following changes into u-boot/master for 2016.11.

One of the patches introduce a build warning (-Wunused-function) which is
removed with the following patch. This is due to introducing the new feature,
then switch to the feature and remove the old code in a two step procedure.
Therefore I think this is Ok.

Andreas

The following changes since commit 5ac5861c4ba851b473e6a24940b412b397627d8d:

  travis-ci: Add test.py for various qemu platforms (2016-10-24 08:06:29 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to 0eafd4b77615efdd948e698d83be746dcf026a53:

  dm: at91: Add driver model support for the spi driver (2016-10-28 18:37:15 +0200)

----------------------------------------------------------------
Heiko Schocher (3):
      arm: at91: mpddrc: add missing MPDDRC_MD defines
      ARM: at91: clock: correct PRES offset for at91sam9x5
      arm, at91: add icache support

Robert P. J. Day (1):
      AT91: Correct misspelling of "redundent" in partition names

Wenyou Yang (16):
      clk: at91: Fix at91-pmc and at91-sckc's class ID
      ARM: at91/dt: sama5d2: Fix the warning from dtc
      clk: clk-uclass: Assign clk->dev before call .of_xlate
      clk: at91: Improve the clock implementation
      gpio: atmel_pio4: Remove unnecessary clock calling
      i2c: at91_i2c: Remove unnecessary clock calling
      i2c: at91_i2c: Change error return -ENODEV to -EINVAL
      usb: ehci-atmel: Remove unnecessary clock calling
      mmc: atmel_sdhci: Remove unnecessary clock calling
      serial: Kconfig: Add ATMEL_USART option
      serial: atmel_usart: Support enable an early debug UART
      board: sama5d2_xplained: Move config options to defconfigs
      board: sama5d2_xplained: Clean up code
      board: sama5d2_xplained: Set 'ethaddr' got from AT24MAC
      board: sama5d2_xplained: Enable an early debug UART
      dm: at91: Add driver model support for the spi driver

 arch/arm/dts/sama5d2.dtsi                       | 140 ++++++------
 arch/arm/mach-at91/arm926ejs/Makefile           |   1 +
 arch/arm/mach-at91/arm926ejs/cache.c            |  29 +++
 arch/arm/mach-at91/arm926ejs/clock.c            |   6 +
 arch/arm/mach-at91/include/mach/atmel_mpddrc.h  |   3 +
 board/atmel/sama5d2_xplained/sama5d2_xplained.c | 167 ++++++--------
 board/bluewater/gurnard/gurnard.c               |   6 -
 configs/sama5d2_xplained_mmc_defconfig          |  37 ++-
 configs/sama5d2_xplained_spiflash_defconfig     |  37 ++-
 drivers/clk/at91/Kconfig                        |   1 +
 drivers/clk/at91/clk-generated.c                |  87 ++++---
 drivers/clk/at91/clk-peripheral.c               |  72 ++++--
 drivers/clk/at91/clk-system.c                   |  57 +++--
 drivers/clk/at91/pmc.c                          |  72 ++++--
 drivers/clk/at91/pmc.h                          |   5 +-
 drivers/clk/at91/sckc.c                         |  17 +-
 drivers/clk/clk-uclass.c                        |   3 +
 drivers/gpio/atmel_pio4.c                       |  12 -
 drivers/i2c/at91_i2c.c                          |  18 +-
 drivers/mmc/atmel_sdhci.c                       |  27 +--
 drivers/serial/Kconfig                          |  14 ++
 drivers/serial/atmel_usart.c                    |  22 ++
 drivers/spi/Kconfig                             |   8 +
 drivers/spi/atmel_spi.c                         | 288 ++++++++++++++++++++++++
 drivers/usb/host/ehci-atmel.c                   |  15 --
 include/configs/at91-sama5_common.h             |   2 +-
 include/configs/at91sam9rlek.h                  |   2 +-
 include/configs/sama5d2_xplained.h              |  31 +--
 28 files changed, 795 insertions(+), 384 deletions(-)
 create mode 100644 arch/arm/mach-at91/arm926ejs/cache.c

             reply	other threads:[~2016-10-28 17:05 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-28 17:05 Andreas Bießmann [this message]
2016-10-29  1:59 ` [U-Boot] [PULL] u-boot-atmel/master -> u-boot/master Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2016-08-15 21:04 Andreas Bießmann
2016-08-16  1:09 ` Tom Rini
2016-08-16  1:10 ` Tom Rini
2016-08-15 20:23 Andreas Bießmann
2016-08-15 20:33 ` Tom Rini
2016-08-15 20:45   ` Andreas Bießmann
2016-08-15 20:55     ` Tom Rini
2016-06-26 18:38 Andreas Bießmann
2016-06-28  1:12 ` Tom Rini
2016-06-12 22:02 Andreas Bießmann
2016-06-19 14:08 ` Tom Rini
2016-05-24  9:41 Andreas Bießmann
2016-05-24 15:55 ` Tom Rini
2016-05-03 11:35 Andreas Bießmann
2016-05-03 12:13 ` Tom Rini
2016-05-03 12:33   ` Andreas Bießmann
2016-05-03 13:18     ` Tom Rini
2016-02-18 21:34 Andreas Bießmann
2016-02-19 13:00 ` Andreas Bießmann
2016-02-19 14:23   ` Tom Rini
2016-02-02 11:52 Andreas Bießmann
2016-02-02 15:49 ` Tom Rini
2015-11-30 21:30 Andreas Bießmann
2015-12-01  1:37 ` Tom Rini
2015-11-03 14:14 Andreas Bießmann
2015-11-03 16:09 ` Tom Rini
2015-11-01 21:04 Andreas Bießmann
2015-11-01 23:38 ` Tom Rini
2015-10-01  7:44 Andreas Bießmann
2015-10-03  0:35 ` Tom Rini
2015-09-11  7:45 Andreas Bießmann
2015-09-11 13:00 ` Tom Rini
2015-08-21 13:25 Andreas Bießmann
2015-08-21 13:36 ` Andreas Bießmann
2015-05-13 11:04 Andreas Bießmann
2015-05-14 19:14 ` Tom Rini
2015-03-31 23:11 Andreas Bießmann
2015-04-01  0:56 ` Tom Rini
2015-03-20  7:42 Andreas Bießmann
2015-03-20 15:24 ` Tom Rini
2015-02-07 23:48 Andreas Bießmann
2015-02-10 20:09 ` Tom Rini
2015-01-26 10:12 Andreas Bießmann
2015-01-27 11:51 ` Tom Rini
2015-01-11  1:32 Andreas Bießmann
2015-01-11  2:17 ` Tom Rini
2014-11-17 12:35 Andreas Bießmann
2014-11-17 14:50 ` 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=20161028170542.29871-1-andreas@biessmann.org \
    --to=andreas@biessmann.org \
    --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