All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-04-23 16:14 Masahiro Yamada
  2018-04-23 20:17 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-04-23 16:14 UTC (permalink / raw)
  To: u-boot

Hi Tom,

I ended up with fixing some image size problems
to get my board (uniphier_v7_defconfig) back working.

Please pull a little more.



The following changes since commit 275d80a4c2fb63890f3f4c16b7ad481064e650a0:

  Merge git://git.denx.de/u-boot-usb (2018-04-22 09:30:36 -0400)

are available in the git repository at:

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

for you to fetch changes up to 3ce5b1a8d86d46f4a390e31e52b7ba441fdb229e:

  ARM: uniphier: move SPL stack address (2018-04-24 00:35:35 +0900)

----------------------------------------------------------------
Masahiro Yamada (7):
      ARM: uniphier: increase CONFIG_SYS_MONITOR_LEN
      mmc: tmio: move clk_enable() to each driver's probe function
      mmc: uniphier-sd: skip clock set-up for SPL
      ARM: dts: uniphier: drop u-boot, dm-pre-reloc from SD/eMMC clock node
      clk: uniphier: disable SPL_CLK
      ARM: uniphier: select a correct mmc device before flashing images
      ARM: uniphier: move SPL stack address

 arch/arm/dts/uniphier-v7-u-boot.dtsi | 16 ----------------
 drivers/clk/uniphier/Kconfig         |  1 -
 drivers/mmc/renesas-sdhi.c           | 23 +++++++++++++++++++++++
 drivers/mmc/tmio-common.c            | 22 ----------------------
 drivers/mmc/uniphier-sd.c            | 29 +++++++++++++++++++++++++++++
 include/configs/uniphier.h           |  5 +++--
 6 files changed, 55 insertions(+), 41 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-04-23 16:14 [U-Boot] [GIT PULL] u-boot-uniphier/master Masahiro Yamada
@ 2018-04-23 20:17 ` Tom Rini
  2018-04-24  0:24   ` Masahiro Yamada
  0 siblings, 1 reply; 42+ messages in thread
From: Tom Rini @ 2018-04-23 20:17 UTC (permalink / raw)
  To: u-boot

On Tue, Apr 24, 2018 at 01:14:30AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> I ended up with fixing some image size problems
> to get my board (uniphier_v7_defconfig) back working.
> 
> Please pull a little more.
> 
> 
> 
> The following changes since commit 275d80a4c2fb63890f3f4c16b7ad481064e650a0:
> 
>   Merge git://git.denx.de/u-boot-usb (2018-04-22 09:30:36 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 3ce5b1a8d86d46f4a390e31e52b7ba441fdb229e:
> 
>   ARM: uniphier: move SPL stack address (2018-04-24 00:35:35 +0900)
> 

Applied to u-boot/master.

And, can you perhaps leverage CONFIG_SPL_MAX_SIZE so that in the future
it becomes a build-time failure when the size exceeds the limit (and I
can prod whomever is adding more code growth)?  Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180423/6d640a1a/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-04-23 20:17 ` Tom Rini
@ 2018-04-24  0:24   ` Masahiro Yamada
  2018-04-24  0:34     ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-04-24  0:24 UTC (permalink / raw)
  To: u-boot

2018-04-24 5:17 GMT+09:00 Tom Rini <trini@konsulko.com>:
> On Tue, Apr 24, 2018 at 01:14:30AM +0900, Masahiro Yamada wrote:
>
>> Hi Tom,
>>
>> I ended up with fixing some image size problems
>> to get my board (uniphier_v7_defconfig) back working.
>>
>> Please pull a little more.
>>
>>
>>
>> The following changes since commit 275d80a4c2fb63890f3f4c16b7ad481064e650a0:
>>
>>   Merge git://git.denx.de/u-boot-usb (2018-04-22 09:30:36 -0400)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-uniphier.git master
>>
>> for you to fetch changes up to 3ce5b1a8d86d46f4a390e31e52b7ba441fdb229e:
>>
>>   ARM: uniphier: move SPL stack address (2018-04-24 00:35:35 +0900)
>>
>
> Applied to u-boot/master.
>
> And, can you perhaps leverage CONFIG_SPL_MAX_SIZE so that in the future
> it becomes a build-time failure when the size exceeds the limit (and I
> can prod whomever is adding more code growth)?  Thanks!


I already have it in include/config/uniphier.h


#define CONFIG_SPL_MAX_FOOTPRINT   0x10000
#define CONFIG_SPL_MAX_SIZE        0x10000


Both of them work in the linker script
(arch/arm/cpu/u-boot-spl.lds)

This check is not precise for CONFIG_SPL_OF_CONTROL.

It is true that u-boot-spl-nodtb.bin is limited to 64KB,
but I need to check the size of u-boot-spl.bin
(SPL image with DTB appended).


Assuming u-boot-spl.dtb is roughly 2.5 KB,
I could do


/* max size 64KB - DTB 2.5KB = 61.5KB */
#define CONFIG_SPL_MAX_FOOTPRINT   0xf600

But, this is not precise, and looks ugly.


Maybe, the CONFIG_SPL_MAX_FOOTPRINT check
should be moved to scripts/Makefile.spl



-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-04-24  0:24   ` Masahiro Yamada
@ 2018-04-24  0:34     ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-04-24  0:34 UTC (permalink / raw)
  To: u-boot

On Tue, Apr 24, 2018 at 09:24:41AM +0900, Masahiro Yamada wrote:
> 2018-04-24 5:17 GMT+09:00 Tom Rini <trini@konsulko.com>:
> > On Tue, Apr 24, 2018 at 01:14:30AM +0900, Masahiro Yamada wrote:
> >
> >> Hi Tom,
> >>
> >> I ended up with fixing some image size problems
> >> to get my board (uniphier_v7_defconfig) back working.
> >>
> >> Please pull a little more.
> >>
> >>
> >>
> >> The following changes since commit 275d80a4c2fb63890f3f4c16b7ad481064e650a0:
> >>
> >>   Merge git://git.denx.de/u-boot-usb (2018-04-22 09:30:36 -0400)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-uniphier.git master
> >>
> >> for you to fetch changes up to 3ce5b1a8d86d46f4a390e31e52b7ba441fdb229e:
> >>
> >>   ARM: uniphier: move SPL stack address (2018-04-24 00:35:35 +0900)
> >>
> >
> > Applied to u-boot/master.
> >
> > And, can you perhaps leverage CONFIG_SPL_MAX_SIZE so that in the future
> > it becomes a build-time failure when the size exceeds the limit (and I
> > can prod whomever is adding more code growth)?  Thanks!
> 
> 
> I already have it in include/config/uniphier.h
> 
> 
> #define CONFIG_SPL_MAX_FOOTPRINT   0x10000
> #define CONFIG_SPL_MAX_SIZE        0x10000
> 
> 
> Both of them work in the linker script
> (arch/arm/cpu/u-boot-spl.lds)
> 
> This check is not precise for CONFIG_SPL_OF_CONTROL.
> 
> It is true that u-boot-spl-nodtb.bin is limited to 64KB,
> but I need to check the size of u-boot-spl.bin
> (SPL image with DTB appended).
> 
> 
> Assuming u-boot-spl.dtb is roughly 2.5 KB,
> I could do
> 
> 
> /* max size 64KB - DTB 2.5KB = 61.5KB */
> #define CONFIG_SPL_MAX_FOOTPRINT   0xf600
> 
> But, this is not precise, and looks ugly.
> 
> 
> Maybe, the CONFIG_SPL_MAX_FOOTPRINT check
> should be moved to scripts/Makefile.spl

Ah.  Yeah, if it makes sense to catch more cases by moving the tests out
of the linker script and into a script, we can go that direction.
Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180423/6ad5e77f/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-09-11 11:44 Masahiro Yamada
@ 2018-09-12  0:40 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-09-12  0:40 UTC (permalink / raw)
  To: u-boot

On Tue, Sep 11, 2018 at 08:44:41PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull UniPhier updates.
> 
> Thanks!
> 
> 
> 
> The following changes since commit f88b6facb87dc4a52f1630eb9d858c0f54c6628e:
> 
>   Prepare v2018.09 (2018-09-10 17:46:42 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to e39eed8f476b6f8861318fc122b546158edce259:
> 
>   ARM: uniphier: remove ad-hoc clock enabling for EHCI (2018-09-11
> 20:37:19 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180911/08c4a810/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-09-11 11:44 Masahiro Yamada
  2018-09-12  0:40 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-09-11 11:44 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull UniPhier updates.

Thanks!



The following changes since commit f88b6facb87dc4a52f1630eb9d858c0f54c6628e:

  Prepare v2018.09 (2018-09-10 17:46:42 -0400)

are available in the git repository at:

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

for you to fetch changes up to e39eed8f476b6f8861318fc122b546158edce259:

  ARM: uniphier: remove ad-hoc clock enabling for EHCI (2018-09-11
20:37:19 +0900)

----------------------------------------------------------------
Masahiro Yamada (5):
      ARM: dts: uniphier: sync DT with Linux 4.19-rc1
      ARM: uniphier: increase CONFIG_SYS_MONITOR_LEN again
      ARM: uniphier: enable CONFIG_CMD_UBI
      mmc: uniphier-sd: sync with Linux
      ARM: uniphier: remove ad-hoc clock enabling for EHCI

 arch/arm/dts/uniphier-ld11-global.dts |  3 ++-
 arch/arm/dts/uniphier-ld11.dtsi       |  2 +-
 arch/arm/dts/uniphier-ld20-global.dts |  3 ++-
 arch/arm/dts/uniphier-ld20.dtsi       |  6 ++++--
 arch/arm/dts/uniphier-ld4.dtsi        | 17 ++++++++---------
 arch/arm/dts/uniphier-pinctrl.dtsi    | 12 +-----------
 arch/arm/dts/uniphier-pro4-ref.dts    |  4 ----
 arch/arm/dts/uniphier-pro4.dtsi       | 26 +++++++++++---------------
 arch/arm/dts/uniphier-pro5.dtsi       | 15 +++++++--------
 arch/arm/dts/uniphier-pxs2.dtsi       | 18 ++++++++++--------
 arch/arm/dts/uniphier-pxs3.dtsi       | 10 +++++++---
 arch/arm/dts/uniphier-sld8.dtsi       | 17 ++++++++---------
 arch/arm/mach-uniphier/clk/clk-ld11.c |  6 ------
 arch/arm/mach-uniphier/clk/clk-ld4.c  |  3 ---
 arch/arm/mach-uniphier/clk/clk-pro4.c |  3 ---
 arch/arm/mach-uniphier/sc-regs.h      |  3 ---
 configs/uniphier_ld4_sld8_defconfig   |  1 +
 configs/uniphier_v7_defconfig         |  1 +
 drivers/mmc/uniphier-sd.c             |  4 +++-
 include/configs/uniphier.h            |  4 ++--
 20 files changed, 68 insertions(+), 90 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-07-24 23:52 Masahiro Yamada
@ 2018-07-26 11:13 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-07-26 11:13 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 25, 2018 at 08:52:40AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull UniPhier updates + Kconfig warning fix.
> 
> Thanks.
> 
> 
> 
> The following changes since commit 323a73adc9a1bf2de43fe03bdd9c3038ce7c2784:
> 
>   mtd: nand: add new enum for storing ECC algorithm (2018-07-23 14:33:21 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 7ef5b1e7ed040683ff551f0234c471ce0d76828c:
> 
>   ARM: uniphier: enable distro boot (2018-07-25 08:47:53 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180726/af521acb/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-07-24 23:52 Masahiro Yamada
  2018-07-26 11:13 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-07-24 23:52 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull UniPhier updates + Kconfig warning fix.

Thanks.



The following changes since commit 323a73adc9a1bf2de43fe03bdd9c3038ce7c2784:

  mtd: nand: add new enum for storing ECC algorithm (2018-07-23 14:33:21 -0400)

are available in the git repository at:

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

for you to fetch changes up to 7ef5b1e7ed040683ff551f0234c471ce0d76828c:

  ARM: uniphier: enable distro boot (2018-07-25 08:47:53 +0900)

----------------------------------------------------------------
Luis Araneda (1):
      kconfig: Avoid format overflow warning from GCC 8.1

Masahiro Yamada (8):
      mtd: nand: denali: correct buffer alignment for DMA transfer
      fdt_support: make fdt_fixup_mtdparts() prototype more specific
      board: constify struct node_info array
      ARM: uniphier: clean-up ft_board_setup()
      ARM: uniphier: split ft_board_setup() out to a separate file
      ARM: uniphier: support fdt_fixup_mtdparts
      ARM: uniphier: enable MTD partition and UBI
      ARM: uniphier: enable distro boot

 arch/arm/Kconfig                          |  2 +
 arch/arm/mach-uniphier/Kconfig            |  1 -
 arch/arm/mach-uniphier/Makefile           |  1 +
 arch/arm/mach-uniphier/board_late_init.c  |  8 +--
 arch/arm/mach-uniphier/dram_init.c        | 35 ---------
 arch/arm/mach-uniphier/fdt-fixup.c        | 64 +++++++++++++++++
 board/CarMediaLab/flea3/flea3.c           |  2 +-
 board/compulab/cm_fx6/cm_fx6.c            |  2 +-
 board/freescale/bsc9131rdb/bsc9131rdb.c   |  2 +-
 board/freescale/bsc9132qds/bsc9132qds.c   |  2 +-
 board/gateworks/gw_ventana/gw_ventana.c   |  2 +-
 board/isee/igep003x/board.c               |  2 +-
 board/isee/igep00x0/igep00x0.c            |  2 +-
 board/toradex/colibri_imx7/colibri_imx7.c |  2 +-
 board/toradex/colibri_vf/colibri_vf.c     |  2 +-
 common/fdt_support.c                      | 13 ++--
 configs/uniphier_ld4_sld8_defconfig       |  6 +-
 configs/uniphier_v7_defconfig             |  6 +-
 configs/uniphier_v8_defconfig             |  5 +-
 doc/README.uniphier                       | 55 ++++++++++++++
 drivers/mtd/nand/denali.c                 |  2 +-
 include/configs/uniphier.h                | 84 +++++++++++-----------
 include/fdt_support.h                     | 11 ++-
 scripts/kconfig/confdata.c                |  2 +-
 24 files changed, 206 insertions(+), 107 deletions(-)
 create mode 100644 arch/arm/mach-uniphier/fdt-fixup.c


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-06-22 16:36 Masahiro Yamada
@ 2018-06-22 23:26 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-06-22 23:26 UTC (permalink / raw)
  To: u-boot

On Sat, Jun 23, 2018 at 01:36:25AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull a little more. Thanks!
> 
> 
> The following changes since commit dc7df68f21093039b3ab1a1702f5b7cd3e621431:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-sh (2018-06-21
> 09:02:35 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 9ef88391d049c04922aa4679eb17ee85f4ebc608:
> 
>   ARM: dts: uniphier: enable SD card for PXs3 reference board
> (2018-06-23 01:28:17 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180622/93d76d84/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-06-22 16:36 Masahiro Yamada
  2018-06-22 23:26 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-06-22 16:36 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull a little more. Thanks!


The following changes since commit dc7df68f21093039b3ab1a1702f5b7cd3e621431:

  Merge branch 'master' of git://git.denx.de/u-boot-sh (2018-06-21
09:02:35 -0400)

are available in the git repository at:

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

for you to fetch changes up to 9ef88391d049c04922aa4679eb17ee85f4ebc608:

  ARM: dts: uniphier: enable SD card for PXs3 reference board
(2018-06-23 01:28:17 +0900)

----------------------------------------------------------------
Masahiro Yamada (6):
      ARM: uniphier: enable CONFIG_SNI_AVE and disable CONFIG_SMC911X
      reset: uniphier: sync reset data with Linux 4.18-rc1
      serial: uniphier: rename struct uniphier_serial_private_data
      serial: uniphier: set clock rate without clock-frequency property
      ARM: dts: uniphier: sync DT with Linux 4.18-rc1
      ARM: dts: uniphier: enable SD card for PXs3 reference board

 arch/arm/dts/uniphier-ld11.dtsi    |  4 ----
 arch/arm/dts/uniphier-ld20.dtsi    |  4 ----
 arch/arm/dts/uniphier-ld4.dtsi     |  4 ----
 arch/arm/dts/uniphier-pro4.dtsi    |  6 +-----
 arch/arm/dts/uniphier-pro5.dtsi    |  4 ----
 arch/arm/dts/uniphier-pxs2.dtsi    |  4 ----
 arch/arm/dts/uniphier-pxs3-ref.dts |  4 ++++
 arch/arm/dts/uniphier-pxs3.dtsi    |  4 ----
 arch/arm/dts/uniphier-sld8.dtsi    |  4 ----
 configs/uniphier_v7_defconfig      |  6 ++----
 configs/uniphier_v8_defconfig      |  6 ++----
 drivers/reset/reset-uniphier.c     | 13 ++++++++-----
 drivers/serial/serial_uniphier.c   | 51
++++++++++++++++++++++++++++++++++++++++++--------
 13 files changed, 60 insertions(+), 54 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-05-22 15:37 Masahiro Yamada
@ 2018-05-22 22:29 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-05-22 22:29 UTC (permalink / raw)
  To: u-boot

On Wed, May 23, 2018 at 12:37:04AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull some more patches. Thanks.
> 
> 
> The following changes since commit 624d2cae3401c2e4d43c571a9b81d1f650e7703d:
> 
>   SPDX: Fixup SPDX tags in a few new files (2018-05-20 09:47:45 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to c3d3e2a1ef7a84384ffb6ab107c6994e1656ebc6:
> 
>   ARM: dts: uniphier: sync with Linux 4.17-rc6 (2018-05-23 00:32:39 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180522/b4a4022e/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-05-22 15:37 Masahiro Yamada
  2018-05-22 22:29 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-05-22 15:37 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull some more patches. Thanks.


The following changes since commit 624d2cae3401c2e4d43c571a9b81d1f650e7703d:

  SPDX: Fixup SPDX tags in a few new files (2018-05-20 09:47:45 -0400)

are available in the git repository at:

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

for you to fetch changes up to c3d3e2a1ef7a84384ffb6ab107c6994e1656ebc6:

  ARM: dts: uniphier: sync with Linux 4.17-rc6 (2018-05-23 00:32:39 +0900)

----------------------------------------------------------------
Kunihiko Hayashi (4):
      ARM: dts: uniphier: add syscon-phy-mode property to each ethernet node
      ARM: dts: uniphier: add required clocks and resets to Pro4 ethernet node
      ARM: dts: uniphier: add clock-names and reset-names to ethernet node
      ARM: dts: uniphier: change phy-mode to 'internal' for LD11

Masahiro Yamada (2):
      ARM: uniphier: rename environment variable fdt_file to fdtfile
      ARM: dts: uniphier: sync with Linux 4.17-rc6

 arch/arm/dts/uniphier-ld11.dtsi          |  7 +++++--
 arch/arm/dts/uniphier-ld20-ref.dts       |  8 ++++++++
 arch/arm/dts/uniphier-ld20.dtsi          |  5 ++++-
 arch/arm/dts/uniphier-pro4.dtsi          | 10 +++++++---
 arch/arm/dts/uniphier-pxs2.dtsi          |  3 +++
 arch/arm/dts/uniphier-pxs3.dtsi          |  8 +++++++-
 arch/arm/mach-uniphier/board_late_init.c |  4 ++--
 include/configs/uniphier.h               |  4 ++--
 8 files changed, 38 insertions(+), 11 deletions(-)



-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-05-08  1:32 Masahiro Yamada
@ 2018-05-09  1:30 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-05-09  1:30 UTC (permalink / raw)
  To: u-boot

On Tue, May 08, 2018 at 10:32:20AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Now that MW is open, please pull UniPhier SoC updates.
> Thanks.
> 
> 
> The following changes since commit a43d46a73cb2c40481791cb292b8eb0b5a80d55e:
> 
>   arm: v7R: Add support for enabling caches (2018-05-07 15:53:29 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 079b54f29e4bfacb4a84c859d8ea95e50fb50bb5:
> 
>   ARM: uniphier: enable CONFIG_PINCONF (2018-05-08 10:25:15 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180508/656629b1/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-05-08  1:32 Masahiro Yamada
  2018-05-09  1:30 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-05-08  1:32 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Now that MW is open, please pull UniPhier SoC updates.
Thanks.


The following changes since commit a43d46a73cb2c40481791cb292b8eb0b5a80d55e:

  arm: v7R: Add support for enabling caches (2018-05-07 15:53:29 -0400)

are available in the git repository at:

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

for you to fetch changes up to 079b54f29e4bfacb4a84c859d8ea95e50fb50bb5:

  ARM: uniphier: enable CONFIG_PINCONF (2018-05-08 10:25:15 +0900)

----------------------------------------------------------------
Masahiro Yamada (7):
      pinctrl: uniphier: remove unneeded pin data of LD6b SoC
      pinctrl: uniphier: replace printf() with dev_err()
      pinctrl: uniphier: include <linux/build_bug.h> instead of <linux/bug.h>
      pinctrl: uniphier: support per-pin configuration via DT
      pinctrl: uniphier: support drive-strength configuration
      pinctrl: uniphier: add ethernet TX pin data for LD20
      ARM: uniphier: enable CONFIG_PINCONF

 configs/uniphier_v8_defconfig                    |   1 +
 drivers/pinctrl/uniphier/pinctrl-uniphier-core.c | 140
+++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c |  11 +++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld6b.c |  13 ------
 drivers/pinctrl/uniphier/pinctrl-uniphier.h      |  49 +++++++++++++++++---
 5 files changed, 190 insertions(+), 24 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-04-18 15:00 Masahiro Yamada
@ 2018-04-19  3:14 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-04-19  3:14 UTC (permalink / raw)
  To: u-boot

On Thu, Apr 19, 2018 at 12:00:22AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull a little more for v2018.05.  Thanks!
> 
> 
> 
> The following changes since commit 34b3722e381c0146b4aa7fea3a5243c588b8ed2f:
> 
>   configs: Resync with savedefconfig (2018-04-17 10:10:47 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to f8c08ab40939a7de0dfa5e398abede6bf525f508:
> 
>   reset: uniphier: add ethernet reset control support (2018-04-18
> 23:42:33 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180418/5e0892f6/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-04-18 15:00 Masahiro Yamada
  2018-04-19  3:14 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-04-18 15:00 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull a little more for v2018.05.  Thanks!



The following changes since commit 34b3722e381c0146b4aa7fea3a5243c588b8ed2f:

  configs: Resync with savedefconfig (2018-04-17 10:10:47 -0400)

are available in the git repository at:

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

for you to fetch changes up to f8c08ab40939a7de0dfa5e398abede6bf525f508:

  reset: uniphier: add ethernet reset control support (2018-04-18
23:42:33 +0900)

----------------------------------------------------------------
Kunihiko Hayashi (2):
      clk: uniphier: add ethernet clock control support
      reset: uniphier: add ethernet reset control support

Masahiro Yamada (1):
      ARM: dts: uniphier: sync DT with Linux 4.17-rc1

 arch/arm/dts/uniphier-ld11-global.dts   | 109 +++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-ld11-ref.dts      |  25 +++++---
 arch/arm/dts/uniphier-ld11.dtsi         | 127
++++++++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-ld20-global.dts   | 111 ++++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-ld20-ref.dts      |  25 +++++---
 arch/arm/dts/uniphier-ld20.dtsi         | 138
++++++++++++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-ld4-ref.dts       |  14 ++---
 arch/arm/dts/uniphier-ld4.dtsi          |  14 ++---
 arch/arm/dts/uniphier-ld6b-ref.dts      |  25 +++++---
 arch/arm/dts/uniphier-ld6b.dtsi         |  14 ++---
 arch/arm/dts/uniphier-pinctrl.dtsi      |  64 ++++++++++++++++---
 arch/arm/dts/uniphier-pro4-ace.dts      |  25 +++++---
 arch/arm/dts/uniphier-pro4-ref.dts      |  25 +++++---
 arch/arm/dts/uniphier-pro4-sanji.dts    |  25 +++++---
 arch/arm/dts/uniphier-pro4.dtsi         |  32 +++++++---
 arch/arm/dts/uniphier-pro5.dtsi         |  14 ++---
 arch/arm/dts/uniphier-pxs2-gentil.dts   |  49 ++++++++++++---
 arch/arm/dts/uniphier-pxs2-vodka.dts    |  62 +++++++++++++++---
 arch/arm/dts/uniphier-pxs2.dtsi         |  89 +++++++++++++++++++++++---
 arch/arm/dts/uniphier-pxs3-ref.dts      |  36 ++++++++---
 arch/arm/dts/uniphier-pxs3.dtsi         |  52 +++++++++++++---
 arch/arm/dts/uniphier-ref-daughter.dtsi |  14 ++---
 arch/arm/dts/uniphier-sld8-ref.dts      |  14 ++---
 arch/arm/dts/uniphier-sld8.dtsi         |  14 ++---
 arch/arm/dts/uniphier-support-card.dtsi |  14 ++---
 drivers/clk/uniphier/clk-uniphier-sys.c |   6 ++
 drivers/reset/reset-uniphier.c          |   5 ++
 27 files changed, 936 insertions(+), 206 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-03-15 13:53 Masahiro Yamada
@ 2018-03-15 17:58 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-03-15 17:58 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 15, 2018 at 10:53:20PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull some UniPhier updates.
> 
> 
> The following changes since commit 706f077577cafaa21e6dcf93797d3a0e7dc82444:
> 
>   .travis.yml: Add lzop (2018-03-14 14:02:49 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 46820e3f67ce826410580e6cc5aa3a75275d7c56:
> 
>   ARM: dts: uniphier: sync with Linux 4.16-rc5 (2018-03-15 22:43:47 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180315/1b95ec8b/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-03-15 13:53 Masahiro Yamada
  2018-03-15 17:58 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-03-15 13:53 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull some UniPhier updates.


The following changes since commit 706f077577cafaa21e6dcf93797d3a0e7dc82444:

  .travis.yml: Add lzop (2018-03-14 14:02:49 -0400)

are available in the git repository at:

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

for you to fetch changes up to 46820e3f67ce826410580e6cc5aa3a75275d7c56:

  ARM: dts: uniphier: sync with Linux 4.16-rc5 (2018-03-15 22:43:47 +0900)

----------------------------------------------------------------
Masahiro Yamada (3):
      ARM: uniphier: increase the firmware size in update command environment
      ARM: uniphier: change load addresses for bigger kernel image
      ARM: dts: uniphier: sync with Linux 4.16-rc5

 arch/arm/dts/uniphier-ld11.dtsi    |  3 +++
 arch/arm/dts/uniphier-ld4.dtsi     | 21 +++++++++++++++++++++
 arch/arm/dts/uniphier-pro4-ref.dts |  4 ++++
 arch/arm/dts/uniphier-pro4.dtsi    | 25 +++++++++++++++++++++++++
 arch/arm/dts/uniphier-pro5.dtsi    | 33 +++++++++++++++++++++++++++++++++
 arch/arm/dts/uniphier-pxs2.dtsi    | 18 ++++++++++++++++++
 arch/arm/dts/uniphier-pxs3-ref.dts |  8 ++++++++
 arch/arm/dts/uniphier-pxs3.dtsi    |  4 ++--
 arch/arm/dts/uniphier-sld8.dtsi    | 21 +++++++++++++++++++++
 include/configs/uniphier.h         | 22 +++++++++++-----------
 10 files changed, 146 insertions(+), 13 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-01-27 21:40 Masahiro Yamada
@ 2018-01-28  2:55 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-01-28  2:55 UTC (permalink / raw)
  To: u-boot

On Sun, Jan 28, 2018 at 06:40:34AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull one more patch for -rc1.
> Thanks!
> 
> 
> The following changes since commit 0163c9186b161682a46bd7ae3c2e6ffe275bb1f8:
> 
>   env: sunxi: Enable FAT-based environment support by default
> (2018-01-27 09:23:32 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 7d8cca7be615dcd911121b8ebdc2def2cccb6b37:
> 
>   ARM: uniphier: enable HS200 support for uniphier_v8_defconfig
> (2018-01-28 06:32:50 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180127/92cc8b3f/attachment-0001.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-01-27 21:40 Masahiro Yamada
  2018-01-28  2:55 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-01-27 21:40 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull one more patch for -rc1.
Thanks!


The following changes since commit 0163c9186b161682a46bd7ae3c2e6ffe275bb1f8:

  env: sunxi: Enable FAT-based environment support by default
(2018-01-27 09:23:32 -0500)

are available in the git repository at:

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

for you to fetch changes up to 7d8cca7be615dcd911121b8ebdc2def2cccb6b37:

  ARM: uniphier: enable HS200 support for uniphier_v8_defconfig
(2018-01-28 06:32:50 +0900)

----------------------------------------------------------------
Masahiro Yamada (1):
      ARM: uniphier: enable HS200 support for uniphier_v8_defconfig

 configs/uniphier_v8_defconfig | 1 +
 1 file changed, 1 insertion(+)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2018-01-09 13:04 Masahiro Yamada
@ 2018-01-09 17:30 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2018-01-09 17:30 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 09, 2018 at 10:04:38PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> The MW is open, and here are some updates. Please pull!
> 
> 
> 
> The following changes since commit f3dd87e0b98999a78e500e8c6d2b063ebadf535a:
> 
>   Prepare v2018.01 (2018-01-08 20:25:29 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to a322eb9ff6f4c43d378b683457bdbfc59c1c19a6:
> 
>   ARM: uniphier: hide memory top by platform hook instead of CONFIG
> (2018-01-09 21:58:19 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180109/b088b955/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2018-01-09 13:04 Masahiro Yamada
  2018-01-09 17:30 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2018-01-09 13:04 UTC (permalink / raw)
  To: u-boot

Hi Tom,

The MW is open, and here are some updates. Please pull!



The following changes since commit f3dd87e0b98999a78e500e8c6d2b063ebadf535a:

  Prepare v2018.01 (2018-01-08 20:25:29 -0500)

are available in the git repository at:

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

for you to fetch changes up to a322eb9ff6f4c43d378b683457bdbfc59c1c19a6:

  ARM: uniphier: hide memory top by platform hook instead of CONFIG
(2018-01-09 21:58:19 +0900)

----------------------------------------------------------------
Masahiro Yamada (3):
      ARM: uniphier: do not use RAM that exceeds 32 bit address range
      ARM: uniphier: enable CONFIG_MMC_SDHCI_SDMA for ARMv8 SoCs
      ARM: uniphier: hide memory top by platform hook instead of CONFIG

 arch/arm/mach-uniphier/dram_init.c | 24 ++++++++++++++++++++++++
 configs/uniphier_v8_defconfig      |  1 +
 include/configs/uniphier.h         |  2 --
 3 files changed, 25 insertions(+), 2 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-12-11 15:45 Masahiro Yamada
@ 2017-12-12  1:55 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-12-12  1:55 UTC (permalink / raw)
  To: u-boot

On Tue, Dec 12, 2017 at 12:45:29AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull some more fixes and trivial changes.
> Thanks!
> 
> 
> 
> The following changes since commit 335f7b1290ce24a729a9689a1db834c743226ca8:
> 
>   Merge git://git.denx.de/u-boot-mpc85xx (2017-12-08 12:02:01 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 7f8e75390b9c9b79748b2f87dd7ab45674323d58:
> 
>   ARM: uniphier: use FIELD_PREP for PLL settings (2017-12-12 00:36:12 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20171211/c215477d/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-12-11 15:45 Masahiro Yamada
  2017-12-12  1:55 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-12-11 15:45 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull some more fixes and trivial changes.
Thanks!



The following changes since commit 335f7b1290ce24a729a9689a1db834c743226ca8:

  Merge git://git.denx.de/u-boot-mpc85xx (2017-12-08 12:02:01 -0500)

are available in the git repository at:

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

for you to fetch changes up to 7f8e75390b9c9b79748b2f87dd7ab45674323d58:

  ARM: uniphier: use FIELD_PREP for PLL settings (2017-12-12 00:36:12 +0900)

----------------------------------------------------------------
Dai Okamura (1):
      ARM: uniphier: fix SSCPLL init code for LD11 SoC

Masahiro Yamada (4):
      ARM: uniphier: compile pll-base-ld20.c for PXs3
      mtd: nand: denali: make NAND_DENALI unconfigurable option
      ARM: uniphier: compute SSCPLL values more precisely
      ARM: uniphier: use FIELD_PREP for PLL settings

 arch/arm/mach-uniphier/clk/Makefile        |  1 +
 arch/arm/mach-uniphier/clk/pll-base-ld20.c | 15 ++++++++++-----
 drivers/mtd/nand/Kconfig                   |  7 +++----
 3 files changed, 14 insertions(+), 9 deletions(-)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-12-04 13:23 Masahiro Yamada
@ 2017-12-04 18:36 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-12-04 18:36 UTC (permalink / raw)
  To: u-boot

On Mon, Dec 04, 2017 at 10:23:11PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull a little more NAND and UniPhier updates.
> 
> 
> 
> The following changes since commit 02907004294d981fff9a7305ad9c6d8a0138f205:
> 
>   Merge git://git.denx.de/u-boot-rockchip (2017-12-01 19:08:30 -0500)
> 
> are available in the git repository at:
> 
>   git://git.dex.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 0faef2eba946a95f9c78d2b3db47e15bac04b52e:
> 
>   mtd: nand: denali: consolidate include directives (2017-12-04 22:00:03 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20171204/57d1f455/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-12-04 13:23 Masahiro Yamada
  2017-12-04 18:36 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-12-04 13:23 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull a little more NAND and UniPhier updates.



The following changes since commit 02907004294d981fff9a7305ad9c6d8a0138f205:

  Merge git://git.denx.de/u-boot-rockchip (2017-12-01 19:08:30 -0500)

are available in the git repository at:

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

for you to fetch changes up to 0faef2eba946a95f9c78d2b3db47e15bac04b52e:

  mtd: nand: denali: consolidate include directives (2017-12-04 22:00:03 +0900)

----------------------------------------------------------------
Masahiro Yamada (7):
      ARM: uniphier: clean up board_init
      mtd: nand: denali: remove bogus __maybe_unused
      mtd: nand: denali: remove ad-hoc board_nand_init() entry
      mtd: nand: Rename nand.h into rawnand.h
      mtd: nand: include <asm/cache.h> from include/linux/mtd/rawnand.h
      mtd: nand: denali_dt: replace printf() with pr_err()
      mtd: nand: denali: consolidate include directives

 arch/arm/include/asm/ti-common/davinci_nand.h   |  2 +-
 arch/arm/mach-omap2/omap3/spl_id_nand.c         |  2 +-
 arch/arm/mach-uniphier/board_init.c             |  7 ++----
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c |  2 +-
 board/isee/igep00x0/common.c                    |  2 +-
 board/isee/igep00x0/igep00x0.c                  |  2 +-
 board/isee/igep00x0/spl.c                       |  2 +-
 board/logicpd/omap3som/omap3logic.c             |  2 +-
 board/mini-box/picosam9g45/picosam9g45.c        |  2 +-
 board/overo/overo.c                             |  2 +-
 board/siemens/taurus/taurus.c                   |  2 +-
 board/ti/beagle/beagle.c                        |  2 +-
 board/ti/evm/evm.c                              |  2 +-
 cmd/jffs2.c                                     |  2 +-
 cmd/mtdparts.c                                  |  2 +-
 drivers/mtd/nand/arasan_nfc.c                   |  2 +-
 drivers/mtd/nand/denali.c                       | 34
++++-------------------------
 drivers/mtd/nand/denali.h                       |  2 +-
 drivers/mtd/nand/denali_dt.c                    |  4 ++--
 drivers/mtd/nand/denali_spl.c                   |  2 +-
 drivers/mtd/nand/fsl_elbc_nand.c                |  2 +-
 drivers/mtd/nand/fsl_ifc_nand.c                 |  2 +-
 drivers/mtd/nand/fsl_ifc_spl.c                  |  2 +-
 drivers/mtd/nand/mxs_nand.c                     |  2 +-
 drivers/mtd/nand/nand_base.c                    |  2 +-
 drivers/mtd/nand/nand_bbt.c                     |  2 +-
 drivers/mtd/nand/nand_bch.c                     |  2 +-
 drivers/mtd/nand/nand_ids.c                     |  2 +-
 drivers/mtd/nand/nand_timings.c                 |  2 +-
 drivers/mtd/nand/pxa3xx_nand.c                  |  2 +-
 drivers/mtd/nand/sunxi_nand.c                   |  2 +-
 drivers/mtd/nand/vf610_nfc.c                    |  2 +-
 drivers/mtd/nand/zynq_nand.c                    |  2 +-
 fs/yaffs2/yaffs_mtdif.c                         |  2 +-
 include/linux/mtd/fsl_upm.h                     |  2 +-
 include/linux/mtd/fsmc_nand.h                   |  2 +-
 include/linux/mtd/{nand.h => rawnand.h}         | 10 ++++-----
 include/nand.h                                  |  2 +-
 38 files changed, 46 insertions(+), 77 deletions(-)
 rename include/linux/mtd/{nand.h => rawnand.h} (99%)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-10-23 17:43   ` Masahiro Yamada
@ 2017-10-23 17:44     ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-10-23 17:44 UTC (permalink / raw)
  To: u-boot

On Tue, Oct 24, 2017 at 02:43:00AM +0900, Masahiro Yamada wrote:
> Hi Tom,
> 
> 2017-10-24 1:05 GMT+09:00 Tom Rini <trini@konsulko.com>:
> > On Mon, Oct 23, 2017 at 01:14:57AM +0900, Masahiro Yamada wrote:
> >
> >> Hi Tom,
> >>
> >>
> >> This was late for -rc2 for some reason, but it includes
> >> what I intended to include in it.
> >> Some fixes, remove unused CONFIG, DT sync, etc.
> >> Please pull.
> >>
> >>
> >>
> >> The following changes since commit 23d51bef94aacd0ad4dcbdb31e66acd82def13eb:
> >>
> >>   uniphier_ld4_sld8: Re-add SMC911X_BASE address (2017-10-21 10:26:34 -0400)
> >>
> >> are available in the git repository at:
> >>
> >>   git://git.denx.de/u-boot-uniphier.git master
> >>
> >> for you to fetch changes up to 624c0954c7be03d92a20170ffc551ca7e9853e16:
> >>
> >>   ARM: uniphier: use pr_*() more where appropriate (2017-10-23 01:09:22 +0900)
> >>
> >
> > Reviewed-by: Tom Rini <trini@konsulko.com>
> >
> 
> May I ask your intention?
> Why reviewed-by instead of git-pull?

... I hit the wrong key-combo this morning.  It's applied, sorry!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20171023/236d0cd2/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-10-23 16:05 ` Tom Rini
@ 2017-10-23 17:43   ` Masahiro Yamada
  2017-10-23 17:44     ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-10-23 17:43 UTC (permalink / raw)
  To: u-boot

Hi Tom,

2017-10-24 1:05 GMT+09:00 Tom Rini <trini@konsulko.com>:
> On Mon, Oct 23, 2017 at 01:14:57AM +0900, Masahiro Yamada wrote:
>
>> Hi Tom,
>>
>>
>> This was late for -rc2 for some reason, but it includes
>> what I intended to include in it.
>> Some fixes, remove unused CONFIG, DT sync, etc.
>> Please pull.
>>
>>
>>
>> The following changes since commit 23d51bef94aacd0ad4dcbdb31e66acd82def13eb:
>>
>>   uniphier_ld4_sld8: Re-add SMC911X_BASE address (2017-10-21 10:26:34 -0400)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-uniphier.git master
>>
>> for you to fetch changes up to 624c0954c7be03d92a20170ffc551ca7e9853e16:
>>
>>   ARM: uniphier: use pr_*() more where appropriate (2017-10-23 01:09:22 +0900)
>>
>
> Reviewed-by: Tom Rini <trini@konsulko.com>
>

May I ask your intention?
Why reviewed-by instead of git-pull?



-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-10-22 16:14 Masahiro Yamada
@ 2017-10-23 16:05 ` Tom Rini
  2017-10-23 17:43   ` Masahiro Yamada
  0 siblings, 1 reply; 42+ messages in thread
From: Tom Rini @ 2017-10-23 16:05 UTC (permalink / raw)
  To: u-boot

On Mon, Oct 23, 2017 at 01:14:57AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> 
> This was late for -rc2 for some reason, but it includes
> what I intended to include in it.
> Some fixes, remove unused CONFIG, DT sync, etc.
> Please pull.
> 
> 
> 
> The following changes since commit 23d51bef94aacd0ad4dcbdb31e66acd82def13eb:
> 
>   uniphier_ld4_sld8: Re-add SMC911X_BASE address (2017-10-21 10:26:34 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 624c0954c7be03d92a20170ffc551ca7e9853e16:
> 
>   ARM: uniphier: use pr_*() more where appropriate (2017-10-23 01:09:22 +0900)
> 

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20171023/7f9b24d7/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-10-22 16:14 Masahiro Yamada
  2017-10-23 16:05 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-10-22 16:14 UTC (permalink / raw)
  To: u-boot

Hi Tom,


This was late for -rc2 for some reason, but it includes
what I intended to include in it.
Some fixes, remove unused CONFIG, DT sync, etc.
Please pull.



The following changes since commit 23d51bef94aacd0ad4dcbdb31e66acd82def13eb:

  uniphier_ld4_sld8: Re-add SMC911X_BASE address (2017-10-21 10:26:34 -0400)

are available in the git repository at:

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

for you to fetch changes up to 624c0954c7be03d92a20170ffc551ca7e9853e16:

  ARM: uniphier: use pr_*() more where appropriate (2017-10-23 01:09:22 +0900)

----------------------------------------------------------------
Masahiro Yamada (8):
      ARM: uniphier: enable DWC3 xHCI driver really
      ARM: uniphier: remove CONFIG_UNIPHIER_ETH
      ARM: uniphier: split u-boot,dm-pre-reloc out to uniphier-v7-u-boot.dtsi
      ARM: dts: uniphier: sync DT with Linux 4.14-rc5
      ARM: uniphier: increase CONFIG_SYS_BOOTM_LEN to 32MB
      ARM: uniphier: remove verify=n from environments
      doc: uniphier: add simple guide to Verified Boot
      ARM: uniphier: use pr_*() more where appropriate

 arch/arm/dts/uniphier-ld11.dtsi               |  13 ++
 arch/arm/dts/uniphier-ld20.dtsi               |  30 +++
 arch/arm/dts/uniphier-ld4-ref.dts             |   9 +-
 arch/arm/dts/uniphier-ld4.dtsi                |   3 -
 arch/arm/dts/uniphier-ld6b-ref.dts            |   9 +-
 arch/arm/dts/uniphier-pinctrl.dtsi            |  15 ++
 arch/arm/dts/uniphier-pro4-ace.dts            |   9 -
 arch/arm/dts/uniphier-pro4-ref.dts            |   9 -
 arch/arm/dts/uniphier-pro4-sanji.dts          |  21 ---
 arch/arm/dts/uniphier-pro4.dtsi               |   4 -
 arch/arm/dts/uniphier-pro5-4kbox.dts          |   9 -
 arch/arm/dts/uniphier-pro5.dtsi               |   4 -
 arch/arm/dts/uniphier-pxs2-gentil.dts         |  21 ---
 arch/arm/dts/uniphier-pxs2-vodka.dts          |  21 ---
 arch/arm/dts/uniphier-pxs2.dtsi               |   4 -
 arch/arm/dts/uniphier-pxs3-ref.dts            |   4 +
 arch/arm/dts/uniphier-sld8-ref.dts            |   9 +-
 arch/arm/dts/uniphier-sld8.dtsi               |   3 -
 arch/arm/dts/uniphier-v7-u-boot.dtsi          |  61 ++++++
 arch/arm/mach-uniphier/Kconfig                |   2 +
 arch/arm/mach-uniphier/clk/clk-ld4.c          |   6 -
 arch/arm/mach-uniphier/clk/clk-pro4.c         |   6 -
 arch/arm/mach-uniphier/clk/clk-pxs2.c         |   6 -
 arch/arm/mach-uniphier/dram/ddrphy-training.c |  18 +-
 configs/uniphier_v7_defconfig                 |   2 +
 doc/README.uniphier                           | 227 ++++++++++++++++++++++-
 include/configs/uniphier.h                    |   2 +-
 27 files changed, 370 insertions(+), 157 deletions(-)
 create mode 100644 arch/arm/dts/uniphier-v7-u-boot.dtsi


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-09-18 11:33 Masahiro Yamada
@ 2017-09-18 21:49 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-09-18 21:49 UTC (permalink / raw)
  To: u-boot

On Mon, Sep 18, 2017 at 08:33:10PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> This is the first round of UniPhier updates for v2017.09.
> Please pull!
> 
> 
> 
> The following changes since commit 08cebeeaadd9192dd501308ac6a8b858ffa255c1:
> 
>   Merge git://git.denx.de/u-boot-fdt (2017-09-15 22:34:34 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to a184fb8e9671cc777b91eb3af3e36b5590870ddb:
> 
>   ARM: uniphier: add GPU(Mali) reset deassert and clk enable
> (2017-09-18 20:26:18 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170918/63d34626/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-09-18 11:33 Masahiro Yamada
  2017-09-18 21:49 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-09-18 11:33 UTC (permalink / raw)
  To: u-boot

Hi Tom,

This is the first round of UniPhier updates for v2017.09.
Please pull!



The following changes since commit 08cebeeaadd9192dd501308ac6a8b858ffa255c1:

  Merge git://git.denx.de/u-boot-fdt (2017-09-15 22:34:34 -0400)

are available in the git repository at:

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

for you to fetch changes up to a184fb8e9671cc777b91eb3af3e36b5590870ddb:

  ARM: uniphier: add GPU(Mali) reset deassert and clk enable
(2017-09-18 20:26:18 +0900)

----------------------------------------------------------------
Masahiro Yamada (4):
      mtd: nand: denali: allow to override corrupted revision register
      ARM: uniphier: merge two defconfig files into uniphier_v7_defconfig
      ARM: uniphier: remove bit field macros from sc64-regs.h
      ARM: uniphier: add GPU(Mali) reset deassert and clk enable

 arch/arm/mach-uniphier/Kconfig                | 21 ++++----
 arch/arm/mach-uniphier/clk/clk-ld11.c         |  2 +-
 arch/arm/mach-uniphier/clk/clk-ld20.c         | 12 +++++
 arch/arm/mach-uniphier/clk/clk-pxs3.c         | 12 +++++
 arch/arm/mach-uniphier/sc64-regs.h            | 18 -------
 configs/uniphier_pro4_defconfig               | 49 -------------------
 ...2_ld6b_defconfig => uniphier_v7_defconfig} |  4 +-
 doc/README.uniphier                           | 33 +++++++------
 drivers/mtd/nand/denali.c                     | 27 +++++-----
 drivers/mtd/nand/denali.h                     |  7 ++-
 drivers/mtd/nand/denali_dt.c                  | 30 ++++++++++++
 11 files changed, 106 insertions(+), 109 deletions(-)
 delete mode 100644 configs/uniphier_pro4_defconfig
 rename configs/{uniphier_pxs2_ld6b_defconfig => uniphier_v7_defconfig} (93%)


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-08-30  0:22 Masahiro Yamada
@ 2017-09-01 16:42 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-09-01 16:42 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 30, 2017 at 09:22:33AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Here is a bit volume pull request, but changes
> are SoC-specific except the ofnode patch and denali_dt.
> The latter is reviewed by Simon.
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170901/05e7af4e/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-08-30  0:22 Masahiro Yamada
  2017-09-01 16:42 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-08-30  0:22 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Here is a bit volume pull request, but changes
are SoC-specific except the ofnode patch and denali_dt.
The latter is reviewed by Simon.

- add {ofnode,dev}_read_resource_byname
- provide DT probe hook to Denali NAND driver
- update clk/reset driver
- update DT
- misc cleanups



The following changes since commit 8b3cec7da18645eda7f7cd0b65ee9f2dac573409:

  mtdparts: Fix uninitialized scalar usage (2017-08-26 16:59:24 -0400)

are available in the git repository at:

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

for you to fetch changes up to 0cc0c544bc317548885721d2312c90185642f98c:

  ARM: uniphier: enable Denali NAND driver for 64bit SoCs (2017-08-30
09:07:04 +0900)

----------------------------------------------------------------
Dai Okamura (1):
      ARM: uniphier: fix DSPLL init code for LD20 SoC

Masahiro Yamada (16):
      ofnode: add {ofnode, dev}_read_resource_byname()
      mtd: nand: denali_dt: add a DT driver
      ARM: uniphier: replace <common.h> with <linux/delay.h> in pll settings
      ARM: uniphier: move PLLCTRL register macros to each SoC .c file
      ARM: uniphier: add PLL settings for PXs3
      ARM: uniphier: remove unneeded NAND config options
      ARM: uniphier: enable CONFIG_NAND_DENALI_DT
      ARM: uniphier: remove ad-hoc pin settings for NAND
      clk: uniphier: add System clock support
      reset: uniphier: fix compatible for SD reset node for LD11/LD20
      reset: uniphier: add PXs3 support
      ARM: dts: uniphier: sync with Linux
      ARM: dts: uniphier: update PXs3 SoC/board DT
      ARM: uniphier: move CONFIG_NAND to defconfig
      ARM: uniphier: set system bus pinmux for PXs3
      ARM: uniphier: enable Denali NAND driver for 64bit SoCs

 arch/arm/dts/uniphier-ld11-global.dts      |   6 +-
 arch/arm/dts/uniphier-ld11-ref.dts         |   6 +-
 arch/arm/dts/uniphier-ld11.dtsi            |  13 ++-
 arch/arm/dts/uniphier-ld20-global.dts      |   6 +-
 arch/arm/dts/uniphier-ld20-ref.dts         |   6 +-
 arch/arm/dts/uniphier-ld20.dtsi            |  15 ++-
 arch/arm/dts/uniphier-ld4-ref.dts          |   6 +-
 arch/arm/dts/uniphier-ld4.dtsi             |  11 +-
 arch/arm/dts/uniphier-ld6b-ref.dts         |   6 +-
 arch/arm/dts/uniphier-ld6b.dtsi            |   2 +-
 arch/arm/dts/uniphier-pinctrl.dtsi         |   5 +
 arch/arm/dts/uniphier-pro4-ace.dts         |   2 +-
 arch/arm/dts/uniphier-pro4-ref.dts         |   6 +-
 arch/arm/dts/uniphier-pro4-sanji.dts       |   2 +-
 arch/arm/dts/uniphier-pro4.dtsi            |   9 +-
 arch/arm/dts/uniphier-pro5-4kbox.dts       |   4 +-
 arch/arm/dts/uniphier-pro5.dtsi            |  13 ++-
 arch/arm/dts/uniphier-pxs2-gentil.dts      |   2 +-
 arch/arm/dts/uniphier-pxs2-vodka.dts       |   2 +-
 arch/arm/dts/uniphier-pxs2.dtsi            |  13 ++-
 arch/arm/dts/uniphier-pxs3-ref.dts         |  29 ++++-
 arch/arm/dts/uniphier-pxs3.dtsi            | 163 +++++++++++++++++++--------
 arch/arm/dts/uniphier-sld8-ref.dts         |   6 +-
 arch/arm/dts/uniphier-sld8.dtsi            |  11 +-
 arch/arm/mach-uniphier/Kconfig             |   1 -
 arch/arm/mach-uniphier/board_init.c        |  28 +----
 arch/arm/mach-uniphier/clk/pll-base-ld20.c |   6 +-
 arch/arm/mach-uniphier/clk/pll-ld11.c      |  13 ++-
 arch/arm/mach-uniphier/clk/pll-ld20.c      |  21 +++-
 arch/arm/mach-uniphier/clk/pll-pxs3.c      |  55 +++++++++
 arch/arm/mach-uniphier/sbc/sbc-pxs2.c      |   2 +
 arch/arm/mach-uniphier/sc64-regs.h         |  21 ----
 configs/uniphier_ld4_sld8_defconfig        |   2 +
 configs/uniphier_pro4_defconfig            |   2 +
 configs/uniphier_pxs2_ld6b_defconfig       |   2 +
 configs/uniphier_v8_defconfig              |   5 +
 drivers/clk/uniphier/Makefile              |   1 +
 drivers/clk/uniphier/clk-uniphier-core.c   |  30 +++++
 drivers/clk/uniphier/clk-uniphier-sys.c    |  34 ++++++
 drivers/clk/uniphier/clk-uniphier.h        |   2 +
 drivers/core/ofnode.c                      |  12 ++
 drivers/core/read.c                        |   6 +
 drivers/mtd/nand/Kconfig                   |   7 ++
 drivers/mtd/nand/Makefile                  |   1 +
 drivers/mtd/nand/denali.c                  |   4 +-
 drivers/mtd/nand/denali.h                  |   2 +
 drivers/mtd/nand/denali_dt.c               |  68 +++++++++++
 drivers/reset/reset-uniphier.c             |  29 ++++-
 include/configs/uniphier.h                 |   3 -
 include/dm/ofnode.h                        |   2 +
 include/dm/read.h                          |  20 +++-
 51 files changed, 554 insertions(+), 169 deletions(-)
 create mode 100644 drivers/clk/uniphier/clk-uniphier-sys.c
 create mode 100644 drivers/mtd/nand/denali_dt.c


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-08-20 14:18 Masahiro Yamada
@ 2017-08-22 20:53 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-08-22 20:53 UTC (permalink / raw)
  To: u-boot

On Sun, Aug 20, 2017 at 11:18:59PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull some more UniPhier SoC changes.
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170822/ecbfddec/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-08-20 14:18 Masahiro Yamada
  2017-08-22 20:53 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-08-20 14:18 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull some more UniPhier SoC changes.

 - Fix unmet direct dependencies warning
 - Remove old sLD3 SoC support
 - Update reset data
 - Add dr_mode DT property to avoid warning


The following changes since commit 2629a21e209d91cdb778f43612235ed1f3029488:

  Merge git://git.denx.de/u-boot-video (2017-08-19 22:11:05 -0400)

are available in the git repository at:

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

for you to fetch changes up to 3444d1d40e9ee42ba7423f4fa6651703a8666bc1:

  ARM: dts: uniphier: add dr_mode property to dwc3 node (2017-08-20
23:07:02 +0900)

----------------------------------------------------------------
Masahiro Yamada (6):
      clk: uniphier: fix unmet direct dependencies warning
      ARM: uniphier: remove sLD3 SoC support
      Revert "ARM: uniphier: move lowlevel debug init code after page
table switch"
      Revert "ARM: uniphier: fix ROM boot mode for PH1-sLD3"
      reset: uniphier: refactor reset data and add NAND/eMMC reset lines
      ARM: dts: uniphier: add dr_mode property to dwc3 node

 arch/arm/Kconfig                                     |   1 -
 arch/arm/dts/Makefile                                |   2 -
 arch/arm/dts/uniphier-ld20.dtsi                      |   1 +
 arch/arm/dts/uniphier-pro4.dtsi                      |   2 +
 arch/arm/dts/uniphier-pro5.dtsi                      |   2 +
 arch/arm/dts/uniphier-pxs2.dtsi                      |   2 +
 arch/arm/dts/uniphier-sld3-ref.dts                   | 100 -----
 arch/arm/dts/uniphier-sld3.dtsi                      | 458
----------------------
 arch/arm/mach-uniphier/Kconfig                       |   4 -
 arch/arm/mach-uniphier/arm32/cache-uniphier.c        |   3 -
 arch/arm/mach-uniphier/arm32/debug_ll.S              |  21 -
 arch/arm/mach-uniphier/arm32/lowlevel_init.S         |  18 +-
 arch/arm/mach-uniphier/arm32/psci.c                  |   1 -
 arch/arm/mach-uniphier/bcu/Makefile                  |   1 -
 arch/arm/mach-uniphier/bcu/bcu-sld3.c                |  39 --
 arch/arm/mach-uniphier/board_init.c                  |   9 -
 arch/arm/mach-uniphier/boards.c                      |  22 --
 arch/arm/mach-uniphier/boot-device/Makefile          |   1 -
 .../arm/mach-uniphier/boot-device/boot-device-sld3.c |  84 ----
 arch/arm/mach-uniphier/boot-device/boot-device.c     |   9 -
 arch/arm/mach-uniphier/boot-device/boot-device.h     |   2 -
 arch/arm/mach-uniphier/clk/Makefile                  |  14 +-
 .../clk/{clk-dram-sld3.c => clk-dram-ld4.c}          |   2 +-
 .../clk/{clk-early-sld3.c => clk-early-ld4.c}        |   2 +-
 arch/arm/mach-uniphier/clk/dpll-sld3.c               |  13 -
 arch/arm/mach-uniphier/clk/pll-sld3.c                |  14 -
 arch/arm/mach-uniphier/cpu-info.c                    |   4 -
 arch/arm/mach-uniphier/debug-uart/Makefile           |   1 -
 arch/arm/mach-uniphier/debug-uart/debug-uart-sld3.c  |  31 --
 arch/arm/mach-uniphier/debug-uart/debug-uart.c       |   5 -
 arch/arm/mach-uniphier/debug-uart/debug-uart.h       |   1 -
 arch/arm/mach-uniphier/dram/Makefile                 |   1 -
 arch/arm/mach-uniphier/dram/umc-sld3.c               |   6 -
 arch/arm/mach-uniphier/dram_init.c                   |   9 -
 arch/arm/mach-uniphier/init.h                        |  10 +-
 arch/arm/mach-uniphier/memconf.c                     |  14 +-
 arch/arm/mach-uniphier/mmc-boot-mode.c               |   2 +-
 arch/arm/mach-uniphier/sc-regs.h                     |   4 -
 arch/arm/mach-uniphier/soc-info.h                    |   1 -
 arch/arm/mach-uniphier/spl_board_init.c              |  29 +-
 configs/uniphier_sld3_defconfig                      |  46 ---
 doc/README.uniphier                                  |   1 -
 drivers/clk/uniphier/Kconfig                         |   5 +-
 drivers/clk/uniphier/clk-uniphier-core.c             |   4 -
 drivers/clk/uniphier/clk-uniphier-mio.c              |   2 -
 drivers/pinctrl/uniphier/Kconfig                     |   6 -
 drivers/pinctrl/uniphier/Makefile                    |   1 -
 drivers/pinctrl/uniphier/pinctrl-uniphier-sld3.c     | 129 ------
 drivers/reset/reset-uniphier.c                       |  71 +---
 include/configs/uniphier.h                           |   8 +-
 50 files changed, 57 insertions(+), 1161 deletions(-)
 delete mode 100644 arch/arm/dts/uniphier-sld3-ref.dts
 delete mode 100644 arch/arm/dts/uniphier-sld3.dtsi
 delete mode 100644 arch/arm/mach-uniphier/bcu/bcu-sld3.c
 delete mode 100644 arch/arm/mach-uniphier/boot-device/boot-device-sld3.c
 rename arch/arm/mach-uniphier/clk/{clk-dram-sld3.c => clk-dram-ld4.c} (93%)
 rename arch/arm/mach-uniphier/clk/{clk-early-sld3.c => clk-early-ld4.c} (93%)
 delete mode 100644 arch/arm/mach-uniphier/clk/dpll-sld3.c
 delete mode 100644 arch/arm/mach-uniphier/clk/pll-sld3.c
 delete mode 100644 arch/arm/mach-uniphier/debug-uart/debug-uart-sld3.c
 delete mode 100644 arch/arm/mach-uniphier/dram/umc-sld3.c
 delete mode 100644 configs/uniphier_sld3_defconfig
 delete mode 100644 drivers/pinctrl/uniphier/pinctrl-uniphier-sld3.c


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-07-26 13:56 Masahiro Yamada
@ 2017-07-26 21:42 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-07-26 21:42 UTC (permalink / raw)
  To: u-boot

On Wed, Jul 26, 2017 at 10:56:50PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> This is the first uniphier PR for v2017.09.
> Please pull!
> 
> 
> The following changes since commit 609bf924117950b88987a5fa477acf1239bfdbc1:
> 
>   Convert CONFIG_ENV_IS_IN_ONENAND to Kconfig (2017-07-25 21:34:39 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git
> 
> for you to fetch changes up to a3f54bc74fb20c98aefebd9ca9a250e2f3f9e538:
> 
>   ARM: uniphier: enable CONFIG_CMD_FS_GENERIC (2017-07-26 22:27:15 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170726/19f0b7aa/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-07-26 13:56 Masahiro Yamada
  2017-07-26 21:42 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-07-26 13:56 UTC (permalink / raw)
  To: u-boot

Hi Tom,

This is the first uniphier PR for v2017.09.
Please pull!


The following changes since commit 609bf924117950b88987a5fa477acf1239bfdbc1:

  Convert CONFIG_ENV_IS_IN_ONENAND to Kconfig (2017-07-25 21:34:39 -0400)

are available in the git repository at:

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

for you to fetch changes up to a3f54bc74fb20c98aefebd9ca9a250e2f3f9e538:

  ARM: uniphier: enable CONFIG_CMD_FS_GENERIC (2017-07-26 22:27:15 +0900)

----------------------------------------------------------------
Masahiro Yamada (4):
      ARM: uniphier: remove SPL support for ARMv8 SoCs
      doc: uniphier: rework README.uniphier
      ARM: uniphier: remove part number info from the boot log
      ARM: uniphier: enable CONFIG_CMD_FS_GENERIC

 arch/arm/dts/uniphier-ld11-global.dts            |   9 -
 arch/arm/dts/uniphier-ld11-ref.dts               |   9 -
 arch/arm/dts/uniphier-ld11.dtsi                  |   3 -
 arch/arm/dts/uniphier-ld20-global.dts            |   9 -
 arch/arm/dts/uniphier-ld20-ref.dts               |   9 -
 arch/arm/dts/uniphier-ld20.dtsi                  |   3 -
 arch/arm/mach-uniphier/Kconfig                   |  27 +-
 arch/arm/mach-uniphier/arm64/Makefile            |   9 -
 arch/arm/mach-uniphier/arm64/arm-cci500.c        |  42 ---
 arch/arm/mach-uniphier/arm64/smp.S               |  19 --
 arch/arm/mach-uniphier/arm64/smp_kick_cpus.c     |  32 --
 arch/arm/mach-uniphier/arm64/timer.c             |  37 ---
 arch/arm/mach-uniphier/board_init.c              |   9 -
 arch/arm/mach-uniphier/boards.c                  |  71 ----
 arch/arm/mach-uniphier/boot-device/Makefile      |   4 -
 arch/arm/mach-uniphier/boot-device/spl_board.c   | 262 ---------------
 arch/arm/mach-uniphier/clk/Makefile              |   2 -
 arch/arm/mach-uniphier/clk/clk-dram-ld11.c       |  25 --
 arch/arm/mach-uniphier/clk/clk-dram-ld20.c       |  28 --
 arch/arm/mach-uniphier/clk/clk-early-ld11.c      |  20 --
 arch/arm/mach-uniphier/clk/dpll-ld11.c           |  16 -
 arch/arm/mach-uniphier/clk/dpll-ld20.c           |  19 --
 arch/arm/mach-uniphier/cpu-info.c                |  22 +-
 arch/arm/mach-uniphier/dram/Makefile             |   2 -
 arch/arm/mach-uniphier/dram/ddruqphy-regs.h      |  79 -----
 arch/arm/mach-uniphier/dram/umc-ld11.c           | 491
----------------------------
 arch/arm/mach-uniphier/dram/umc-ld20.c           | 636
------------------------------------
 arch/arm/mach-uniphier/dram/umc64-regs.h         |  85 -----
 arch/arm/mach-uniphier/init.h                    |  18 -
 arch/arm/mach-uniphier/spl_board_init.c          |  26 --
 configs/uniphier_ld11_defconfig                  |  41 ---
 configs/uniphier_ld20_defconfig                  |  40 ---
 configs/uniphier_ld4_sld8_defconfig              |   1 +
 configs/uniphier_pro4_defconfig                  |   1 +
 configs/uniphier_pxs2_ld6b_defconfig             |   1 +
 configs/uniphier_sld3_defconfig                  |   1 +
 configs/uniphier_v8_defconfig                    |   1 +
 doc/README.uniphier                              | 118 +++----
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c |  22 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c |  22 +-
 drivers/pinctrl/uniphier/pinctrl-uniphier-pxs3.c |  22 +-
 include/configs/uniphier.h                       |  36 +-
 42 files changed, 117 insertions(+), 2212 deletions(-)
 delete mode 100644 arch/arm/mach-uniphier/arm64/arm-cci500.c
 delete mode 100644 arch/arm/mach-uniphier/arm64/smp.S
 delete mode 100644 arch/arm/mach-uniphier/arm64/smp_kick_cpus.c
 delete mode 100644 arch/arm/mach-uniphier/arm64/timer.c
 delete mode 100644 arch/arm/mach-uniphier/boot-device/spl_board.c
 delete mode 100644 arch/arm/mach-uniphier/clk/clk-dram-ld11.c
 delete mode 100644 arch/arm/mach-uniphier/clk/clk-dram-ld20.c
 delete mode 100644 arch/arm/mach-uniphier/clk/clk-early-ld11.c
 delete mode 100644 arch/arm/mach-uniphier/clk/dpll-ld11.c
 delete mode 100644 arch/arm/mach-uniphier/clk/dpll-ld20.c
 delete mode 100644 arch/arm/mach-uniphier/dram/ddruqphy-regs.h
 delete mode 100644 arch/arm/mach-uniphier/dram/umc-ld11.c
 delete mode 100644 arch/arm/mach-uniphier/dram/umc-ld20.c
 delete mode 100644 arch/arm/mach-uniphier/dram/umc64-regs.h
 delete mode 100644 configs/uniphier_ld11_defconfig
 delete mode 100644 configs/uniphier_ld20_defconfig


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-06-24 22:15 Masahiro Yamada
@ 2017-06-27 17:32 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-06-27 17:32 UTC (permalink / raw)
  To: u-boot

On Sun, Jun 25, 2017 at 07:15:57AM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull some more UniPhier SoC updates:
> 
> - fix sparse warnings
> - sync DT with Linux
> - add new board support (LD11/LD20 global)
> 
> 
> The following changes since commit 431c66a3bad13e13c1d44ef4ec3638f95e72e11d:
> 
>   Merge git://www.denx.de/git/u-boot-marvell (2017-06-23 08:23:14 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-uniphier.git
> 
> for you to fetch changes up to 7bf378043f653d4edd0dc4a54a0a4c43fa8914c2:
> 
>   arm64: dts: uniphier: add support for LD20 Global board (2017-06-25
> 06:06:09 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170627/27ddcc08/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-06-24 22:15 Masahiro Yamada
  2017-06-27 17:32 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-06-24 22:15 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull some more UniPhier SoC updates:

- fix sparse warnings
- sync DT with Linux
- add new board support (LD11/LD20 global)


The following changes since commit 431c66a3bad13e13c1d44ef4ec3638f95e72e11d:

  Merge git://www.denx.de/git/u-boot-marvell (2017-06-23 08:23:14 -0400)

are available in the git repository at:

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

for you to fetch changes up to 7bf378043f653d4edd0dc4a54a0a4c43fa8914c2:

  arm64: dts: uniphier: add support for LD20 Global board (2017-06-25
06:06:09 +0900)

----------------------------------------------------------------
Kunihiko Hayashi (2):
      arm64: dts: uniphier: add support for LD11 Global board
      arm64: dts: uniphier: add support for LD20 Global board

Masahiro Yamada (2):
      ARM: uniphier: fix various sparse warnings
      ARM: dts: uniphier: sync DT with Linux next-20170622

 arch/arm/dts/Makefile                        |  2 +
 arch/arm/dts/uniphier-ld11-global.dts        | 79
+++++++++++++++++++++++++++++++++++
 arch/arm/dts/uniphier-ld11-ref.dts           |  2 +-
 arch/arm/dts/uniphier-ld11.dtsi              | 40 +-----------------
 arch/arm/dts/uniphier-ld20-global.dts        | 61 +++++++++++++++++++++++++++
 arch/arm/dts/uniphier-ld20-ref.dts           |  2 +-
 arch/arm/dts/uniphier-ld20.dtsi              | 40 +-----------------
 arch/arm/dts/uniphier-ld4-ref.dts            |  2 +-
 arch/arm/dts/uniphier-ld4.dtsi               | 38 +----------------
 arch/arm/dts/uniphier-ld6b-ref.dts           |  2 +-
 arch/arm/dts/uniphier-ld6b.dtsi              |  2 +-
 arch/arm/dts/uniphier-pinctrl.dtsi           |  2 +-
 arch/arm/dts/uniphier-pro4-ace.dts           |  4 +-
 arch/arm/dts/uniphier-pro4-ref.dts           |  2 +-
 arch/arm/dts/uniphier-pro4-sanji.dts         |  4 +-
 arch/arm/dts/uniphier-pro4.dtsi              | 38 +----------------
 arch/arm/dts/uniphier-pro5-4kbox.dts         |  2 +-
 arch/arm/dts/uniphier-pro5.dtsi              | 38 +----------------
 arch/arm/dts/uniphier-pxs2-gentil.dts        |  4 +-
 arch/arm/dts/uniphier-pxs2-vodka.dts         |  2 +-
 arch/arm/dts/uniphier-pxs2.dtsi              | 38 +----------------
 arch/arm/dts/uniphier-ref-daughter.dtsi      |  2 +-
 arch/arm/dts/uniphier-sld3-ref.dts           |  2 +-
 arch/arm/dts/uniphier-sld3.dtsi              | 38 +----------------
 arch/arm/dts/uniphier-sld8-ref.dts           |  2 +-
 arch/arm/dts/uniphier-sld8.dtsi              | 38 +----------------
 arch/arm/dts/uniphier-support-card.dtsi      | 38 +----------------
 arch/arm/mach-uniphier/arm64/arm-cci500.c    |  2 +
 arch/arm/mach-uniphier/arm64/smp_kick_cpus.c |  2 +
 arch/arm/mach-uniphier/board_init.c          |  2 +-
 arch/arm/mach-uniphier/clk/pll-pxs3.c        |  2 +
 arch/arm/mach-uniphier/dram/umc-ld11.c       | 14 +++----
 arch/arm/mach-uniphier/dram/umc-pxs2.c       |  2 +-
 arch/arm/mach-uniphier/dram_init.c           |  1 +
 arch/arm/mach-uniphier/init.h                |  2 +-
 drivers/clk/uniphier/clk-uniphier-core.c     |  2 +-
 drivers/reset/reset-uniphier.c               | 18 ++++----
 37 files changed, 198 insertions(+), 373 deletions(-)
 create mode 100644 arch/arm/dts/uniphier-ld11-global.dts
 create mode 100644 arch/arm/dts/uniphier-ld20-global.dts


-- 
Best Regards
Masahiro Yamada

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
  2017-05-17 13:14 Masahiro Yamada
@ 2017-05-17 21:13 ` Tom Rini
  0 siblings, 0 replies; 42+ messages in thread
From: Tom Rini @ 2017-05-17 21:13 UTC (permalink / raw)
  To: u-boot

On Wed, May 17, 2017 at 10:14:18PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> Please pull UniPhier updates for v2017.07:
> 
> - Add workaround code to make LD20 SoC boot from ARM Trusted Firmware
> - Sync DT with Linux to fix DTC warnings
> - Add new SoC support code
> - Misc fix, updates
> 
> The following changes since commit 4125bbcef6a998ce8580a1f5c53c8c93a56a125b:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mmc (2017-05-16
> 08:10:50 -0400)
> 
> are available in the git repository at:
> 
>   git://git.dexn.de/u-boot-uniphier.git master
> 
> for you to fetch changes up to 81afa9c9a3a9c006a6555e4abf7a75875eb3e926:
> 
>   ARM: uniphier: add more init code for PXs3 (2017-05-17 21:56:17 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170517/4e473b8c/attachment.sig>

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

* [U-Boot] [GIT PULL] u-boot-uniphier/master
@ 2017-05-17 13:14 Masahiro Yamada
  2017-05-17 21:13 ` Tom Rini
  0 siblings, 1 reply; 42+ messages in thread
From: Masahiro Yamada @ 2017-05-17 13:14 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull UniPhier updates for v2017.07:

- Add workaround code to make LD20 SoC boot from ARM Trusted Firmware
- Sync DT with Linux to fix DTC warnings
- Add new SoC support code
- Misc fix, updates

The following changes since commit 4125bbcef6a998ce8580a1f5c53c8c93a56a125b:

  Merge branch 'master' of git://git.denx.de/u-boot-mmc (2017-05-16
08:10:50 -0400)

are available in the git repository at:

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

for you to fetch changes up to 81afa9c9a3a9c006a6555e4abf7a75875eb3e926:

  ARM: uniphier: add more init code for PXs3 (2017-05-17 21:56:17 +0900)

----------------------------------------------------------------
Masahiro Yamada (6):
      ARM: uniphier: fix MODEL field of REVISION register
      ARM: uniphier: add usbupdate command
      ARM: uniphier: add weird workaround code for LD20
      ARM: dts: uniphier: sync DT with Linux
      ARM: uniphier: move kernel physical base to 0x82080000
      ARM: uniphier: add more init code for PXs3

 arch/arm/dts/uniphier-ld11.dtsi                       |  2 +-
 arch/arm/dts/uniphier-ld20.dtsi                       |  2 +-
 arch/arm/dts/uniphier-ld4.dtsi                        | 42
+++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-pro4.dtsi                       | 42
+++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-pro5.dtsi                       |  2 +-
 arch/arm/dts/uniphier-pxs2.dtsi                       |  2 +-
 arch/arm/dts/uniphier-pxs3.dtsi                       | 40
++++++++++++++++++++++++++++--
 arch/arm/dts/uniphier-sld3.dtsi                       | 42
+++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-sld8.dtsi                       | 42
+++++++++++++++++++++++++++++---
 arch/arm/dts/uniphier-support-card.dtsi               | 42
+++++++++++++++++++++++++++++---
 arch/arm/mach-uniphier/arm64/Makefile                 |  2 ++
 arch/arm/mach-uniphier/arm64/lowlevel_init.S          | 14 +++++++++++
 arch/arm/mach-uniphier/board_init.c                   |  1 +
 arch/arm/mach-uniphier/boot-device/Makefile           |  1 +
 arch/arm/mach-uniphier/boot-device/boot-device-pxs3.c | 41
+++++++++++++++++++++++++++++++
 arch/arm/mach-uniphier/boot-device/boot-device.c      | 10 ++++++++
 arch/arm/mach-uniphier/boot-device/boot-device.h      |  3 +++
 arch/arm/mach-uniphier/clk/Makefile                   |  2 +-
 arch/arm/mach-uniphier/clk/clk-pxs3.c                 | 17 +++++++++++++
 arch/arm/mach-uniphier/init.h                         |  1 +
 arch/arm/mach-uniphier/sg-regs.h                      |  1 +
 arch/arm/mach-uniphier/soc-info.c                     |  2 +-
 include/configs/uniphier.h                            |  7 +++++-
 23 files changed, 336 insertions(+), 24 deletions(-)
 create mode 100644 arch/arm/mach-uniphier/arm64/lowlevel_init.S
 create mode 100644 arch/arm/mach-uniphier/boot-device/boot-device-pxs3.c
 create mode 100644 arch/arm/mach-uniphier/clk/clk-pxs3.c


-- 
Best Regards
Masahiro Yamada

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

end of thread, other threads:[~2018-09-12  0:40 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-23 16:14 [U-Boot] [GIT PULL] u-boot-uniphier/master Masahiro Yamada
2018-04-23 20:17 ` Tom Rini
2018-04-24  0:24   ` Masahiro Yamada
2018-04-24  0:34     ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2018-09-11 11:44 Masahiro Yamada
2018-09-12  0:40 ` Tom Rini
2018-07-24 23:52 Masahiro Yamada
2018-07-26 11:13 ` Tom Rini
2018-06-22 16:36 Masahiro Yamada
2018-06-22 23:26 ` Tom Rini
2018-05-22 15:37 Masahiro Yamada
2018-05-22 22:29 ` Tom Rini
2018-05-08  1:32 Masahiro Yamada
2018-05-09  1:30 ` Tom Rini
2018-04-18 15:00 Masahiro Yamada
2018-04-19  3:14 ` Tom Rini
2018-03-15 13:53 Masahiro Yamada
2018-03-15 17:58 ` Tom Rini
2018-01-27 21:40 Masahiro Yamada
2018-01-28  2:55 ` Tom Rini
2018-01-09 13:04 Masahiro Yamada
2018-01-09 17:30 ` Tom Rini
2017-12-11 15:45 Masahiro Yamada
2017-12-12  1:55 ` Tom Rini
2017-12-04 13:23 Masahiro Yamada
2017-12-04 18:36 ` Tom Rini
2017-10-22 16:14 Masahiro Yamada
2017-10-23 16:05 ` Tom Rini
2017-10-23 17:43   ` Masahiro Yamada
2017-10-23 17:44     ` Tom Rini
2017-09-18 11:33 Masahiro Yamada
2017-09-18 21:49 ` Tom Rini
2017-08-30  0:22 Masahiro Yamada
2017-09-01 16:42 ` Tom Rini
2017-08-20 14:18 Masahiro Yamada
2017-08-22 20:53 ` Tom Rini
2017-07-26 13:56 Masahiro Yamada
2017-07-26 21:42 ` Tom Rini
2017-06-24 22:15 Masahiro Yamada
2017-06-27 17:32 ` Tom Rini
2017-05-17 13:14 Masahiro Yamada
2017-05-17 21:13 ` Tom Rini

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.