Re: Unable to install svn on Ubuntu 12.04 (64-bit)

2013-02-27 Thread Fathi Boudra
On 28 February 2013 08:27, Rajkiran Mulugu wrote: > Hi Fathi Boudra, > > We tried with below commands but we are getting error as follows : > > 1.)Getting from the Ubuntu package: > > sudo add-apt-repository ppa:linaro-maintainers/tools > sudo apt-get update > sudo apt-get install linaro-image-too

Re: Unable to install svn on Ubuntu 12.04 (64-bit)

2013-02-27 Thread Fathi Boudra
On 28 February 2013 07:54, Rajkiran Mulugu wrote: > Hi James, > We tried the link you sent for Latest Release of linaro-media-create as > below: > > But we are facing below error (shown in RED COLOUR). > > raj@Rajkiran:~/uefi$ sudo add-apt-repository > ppa:https://launchpad.net/~linaro-maintainers

RE: Unable to install svn on Ubuntu 12.04 (64-bit)

2013-02-27 Thread Rajkiran Mulugu
Hi James, We tried the link you sent for Latest Release of linaro-media-create as below: But we are facing below error (shown in RED COLOUR). raj@Rajkiran:~/uefi$ sudo add-apt-repository ppa:https://launchpad.net/~linaro-maintainers/+archive/tools Cannot access PPA (https://launchpad.net/api/1.0

[PATCH 1/5] clk: allow reentrant calls into the clk framework

2013-02-27 Thread Mike Turquette
Reentrancy into the clock framework from the clk.h api is highly desirable. This feature is necessary for clocks that are prepared and unprepared via i2c_transfer (which includes many PMICs and discrete audio chips) and it is also necessary for performing dynamic voltage & frequency scaling via cl

[PATCH 3/5] cpufreq: omap: scale regulator from clk notifier

2013-02-27 Thread Mike Turquette
This patch moves direct control of the MPU voltage regulator out of the cpufreq driver .target callback and instead uses the common dvfs clk rate-change notifier infrastructure. Ideally it would be nice to reduce the .target callback for omap's cpufreq driver to a simple call to clk_set_rate. For

[PATCH 2/5] clk: notifier handler for dynamic voltage scaling

2013-02-27 Thread Mike Turquette
Dynamic voltage and frequency scaling (dvfs) is a common power saving technique in many of today's modern processors. This patch introduces a common clk rate-change notifier handler which scales voltage appropriately whenever clk_set_rate is called on an affected clock. There are three prerequisi

[PATCH v3 0/5] common clk framework reentrancy & dvfs, take 3

2013-02-27 Thread Mike Turquette
Hello, This series implements reentrancy for the common clk implementation of the clk.h api. Making reentrant calls into the clock framework is both necessary and desirable for many use cases such as enabling off-chip clocks via i2c. The first patch in the series implements this. A neat side ef

[PATCH 4/5] HACK: set_parent callback for OMAP4 non-core DPLLs

2013-02-27 Thread Mike Turquette
This is a silly patch that demonstrates calling clk_set_parent from within a .set_rate callback, which itself was called by clk_set_rate. It may make your board burst into flames or otherwise void various warrantees. I do not suggest that the OMAP folks take this approach in unless they really wan

[PATCH 5/5] HACK: omap: opp: add fake 400MHz OPP to bypass MPU

2013-02-27 Thread Mike Turquette
From: Mike Turquette The following is another silly patch which was done to test calling clk_set_parent from within a call to clk_set_rate. It may make your board burst into flames or otherwise void various warrantees. This patch introduces a 400MHz OPP for the MPU, which happens to correspond

Re: [PATCH v9 0/2] Add display-timing node parsing to exynos drm fimd

2013-02-27 Thread Viresh Kumar
On 28 February 2013 09:42, Vikas Sajjan wrote: > Add display-timing node parsing to drm fimd and depends on > the display helper patchset at > http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html > > It also adds pinctrl support for drm fimd. Hi Vikas, Can you please keep lin

[PATCH v9 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Vikas Sajjan
Add support for parsing the display-timing node using video helper function. The DT node parsing is done only if 'dev.of_node' exists and the NON-DT logic is still maintained under the 'else' part. Signed-off-by: Leela Krishna Amudala Signed-off-by: Vikas Sajjan Acked-by: Joonyoung Shim --- d

[PATCH v9 0/2] Add display-timing node parsing to exynos drm fimd

2013-02-27 Thread Vikas Sajjan
Add display-timing node parsing to drm fimd and depends on the display helper patchset at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html It also adds pinctrl support for drm fimd. changes since v8: - replaced IS_ERR() with IS_ERR_OR_NULL(), because devm_p

[PATCH v9 2/2] video: drm: exynos: Add pinctrl support to fimd

2013-02-27 Thread Vikas Sajjan
Adds support for pinctrl to drm fimd Signed-off-by: Leela Krishna Amudala Signed-off-by: Vikas Sajjan --- drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 + 1 file changed, 9 insertions(+) diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Joonyoung Shim
On 02/28/2013 11:45 AM, Vikas Sajjan wrote: Hi, On 28 February 2013 08:07, Joonyoung Shim wrote: On 02/27/2013 08:49 PM, Vikas Sajjan wrote: Add support for parsing the display-timing node using video helper function. The DT node parsing and pinctrl selection is done only if 'dev.of_node' ex

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Vikas Sajjan
On Thu, Feb 28, 2013 at 8:21 AM, Joonyoung Shim wrote: > On 02/28/2013 11:45 AM, Vikas Sajjan wrote: >> >> Hi, >> >> On 28 February 2013 08:07, Joonyoung Shim wrote: >>> >>> On 02/27/2013 08:49 PM, Vikas Sajjan wrote: Add support for parsing the display-timing node using video helper >>

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Joonyoung Shim
On 02/27/2013 08:49 PM, Vikas Sajjan wrote: Add support for parsing the display-timing node using video helper function. The DT node parsing and pinctrl selection is done only if 'dev.of_node' exists and the NON-DT logic is still maintained under the 'else' part. Signed-off-by: Leela Krishna Am

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Vikas Sajjan
Hi, On 28 February 2013 08:07, Joonyoung Shim wrote: > On 02/27/2013 08:49 PM, Vikas Sajjan wrote: >> >> Add support for parsing the display-timing node using video helper >> function. >> >> The DT node parsing and pinctrl selection is done only if 'dev.of_node' >> exists and the NON-DT logic is

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Stéphane Marchesin
On Wed, Feb 27, 2013 at 3:49 AM, Vikas Sajjan wrote: > Add support for parsing the display-timing node using video helper > function. > > The DT node parsing and pinctrl selection is done only if 'dev.of_node' > exists and the NON-DT logic is still maintained under the 'else' part. > > Signed-off-

Re: [PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Stéphane Marchesin
On Wed, Feb 27, 2013 at 11:21 AM, Stéphane Marchesin wrote: > On Wed, Feb 27, 2013 at 3:49 AM, Vikas Sajjan wrote: >> Add support for parsing the display-timing node using video helper >> function. >> >> The DT node parsing and pinctrl selection is done only if 'dev.of_node' >> exists and the NON

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Lennart Sorensen
On Wed, Feb 27, 2013 at 06:38:55PM -0300, Cláudio Sampaio wrote: > Is there any device with Aarch64 on sale? I couldn't find any, only some > mentions from Calxeda. > Would you mind to provide suggestions of any seller which sells through the > internet? There are none for sale yet. I believe som

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Cláudio Sampaio
On Tue, Feb 26, 2013 at 11:10 PM, Wookey wrote: > State of the Debian/Ubuntu arm64 port > = > > *** Arm64 lives! *** > Hi, Is there any device with Aarch64 on sale? I couldn't find any, only some mentions from Calxeda. Would you mind to provide suggestions of

Re: Unable to install svn on Ubuntu 12.04 (64-bit)

2013-02-27 Thread James Tunnicliffe
To get the latest release of linaro-media-create please add the following PPA and update: https://launchpad.net/~linaro-maintainers/+archive/tools We released a new version of linaro-media-create yesterday that should resolve this issue. Thanks, James On 27 February 2013 06:40, Amar Shankar wr

Re: [PATCH v4] sched: fix init NOHZ_IDLE flag

2013-02-27 Thread Vincent Guittot
On 27 February 2013 17:13, Frederic Weisbecker wrote: > On Wed, Feb 27, 2013 at 09:28:26AM +0100, Vincent Guittot wrote: >> > Ok I don't like having a per cpu state in struct sched domain but for >> > now I can't find anything better. So my suggestion is that we do this >> > and describe well the

Re: [PATCH v4] sched: fix init NOHZ_IDLE flag

2013-02-27 Thread Frederic Weisbecker
On Wed, Feb 27, 2013 at 09:28:26AM +0100, Vincent Guittot wrote: > > Ok I don't like having a per cpu state in struct sched domain but for > > now I can't find anything better. So my suggestion is that we do this > > and describe well the race, define the issue in the changelog and code > > comment

Re: [RFC/PATCH 1/5] context tracking: conditionalize guest support based on CONFIG_KVM

2013-02-27 Thread Frederic Weisbecker
2013/2/27 Kevin Hilman : > From 61e35f069a64c03a2bce348487d41072aeb9f36b Mon Sep 17 00:00:00 2001 > From: Kevin Hilman > Date: Thu, 14 Feb 2013 10:17:37 -0800 > Subject: [PATCH] context tracking: conditionalize guest support based on > CONFIG_KVM > > So that it can build on !KVM systems too. > >

Re: [RFC/PATCH 1/5] context tracking: conditionalize guest support based on CONFIG_KVM

2013-02-27 Thread Kevin Hilman
Namhyung Kim writes: > 2013-02-26 (화), 11:29 -0800, Kevin Hilman: >> Frederic Weisbecker writes: >> >> > On Wed, Feb 20, 2013 at 11:41:38AM -0800, Kevin Hilman wrote: >> >> So that it can build on !KVM systems too. >> >> >> >> Signed-off-by: Kevin Hilman >> >> --- >> >> kernel/context_tracki

big.LITTLE MP Scheduler test summary-(week-9)-13.02

2013-02-27 Thread Naresh Kamboju
Hi, Release test report (week-9) 13.02: Here is test result summary for big.LITTLE MP Scheduler test on TC2 platform with Android image sched_tests.git No of Test Cases Tests Run Tests Pass Tests Fail Absolute pass rate (%) Failure Analysis/Comments Regression20 19 19 0 100 - mpba

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Ian Campbell
On Wed, 2013-02-27 at 13:37 +, Wookey wrote: > I had to choose between getting this working in vaguely finite time > and keeping both Debian and Ubuntu bootstraps in sync, so unstable > just got stuck at the 'toolchain bootstrap needed' stage. That's quite reasonable > Is raring useful to you

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Wookey
+++ Ian Campbell [2013-02-27 12:00 +]: > On Wed, 2013-02-27 at 02:10 +, Wookey wrote: > > > > Setting up an arm64 build environment is very simple. Use > > sbuild-createchroot or mk-sbuild > > and point at the bootstrap repo, with a bit of config and some updated > > tools packages from

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Ian Campbell
On Wed, 2013-02-27 at 02:10 +, Wookey wrote: > > Setting up an arm64 build environment is very simple. Use sbuild-createchroot > or mk-sbuild > and point at the bootstrap repo, with a bit of config and some updated tools > packages from > the repo (amd64 only supplied). Details are given on

[PATCH v8 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-02-27 Thread Vikas Sajjan
Add support for parsing the display-timing node using video helper function. The DT node parsing and pinctrl selection is done only if 'dev.of_node' exists and the NON-DT logic is still maintained under the 'else' part. Signed-off-by: Leela Krishna Amudala Signed-off-by: Vikas Sajjan --- drive

[PATCH v8 2/2] video: drm: exynos: Add pinctrl support to fimd

2013-02-27 Thread Vikas Sajjan
Adds support for pinctrl to drm fimd Signed-off-by: Leela Krishna Amudala Signed-off-by: Vikas Sajjan --- drivers/gpu/drm/exynos/exynos_drm_fimd.c |9 + 1 file changed, 9 insertions(+) diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c

[PATCH v8 0/2] Add display-timing node parsing to exynos drm fimd

2013-02-27 Thread Vikas Sajjan
Add display-timing node parsing to drm fimd and depends on the display helper patchset at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html It also adds pinctrl support for drm fimd. changes since v7: - addressed comments from Joonyoung Shim to remove a unnecessar

Re: 13.01 Versatile Express Android build unstable

2013-02-27 Thread Jon Medhurst (Tixy)
On Tue, 2013-02-26 at 11:27 -0800, D D wrote: > Yes, I have tried both the config in the release notes as well as > configurations to boot A7. > The configurations to boot A7 hang while executing the BOOTSCRIPT. > The release note configurations get past that state, boot up the > kernel and hang a

Re: [PATCH v4] sched: fix init NOHZ_IDLE flag

2013-02-27 Thread Vincent Guittot
On 26 February 2013 18:43, Frederic Weisbecker wrote: > 2013/2/26 Vincent Guittot : >> On 26 February 2013 14:16, Frederic Weisbecker wrote: >>> 2013/2/22 Vincent Guittot : I wanted to avoid having to use the sd pointer for testing NOHZ_IDLE flag because it occurs each time we go into i

Re: arm64 Debian/Ubuntu port image available

2013-02-27 Thread Marcin Juszkiewicz
W dniu 27.02.2013 03:10, Wookey pisze: > State of the Debian/Ubuntu arm64 port > = > > *** Arm64 lives! *** Congratulations Wookey (and everyone involved)! > * There is now a bootable (raring) image to download and run > Once you've created a tarball chroot