Re: samsung chromebook 2: booting without ctrl-U

2015-11-19 Thread Kevin Hilman
Steve Muckle writes: > Does anyone have instructions on modding the chromebook 2 Peach Pi such > that it is not necessary to hit ctrl-U when booting custom kernels? I > found some instructions (which may be incomplete) for the SS Chromebook > "snow" suggesting it may be possible. I don't know of

Re: automated build coverage

2013-05-20 Thread Kevin Hilman
Fathi Boudra writes: > On 18 May 2013 04:06, Kevin Hilman wrote: >> Fathi Boudra writes: >> >> [...] >> >>>> Is there a way for us (linaro folks) to see more of the Jenkins setup >>>> for these jobs (including the scripts.) There appears to

Re: automated build coverage

2013-05-17 Thread Kevin Hilman
Fathi Boudra writes: [...] >> Is there a way for us (linaro folks) to see more of the Jenkins setup >> for these jobs (including the scripts.) There appears to be some useful >> add-ons being used. Read-only access to the detailed configuration of >> the jenkins jobs would be very useful. > > Y

Re: automated build coverage

2013-05-15 Thread Kevin Hilman
Fathi Boudra writes: > On 14 May 2013 23:49, Kevin Hilman wrote: >> Fathi Boudra writes: >> >> [...] >> >>>> Is there a way for us (linaro folks) to see more of the Jenkins setup >>>> for these jobs (including the scripts.) There appears to

Re: automated build coverage

2013-05-14 Thread Kevin Hilman
Fathi Boudra writes: [...] >> Is there a way for us (linaro folks) to see more of the Jenkins setup >> for these jobs (including the scripts.) There appears to be some useful >> add-ons being used. Read-only access to the detailed configuration of >> the jenkins jobs would be very useful. > > Y

Re: automated build coverage

2013-05-14 Thread Kevin Hilman
Nicolas Dechesne writes: > On Thu, May 9, 2013 at 7:56 PM, Fathi Boudra wrote: > >> > Hi all, >> > >> > I just wanted to forward this thread from LAKML to linaro-dev: >> > http://article.gmane.org/gmane.linux.ports.tegra/10683 >> > >> > Seems there is lots desire for an improvement to automated b

Re: [RFC/PATCH 1/5] context tracking: conditionalize guest support based on CONFIG_KVM

2013-02-27 Thread Kevin Hilman
Namhyung Kim writes: > 2013-02-26 (화), 11:29 -0800, Kevin Hilman: >> Frederic Weisbecker writes: >> >> > On Wed, Feb 20, 2013 at 11:41:38AM -0800, Kevin Hilman wrote: >> >> So that it can build on !KVM systems too. >> >> >> &

Re: [RFC/PATCH 1/5] context tracking: conditionalize guest support based on CONFIG_KVM

2013-02-26 Thread Kevin Hilman
Frederic Weisbecker writes: > On Wed, Feb 20, 2013 at 11:41:38AM -0800, Kevin Hilman wrote: >> So that it can build on !KVM systems too. >> >> Signed-off-by: Kevin Hilman >> --- >> kernel/context_tracking.c | 4 >> 1 file changed, 4 i

Re: [RFC/PATCH 2/5] kernel_cpustat: convert to atomic 64-bit accessors

2013-02-21 Thread Kevin Hilman
Frederic Weisbecker writes: > 2013/2/21 Frederic Weisbecker : >> 2013/2/21 Kevin Hilman : >>> Subject: [PATCH 2/5] kernel_cpustat: convert to atomic 64-bit accessors >>> >>> Use the atomic64_* accessors for all the kernel_cpustat fields to >>>

Re: [RFC/PATCH 2/5] kernel_cpustat: convert to atomic 64-bit accessors

2013-02-21 Thread Kevin Hilman
Kevin Hilman writes: > Use the atomic64_* accessors for all the kernel_cpustat fields to > ensure atomic access on non-64 bit platforms. > > Thanks to Mats Liljegren for CGROUP_CPUACCT related fixes. > > Cc: Mats Liljegren > Signed-off-by: Kevin Hilman The kbuild test bo

Re: [RFC/PATCH 4/5] cputime: use do_div() for nsec resolution conversion helpers

2013-02-21 Thread Kevin Hilman
Namhyung Kim writes: > Hi Kevin, > > On Wed, Feb 20, 2013 at 11:41:41AM -0800, Kevin Hilman wrote: >> For the nsec resolution conversions to be useful on non 64-bit >> architectures, do_div() needs to be used for the 64-bit divisions. >> >> Signed-off-by: Kev

[RFC/PATCH 4/5] cputime: use do_div() for nsec resolution conversion helpers

2013-02-20 Thread Kevin Hilman
For the nsec resolution conversions to be useful on non 64-bit architectures, do_div() needs to be used for the 64-bit divisions. Signed-off-by: Kevin Hilman --- include/asm-generic/cputime_nsecs.h | 51 +++-- 1 file changed, 37 insertions(+), 14 deletions

[RFC/PATCH 2/5] kernel_cpustat: convert to atomic 64-bit accessors

2013-02-20 Thread Kevin Hilman
Use the atomic64_* accessors for all the kernel_cpustat fields to ensure atomic access on non-64 bit platforms. Thanks to Mats Liljegren for CGROUP_CPUACCT related fixes. Cc: Mats Liljegren Signed-off-by: Kevin Hilman --- fs/proc/stat.c | 40

[RFC/PATCH 5/5] ARM: Kconfig: allow virt CPU accounting

2013-02-20 Thread Kevin Hilman
With the 64-bit requirement removed from virt CPU accounting, allow ARM platforms to enable it. Signed-off-by: Kevin Hilman --- arch/arm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 9bbe760..732f8d3 100644 --- a/arch/arm/Kconfig +++ b

[RFC/PATCH 0/5] context_tracking: prerequisites for ARM support

2013-02-20 Thread Kevin Hilman
ybe some simpler wrappers in kernel_stat.h would make this a bit cleaner? Kevin Kevin Hilman (5): context tracking: conditionalize guest support based on CONFIG_KVM kernel_cpustat: convert to atomic 64-bit accessors virt CPU accounting: Kconfig: drop 64-bit requirment cputime: use do_d

[RFC/PATCH 3/5] virt CPU accounting: Kconfig: drop 64-bit requirment

2013-02-20 Thread Kevin Hilman
The 64-bit requirement can be removed after the conversion of kernel_cpustat accessors to the portable atomic64 accessors. Signed-off-by: Kevin Hilman --- init/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/Kconfig b/init/Kconfig index 3abb019..b13af06 100644

[RFC/PATCH 1/5] context tracking: conditionalize guest support based on CONFIG_KVM

2013-02-20 Thread Kevin Hilman
So that it can build on !KVM systems too. Signed-off-by: Kevin Hilman --- kernel/context_tracking.c | 4 1 file changed, 4 insertions(+) diff --git a/kernel/context_tracking.c b/kernel/context_tracking.c index 74f68f4..6fe96b1 100644 --- a/kernel/context_tracking.c +++ b/kernel

Re: [linux-pm] cpuidle future and improvements

2012-07-11 Thread Kevin Hilman
Daniel Lezcano writes: > On 06/18/2012 08:15 PM, Colin Cross wrote: >> On Mon, Jun 18, 2012 at 1:40 AM, Daniel Lezcano >> wrote: >>> I propose to host a cpuidle-next tree where all these modifications will >>> be and where people can send patches against, preventing last minutes >>> conflicts an

Re: [PATCH] ARM: OMAP3/4: consolidate cpuidle Makefile

2012-05-30 Thread Kevin Hilman
Daniel Lezcano writes: > On 05/30/2012 08:07 PM, Kevin Hilman wrote: >> Daniel Lezcano writes: >> >>> On 05/14/2012 06:42 AM, Rajendra Nayak wrote: >>>> On Thursday 10 May 2012 03:32 PM, Daniel Lezcano wrote: >>>>> The current Makefile

Re: [PATCH] ARM: OMAP3/4: consolidate cpuidle Makefile

2012-05-30 Thread Kevin Hilman
Daniel Lezcano writes: > On 05/14/2012 06:42 AM, Rajendra Nayak wrote: >> On Thursday 10 May 2012 03:32 PM, Daniel Lezcano wrote: >>> The current Makefile compiles the cpuidle34xx.c and cpuidle44xx.c files >>> even if the cpuidle option is not set in the kernel. >>> >>> This patch fixes this by c

Re: [RESEND PATCH 1/2] ARM: OMAP2+: nand: Make board_onenand_init() visible to board code

2012-05-15 Thread Kevin Hilman
ou go. Applies to your 'board' branch. Kevin From f4f2c35de0e67e3b8185059ffd78be67f7096d8a Mon Sep 17 00:00:00 2001 From: Kevin Hilman Date: Tue, 15 May 2012 13:07:20 -0700 Subject: [PATCH] ARM: OMAP2+: nand: fix build error when CONFIG_MTD_ONENAND_OMAP2=n MIME-Version: 1.0 Conten

Re: [RESEND PATCH 1/2] ARM: OMAP2+: nand: Make board_onenand_init() visible to board code

2012-05-15 Thread Kevin Hilman
Tony Lindgren writes: > * Javier Martinez Canillas [120427 02:33]: >> On Wed, Apr 25, 2012 at 9:59 AM, Enric Balletbò i Serra >> wrote: >> > >> > Tony, as this is a fix ,may be included ? >> > >> > Acked-by: Enric Balletbo i Serra >> > Tested-by: Enric Balletbo i Serra >> > >> > Cheers, >> >

Re: [PATCH 2/2] ARM: OMAP3/4: consolidate cpuidle Makefile

2012-05-08 Thread Kevin Hilman
Daniel Lezcano writes: > On 05/04/2012 07:18 PM, Daniel Lezcano wrote: >> Define a CPU_IDLE section in the makefile, declare the functions in >> the header files conforming to the kernel coding rules and remove the >> 'define's in the C files. >> >> CONFIG_PM is enabled when CPU_IDLE is enabled b

Re: [PATCH 2/2] ARM: OMAP3/4: consolidate cpuidle Makefile

2012-05-08 Thread Kevin Hilman
Daniel Lezcano writes: > Define a CPU_IDLE section in the makefile, declare the functions in > the header files conforming to the kernel coding rules and remove the > 'define's in the C files. > > CONFIG_PM is enabled when CPU_IDLE is enabled because the cpuidle drivers > use some functions from

Re: [PATCH 1/2] ARM: OMAP3: cpuidle - check the powerdomain lookup

2012-05-04 Thread Kevin Hilman
Daniel Lezcano writes: > At init time, check the powerdomains lookup is successful otherwise > exit the cpuidle driver init function with -ENODEV like what is done for the > omap3 cpuidle driver. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet Thanks, applying to my for_3.5/cleanup

Re: [PATCH 00/18][V3] ARM: OMAP3/4 : cpuidle34xx and cpuidle44xx cleanups

2012-05-03 Thread Kevin Hilman
Hi Daniel, Daniel Lezcano writes: > This patchset makes some cleanup on these cpuidle drivers > and consolidate the code across both architecture. I think I said it before, but it's worth repeating: Very nice cleanup! Thanks for your persistence. I've now been through this version and I think

Re: [PATCH 17/18][V3] ARM: OMAP3/4: consolidate cpuidle Makefile

2012-05-03 Thread Kevin Hilman
Daniel Lezcano writes: > Define a CPU_IDLE section in the makefile, declare the functions in > the header files conforming to the kernel coding rules and remove the > 'define's in the C files. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet This patch breaks compilation for the !CO

Re: [PATCH 18/18][V3] ARM: OMAP3: cpuidle - set global variables static

2012-05-03 Thread Kevin Hilman
them static. Signed-off-by: Daniel Lezcano Reviewed-by: Jean Pihet Reviewed-by: Santosh Shilimkar Tested-by: Santosh Shilimkar Tested-by: Kevin Hilman [khil...@ti.com: update changelog, drop error check in fast path] Signed-off-by: Kevin Hilman --- arch/arm/mach-omap2/cpuidle34xx.c |2 +- 1

Re: [PATCH 11/18][V3] ARM: OMAP3: cpuidle - remove the 'valid' field

2012-05-03 Thread Kevin Hilman
Daniel Lezcano writes: > With the previous changes all the states are valid, except > the last state which can be handled by decreasing the number > of states. I don't think this changelog is valid anymore as you're not doing anything to decrease the number of states. I updated the changelog lo

Re: [PATCH 00/18][V3] ARM: OMAP3/4 : cpuidle34xx and cpuidle44xx cleanups

2012-04-30 Thread Kevin Hilman
Daniel Lezcano writes: > On 04/24/2012 04:05 PM, Daniel Lezcano wrote: >> This patchset makes some cleanup on these cpuidle drivers >> and consolidate the code across both architecture. >> >> Tested on OMAP3 (igepV2). >> Partially tested on OMAP4 (pandaboard), without offlining the cpu1. Without

Re: [PATCH 02/17][V2] ARM: OMAP4: cpuidle - Declare the states with the driver declaration

2012-04-23 Thread Kevin Hilman
Daniel Lezcano writes: > On 04/23/2012 07:08 PM, Kevin Hilman wrote: >> Daniel Lezcano writes: >> >>> On 04/19/2012 03:58 PM, Daniel Lezcano wrote: >>>> On 04/10/2012 12:37 AM, Kevin Hilman wrote: >>>>> Daniel Lezcano writes: >>&g

Re: [PATCH 02/17][V2] ARM: OMAP4: cpuidle - Declare the states with the driver declaration

2012-04-23 Thread Kevin Hilman
Daniel Lezcano writes: > On 04/19/2012 03:58 PM, Daniel Lezcano wrote: >> On 04/10/2012 12:37 AM, Kevin Hilman wrote: >>> Daniel Lezcano writes: >>> >>>> The cpuidle API allows to declare statically the states in the driver >>>> structure. Let&

Re: [PATCH 00/17][V2] ARM: OMAP3/4 : cpuidle34xx and cpuidle44xx cleanups

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > This patchset makes some cleanup on these cpuidle drivers > and consolidate the code across both architecture. Thanks for this really nice cleanup. I have some comments on specific patches, but here's some general comments: Some minor comments: First, please be sure a

Re: [PATCH 10/17][V2] ARM: OMAP3: cpuidle - remove the 'valid' field

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > With the previous changes all the states are valid, except > the last state which can be handled by decreasing the number > of states. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > --- > arch/arm/mach-omap2/cpuidle34xx.c | 12 +++- > 1 files c

Re: [PATCH 11/17][V2] ARM: OMAP3: cpuidle - remove cpuidle_params_table

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > We do not longer need the ''cpuidle_params_table' array as > we defined the states in the driver and we checked they are > all valid. > > We also remove the structure definition as it is no longer used. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > --- >

Re: [PATCH 06/17][V2] ARM: OMAP4: cpuidle - use the omap4_idle_data variable directly

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > We are storing the 'omap4_idle_data' in the private data field > of the cpuidle device. As we are using this variable only in this file, > that does not really make sense. Let's use the global variable directly > instead dereferencing pointers in an idle critical loop. D

Re: [PATCH 07/17][V2] ARM: OMAP4: cpuidle - remove omap4_idle_data initialization at boot time

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > We initialized it at compile time, no need to do that at boot > time. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > Reviewed-by: Santosh Shilimkar > --- > arch/arm/mach-omap2/cpuidle44xx.c | 26 +- > 1 files changed, 1 inserti

Re: [PATCH 04/17][V2] ARM: OMAP4: cpuidle - fix static omap4_idle_data declaration

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > Signed-off-by: Daniel Lezcano > Reviewed-by: Jean Pihet > Reviewed-by: Santosh Shilimkar Missing changelog. Kevin > --- > arch/arm/mach-omap2/cpuidle44xx.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-omap2/cpuidle44x

Re: [PATCH 02/17][V2] ARM: OMAP4: cpuidle - Declare the states with the driver declaration

2012-04-09 Thread Kevin Hilman
Daniel Lezcano writes: > The cpuidle API allows to declare statically the states in the driver > structure. Let's use it. > We do no longer need the fill_cstate function called at runtime and > by the way adding more instructions at boot time. > > Signed-off-by: Daniel Lezcano > Reviewed-by: Jea

Re: [PATCH 00/17][OMAP2/3] cpuidle34xx and cpuidle44xx cleanups

2012-04-04 Thread Kevin Hilman
Hi Daniel, Daniel Lezcano writes: > This patchset makes some cleanup on these cpuidle drivers > and consolidate the code across both architecture. > > Tested on OMAP3 (igepV2). > Partially tested on OMAP4 (pandaboard), without offlining the cpu1. Any reason this wasn't posted to linux-omap? Wa

Re: [RFC][PATCH 0/7] OMAP4 cpuidle cleanup

2012-03-22 Thread Kevin Hilman
Daniel Lezcano writes: > On 03/21/2012 10:54 PM, Kevin Hilman wrote: >> Daniel Lezcano writes: >> >>> On 03/21/2012 02:43 PM, Jean Pihet wrote: >>>> On Wed, Mar 21, 2012 at 11:07 AM, Santosh Shilimkar >>>>wrote: >>>>> Daniel,

Re: [RFC][PATCH 0/7] OMAP4 cpuidle cleanup

2012-03-21 Thread Kevin Hilman
Daniel Lezcano writes: > On 03/21/2012 02:43 PM, Jean Pihet wrote: >> On Wed, Mar 21, 2012 at 11:07 AM, Santosh Shilimkar >> wrote: >>> Daniel, >>> >>> On Wednesday 21 March 2012 02:57 PM, Daniel Lezcano wrote: This patchset is a proposition to improve a bit the code. The changes are

Re: [PATCH v8 0/8] Consolidate cpuidle functionality

2012-03-21 Thread Kevin Hilman
Arnd Bergmann writes: > On Tuesday 20 March 2012, Kevin Hilman wrote: >> Maybe it's time that drivers/cpuidle gets a maintainer. With lots of >> discussions of scheduler changes that affect load estimation, I suspect >> we're all going to have a bit of CPUi

Re: [PATCH v8 0/8] Consolidate cpuidle functionality

2012-03-21 Thread Kevin Hilman
mx51, imx6q) Note that there's a space missing between the name and email in these tags (and for Deepthi's below also.) That seems to exist in all the patches. > Reviewed-by: Kevin Hilman For my Reviewed-by, it only applies to the core code and the OMAP changes. I haven't rev

Re: [PATCH v8 0/8] Consolidate cpuidle functionality

2012-03-21 Thread Kevin Hilman
Arnd Bergmann writes: > On Tuesday 20 March 2012, Robert Lee wrote: >> This patch series moves various functionality duplicated in platform >> cpuidle drivers to the core cpuidle driver. Also, the platform irq >> disabling was removed as it appears that all calls into >> cpuidle_call_idle will

Re: [PATCH v7 0/9] Consolidate cpuidle functionality

2012-03-06 Thread Kevin Hilman
). Reviewed-by: Kevin Hilman ___ linaro-dev mailing list linaro-dev@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-dev

Re: [PATCH v6 1/9] cpuidle: Add common time keeping and irq enabling

2012-02-29 Thread Kevin Hilman
Robert Lee writes: > Make necessary changes to implement time keeping and irq enabling > in the core cpuidle code. This will allow the removal of these > functionalities from various platform cpuidle implementations whose > timekeeping and irq enabling follows the form in this common code. > > S

Re: [PATCH 0/2] change lpj in arm smp common code

2012-02-29 Thread Kevin Hilman
Richard Zhao writes: > The two patches were originally in [PATCH V6 0/7] add a generic cpufreq > driver. > I seperated them and hope they can go to upstream earlier. > > Richard Zhao (2): > ARM: add cpufreq transiton notifier to adjust loops_per_jiffy for smp > cpufreq: OMAP: remove loops_pe

Re: [PATCH V6 4/7] cpufreq: add clk-reg cpufreq driver

2012-01-12 Thread Kevin Hilman
Richard Zhao writes: > On Wed, Jan 11, 2012 at 03:22:34PM -0800, Kevin Hilman wrote: >> Richard Zhao writes: >> >> > The driver get cpu operation point table from device tree cpu0 node, >> >> Since we already have an existing OPP infrastructure in the kerne

Re: [PATCH V6 4/7] cpufreq: add clk-reg cpufreq driver

2012-01-11 Thread Kevin Hilman
Richard Zhao writes: > The driver get cpu operation point table from device tree cpu0 node, Since we already have an existing OPP infrastructure in the kernel, seems like this driver should get OPPs by asking the OPP layer. This approach assumes the OPP layer is static at boot time and not cha

Re: [PATCH] omap: use usleep_range() instead of mdelay()/udelay()

2012-01-03 Thread Kevin Hilman
Dmitry Antipov writes: > From e4db974edb5c46360465462518a88b83f1bdedf6 Mon Sep 17 00:00:00 2001 > From: Dmitry Antipov > Date: Wed, 21 Dec 2011 10:57:08 +0400 > Subject: [PATCH] omap: use usleep_range() instead of mdelay()/udelay() Please include a signoff and a descriptive changelog (describin

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Kevin Hilman
Greg, Alan, Rajendra Nayak writes: > v3 is rebased on top of the latest serial runtime > patches[1] and boot tested with/without DT on OMAP4 > SDP and OMAP4 Panda boards. With your ack on the drivers/tty/* stuff, I can queue this via the OMAP tree on top of the runtime PM conversion that it dep

Re: [PATCH v3] ARM: OMAP2+: hwmod: Add a new state to handle hwmods left enabled at init

2011-11-21 Thread Kevin Hilman
UART module needs to be kept enabled through the boot, until the > UART driver takes control of it, for debug prints to appear on > the console. > > Acked-by: Kevin Hilman > Acked-by: Benoit Cousson Looks like we need a Tested-by: Govindraj R

Re: [PATCH] ARM: omap_hwmod: Add a new state to handle hwmods left enabled at init

2011-11-18 Thread Kevin Hilman
"Cousson, Benoit" writes: > Hi Kevin and Rajendra, > > On 11/18/2011 7:44 AM, Rajendra Nayak wrote: >> Hi Kevin, >> >> On Friday 18 November 2011 01:05 AM, Kevin Hilman wrote: >>> Rajendra Nayak writes: >>> >>>> A hwmod with a

Re: [PATCH] ARM: omap_hwmod: Add a new state to handle hwmods left enabled at init

2011-11-17 Thread Kevin Hilman
Rajendra Nayak writes: > A hwmod with a 'HWMOD_INIT_NO_IDLE' flag set, is left in > enabled state by the hwmod framework post the initial setup. > Once a real user of the device (a driver) tries to enable it > at a later point, the hmwod framework throws a WARN() about > the device being already

Re: OMAP4 MPU DVFS patches

2011-04-07 Thread Kevin Hilman
Amit Kucheria writes: > On Wed, Apr 6, 2011 at 10:33 PM, Kevin Hilman wrote: >> Nicolas Pitre writes: >> >>> On Wed, 6 Apr 2011, Kevin Hilman wrote: >>> >>>> Amit Kucheria writes: >>>> >>>> > On Sat, Apr 2, 2011 at 6:21

Re: OMAP4 MPU DVFS patches

2011-04-07 Thread Kevin Hilman
Andy Green writes: > On 04/06/2011 09:24 PM, Somebody in the thread at some point said: >> I have the same problem. If I turn off the display then the board boots. >> >> https://bugs.launchpad.net/ubuntu/+source/linux-linaro-omap/+bug/752900 >> >> Thanks to John Stultz for making the connection

Re: OMAP4 MPU DVFS patches

2011-04-06 Thread Kevin Hilman
Nicolas Pitre writes: > On Wed, 6 Apr 2011, Kevin Hilman wrote: > >> Amit Kucheria writes: >> >> > On Sat, Apr 2, 2011 at 6:21 AM, Nicolas Pitre >> > wrote: >> >> On Fri, 1 Apr 2011, Vishwanath Sripathy wrote: >> >> >> >>

Re: OMAP4 MPU DVFS patches

2011-04-06 Thread Kevin Hilman
Amit Kucheria writes: > On Sat, Apr 2, 2011 at 6:21 AM, Nicolas Pitre > wrote: >> On Fri, 1 Apr 2011, Vishwanath Sripathy wrote: >> >>> Hi Nicolas, >>> >>> Pls find rebased OMAP DVFS patches attached. Apologies for the delay >>> as I had to rework some of the patches because of kernel migration

Re: [PATCH v5 REPOST 0/5] ARM: omap[34]: Thumb-2 compatibility fixes

2011-03-07 Thread Kevin Hilman
ode errata.) Kevin > Seems to work with CONFIG_SMP_ON_UP and CONFIG_THUMB2_KERNEL > enabled on Beagle xM A2 and Panda A1. > > Thanks also to Santosh Shilimkar and Kevin Hilman for their help > with testing so far. > > > v3: > * make SMC instruction syntax more consistent &

Re: [PATCH v5 REPOST 0/5] ARM: omap[34]: Thumb-2 compatibility fixes

2011-03-07 Thread Kevin Hilman
Santosh Shilimkar writes: > Dave, >> -Original Message- >> From: Dave Martin [mailto:dave.mar...@linaro.org] >> Sent: Friday, March 04, 2011 11:05 PM >> To: linux-arm-ker...@lists.infradead.org >> Cc: patc...@linaro.org; Tony Lindgren; Santosh Shili

Re: [PATCH v5 REPOST 0/5] ARM: omap[34]: Thumb-2 compatibility fixes

2011-03-04 Thread Kevin Hilman
Dave Martin writes: > On Fri, Mar 4, 2011 at 5:47 PM, Tony Lindgren wrote: >> * Santosh Shilimkar [110304 09:36]: >>> > >>> > Following up on this, it looks like I have some locally-recorded >>> > acks >>> > which didn't make it into my posting ... >> >> To me looks like this is ready to go, bu

Re: export kernel clock information to user space

2010-10-15 Thread Kevin Hilman
Amit Kucheria writes: > Adding linaro-dev to cc. Kernel consolidation WG might have comments. > > On Tue, Oct 12, 2010 at 9:04 AM, Yong Shen wrote: >> Hi Amit and Jeremy, >> >> This is not a patch review. But patch may better present my idea. Basically, >> I want to add some code in common clock

Re: [PATCH 2/2] OMAP3 PM: sleep code clean up

2010-09-24 Thread Kevin Hilman
Vishwanath BS writes: > This patch has done some clean up of omap3 sleep code. > Basically all possible hardcodings are removed and code is Reorganized > into more logical buckets for better readability and instrumentation. > > Tested on ZOOM3. Again, please describe more about how it was tested

Re: [PATCH 1/2] OMAP3 PM: move omap3 sleep to ddr

2010-09-24 Thread Kevin Hilman
Vishwanath BS writes: > There is no need to keep omap3 sleep code in SRAM. > This code can be run very well on DDR. /me remains skeptical > This would help us to instrument CPUIdle latencies. Indeed, but... I'm afraid we will need a much more descriptive changelog here, describing in detail

Re: PM support for OMAP

2010-09-03 Thread Kevin Hilman
On Wed, 2010-09-01 at 18:52 +0300, Ameya Palande wrote: > Hi Amit, > > On Wed, 2010-09-01 at 17:38 +0200, ext Amit Kucheria wrote: > > On Wed, Sep 1, 2010 at 6:21 PM, Ameya Palande > > wrote: > > > Hi, > > > > > > AFAIU pm branch on linux-omap tree contains required patches, but they > > > are n

Re: [PATCH] OMAP CPUIDLE: CPU Idle latency measurement

2010-09-02 Thread Kevin Hilman
Amit Kucheria writes: > On 10 Aug 27, Kevin Hilman wrote: >> vishwanath.sripa...@linaro.org writes: >> >> > From: Vishwanath BS >> > >> > This patch has instrumentation code for measuring latencies for >> > various CPUIdle C states for

Re: [PATCH] OMAP CPUIDLE: CPU Idle latency measurement

2010-08-27 Thread Kevin Hilman
vishwanath.sripa...@linaro.org writes: > From: Vishwanath BS > > This patch has instrumentation code for measuring latencies for > various CPUIdle C states for OMAP. Idea here is to capture the > timestamp at various phases of CPU Idle and then compute the sw > latency for various c states. For

Re: [PATCH] OMAP CPUIDLE: CPU Idle latency measurement

2010-08-27 Thread Kevin Hilman
Amit Kucheria writes: > On 10 Aug 28, vishwanath.sripa...@linaro.org wrote: >> From: Vishwanath BS >> >> This patch has instrumentation code for measuring latencies for >> various CPUIdle C states for OMAP. Idea here is to capture the >> timestamp at various phases of CPU Idle and then compute