Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Bernhard Rosenkranzer
On 10 August 2011 12:44, Michael Hope wrote: > I'd leave it as 32 bit.  This gives you a single binary toolchain that > can run on 32 bit and 64 bit hosts, no matter what host it was built > on. If it actually builds on 32 bit hosts, I agree -- but in that case we should patch out the fact that t

Re: [PATCH v2 1/2] cpumask: introduce cpumask for hotpluggable CPUs

2011-08-10 Thread Amit Kucheria
See comments inline. On 11 Aug 10, Mike Turquette wrote: > On some platforms it is possible to have some CPUs which support CPU > hotplug and some which do not. Currently the prescence of an 'online' > sysfs entry in userspace is adequate for applications to know that a CPU > supports hotplug, bu

Re: [ANN] Linaro Android tree hosting switched to Gerrit

2011-08-10 Thread Zach Pfeffer
This looks really great Paul. Thanks! Time to start pushing changes... On 10 August 2011 12:48, Paul Sokolovsky wrote: > On Wed, 10 Aug 2011 20:31:11 +0300 > Paul Sokolovsky wrote: > >> [originally sent from wrong email, so not sure if got thru] >> > [] >> The official Linaro builds at https://

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Zach Pfeffer
On 10 August 2011 14:44, Michael Hope wrote: > On Thu, Aug 11, 2011 at 2:29 AM, Bernhard Rosenkranzer > wrote: >> Hi, >> while working on some improvements, I noticed that our Android >> toolchain binaries are built as 32-bit x86. >> Is there any reason for this (other than "we inherited it from

Re: pm-qa test output

2011-08-10 Thread Amit Kucheria
On Wed, Aug 10, 2011 at 11:42 PM, Daniel Lezcano wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > Hi Amit, > > Here is the example output with the test description. The email wraps > the lines, actually each test are one line output. > > Let me know if it is ok for you. > > Thanks >

Hacking Android from a Toolchain perspective

2011-08-10 Thread Michael Hope
Hi there. One of our goals in toolchain is to give good support to the Android group. I've written a page from the toolchain perspective on what is Android, how do you build it, and how you do common toolchainy tasks like reproduce a compiler fault: https://wiki.linaro.org/MichaelHope/Sandbox/An

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

2011-08-10 Thread Chander Kashyap
Hi Detlev, On 10 August 2011 15:48, Detlev Zundel wrote: > Hi Chander, > > [...] > > >>> lease get rid of all these magic hard coded constants. Use symbolic > >>> names instead. If needed, auto-generate these from the respective C > >>> structs. If needed, create the C structs. > >>> > >> > >

Re: 3D Demo at ARM

2011-08-10 Thread Zach Pfeffer
Ramin, Thanks for the email. I've added linaro-dev to my response. The demo consisted of two identical PandaBoards with identical SD cards running the 3D benchmark of 0xbench using software 3D to amplify compiler and kernel improvements. 0xbench is a benchmarking program we ship with our Android

Re: [PATCH v2 2/2] cpu: update cpu_hotpluggable_mask in register_cpu

2011-08-10 Thread Daniel Lezcano
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/10/2011 10:03 PM, Mike Turquette wrote: > Update the cpu_hotpluggable_mask for each registered CPU which supports > hotplug. This makes it trivial for kernel code to know which CPUs > support hotplug operations. > > Signed-off-by: Mike Turquett

Jenkins repo plugin

2011-08-10 Thread James Westby
Hi, https://github.com/jenkinsci/repo-plugin is a new plugin for Jenkins to provide a "repo" SCM provider. This means that you can have Jenkins watch for changes via repo, and trigger actions based on that. I don't think this is useful to us with the things that we currently do, but may be usef

Re: [PATCH v2 1/2] cpumask: introduce cpumask for hotpluggable CPUs

2011-08-10 Thread Daniel Lezcano
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/10/2011 10:03 PM, Mike Turquette wrote: > On some platforms it is possible to have some CPUs which support CPU > hotplug and some which do not. Currently the prescence of an 'online' > sysfs entry in userspace is adequate for applications to kno

pm-qa test output

2011-08-10 Thread Daniel Lezcano
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Amit, Here is the example output with the test description. The email wraps the lines, actually each test are one line output. Let me know if it is ok for you. Thanks -- Daniel [ ... ] ### ### cpufreq_04: ### test the change of the frequenc

[PATCH v2 1/2] cpumask: introduce cpumask for hotpluggable CPUs

2011-08-10 Thread Mike Turquette
On some platforms it is possible to have some CPUs which support CPU hotplug and some which do not. Currently the prescence of an 'online' sysfs entry in userspace is adequate for applications to know that a CPU supports hotplug, but there is no convenient way to make the same determination in the

[PATCH v2 2/2] cpu: update cpu_hotpluggable_mask in register_cpu

2011-08-10 Thread Mike Turquette
Update the cpu_hotpluggable_mask for each registered CPU which supports hotplug. This makes it trivial for kernel code to know which CPUs support hotplug operations. Signed-off-by: Mike Turquette --- Change log: v2: no change drivers/base/cpu.c |4 +++- 1 files changed, 3 insertions(+), 1

[PATCH v2 0/2] new cpumask for hotpluggable CPUs

2011-08-10 Thread Mike Turquette
This patch series introduces a new cpumask which tracks CPUs that support hotplugging. The purpose of this patch series is to provide a simple method for kernel code to know which CPUs can be hotplugged and which ones cannot. Potential users of this code might be a thermal mitigation technique wh

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Michael Hope
On Thu, Aug 11, 2011 at 2:29 AM, Bernhard Rosenkranzer wrote: > Hi, > while working on some improvements, I noticed that our Android > toolchain binaries are built as 32-bit x86. > Is there any reason for this (other than "we inherited it from AOSP")? > > While it doesn't matter much, it doesn't m

[ RFC ] fastboot protocol support in u-boot

2011-08-10 Thread Sebastian Andrzej Siewior
Hi, The patch which should come as a reply to this email contains a fastboot gadget for u-boot. I don't claim that the code has been tested or anything. I just want to post what I have now and get some feedback on it. The code uses the "newer" gadget API which is used by the rndis gadget for inst

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Paul Sokolovsky
On Wed, 10 Aug 2011 10:48:26 -0700 Bernhard Rosenkranzer wrote: > On 10 August 2011 09:20, Vladimir Pantelic wrote: > > fwiw, android GB and HC both build fine on 32 bit here... > > How so? Did you simply patch out the > > ifeq ($(BUILD_OS),linux) > build_arch := $(shell uname -m) > ifneq (64,

Linaro Connect - Kernel Working Group Summary

2011-08-10 Thread Deepak Saxena
Hi all, I wanted to provide an update of what the kernel team accomplished at Linaro Connect last week for those who were unable to attend. The team was split into two main groups, the first being led by Grant Likely and focusing on continuing the work on enabling Device Tree support on ARM platf

Re: [ANN] Linaro Android tree hosting switched to Gerrit

2011-08-10 Thread Paul Sokolovsky
On Wed, 10 Aug 2011 20:31:11 +0300 Paul Sokolovsky wrote: > [originally sent from wrong email, so not sure if got thru] > [] > The official Linaro builds at https://android-build.linaro.org/ were > converted to use new manifest location, and I'd like to ask other > developers to convert their pe

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Bernhard Rosenkranzer
On 10 August 2011 09:20, Vladimir Pantelic wrote: > fwiw, android GB and HC both build fine on 32 bit here... How so? Did you simply patch out the ifeq ($(BUILD_OS),linux) build_arch := $(shell uname -m) ifneq (64,$(findstring 64,$(build_arch))) $(warning

Re: [PATCH 1/2] cpumask: introduce cpumask for hotpluggable CPUs

2011-08-10 Thread Turquette, Mike
On Wed, Aug 10, 2011 at 1:42 AM, Amit Kucheria wrote: > On 11 Aug 09, Mike Turquette wrote: >> On some platforms it is possible to have some CPUs which support CPU >> hotplug and some which do not.  Currently the prescence of an 'online' >> sysfs entry in userspace is adequate for applications to

[ANN] Linaro Android tree hosting switched to Gerrit

2011-08-10 Thread Paul Sokolovsky
[originally sent from wrong email, so not sure if got thru] Hello, Linaro Android codebase migration to Gerrit, which was announced at Linaro Connect, happened today. From now, Linaro Android is available via: http://android.git.linaro.org/ Accompanied by Gerrit frontend at: http://review.andr

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Vladimir Pantelic
Bernhard Rosenkranzer wrote: Hi, while working on some improvements, I noticed that our Android toolchain binaries are built as 32-bit x86. Is there any reason for this (other than "we inherited it from AOSP")? While it doesn't matter much, it doesn't make much sense to me - Android can't curren

Re: What are the chances of a phone based developer image

2011-08-10 Thread Jim Huang
2011/8/10 Ramana Radhakrishnan : >> . Would you be interested in adding a Firefox-based benchmark? As a large >> application it is a good testbed for LTO, FDO and other aggressive >> optimizations. > > I would be interested in hearing how you get on with LTO and FDO on > ARM. Listening to Honza tal

Re: linaro libjpeg-turbo roadmap

2011-08-10 Thread Tom Gall
On Wed, Aug 10, 2011 at 10:05 AM, Christian Robottom Reis wrote: > On Wed, Aug 10, 2011 at 09:18:04AM -0500, Tom Gall wrote: >> On Wed, Aug 10, 2011 at 9:05 AM, Alexander Sack wrote: >> > Does this involve adding easy/automatic benchmarks so we can track a) >> > improvements turbo gives over plai

Re: What are the chances of a phone based developer image

2011-08-10 Thread Ramana Radhakrishnan
> . Would you be interested in adding a Firefox-based benchmark? As a large > application it is a good testbed for LTO, FDO and other aggressive > optimizations. Sorry about the delayed response. I did notice your mail last week but I was busy with our conference and then the first couple of days

Re: linaro libjpeg-turbo roadmap

2011-08-10 Thread Christian Robottom Reis
On Wed, Aug 10, 2011 at 09:18:04AM -0500, Tom Gall wrote: > On Wed, Aug 10, 2011 at 9:05 AM, Alexander Sack wrote: > > Does this involve adding easy/automatic benchmarks so we can track a) > > improvements turbo gives over plain and b) improvements we do to turbo > > over time? If not, I would ver

Re: Why are our Android toolchains 32bit?

2011-08-10 Thread Alexander Sack
On Wed, Aug 10, 2011 at 4:29 PM, Bernhard Rosenkranzer wrote: > Hi, > while working on some improvements, I noticed that our Android > toolchain binaries are built as 32-bit x86. > Is there any reason for this (other than "we inherited it from AOSP")? > > While it doesn't matter much, it doesn't m

Why are our Android toolchains 32bit?

2011-08-10 Thread Bernhard Rosenkranzer
Hi, while working on some improvements, I noticed that our Android toolchain binaries are built as 32-bit x86. Is there any reason for this (other than "we inherited it from AOSP")? While it doesn't matter much, it doesn't make much sense to me - Android can't currently be built on 32-bit machines

Re: linaro libjpeg-turbo roadmap

2011-08-10 Thread Alexander Sack
On Wed, Aug 10, 2011 at 4:18 PM, Tom Gall wrote: > On Wed, Aug 10, 2011 at 9:05 AM, Alexander Sack wrote: >> On Wed, Aug 10, 2011 at 3:45 PM, Tom Gall wrote: >>> Hi All, >>> >>> I thought I would clarify what is in store for the next few linaro >>> cycles from a libjpeg-turbo perspective. >>> >>

Re: linaro libjpeg-turbo roadmap

2011-08-10 Thread Tom Gall
On Wed, Aug 10, 2011 at 9:05 AM, Alexander Sack wrote: > On Wed, Aug 10, 2011 at 3:45 PM, Tom Gall wrote: >> Hi All, >> >> I thought I would clarify what is in store for the next few linaro >> cycles from a libjpeg-turbo perspective. >> >> 11.08 >> 1.1.2 libjpeg-turbo (featuring cleaned up patche

Re: linaro libjpeg-turbo roadmap

2011-08-10 Thread Alexander Sack
On Wed, Aug 10, 2011 at 3:45 PM, Tom Gall wrote: > Hi All, > > I thought I would clarify what is in store for the next few linaro > cycles from a libjpeg-turbo perspective. > > 11.08 > 1.1.2 libjpeg-turbo (featuring cleaned up patches) > upstreaming and support of what could be a late august upstr

linaro libjpeg-turbo roadmap

2011-08-10 Thread Tom Gall
Hi All, I thought I would clarify what is in store for the next few linaro cycles from a libjpeg-turbo perspective. 11.08 1.1.2 libjpeg-turbo (featuring cleaned up patches) upstreaming and support of what could be a late august upstream 1.2 release 11.09 1.2 upstream based linaro release (presum

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

2011-08-10 Thread Detlev Zundel
Hi Chander, [...] >>> lease get rid of all these magic hard coded constants. Use symbolic >>> names instead. If needed, auto-generate these from the respective C >>> structs. If needed, create the C structs. >>> >> >> I will change hard coded values to symbolic names >> > > While doing this, I

Re: [PATCH 1/2] cpumask: introduce cpumask for hotpluggable CPUs

2011-08-10 Thread Amit Kucheria
On 11 Aug 09, Mike Turquette wrote: > On some platforms it is possible to have some CPUs which support CPU > hotplug and some which do not. Currently the prescence of an 'online' > sysfs entry in userspace is adequate for applications to know that a CPU > supports hotplug, but there is no convenie