Re: CALL FOR TESTING: proposed enhancements for OMAP4

2011-04-20 Thread Andy Green
On 04/20/2011 11:20 PM, Somebody in the thread at some point said: Hi - I noticed this commit: This introduces a defconfig version of Sebastien Jan's reference config for Panda. To use the defconfig, you need to use the following scheme to expand it back to being a full config make ARCH=ar

Re: Announcement: Linaro ARM Optimized Toolchain for Android platform

2011-04-20 Thread Jim Huang
On 21 April 2011 05:54, Michael Hope wrote: > Hi Jim.  Good effort.  The Android patch set will be included in > gcc-linaro-4.5-2011.04 which is due out today. > hi Michael, Thanks! Look forward to new release. > We need to discuss toolchain build scripts at the summit.  There's a > want for bu

Re: CALL FOR TESTING: proposed enhancements for OMAP4

2011-04-20 Thread Robert Nelson
On Wed, Apr 20, 2011 at 5:20 PM, John Rigby wrote: > Nicolas, Andy: > > I noticed this commit: > > This introduces a defconfig version of Sebastien Jan's reference > config for Panda. > > To use the defconfig, you need to use the following scheme to > expand it back to being a full config > >  mak

Re: CALL FOR TESTING: proposed enhancements for OMAP4

2011-04-20 Thread John Rigby
Nicolas, Andy: I noticed this commit: This introduces a defconfig version of Sebastien Jan's reference config for Panda. To use the defconfig, you need to use the following scheme to expand it back to being a full config make ARCH=arm defconfig cat arch/arm/configs/omap4_defconfig >>.config

Re: Announcement: Linaro ARM Optimized Toolchain for Android platform

2011-04-20 Thread Michael Hope
Hi Jim. Good effort. The Android patch set will be included in gcc-linaro-4.5-2011.04 which is due out today. We need to discuss toolchain build scripts at the summit. There's a want for builds of pretty much every combination of {Android,Linux,bare metal?} target, crossed with {Native,Cross} b

CALL FOR TESTING: proposed enhancements for OMAP4

2011-04-20 Thread Nicolas Pitre
Andy Green has worked on a set of patches adding many features to OMAP4 such as HDMI audio/video, FM receiver, etc. Before I merge that into the Linaro kernel tree I need some assurance that this won't break existing OMAP3 support, especially video. The branch is available in the linux-linaro

[PM] 20/04/2011 - Minutes for the Power Management WG weekly call

2011-04-20 Thread Amit Kucheria
Hi All, The minutes of the power management weekly call can be found at : https://wiki.linaro.org/WorkingGroups/PowerManagement/Meetings/2011-04-20 Highlights: 11.11 planning Regards, Amit ___ linaro-dev mailing list linaro-dev@lists.linaro.org http:

ARM/Thumb-2 kernel size comparison

2011-04-20 Thread Dave Martin
The question of the size impact of building the kernel in Thumb-2 came up to day, so I extracted some quick numbers: $ size vmlinux-* textdata bss dec hex filename 8420507 463356 826928 9710791 942cc7 vmlinux-arm 6715539 463260 826928 8005727 7a285f vmlinux-thumb2 This is

Mainlining android fastboot support to upstream u-boot

2011-04-20 Thread John Rigby
On Tue, Apr 19, 2011 at 12:33 PM, Wolfgang Denk wrote: > Dear Jim Huang, > > In message you wrote: >> >> My idea is that we require abstract 'bootloader' component in Android >> device/linaro/common, and (patched) 'u-boot' would be the provider of >> 'bootloader' component in >> device/linaro/Lin

[Android: device/linaro/common.git] Mount /system as /dev/block/mmcblk0p2

2011-04-20 Thread Patrik Ryd
Mounting system as mmc@blk0p2 did not work. Replaced it with /dev/block/mmcbkk0p2 as a temporary solution. --- init.rc |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/init.rc b/init.rc index c2836b9..e5b64ed 100644 --- a/init.rc +++ b/init.rc @@ -91,10 +91,9 @@ logle

Re: [PATCH v2 08/12] mmc: add handling for two parallel block requests in issue_rw_rq

2011-04-20 Thread Per Forlin
On 6 April 2011 21:07, Per Forlin wrote: > Change mmc_blk_issue_rw_rq() to become asynchronous. > The execution flow looks like this: > The mmc-queue calls issue_rw_rq(), which sends the request > to the host and returns back to the mmc-queue. The mmc-queue calls > isuue_rw_rq() again with a new r

Re: [PATCH v2 00/12] mmc: use nonblock mmc requests to minimize latency

2011-04-20 Thread Per Forlin
On 16 April 2011 17:48, Shawn Guo wrote: > Hi Per, > > On Wed, Apr 06, 2011 at 09:07:01PM +0200, Per Forlin wrote: > [...] >> >> Per Forlin (12): >>   mmc: add none blocking mmc request function >>   mmc: mmc_test: add debugfs file to list all tests >>   mmc: mmc_test: add test for none blocking t

Announcement: Linaro ARM Optimized Toolchain for Android platform

2011-04-20 Thread Jim Huang
Hello list, Today we're announcing a new technical preview of ARM optimized toolchain for Android platform by Linaro[1]. Linaro is a NFP (Not For Profit) organization that aims to make embedded open source development easier and faster.  Regardless of Android release cycle from AOSP, Linaro would

[PATCH android/bionic] Add ARM optimized strcmp()

2011-04-20 Thread Jim Huang
Reference results of the experiments on TI OMAP3430 at 600 MHz $ bench_strcmp -N "strcmp_1k" -s 1k -I 200 [original C code] prc thr usecs/call samples errors cnt/samp size strcmp_1k 1 1 10.38000 102 0 15000 1024 [ARM optimized code] prc thr usecs/call samples errors cnt/samp size strcmp_1k 1 1 3

Re: [PATCH v2 03/12] mmc: mmc_test: add test for none blocking transfers

2011-04-20 Thread Per Forlin
On 17 April 2011 17:46, Shawn Guo wrote: > On Wed, Apr 06, 2011 at 09:07:04PM +0200, Per Forlin wrote: > [...] >> +static int mmc_test_rw_multiple(struct mmc_test_card *test, >> +                             struct mmc_test_multiple_rw *tdata, >> +                             unsigned int reqsize,

Re: [PATCH v2 03/12] mmc: mmc_test: add test for none blocking transfers

2011-04-20 Thread Per Forlin
On 17 April 2011 09:09, Lin Tony-B19295 wrote: > Hi Per > >        Just have a glance of your patch, good thinking. But I have a question > about this patch. You modified mmc_test to test your driver. Does it mean > your driver's performance enhancement depends on application? I added those test

Re: [PATCH v2 01/12] mmc: add none blocking mmc request function

2011-04-20 Thread Per Forlin
Hi, On 15 April 2011 12:34, David Vrabel wrote: > On 06/04/11 20:07, Per Forlin wrote: >> Previously there has only been one function mmc_wait_for_req >> to start and wait for a request. This patch adds >>  * mmc_start_req - starts a request wihtout waiting >>  * mmc_wait_for_req_done - waits unt

[Android: platform/manifest.git] Added manifest for LEB for Pandaboard

2011-04-20 Thread Patrik Ryd
--- LEB-panda.xml | 195 + 1 files changed, 195 insertions(+), 0 deletions(-) create mode 100644 LEB-panda.xml diff --git a/LEB-panda.xml b/LEB-panda.xml new file mode 100644 index 000..3b11bd6 --- /dev/null +++ b/LEB-panda.xml @@ -0,0