From: b.brezillon@overkiz.com (boris brezillon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 00/42] ARM: at91: move to common clk framework
Date: Sat, 27 Jul 2013 06:41:49 +0200 [thread overview]
Message-ID: <51F34F8D.4000106@overkiz.com> (raw)
In-Reply-To: <1374068069-13496-1-git-send-email-b.brezillon@overkiz.com>
Hello,
This email is a feedback on the discussion I had with Jean-Christophe
last Wednesday.
As discussed with him, I will try to split this patch series in order to
1) limit the number of patches to review
2) limit the number of SoCs/boards to test
The new at91 clk support on non-dt boards was also discussed, and
Jean-Christophe thinks this is not mandatory (and should be dropped).
Does anyone see an interest in keeping this support in the next version
of the patch series ?
Here is how he though this patch series could be splitted:
1) at91 common clk implemenations + 1 SoC and the associated dt boards
2) 1 SoC and the associated dt boards
...)1 SoC and the associated dt boards
I tried to prepare the first new patch series by including only
at91sam9260/9g20 SoCs and boards but I failed. In fact I succeed but it
breaks multi-soc support (using dt) because we can't use both the common
clk framework and the at91 specific clk framework (they both provides
the same set of functions and structures definitions).
Should I break the multi-soc support to add at91 common clk ?
The only SoC that could be added without breaking multi-soc support is
the sama5 as it uses a different arm architecture (ARMv7) and thus
cannot be compiled in the same kernel as other at91 socs.
Should I choose the sama5 for the next patch series ?
Jean-Christophe, could you at least review the 11 first patches of this
series ?
I won't send any new version until I get some feedback from you on the
clk implementations and dt bindings...
Berst Regards,
Boris
Le 17/07/2013 15:34, Boris BREZILLON a ?crit :
> Hello,
>
> This patch series is a proposal to move at91 clock implementation
> to common clk framework.
>
> Most of the clock provided by the PMC (Power Management Controller) are
> implemented :
> - main clock (main oscillator)
> - pll clocks
> - master clock
> - programmable clocks
> - utmi clock
> - peripheral clocks
> - system clocks
>
> This implementation is compatible with device tree: the goal is
> to define the whole clock tree in the device tree (all currently
> available dt SoCs and boards are patched to support dt clocks).
> Please feel free to comment the dt bindinds.
>
> I removed the register_clocks function in SoC supporting dt boards only:
> - at91sam9x5 SoCs
> - at91sam9n12 SoC
> - sama5d3 SoCs
>
> This patch series is based on linux-next and has been tested on sama5d31ek
> board using device tree. It compiles for other SoCs and both with and without
> dt support, but it has not been tested.
>
> BTW could other people test it on other boards (I only have a kizbox and
> a sama5d31ek dev kit).
>
> Best Regards,
> Boris
>
> Changes since v1:
> - fix bugs in pll, programmable and system clock implementations
> (wrong bit position).
> - add usb clock configuration support (ohci and udc drivers +
> clk_lookup for non dt boards)
> - rework of the system clock interfaces (no need to define a parent clock,
> system clock is a gate with no rate info)
> - change system, peripheral and programmable clk dt bindings (1 master node
> and multiple child nodes each defining a system/peripheral or prog clock)
> - fix bugs in sama5 dt definition
>
> Boris BREZILLON (42):
> ARM: at91: move at91_pmc.h to include/linux/clk/at91.h
> ARM: at91: add PMC main clock
> ARM: at91: add PMC pll clocks
> ARM: at91: add PMC master clock
> ARM: at91: add PMC system clocks
> ARM: at91: add PMC peripheral clocks
> ARM: at91: add PMC programmable clocks
> ARM: at91: add PMC utmi clock
> ARM: at91: add PMC usb clock
> ARM: at91: add PMC smd clock
> ARM: at91: add PMC clk device tree binding doc.
> ARM: at91: move to common clk framework
> ARM: at91: move at91rm9200 SoC to new at91 clk implem
> ARM: at91: move at91sam9260 SoC to new at91 clk implem
> ARM: at91: move at91sam9261 SoC to new at91 clk implem
> ARM: at91: move at91sam9263 SoC to new at91 clk implem
> ARM: at91: move at91sam9g45 SoC to new at91 clk implem
> ARM: at91: move at91sam9n12 SoC to new at91 clk implem
> ARM: at91: move at91sam9rl SoC to new at91 clk implem
> ARM: at91: move at91sam9x5 SoCs to new at91 clk implem
> ARM: at91: move at91sam9 SoCs to new at91 clk implem
> ARM: at91: move sama5d3 SoCs to new at91 clk implem
> ARM: at91: move at91rm9200 boards to new at91 clk implem
> ARM: at91: move at91sam9 boards to new at91 clk implem
> ARM: at91: move pit timer to common clk framework
> USB: ohci-at91: add usb_clk for transition to common clk framework
> usb: gadget: at91_udc: add usb_clk for transition to common clk
> framework
> ARM: at91/dt: move at91rm9200 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9260 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9263 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9g45 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9n12 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9x5 SoCs to new at91 clk implem
> ARM: at91/dt: move at91sam9g20 SoC to new at91 clk implem
> ARM: at91/dt: move sama5d3 SoCs to new at91 clk implem
> ARM: at91/dt: move sam9260/sam9g20 to new at91 clk implem
> ARM: at91/dt: move rm9200 boards to new at91 clk implem
> ARM: at91/dt: move sam9263 boards to new at91 clk implem
> ARM: at91/dt: move sam9g45 boards to new at91 clk implem
> ARM: at91/dt: move sam9n12 boards to new at91 clk implem
> ARM: at91/dt: move sam9x5 boards to new at91 clk implem
> ARM: at91/dt: move sama5d3 boards to new at91 clk implem
>
> .../devicetree/bindings/clock/at91-clock.txt | 262 ++++++
> arch/arm/boot/dts/animeo_ip.dts | 17 +-
> arch/arm/boot/dts/at91-ariag25.dts | 17 +-
> arch/arm/boot/dts/at91rm9200.dtsi | 231 +++++
> arch/arm/boot/dts/at91rm9200ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9260.dtsi | 236 +++++
> arch/arm/boot/dts/at91sam9263.dtsi | 237 +++++
> arch/arm/boot/dts/at91sam9263ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9g15.dtsi | 1 +
> arch/arm/boot/dts/at91sam9g20.dtsi | 37 +
> arch/arm/boot/dts/at91sam9g20ek_common.dtsi | 17 +-
> arch/arm/boot/dts/at91sam9g25.dtsi | 3 +
> arch/arm/boot/dts/at91sam9g35.dtsi | 2 +
> arch/arm/boot/dts/at91sam9g45.dtsi | 257 +++++
> arch/arm/boot/dts/at91sam9m10g45ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9n12.dtsi | 251 +++++
> arch/arm/boot/dts/at91sam9n12ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9x25.dtsi | 25 +-
> arch/arm/boot/dts/at91sam9x35.dtsi | 3 +
> arch/arm/boot/dts/at91sam9x5.dtsi | 319 +++++--
> arch/arm/boot/dts/at91sam9x5_can.dtsi | 26 +
> arch/arm/boot/dts/at91sam9x5_isi.dtsi | 22 +
> arch/arm/boot/dts/at91sam9x5_lcdc.dtsi | 28 +
> arch/arm/boot/dts/at91sam9x5_macb0.dtsi | 66 ++
> arch/arm/boot/dts/at91sam9x5_macb1.dtsi | 54 ++
> arch/arm/boot/dts/at91sam9x5_usart3.dtsi | 58 ++
> arch/arm/boot/dts/ge863-pro3.dtsi | 16 +-
> arch/arm/boot/dts/kizbox.dts | 5 +
> arch/arm/boot/dts/mpa1600.dts | 16 +-
> arch/arm/boot/dts/pm9g45.dts | 16 +-
> arch/arm/boot/dts/sama5d3.dtsi | 510 ++++++----
> arch/arm/boot/dts/sama5d31ek.dts | 4 +
> arch/arm/boot/dts/sama5d33ek.dts | 2 +
> arch/arm/boot/dts/sama5d34ek.dts | 4 +
> arch/arm/boot/dts/sama5d35ek.dts | 6 +
> arch/arm/boot/dts/sama5d3_can.dtsi | 71 ++
> arch/arm/boot/dts/sama5d3_emac.dtsi | 54 ++
> arch/arm/boot/dts/sama5d3_gmac.dtsi | 87 ++
> arch/arm/boot/dts/sama5d3_lcd.dtsi | 69 ++
> arch/arm/boot/dts/sama5d3_mci2.dtsi | 57 ++
> arch/arm/boot/dts/sama5d3_tcb1.dtsi | 38 +
> arch/arm/boot/dts/sama5d3_uart.dtsi | 46 +
> arch/arm/boot/dts/sama5d3xcm.dtsi | 17 +-
> arch/arm/boot/dts/tny_a9260_common.dtsi | 17 +-
> arch/arm/boot/dts/tny_a9263.dts | 17 +-
> arch/arm/boot/dts/usb_a9260_common.dtsi | 17 +-
> arch/arm/boot/dts/usb_a9263.dts | 17 +-
> arch/arm/mach-at91/Kconfig | 26 +
> arch/arm/mach-at91/Makefile | 2 +-
> arch/arm/mach-at91/at91rm9200.c | 568 +++++++-----
> arch/arm/mach-at91/at91sam9260.c | 689 +++++++++-----
> arch/arm/mach-at91/at91sam9261.c | 572 ++++++++----
> arch/arm/mach-at91/at91sam9263.c | 595 +++++++-----
> arch/arm/mach-at91/at91sam926x_time.c | 21 +-
> arch/arm/mach-at91/at91sam9g45.c | 704 ++++++++------
> arch/arm/mach-at91/at91sam9g45_devices.c | 1 -
> arch/arm/mach-at91/at91sam9n12.c | 196 +---
> arch/arm/mach-at91/at91sam9rl.c | 502 ++++++----
> arch/arm/mach-at91/at91sam9x5.c | 293 +-----
> arch/arm/mach-at91/board-1arm.c | 12 +-
> arch/arm/mach-at91/board-afeb-9260v1.c | 11 +-
> arch/arm/mach-at91/board-cam60.c | 13 +-
> arch/arm/mach-at91/board-carmeva.c | 13 +-
> arch/arm/mach-at91/board-cpu9krea.c | 12 +-
> arch/arm/mach-at91/board-cpuat91.c | 12 +-
> arch/arm/mach-at91/board-csb337.c | 11 +-
> arch/arm/mach-at91/board-csb637.c | 11 +-
> arch/arm/mach-at91/board-dt-rm9200.c | 9 +-
> arch/arm/mach-at91/board-dt-sam9.c | 9 +-
> arch/arm/mach-at91/board-dt-sama5.c | 9 +-
> arch/arm/mach-at91/board-eb9200.c | 11 +-
> arch/arm/mach-at91/board-ecbat91.c | 12 +-
> arch/arm/mach-at91/board-eco920.c | 13 +-
> arch/arm/mach-at91/board-flexibity.c | 12 +-
> arch/arm/mach-at91/board-foxg20.c | 12 +-
> arch/arm/mach-at91/board-gsia18s.c | 8 +-
> arch/arm/mach-at91/board-kafa.c | 12 +-
> arch/arm/mach-at91/board-kb9202.c | 12 +-
> arch/arm/mach-at91/board-pcontrol-g20.c | 9 +-
> arch/arm/mach-at91/board-picotux200.c | 11 +-
> arch/arm/mach-at91/board-qil-a9260.c | 11 +-
> arch/arm/mach-at91/board-rm9200ek.c | 11 +-
> arch/arm/mach-at91/board-rsi-ews.c | 12 +-
> arch/arm/mach-at91/board-sam9-l9260.c | 11 +-
> arch/arm/mach-at91/board-sam9260ek.c | 11 +-
> arch/arm/mach-at91/board-sam9261ek.c | 15 +-
> arch/arm/mach-at91/board-sam9263ek.c | 11 +-
> arch/arm/mach-at91/board-sam9g20ek.c | 15 +-
> arch/arm/mach-at91/board-sam9m10g45ek.c | 11 +-
> arch/arm/mach-at91/board-sam9rlek.c | 11 +-
> arch/arm/mach-at91/board-snapper9260.c | 12 +-
> arch/arm/mach-at91/board-stamp9g20.c | 15 +-
> arch/arm/mach-at91/board-yl-9200.c | 12 +-
> arch/arm/mach-at91/clock.c | 977 --------------------
> arch/arm/mach-at91/clock.h | 49 -
> arch/arm/mach-at91/generic.h | 10 +-
> arch/arm/mach-at91/pm.c | 2 +-
> arch/arm/mach-at91/pm_slowclock.S | 2 +-
> arch/arm/mach-at91/pmc.c | 58 ++
> arch/arm/mach-at91/sama5d3.c | 344 +------
> arch/arm/mach-at91/setup.c | 38 +-
> arch/arm/mach-at91/stamp9g20.h | 2 +-
> drivers/clk/Makefile | 1 +
> drivers/clk/at91/Makefile | 11 +
> drivers/clk/at91/clk-main.c | 106 +++
> drivers/clk/at91/clk-master.c | 317 +++++++
> drivers/clk/at91/clk-peripheral.c | 371 ++++++++
> drivers/clk/at91/clk-pll.c | 438 +++++++++
> drivers/clk/at91/clk-plldiv.c | 125 +++
> drivers/clk/at91/clk-programmable.c | 368 ++++++++
> drivers/clk/at91/clk-smd.c | 157 ++++
> drivers/clk/at91/clk-system.c | 184 ++++
> drivers/clk/at91/clk-usb.c | 303 ++++++
> drivers/clk/at91/clk-utmi.c | 114 +++
> drivers/usb/gadget/at91_udc.c | 31 +-
> drivers/usb/gadget/at91_udc.h | 2 +-
> drivers/usb/gadget/atmel_usba_udc.c | 2 +-
> drivers/usb/host/ohci-at91.c | 16 +-
> .../mach/at91_pmc.h => include/linux/clk/at91.h | 116 ++-
> 119 files changed, 8193 insertions(+), 3835 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/at91-clock.txt
> create mode 100644 arch/arm/boot/dts/at91sam9x5_can.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_isi.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_lcdc.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_macb0.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_macb1.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_usart3.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_can.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_emac.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_gmac.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_lcd.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_mci2.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_tcb1.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_uart.dtsi
> delete mode 100644 arch/arm/mach-at91/clock.c
> delete mode 100644 arch/arm/mach-at91/clock.h
> create mode 100644 arch/arm/mach-at91/pmc.c
> create mode 100644 drivers/clk/at91/Makefile
> create mode 100644 drivers/clk/at91/clk-main.c
> create mode 100644 drivers/clk/at91/clk-master.c
> create mode 100644 drivers/clk/at91/clk-peripheral.c
> create mode 100644 drivers/clk/at91/clk-pll.c
> create mode 100644 drivers/clk/at91/clk-plldiv.c
> create mode 100644 drivers/clk/at91/clk-programmable.c
> create mode 100644 drivers/clk/at91/clk-smd.c
> create mode 100644 drivers/clk/at91/clk-system.c
> create mode 100644 drivers/clk/at91/clk-usb.c
> create mode 100644 drivers/clk/at91/clk-utmi.c
> rename arch/arm/mach-at91/include/mach/at91_pmc.h => include/linux/clk/at91.h (78%)
>
WARNING: multiple messages have this Message-ID (diff)
From: boris brezillon <b.brezillon@overkiz.com>
To: Boris BREZILLON <b.brezillon@overkiz.com>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>,
Ludovic Desroches <ludovic.desroches@atmel.com>,
Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>,
Mike Turquette <mturquette@linaro.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 00/42] ARM: at91: move to common clk framework
Date: Sat, 27 Jul 2013 06:41:49 +0200 [thread overview]
Message-ID: <51F34F8D.4000106@overkiz.com> (raw)
In-Reply-To: <1374068069-13496-1-git-send-email-b.brezillon@overkiz.com>
Hello,
This email is a feedback on the discussion I had with Jean-Christophe
last Wednesday.
As discussed with him, I will try to split this patch series in order to
1) limit the number of patches to review
2) limit the number of SoCs/boards to test
The new at91 clk support on non-dt boards was also discussed, and
Jean-Christophe thinks this is not mandatory (and should be dropped).
Does anyone see an interest in keeping this support in the next version
of the patch series ?
Here is how he though this patch series could be splitted:
1) at91 common clk implemenations + 1 SoC and the associated dt boards
2) 1 SoC and the associated dt boards
...)1 SoC and the associated dt boards
I tried to prepare the first new patch series by including only
at91sam9260/9g20 SoCs and boards but I failed. In fact I succeed but it
breaks multi-soc support (using dt) because we can't use both the common
clk framework and the at91 specific clk framework (they both provides
the same set of functions and structures definitions).
Should I break the multi-soc support to add at91 common clk ?
The only SoC that could be added without breaking multi-soc support is
the sama5 as it uses a different arm architecture (ARMv7) and thus
cannot be compiled in the same kernel as other at91 socs.
Should I choose the sama5 for the next patch series ?
Jean-Christophe, could you at least review the 11 first patches of this
series ?
I won't send any new version until I get some feedback from you on the
clk implementations and dt bindings...
Berst Regards,
Boris
Le 17/07/2013 15:34, Boris BREZILLON a écrit :
> Hello,
>
> This patch series is a proposal to move at91 clock implementation
> to common clk framework.
>
> Most of the clock provided by the PMC (Power Management Controller) are
> implemented :
> - main clock (main oscillator)
> - pll clocks
> - master clock
> - programmable clocks
> - utmi clock
> - peripheral clocks
> - system clocks
>
> This implementation is compatible with device tree: the goal is
> to define the whole clock tree in the device tree (all currently
> available dt SoCs and boards are patched to support dt clocks).
> Please feel free to comment the dt bindinds.
>
> I removed the register_clocks function in SoC supporting dt boards only:
> - at91sam9x5 SoCs
> - at91sam9n12 SoC
> - sama5d3 SoCs
>
> This patch series is based on linux-next and has been tested on sama5d31ek
> board using device tree. It compiles for other SoCs and both with and without
> dt support, but it has not been tested.
>
> BTW could other people test it on other boards (I only have a kizbox and
> a sama5d31ek dev kit).
>
> Best Regards,
> Boris
>
> Changes since v1:
> - fix bugs in pll, programmable and system clock implementations
> (wrong bit position).
> - add usb clock configuration support (ohci and udc drivers +
> clk_lookup for non dt boards)
> - rework of the system clock interfaces (no need to define a parent clock,
> system clock is a gate with no rate info)
> - change system, peripheral and programmable clk dt bindings (1 master node
> and multiple child nodes each defining a system/peripheral or prog clock)
> - fix bugs in sama5 dt definition
>
> Boris BREZILLON (42):
> ARM: at91: move at91_pmc.h to include/linux/clk/at91.h
> ARM: at91: add PMC main clock
> ARM: at91: add PMC pll clocks
> ARM: at91: add PMC master clock
> ARM: at91: add PMC system clocks
> ARM: at91: add PMC peripheral clocks
> ARM: at91: add PMC programmable clocks
> ARM: at91: add PMC utmi clock
> ARM: at91: add PMC usb clock
> ARM: at91: add PMC smd clock
> ARM: at91: add PMC clk device tree binding doc.
> ARM: at91: move to common clk framework
> ARM: at91: move at91rm9200 SoC to new at91 clk implem
> ARM: at91: move at91sam9260 SoC to new at91 clk implem
> ARM: at91: move at91sam9261 SoC to new at91 clk implem
> ARM: at91: move at91sam9263 SoC to new at91 clk implem
> ARM: at91: move at91sam9g45 SoC to new at91 clk implem
> ARM: at91: move at91sam9n12 SoC to new at91 clk implem
> ARM: at91: move at91sam9rl SoC to new at91 clk implem
> ARM: at91: move at91sam9x5 SoCs to new at91 clk implem
> ARM: at91: move at91sam9 SoCs to new at91 clk implem
> ARM: at91: move sama5d3 SoCs to new at91 clk implem
> ARM: at91: move at91rm9200 boards to new at91 clk implem
> ARM: at91: move at91sam9 boards to new at91 clk implem
> ARM: at91: move pit timer to common clk framework
> USB: ohci-at91: add usb_clk for transition to common clk framework
> usb: gadget: at91_udc: add usb_clk for transition to common clk
> framework
> ARM: at91/dt: move at91rm9200 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9260 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9263 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9g45 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9n12 SoC to new at91 clk implem
> ARM: at91/dt: move at91sam9x5 SoCs to new at91 clk implem
> ARM: at91/dt: move at91sam9g20 SoC to new at91 clk implem
> ARM: at91/dt: move sama5d3 SoCs to new at91 clk implem
> ARM: at91/dt: move sam9260/sam9g20 to new at91 clk implem
> ARM: at91/dt: move rm9200 boards to new at91 clk implem
> ARM: at91/dt: move sam9263 boards to new at91 clk implem
> ARM: at91/dt: move sam9g45 boards to new at91 clk implem
> ARM: at91/dt: move sam9n12 boards to new at91 clk implem
> ARM: at91/dt: move sam9x5 boards to new at91 clk implem
> ARM: at91/dt: move sama5d3 boards to new at91 clk implem
>
> .../devicetree/bindings/clock/at91-clock.txt | 262 ++++++
> arch/arm/boot/dts/animeo_ip.dts | 17 +-
> arch/arm/boot/dts/at91-ariag25.dts | 17 +-
> arch/arm/boot/dts/at91rm9200.dtsi | 231 +++++
> arch/arm/boot/dts/at91rm9200ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9260.dtsi | 236 +++++
> arch/arm/boot/dts/at91sam9263.dtsi | 237 +++++
> arch/arm/boot/dts/at91sam9263ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9g15.dtsi | 1 +
> arch/arm/boot/dts/at91sam9g20.dtsi | 37 +
> arch/arm/boot/dts/at91sam9g20ek_common.dtsi | 17 +-
> arch/arm/boot/dts/at91sam9g25.dtsi | 3 +
> arch/arm/boot/dts/at91sam9g35.dtsi | 2 +
> arch/arm/boot/dts/at91sam9g45.dtsi | 257 +++++
> arch/arm/boot/dts/at91sam9m10g45ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9n12.dtsi | 251 +++++
> arch/arm/boot/dts/at91sam9n12ek.dts | 17 +-
> arch/arm/boot/dts/at91sam9x25.dtsi | 25 +-
> arch/arm/boot/dts/at91sam9x35.dtsi | 3 +
> arch/arm/boot/dts/at91sam9x5.dtsi | 319 +++++--
> arch/arm/boot/dts/at91sam9x5_can.dtsi | 26 +
> arch/arm/boot/dts/at91sam9x5_isi.dtsi | 22 +
> arch/arm/boot/dts/at91sam9x5_lcdc.dtsi | 28 +
> arch/arm/boot/dts/at91sam9x5_macb0.dtsi | 66 ++
> arch/arm/boot/dts/at91sam9x5_macb1.dtsi | 54 ++
> arch/arm/boot/dts/at91sam9x5_usart3.dtsi | 58 ++
> arch/arm/boot/dts/ge863-pro3.dtsi | 16 +-
> arch/arm/boot/dts/kizbox.dts | 5 +
> arch/arm/boot/dts/mpa1600.dts | 16 +-
> arch/arm/boot/dts/pm9g45.dts | 16 +-
> arch/arm/boot/dts/sama5d3.dtsi | 510 ++++++----
> arch/arm/boot/dts/sama5d31ek.dts | 4 +
> arch/arm/boot/dts/sama5d33ek.dts | 2 +
> arch/arm/boot/dts/sama5d34ek.dts | 4 +
> arch/arm/boot/dts/sama5d35ek.dts | 6 +
> arch/arm/boot/dts/sama5d3_can.dtsi | 71 ++
> arch/arm/boot/dts/sama5d3_emac.dtsi | 54 ++
> arch/arm/boot/dts/sama5d3_gmac.dtsi | 87 ++
> arch/arm/boot/dts/sama5d3_lcd.dtsi | 69 ++
> arch/arm/boot/dts/sama5d3_mci2.dtsi | 57 ++
> arch/arm/boot/dts/sama5d3_tcb1.dtsi | 38 +
> arch/arm/boot/dts/sama5d3_uart.dtsi | 46 +
> arch/arm/boot/dts/sama5d3xcm.dtsi | 17 +-
> arch/arm/boot/dts/tny_a9260_common.dtsi | 17 +-
> arch/arm/boot/dts/tny_a9263.dts | 17 +-
> arch/arm/boot/dts/usb_a9260_common.dtsi | 17 +-
> arch/arm/boot/dts/usb_a9263.dts | 17 +-
> arch/arm/mach-at91/Kconfig | 26 +
> arch/arm/mach-at91/Makefile | 2 +-
> arch/arm/mach-at91/at91rm9200.c | 568 +++++++-----
> arch/arm/mach-at91/at91sam9260.c | 689 +++++++++-----
> arch/arm/mach-at91/at91sam9261.c | 572 ++++++++----
> arch/arm/mach-at91/at91sam9263.c | 595 +++++++-----
> arch/arm/mach-at91/at91sam926x_time.c | 21 +-
> arch/arm/mach-at91/at91sam9g45.c | 704 ++++++++------
> arch/arm/mach-at91/at91sam9g45_devices.c | 1 -
> arch/arm/mach-at91/at91sam9n12.c | 196 +---
> arch/arm/mach-at91/at91sam9rl.c | 502 ++++++----
> arch/arm/mach-at91/at91sam9x5.c | 293 +-----
> arch/arm/mach-at91/board-1arm.c | 12 +-
> arch/arm/mach-at91/board-afeb-9260v1.c | 11 +-
> arch/arm/mach-at91/board-cam60.c | 13 +-
> arch/arm/mach-at91/board-carmeva.c | 13 +-
> arch/arm/mach-at91/board-cpu9krea.c | 12 +-
> arch/arm/mach-at91/board-cpuat91.c | 12 +-
> arch/arm/mach-at91/board-csb337.c | 11 +-
> arch/arm/mach-at91/board-csb637.c | 11 +-
> arch/arm/mach-at91/board-dt-rm9200.c | 9 +-
> arch/arm/mach-at91/board-dt-sam9.c | 9 +-
> arch/arm/mach-at91/board-dt-sama5.c | 9 +-
> arch/arm/mach-at91/board-eb9200.c | 11 +-
> arch/arm/mach-at91/board-ecbat91.c | 12 +-
> arch/arm/mach-at91/board-eco920.c | 13 +-
> arch/arm/mach-at91/board-flexibity.c | 12 +-
> arch/arm/mach-at91/board-foxg20.c | 12 +-
> arch/arm/mach-at91/board-gsia18s.c | 8 +-
> arch/arm/mach-at91/board-kafa.c | 12 +-
> arch/arm/mach-at91/board-kb9202.c | 12 +-
> arch/arm/mach-at91/board-pcontrol-g20.c | 9 +-
> arch/arm/mach-at91/board-picotux200.c | 11 +-
> arch/arm/mach-at91/board-qil-a9260.c | 11 +-
> arch/arm/mach-at91/board-rm9200ek.c | 11 +-
> arch/arm/mach-at91/board-rsi-ews.c | 12 +-
> arch/arm/mach-at91/board-sam9-l9260.c | 11 +-
> arch/arm/mach-at91/board-sam9260ek.c | 11 +-
> arch/arm/mach-at91/board-sam9261ek.c | 15 +-
> arch/arm/mach-at91/board-sam9263ek.c | 11 +-
> arch/arm/mach-at91/board-sam9g20ek.c | 15 +-
> arch/arm/mach-at91/board-sam9m10g45ek.c | 11 +-
> arch/arm/mach-at91/board-sam9rlek.c | 11 +-
> arch/arm/mach-at91/board-snapper9260.c | 12 +-
> arch/arm/mach-at91/board-stamp9g20.c | 15 +-
> arch/arm/mach-at91/board-yl-9200.c | 12 +-
> arch/arm/mach-at91/clock.c | 977 --------------------
> arch/arm/mach-at91/clock.h | 49 -
> arch/arm/mach-at91/generic.h | 10 +-
> arch/arm/mach-at91/pm.c | 2 +-
> arch/arm/mach-at91/pm_slowclock.S | 2 +-
> arch/arm/mach-at91/pmc.c | 58 ++
> arch/arm/mach-at91/sama5d3.c | 344 +------
> arch/arm/mach-at91/setup.c | 38 +-
> arch/arm/mach-at91/stamp9g20.h | 2 +-
> drivers/clk/Makefile | 1 +
> drivers/clk/at91/Makefile | 11 +
> drivers/clk/at91/clk-main.c | 106 +++
> drivers/clk/at91/clk-master.c | 317 +++++++
> drivers/clk/at91/clk-peripheral.c | 371 ++++++++
> drivers/clk/at91/clk-pll.c | 438 +++++++++
> drivers/clk/at91/clk-plldiv.c | 125 +++
> drivers/clk/at91/clk-programmable.c | 368 ++++++++
> drivers/clk/at91/clk-smd.c | 157 ++++
> drivers/clk/at91/clk-system.c | 184 ++++
> drivers/clk/at91/clk-usb.c | 303 ++++++
> drivers/clk/at91/clk-utmi.c | 114 +++
> drivers/usb/gadget/at91_udc.c | 31 +-
> drivers/usb/gadget/at91_udc.h | 2 +-
> drivers/usb/gadget/atmel_usba_udc.c | 2 +-
> drivers/usb/host/ohci-at91.c | 16 +-
> .../mach/at91_pmc.h => include/linux/clk/at91.h | 116 ++-
> 119 files changed, 8193 insertions(+), 3835 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/at91-clock.txt
> create mode 100644 arch/arm/boot/dts/at91sam9x5_can.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_isi.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_lcdc.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_macb0.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_macb1.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9x5_usart3.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_can.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_emac.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_gmac.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_lcd.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_mci2.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_tcb1.dtsi
> create mode 100644 arch/arm/boot/dts/sama5d3_uart.dtsi
> delete mode 100644 arch/arm/mach-at91/clock.c
> delete mode 100644 arch/arm/mach-at91/clock.h
> create mode 100644 arch/arm/mach-at91/pmc.c
> create mode 100644 drivers/clk/at91/Makefile
> create mode 100644 drivers/clk/at91/clk-main.c
> create mode 100644 drivers/clk/at91/clk-master.c
> create mode 100644 drivers/clk/at91/clk-peripheral.c
> create mode 100644 drivers/clk/at91/clk-pll.c
> create mode 100644 drivers/clk/at91/clk-plldiv.c
> create mode 100644 drivers/clk/at91/clk-programmable.c
> create mode 100644 drivers/clk/at91/clk-smd.c
> create mode 100644 drivers/clk/at91/clk-system.c
> create mode 100644 drivers/clk/at91/clk-usb.c
> create mode 100644 drivers/clk/at91/clk-utmi.c
> rename arch/arm/mach-at91/include/mach/at91_pmc.h => include/linux/clk/at91.h (78%)
>
next prev parent reply other threads:[~2013-07-27 4:41 UTC|newest]
Thread overview: 129+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-17 13:34 [PATCH v2 00/42] ARM: at91: move to common clk framework Boris BREZILLON
2013-07-17 13:34 ` Boris BREZILLON
2013-07-17 13:37 ` [PATCH v2 01/42] ARM: at91: move at91_pmc.h to include/linux/clk/at91.h Boris BREZILLON
2013-07-17 13:37 ` Boris BREZILLON
2013-07-23 18:03 ` Jean-Christophe PLAGNIOL-VILLARD
2013-07-23 18:03 ` Jean-Christophe PLAGNIOL-VILLARD
2013-07-23 22:24 ` boris brezillon
2013-07-23 22:24 ` boris brezillon
2013-07-17 13:40 ` [PATCH v2 02/42] ARM: at91: add PMC main clock Boris BREZILLON
2013-07-17 13:40 ` Boris BREZILLON
2013-07-17 16:39 ` boris brezillon
2013-07-17 16:39 ` boris brezillon
2013-07-26 16:41 ` boris brezillon
2013-07-26 16:41 ` boris brezillon
2013-07-17 13:42 ` [PATCH v2 03/42] ARM: at91: add PMC pll clocks Boris BREZILLON
2013-07-17 13:42 ` Boris BREZILLON
2013-07-17 13:42 ` Boris BREZILLON
2013-07-17 13:44 ` [PATCH v2 04/42] ARM: at91: add PMC master clock Boris BREZILLON
2013-07-17 13:44 ` Boris BREZILLON
2013-07-17 13:45 ` [PATCH v2 05/42] ARM: at91: add PMC system clocks Boris BREZILLON
2013-07-17 13:45 ` Boris BREZILLON
2013-07-17 13:46 ` [PATCH v2 06/42] ARM: at91: add PMC peripheral clocks Boris BREZILLON
2013-07-17 13:46 ` Boris BREZILLON
2013-07-17 13:47 ` [PATCH v2 07/42] ARM: at91: add PMC programmable clocks Boris BREZILLON
2013-07-17 13:47 ` Boris BREZILLON
2013-07-17 13:50 ` [PATCH v2 08/42] ARM: at91: add PMC utmi clock Boris BREZILLON
2013-07-17 13:50 ` Boris BREZILLON
2013-07-17 13:52 ` [PATCH v2 09/42] ARM: at91: add PMC usb clock Boris BREZILLON
2013-07-17 13:52 ` Boris BREZILLON
2013-07-17 13:53 ` [PATCH v2 10/42] ARM: at91: add PMC smd clock Boris BREZILLON
2013-07-17 13:53 ` Boris BREZILLON
2013-07-17 13:55 ` [PATCH v2 11/42] ARM: at91: add PMC clk device tree binding doc Boris BREZILLON
2013-07-17 13:55 ` Boris BREZILLON
2013-07-17 14:35 ` [PATCH v2 12/42] ARM: at91: move to common clk framework Boris BREZILLON
2013-07-17 14:35 ` Boris BREZILLON
2013-07-17 14:41 ` [PATCH v2 13/42] ARM: at91: move at91rm9200 SoC to new at91 clk implem Boris BREZILLON
2013-07-17 14:41 ` Boris BREZILLON
2013-07-17 14:42 ` [PATCH v2 14/42] ARM: at91: move at91sam9260 " Boris BREZILLON
2013-07-17 14:42 ` Boris BREZILLON
2013-07-17 14:44 ` [PATCH v2 15/42] ARM: at91: move at91sam9261 " Boris BREZILLON
2013-07-17 14:44 ` Boris BREZILLON
2013-07-17 14:45 ` [PATCH v2 16/42] ARM: at91: move at91sam9263 " Boris BREZILLON
2013-07-17 14:45 ` Boris BREZILLON
2013-07-17 14:49 ` [PATCH v2 17/42] ARM: at91: move at91sam9g45 " Boris BREZILLON
2013-07-17 14:49 ` Boris BREZILLON
2013-07-23 22:29 ` boris brezillon
2013-07-23 22:29 ` boris brezillon
2013-07-17 14:49 ` [PATCH v2 18/42] ARM: at91: move at91sam9n12 " Boris BREZILLON
2013-07-17 14:49 ` Boris BREZILLON
2013-07-17 14:52 ` [PATCH v2 19/42] ARM: at91: move at91sam9rl " Boris BREZILLON
2013-07-17 14:52 ` Boris BREZILLON
2013-07-17 14:53 ` [PATCH v2 20/42] ARM: at91: move at91sam9x5 SoCs " Boris BREZILLON
2013-07-17 14:53 ` Boris BREZILLON
2013-07-17 14:59 ` [PATCH v2 21/42] ARM: at91: move at91sam9 " Boris BREZILLON
2013-07-17 14:59 ` Boris BREZILLON
2013-07-17 14:59 ` [PATCH v2 22/42] ARM: at91: move sama5d3 " Boris BREZILLON
2013-07-17 14:59 ` Boris BREZILLON
2013-07-17 15:00 ` [PATCH v2 23/42] ARM: at91: move at91rm9200 boards " Boris BREZILLON
2013-07-17 15:00 ` Boris BREZILLON
2013-07-17 15:37 ` [PATCH v2 24/42] ARM: at91: move at91sam9 " Boris BREZILLON
2013-07-17 15:37 ` Boris BREZILLON
2013-07-17 17:13 ` Russell King - ARM Linux
2013-07-17 17:13 ` Russell King - ARM Linux
2013-07-17 20:32 ` boris brezillon
2013-07-17 20:32 ` boris brezillon
2013-07-17 15:46 ` [PATCH v2 25/42] ARM: at91: move pit timer to common clk framework Boris BREZILLON
2013-07-17 15:46 ` Boris BREZILLON
2013-07-17 15:47 ` [PATCH v2 26/42] USB: ohci-at91: add usb_clk for transition " Boris BREZILLON
2013-07-17 15:47 ` Boris BREZILLON
2013-07-31 7:56 ` boris brezillon
2013-07-31 7:56 ` boris brezillon
2013-07-31 14:32 ` Alan Stern
2013-07-31 14:32 ` Alan Stern
2013-07-17 15:49 ` [PATCH v2 27/42] usb: gadget: at91_udc: " Boris BREZILLON
2013-07-17 15:49 ` Boris BREZILLON
2013-07-17 15:51 ` [PATCH v2 28/42] ARM: at91/dt: move at91rm9200 SoC to new at91 clk implem Boris BREZILLON
2013-07-17 15:51 ` Boris BREZILLON
2013-07-17 15:53 ` [PATCH v2 29/42] ARM: at91/dt: move at91sam9260 " Boris BREZILLON
2013-07-17 15:53 ` Boris BREZILLON
2013-07-17 15:55 ` [PATCH v2 30/42] ARM: at91/dt: move at91sam9263 " Boris BREZILLON
2013-07-17 15:55 ` Boris BREZILLON
2013-07-17 16:00 ` [PATCH v2 31/42] ARM: at91/dt: move at91sam9g45 " Boris BREZILLON
2013-07-17 16:00 ` Boris BREZILLON
2013-07-17 16:02 ` [PATCH v2 32/42] ARM: at91/dt: move at91sam9n12 " Boris BREZILLON
2013-07-17 16:02 ` Boris BREZILLON
2013-07-17 16:05 ` [PATCH v2 33/42] ARM: at91/dt: move at91sam9x5 SoCs " Boris BREZILLON
2013-07-17 16:05 ` Boris BREZILLON
2013-07-17 16:45 ` [PATCH v2 34/42] ARM: at91/dt: move at91sam9g20 SoC " Boris BREZILLON
2013-07-17 16:45 ` Boris BREZILLON
2013-07-17 16:50 ` [PATCH v2 35/42] ARM: at91/dt: move sama5d3 SoCs " Boris BREZILLON
2013-07-17 16:50 ` Boris BREZILLON
2013-07-17 20:06 ` [PATCH v2 36/42] ARM: at91/dt: move sam9260/sam9g20 " Boris BREZILLON
2013-07-17 20:06 ` Boris BREZILLON
2013-07-17 20:08 ` [PATCH v2 37/42] ARM: at91/dt: move rm9200 boards " Boris BREZILLON
2013-07-17 20:08 ` Boris BREZILLON
2013-07-17 20:09 ` [PATCH v2 38/42] ARM: at91/dt: move sam9263 " Boris BREZILLON
2013-07-17 20:09 ` Boris BREZILLON
2013-07-17 20:17 ` [PATCH v2 39/42] ARM: at91/dt: move sam9g45 " Boris BREZILLON
2013-07-17 20:17 ` Boris BREZILLON
2013-07-17 20:19 ` [PATCH v2 40/42] ARM: at91/dt: move sam9n12 " Boris BREZILLON
2013-07-17 20:19 ` Boris BREZILLON
2013-07-17 20:21 ` [PATCH v2 41/42] ARM: at91/dt: move sam9x5 " Boris BREZILLON
2013-07-17 20:21 ` Boris BREZILLON
2013-07-17 20:32 ` [PATCH v2 42/42] ARM: at91/dt: move sama5d3 " Boris BREZILLON
2013-07-17 20:32 ` Boris BREZILLON
2013-07-18 8:51 ` [PATCH v2 00/42] ARM: at91: move to common clk framework boris brezillon
2013-07-18 8:51 ` boris brezillon
2013-07-26 14:10 ` Richard Genoud
2013-07-26 14:10 ` Richard Genoud
2013-07-26 15:44 ` boris brezillon
2013-07-26 15:44 ` boris brezillon
2013-07-26 16:35 ` boris brezillon
2013-07-26 16:35 ` boris brezillon
2013-07-29 8:00 ` Richard Genoud
2013-07-29 8:00 ` Richard Genoud
2013-07-29 9:25 ` boris brezillon
2013-07-29 9:25 ` boris brezillon
2013-07-29 14:18 ` Richard Genoud
2013-07-29 14:18 ` Richard Genoud
2013-07-29 14:34 ` boris brezillon
2013-07-29 14:34 ` boris brezillon
2013-07-29 15:09 ` Richard Genoud
2013-07-29 15:09 ` Richard Genoud
2013-07-29 15:14 ` boris brezillon
2013-07-29 15:14 ` boris brezillon
2013-07-29 16:44 ` boris brezillon
2013-07-29 16:44 ` boris brezillon
2013-07-27 4:41 ` boris brezillon [this message]
2013-07-27 4:41 ` boris brezillon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51F34F8D.4000106@overkiz.com \
--to=b.brezillon@overkiz.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.