Hi Chris, we actually have a project in progress called LAVA to do something
very similar to this. Our initial target is to test full linaro images and
hardware packs, however we are also very interested in extending this to
include running with just an updated kernel in a known good image to test
Hi Linaro folks,
I'd like to set up an automated testing environment to help me maintain
the MMC subsystem: just a few boards of different architectures booting
each day's linux-next and running basic performance and integrity tests
without any manual intervention involved. I've got access to rem
Hi Paul,
There is a bug for it in launchpad. It was created as a private bug.
Angus
On Wed, Apr 6, 2011 at 8:14 AM, Paul Larson wrote:
> Is there a bug for this in launchpad yet? I see this hang on the
> board we have in the validation lab too, and it's especially annoying
> there since we don
On 04/06/2011 03:28 PM, Yong Shen wrote:
Hi Daniel,
It runs well on my board so far.
I have an igep v2.
I will try to do more test to reproduce it. Meanwhile, could you please
print your clock tree for me? Using 'powerdebug -cvd'.
Sure here it is, I put the result of the 'tree' command and
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 that the hang was just as
the display gets set up on a successful boot.
Kernel config and boot logs ar
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:
>> >>
>> >>> Hi Nicolas,
>> >>>
>> >>> Pls find rebased OMAP DVFS patches attached.
pre_req() runs dma_map_sg() and prepares the dma descriptor
for the next mmc data transfer. post_req() runs dma_unmap_sg.
If not calling pre_req() before mmci_request(), mmci_request()
will prepare the cache and dma just like it did it before.
It is optional to use pre_req() and post_req() for mmci
This simple fault injection proved to be very useful to
test the error handling in the block.c rw_rq(). It may
still be useful to test if the host driver handle
pre_req() and post_req() correctly in case of errors.
Signed-off-by: Per Forlin
---
drivers/mmc/core/core.c| 54 +
pre_req() runs dma_map_sg() post_req() runs dma_unmap_sg.
If not calling pre_req() before omap_hsmmc_request(), request()
will prepare the cache just like it did it before.
It is optional to use pre_req() and post_req().
Signed-off-by: Per Forlin
---
drivers/mmc/host/omap_hsmmc.c | 87
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 request. This new request is prepared,
in isuue_rw_rq
Don't use the returned sg_len from dma_map_sg() as inparameter
to dma_unmap_sg(). Use the original sg_len for both dma_map_sg
and dma_unmap_sg.
Signed-off-by: Per Forlin
---
drivers/mmc/host/omap_hsmmc.c |5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/mmc/hos
Add an additional mmc queue request instance to make way for
two active block requests. One request may be active while the
other request is being prepared.
Signed-off-by: Per Forlin
---
drivers/mmc/card/queue.c | 44 ++--
drivers/mmc/card/queue.h |3
Break out code without functional changes. This simplifies the code and
makes way for handle two parallel request.
Signed-off-by: Per Forlin
---
drivers/mmc/card/block.c | 225 +++---
1 files changed, 132 insertions(+), 93 deletions(-)
diff --git a/drive
Break out code from mmc_blk_issue_rw_rq to create a
block request prepare function. This doesn't change
any functionallity. This helps when handling more
than one active block request.
Signed-off-by: Per Forlin
---
drivers/mmc/card/block.c | 170 -
1
The way the request data is organized in the mmc queue struct
it only allows processing of one request at the time.
This patch adds a new struct to hold mmc queue request data such as
sg list, request, blk request and bounce buffers, and updates any functions
depending on the mmc queue struct. This
Add four tests for read and write performance per
different transfer size, 4k to 4M.
* Read using blocking mmc request
* Read using none blocking mmc request
* Write using blocking mmc request
* Write using none blocking mmc request
The host dirver must support pre_req() and post_req()
in orde
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 until request is done
* mmc_pre_req - asks the host driver to prepare for the next job
* mmc_post_req
How significant is the cache maintenance over head?
It depends, the eMMC are much faster now
compared to a few years ago and cache maintenance cost more due to
multiple cache levels and speculative cache pre-fetch. In relation the
cost for handling the caches have increased and is now a bottle neck
Add a debugfs file "testlist" to print all available tests
Signed-off-by: Per Forlin
---
drivers/mmc/card/mmc_test.c | 30 ++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c
index f5cedec..466
On Wed, Apr 6, 2011 at 1:08 AM, Patrik Ryd wrote:
> ---
> default.xml | 17 ++---
> 1 files changed, 10 insertions(+), 7 deletions(-)
>
> diff --git a/default.xml b/default.xml
> index dc6411d..09fca60 100644
> --- a/default.xml
> +++ b/default.xml
> @@ -7,21 +7,24 @@
> r
Enclosed you'll find a link to the agenda, notes and actions from the
Linaro Developer Platforms Weekly Status meeting held on April 6th
in #linaro-meeting on irc.freenode.net at 15:00 UTC.
https://wiki.linaro.org/Platform/DevPlatform/Meetings/2011-04-06
Actions from the meeting where as follows:
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:
> >>
> >>> Hi Nicolas,
> >>>
> >>> Pls find rebased OMAP DVFS patches attached. Apologies for the delay
> >>> as I
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
Is there a bug for this in launchpad yet? I see this hang on the
board we have in the validation lab too, and it's especially annoying
there since we don't have a good way to hard reset this board remotely
yet.
On Tue, Apr 5, 2011 at 4:40 AM, Tushar Behera wrote:
> Hi,
>
> While executing reboot
Hi Daniel,
It runs well on my board so far.
I will try to do more test to reproduce it. Meanwhile, could you please
print your clock tree for me? Using 'powerdebug -cvd'.
Cheers
Yong
On Wed, Apr 6, 2011 at 8:45 PM, Daniel Lezcano wrote:
> On 04/05/2011 10:28 AM, yong.s...@linaro.org wrote:
>
>>
Hi,
The notes and actions for this weeks Android Platform Team meeting along
with team activity reports are now available at:
https://wiki.linaro.org/Platform/Android/Meetings/2011-04-06
= Actions Recorded =
* asac to invite TI to Android weekly meeting
* asac to chase TI on the mm bits
On 04/05/2011 10:28 AM, yong.s...@linaro.org wrote:
From: Yong Shen
everytime when screen refresh, the clock_info data stucture will
be reacclocated, which does not make sence. This patch addresses
this issue.
Signed-off-by: Yong Shen
Hi Yong,
I tried this patch but it segfaults :/
gdb powe
On Wed, Apr 6, 2011 at 11:36 AM, Yong Shen wrote:
>
>
> On Tue, Apr 5, 2011 at 8:49 PM, Daniel Lezcano
> wrote:
>>
>> On 04/05/2011 10:28 AM, yong.s...@linaro.org wrote:
>>>
>>> From: Yong Shen
>>>
>>> Signed-off-by: Yong Shen
>>> ---
>>> clocks.c | 54
>>> +
On Tue, Apr 5, 2011 at 8:49 PM, Daniel Lezcano wrote:
> On 04/05/2011 10:28 AM, yong.s...@linaro.org wrote:
>
>> From: Yong Shen
>>
>> Signed-off-by: Yong Shen
>> ---
>> clocks.c | 54
>> +-
>> powerdebug.c |3 +++
>> powerdebug.h |
On 30 March 2011 15:07, Luse Cheng wrote:
> Integrate Linaro-GDB in Android toolchain build system
> ---
> linaro-build.sh | 126
> ++
> 1 files changed, 79 insertions(+), 47 deletions(-)
Thanks! Merged in Linaro HEAD.
__
30 matches
Mail list logo