Re: Do ARM Cortex-A9 PMU supoort oprofile

2012-03-01 Thread Dave Martin
On Wed, Feb 29, 2012 at 11:21:58PM +0800, zachary6626 wrote: Sorry disturbing you! I have ask google for do ARM Cortex-A9 PMU supoort oprofile, but it do not have a answer definitely . So i ask you do ARM Cortex-A9 PMU supoort oprofile. Can u help me? In general, yes it does work.

[PATCH v5 2/2] Regulator: Add Anatop regulator driver

2012-03-01 Thread Ying-Chun Liu (PaulLiu)
From: Ying-Chun Liu (PaulLiu) paul@linaro.org Anatop is an integrated regulator inside i.MX6 SoC. There are 3 digital regulators which controls PU, CORE (ARM), and SOC. And 3 analog regulators which controls 1P1, 2P5, 3P0 (USB). This patch adds the Anatop regulator driver. Signed-off-by:

[PATCH v5 1/2] mfd: Add anatop mfd driver

2012-03-01 Thread Ying-Chun Liu (PaulLiu)
From: Ying-Chun Liu (PaulLiu) paul@linaro.org Anatop is a mfd chip embedded in Freescale i.MX6Q SoC. Anatop provides regulators and thermal. This driver handles the address space and the operation of the mfd device. Signed-off-by: Ying-Chun Liu (PaulLiu) paul@linaro.org Cc: Samuel Ortiz

Re: [PATCH 1/2] ARM: EXYNOS: Add EHCI AHB burst function

2012-03-01 Thread Sangwook Lee
On 1 March 2012 03:24, Tushar Behera tushar.beh...@linaro.org wrote: On 02/29/2012 06:31 PM, Thomas Abraham wrote: Hi Sangwook, On 29 February 2012 18:11, Sangwook Lee sangwook@linaro.org wrote: Enable burst transfer from AHB for EHCI. This fixes data transfer of USB Ethernet with

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Dave Martin
On Wed, Feb 29, 2012 at 02:44:24PM +, Ian Campbell wrote: On Wed, 2012-02-29 at 12:58 +, Dave Martin wrote: On Wed, Feb 29, 2012 at 09:56:02AM +, Ian Campbell wrote: On Wed, 2012-02-29 at 09:34 +, Dave Martin wrote: On Tue, Feb 28, 2012 at 12:28:29PM +, Stefano

Re: Cross toolchain for lucid updated

2012-03-01 Thread Marcin Juszkiewicz
W dniu 29.02.2012 14:23, Marcin Juszkiewicz pisze: Those packages may also work under Ubuntu 10.10 'maverick' and 11.04 'natty' but it was not tested. Users of Ubuntu 11.10 'oneiric' may install libmpfr1ldbl package [2] and then use 'lucid' repository to install cross compiler while I will

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Russell King - ARM Linux
On Wed, Feb 29, 2012 at 12:58:26PM +, Dave Martin wrote: On Wed, Feb 29, 2012 at 09:56:02AM +, Ian Campbell wrote: On Wed, 2012-02-29 at 09:34 +, Dave Martin wrote: On Tue, Feb 28, 2012 at 12:28:29PM +, Stefano Stabellini wrote: I don't have a very strong opinion on

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Russell King - ARM Linux
On Wed, Feb 29, 2012 at 02:44:24PM +, Ian Campbell wrote: If you need a specific register, this means that you must set up that register explicitly inside the asm if you want a guarantee that the code will work: asm volatile ( movw r12, %[hvc_num]\n\t Is gcc

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Dave Martin
On Thu, Mar 01, 2012 at 10:10:29AM +, Russell King - ARM Linux wrote: On Wed, Feb 29, 2012 at 12:58:26PM +, Dave Martin wrote: On Wed, Feb 29, 2012 at 09:56:02AM +, Ian Campbell wrote: On Wed, 2012-02-29 at 09:34 +, Dave Martin wrote: On Tue, Feb 28, 2012 at 12:28:29PM

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Russell King - ARM Linux
On Thu, Mar 01, 2012 at 10:27:02AM +, Dave Martin wrote: So, where there's a compelling reason to inline these things, we can use the existing techniques if we're alert to the risks. But in cases where there isn't a compelling reason, aren't we just inviting fragility unnecessarily? The

Perf sched counters [Re: ARM A9 oprofile]

2012-03-01 Thread Dmitry Antipov
On 02/28/2012 05:27 PM, Ming Lei wrote: I am sure that several guys have tried the current omap4 pmu patch and make perf work well on pandaboard. On a freshly booted panda board which is mostly idle: root@linaro-developer:~# uptime 14:44:36 up 1 min, 3 users, load average: 0.17, 0.11,

Re: [PATCH v5 2/2] Regulator: Add Anatop regulator driver

2012-03-01 Thread Mark Brown
On Thu, Mar 01, 2012 at 05:10:52PM +0800, Ying-Chun Liu (PaulLiu) wrote: + if (IS_ERR(rdev)) { + dev_err(pdev-dev, failed to register %s\n, + rdesc-name); + kfree(rdesc-name); + return PTR_ERR(rdev); + } + + return 0; +}

Re: [PATCH v5 1/2] mfd: Add anatop mfd driver

2012-03-01 Thread Mark Brown
On Thu, Mar 01, 2012 at 05:10:51PM +0800, Ying-Chun Liu (PaulLiu) wrote: + spin_lock(adata-reglock); + val = readl(adata-ioreg + addr); + spin_unlock(adata-reglock); Do you really need to take a lock for a single read operation from a memory mapped register? I'd expect this to be

Re: [PATCH 1/5] mfd : ux500 - Cleanup duplicate definitions

2012-03-01 Thread Daniel Lezcano
On 03/01/2012 12:39 PM, Samuel Ortiz wrote: Hi Daniel, On Tue, Feb 28, 2012 at 10:46:05PM +0100, daniel.lezc...@linaro.org wrote: From: Daniel Lezcanodaniel.lezc...@linaro.org I missed in my previous patch the A9_MASK_REQ[_MASK] were already defined. Let's remove the duplicate definitions.

Re: [PATCH-WIP 01/13] xen/arm: use r12 to pass the hypercall number to the hypervisor

2012-03-01 Thread Stefano Stabellini
On Thu, 1 Mar 2012, Russell King - ARM Linux wrote: On Thu, Mar 01, 2012 at 10:27:02AM +, Dave Martin wrote: So, where there's a compelling reason to inline these things, we can use the existing techniques if we're alert to the risks. But in cases where there isn't a compelling reason,

RE: Do ARM Cortex-A9 PMU supoort oprofile

2012-03-01 Thread Turgis, Frederic
Hi Dave, By the way, in http://lists.linaro.org/pipermail/linaro-dev/2011-September/thread.html#7560, we discussed about oprofile timer mode granularity for platforms, which had the PMU bug that loses PMU interrupts (4430, 4460 and maybe 4470). Was this timer granularity proposed/introduced ?

Re: Perf sched counters [Re: ARM A9 oprofile]

2012-03-01 Thread Ming Lei
On Thu, Mar 1, 2012 at 6:48 PM, Dmitry Antipov dmitry.anti...@linaro.org wrote: On 02/28/2012 05:27 PM, Ming Lei wrote: I am sure that several guys have tried the current omap4 pmu patch and make perf work well on pandaboard. On a freshly booted panda board which is mostly idle: The

Re: Anybody trying to get Linaro running on AuraSlate tablet?

2012-03-01 Thread Zach Pfeffer
On 1 March 2012 00:40, Subodh Nijsure snijs...@grid-net.com wrote: Hello, (Pardon if this is out-of-scope for linaro-dev mailing list ) Is there anybody trying to get Linaro to run on cheap AuraSlate (http://www.auraslate.com/) tablet?  If you are would be nice to collaborate... I like

[PATCH v7 5/9] ARM: davinci: Consolidate time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-davinci/cpuidle.c | 82 --- 1 files changed, 33 insertions(+), 49 deletions(-) diff --git

[PATCH v7 8/9] ARM: shmobile: Consolidate time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-shmobile/cpuidle.c | 31 +++ 1 files changed, 7 insertions(+), 24 deletions(-) diff --git

RE: [PATCH 1/2] ARM: EXYNOS: Add USB HOST register definitions

2012-03-01 Thread Jingoo Han
-Original Message- From: Tushar Behera [mailto:tushar.beh...@linaro.org] Sent: Thursday, March 01, 2012 12:30 PM To: Jingoo Han Cc: linux-...@vger.kernel.org; 'Greg Kroah-Hartman'; linux-samsung-...@vger.kernel.org; linux-arm- ker...@lists.infradead.org; 'Sangwook Lee'; 'Alan

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

2012-03-01 Thread Deepthi Dharwar
Hi Rob, On 03/01/2012 06:12 AM, Robert Lee wrote: 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

[PATCH v2 2/2] USB: ehci-s5p: add DMA burst support

2012-03-01 Thread Jingoo Han
DMA burst support is added to improve performance in EHCI data transfer. The USB EHCI controller on Exynos SoCs can use INCR16, INCR8, and INCR4 mode. These modes of INSNREG00 register should be set in order to enable DMA burst transfer. This feature is also related to AHB spec. Signed-off-by:

[PATCH v7 0/9] Consolidate cpuidle functionality

2012-03-01 Thread Robert Lee
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 have already called local_irq_disable(). Rafael, Could you review this patchset

[PATCH v2 1/2] ARM: EXYNOS: Add USB HOST register definitions

2012-03-01 Thread Jingoo Han
This patch adds USB HOST register definitions. The definition for EHCI INSNREG00 regiser and corresponding bit field definitions are added. Signed-off-by: Sangwook Lee sangwook@linaro.org Signed-off-by: Jingoo Han jg1@samsung.com --- v2: change the definition name from EHCI_ENA_xxx to

[PATCH v7 4/9] ARM: kirkwood: Consolidate time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-kirkwood/cpuidle.c | 72 +++--- 1 files changed, 21 insertions(+), 51 deletions(-) diff --git

Re: [PATCH 1/5] mfd : ux500 - Cleanup duplicate definitions

2012-03-01 Thread Samuel Ortiz
Hi Daniel, On Tue, Feb 28, 2012 at 10:46:05PM +0100, daniel.lezc...@linaro.org wrote: From: Daniel Lezcano daniel.lezc...@linaro.org I missed in my previous patch the A9_MASK_REQ[_MASK] were already defined. Let's remove the duplicate definitions. The PRCMU_GIC_DELAY macro could be

[PATCH v7 7/9] ARM: omap: Consolidate OMAP4 time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-omap2/cpuidle44xx.c | 21 +++-- 1 files changed, 3 insertions(+), 18 deletions(-) diff --git

Re: [PATCH] module: debugging check for runaway kthreads

2012-03-01 Thread Rusty Russell
On Wed, 29 Feb 2012 19:21:13 +0400, Dmitry Antipov dmitry.anti...@linaro.org wrote: Debugging option CONFIG_MODULE_KTHREAD_CHECK provides a way to check whether all kernel threads created by the module and have used module code as a thread worker function are really exited when the module is

[PATCH v7 2/9] ARM: at91: Consolidate time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-at91/cpuidle.c | 67 +++--- 1 files changed, 24 insertions(+), 43 deletions(-) diff --git

[PATCH v7 3/9] ARM: exynos: Consolidate time keeping and irq enable

2012-03-01 Thread Robert Lee
Enable core cpuidle timekeeping and irq enabling and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-exynos/cpuidle.c | 53 --- 1 files changed, 6 insertions(+), 47 deletions(-) diff --git

[PATCH v7 6/9] ARM: omap: Consolidate OMAP3 time keeping and irq enable

2012-03-01 Thread Robert Lee
Use core cpuidle timekeeping and irqen wrapper and remove that handling from this code. Signed-off-by: Robert Lee rob@linaro.org --- arch/arm/mach-omap2/cpuidle34xx.c | 42 +++-- 1 files changed, 17 insertions(+), 25 deletions(-) diff --git

Re: Anybody trying to get Linaro running on AuraSlate tablet?

2012-03-01 Thread Kalle Vahlman
2012/3/1 Zach Pfeffer zach.pfef...@linaro.org: On 1 March 2012 00:40, Subodh Nijsure snijs...@grid-net.com wrote: Hello, (Pardon if this is out-of-scope for linaro-dev mailing list ) Is there anybody trying to get Linaro to run on cheap AuraSlate (http://www.auraslate.com/) tablet?  If you

Re: [PATCH v2 1/2] ARM: EXYNOS: Add USB HOST register definitions

2012-03-01 Thread Sangwook Lee
On 1 March 2012 15:24, Heiko Stübner he...@sntech.de wrote: Am Donnerstag, 1. März 2012, 06:38:20 schrieb Jingoo Han: This patch adds USB HOST register definitions. The definition for EHCI INSNREG00 regiser and corresponding bit field definitions are added. Signed-off-by: Sangwook Lee

Re: RE: Do ARM Cortex-A9 PMU supoort oprofile

2012-03-01 Thread zachary6626
Dear Dave and Turgis, Thanks for your replying. I have run oprofile on OMAP4460, but there are many problems. My test env is: oprofile version: 0.9.7 Android ver: ICS kernel ver: 3.0 CPU:OMAP4460 Oprofile ran abnormally after

Re: [PATCH v2 1/2] ARM: EXYNOS: Add USB HOST register definitions

2012-03-01 Thread Heiko Stübner
Am Donnerstag, 1. März 2012, 06:38:20 schrieb Jingoo Han: This patch adds USB HOST register definitions. The definition for EHCI INSNREG00 regiser and corresponding bit field definitions are added. Signed-off-by: Sangwook Lee sangwook@linaro.org Signed-off-by: Jingoo Han

RE: Do ARM Cortex-A9 PMU supoort oprofile

2012-03-01 Thread Turgis, Frederic
Wrong Dave, I meant Dave Long ;-) OMAP Platform Business Unit - OMAP System Engineering - Platform Enablement - System Multimedia Hi Dave, By the way, in http://lists.linaro.org/pipermail/linaro-dev/2011-September/thread.html#7560, we discussed about oprofile timer mode granularity for

RE: RE: Do ARM Cortex-A9 PMU supoort oprofile

2012-03-01 Thread Turgis, Frederic
Use hrtimer ;-) Well, to make PMU work, look at linaro-dev mail archives, Lei Ming and Antipov Dmitry had a discussion recently on the right patches Regards Fred OMAP Platform Business Unit - OMAP System Engineering - Platform Enablement - System Multimedia Texas Instruments France SA, 821

Re: Anybody trying to get Linaro running on AuraSlate tablet?

2012-03-01 Thread Subodh Nijsure
On 03/01/2012 08:00 AM, Kalle Vahlman wrote: 2012/3/1 Zach Pfefferzach.pfef...@linaro.org: On 1 March 2012 00:40, Subodh Nijsuresnijs...@grid-net.com wrote: Hello, (Pardon if this is out-of-scope for linaro-dev mailing list ) Is there anybody trying to get Linaro to run on cheap AuraSlate

Re: Anybody trying to get Linaro running on AuraSlate tablet?

2012-03-01 Thread Kalle Vahlman
2012/3/1 Subodh Nijsure snijs...@grid-net.com: On 03/01/2012 08:00 AM, Kalle Vahlman wrote: 2012/3/1 Zach Pfefferzach.pfef...@linaro.org: On 1 March 2012 00:40, Subodh Nijsuresnijs...@grid-net.com  wrote: Hello, (Pardon if this is out-of-scope for linaro-dev mailing list ) Is there

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

2012-03-01 Thread Rob Lee
On Wed, Feb 29, 2012 at 6:42 PM, Robert Lee rob@linaro.org 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 have

[PATCH v6 1/2] mfd: Add anatop mfd driver

2012-03-01 Thread Ying-Chun Liu (PaulLiu)
From: Ying-Chun Liu (PaulLiu) paul@linaro.org Anatop is a mfd chip embedded in Freescale i.MX6Q SoC. Anatop provides regulators and thermal. This driver handles the address space and the operation of the mfd device. Signed-off-by: Ying-Chun Liu (PaulLiu) paul@linaro.org Cc: Samuel Ortiz

[PATCH v6 2/2] Regulator: Add Anatop regulator driver

2012-03-01 Thread Ying-Chun Liu (PaulLiu)
From: Ying-Chun Liu (PaulLiu) paul@linaro.org Anatop is an integrated regulator inside i.MX6 SoC. There are 3 digital regulators which controls PU, CORE (ARM), and SOC. And 3 analog regulators which controls 1P1, 2P5, 3P0 (USB). This patch adds the Anatop regulator driver. Signed-off-by:

Fwd: Ubuntu 12.04 LTS (Precise Pangolin) Beta 1 Released, with ARMHF images

2012-03-01 Thread Fathi Boudra
Forwarding Ubuntu Precise Beta 1 announcement: [...] This release introduces a new set of images for the ARMv7 hard float ABI, denoted as armhf. There are still some armel images around, as we finish the migration, but 12.04 for ARM will be based on armhf. [...] Ubuntu Core ---