All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/12] ARM: uniphier: UniPhier SoC updates for v2016.11-rc1
@ 2016-09-13 16:05 Masahiro Yamada
  2016-09-13 16:05 ` [U-Boot] [PATCH 01/12] ARM: uniphier: sort select:s alphabetically Masahiro Yamada
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Masahiro Yamada @ 2016-09-13 16:05 UTC (permalink / raw)
  To: u-boot

I want to get this series in during this merge window.

  - 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



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}         | 12 ++-
 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        | 12 +--
 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, 238 insertions(+), 259 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} (94%)
 delete mode 100644 arch/arm/mach-uniphier/print_misc_info.c
 delete mode 100644 drivers/usb/host/xhci-uniphier.c

-- 
1.9.1

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-09-14 14:04 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-13 16:05 [U-Boot] [PATCH 00/12] ARM: uniphier: UniPhier SoC updates for v2016.11-rc1 Masahiro Yamada
2016-09-13 16:05 ` [U-Boot] [PATCH 01/12] ARM: uniphier: sort select:s alphabetically Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 02/12] usb: uniphier: remove UniPhier xHCI driver and select DM_USB Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 03/12] ARM: uniphier: delete unnecessary xHCI pin-mux settings Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 04/12] ARM: uniphier: enable Generic EHCI driver for Pro4 SoC Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 05/12] mmc: uniphier-sd: migrate to CONFIG_BLK Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 06/12] pinctrl: uniphier: add System Bus pin-mux settings Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 07/12] pinctrl: uniphier: move register base macros from header to .c file Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 08/12] ARM: uniphier: remove IECTRL setup code of LD4 SoC Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 09/12] ARM: uniphier: use checkboard() instead of misc_init_f() Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 10/12] ARM: uniphier: merge board init functions into board_init() Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 11/12] ARM: uniphier: fix DRAM size of LD21 SoC package Masahiro Yamada
2016-09-13 16:06 ` [U-Boot] [PATCH 12/12] ARM: uniphier: introduce flags to adjust DRAM timing for LD20/LD21 Masahiro Yamada
2016-09-14 14:04 ` [U-Boot] [PATCH 00/12] ARM: uniphier: UniPhier SoC updates for v2016.11-rc1 Masahiro Yamada

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.