[PATCH 2/3] powertop: perf-event: Add defination of __NR_perf_event_open for arm platforms

2011-07-15 Thread Amit Daniel Kachhap
This patch adds defination for __NR_perf_event_open if not present for arm platforms. Signed-off-by: Amit Daniel Kachhap amit.kach...@linaro.org --- perf/perf_event.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/perf/perf_event.h b/perf/perf_event.h index

[PATCH 3/3] powertop: ncurses: Enable ncurses for android and miscellaneous changes

2011-07-15 Thread Amit Daniel Kachhap
This patch enables ncurses for android. NCURSES_NOMACRO flag is enabled as there is some conflict with stl libraries. Signed-off-by: Amit Daniel Kachhap amit.kach...@linaro.org --- Android.mk | 23 +++ display.cpp|5 - display.h

[PATCH 0/3] powertop: Adding support for android.

2011-07-15 Thread Amit Daniel Kachhap
The following set of patches add changes in powertop needed for arm android platforms. These patches depends on the below mentioned patches. http://www.mail-archive.com/power@bughost.org/msg02078.html Amit Daniel Kachhap (3): powertop: Disable pci bus measurement for arm platforms

[PATCH 1/3] powertop: Disable pci bus measurement for arm platforms

2011-07-15 Thread Amit Daniel Kachhap
This patch disables pci related measurement which is not needed for ARM platforms and also library libpci is not needed. Signed-off-by: Amit Daniel Kachhap amit.kach...@linaro.org --- Android.mk |7 ++- devices/runtime_pm.cpp |3 ++- lib.cpp|7 ---

Re: [PATCH 1/1] Add ARM cpu topology definition

2011-07-15 Thread Amit Kucheria
Adding John Rigby here. On 11 Jul 12, Amit Kucheria wrote: From: Vincent Guittot vincent.guit...@linaro.org (Patch accepted by Russell for 3.1: http://www.spinics.net/lists/arm-kernel/msg131273.html) +config ARM_CPU_TOPOLOGY + bool Support cpu topology definition + depends on

[ACTIVITY] Android Platform Team 2011-07-03 to 2011-07-10

2011-07-15 Thread Tony Mansson
Key Points for wider discussion: Snowball Android is now building on the build server: https://android-build.linaro.org/builds/~linaro-android/leb-snowball/ Team Highlights: Busybox is compiling now and work continues to complete the Android integration MLO integration into TI 3.0 LEB started.

Re: [Patch v1 04/11]Power: DA9052 battery driver

2011-07-15 Thread Mark Brown
On Thu, Jul 14, 2011 at 02:27:08PM +0530, ashishj3 wrote: +static inline int volt_reg_to_mV(int value) + { return ((value*1000) / 512) + 2500; } +static inline int ichg_reg_to_mA(int value) + { return ((value * 3900) / 1000); } It'd be better to use the standard

Re: [U-Boot] [PATCH v2 1/2] ARMV7: Add support for Samsung ORIGEN board

2011-07-15 Thread Minkyu Kang
Dear Chander Kashyap, On 12 July 2011 17:48, Chander Kashyap chander.kash...@linaro.org wrote: Origen board is based upon S5PV310 SoC which is similiar to S5PC210 SoC. Signed-off-by: Chander Kashyap chander.kash...@linaro.org ---  MAINTAINERS                          |    1 +  

Re: [U-Boot] [uboot PATCH v2] Add uboot fdt_high enviroment variable

2011-07-15 Thread Scott Wood
On Thu, 14 Jul 2011 17:20:53 -0400 David Long dave.l...@linaro.org wrote: When we boot without specifying an FDT, u-boot does not relocate the initrd. When we specify an FDT address in RAM, u-boot relocates both. We do not need that relocation (in this case at least). Well, that does sound

Re: [U-Boot] [uboot PATCH v2] Add uboot fdt_high enviroment variable

2011-07-15 Thread Scott Wood
On Thu, 14 Jul 2011 16:09:16 -0400 David Long dave.l...@linaro.org wrote: On Thu, 2011-07-14 at 14:43 -0500, Scott Wood wrote: You need to use lmb_reserve() to exclude any memory regions that are not suitable for boot images -- see powerpc's arch_lmb_reserve() and

[NOTES] Power Management WG Weekly Status report week 2011-07-08 - 2011-07-15

2011-07-15 Thread Mounir Bsaibes
Enclosed please find the link to the Meeting Minutes Weekly Status report for the Power Management working group for the week ending 2011-07-15. == Meeting Minutes == https://wiki.linaro.org/WorkingGroups/PowerManagement/Meetings/2011-07-13 == Weekly Status Report ==

[NOTES] Kernel WG Weekly Status report 2011-07-08 - 2011-07-15

2011-07-15 Thread Mounir Bsaibes
Enclosed please find the link to the Weekly Status report for the kernel working group for the week ending 2011-07-15. == Meeting Minutes == https://wiki.linaro.org/WorkingGroups/Kernel/Meetings/2011-07-11 == Weekly Status Report ==

Re: [PATCH 3/3] powertop: ncurses: Enable ncurses for android and miscellaneous changes

2011-07-15 Thread Kok, Auke-jan H
On Thu, Jul 14, 2011 at 11:35 PM, Amit Daniel Kachhap amit.kach...@linaro.org wrote: This patch enables ncurses for android. NCURSES_NOMACRO flag is enabled as there is some conflict with stl libraries. Signed-off-by:  Amit Daniel Kachhap amit.kach...@linaro.org ---  Android.mk             |

Re: [PATCH 1/3] powertop: Disable pci bus measurement for arm platforms

2011-07-15 Thread Kok, Auke-jan H
On Thu, Jul 14, 2011 at 11:35 PM, Amit Daniel Kachhap amit.kach...@linaro.org wrote: This patch disables pci related measurement which is not needed for ARM platforms and also library libpci is not needed. Signed-off-by:  Amit Daniel Kachhap amit.kach...@linaro.org ---  Android.mk            

Re: [PATCH 0/3] powertop: Adding support for android.

2011-07-15 Thread Kok, Auke-jan H
On Thu, Jul 14, 2011 at 11:35 PM, Amit Daniel Kachhap amit.kach...@linaro.org wrote: The following set of patches add changes in powertop needed for arm android platforms. These patches depends on the below mentioned patches. http://www.mail-archive.com/power@bughost.org/msg02078.html Amit

[PATCH] Fix building mali driver with make O= option

2011-07-15 Thread Angus Ainslie
When building with the make O= option some of the dependenccies and include files can't be resolved. This patch corrects the paths so that the files can be found. Thsis is a patch For Chunsangs repo at : git://git.linaro.org/people/chunsangjeong/mali.git Signed-off-by: Angus Ainslie

[PATCH] Add Exynos4 mali config.h file

2011-07-15 Thread Angus Ainslie
The mali driver needs an SoC specific config file to build. This is for the Samsung Exynos4 SoC. This is a patch for Chunsangs repo at : git://git.linaro.org/people/chunsangjeong/mali.git Signed-off-by: Angus Ainslie angus.ains...@linaro.org --- arch/arm/mach-exynos4/include/mach/mali/config.h

Keeping status.linaro.org running

2011-07-15 Thread James Westby
Hi, I've just made some small improvements to status.linaro.org to make it easier to keep running. Firstly, at the bottom of every page is now the time at which the page was last updated. If it's more than an hour ago then the site isn't updating. If it's not updating then follow the Update log

Re: [PATCH] Add Exynos4 mali config.h file

2011-07-15 Thread Kyungmin Park
Hi Angus, Thank you for working on MALI drivers. BTW, do you have a plan to post these patches to mainline? See comments below. Thank you, Kyungmin Park On Sat, Jul 16, 2011 at 3:54 AM, Angus Ainslie angus.ains...@linaro.org wrote: The mali driver needs an SoC specific config file to build.