All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/16] ARM: uniphier: UniPhier SoC updates for v2017.03 (3rd round)
@ 2017-01-27 21:53 Masahiro Yamada
  2017-01-27 21:53 ` [U-Boot] [PATCH 01/16] clk: uniphier: fix compatible strings for Pro5, PXs2, LD20 SD clock Masahiro Yamada
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Masahiro Yamada @ 2017-01-27 21:53 UTC (permalink / raw)
  To: u-boot

  - Fix clk driver
  - Optimize DRAM init code for LD20 SoC
  - Get DRAM information from more reliable source
  - Clean up SoC init code
  - Allow to use Image.gz for booting ARM64 Linux
  - Tidy up environments to use with ATF
  - Clean up I2C drivers



Masahiro Yamada (16):
  clk: uniphier: fix compatible strings for Pro5, PXs2, LD20 SD clock
  ARM: uniphier: shrink arrays of DDR-PHY parameters for LD20 SoC
  ARM: uniphier: detect RAM size by decoding HW register instead of DT
  ARM: uniphier: use gd->bd->bi_dram for memory reserve on LD20 SoC
  ARM: uniphier: refactor cmd_ddrphy
  ARM: uniphier: clean up UMC init for PXs2 SoC
  ARM: uniphier: refactor cmd_ddrmphy
  ARM: uniphier: compile board data only for SPL
  ARM: uniphier: collect SPL CONFIG symbols to the bottom of header
  ARM: uniphier: use Image.gz instead Image for booting ARM64 Linux
  ARM: uniphier: set initrd_high environment to skip initrd relocation
  ARM: uniphier: change the offset to environment storage area
  ARM: uniphier: change CONFIG_SPL_PAD_TO to 128KB
  ARM: uniphier: make update commands more flexible for ATF
  i2c: uniphier(-f): remove unneeded #include <dm/root.h>
  i2c: uniphier-f: use readl_poll_timeout() to poll registers

 arch/arm/mach-uniphier/Makefile            |   2 +-
 arch/arm/mach-uniphier/dram/cmd_ddrmphy.c  | 234 ++++++++++++++-----------
 arch/arm/mach-uniphier/dram/cmd_ddrphy.c   | 156 +++++++++--------
 arch/arm/mach-uniphier/dram/ddrmphy-regs.h | 262 ++++++++++++++--------------
 arch/arm/mach-uniphier/dram/umc-ld20.c     | 254 +++++++++-------------------
 arch/arm/mach-uniphier/dram/umc-pxs2.c     | 253 +++++++++++++--------------
 arch/arm/mach-uniphier/dram_init.c         | 263 ++++++++++++++++++++++-------
 arch/arm/mach-uniphier/init.h              |   1 +
 common/spl/Kconfig                         |   3 +-
 drivers/clk/uniphier/clk-uniphier-core.c   |   6 +-
 drivers/i2c/i2c-uniphier-f.c               |  35 ++--
 drivers/i2c/i2c-uniphier.c                 |   1 -
 include/configs/uniphier.h                 | 104 ++++++++----
 13 files changed, 839 insertions(+), 735 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2017-01-31  5:09 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-27 21:53 [U-Boot] [PATCH 00/16] ARM: uniphier: UniPhier SoC updates for v2017.03 (3rd round) Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 01/16] clk: uniphier: fix compatible strings for Pro5, PXs2, LD20 SD clock Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 02/16] ARM: uniphier: shrink arrays of DDR-PHY parameters for LD20 SoC Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 03/16] ARM: uniphier: detect RAM size by decoding HW register instead of DT Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 04/16] ARM: uniphier: use gd->bd->bi_dram for memory reserve on LD20 SoC Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 05/16] ARM: uniphier: refactor cmd_ddrphy Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 06/16] ARM: uniphier: clean up UMC init for PXs2 SoC Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 07/16] ARM: uniphier: refactor cmd_ddrmphy Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 08/16] ARM: uniphier: compile board data only for SPL Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 09/16] ARM: uniphier: collect SPL CONFIG symbols to the bottom of header Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 10/16] ARM: uniphier: use Image.gz instead Image for booting ARM64 Linux Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 11/16] ARM: uniphier: set initrd_high environment to skip initrd relocation Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 12/16] ARM: uniphier: change the offset to environment storage area Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 13/16] ARM: uniphier: change CONFIG_SPL_PAD_TO to 128KB Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 14/16] ARM: uniphier: make update commands more flexible for ATF Masahiro Yamada
2017-01-27 21:53 ` [U-Boot] [PATCH 15/16] i2c: uniphier(-f): remove unneeded #include <dm/root.h> Masahiro Yamada
2017-01-31  5:07   ` Heiko Schocher
2017-01-27 21:53 ` [U-Boot] [PATCH 16/16] i2c: uniphier-f: use readl_poll_timeout() to poll registers Masahiro Yamada
2017-01-31  5:09   ` Heiko Schocher
2017-01-29 12:11 ` [U-Boot] [PATCH 00/16] ARM: uniphier: UniPhier SoC updates for v2017.03 (3rd round) 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.