* [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; 25+ messages in thread
From: Marek Vasut @ 2021-06-25 1:14 UTC (permalink / raw)
To: Tom Rini, u-boot@lists.denx.de
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] 25+ 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; 25+ messages in thread
From: Tom Rini @ 2021-06-25 1:22 UTC (permalink / raw)
To: Marek Vasut; +Cc: u-boot@lists.denx.de
[-- 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] 25+ 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; 25+ messages in thread
From: Marek Vasut @ 2021-06-25 1:25 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot@lists.denx.de
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] 25+ 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; 25+ messages in thread
From: Tom Rini @ 2021-06-25 1:44 UTC (permalink / raw)
To: Marek Vasut; +Cc: u-boot@lists.denx.de
[-- 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] 25+ 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; 25+ messages in thread
From: Tom Rini @ 2021-06-29 12:38 UTC (permalink / raw)
To: Marek Vasut; +Cc: u-boot@lists.denx.de
[-- 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] 25+ messages in thread
* [PULL] u-boot-sh/next
@ 2025-06-18 20:33 Marek Vasut
2025-06-19 17:03 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2025-06-18 20:33 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut, Shmuel Leib Melamud
The following changes since commit 5d7e003248ae836cbcc2b4c254901c1d85c85537:
Merge tag 'u-boot-imx-next-20250617' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next (2025-06-17 08:12:39 -0600)
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 b1d017afda2bf5b88736528ee54d32f6e51b7bf2:
renesas: Renesas R-Car Gen4 watchdog driver (2025-06-18 17:18:47 +0200)
----------------------------------------------------------------
Marek Vasut (1):
ARM: dts: renesas: Drop most of bootph-* tags
Shmuel Leib Melamud (2):
clk: renesas: Handle CLK_TYPE_GEN4_MDSEL in gen3_clk_get_rate64()
renesas: Renesas R-Car Gen4 watchdog driver
arch/arm/dts/r8a774a1-hihope-rzg2m-ex-u-boot.dtsi | 8 -
arch/arm/dts/r8a774a1-u-boot.dtsi | 8 -
arch/arm/dts/r8a774b1-hihope-rzg2n-ex-u-boot.dtsi | 8 -
arch/arm/dts/r8a774b1-u-boot.dtsi | 8 -
arch/arm/dts/r8a774c0-u-boot.dtsi | 2 -
arch/arm/dts/r8a774e1-hihope-rzg2h-ex-u-boot.dtsi | 8 -
arch/arm/dts/r8a774e1-u-boot.dtsi | 8 -
arch/arm/dts/r8a7790-lager-u-boot.dtsi | 6 -
arch/arm/dts/r8a7790-stout-u-boot.dtsi | 6 -
arch/arm/dts/r8a7790-u-boot.dtsi | 20 ---
arch/arm/dts/r8a7791-koelsch-u-boot.dtsi | 6 -
arch/arm/dts/r8a7791-porter-u-boot.dtsi | 15 +-
arch/arm/dts/r8a7791-u-boot.dtsi | 20 ---
arch/arm/dts/r8a7792-blanche-u-boot.dtsi | 16 --
arch/arm/dts/r8a7792-u-boot.dtsi | 16 --
arch/arm/dts/r8a7793-gose-u-boot.dtsi | 6 -
arch/arm/dts/r8a7793-u-boot.dtsi | 20 ---
arch/arm/dts/r8a7794-alt-u-boot.dtsi | 39 -----
arch/arm/dts/r8a7794-silk-u-boot.dtsi | 6 -
arch/arm/dts/r8a7794-u-boot.dtsi | 20 ---
arch/arm/dts/r8a77951-u-boot.dtsi | 2 -
arch/arm/dts/r8a77960-u-boot.dtsi | 2 -
arch/arm/dts/r8a77965-u-boot.dtsi | 2 -
arch/arm/dts/r8a77970-u-boot.dtsi | 2 -
arch/arm/dts/r8a77980-u-boot.dtsi | 2 -
arch/arm/dts/r8a77990-u-boot.dtsi | 2 -
arch/arm/dts/r8a77995-u-boot.dtsi | 2 -
arch/arm/dts/r8a779a0-u-boot.dtsi | 2 -
arch/arm/dts/r8a779f0-u-boot.dtsi | 2 -
arch/arm/dts/r8a779g0-u-boot.dtsi | 18 ---
arch/arm/dts/r8a779x-rcar64-u-boot.dtsi | 12 --
arch/arm/dts/r8a779x-u-boot.dtsi | 24 ---
drivers/clk/renesas/clk-rcar-gen3.c | 4 +-
drivers/watchdog/Kconfig | 8 +
drivers/watchdog/Makefile | 1 +
drivers/watchdog/renesas_wdt.c | 189 ++++++++++++++++++++++
36 files changed, 205 insertions(+), 315 deletions(-)
delete mode 100644 arch/arm/dts/r8a774a1-hihope-rzg2m-ex-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a774a1-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a774b1-hihope-rzg2n-ex-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a774b1-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a774e1-hihope-rzg2h-ex-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a774e1-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7790-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7791-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7792-blanche-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7792-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7793-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a7794-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a779x-rcar64-u-boot.dtsi
delete mode 100644 arch/arm/dts/r8a779x-u-boot.dtsi
create mode 100644 drivers/watchdog/renesas_wdt.c
^ permalink raw reply [flat|nested] 25+ messages in thread* [PULL] u-boot-sh/next
@ 2025-03-29 2:39 Marek Vasut
2025-03-30 14:16 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2025-03-29 2:39 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut
More basic DBSC5 DRAM controller clean ups and improvements.
The following changes since commit 4adbf64ff8d8c730223fd8ae299d770bebb6fe86:
Merge branch 'staging' of https://source.denx.de/u-boot/custodians/u-boot-tegra into next (2025-03-26 14:07:37 -0600)
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 47dad5cc61dd955cca342bbda8c146548ef3409c:
ram: renesas: dbsc5: Pass udevice and MODEMR0 to dbsc5_get_board_data() (2025-03-29 02:33:24 +0100)
----------------------------------------------------------------
Marek Vasut (5):
ram: renesas: dbsc5: Clarify MR27/MR28/MR57 register operations
ram: renesas: dbsc5: Drop space before dbsc5_ddr_setval_all_ch()
ram: renesas: dbsc5: Improve dbsc5_send_dbcmd2() signature
ram: renesas: dbsc5: Factor out dbsc5_wait_dbwait()
ram: renesas: dbsc5: Pass udevice and MODEMR0 to dbsc5_get_board_data()
drivers/ram/renesas/dbsc5/dram.c | 92 ++++++++++++++++++++++++++++------------
1 file changed, 66 insertions(+), 26 deletions(-)
^ permalink raw reply [flat|nested] 25+ messages in thread* [PULL] u-boot-sh/next
@ 2025-03-19 23:48 Marek Vasut
2025-03-20 17:40 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2025-03-19 23:48 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut, Paul Barker
Renesas RZ/G2L USB support, remaining RAVB ethernet fix and
KSZ9031 LED errata fix for next.
The following changes since commit 8bc3542384e3a1219e5ffb62b79d16dddc1b1fb9:
Merge patch series "pxe: Precursor series for supporting read_all() in extlinux / PXE" (2025-03-18 13:12:51 -0600)
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 95d10669c0bd7c7211d7fcdffc5993b16898124b:
net: phy: ksz90x1: Simplify ksz9131_config_rgmii_delay (2025-03-19 03:38:51 +0100)
----------------------------------------------------------------
Paul Barker (10):
reset: rzg2l-usbphy-ctrl: Add new driver
regulator: rzg2l-usbphy: Add new driver
reset: rzg2l-usbphy-ctrl: Connect up vbus regulator
phy: rcar: Support RZ/G2L USB PHY
renesas_rzg2l_smarc_defconfig: Enable USB support
net: ravb: Fix error handling in ravb_probe
net: phy: Port set/clear bits from Linux
net: phy: ksz90x1: Handle ksz9131 LED errata
net: phy: ksz90x1: Load skew values from device tree
net: phy: ksz90x1: Simplify ksz9131_config_rgmii_delay
configs/renesas_rzg2l_smarc_defconfig | 8 ++
drivers/net/phy/micrel_ksz90x1.c | 169 ++++++++++++++++++++---
drivers/net/ravb.c | 14 +-
drivers/phy/Kconfig | 4 +-
drivers/phy/phy-rcar-gen3.c | 79 +++++++++--
drivers/power/regulator/Kconfig | 8 ++
drivers/power/regulator/Makefile | 1 +
drivers/power/regulator/rzg2l-usbphy-regulator.c | 42 ++++++
drivers/reset/Kconfig | 10 ++
drivers/reset/Makefile | 1 +
drivers/reset/reset-rzg2l-usbphy-ctrl.c | 142 +++++++++++++++++++
include/phy.h | 24 ++++
include/renesas/rzg2l-usbphy.h | 17 +++
13 files changed, 481 insertions(+), 38 deletions(-)
create mode 100644 drivers/power/regulator/rzg2l-usbphy-regulator.c
create mode 100644 drivers/reset/reset-rzg2l-usbphy-ctrl.c
create mode 100644 include/renesas/rzg2l-usbphy.h
^ permalink raw reply [flat|nested] 25+ messages in thread* Re: [PULL] u-boot-sh/next
2025-03-19 23:48 Marek Vasut
@ 2025-03-20 17:40 ` Tom Rini
0 siblings, 0 replies; 25+ messages in thread
From: Tom Rini @ 2025-03-20 17:40 UTC (permalink / raw)
To: u-boot, Marek Vasut; +Cc: Paul Barker
On Thu, 20 Mar 2025 00:48:00 +0100, Marek Vasut wrote:
> Renesas RZ/G2L USB support, remaining RAVB ethernet fix and
> KSZ9031 LED errata fix for next.
>
> The following changes since commit 8bc3542384e3a1219e5ffb62b79d16dddc1b1fb9:
>
> Merge patch series "pxe: Precursor series for supporting read_all() in extlinux / PXE" (2025-03-18 13:12:51 -0600)
>
> are available in the Git repository at:
>
> [...]
Merged into u-boot/next, thanks!
--
Tom
^ permalink raw reply [flat|nested] 25+ messages in thread
* [PULL] u-boot-sh/next
@ 2025-03-11 23:05 Marek Vasut
2025-03-12 13:55 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2025-03-11 23:05 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut, Paul Barker
The following changes since commit 1b42f57ec82ceba4d5f08cfb359717232301cfa5:
Merge tag 'v2025.04-rc4' into next (2025-03-10 20:18:51 -0600)
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 4226433858318be5914688963436ad41cbe2298d:
net: ravb: Fix RX frame size limit (2025-03-11 23:06:18 +0100)
----------------------------------------------------------------
Marek Vasut (13):
ARM: renesas: Enable USBHS UDC and UMS on Renesas R-Car Gen3 Salvator-X(S)
pinctrl: renesas: Drop special RZN1 entry from Makefile
net: miiphybb: Split off struct bb_miiphy_bus_ops
net: miiphybb: Wrap driver side bb_miiphy_read/write() accessors
net: miiphybb: Pass struct bb_miiphy_bus_ops directly to bb_miiphy_read/write()
net: miiphybb: Pass struct mii_dev directly to bb_miiphy_read/write()
net: miiphybb: Drop priv from struct bb_miiphy_bus
net: designware: Switch back to mdio_alloc()
net: ravb: Switch back to mdio_alloc()
net: sh_eth: Switch back to mdio_alloc()
arm: mvebu: a38x: Switch back to mdio_alloc()
net: miiphybb: Drop bb_miiphy_alloc()/bb_miiphy_free() and struct bb_miiphy_bus
net: miiphybb: Drop mdio_init()
Paul Barker (3):
clk: rzg2l: Ignore disable for core clocks
net: ravb: Add dependency on CONFIG_BITBANGMII
net: ravb: Fix RX frame size limit
board/gdsys/a38x/ihs_phys.c | 74 +++++++------
common/miiphyutil.c | 13 +--
configs/rcar3_salvator-x_defconfig | 8 ++
drivers/clk/renesas/rzg2l-cpg.c | 17 ++-
drivers/net/Kconfig | 1 +
drivers/net/designware.c | 77 ++++++-------
drivers/net/phy/miiphybb.c | 216 ++++++++++++++++---------------------
drivers/net/ravb.c | 81 ++++++++------
drivers/net/sh_eth.c | 70 +++++++-----
drivers/pinctrl/Makefile | 1 -
include/miiphy.h | 27 ++---
11 files changed, 294 insertions(+), 291 deletions(-)
^ permalink raw reply [flat|nested] 25+ messages in thread* [PULL] u-boot-sh/next
@ 2025-02-26 19:33 Marek Vasut
2025-02-27 14:06 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2025-02-26 19:33 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut
bbmiiphy clean up and DM alignment, finally gets rid of the static bbmiiphy
variables and plugs bbmiiphy into MDIO framework.
The following changes since commit 8dd7186ca7821446c6f46b6cccefab502912f2e0:
Merge patch series "Remove "saveenv" functionality from am57xx evms" (2025-02-25 11:11:32 -0600)
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 4e6fed49becc7e8d9639966fd34695583192a3ee:
net: miiphybb: Drop bb_miiphy_buses and bb_miiphy_buses_num (2025-02-26 18:26:57 +0100)
----------------------------------------------------------------
Marek Vasut (23):
net: ravb: Drop empty init callback
net: sh_eth: Drop empty init callback
net: designware: Drop NULL priv assignment
net: ravb: Reorder bb_miiphy functions
net: sh_eth: Reorder bb_miiphy functions
arm: mvebu: a38x: Reorder bb_miiphy functions
net: designware: Reorder bb_miiphy functions
arm: mvebu: a38x: Call bb_miiphy init directly in driver probe
net: miiphybb: Drop bb_miiphy_init() and .init callback
net: designware: Drop bus index
net: designware: Extract bbmiiphy initialization into dedicated function
net: miiphy: Introduce mdio_init()
net: miiphybb: Introduce bb_miiphy_alloc()/bb_miiphy_free() wrappers
arm: mvebu: a38x: Allocate bb_miiphy using bb_miiphy_alloc() and fill in callbacks
net: ravb: Allocate bb_miiphy using bb_miiphy_alloc() and fill in callbacks
net: sh_eth: Allocate bb_miiphy using bb_miiphy_alloc() and fill in callbacks
net: designware: Allocate bb_miiphy using bb_miiphy_alloc() and fill in callbacks
net: miiphybb: Use container_of() in bb_miiphy_getbus()
net: miiphybb: Drop name field from struct bb_miiphy_bus
arm: mvebu: a38x: Drop use of miiphy_get_dev_by_name()
net: ravb: Drop use of miiphy_get_dev_by_name()
net: sh_eth: Drop use of miiphy_get_dev_by_name()
net: miiphybb: Drop bb_miiphy_buses and bb_miiphy_buses_num
board/gdsys/a38x/ihs_phys.c | 237 ++++++++++++++++++---------------------
common/board_r.c | 3 -
common/miiphyutil.c | 13 ++-
drivers/net/designware.c | 263 ++++++++++++++++++++++++--------------------
drivers/net/phy/miiphybb.c | 36 +++---
drivers/net/ravb.c | 159 +++++++++++++-------------
drivers/net/sh_eth.c | 179 ++++++++++++++----------------
include/miiphy.h | 17 +--
8 files changed, 438 insertions(+), 469 deletions(-)
^ permalink raw reply [flat|nested] 25+ messages in thread* Re: [PULL] u-boot-sh/next
2025-02-26 19:33 Marek Vasut
@ 2025-02-27 14:06 ` Tom Rini
0 siblings, 0 replies; 25+ messages in thread
From: Tom Rini @ 2025-02-27 14:06 UTC (permalink / raw)
To: u-boot, Marek Vasut
On Wed, 26 Feb 2025 20:33:58 +0100, Marek Vasut wrote:
> bbmiiphy clean up and DM alignment, finally gets rid of the static bbmiiphy
> variables and plugs bbmiiphy into MDIO framework.
>
> The following changes since commit 8dd7186ca7821446c6f46b6cccefab502912f2e0:
>
> Merge patch series "Remove "saveenv" functionality from am57xx evms" (2025-02-25 11:11:32 -0600)
>
> are available in the Git repository at:
>
> [...]
Merged into u-boot/next, thanks!
--
Tom
^ permalink raw reply [flat|nested] 25+ messages in thread
* [PULL] u-boot-sh/next
@ 2024-12-29 17:35 Marek Vasut
2024-12-30 21:52 ` Tom Rini
0 siblings, 1 reply; 25+ messages in thread
From: Marek Vasut @ 2024-12-29 17:35 UTC (permalink / raw)
To: u-boot, Tom Rini; +Cc: Marek Vasut
The following changes since commit d580a013cca67a8115fb88d260498bde181709a1:
Merge patch series "vbe: Series part E" (2024-12-27 15:16:39 -0600)
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 678f7c8f560775e0ac33300f54281dfcaa2e525a:
net: rswitch: Implement C22 to C45 access (2024-12-29 16:55:32 +0100)
----------------------------------------------------------------
Marek Vasut (19):
pinctrl: renesas: Convert to IS_ENABLED() macro
ram: renesas: Add Renesas R-Car Gen4 DBSC5 driver
arm64: dts: renesas: Add R8A779G0 V4H DBSC5 and RT-VRAM DT nodes
arm64: renesas: Make stub PSCI implementation available on 64bit R-Car SoCs
arm64: renesas: Deduplicate R-Car Gen4 board files
arm64: renesas: Split R-Car Gen3 and Gen4 common board code
arm64: renesas: Make bottom 128 MiB of DRAM available in EL3
arm64: renesas: Add Renesas R-Car V4H SPL implementation
arm64: renesas: Align configuration headers
arm64: dts: renesas: Drop OF_UPSTREAM conversion remnant
remoteproc: renesas: Add Renesas R-Car Gen4 remote processor driver
arm64: dts: renesas: Add R8A779G0 V4H remoteproc DT node
arm64: renesas: Enable CR52 remoteproc on R-Car R8A779G0 V4H
net: rswitch: Replace enum rswitch_reg with plain macros
net: rswitch: Fix up macro indent
net: rswitch: Simplify code using clrsetbits_le32()
net: rswitch: Fold MPSM C45 setting into rswitch_mii_access_c45()
net: rswitch: Add PHY C22 access support
net: rswitch: Implement C22 to C45 access
arch/arm/dts/Makefile | 4 -
arch/arm/dts/r8a779g0-u-boot.dtsi | 175 +-
arch/arm/dts/r8a779g0-white-hawk-u-boot.dtsi | 6 +
arch/arm/mach-renesas/Kconfig.rcar4 | 10 +
arch/arm/mach-renesas/Makefile | 4 +-
arch/arm/mach-renesas/include/mach/boot0.h | 66 +
.../arm/mach-renesas/include/mach/rcar-gen3-base.h | 5 +
.../{psci-r8a779a0.c => psci-rcar64.c} | 3 +-
board/beacon/beacon-rzg2m/Makefile | 2 +-
board/hoperun/hihope-rzg2/Makefile | 2 +-
board/renesas/condor/Makefile | 2 +-
board/renesas/draak/Makefile | 2 +-
board/renesas/eagle/Makefile | 2 +-
board/renesas/ebisu/Makefile | 2 +-
board/renesas/falcon/Makefile | 2 +-
board/renesas/falcon/falcon.c | 102 -
board/renesas/grayhawk/Makefile | 2 +-
board/renesas/grayhawk/grayhawk.c | 66 -
board/renesas/rcar-common/common.c | 200 +-
board/renesas/rcar-common/gen3-common.c | 185 +
.../whitehawk.c => rcar-common/gen4-common.c} | 36 +-
board/renesas/rcar-common/gen4-spl.c | 119 +
board/renesas/salvator-x/Makefile | 2 +-
board/renesas/spider/Makefile | 2 +-
board/renesas/spider/spider.c | 66 -
board/renesas/ulcb/Makefile | 2 +-
board/renesas/v3hsk/Makefile | 2 +-
board/renesas/v3msk/Makefile | 2 +-
board/renesas/whitehawk/Makefile | 6 +-
board/silinux/ek874/Makefile | 2 +-
configs/r8a779g0_whitehawk_defconfig | 40 +
drivers/net/rswitch.c | 238 +-
drivers/pinctrl/renesas/pfc.c | 128 +-
drivers/ram/Kconfig | 1 +
drivers/ram/renesas/Kconfig | 7 +
drivers/ram/renesas/Makefile | 3 +
drivers/ram/renesas/dbsc5/Makefile | 3 +
drivers/ram/renesas/dbsc5/dbsc5.c | 79 +
drivers/ram/renesas/dbsc5/dbsc5.h | 28 +
drivers/ram/renesas/dbsc5/dram.c | 4532 ++++++++++++++++++++
drivers/ram/renesas/dbsc5/qos.c | 636 +++
drivers/ram/renesas/dbsc5/rtvram.c | 93 +
drivers/remoteproc/Kconfig | 8 +
drivers/remoteproc/Makefile | 1 +
drivers/remoteproc/renesas_apmu.c | 266 ++
include/configs/rcar-gen2-common.h | 10 +-
include/configs/rcar-gen3-common.h | 19 +-
include/configs/rcar-gen4-common.h | 8 +-
48 files changed, 6539 insertions(+), 642 deletions(-)
rename arch/arm/mach-renesas/{psci-r8a779a0.c => psci-rcar64.c} (92%)
delete mode 100644 board/renesas/falcon/falcon.c
delete mode 100644 board/renesas/grayhawk/grayhawk.c
create mode 100644 board/renesas/rcar-common/gen3-common.c
rename board/renesas/{whitehawk/whitehawk.c => rcar-common/gen4-common.c} (61%)
create mode 100644 board/renesas/rcar-common/gen4-spl.c
delete mode 100644 board/renesas/spider/spider.c
create mode 100644 drivers/ram/renesas/Kconfig
create mode 100644 drivers/ram/renesas/dbsc5/Makefile
create mode 100644 drivers/ram/renesas/dbsc5/dbsc5.c
create mode 100644 drivers/ram/renesas/dbsc5/dbsc5.h
create mode 100644 drivers/ram/renesas/dbsc5/dram.c
create mode 100644 drivers/ram/renesas/dbsc5/qos.c
create mode 100644 drivers/ram/renesas/dbsc5/rtvram.c
create mode 100644 drivers/remoteproc/renesas_apmu.c
^ permalink raw reply [flat|nested] 25+ 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; 25+ 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] 25+ 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; 25+ 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] 25+ 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; 25+ 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] 25+ 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; 25+ 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] 25+ 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; 25+ 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] 25+ messages in thread
end of thread, other threads:[~2025-06-19 17:03 UTC | newest]
Thread overview: 25+ 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 --
2025-06-18 20:33 Marek Vasut
2025-06-19 17:03 ` Tom Rini
2025-03-29 2:39 Marek Vasut
2025-03-30 14:16 ` Tom Rini
2025-03-19 23:48 Marek Vasut
2025-03-20 17:40 ` Tom Rini
2025-03-11 23:05 Marek Vasut
2025-03-12 13:55 ` Tom Rini
2025-02-26 19:33 Marek Vasut
2025-02-27 14:06 ` Tom Rini
2024-12-29 17:35 Marek Vasut
2024-12-30 21:52 ` Tom Rini
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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox