All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] u-boot-sh/next
@ 2021-06-25  1:14 Marek Vasut
  2021-06-25  1:22 ` Tom Rini
  2021-06-29 12:38 ` Tom Rini
  0 siblings, 2 replies; 13+ messages in thread
From: Marek Vasut @ 2021-06-25  1:14 UTC (permalink / raw)
  To: Tom Rini, u-boot

V3U Falcon board support, for next release.

The following changes since commit fcf3981161140d265b873a5b609b8867328dc9dc:

   Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2021-06-23 
08:46:26 -0400)

are available in the Git repository at:

   git://source.denx.de/u-boot-sh.git next

for you to fetch changes up to 0beaae223dd55b3f727f07f38b799a1c58612b1b:

   ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon 
(2021-06-24 20:22:18 +0200)

----------------------------------------------------------------
Hai Pham (5):
       clk: renesas: Add R8A779A0 clock tables
       ARM: dts: renesas: Add R8A779A0 V3U DT extras
       ARM: renesas: Add R8A779A0 V3U platform code
       ARM: renesas: Add R8A779A0 V3U Falcon board code
       ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon

Koji Matsuoka (2):
       ARM: renesas: Add generic timer initialization for V3U Falcon
       ARM: renesas: Add GICv3 initialization for V3U Falcon

Marek Vasut (6):
       clk: renesas: Handle R8A779A0 V3U clock types in Gen3 clock code
       gpio: renesas: Handle R8A779A0 V3U INEN register
       pinctrl: renesas: Import R8A779A0 V3U PFC tables
       ARM: dts: renesas: Add R8A779A0 V3U DTs and headers
       ARM: dts: renesas: Add R8A779A0 V3U Falcon DTs
       ARM: dts: renesas: Add RPC node to R8A779A0 V3U

  arch/arm/dts/Makefile                         |    3 +-
  arch/arm/dts/r8a779a0-falcon-cpu.dtsi         |  184 ++++
  arch/arm/dts/r8a779a0-falcon-u-boot.dts       |   32 +
  arch/arm/dts/r8a779a0-falcon.dts              |   28 +
  arch/arm/dts/r8a779a0-u-boot.dtsi             |   25 +
  arch/arm/dts/r8a779a0.dtsi                    |  970 +++++++++++++++++++
  arch/arm/mach-rmobile/Kconfig.64              |   12 +
  arch/arm/mach-rmobile/Makefile                |    4 +
  arch/arm/mach-rmobile/cpu_info.c              |    1 +
  arch/arm/mach-rmobile/include/mach/rmobile.h  |    1 +
  arch/arm/mach-rmobile/psci-r8a779a0.c         |   49 +
  board/renesas/falcon/Kconfig                  |   15 +
  board/renesas/falcon/MAINTAINERS              |    6 +
  board/renesas/falcon/Makefile                 |   13 +
  board/renesas/falcon/falcon.c                 |  101 ++
  configs/r8a779a0_falcon_defconfig             |   65 ++
  drivers/clk/renesas/Kconfig                   |    6 +
  drivers/clk/renesas/Makefile                  |    1 +
  drivers/clk/renesas/clk-rcar-gen3.c           |   29 +
  drivers/clk/renesas/r8a779a0-cpg-mssr.c       |  300 ++++++
  drivers/clk/renesas/rcar-gen3-cpg.h           |   10 +
  drivers/clk/renesas/renesas-cpg-mssr.c        |    4 +
  drivers/clk/renesas/renesas-cpg-mssr.h        |   21 +
  drivers/gpio/gpio-rcar.c                      |   14 +
  drivers/pinctrl/renesas/Kconfig               |    6 +
  drivers/pinctrl/renesas/Makefile              |    1 +
  drivers/pinctrl/renesas/pfc-r8a779a0.c        | 4503 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  drivers/pinctrl/renesas/pfc.c                 |   12 +
  drivers/pinctrl/renesas/sh_pfc.h              |    1 +
  include/configs/falcon.h                      |   36 +
  include/dt-bindings/clock/r8a779a0-cpg-mssr.h |   55 ++
  include/dt-bindings/power/r8a779a0-sysc.h     |   59 ++
  32 files changed, 6566 insertions(+), 1 deletion(-)
  create mode 100644 arch/arm/dts/r8a779a0-falcon-cpu.dtsi
  create mode 100644 arch/arm/dts/r8a779a0-falcon-u-boot.dts
  create mode 100644 arch/arm/dts/r8a779a0-falcon.dts
  create mode 100644 arch/arm/dts/r8a779a0-u-boot.dtsi
  create mode 100644 arch/arm/dts/r8a779a0.dtsi
  create mode 100644 arch/arm/mach-rmobile/psci-r8a779a0.c
  create mode 100644 board/renesas/falcon/Kconfig
  create mode 100644 board/renesas/falcon/MAINTAINERS
  create mode 100644 board/renesas/falcon/Makefile
  create mode 100644 board/renesas/falcon/falcon.c
  create mode 100644 configs/r8a779a0_falcon_defconfig
  create mode 100644 drivers/clk/renesas/r8a779a0-cpg-mssr.c
  create mode 100644 drivers/pinctrl/renesas/pfc-r8a779a0.c
  create mode 100644 include/configs/falcon.h
  create mode 100644 include/dt-bindings/clock/r8a779a0-cpg-mssr.h
  create mode 100644 include/dt-bindings/power/r8a779a0-sysc.h

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

* Re: [PULL] u-boot-sh/next
  2021-06-25  1:14 [PULL] u-boot-sh/next Marek Vasut
@ 2021-06-25  1:22 ` Tom Rini
  2021-06-25  1:25   ` Marek Vasut
  2021-06-29 12:38 ` Tom Rini
  1 sibling, 1 reply; 13+ messages in thread
From: Tom Rini @ 2021-06-25  1:22 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot

[-- Attachment #1: Type: text/plain, Size: 848 bytes --]

On Fri, Jun 25, 2021 at 03:14:51AM +0200, Marek Vasut wrote:

> V3U Falcon board support, for next release.
> 
> The following changes since commit fcf3981161140d265b873a5b609b8867328dc9dc:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2021-06-23
> 08:46:26 -0400)
> 
> are available in the Git repository at:
> 
>   git://source.denx.de/u-boot-sh.git next
> 
> for you to fetch changes up to 0beaae223dd55b3f727f07f38b799a1c58612b1b:
> 
>   ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon (2021-06-24
> 20:22:18 +0200)

This isn't against next but master.  I see I did forget, sigh, to do
-rc5 on this past Monday and should just do it this coming Monday, and
then merge that to next and then grab this.  I assume you need some of
the changes already in master for this?  Thanks.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PULL] u-boot-sh/next
  2021-06-25  1:22 ` Tom Rini
@ 2021-06-25  1:25   ` Marek Vasut
  2021-06-25  1:44     ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Marek Vasut @ 2021-06-25  1:25 UTC (permalink / raw)
  To: Tom Rini; +Cc: u-boot

On 6/25/21 3:22 AM, Tom Rini wrote:
> On Fri, Jun 25, 2021 at 03:14:51AM +0200, Marek Vasut wrote:
> 
>> V3U Falcon board support, for next release.
>>
>> The following changes since commit fcf3981161140d265b873a5b609b8867328dc9dc:
>>
>>    Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2021-06-23
>> 08:46:26 -0400)
>>
>> are available in the Git repository at:
>>
>>    git://source.denx.de/u-boot-sh.git next
>>
>> for you to fetch changes up to 0beaae223dd55b3f727f07f38b799a1c58612b1b:
>>
>>    ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon (2021-06-24
>> 20:22:18 +0200)
> 
> This isn't against next but master.  I see I did forget, sigh, to do
> -rc5 on this past Monday and should just do it this coming Monday, and
> then merge that to next and then grab this.  I assume you need some of
> the changes already in master for this?  Thanks.

I don't think so, I just noticed master was newer.

So just pull this once next catches up?

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

* Re: [PULL] u-boot-sh/next
  2021-06-25  1:25   ` Marek Vasut
@ 2021-06-25  1:44     ` Tom Rini
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Rini @ 2021-06-25  1:44 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot

[-- Attachment #1: Type: text/plain, Size: 1161 bytes --]

On Fri, Jun 25, 2021 at 03:25:41AM +0200, Marek Vasut wrote:
> On 6/25/21 3:22 AM, Tom Rini wrote:
> > On Fri, Jun 25, 2021 at 03:14:51AM +0200, Marek Vasut wrote:
> > 
> > > V3U Falcon board support, for next release.
> > > 
> > > The following changes since commit fcf3981161140d265b873a5b609b8867328dc9dc:
> > > 
> > >    Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2021-06-23
> > > 08:46:26 -0400)
> > > 
> > > are available in the Git repository at:
> > > 
> > >    git://source.denx.de/u-boot-sh.git next
> > > 
> > > for you to fetch changes up to 0beaae223dd55b3f727f07f38b799a1c58612b1b:
> > > 
> > >    ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon (2021-06-24
> > > 20:22:18 +0200)
> > 
> > This isn't against next but master.  I see I did forget, sigh, to do
> > -rc5 on this past Monday and should just do it this coming Monday, and
> > then merge that to next and then grab this.  I assume you need some of
> > the changes already in master for this?  Thanks.
> 
> I don't think so, I just noticed master was newer.
> 
> So just pull this once next catches up?

OK, will do.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PULL] u-boot-sh/next
  2021-06-25  1:14 [PULL] u-boot-sh/next Marek Vasut
  2021-06-25  1:22 ` Tom Rini
@ 2021-06-29 12:38 ` Tom Rini
  1 sibling, 0 replies; 13+ messages in thread
From: Tom Rini @ 2021-06-29 12:38 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot

[-- Attachment #1: Type: text/plain, Size: 621 bytes --]

On Fri, Jun 25, 2021 at 03:14:51AM +0200, Marek Vasut wrote:

> V3U Falcon board support, for next release.
> 
> The following changes since commit fcf3981161140d265b873a5b609b8867328dc9dc:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2021-06-23
> 08:46:26 -0400)
> 
> are available in the Git repository at:
> 
>   git://source.denx.de/u-boot-sh.git next
> 
> for you to fetch changes up to 0beaae223dd55b3f727f07f38b799a1c58612b1b:
> 
>   ARM: rmobile: Add basic PSCI support for R8A779A0 V3U Falcon (2021-06-24
> 20:22:18 +0200)
> 

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PULL] u-boot-sh/next
  2023-09-05 13:49 Marek Vasut
@ 2023-09-06 17:50 ` Tom Rini
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Rini @ 2023-09-06 17:50 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot

[-- Attachment #1: Type: text/plain, Size: 616 bytes --]

On Tue, Sep 05, 2023 at 03:49:15PM +0200, Marek Vasut wrote:

> The following changes since commit b53ab97150314674edc25508f4fc528be2baa73f:
> 
>   event.h: Documented some newly added portions better (2023-09-04 11:19:50 -0400)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-sh.git next
> 
> for you to fetch changes up to 733fab7177ea3c0402bab9db07422d5dce495139:
> 
>   ARM: rmobile: Clean up rmobile_cpuinfo_idx() (2023-09-05 01:13:35 +0200)
> 

With a quick rewording of the commit to fix a typo, applied to
u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* [PULL] u-boot-sh/next
@ 2023-09-05 13:49 Marek Vasut
  2023-09-06 17:50 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Marek Vasut @ 2023-09-05 13:49 UTC (permalink / raw)
  To: u-boot, Tom Rini; +Cc: Marek Vasut

The following changes since commit b53ab97150314674edc25508f4fc528be2baa73f:

  event.h: Documented some newly added portions better (2023-09-04 11:19:50 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-sh.git next

for you to fetch changes up to 733fab7177ea3c0402bab9db07422d5dce495139:

  ARM: rmobile: Clean up rmobile_cpuinfo_idx() (2023-09-05 01:13:35 +0200)

----------------------------------------------------------------
Marek Vasut (1):
      ARM: rmobile: Clean up rmobile_cpuinfo_idx()

 arch/arm/mach-rmobile/cpu_info.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

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

* Re: [PULL] u-boot-sh/next
  2023-03-18 16:52 Marek Vasut
@ 2023-03-21 15:52 ` Tom Rini
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Rini @ 2023-03-21 15:52 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot

[-- Attachment #1: Type: text/plain, Size: 608 bytes --]

On Sat, Mar 18, 2023 at 05:52:50PM +0100, Marek Vasut wrote:

> The following changes since commit cefd0449d6df77eb0edb8a6800a441f9cd4e3653:
> 
>   Merge tag 'xilinx-for-v2023.07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-microblaze into next (2023-03-16 12:18:30 -0400)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-sh.git next
> 
> for you to fetch changes up to 6254c5f7e176311eb8bd57817f85d1eed1c362cb:
> 
>   serial: sh: Make indent consistent (2023-03-18 12:04:02 +0100)
> 

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* [PULL] u-boot-sh/next
@ 2023-03-18 16:52 Marek Vasut
  2023-03-21 15:52 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Marek Vasut @ 2023-03-18 16:52 UTC (permalink / raw)
  To: u-boot, Tom Rini; +Cc: Marek Vasut

The following changes since commit cefd0449d6df77eb0edb8a6800a441f9cd4e3653:

  Merge tag 'xilinx-for-v2023.07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-microblaze into next (2023-03-16 12:18:30 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-sh.git next

for you to fetch changes up to 6254c5f7e176311eb8bd57817f85d1eed1c362cb:

  serial: sh: Make indent consistent (2023-03-18 12:04:02 +0100)

----------------------------------------------------------------
Hai Pham (4):
      ARM: renesas: Remove defines for USB on Eagle/Condor
      ARM: renesas: Demote overlap memory nodes message to debug on Gen3
      ARM: renesas: falcon: Initialize ARM generic timer and GICv3 if EL3
      ARM: renesas: falcon: Enable RWDT reset for V3U Falcon

Marek Vasut (13):
      ARM: renesas: Enable DTO support by default on R-Car Gen3
      ARM: rmobile: Convert ifdef in rmobile_get_prr() to IS_ENABLED()
      ARM: rmobile: Sort R-Car Gen3 Kconfig lists
      ARM: rmobile: Factor out SYS_SOC Kconfig option
      ARM: rmobile: Introduce CONFIG_RCAR_64 symbol
      ARM: rmobile: Split R-Car Gen3 into separate Kconfig from common 64bit options
      clk: renesas: rcar-gen3: Replace SSCG caching with MDSEL/PE caching
      i2c: rcar_iic: Sort Kconfig depends list ascending
      i2c: rcar_i2c: Sort Kconfig depends list ascending
      pinctrl: renesas: Replace ifdeffery with IS_ENABLED()
      serial: sh: Rename CONFIG_SCI and CONFIG_SCIF_USE_EXT_CLK to CFG_ variants
      serial: sh: Add DEBUG_UART support
      serial: sh: Make indent consistent

Mikhail Lappo (1):
      net: ravb: Support fixed PHY in R-Car

 arch/arm/mach-rmobile/Kconfig         |  36 +++---
 arch/arm/mach-rmobile/Kconfig.32      |   3 -
 arch/arm/mach-rmobile/Kconfig.64      | 208 +---------------------------------
 arch/arm/mach-rmobile/Kconfig.rcar3   | 201 ++++++++++++++++++++++++++++++++
 arch/arm/mach-rmobile/Kconfig.rza1    |   3 -
 arch/arm/mach-rmobile/cpu_info-rcar.c |   7 +-
 board/renesas/falcon/falcon.c         |  21 +++-
 board/renesas/rcar-common/common.c    |   6 +-
 configs/r8a77970_eagle_defconfig      |   6 -
 configs/r8a77980_condor_defconfig     |   6 -
 drivers/clk/renesas/clk-rcar-gen3.c   |  18 +--
 drivers/clk/renesas/rcar-gen3-cpg.h   |   2 +-
 drivers/gpio/sh_pfc.c                 |   6 +-
 drivers/i2c/Kconfig                   |   4 +-
 drivers/net/ravb.c                    |   6 +-
 drivers/serial/Kconfig                |   8 ++
 drivers/serial/serial_sh.c            |  87 +++++++++-----
 drivers/serial/serial_sh.h            |   8 +-
 18 files changed, 340 insertions(+), 296 deletions(-)
 create mode 100644 arch/arm/mach-rmobile/Kconfig.rcar3

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

* [PULL] u-boot-sh/next
  2021-03-19 12:05 Marek Vasut
@ 2021-03-19 14:30 ` Tom Rini
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Rini @ 2021-03-19 14:30 UTC (permalink / raw)
  To: u-boot

On Fri, Mar 19, 2021 at 01:05:51PM +0100, Marek Vasut wrote:

> Board additions, for NEXT release.
> 
> The following changes since commit 22fc991dafee0142fc6bf621e7bd558bd58020b4:
> 
>   Merge tag 'v2021.04-rc4' into next (2021-03-15 12:15:38 -0400)
> 
> are available in the Git repository at:
> 
>   git://source.denx.de/u-boot-sh.git next
> 
> for you to fetch changes up to 9e346340d76cc5bbc6a23fc746f7ee7629af2b34:
> 
>   board: silinux: Enable recovery SPL for EK874 board (2021-03-16 20:09:30
> +0100)
> 

Applied to u-boot/next, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210319/01ecc923/attachment.sig>

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

* [PULL] u-boot-sh/next
@ 2021-03-19 12:05 Marek Vasut
  2021-03-19 14:30 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Marek Vasut @ 2021-03-19 12:05 UTC (permalink / raw)
  To: u-boot

Board additions, for NEXT release.

The following changes since commit 22fc991dafee0142fc6bf621e7bd558bd58020b4:

   Merge tag 'v2021.04-rc4' into next (2021-03-15 12:15:38 -0400)

are available in the Git repository at:

   git://source.denx.de/u-boot-sh.git next

for you to fetch changes up to 9e346340d76cc5bbc6a23fc746f7ee7629af2b34:

   board: silinux: Enable recovery SPL for EK874 board (2021-03-16 
20:09:30 +0100)

----------------------------------------------------------------
Biju Das (5):
       arm: dts: rmobile: r8a774b1: Synchronize DTs with Linux 5.11
       arm: dts: rmobile: r8a774e1: Synchronize DTs with Linux 5.11
       arm: rmobile: Add HopeRun HiHope RZ/G2M board support
       arm: rmobile: Add HopeRun HiHope RZ/G2N board support
       arm: rmobile: Add HopeRun HiHope RZ/G2H board support

Lad Prabhakar (5):
       arm: dts: r8a774c0: Resync R8A774C0 SoC DTSI with Linux 5.11
       pinctrl: renesas: pfc-r8a77990: Sync PFC tables with Linux 5.11
       pinctrl: renesas: Add support for R8A774C0
       arm: rmobile: Add Silicon Linux EK874 board support
       board: silinux: Enable recovery SPL for EK874 board

  arch/arm/dts/Makefile                         |   4 +
  arch/arm/dts/cat875.dtsi                      |  64 +++++++++++++
  arch/arm/dts/r8a774b1-hihope-rzg2n-ex.dts     |  21 ++++
  arch/arm/dts/r8a774b1-hihope-rzg2n-u-boot.dts |  27 ++++++
  arch/arm/dts/r8a774b1-hihope-rzg2n.dts        |  41 ++++++++
  arch/arm/dts/r8a774b1-u-boot.dtsi             |  53 +++++++++++
  arch/arm/dts/r8a774c0-cat874.dts              | 453 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  arch/arm/dts/r8a774c0-ek874-u-boot.dts        |  33 +++++++
  arch/arm/dts/r8a774c0-ek874.dts               |  14 +++
  arch/arm/dts/r8a774c0-u-boot.dtsi             |  53 +++++++++++
  arch/arm/dts/r8a774c0.dtsi                    |  27 +++++-
  arch/arm/dts/r8a774e1-hihope-rzg2h-ex.dts     |  20 ++++
  arch/arm/dts/r8a774e1-hihope-rzg2h-u-boot.dts |  27 ++++++
  arch/arm/dts/r8a774e1-hihope-rzg2h.dts        |  41 ++++++++
  arch/arm/dts/r8a774e1-u-boot.dtsi             |  59 ++++++++++++
  arch/arm/mach-rmobile/Kconfig.64              |  24 +++++
  arch/arm/mach-rmobile/Makefile                |   2 +-
  board/hoperun/hihope-rzg2/Kconfig             |  15 +++
  board/hoperun/hihope-rzg2/MAINTAINERS         |   6 ++
  board/hoperun/hihope-rzg2/Makefile            |   9 ++
  board/hoperun/hihope-rzg2/hihope-rzg2.c       | 113 ++++++++++++++++++++++
  board/silinux/ek874/Kconfig                   |  15 +++
  board/silinux/ek874/MAINTAINERS               |   6 ++
  board/silinux/ek874/Makefile                  |  13 +++
  board/silinux/ek874/ek874.c                   |  30 ++++++
  configs/hihope_rzg2_defconfig                 |  82 ++++++++++++++++
  configs/silinux_ek874_defconfig               |  83 ++++++++++++++++
  drivers/pinctrl/renesas/Kconfig               |  10 ++
  drivers/pinctrl/renesas/Makefile              |   1 +
  drivers/pinctrl/renesas/pfc-r8a77990.c        |  87 ++++++++++++++++-
  drivers/pinctrl/renesas/pfc.c                 |  11 +++
  drivers/pinctrl/renesas/sh_pfc.h              |   1 +
  include/configs/hihope-rzg2.h                 |  20 ++++
  include/configs/silinux-ek874.h               |  20 ++++
  include/dt-bindings/display/tda998x.h         |   8 ++
  35 files changed, 1486 insertions(+), 7 deletions(-)
  create mode 100644 arch/arm/dts/cat875.dtsi
  create mode 100644 arch/arm/dts/r8a774b1-hihope-rzg2n-ex.dts
  create mode 100644 arch/arm/dts/r8a774b1-hihope-rzg2n-u-boot.dts
  create mode 100644 arch/arm/dts/r8a774b1-hihope-rzg2n.dts
  create mode 100644 arch/arm/dts/r8a774b1-u-boot.dtsi
  create mode 100644 arch/arm/dts/r8a774c0-cat874.dts
  create mode 100644 arch/arm/dts/r8a774c0-ek874-u-boot.dts
  create mode 100644 arch/arm/dts/r8a774c0-ek874.dts
  create mode 100644 arch/arm/dts/r8a774c0-u-boot.dtsi
  create mode 100644 arch/arm/dts/r8a774e1-hihope-rzg2h-ex.dts
  create mode 100644 arch/arm/dts/r8a774e1-hihope-rzg2h-u-boot.dts
  create mode 100644 arch/arm/dts/r8a774e1-hihope-rzg2h.dts
  create mode 100644 arch/arm/dts/r8a774e1-u-boot.dtsi
  create mode 100644 board/hoperun/hihope-rzg2/Kconfig
  create mode 100644 board/hoperun/hihope-rzg2/MAINTAINERS
  create mode 100644 board/hoperun/hihope-rzg2/Makefile
  create mode 100644 board/hoperun/hihope-rzg2/hihope-rzg2.c
  create mode 100644 board/silinux/ek874/Kconfig
  create mode 100644 board/silinux/ek874/MAINTAINERS
  create mode 100644 board/silinux/ek874/Makefile
  create mode 100644 board/silinux/ek874/ek874.c
  create mode 100644 configs/hihope_rzg2_defconfig
  create mode 100644 configs/silinux_ek874_defconfig
  create mode 100644 include/configs/hihope-rzg2.h
  create mode 100644 include/configs/silinux-ek874.h
  create mode 100644 include/dt-bindings/display/tda998x.h

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

* [PULL] u-boot-sh/next
  2020-10-01  8:28 Marek Vasut
@ 2020-10-01 22:10 ` Tom Rini
  0 siblings, 0 replies; 13+ messages in thread
From: Tom Rini @ 2020-10-01 22:10 UTC (permalink / raw)
  To: u-boot

On Thu, Oct 01, 2020 at 10:28:35AM +0200, Marek Vasut wrote:

> The following changes since commit 0ac83d080a0044cd0d8f782ba12f02cf969d3004:
> 
>   Merge branch 'next' of
> https://gitlab.denx.de/u-boot/custodians/u-boot-x86 into next
> (2020-09-25 09:04:01 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-sh.git next
> 
> for you to fetch changes up to 9275a963d448562a80213639c73e2dc34c6d1835:
> 
>   net: ravb: Remove writeext function call (2020-09-26 17:25:44 +0200)
> 

Applied to u-boot/next, thanks!

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

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

* [PULL] u-boot-sh/next
@ 2020-10-01  8:28 Marek Vasut
  2020-10-01 22:10 ` Tom Rini
  0 siblings, 1 reply; 13+ messages in thread
From: Marek Vasut @ 2020-10-01  8:28 UTC (permalink / raw)
  To: u-boot

The following changes since commit 0ac83d080a0044cd0d8f782ba12f02cf969d3004:

  Merge branch 'next' of
https://gitlab.denx.de/u-boot/custodians/u-boot-x86 into next
(2020-09-25 09:04:01 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-sh.git next

for you to fetch changes up to 9275a963d448562a80213639c73e2dc34c6d1835:

  net: ravb: Remove writeext function call (2020-09-26 17:25:44 +0200)

----------------------------------------------------------------
Biju Das (11):
      arm: rmobile: Identify R8A7796 r1.3 SoC
      pinctrl: renesas: Fix PINCTRL_PFC_R8A774A1 help description
      arm: dts: r8a774a1: Import DTS from Linux 5.9-rc4
      arm: dts: r8a774b1: Import DTS from Linux 5.9-rc4
      arm: dts: r8a774e1: Import DTS from Linux 5.9-rc4
      arm: mach-rmobile: Mark the default s_init function as weak
      board: renesas: Remove empty s_init function
      arm: rmobile: Use imply for BOARD_EARLY_INIT_F
      board: renesas: remove empty board_early_init_f function
      board: renesas: draak: Drop CA57 reset
      net: ravb: Remove writeext function call

Marek Vasut (2):
      ARM: rmobile: Enable RPC on Salvator-X, ULCB, Ebisu
      ARM: rmobile: Enable dfu tftp on Gen3

 arch/arm/Kconfig                              |    2 +-
 arch/arm/dts/r8a774a1.dtsi                    |   10 +-
 arch/arm/dts/r8a774b1.dtsi                    | 2630
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/dts/r8a774e1.dtsi                    | 1664
++++++++++++++++++++++++++++++++++++++++++++++++++++++
 arch/arm/dts/r8a77950-salvator-x-u-boot.dts   |    5 +
 arch/arm/dts/r8a77950-ulcb-u-boot.dts         |    5 +
 arch/arm/dts/r8a77960-salvator-x-u-boot.dts   |    5 +
 arch/arm/dts/r8a77960-ulcb-u-boot.dts         |    5 +
 arch/arm/dts/r8a77965-salvator-x-u-boot.dts   |    5 +
 arch/arm/dts/r8a77965-ulcb-u-boot.dts         |    5 +
 arch/arm/dts/r8a77990-ebisu-u-boot.dts        |    5 +
 arch/arm/dts/r8a77995-draak-u-boot.dts        |    5 +
 arch/arm/mach-rmobile/cpu_info-rcar.c         |    9 +-
 arch/arm/mach-rmobile/lowlevel_init_gen3.S    |    6 +
 board/renesas/condor/condor.c                 |    9 -
 board/renesas/draak/draak.c                   |   19 +-
 board/renesas/ebisu/ebisu.c                   |    9 -
 board/renesas/salvator-x/salvator-x.c         |    4 -
 board/renesas/ulcb/ulcb.c                     |    4 -
 configs/grpeach_defconfig                     |    1 +
 configs/r8a77970_eagle_defconfig              |    4 +
 configs/r8a77980_condor_defconfig             |    1 +
 configs/r8a77990_ebisu_defconfig              |   17 +
 configs/r8a77995_draak_defconfig              |   11 +
 configs/rcar3_salvator-x_defconfig            |   16 +
 configs/rcar3_ulcb_defconfig                  |   16 +
 drivers/net/ravb.c                            |    2 -
 drivers/pinctrl/renesas/Kconfig               |   20 +-
 include/configs/ebisu.h                       |   12 +
 include/configs/salvator-x.h                  |   12 +
 include/configs/ulcb.h                        |   12 +
 include/dt-bindings/clock/r8a774a1-cpg-mssr.h |   96 ++--
 include/dt-bindings/clock/r8a774b1-cpg-mssr.h |   57 ++
 include/dt-bindings/clock/r8a774e1-cpg-mssr.h |   59 ++
 include/dt-bindings/power/r8a774a1-sysc.h     |    2 -
 include/dt-bindings/power/r8a774b1-sysc.h     |   26 +
 include/dt-bindings/power/r8a774e1-sysc.h     |   36 ++
 37 files changed, 4690 insertions(+), 116 deletions(-)
 create mode 100644 arch/arm/dts/r8a774b1.dtsi
 create mode 100644 arch/arm/dts/r8a774e1.dtsi
 create mode 100644 include/dt-bindings/clock/r8a774b1-cpg-mssr.h
 create mode 100644 include/dt-bindings/clock/r8a774e1-cpg-mssr.h
 create mode 100644 include/dt-bindings/power/r8a774b1-sysc.h
 create mode 100644 include/dt-bindings/power/r8a774e1-sysc.h

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

end of thread, other threads:[~2023-09-06 17:50 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-25  1:14 [PULL] u-boot-sh/next Marek Vasut
2021-06-25  1:22 ` Tom Rini
2021-06-25  1:25   ` Marek Vasut
2021-06-25  1:44     ` Tom Rini
2021-06-29 12:38 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2023-09-05 13:49 Marek Vasut
2023-09-06 17:50 ` Tom Rini
2023-03-18 16:52 Marek Vasut
2023-03-21 15:52 ` Tom Rini
2021-03-19 12:05 Marek Vasut
2021-03-19 14:30 ` Tom Rini
2020-10-01  8:28 Marek Vasut
2020-10-01 22:10 ` 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.