Re: [PATCH 58/75] ARM: l2c: omap2: remove cache size override

2014-03-31 Thread Russell King - ARM Linux
On Fri, Mar 28, 2014 at 03:21:59PM -0700, Tony Lindgren wrote: * Russell King - ARM Linux li...@arm.linux.org.uk [140328 14:13]: On Fri, Mar 28, 2014 at 09:03:59AM -0700, Tony Lindgren wrote: * Russell King rmk+ker...@arm.linux.org.uk [140328 08:22]: Missing description? No, I

[PATCH 00/55]: ARM: OMAP2+: PRCM move to drivers

2014-03-31 Thread Tero Kristo
Hi, This set is continuation for the work started earlier to cleanup the CM/PRM and attempt to make it a separate driver. This set depends on these two sets: CM/PRM cleanup set: http://marc.info/?l=linux-omapm=139395000918201w=2 OMAP2 clock DT set:

[PATCH 01/55] ARM: OMAP4: CM: use cm_base* in register address calculations

2014-03-31 Thread Tero Kristo
OMAP44XX_CM*_REGADDR macros should be avoided, instead use the cm_base* iomaps. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm44xx.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-omap2/cm44xx.c b/arch/arm/mach-omap2/cm44xx.c

[PATCH 06/55] ARM: OMAP3/4: PRM: add support of late_init call to prm_ll_ops

2014-03-31 Thread Tero Kristo
SoC specific late_init call is now registered during PRM init, and will be called automatically by PRM core. This helps to get rid of some redundant initcalls and cpu_is_X checks from the PRM code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm.h|2 ++

[PATCH 11/55] CLK: TI: clockdomain: add support for retrying init

2014-03-31 Thread Tero Kristo
Retry init is needed if clockdomains are registered before the corresponding clocks are ready. In this case, the clockdomain info is added to a list which will be processed once the clockdomains for next PRCM module are processed. Signed-off-by: Tero Kristo t-kri...@ti.com ---

[PATCH 14/55] ARM: OMAP2: CM: remove references to cm-regbits-24xx.h from CM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make CM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm2xxx.c | 19 ++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/cm2xxx.c b/arch/arm/mach-omap2/cm2xxx.c index

[PATCH 18/55] ARM: OMAP4: PRM: remove references to prm-regbits-44xx.h from PRM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm44xx.c | 33 - arch/arm/mach-omap2/prminst44xx.c |3 ++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git

[PATCH 07/55] ARM: OMAP3+: PRM: add cpu-type as parameter to prm_init calls

2014-03-31 Thread Tero Kristo
This helps to get rid of cpu_is_X checks from within the PRM driver. Done in preparation to make PRM a separate driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/io.c | 17 + arch/arm/mach-omap2/prm.h | 11 +++

[PATCH 09/55] ARM: OMAP4+: PRM: add prm_dev_inst offset as a global parameter

2014-03-31 Thread Tero Kristo
This is different for OMAP4, OMAP5 and DRA7, and is currently checked runtime with a cpu_is_X check. Replace this with an init time setting. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm.h |1 + arch/arm/mach-omap2/prm44xx.c | 20 +---

[PATCH 13/55] ARM: OMAP4: PRCM: remove references to cm-regbits-44xx.h from PRCM core files

2014-03-31 Thread Tero Kristo
Done in preparation to make PRCM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm44xx.c |1 - arch/arm/mach-omap2/cminst44xx.c |8 +++- arch/arm/mach-omap2/powerdomain-common.c |1 - 3 files changed, 7 insertions(+), 3

[PATCH 05/55] ARM: OMAP3/OMAP4: PRM: add prm_features flags and add IO wakeup under it

2014-03-31 Thread Tero Kristo
prm_features flag will contain SoC specific feature enabler flags. Initially IO wakeup is added under this. Helps to get rid of runtime cpu_is_X checks. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm.h|8 arch/arm/mach-omap2/prm3xxx.c|8

[PATCH 10/55] ARM: OMAP3+: PRM: get rid of some unnecessary header files

2014-03-31 Thread Tero Kristo
Done in preparation to make PRM a separate driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prcm-common.h |1 + arch/arm/mach-omap2/prm3xxx.c |4 +--- arch/arm/mach-omap2/prm44xx.c |5 ++--- arch/arm/mach-omap2/prm_common.c |2 --

[PATCH 02/55] ARM: OMAP2+: PRCM: cleanup some header includes

2014-03-31 Thread Tero Kristo
Some of the includes are totally unnecessary, remove some others in preparation to make the PRCM its own driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clockdomain.h |3 ++- arch/arm/mach-omap2/cm33xx.h |3 ---

[PATCH 15/55] ARM: AM33xx: CM: remove references to cm-regbits-33xx.h from CM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make CM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm33xx.c |9 - arch/arm/mach-omap2/cm33xx.h |1 - 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/cm33xx.c

[PATCH 12/55] ARM: PRCM: split PRCM module init to their own driver files

2014-03-31 Thread Tero Kristo
Previously this was done for all modules under prm_common.c. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm_common.c | 18 + arch/arm/mach-omap2/control.c | 15 +++ arch/arm/mach-omap2/control.h |1 + arch/arm/mach-omap2/io.c

[PATCH 04/55] ARM: OMAP3/4: PRM: provide io chain reconfig function through irq setup

2014-03-31 Thread Tero Kristo
This helps to make the PRM registration modular, and also gets rid of a cpu type check done later. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prcm-common.h |2 ++ arch/arm/mach-omap2/prm3xxx.c |1 + arch/arm/mach-omap2/prm44xx.c |1 +

[PATCH 16/55] ARM: OMAP2: PRM: remove references to prm-regbits-24xx.h from PRM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm2xxx.c | 16 +++- arch/arm/mach-omap2/prm2xxx_3xxx.c |1 - 2 files changed, 15 insertions(+), 2 deletions(-) diff --git

[PATCH 08/55] ARM: DRA7: PRM: add voltage processor check behind a prm_feature flag

2014-03-31 Thread Tero Kristo
This is done in attempt to get rid of cpu_is_X calls from the PRM core. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm.h |1 + arch/arm/mach-omap2/prm44xx.c |4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/prm.h

[PATCH 34/55] ARM: AM33XX: PRM: move parts of the prm33xx.h header file to public location

2014-03-31 Thread Tero Kristo
Parts of this file are needed from both the driver and mach-omap2 board code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/am33xx-restart.c |2 +- arch/arm/mach-omap2/cm33xx.c |3 ++- arch/arm/mach-omap2/prm33xx.c|3 ++-

[PATCH 39/55] ARM: OMAP5: PRM: remove direct register declaration macros

2014-03-31 Thread Tero Kristo
None of these are currently used, so cleanup. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm54xx.h | 18 -- 1 file changed, 18 deletions(-) diff --git a/arch/arm/mach-omap2/prm54xx.h b/arch/arm/mach-omap2/prm54xx.h index e441101..3f1b383 100644 ---

[PATCH 29/55] ARM: OMAP4: CM: rename cminst44xx.h to cm44xx.h and move it to public location

2014-03-31 Thread Tero Kristo
The new name follows the naming convention of the other public CM header files. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cminst44xx.c |2 +- arch/arm/mach-omap2/cminst44xx.h | 29 - arch/arm/mach-omap2/io.c |2 +-

[PATCH 31/55] ARM: OMAP2: export parts of prm2xxx.h header file

2014-03-31 Thread Tero Kristo
Some of these are shared between the PRM driver and mach-omap2 board code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm2xxx.c |4 +++- arch/arm/mach-omap2/prm2xxx.c |2 +- arch/arm/mach-omap2/prm2xxx.h | 20 +-

[PATCH 23/55] ARM: AM33xx: CM: move cm33xx.h header to a public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm33xx.c |2 +- arch/arm/mach-omap2/cm33xx.h | 50 +-- include/linux/power/omap/cm33xx.h | 68

[PATCH 27/55] ARM: OMAP4+: CM: remove unused cm_44xx_54xx.h header file

2014-03-31 Thread Tero Kristo
This is not used for anything, so removed. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm1_44xx.h |2 -- arch/arm/mach-omap2/cm1_54xx.h |2 -- arch/arm/mach-omap2/cm1_7xx.h |2 -- arch/arm/mach-omap2/cm2_44xx.h |2 --

[PATCH 20/55] ARM: OMAP3+: PRCM: remove references to cm-regbits-34xx.h from PRCM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRCM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm33xx.c |6 +- arch/arm/mach-omap2/cm3xxx.c |8 +++- arch/arm/mach-omap2/cminst44xx.c |6 +-

[PATCH 17/55] ARM: AM33xx: PRM: remove references to prm-regbits-33xx.h from PRM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm33xx.c |8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/prm33xx.c b/arch/arm/mach-omap2/prm33xx.c index 0660105..877d7c7

[PATCH 19/55] ARM: OMAP3: PRM: remove references to prm-regbits-34xx.h from PRM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm3xxx.c | 54 - 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/prm3xxx.c

[PATCH 26/55] ARM: OMAP3: move cm2xxx_3xxx.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clkt_iclk.c |2 +- arch/arm/mach-omap2/clock3xxx.c |2 +-

[PATCH 33/55] ARM: AM33xx: PRM: move global warm reset implementation to driver

2014-03-31 Thread Tero Kristo
Moved the implementation from am33xx-restart.c to the prm33xx.c file to isolate the PRM register accesses to be private for PRM driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/am33xx-restart.c |9 + arch/arm/mach-omap2/prm33xx.c| 16

[PATCH 48/55] ARM: OMAP2+: move prm.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cminst44xx.c |2 +- arch/arm/mach-omap2/cpuidle44xx.c|2 +- arch/arm/mach-omap2/display.c

[PATCH 28/55] ARM: OMAP4: CM: make all omap4_cminst_read/write calls static

2014-03-31 Thread Tero Kristo
These are not used outside the cminst44xx.c anymore, thus make them static. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cminst44xx.c | 23 +++ arch/arm/mach-omap2/cminst44xx.h | 14 -- 2 files changed, 11 insertions(+), 26 deletions(-)

[PATCH 30/55] ARM: OMAP2+: CM: move cm.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clock.c |2 +- arch/arm/mach-omap2/clock2xxx.c |2 +- arch/arm/mach-omap2/clockdomains33xx_data.c |2

[PATCH 32/55] ARM: OMAP2+: PRM: move prm2xxx_3xxx.h to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clock3xxx.c |2 +- arch/arm/mach-omap2/clockdomains2420_data.c |2 +-

[PATCH 44/55] ARM: OMAP4: PRM: make omap4_prm_read/write_inst_reg calls static

2014-03-31 Thread Tero Kristo
These are not (and should not be) used by anybody outside the PRM driver itself. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm44xx.c |6 +++--- arch/arm/mach-omap2/prm44xx_54xx.h |4 2 files changed, 3 insertions(+), 7 deletions(-) diff --git

[PATCH 22/55] ARM: OMAP2: CM: move cm2xxx.h header to a public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm2xxx.c |2 +- arch/arm/mach-omap2/cm2xxx.h | 52 +-- arch/arm/mach-omap2/cm_common.c |2 +-

[PATCH 21/55] ARM: OMAP2+: PRCM: remove references to clock.h from PRCM core code

2014-03-31 Thread Tero Kristo
Done in preparation to make PRCM a standalone driver. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clockdomain.c |1 - arch/arm/mach-omap2/clockdomain.h |2 +- arch/arm/mach-omap2/prcm-common.h |2 ++ arch/arm/mach-omap2/prm_common.c | 11 --- 4 files

[PATCH 25/55] ARM: OMAP4: CM: remove unnecessary cm44xx.h header file

2014-03-31 Thread Tero Kristo
Contains only two defines used by a single source code file, so move the definitions over and delete the file. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm44xx.h | 26 -- arch/arm/mach-omap2/cm_common.c |3 ++-

[PATCH 35/55] ARM: OMAP3: PRM: remove direct register declaration macros

2014-03-31 Thread Tero Kristo
Only a handful of these are currently used in the kernel, so cleanup. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cclock3xxx_data.c | 14 - arch/arm/mach-omap2/prm3xxx.h | 37 - 2 files changed, 9 insertions(+), 42

[PATCH 36/55] ARM: OMAP3: PRM: move prm3xxx.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm3xxx.c |2 +- arch/arm/mach-omap2/prm3xxx.h | 113 +- arch/arm/mach-omap2/prm_common.c |2

[PATCH 41/55] ARM: DRA7: PRM: remove direct register declaration macros

2014-03-31 Thread Tero Kristo
None of these are currently used, so cleanup. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm7xx.h | 77 -- 1 file changed, 77 deletions(-) diff --git a/arch/arm/mach-omap2/prm7xx.h b/arch/arm/mach-omap2/prm7xx.h index

[PATCH 37/55] ARM: OMAP4: PRM: remove direct register declaration macros

2014-03-31 Thread Tero Kristo
None of these are currently used, so cleanup. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm44xx.h | 318 - 1 file changed, 318 deletions(-) diff --git a/arch/arm/mach-omap2/prm44xx.h b/arch/arm/mach-omap2/prm44xx.h index

[PATCH 46/55] ARM: OMAP3+: VP: move OMAP*_VP_VDD_*_ID definitions to prm public headers

2014-03-31 Thread Tero Kristo
vp.h is not publicly available, however the PRM driver requires access to these so moved to prm public headers. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm3xxx.c |1 - arch/arm/mach-omap2/prm44xx.c |1 - arch/arm/mach-omap2/vp.h |9

[PATCH 49/55] ARM: OMAP4: move prcm44xx.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clockdomains43xx_data.c |1 - arch/arm/mach-omap2/clockdomains44xx_data.c |2 +- arch/arm/mach-omap2/clockdomains54xx_data.c |

[PATCH 53/55] ARM: OMAP4: CM: remove unnecessary cm*_44xx.h header files from core code

2014-03-31 Thread Tero Kristo
These are not needed for anything. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm44xx.c |2 -- arch/arm/mach-omap2/cminst44xx.c |2 -- 2 files changed, 4 deletions(-) diff --git a/arch/arm/mach-omap2/cm44xx.c b/arch/arm/mach-omap2/cm44xx.c index

[PATCH 43/55] ARM: OMAP4: PRM: get rid of prminst44xx.h header file

2014-03-31 Thread Tero Kristo
Only contains a few function prototypes, so move these to the public prm44xx.h header and remove the now unnecessary prminst44xx.h. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/io.c |1 - arch/arm/mach-omap2/omap-mpuss-lowpower.c |1 -

[PATCH 38/55] ARM: OMAP4: PRM: move parts of prm44xx.h header file to public location

2014-03-31 Thread Tero Kristo
Parts of this file are needed from both the driver and mach-omap2 board code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cminst44xx.c |3 +- arch/arm/mach-omap2/powerdomain.c |3 +- arch/arm/mach-omap2/prm44xx.c |2 +- arch/arm/mach-omap2/prm44xx.h

[PATCH 40/55] ARM: OMAP5: PRM: move parts of prm54xx.h header file to public location

2014-03-31 Thread Tero Kristo
Parts of this file are needed by both the driver and mach-omap2 board code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm44xx.c |2 +- arch/arm/mach-omap2/prm54xx.h | 371 +- arch/arm/mach-omap2/prminst44xx.c |2 +-

[PATCH 50/55] ARM: OMAP2+: clockdomain: move clockdomain.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clock.c |2 +- arch/arm/mach-omap2/clockdomain.c|3 +- arch/arm/mach-omap2/clockdomain.h

[PATCH 45/55] ARM: OMAP4: PRM: move prm44xx_54xx.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/prm44xx.c |2 +- arch/arm/mach-omap2/prm44xx.h |2 +- arch/arm/mach-omap2/prm44xx_54xx.h | 61

[PATCH 52/55] ARM: OMAP2+: PRCM: add prcm_base init call for DT boot

2014-03-31 Thread Tero Kristo
This parses the prm, cm and scrm base addresses from DT if available, avoiding the need for various omap2_set_globals_* calls. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm_common.c| 57 --- arch/arm/mach-omap2/control.c | 36

[PATCH 54/55] ARM: OMAP4: PRCM: move prcm_mpu_base definition to a public header

2014-03-31 Thread Tero Kristo
Needed from both PRCM core code and mach-omap2 board code. This gets rid of need to include the prcm_mpu_44xx_54xx.h header to the PRCM core code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cminst44xx.c |1 - arch/arm/mach-omap2/prcm_mpu_44xx_54xx.h |2 --

[PATCH 51/55] ARM: OMAP2+: powerdomain: move powerdomain.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/clockdomain.c|2 +- arch/arm/mach-omap2/cm2xxx.c |2 +- arch/arm/mach-omap2/cm3xxx.c

[PATCH 47/55] ARM: OMAP2+: PRM: move prcm-common.h header to public location

2014-03-31 Thread Tero Kristo
This file needs to be accessible from the PRCM core and mach-omap2 board support code. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm2xxx.c |2 +- arch/arm/mach-omap2/cm2xxx.h |2 +- arch/arm/mach-omap2/cm33xx.c

Re: [PATCH 01/55] ARM: OMAP4: CM: use cm_base* in register address calculations

2014-03-31 Thread Felipe Balbi
On Mon, Mar 31, 2014 at 06:15:40PM +0300, Tero Kristo wrote: OMAP44XX_CM*_REGADDR macros should be avoided, instead use the cm_base* iomaps. Signed-off-by: Tero Kristo t-kri...@ti.com --- arch/arm/mach-omap2/cm44xx.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff

Re: [PATCH 07/55] ARM: OMAP3+: PRM: add cpu-type as parameter to prm_init calls

2014-03-31 Thread Felipe Balbi
Hi, On Mon, Mar 31, 2014 at 06:15:46PM +0300, Tero Kristo wrote: diff --git a/arch/arm/mach-omap2/prm44xx_54xx.h b/arch/arm/mach-omap2/prm44xx_54xx.h index 8d95aa5..73734b2 100644 --- a/arch/arm/mach-omap2/prm44xx_54xx.h +++ b/arch/arm/mach-omap2/prm44xx_54xx.h @@ -57,7 +57,7 @@ extern

Re: [PATCH 00/55]: ARM: OMAP2+: PRCM move to drivers

2014-03-31 Thread Nishanth Menon
On 03/31/2014 10:15 AM, Tero Kristo wrote: Hi, This set is continuation for the work started earlier to cleanup the CM/PRM and attempt to make it a separate driver. This set depends on these two sets: CM/PRM cleanup set: http://marc.info/?l=linux-omapm=139395000918201w=2 OMAP2 clock

Re: [PATCH 00/55]: ARM: OMAP2+: PRCM move to drivers

2014-03-31 Thread Nishanth Menon
On 03/31/2014 11:47 AM, Nishanth Menon wrote: On 03/31/2014 10:15 AM, Tero Kristo wrote: Hi, This set is continuation for the work started earlier to cleanup the CM/PRM and attempt to make it a separate driver. This set depends on these two sets: CM/PRM cleanup set:

Re: [PATCH 00/55]: ARM: OMAP2+: PRCM move to drivers

2014-03-31 Thread Felipe Balbi
Hi, On Mon, Mar 31, 2014 at 06:15:39PM +0300, Tero Kristo wrote: This set is continuation for the work started earlier to cleanup the CM/PRM and attempt to make it a separate driver. This set depends on these two sets: CM/PRM cleanup set: http://marc.info/?l=linux-omapm=139395000918201w=2

Re: 3.1[34]: omap4: panda: hang on reboot?

2014-03-31 Thread Paolo Pisati
On Thu, Mar 27, 2014 at 06:54:14PM +0100, Paolo Pisati wrote: I've been experiencing hangs on reboot on two different panda boards (es rev1 and vanilla rev a1) with v3.14-rc8 (but reproducible in 3.13 too): toolchanin: gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu7) the config is a

Re: [PATCH 00/55]: ARM: OMAP2+: PRCM move to drivers

2014-03-31 Thread Tony Lindgren
* Tero Kristo t-kri...@ti.com [140331 08:20]: Hi, This set is continuation for the work started earlier to cleanup the CM/PRM and attempt to make it a separate driver. This set depends on these two sets: CM/PRM cleanup set: http://marc.info/?l=linux-omapm=139395000918201w=2 OMAP2

Re: [PATCHv4 0/7] omap hwspinlock dt support

2014-03-31 Thread Suman Anna
On 03/18/2014 08:35 AM, Ohad Ben-Cohen wrote: Hi Suman, On Tue, Mar 18, 2014 at 1:46 AM, Suman Anna s-a...@ti.com wrote: So far, we have not come across multiple controllers. I see your point, and I think this also depends on the semantics of how you exchange the lock id number. The