[PATCH 2/3] ARM: EXYNOS4: Add clock for Exynos4210 asv feature

2011-11-10 Thread Jongpill Lee
This patch adds clock for exynos4210 asv feature which name is sclk_pwi,sclk_hpm,dout_copy. These clock is used for HPM devices. Also These clock is always on. Signed-off-by: Jongpill Lee --- arch/arm/mach-exynos4/clock.c | 35 ++- 1 files changed, 34 insertions

[PATCH V2 0/3] ASV support for Exynos4 series

2011-11-10 Thread Jongpill Lee
Each SoC has specification.For example voltage or ids current. These values are related to production process. If you have a good specification SoC, you can supply lower voltage into SoC. Also, If your SoC has bad specification, you have to supply higher voltage into SoC. So, after get these SoC s

[PATCH 1/3] ARM: EXYNOS4: Add ASV feature for Exynos4 series

2011-11-10 Thread Jongpill Lee
This patch adds ASV feature for exynos4 series. ASV(Adaptive support voltage) feature support to get spec of SoC. And we can use to adjust voltage for operation SoC using by ASV result. Signed-off-by: Jongpill Lee --- arch/arm/mach-exynos4/Makefile |1 + arch/arm/mach-exynos4/asv.c

[PATCH 3/3] ARM: EXYNOS4: Support ASV for Exynos4210

2011-11-10 Thread Jongpill Lee
This patch adds function for exynos4210's asv driver. On Exynos4210, we can get ASV result using by HPM and IDS value. If you want to use asv result on your driver, please define exynos_result_of_asv with extern. Signed-off-by: Jongpill Lee --- arch/arm/mach-exynos4/Makefile |

Re: [PATCH] DMA: PL330: Fix build warning

2011-11-10 Thread Vinod Koul
On Thu, 2011-11-03 at 15:48 +0900, Boojin Kim wrote: > This patch adds to fix the build warning as following. > > drivers/dma/pl330.c: In function 'pl330_probe': > drivers/dma/pl330.c:859: warning: comparison of distinct pointer types lacks > a cast > > Signed-off-by: Boojin Kim > --- > driver

Re: [PATCH] DMA: PL330: Fix build warning

2011-11-10 Thread Joe Perches
On Thu, 2011-11-10 at 15:14 +0530, Vinod Koul wrote: > On Thu, 2011-11-03 at 15:48 +0900, Boojin Kim wrote: > > This patch adds to fix the build warning as following. > > > > drivers/dma/pl330.c: In function 'pl330_probe': > > drivers/dma/pl330.c:859: warning: comparison of distinct pointer types

[PATCH 2/2] MAINTAINERS: Extend Samsung patterns to cover SPI and ASoC drivers

2011-11-10 Thread Mark Brown
Help people find the overall architecture. Signed-off-by: Mark Brown --- MAINTAINERS |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index a21d4fb..9eca526 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1054,6 +1054,8 @@ F:arch/arm/plat

[PATCH 1/2] MAINTAINERS: Add linux-samsung-soc mailing list for Samsung

2011-11-10 Thread Mark Brown
There's a Samsung-specific mailing list but it's not advertised in MAINTAINERS - add it to the overall architecture to make it more discoverable. Signed-off-by: Mark Brown --- MAINTAINERS |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index c18

RE: [PATCH 2/2] mmc: core: Support packed command for eMMC4.5 device

2011-11-10 Thread merez
On Thu, Nov 10, 2011 Maya Erez wrote: > S, Venkatraman wrote: >> On Thu, Nov 3, 2011 at 7:23 AM, Seungwon Jeon wrote: >> >> > +static u8 mmc_blk_chk_packable(struct mmc_queue *mq, struct >> request *req) The function prepares the checkable list and not only checks if packing is possible, therefo

Re: [PATCHv4 07/13] ARM: s3c64xx: convert to MULTI_IRQ_HANDLER

2011-11-10 Thread Jamie Iles
On Wed, Nov 09, 2011 at 06:00:20PM +0530, Thomas Abraham wrote: > On 9 November 2011 17:24, Jamie Iles wrote: > > On Wed, Nov 09, 2011 at 04:55:06PM +0530, Thomas Abraham wrote: > >> Hi Jamie, > >> > >> On 4 November 2011 06:40, Jamie Iles wrote: > >> > Now that there is a generic IRQ handler for

Re: s3c2440 / s3c2416 broken

2011-11-10 Thread Paul Schilling
Here is my boot log including some u-boot stuff. The trace in my boot log is concerning a still broken GPIO bank M access that appears broken. Thanks, Paul Schilling dm9000 i/o: 0x2300, id: 0x9a46 DM9000: running in 16 bit mode MAC: 12:23:34:88:99:00 BOOTP broadcast 1 BOOTP broadcast

Re: [PATCHv4 07/13] ARM: s3c64xx: convert to MULTI_IRQ_HANDLER

2011-11-10 Thread Thomas Abraham
On 10 November 2011 20:23, Jamie Iles wrote: > On Wed, Nov 09, 2011 at 06:00:20PM +0530, Thomas Abraham wrote: >> On 9 November 2011 17:24, Jamie Iles wrote: >> > On Wed, Nov 09, 2011 at 04:55:06PM +0530, Thomas Abraham wrote: >> >> Hi Jamie, >> >> >> >> On 4 November 2011 06:40, Jamie Iles wrot

Re: s3c2440 / s3c2416 broken

2011-11-10 Thread Thomas Abraham
Hi Paul, On 10 November 2011 21:27, Paul Schilling wrote: > Here is my boot log including some u-boot stuff.  The trace in my boot > log is concerning a > still broken GPIO bank M access that appears broken. Thanks for the log. But I could find out the cause of this issue. I will check again tom

[PATCH] ARM: OMAP: Introduce local common.h files

2011-11-10 Thread Tony Lindgren
As suggested by Russell King - ARM Linux , there's no need to keep local prototypes in non-local headers. Add mach-omap1/common.h and mach-omap2/common.h and move the local prototypes there from plat/common.h and mach/omap4-common.h. Signed-off-by: Tony Lindgren diff --git a/arch/arm/mach-omap1

Re: [PATCH] ARM: OMAP: Introduce local common.h files

2011-11-10 Thread Russell King - ARM Linux
On Thu, Nov 10, 2011 at 12:17:19PM -0800, Tony Lindgren wrote: > As suggested by Russell King - ARM Linux , > there's no need to keep local prototypes in non-local headers. > > Add mach-omap1/common.h and mach-omap2/common.h and move the > local prototypes there from plat/common.h and mach/omap4-c

Re: [PATCH] ARM: OMAP: Introduce local common.h files

2011-11-10 Thread Tony Lindgren
* Russell King - ARM Linux [10 11:49]: > On Thu, Nov 10, 2011 at 12:17:19PM -0800, Tony Lindgren wrote: > > As suggested by Russell King - ARM Linux , > > there's no need to keep local prototypes in non-local headers. > > > > Add mach-omap1/common.h and mach-omap2/common.h and move the > > lo

Re: [PATCH] ARM: OMAP: Introduce local common.h files

2011-11-10 Thread Russell King - ARM Linux
On Thu, Nov 10, 2011 at 01:50:09PM -0800, Tony Lindgren wrote: > * Russell King - ARM Linux [10 11:49]: > > On Thu, Nov 10, 2011 at 12:17:19PM -0800, Tony Lindgren wrote: > > > As suggested by Russell King - ARM Linux , > > > there's no need to keep local prototypes in non-local headers. > > >

Re: [PATCH] ARM: OMAP: Introduce local common.h files

2011-11-10 Thread Tony Lindgren
* Russell King - ARM Linux [10 13:54]: > On Thu, Nov 10, 2011 at 01:50:09PM -0800, Tony Lindgren wrote: > > * Russell King - ARM Linux [10 11:49]: > > > > OK, a stable branch is needed badly for this.. If possible please > > publish some minimal stable base branch as soon as you can as p

Re: Pet Peaves about Platform code, and arch_reset

2011-11-10 Thread Shawn Guo
On Wed, Nov 09, 2011 at 01:46:52PM -0800, Tony Lindgren wrote: > * Tony Lindgren [07 16:11]: > > * Russell King - ARM Linux [06 05:18]: > > > Here's a list of my peaves about current platform code - which are > > > causing me great issue when trying to clean up the arch_reset() stuff: > >

Re: [PATCH 3/3] ARM: EXYNOS4: Support ASV for Exynos4210

2011-11-10 Thread MyungJoo Ham
On Thu, Nov 10, 2011 at 2:48 PM, Jongpill Lee wrote: > This patch adds function for exynos4210's asv driver. > On Exynos4210, we can get ASV result using by HPM and IDS value. > If you want to use asv result on your driver, please define > exynos_result_of_asv with extern. Thank you! Looks much b

Re: [PATCH 4/4] ARM: exynos4: remove useless code to save/restore L2 and GIC state

2011-11-10 Thread Amit Kachhap
On 4 November 2011 23:03, Sylwester Nawrocki wrote: > On 11/04/2011 06:03 PM, amit.kach...@linaro.org wrote: >> From: Amit Daniel Kachhap >> >> Following the merge of CPU PM notifiers and L2 resume code, this patch >> removes useless code to save and restore L2 and GIC registers. >> >> This is no

[PATCH V2 0/5] ARM: exynos4: Add l2 retention mode cpuidle state

2011-11-10 Thread Amit Daniel Kachhap
Changes since V1: *rebased the whole patch against 3.2-rc1 tree *removed GIC save/restore in AFTR cpuidle state as it is external to cpu powerdomain *Added L2 setup code through device tree *Removed only l2 save/restore registers in sleep This Patch series adds support for AFTR mode cpuidle state

[PATCH V2 1/5] ARM: exynos4: Add support for AFTR mode cpuidle state

2011-11-10 Thread Amit Daniel Kachhap
This patch adds support for AFTR(ARM OFF TOP RUNNING) mode in cpuidle driver for EXYNOS4210. L2 cache keeps their data in this mode. This patch adds the code to the latest interfaces to save/restore CPU state inclusive of CPU PM notifiers, l2 resume and cpu_suspend/resume. Signed-off-by: Jaecheol

[PATCH V2 2/5] ARM: exynos4: remove useless churn in sleep.S

2011-11-10 Thread Amit Daniel Kachhap
This patch cleans up sleep code in preparation for L2 resume code and hotplug functions Signed-off-by: Lorenzo Pieralisi Signed-off-by: Amit Daniel Kachhap --- arch/arm/plat-s5p/sleep.S |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-s5p/sleep.S b/arch/

[PATCH V2 4/5] ARM: exynos4: remove useless code to save/restore L2

2011-11-10 Thread Amit Daniel Kachhap
Following the merge of CPU PM notifiers and L2 resume code, this patch removes useless code to save and restore L2 registers. This is now automatically covered by suspend calls which integrated CPU PM notifiers and new sleep code that allows to resume L2 before MMU is turned on. Signed-off-by: Lo

[PATCH V2 5/5] ARM: exynos4: Enable l2 configuration through device tree

2011-11-10 Thread Amit Daniel Kachhap
This patch enables calling generic l2 setup functions if device tree is used. Signed-off-by: Amit Daniel Kachhap --- arch/arm/mach-exynos/cpu.c | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-exynos/cpu.c b/arch/arm/mach-exynos/cpu.c index 252e3

[PATCH V2 3/5] ARM: exynos4: add L2 early resume code

2011-11-10 Thread Amit Daniel Kachhap
This patch adds code to save L2 register configuration at boot, and to resume L2 before MMU is enabled in suspend and cpuidle resume paths. Signed-off-by: Lorenzo Pieralisi Signed-off-by: Amit Daniel Kachhap --- arch/arm/mach-exynos/cpu.c | 42 +++--- arch/

Re: [PATCHv2 1/2] arm: samsung: support the second capability for samsung-soc

2011-11-10 Thread Jae hoon Chung
Hi kgene How about this patch? this patch must add the platform data. Thanks, Jaehoon Chung 2011/11/3 Jaehoon Chung : > In mmc, there are capabilities and use the host_caps. > That capability is expressed with bit[0:31]. > But now..already filled the bit[0:31]... > so we need to denote with the

RE: [PATCH 2/2] mmc: core: Support packed command for eMMC4.5 device

2011-11-10 Thread Seungwon Jeon
Maya Erez wrote: > On Thu, Nov 10, 2011 Maya Erez wrote: > > S, Venkatraman wrote: > >> On Thu, Nov 3, 2011 at 7:23 AM, Seungwon Jeon > wrote: > >> >> > +static u8 mmc_blk_chk_packable(struct mmc_queue *mq, struct > >> request *req) > > The function prepares the checkable list and not only check

Re: [PATCH 1/4] ARM: exynos4: Add support for AFTR mode cpuidle state

2011-11-10 Thread MyungJoo Ham
On Sat, Nov 5, 2011 at 2:03 AM, wrote: > From: Amit Daniel Kachhap > > This patch adds support for AFTR(ARM OFF TOP RUNNING) mode in > cpuidle driver for EXYNOS4210. L2 cache keeps their data in this mode. > This patch ports the code to the latest interfaces to > save/restore CPU state inclusive