* [PATCH V7 1/3] clocksource: Add Kconfig entries for CMT, MTU2, TMU and STI
2014-02-20 11:54 [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Wolfram Sang
@ 2014-02-20 11:54 ` Wolfram Sang
2014-02-20 11:54 ` [PATCH V7 2/3] ARM: shmobile: Remove CMT, TMU and STI Kconfig entries Wolfram Sang
` (2 subsequent siblings)
3 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2014-02-20 11:54 UTC (permalink / raw)
To: linux-kernel
Cc: Magnus Damm, Cc: Wolfram Sang, khilman, arnd, linux-sh,
daniel.lezcano, horms, john.stultz, olof, Magnus Damm
From: Magnus Damm <damm@opensource.se>
Add Kconfig entries for CMT, MTU2, TMU and STI to
drivers/clocksource/Kconfig. This will allow us to
get rid of duplicated entires in architecture code
such as arch/sh and arch/arm/mach-shmobile.
Signed-off-by: Magnus Damm <damm@opensource.se>
[wsa: rebased to timers/core]
Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>
---
drivers/clocksource/Kconfig | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index cd6950f..4f754a9 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -140,3 +140,47 @@ config VF_PIT_TIMER
bool
help
Support for Period Interrupt Timer on Freescale Vybrid Family SoCs.
+
+config SYS_SUPPORTS_SH_CMT
+ bool
+
+config SYS_SUPPORTS_SH_MTU2
+ bool
+
+config SYS_SUPPORTS_SH_TMU
+ bool
+
+config SYS_SUPPORTS_EM_STI
+ bool
+
+config SH_TIMER_CMT
+ bool "Renesas CMT timer driver" if COMPILE_TEST
+ default SYS_SUPPORTS_SH_CMT
+ help
+ This enables build of a clocksource and clockevent driver for
+ the Compare Match Timer (CMT) hardware available in 16/32/48-bit
+ variants on a wide range of Mobile and Automotive SoCs from Renesas.
+
+config SH_TIMER_MTU2
+ bool "Renesas MTU2 timer driver" if COMPILE_TEST
+ default SYS_SUPPORTS_SH_MTU2
+ help
+ This enables build of a clockevent driver for the Multi-Function
+ Timer Pulse Unit 2 (TMU2) hardware available on SoCs from Renesas.
+ This hardware comes with 16 bit-timer registers.
+
+config SH_TIMER_TMU
+ bool "Renesas TMU timer driver" if COMPILE_TEST
+ default SYS_SUPPORTS_SH_TMU
+ help
+ This enables build of a clocksource and clockevent driver for
+ the 32-bit Timer Unit (TMU) hardware available on a wide range
+ SoCs from Renesas.
+
+config EM_TIMER_STI
+ bool "Renesas STI timer driver" if COMPILE_TEST
+ default SYS_SUPPORTS_EM_STI
+ help
+ This enables build of a clocksource and clockevent driver for
+ the 48-bit System Timer (STI) hardware available on a SoCs
+ such as EMEV2 from former NEC Electronics.
--
1.8.5.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH V7 2/3] ARM: shmobile: Remove CMT, TMU and STI Kconfig entries
2014-02-20 11:54 [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Wolfram Sang
2014-02-20 11:54 ` [PATCH V7 1/3] clocksource: Add Kconfig entries for CMT, MTU2, TMU and STI Wolfram Sang
@ 2014-02-20 11:54 ` Wolfram Sang
2014-02-20 11:54 ` [PATCH V7 3/3] sh: Remove Kconfig entries for TMU, CMT and MTU2 Wolfram Sang
2014-02-20 12:51 ` [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Daniel Lezcano
3 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2014-02-20 11:54 UTC (permalink / raw)
To: linux-kernel
Cc: Magnus Damm, Cc: Wolfram Sang, khilman, arnd, linux-sh,
daniel.lezcano, horms, john.stultz, olof, Magnus Damm
From: Magnus Damm <damm@opensource.se>
Now when drivers/clocksource/Kconfig has been
updated with entires for CMT, TMU, MTU2, and STI
it is safe to remove these from mach-shmobile.
Also select timers per SoC via SYS_SUPPORTS_xxx.
Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: John Stultz <john.stultz@linaro.org>
[wsa: rebased to timers/core]
Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>
---
arch/arm/mach-shmobile/Kconfig | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/arch/arm/mach-shmobile/Kconfig b/arch/arm/mach-shmobile/Kconfig
index 3386406..c1a9538 100644
--- a/arch/arm/mach-shmobile/Kconfig
+++ b/arch/arm/mach-shmobile/Kconfig
@@ -24,17 +24,21 @@ comment "Renesas ARM SoCs System Type"
config ARCH_EMEV2
bool "Emma Mobile EV2"
+ select SYS_SUPPORTS_EM_STI
config ARCH_R7S72100
bool "RZ/A1H (R7S72100)"
+ select SYS_SUPPORTS_SH_MTU2
config ARCH_R8A7790
bool "R-Car H2 (R8A77900)"
select RENESAS_IRQC
+ select SYS_SUPPORTS_SH_CMT
config ARCH_R8A7791
bool "R-Car M2 (R8A77910)"
select RENESAS_IRQC
+ select SYS_SUPPORTS_SH_CMT
comment "Renesas ARM SoCs Board Type"
@@ -68,6 +72,8 @@ config ARCH_SH7372
select ARM_CPU_SUSPEND if PM || CPU_IDLE
select CPU_V7
select SH_CLK_CPG
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_TMU
config ARCH_SH73A0
bool "SH-Mobile AG5 (R8A73A00)"
@@ -77,6 +83,8 @@ config ARCH_SH73A0
select I2C
select SH_CLK_CPG
select RENESAS_INTC_IRQPIN
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_TMU
config ARCH_R8A73A4
bool "R-Mobile APE6 (R8A73A40)"
@@ -87,6 +95,8 @@ config ARCH_R8A73A4
select RENESAS_IRQC
select ARCH_HAS_CPUFREQ
select ARCH_HAS_OPP
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_TMU
config ARCH_R8A7740
bool "R-Mobile A1 (R8A77400)"
@@ -95,6 +105,8 @@ config ARCH_R8A7740
select CPU_V7
select SH_CLK_CPG
select RENESAS_INTC_IRQPIN
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_TMU
config ARCH_R8A7778
bool "R-Car M1A (R8A77781)"
@@ -104,6 +116,7 @@ config ARCH_R8A7778
select ARM_GIC
select USB_ARCH_HAS_EHCI
select USB_ARCH_HAS_OHCI
+ select SYS_SUPPORTS_SH_TMU
config ARCH_R8A7779
bool "R-Car H1 (R8A77790)"
@@ -114,6 +127,7 @@ config ARCH_R8A7779
select USB_ARCH_HAS_EHCI
select USB_ARCH_HAS_OHCI
select RENESAS_INTC_IRQPIN
+ select SYS_SUPPORTS_SH_TMU
config ARCH_R8A7790
bool "R-Car H2 (R8A77900)"
@@ -123,6 +137,7 @@ config ARCH_R8A7790
select MIGHT_HAVE_PCI
select SH_CLK_CPG
select RENESAS_IRQC
+ select SYS_SUPPORTS_SH_CMT
config ARCH_R8A7791
bool "R-Car M2 (R8A77910)"
@@ -132,6 +147,7 @@ config ARCH_R8A7791
select MIGHT_HAVE_PCI
select SH_CLK_CPG
select RENESAS_IRQC
+ select SYS_SUPPORTS_SH_CMT
config ARCH_EMEV2
bool "Emma Mobile EV2"
@@ -141,6 +157,7 @@ config ARCH_EMEV2
select MIGHT_HAVE_PCI
select USE_OF
select AUTO_ZRELADDR
+ select SYS_SUPPORTS_EM_STI
config ARCH_R7S72100
bool "RZ/A1H (R7S72100)"
@@ -148,6 +165,7 @@ config ARCH_R7S72100
select ARM_GIC
select CPU_V7
select SH_CLK_CPG
+ select SYS_SUPPORTS_SH_MTU2
comment "Renesas ARM SoCs Board Type"
@@ -321,24 +339,6 @@ config SHMOBILE_TIMER_HZ
want to select a HZ value such as 128 that can evenly divide RCLK.
A HZ value that does not divide evenly may cause timer drift.
-config SH_TIMER_CMT
- bool "CMT timer driver"
- default y
- help
- This enables build of the CMT timer driver.
-
-config SH_TIMER_TMU
- bool "TMU timer driver"
- default y
- help
- This enables build of the TMU timer driver.
-
-config EM_TIMER_STI
- bool "STI timer driver"
- default y
- help
- This enables build of the STI timer driver.
-
endmenu
endif
--
1.8.5.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH V7 3/3] sh: Remove Kconfig entries for TMU, CMT and MTU2
2014-02-20 11:54 [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Wolfram Sang
2014-02-20 11:54 ` [PATCH V7 1/3] clocksource: Add Kconfig entries for CMT, MTU2, TMU and STI Wolfram Sang
2014-02-20 11:54 ` [PATCH V7 2/3] ARM: shmobile: Remove CMT, TMU and STI Kconfig entries Wolfram Sang
@ 2014-02-20 11:54 ` Wolfram Sang
2014-02-20 12:51 ` [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Daniel Lezcano
3 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2014-02-20 11:54 UTC (permalink / raw)
To: linux-kernel
Cc: Magnus Damm, Cc: Wolfram Sang, khilman, arnd, linux-sh,
daniel.lezcano, horms, john.stultz, olof, Magnus Damm
From: Magnus Damm <damm@opensource.se>
Now when drivers/clocksource/Kconfig has been
updated with entires for CMT, TMU and MTU2
it is safe to remove these from SH.
Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: John Stultz <john.stultz@linaro.org>
[wsa: rebased to timers/core]
Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>
---
arch/sh/Kconfig | 76 +++++++++++++++++----------------------------------------
1 file changed, 23 insertions(+), 53 deletions(-)
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index 6357710..364d204 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -123,15 +123,6 @@ config SYS_SUPPORTS_NUMA
config SYS_SUPPORTS_PCI
bool
-config SYS_SUPPORTS_CMT
- bool
-
-config SYS_SUPPORTS_MTU2
- bool
-
-config SYS_SUPPORTS_TMU
- bool
-
config STACKTRACE_SUPPORT
def_bool y
@@ -191,14 +182,14 @@ config CPU_SH3
bool
select CPU_HAS_INTEVT
select CPU_HAS_SR_RB
- select SYS_SUPPORTS_TMU
+ select SYS_SUPPORTS_SH_TMU
config CPU_SH4
bool
select CPU_HAS_INTEVT
select CPU_HAS_SR_RB
select CPU_HAS_FPU if !CPU_SH4AL_DSP
- select SYS_SUPPORTS_TMU
+ select SYS_SUPPORTS_SH_TMU
select SYS_SUPPORTS_HUGETLBFS if MMU
config CPU_SH4A
@@ -213,7 +204,7 @@ config CPU_SH4AL_DSP
config CPU_SH5
bool
select CPU_HAS_FPU
- select SYS_SUPPORTS_TMU
+ select SYS_SUPPORTS_SH_TMU
select SYS_SUPPORTS_HUGETLBFS if MMU
config CPU_SHX2
@@ -250,7 +241,7 @@ choice
config CPU_SUBTYPE_SH7619
bool "Support SH7619 processor"
select CPU_SH2
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
# SH-2A Processor Support
@@ -258,50 +249,50 @@ config CPU_SUBTYPE_SH7201
bool "Support SH7201 processor"
select CPU_SH2A
select CPU_HAS_FPU
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_MTU2
config CPU_SUBTYPE_SH7203
bool "Support SH7203 processor"
select CPU_SH2A
select CPU_HAS_FPU
- select SYS_SUPPORTS_CMT
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_MTU2
select ARCH_WANT_OPTIONAL_GPIOLIB
select PINCTRL
config CPU_SUBTYPE_SH7206
bool "Support SH7206 processor"
select CPU_SH2A
- select SYS_SUPPORTS_CMT
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_MTU2
config CPU_SUBTYPE_SH7263
bool "Support SH7263 processor"
select CPU_SH2A
select CPU_HAS_FPU
- select SYS_SUPPORTS_CMT
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_MTU2
config CPU_SUBTYPE_SH7264
bool "Support SH7264 processor"
select CPU_SH2A
select CPU_HAS_FPU
- select SYS_SUPPORTS_CMT
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_MTU2
select PINCTRL
config CPU_SUBTYPE_SH7269
bool "Support SH7269 processor"
select CPU_SH2A
select CPU_HAS_FPU
- select SYS_SUPPORTS_CMT
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_CMT
+ select SYS_SUPPORTS_SH_MTU2
select PINCTRL
config CPU_SUBTYPE_MXG
bool "Support MX-G processor"
select CPU_SH2A
- select SYS_SUPPORTS_MTU2
+ select SYS_SUPPORTS_SH_MTU2
help
Select MX-G if running on an R8A03022BG part.
@@ -354,7 +345,7 @@ config CPU_SUBTYPE_SH7720
bool "Support SH7720 processor"
select CPU_SH3
select CPU_HAS_DSP
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
select ARCH_WANT_OPTIONAL_GPIOLIB
select USB_ARCH_HAS_OHCI
select USB_OHCI_SH if USB_OHCI_HCD
@@ -366,7 +357,7 @@ config CPU_SUBTYPE_SH7721
bool "Support SH7721 processor"
select CPU_SH3
select CPU_HAS_DSP
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
select USB_ARCH_HAS_OHCI
select USB_OHCI_SH if USB_OHCI_HCD
help
@@ -422,7 +413,7 @@ config CPU_SUBTYPE_SH7723
select CPU_SHX2
select ARCH_SHMOBILE
select ARCH_SPARSEMEM_ENABLE
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
select ARCH_WANT_OPTIONAL_GPIOLIB
select PINCTRL
help
@@ -434,7 +425,7 @@ config CPU_SUBTYPE_SH7724
select CPU_SHX2
select ARCH_SHMOBILE
select ARCH_SPARSEMEM_ENABLE
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
select ARCH_WANT_OPTIONAL_GPIOLIB
select PINCTRL
help
@@ -514,7 +505,7 @@ config CPU_SUBTYPE_SH7343
bool "Support SH7343 processor"
select CPU_SH4AL_DSP
select ARCH_SHMOBILE
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
config CPU_SUBTYPE_SH7722
bool "Support SH7722 processor"
@@ -523,7 +514,7 @@ config CPU_SUBTYPE_SH7722
select ARCH_SHMOBILE
select ARCH_SPARSEMEM_ENABLE
select SYS_SUPPORTS_NUMA
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
select ARCH_WANT_OPTIONAL_GPIOLIB
select PINCTRL
@@ -534,7 +525,7 @@ config CPU_SUBTYPE_SH7366
select ARCH_SHMOBILE
select ARCH_SPARSEMEM_ENABLE
select SYS_SUPPORTS_NUMA
- select SYS_SUPPORTS_CMT
+ select SYS_SUPPORTS_SH_CMT
endchoice
@@ -567,27 +558,6 @@ source "arch/sh/boards/Kconfig"
menu "Timer and clock configuration"
-config SH_TIMER_TMU
- bool "TMU timer driver"
- depends on SYS_SUPPORTS_TMU
- default y
- help
- This enables the build of the TMU timer driver.
-
-config SH_TIMER_CMT
- bool "CMT timer driver"
- depends on SYS_SUPPORTS_CMT
- default y
- help
- This enables build of the CMT timer driver.
-
-config SH_TIMER_MTU2
- bool "MTU2 timer driver"
- depends on SYS_SUPPORTS_MTU2
- default y
- help
- This enables build of the MTU2 timer driver.
-
config SH_PCLK_FREQ
int "Peripheral clock frequency (in Hz)"
depends on SH_CLK_CPG_LEGACY
--
1.8.5.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits
2014-02-20 11:54 [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Wolfram Sang
` (2 preceding siblings ...)
2014-02-20 11:54 ` [PATCH V7 3/3] sh: Remove Kconfig entries for TMU, CMT and MTU2 Wolfram Sang
@ 2014-02-20 12:51 ` Daniel Lezcano
2014-03-07 15:45 ` Wolfram Sang
3 siblings, 1 reply; 7+ messages in thread
From: Daniel Lezcano @ 2014-02-20 12:51 UTC (permalink / raw)
To: Wolfram Sang, linux-kernel
Cc: khilman, arnd, linux-sh, horms, john.stultz, olof, Magnus Damm
On 02/20/2014 12:54 PM, Wolfram Sang wrote:
> This is V7 of the SH and ARM mach-shmobile clocksource Kconfig consolidation
> series. It is a rebased version of V5 on top of timers/core. This series is not
> just an optimization, it also makes it possible to enable the clocksource for
> the r7s72100 platform. I successfully tested the patches on r7s72100 and
> r8a7791 platforms. The branch can be found here:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/rework-clock-config-for-daniel
Thanks Wolfram,
applied to my tree for 3.15
-- Daniel
> Changes since V6:
>
> - rebased on top timers/core
>
> Changes since V5:
>
> - rebased on top of renesas-devel-v3.14-rc3-20140217
>
> Signed-off-by: Wolfram Sang <wsa@sang-engineering.com>
>
>
> == original cover letter
>
> By sharing Kconfig entires in drivers/clocksource/Kconfig we
> can get rid of duplicated bits that do not belong under arch/.
>
> With this series applied it is possible to build the timer
> drivers for CMT, MTU2, TMU and STI in case of SH or ARM. The timer
> drivers are automatically selected by default. It is also possible
> to select and/or deselect freely when COMPILE_TEST has been selected.
>
> Many thanks to Olof, John, Daniel and Arnd for feedback!
>
> Changes since V4:
> - Use SYS_SUPPORTS_SH/EM to avoid name space pollution, thanks Olof!
> - Remove old SH entries for SYS_SUPPORTS_xxx, use above SH prefix instead
>
> Changes since V3:
> - Updated patch 1/3 with more detailed help texts
> - Updated patch 2/3 to fit latest renesas-devel tag, see below
> - Included acks from John Stultz for patch 2/3 and 3/3
>
> Signed-off-by: Magnus Damm <damm@opensource.se>
>
>
> Magnus Damm (3):
> clocksource: Add Kconfig entries for CMT, MTU2, TMU and STI
> ARM: shmobile: Remove CMT, TMU and STI Kconfig entries
> sh: Remove Kconfig entries for TMU, CMT and MTU2
>
> arch/arm/mach-shmobile/Kconfig | 36 ++++++++++----------
> arch/sh/Kconfig | 76 +++++++++++++-----------------------------
> drivers/clocksource/Kconfig | 44 ++++++++++++++++++++++++
> 3 files changed, 85 insertions(+), 71 deletions(-)
>
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits
2014-02-20 12:51 ` [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits Daniel Lezcano
@ 2014-03-07 15:45 ` Wolfram Sang
2014-03-11 21:55 ` Daniel Lezcano
0 siblings, 1 reply; 7+ messages in thread
From: Wolfram Sang @ 2014-03-07 15:45 UTC (permalink / raw)
To: Daniel Lezcano
Cc: linux-kernel, khilman, arnd, linux-sh, horms, john.stultz, olof,
Magnus Damm
[-- Attachment #1: Type: text/plain, Size: 755 bytes --]
Hi Daniel,
On Thu, Feb 20, 2014 at 01:51:44PM +0100, Daniel Lezcano wrote:
> On 02/20/2014 12:54 PM, Wolfram Sang wrote:
> >This is V7 of the SH and ARM mach-shmobile clocksource Kconfig consolidation
> >series. It is a rebased version of V5 on top of timers/core. This series is not
> >just an optimization, it also makes it possible to enable the clocksource for
> >the r7s72100 platform. I successfully tested the patches on r7s72100 and
> >r8a7791 platforms. The branch can be found here:
> >
> >git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/rework-clock-config-for-daniel
>
> Thanks Wolfram,
>
> applied to my tree for 3.15
I see the patches in your tree, but not in linux-next?
Regards,
Wolfram
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH V7 0/3] clocksource: Consolidate SH and ARM mach-shmobile Kconfig bits
2014-03-07 15:45 ` Wolfram Sang
@ 2014-03-11 21:55 ` Daniel Lezcano
0 siblings, 0 replies; 7+ messages in thread
From: Daniel Lezcano @ 2014-03-11 21:55 UTC (permalink / raw)
To: Wolfram Sang
Cc: linux-kernel, khilman, arnd, linux-sh, horms, john.stultz, olof,
Magnus Damm
On 03/07/2014 04:45 PM, Wolfram Sang wrote:
> Hi Daniel,
>
> On Thu, Feb 20, 2014 at 01:51:44PM +0100, Daniel Lezcano wrote:
>> On 02/20/2014 12:54 PM, Wolfram Sang wrote:
>>> This is V7 of the SH and ARM mach-shmobile clocksource Kconfig consolidation
>>> series. It is a rebased version of V5 on top of timers/core. This series is not
>>> just an optimization, it also makes it possible to enable the clocksource for
>>> the r7s72100 platform. I successfully tested the patches on r7s72100 and
>>> r8a7791 platforms. The branch can be found here:
>>>
>>> git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git renesas/rework-clock-config-for-daniel
>>
>> Thanks Wolfram,
>>
>> applied to my tree for 3.15
>
> I see the patches in your tree, but not in linux-next?
Hi,
I updated my next branch and pushed it in my repo.
-- Daniel
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
^ permalink raw reply [flat|nested] 7+ messages in thread