All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masahiro Yamada <yamada.masahiro@socionext.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] pull request: u-boot-uniphier/master
Date: Wed, 14 Sep 2016 23:13:43 +0900	[thread overview]
Message-ID: <CAK7LNAT7unJ-56-KOgWaOHj_0Yqcx_WB5Bm93b3og_b+AerQrg@mail.gmail.com> (raw)

Hi Tom,

Here is the fist pull request from me
for the v2016.11 development cycle.

The following UniPhier updates are included:

  - DM migration
      * remove legacy xHCI driver
      * convert MMC driver to CONFIG_BLOCK
  - Pinctrl driver improvements
      * New pin-group
      * Macro cleanup
  - Misc fixes, cleanups
      * Fix DRAM size of LD21 SoC
      * Consolidate board init functions

Please pull!


The following changes since commit 8cbb389bb3da80cbf8911f8386cbff92c6a78afe:

  Prepare v2016.09 (2016-09-12 10:05:51 -0400)

are available in the git repository at:

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

for you to fetch changes up to c55b84c37654e4bf6118d7e37893fdc55f0565e3:

  ARM: uniphier: introduce flags to adjust DRAM timing for LD20/LD21
(2016-09-14 22:54:20 +0900)

----------------------------------------------------------------
Masahiro Yamada (12):
      ARM: uniphier: sort select:s alphabetically
      usb: uniphier: remove UniPhier xHCI driver and select DM_USB
      ARM: uniphier: delete unnecessary xHCI pin-mux settings
      ARM: uniphier: enable Generic EHCI driver for Pro4 SoC
      mmc: uniphier-sd: migrate to CONFIG_BLK
      pinctrl: uniphier: add System Bus pin-mux settings
      pinctrl: uniphier: move register base macros from header to .c file
      ARM: uniphier: remove IECTRL setup code of LD4 SoC
      ARM: uniphier: use checkboard() instead of misc_init_f()
      ARM: uniphier: merge board init functions into board_init()
      ARM: uniphier: fix DRAM size of LD21 SoC package
      ARM: uniphier: introduce flags to adjust DRAM timing for LD20/LD21

 arch/arm/Kconfig                                   | 16 ++--
 arch/arm/mach-uniphier/Makefile                    |  5 +-
 arch/arm/mach-uniphier/board_common.c              | 20 -----
 arch/arm/mach-uniphier/board_early_init_r.c        | 15 ----
 .../{board_early_init_f.c => board_init.c}         | 16 +++-
 arch/arm/mach-uniphier/boards.c                    | 29 +++++++-
 arch/arm/mach-uniphier/init.h                      | 12 ++-
 arch/arm/mach-uniphier/micro-support-card.c        |  2 +-
 arch/arm/mach-uniphier/micro-support-card.h        | 16 ++--
 arch/arm/mach-uniphier/pinctrl/pinctrl-ld20.c      | 12 ---
 arch/arm/mach-uniphier/pinctrl/pinctrl-ld4.c       |  6 --
 arch/arm/mach-uniphier/pinctrl/pinctrl-ld6b.c      | 11 ---
 arch/arm/mach-uniphier/pinctrl/pinctrl-pro4.c      |  7 --
 arch/arm/mach-uniphier/pinctrl/pinctrl-pro5.c      |  7 --
 arch/arm/mach-uniphier/pinctrl/pinctrl-pxs2.c      | 11 ---
 arch/arm/mach-uniphier/print_misc_info.c           | 12 ---
 configs/uniphier_ld4_sld8_defconfig                |  1 -
 configs/uniphier_pro4_defconfig                    |  2 +
 configs/uniphier_sld3_defconfig                    |  1 -
 drivers/mmc/Kconfig                                |  1 +
 drivers/mmc/uniphier-sd.c                          | 50 ++++++-------
 drivers/pinctrl/uniphier/pinctrl-uniphier-core.c   |  4 +
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c   |  9 +++
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c   |  9 +++
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld4.c    | 18 +++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld6b.c   | 21 ++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c   | 30 ++++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-pro5.c   | 30 ++++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-pxs2.c   |  9 +++
 drivers/pinctrl/uniphier/pinctrl-uniphier-sld8.c   | 21 ++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier.h        |  4 -
 drivers/usb/host/Kconfig                           |  7 --
 drivers/usb/host/Makefile                          |  1 -
 drivers/usb/host/xhci-uniphier.c                   | 85 ----------------------
 include/configs/uniphier.h                         |  3 -
 include/fdtdec.h                                   |  1 -
 lib/fdtdec.c                                       |  1 -
 37 files changed, 244 insertions(+), 261 deletions(-)
 delete mode 100644 arch/arm/mach-uniphier/board_common.c
 delete mode 100644 arch/arm/mach-uniphier/board_early_init_r.c
 rename arch/arm/mach-uniphier/{board_early_init_f.c => board_init.c} (88%)
 delete mode 100644 arch/arm/mach-uniphier/print_misc_info.c
 delete mode 100644 drivers/usb/host/xhci-uniphier.c

-- 
Best Regards
Masahiro Yamada

             reply	other threads:[~2016-09-14 14:13 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-14 14:13 Masahiro Yamada [this message]
2016-09-15  8:40 ` [U-Boot] pull request: u-boot-uniphier/master Masahiro Yamada
2016-09-15 11:13   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2017-04-21 17:08 Masahiro Yamada
2017-04-25 12:56 ` Tom Rini
2017-03-13 20:57 Masahiro Yamada
2017-03-16 20:39 ` Tom Rini
2017-02-23  2:03 Masahiro Yamada
2017-02-27  1:37 ` Tom Rini
2017-01-29 12:15 Masahiro Yamada
2017-01-29 17:39 ` Tom Rini
2017-01-22 12:55 Masahiro Yamada
2017-01-23  2:21 ` Tom Rini
2017-01-17 16:36 Masahiro Yamada
2017-01-18  2:56 ` Tom Rini
2016-12-11  9:04 Masahiro Yamada
2016-12-12 15:55 ` Tom Rini
2016-10-29  8:29 Masahiro Yamada
2016-10-30 12:11 ` Tom Rini
2016-10-18 16:00 Masahiro Yamada
2016-10-19  1:53 ` Tom Rini
2016-10-10  1:14 Masahiro Yamada
2016-10-13  0:48 ` Tom Rini
2016-09-22 16:03 Masahiro Yamada
2016-09-23  1:58 ` Tom Rini
2016-08-28  4:29 Masahiro Yamada
2016-08-29 12:02 ` Tom Rini
2016-08-11 13:16 Masahiro Yamada
2016-08-11 22:44 ` Tom Rini
2016-07-23 15:55 Masahiro Yamada
2016-07-24  0:20 ` Tom Rini
2016-06-30 15:08 Masahiro Yamada
2016-07-01 20:47 ` Masahiro Yamada
2016-06-19 22:27 Masahiro Yamada
2016-06-20  2:13 ` Tom Rini
2016-06-08 23:27 Masahiro Yamada
2016-06-09 18:02 ` Tom Rini
2016-05-25 15:52 Masahiro Yamada
2016-05-26 15:49 ` Tom Rini
2016-04-30 16:18 Masahiro Yamada
2016-05-02 23:31 ` Tom Rini
2016-04-24  1:04 Masahiro Yamada
2016-04-26  0:15 ` Tom Rini
2016-03-31 16:25 Masahiro Yamada
2016-04-01 17:00 ` Tom Rini
2016-03-23 16:56 Masahiro Yamada
2016-03-23 22:12 ` Tom Rini
2016-03-08 16:18 Masahiro Yamada
2016-03-08 19:59 ` Tom Rini
2016-02-28 19:03 Masahiro Yamada
2016-02-29  9:06 ` Masahiro Yamada
2016-02-29 14:10   ` Tom Rini
2016-02-14  8:54 Masahiro Yamada
2016-02-14 18:56 ` Tom Rini
2016-01-19 23:54 Masahiro Yamada
2016-01-20  1:41 ` Tom Rini
2016-01-12 17:05 Masahiro Yamada
2016-01-12 20:10 ` Tom Rini
2015-12-22 15:22 Masahiro Yamada
2015-12-22 15:59 ` Tom Rini
2015-12-23  2:00   ` Masahiro Yamada
2015-12-27 15:10 ` Tom Rini
2015-11-11 14:44 Masahiro Yamada
2015-11-11 14:55 ` Tom Rini
2015-09-23 14:32 [U-Boot] Pull " Masahiro Yamada
2015-09-24 12:17 ` Masahiro Yamada
2015-09-24 13:19   ` Tom Rini
2015-08-30 15:53 [U-Boot] pull " Masahiro Yamada
2015-08-30 16:07 ` Tom Rini
2015-07-23 14:49 Masahiro Yamada
2015-07-23 19:30 ` Tom Rini
2015-07-01 16:16 [U-Boot] Pull " Masahiro Yamada
2015-07-01 21:56 ` Tom Rini
2015-05-30 18:05 [U-Boot] pull " Masahiro Yamada
2015-06-02 12:54 ` Tom Rini
     [not found] <CAMhH57TkcrHGxkjF9DcGmCc=PV+JaZV7bmG5T3QGrAEwEHB=BQ@mail.gmail.com>
2015-01-22 16:16 ` [U-Boot] Pull " Masahiro YAMADA
2015-01-23 21:56   ` Tom Rini
2014-11-27 17:33 Masahiro YAMADA
2014-12-01 20:23 ` Tom Rini
2014-11-11 15:46 Masahiro YAMADA
2014-11-11 20:49 ` Tom Rini
2014-10-29 14:00 Masahiro YAMADA
2014-11-04  2:33 ` Tom Rini
2014-10-05  5:32 Masahiro YAMADA
2014-10-07 10:09 ` 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=CAK7LNAT7unJ-56-KOgWaOHj_0Yqcx_WB5Bm93b3og_b+AerQrg@mail.gmail.com \
    --to=yamada.masahiro@socionext.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.