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: Thu, 23 Feb 2017 11:03:24 +0900	[thread overview]
Message-ID: <CAK7LNARfTh01aRN77pjY806qrROAqW6WtRdd37RW4XVkj4ky2g@mail.gmail.com> (raw)

Hi Tom,

Please pull the 4th round of UniPhier updates for v2017.03:

  - Fix regressions caused by the previous reworks
  - Add pin configuration support
  - Re-work SPL code
  - Update DRAM and PLL setup code
  - Enable needed configs, disable unneeded configs


The following changes since commit b24cf8540a85a9bf97975aadd6a7542f166c78a3:

  video: mxsfb: Fix reset hang when videomode variable is not present
(2017-02-22 21:47:59 +0100)

are available in the git repository at:

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

for you to fetch changes up to bc647958047cd03193e19cd8c08a6771fea828b7:

  ARM: uniphier: set up charge pump current for MPLL of LD11 SoC
(2017-02-23 09:00:16 +0900)

----------------------------------------------------------------
Kotaro Hayashi (1):
      ARM: uniphier: add DRAM PHY clock duty adjustment for LD20 SoC

Masahiro Yamada (22):
      ARM: uniphier: revive accidentally removed dcache_disable()
      ARM: uniphier: skip MEMCONF ch2 parsing if CH2_DISABLE bit is set
      ARM: uniphier: correct spelling of "invalid"
      ARM: uniphier: skip memreserve of unused DRAM bank of LD20
      ARM: uniphier: print Support Card info very late
      ARM: uniphier: update README.uniphier for latest build instruction
      ARM: uniphier: remove DRAM base address from board parameters
      ARM: uniphier: enable generic EHCI driver for uniphier_v8_defconfig
      pinctrl: uniphier: support pin configuration
      ARM: uniphier: rename second stage loader name
      ARM: dts: uniphier: drop u-boot, dm-pre-reloc from system-bus pinctrl node
      ARM: uniphier: disable CONFIG_MTD_NOR_FLASH
      ARM: uniphier: move MMC code to a separate file
      ARM: uniphier: move spl_boot_mode() to a separate file
      ARM: uniphier: rework spl_boot_device() and related code
      ARM: uniphier: remove dram_nr_ch from board parameters
      ARM: uniphier: deassert RST_n of eMMC device for LD11/LD20
      ARM: uniphier: disable CONFIG_SPL_DOS_PARTITION
      ARM: uniphier: enable CONFIG_CMD_GPT
      ARM: uniphier: enable CONFIG_CMD_CONFIG
      ARM: uniphier: add simple eMMC load APIs instead of ROM API
      ARM: uniphier: set up charge pump current for MPLL of LD11 SoC

 arch/arm/dts/uniphier-ld11-ref.dts                          |   4 -
 arch/arm/dts/uniphier-ld20-ref.dts                          |   4 -
 arch/arm/mach-uniphier/Makefile                             |   4 +-
 arch/arm/mach-uniphier/bcu/bcu-ld4.c                        |   2 +-
 arch/arm/mach-uniphier/bcu/bcu-sld3.c                       |   2 +-
 arch/arm/mach-uniphier/board_init.c                         |   1 +
 arch/arm/mach-uniphier/board_late_init.c                    |   4 +-
 arch/arm/mach-uniphier/boards.c                             |  42 +---
 arch/arm/mach-uniphier/boot-device/Makefile                 |  19 ++
 .../boot-mode-ld20.c => boot-device/boot-device-ld11.c}     |  52 ++---
 .../boot-mode-ld4.c => boot-device/boot-device-ld4.c}       |  36 +---
 .../boot-mode-pro5.c => boot-device/boot-device-pro5.c}     |  36 +---
 .../boot-mode-pxs2.c => boot-device/boot-device-pxs2.c}     |  37 ++--
 .../boot-mode-sld3.c => boot-device/boot-device-sld3.c}     |  36 +---
 arch/arm/mach-uniphier/boot-device/boot-device.c            | 206
+++++++++++++++++++
 arch/arm/mach-uniphier/boot-device/boot-device.h            |  35 ++++
 arch/arm/mach-uniphier/boot-device/spl_board.c              | 262
+++++++++++++++++++++++++
 arch/arm/mach-uniphier/boot-mode/Makefile                   |  21 --
 arch/arm/mach-uniphier/boot-mode/boot-device.h              |  29 ---
 arch/arm/mach-uniphier/boot-mode/boot-mode.c                | 140 -------------
 arch/arm/mach-uniphier/boot-mode/cmd_pinmon.c               |  59 ------
 arch/arm/mach-uniphier/boot-mode/spl_board.c                | 125 ------------
 arch/arm/mach-uniphier/clk/Makefile                         |   2 +-
 arch/arm/mach-uniphier/clk/clk-ld11.c                       |   8 +-
 arch/arm/mach-uniphier/clk/clk-ld20.c                       |  17 ++
 arch/arm/mach-uniphier/clk/pll-base-ld20.c                  |  21 ++
 arch/arm/mach-uniphier/clk/pll-ld11.c                       |   2 +
 arch/arm/mach-uniphier/clk/pll.h                            |   1 +
 arch/arm/mach-uniphier/dram/umc-ld11.c                      |   2 +-
 arch/arm/mach-uniphier/dram/umc-ld20.c                      |  25 ++-
 arch/arm/mach-uniphier/dram/umc-pxs2.c                      |  14 +-
 arch/arm/mach-uniphier/dram_init.c                          |  64 +++---
 arch/arm/mach-uniphier/init.h                               |   9 +-
 arch/arm/mach-uniphier/memconf.c                            |   2 +-
 arch/arm/mach-uniphier/micro-support-card.c                 |  11 +-
 arch/arm/mach-uniphier/mmc-boot-mode.c                      |  34 ++++
 arch/arm/mach-uniphier/mmc-first-dev.c                      |  46 +++++
 arch/arm/mach-uniphier/spl_board_init.c                     |   4 +
 configs/uniphier_ld11_defconfig                             |   5 +-
 configs/uniphier_ld20_defconfig                             |   5 +-
 configs/uniphier_ld4_sld8_defconfig                         |   5 +-
 configs/uniphier_pro4_defconfig                             |   5 +-
 configs/uniphier_pxs2_ld6b_defconfig                        |   5 +-
 configs/uniphier_sld3_defconfig                             |   5 +-
 configs/uniphier_v8_defconfig                               |   5 +-
 doc/README.uniphier                                         |   6 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-core.c            | 134 ++++++++++++-
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c            |   3 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c            |   3 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld6b.c            |   1 +
 drivers/pinctrl/uniphier/pinctrl-uniphier-pro5.c            |   3 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-pxs2.c            |   1 +
 drivers/pinctrl/uniphier/pinctrl-uniphier.h                 |   1 +
 include/configs/uniphier.h                                  |   2 +-
 54 files changed, 948 insertions(+), 659 deletions(-)
 create mode 100644 arch/arm/mach-uniphier/boot-device/Makefile
 rename arch/arm/mach-uniphier/{boot-mode/boot-mode-ld20.c =>
boot-device/boot-device-ld11.c} (73%)
 rename arch/arm/mach-uniphier/{boot-mode/boot-mode-ld4.c =>
boot-device/boot-device-ld4.c} (77%)
 rename arch/arm/mach-uniphier/{boot-mode/boot-mode-pro5.c =>
boot-device/boot-device-pro5.c} (76%)
 rename arch/arm/mach-uniphier/{boot-mode/boot-mode-pxs2.c =>
boot-device/boot-device-pxs2.c} (76%)
 rename arch/arm/mach-uniphier/{boot-mode/boot-mode-sld3.c =>
boot-device/boot-device-sld3.c} (83%)
 create mode 100644 arch/arm/mach-uniphier/boot-device/boot-device.c
 create mode 100644 arch/arm/mach-uniphier/boot-device/boot-device.h
 create mode 100644 arch/arm/mach-uniphier/boot-device/spl_board.c
 delete mode 100644 arch/arm/mach-uniphier/boot-mode/Makefile
 delete mode 100644 arch/arm/mach-uniphier/boot-mode/boot-device.h
 delete mode 100644 arch/arm/mach-uniphier/boot-mode/boot-mode.c
 delete mode 100644 arch/arm/mach-uniphier/boot-mode/cmd_pinmon.c
 delete mode 100644 arch/arm/mach-uniphier/boot-mode/spl_board.c
 create mode 100644 arch/arm/mach-uniphier/clk/clk-ld20.c
 create mode 100644 arch/arm/mach-uniphier/mmc-boot-mode.c
 create mode 100644 arch/arm/mach-uniphier/mmc-first-dev.c


-- 
Best Regards
Masahiro Yamada

             reply	other threads:[~2017-02-23  2:03 UTC|newest]

Thread overview: 85+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-23  2:03 Masahiro Yamada [this message]
2017-02-27  1:37 ` [U-Boot] pull request: u-boot-uniphier/master 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-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-09-14 14:13 Masahiro Yamada
2016-09-15  8:40 ` Masahiro Yamada
2016-09-15 11:13   ` 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=CAK7LNARfTh01aRN77pjY806qrROAqW6WtRdd37RW4XVkj4ky2g@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.