Date
1 - 7 of 7
[PATCH 0/6] Basic SoC support for r8a7743/r8a7745
Biju Das <biju.das@...>
This series aims to add basic SoC support for
r8a7743/r8a7745. All the patches in this series are cherry-picked from the upstream kernel. This series has been tested against linux-cip tag v4.4.75-cip6. Laurent Pinchart (1): ARM: shmobile: Consolidate R8A7743 and R8A779[234] machine definitions Sergei Shtylyov (5): sh_eth: add R8A7743/5 support DT: irqchip: renesas-irqc: document R8A7743/5 support sh-sci: document R8A7743/5 support ARM: shmobile: r8a7743: basic SoC support ARM: shmobile: r8a7745: basic SoC support Documentation/devicetree/bindings/arm/shmobile.txt | 4 +++ .../bindings/interrupt-controller/renesas,irqc.txt | 4 ++- Documentation/devicetree/bindings/net/sh_eth.txt | 2 ++ .../bindings/serial/renesas,sci-serial.txt | 8 ++++++ arch/arm/mach-shmobile/Kconfig | 8 ++++++ arch/arm/mach-shmobile/Makefile | 2 -- arch/arm/mach-shmobile/setup-r8a7793.c | 33 ---------------------- arch/arm/mach-shmobile/setup-r8a7794.c | 33 ---------------------- arch/arm/mach-shmobile/setup-rcar-gen2.c | 33 ++++++++++++++++++++++ drivers/net/ethernet/renesas/Kconfig | 2 +- drivers/net/ethernet/renesas/sh_eth.c | 2 ++ 11 files changed, 61 insertions(+), 70 deletions(-) delete mode 100644 arch/arm/mach-shmobile/setup-r8a7793.c delete mode 100644 arch/arm/mach-shmobile/setup-r8a7794.c -- 1.9.1 |
|
Ben Hutchings <ben.hutchings@...>
On Wed, 2017-07-12 at 10:21 +0100, Biju Das wrote:
This series aims to add basic SoC support forThese all look good to me, so I've applied these to the linux-4.4.y-cip branch. Are you going to add more driver support (e.g. ravb, xhci-rcar) and device tree sources? Ben. Laurent Pinchart (1):-- Ben Hutchings Software Developer, Codethink Ltd. |
|
Ben Hutchings <ben.hutchings@...>
On Tue, 2017-07-18 at 16:30 +0100, Ben Hutchings wrote:
On Wed, 2017-07-12 at 10:21 +0100, Biju Das wrote:Actually, there's something not quite right here. With justThis series aims to add basic SoC support forThese all look good to me, so I've applied these to the linux-4.4.y-cip CONFIG_ARCH_R8A7743 and CONFIG_ARCH_R8A7745 enabled (but no other R-Car platforms) I get: arch/arm/mach-shmobile/built-in.o: In function `rcar_gen2_timer_init': /home/bwh/ln001-cip/kernel/arch/arm/mach-shmobile/setup-rcar-gen2.c:131: undefined reference to `rcar_gen2_clocks_init' There seems to have been a lot of refactoring of drivers/clk/{shmobile,renesas} since 4.4 so I'm not sure how this should be fixed. Ben. -- Ben Hutchings Software Developer, Codethink Ltd. |
|
Biju Das <biju.das@...>
toggle quoted message
Show quoted text
-----Original Message-----The patches are for Basic SoC support. Next I am planning Clock driver, then DT support for SoC, then Board DTS and then Enabling the config option(CONFIG_ARCH_R8A7743 and CONFIG_ARCH_R8A7745) . Current upstreamed RZ/G1M clock driver uses the new Renesas CPG/MSSR clock driver frame work. Backporting requires lot of refactoring of drivers/clk/{shmobile,renesas}. So I don't think backporting the RZ/G1M clock driver is the right choice. However r8a7743( RZ/G1M) is identical to r8a7791(RCar-M2) platform. We ported r8a7743( RZ/G1M) clk driver based on this. The current patch series, which I submitted is tested with this clk driver.
Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709. |
|
Ben Hutchings <ben.hutchings@...>
On Wed, 2017-07-19 at 08:24 +0000, Biju Das wrote:
[...] OK.Actually, there's something not quite right here. With justThe patches are for Basic SoC support. Next I am planning Clock driver, then DT support for SoC, then Board DTS However r8a7743( RZ/G1M) is identical to r8a7791(RCar-M2) platform. We ported r8a7743( RZ/G1M) clk driver based on this.Then I think I should just make this change: Subject: CIP: Build essential clock driver for Renesas RZ/G1 platforms In mainline, clk-rcar-gen2 is selected by CONFIG_CLK_RCAR_GEN2 but here there is no such common config symbol and we need to select it for each platform. Signed-off-by: Ben Hutchings <ben.hutchings@...> --- drivers/clk/shmobile/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/clk/shmobile/Makefile b/drivers/clk/shmobile/Makefile index 97c71c885e4f..b339c0b6bb2f 100644 --- a/drivers/clk/shmobile/Makefile +++ b/drivers/clk/shmobile/Makefile @@ -2,6 +2,8 @@ obj-$(CONFIG_ARCH_EMEV2) += clk-emev2.o obj-$(CONFIG_ARCH_R7S72100) += clk-rz.o obj-$(CONFIG_ARCH_R8A73A4) += clk-r8a73a4.o obj-$(CONFIG_ARCH_R8A7740) += clk-r8a7740.o +obj-$(CONFIG_ARCH_R8A7743) += clk-rcar-gen2.o +obj-$(CONFIG_ARCH_R8A7745) += clk-rcar-gen2.o obj-$(CONFIG_ARCH_R8A7778) += clk-r8a7778.o obj-$(CONFIG_ARCH_R8A7779) += clk-r8a7779.o obj-$(CONFIG_ARCH_R8A7790) += clk-rcar-gen2.o --- END --- Right? Ben. -- Ben Hutchings Software Developer, Codethink Ltd. |
|
Biju Das <biju.das@...>
toggle quoted message
Show quoted text
-----Original Message-----Yes. That is correct. Ben. Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709. |
|
Ben Hutchings <ben.hutchings@...>
On Wed, 2017-07-19 at 13:59 +0000, Biju Das wrote:
[...] [...]Then I think I should just make this change: I've applied this.Right?Yes. That is correct. Ben. -- Ben Hutchings Software Developer, Codethink Ltd. |
|