Re: linux-next not booting on snowball

2011-12-14 Thread Linus Walleij
On Tue, Dec 13, 2011 at 1:35 PM, Linus Walleij linus.wall...@linaro.org wrote: On Wed, Dec 7, 2011 at 5:09 AM, Nicolas Pitre nicolas.pi...@linaro.org wrote: The kernel hangs at: u8500_map_io  - ux500_map_io    - ux500_read_asicid(addr=9001dbf4), base=9001d000      -  

Re: linux-next not booting on snowball

2011-12-14 Thread Mark Brown
On Wed, Dec 14, 2011 at 09:24:33AM +0100, Linus Walleij wrote: The above remaps and reads from some random ROM page to get the ASIC ID is actually not screwing things up. Right now. The ASIC ID reads are also done by Samsung platforms which boot fine - it's not strictly good but it happens to

Re: [PATCH 6/6] HACK: arm: reprogram twd based on clk notifier

2011-12-14 Thread Linus Walleij
Hi Mike, I just sent new patches for the TWD CPUfreq stuff, including the bug fix you provide below for clk_prepare(). They're in Russell's patch tracker: http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7210/1 http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7211/1

Re: [PATCH 3/7] HACK: omap: convert 44xx data to common struct clk

2011-12-14 Thread Paul Walmsley
Hi On Tue, 13 Dec 2011, Mike Turquette wrote: omap_clk_get_by_name must die. You do realize that it exists for a reason? That hardware clock names don't have anything to do with the Linux device model? - Paul ___ linaro-dev mailing list

Re: [PATCH 3/7] HACK: omap: convert 44xx data to common struct clk

2011-12-14 Thread Paul Walmsley
On Tue, 13 Dec 2011, Turquette, Mike wrote: On Tue, Dec 13, 2011 at 8:27 PM, Paul Walmsley p...@pwsan.com wrote: On Tue, 13 Dec 2011, Mike Turquette wrote: omap_clk_get_by_name must die. You do realize that it exists for a reason?  That hardware clock names don't have anything to do

Re: [PATCH v4 5/6] clk: basic gateable and fixed-rate clks

2011-12-14 Thread Ryan Mallon
On 14/12/11 14:53, Mike Turquette wrote: Many platforms support simple gateable clks and fixed-rate clks that should not be re-implemented by every platform. This patch introduces a gateable clk with a common programming model of gate control via a write of 1 bit to a register. Both

Re: [PATCH v4 3/6] clk: introduce the common clock framework

2011-12-14 Thread Ryan Mallon
On 14/12/11 14:53, Mike Turquette wrote: The common clk framework is an attempt to define a common struct clk which can be used by most platforms, and an API that drivers can always use safely for managing clks. The net result is consolidation of many different struct clk definitions and

Re: [PATCH 01/06] MFD: DA9052/53 MFD core module v10

2011-12-14 Thread Mark Brown
On Mon, Dec 12, 2011 at 08:06:56PM +0530, Ashish Jangam wrote: The DA9052/53 is a highly integrated PMIC subsystem with supply domain flexibility to support wide range of high performance application. Applied, thanks. ___ linaro-dev mailing list

Re: [PATCH 03/06] MFD: DA9052/53 MFD core module add SPI support v2

2011-12-14 Thread Mark Brown
On Mon, Dec 12, 2011 at 08:37:41PM +0530, Ashish Jangam wrote: This patch add SPI support for DA9052/53 MFD core module. Applied, thanks. ___ linaro-dev mailing list linaro-dev@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-dev

[PATCH v3 4/4] ARM: omap: pass minimal SoC/board data for UART from dt

2011-12-14 Thread Rajendra Nayak
Pass minimal data needed for console boot, from dt, for OMAP4 panda/sdp and OMAP3 beagle boards, and get rid of the static initialization from generic board file. Acked-by: Rob Herring rob.herr...@calxeda.com Signed-off-by: Rajendra Nayak rna...@ti.com --- arch/arm/boot/dts/omap3.dtsi|

[PATCH v3 2/4] omap-serial: Use default clock speed (48Mhz) if not specified

2011-12-14 Thread Rajendra Nayak
Use a default clock speed of 48Mhz, instead of ending up with 0, if platforms fail to specify a valid clock speed. Signed-off-by: Rajendra Nayak rna...@ti.com --- drivers/tty/serial/omap-serial.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git

[PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Rajendra Nayak
v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4 SDP and OMAP4 Panda boards. Patches can be found here.. git://gitorious.org/omap-pm/linux.git for-dt/serial I also had to pull in a fix[2] for DT testing (already in linux-omap master) which was

[PATCH v3 3/4] omap-serial: Add minimal device tree support

2011-12-14 Thread Rajendra Nayak
Adapt the driver to device tree and pass minimal platform data from device tree needed for console boot. No power management features will be suppported for now since it requires more tweaks around OCP settings to toggle forceidle/noidle/smartidle bits and handling remote wakeup and dynamic

ANN: git.linaro.org going down for up to 1h

2011-12-14 Thread Danilo Šegan
Hi all, We've experienced slowness with git.linaro.org yesterday that is harming our release process. Since we've already had new machine for hosting git.linaro.org being set up (in the final stages of it), we're about to switch the machines around. We've spent the morning testing the new

Re: [PATCH 05/06] Power: DA9052 Battery module V6

2011-12-14 Thread Fabio Estevam
On Wed, Dec 14, 2011 at 10:27 AM, Ashish Jangam ashish.jan...@kpitcummins.com wrote: +static u32 const vc_tbl[3][68][2] = { +       /* For temperature 10 degree celisus*/ s/celisus/Celsius Same on other places. Regards, Fabio Estevam ___

Re: [PATCH v4 3/6] clk: introduce the common clock framework

2011-12-14 Thread Thomas Gleixner
On Tue, 13 Dec 2011, Mike Turquette wrote: +void __clk_unprepare(struct clk *clk) +{ + if (!clk) + return; + + if (WARN_ON(clk-prepare_count == 0)) + return; + + if (--clk-prepare_count 0) + return; + + WARN_ON(clk-enable_count 0);

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Rob Herring
On 12/14/2011 05:55 AM, Rajendra Nayak wrote: v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4 SDP and OMAP4 Panda boards. Patches can be found here.. git://gitorious.org/omap-pm/linux.git for-dt/serial I also had to pull in a fix[2]

Re: ANN: git.linaro.org going down for up to 1h

2011-12-14 Thread Danilo Šegan
Hi all, У сре, 14. 12 2011. у 13:08 +0100, Danilo Šegan пише: This means that we'll be shutting off any git access to git.linaro.org shortly (at 12:30 UTC), and we expect a downtime of 30 minutes to get new machine up (but let's keep the window of 1h just in case). If you have any urgent

Re: [RFC PATCH 0/2] thermal: Add generic cpu cooling devices according to thermal framework

2011-12-14 Thread Amit Kachhap
Hi Nicolas, Is it possible for you to add these 2 patches for this month release? I am not able to give you the git link as there is seems some problem with the linaro git server. Also I attached the patches in case required. Thanks, Amit Daniel On 13 December 2011 20:43, Amit Daniel Kachhap

Re: ANN: git.linaro.org going down for up to 1h

2011-12-14 Thread Jon Medhurst (Tixy)
On Wed, 2011-12-14 at 15:38 +0100, Danilo Šegan wrote: Hi all, У сре, 14. 12 2011. у 13:08 +0100, Danilo Šegan пише: This means that we'll be shutting off any git access to git.linaro.org shortly (at 12:30 UTC), and we expect a downtime of 30 minutes to get new machine up (but let's

Re: ANN: git.linaro.org going down for up to 1h

2011-12-14 Thread Peter Maydell
On 14 December 2011 14:46, Jon Medhurst (Tixy) t...@linaro.org wrote: On Wed, 2011-12-14 at 15:38 +0100, Danilo Šegan wrote: We should be back up, with everything ready to go.  Do note that the ssh key has changed, so you will be prompted with warning notices about that. So all peoples

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Govindraj
Hi Rajendra, On Wed, Dec 14, 2011 at 5:25 PM, Rajendra Nayak rna...@ti.com wrote: v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4 SDP and OMAP4 Panda boards. Patches can be found here.. git://gitorious.org/omap-pm/linux.git for-dt/serial

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Kevin Hilman
Greg, Alan, Rajendra Nayak rna...@ti.com writes: v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4 SDP and OMAP4 Panda boards. With your ack on the drivers/tty/* stuff, I can queue this via the OMAP tree on top of the runtime PM conversion

Problems with timers with linux-next on snowball

2011-12-14 Thread Daniel Lezcano
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, while trying the linux-next at the point it boots (commit be9b7335e70696bee731c152429b1737e42fe163, after v3.2-rc4), I noticed the timers were not working properly with CONFIG_NO_HZ. It is easy to reproduce with 'time sleep 1' where the timer

Re: ANN: git.linaro.org going down for up to 1h

2011-12-14 Thread Jon Medhurst (Tixy)
On Wed, 2011-12-14 at 15:06 +, Peter Maydell wrote: On 14 December 2011 14:46, Jon Medhurst (Tixy) t...@linaro.org wrote: On Wed, 2011-12-14 at 15:38 +0100, Danilo Šegan wrote: We should be back up, with everything ready to go. Do note that the ssh key has changed, so you will be

Re: [RFC PATCH 0/2] thermal: Add generic cpu cooling devices according to thermal framework

2011-12-14 Thread Amit Kachhap
Hi Nicolas, Please pull my samsung thermal implementation work from git repository (git://git.linaro.org/people/amitdanielk/linux.git thermal_cpu_cooling). Some of the patches are under review and some are in mainline in 3.2 rc* version. It is all based on the tip of your tree. The patches are

Re: [RFC PATCH 0/2] thermal: Add generic cpu cooling devices according to thermal framework

2011-12-14 Thread Nicolas Pitre
On Wed, 14 Dec 2011, Amit Kachhap wrote: Hi Nicolas, Is it possible for you to add these 2 patches for this month release? I am not able to give you the git link as there is seems some problem with the linaro git server. Also I attached the patches in case required. I merged them.

Re: [RFC PATCH 0/2] thermal: Add generic cpu cooling devices according to thermal framework

2011-12-14 Thread Nicolas Pitre
On Wed, 14 Dec 2011, Amit Kachhap wrote: Hi Nicolas, Please pull my samsung thermal implementation work from git repository (git://git.linaro.org/people/amitdanielk/linux.git thermal_cpu_cooling). Some of the patches are under review and some are in mainline in 3.2 rc* version. It is all

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Alan Cox
On Wed, 14 Dec 2011 07:20:13 -0800 Kevin Hilman khil...@ti.com wrote: Greg, Alan, Rajendra Nayak rna...@ti.com writes: v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4 SDP and OMAP4 Panda boards. With your ack on the

Re: [Patch 06/06] Regulator: DA9052/53 Regulator support v5

2011-12-14 Thread Mark Brown
On Fri, Dec 09, 2011 at 07:48:20PM +0530, Ashish Jangam wrote: The Dialog PMIC has below featured regulators:- DA9052-BC - 4 DVS Buck converters 0.5V - 3.6V upto 1Amp. DA9053-AA/BX - 4 DVS Buck converters 0.5V - 2.5V upto 3Amp. DA9052/53 - 10 Programmable LDO's High PSSR, 1% accuracy. Applied

Re: [PATCH v3 0/4] OMAP serial device tree support

2011-12-14 Thread Greg KH
On Wed, Dec 14, 2011 at 05:18:43PM +, Alan Cox wrote: On Wed, 14 Dec 2011 07:20:13 -0800 Kevin Hilman khil...@ti.com wrote: Greg, Alan, Rajendra Nayak rna...@ti.com writes: v3 is rebased on top of the latest serial runtime patches[1] and boot tested with/without DT on OMAP4

Re: [PATCH v4 3/6] clk: introduce the common clock framework

2011-12-14 Thread Turquette, Mike
On Tue, Dec 13, 2011 at 8:52 PM, Ryan Mallon rmal...@gmail.com wrote: On 14/12/11 14:53, Mike Turquette wrote: +void __clk_unprepare(struct clk *clk) +{ +     if (!clk) +             return; + +     if (WARN_ON(clk-prepare_count == 0)) +             return; + +     if

Re: [PATCH v3 4/4] ARM: omap: pass minimal SoC/board data for UART from dt

2011-12-14 Thread Tony Lindgren
* Rajendra Nayak rna...@ti.com [111214 03:24]: Pass minimal data needed for console boot, from dt, for OMAP4 panda/sdp and OMAP3 beagle boards, and get rid of the static initialization from generic board file. Acked-by: Rob Herring rob.herr...@calxeda.com Signed-off-by: Rajendra Nayak

git oddness

2011-12-14 Thread Tom Gall
Hi All, I'm trying to push some code to my repo on git.linaro.org and it's like the repo is silently failing Note the following: tgall@mars:~/libjpeg-turbo-android/libjpeg-turbo$ git push ssh://tomg...@git.linaro.org/~/public_git/libjpeg-turbo/libjpeg-turbo.git

Re: git oddness

2011-12-14 Thread Tom Gall
On Wed, Dec 14, 2011 at 8:55 PM, Yasushi SHOJI ya...@atmark-techno.com wrote: Hi, At Wed, 14 Dec 2011 20:06:14 -0600, Tom Gall wrote: I'm trying to push some code to my repo on git.linaro.org and it's like the repo is silently failing Note the following:

Re: git oddness

2011-12-14 Thread Andy Green
On 12/15/2011 11:08 AM, Somebody in the thread at some point said: On Wed, Dec 14, 2011 at 8:55 PM, Yasushi SHOJIya...@atmark-techno.com wrote: Hi, At Wed, 14 Dec 2011 20:06:14 -0600, Tom Gall wrote: I'm trying to push some code to my repo on git.linaro.org and it's like the repo is

Re: git oddness

2011-12-14 Thread Andy Doan
On 12/14/2011 08:06 PM, Tom Gall wrote: Hi All, I'm trying to push some code to my repo on git.linaro.org and it's like the repo is silently failing Note the following: tgall@mars:~/libjpeg-turbo-android/libjpeg-turbo$ git push

Re: [PATCH v3 4/4] ARM: omap: pass minimal SoC/board data for UART from dt

2011-12-14 Thread Rajendra Nayak
On Thursday 15 December 2011 12:55 AM, Tony Lindgren wrote: * Rajendra Nayakrna...@ti.com [111214 03:24]: Pass minimal data needed for console boot, from dt, for OMAP4 panda/sdp and OMAP3 beagle boards, and get rid of the static initialization from generic board file. Acked-by: Rob