RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > Sent: Friday, January 07, 2011 5:22 AM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: Re: 4430SDP boot failure [..] > > > OMAP44XX SDP # fatls mmc 0 > > 1935000 u

Re: [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread J, KEERTHY
On Thu, Jan 6, 2011 at 11:28 AM, Kalliguddi, Hema wrote: > Keerthy, > > Minor comments... > > Regards, > Hema > > On Thu, Jan 6, 2011 at 9:47 AM, Keerthy wrote: >> Introducing a driver for MADC on TWL4030 powerIC. MADC stands for monitoring >> ADC. This driver monitors the real time conversion of

RE: [PATCH v2 1/5] omap2plus: clockdomain: Trivial fix for build break because of clktrctrl_mask

2011-01-07 Thread Rajendra Nayak
> -Original Message- > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Kevin Hilman > Sent: Thursday, January 06, 2011 11:58 PM > To: Paul Walmsley > Cc: Santosh Shilimkar; linux-omap@vger.kernel.org; t...@atomide.com; linux-arm-ker...@lists.inf

RE: [PATCH v2 2/5] omap2plus: prm: Trvial build break fix for undefined reference to 'omap2_prm_read_mod_reg'

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Paul Walmsley [mailto:p...@pwsan.com] > Sent: Thursday, January 06, 2011 11:28 PM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; khil...@ti.com; t...@atomide.com; > linux-arm-ker...@lists.infradead.org > Subject: Re: [PATCH v2 2/5] omap2plus: prm: Trv

RE: [PATCH] omap: wd_timer: Fix crash frm wdt_probe when !CONFIG_RUNTIME_PM

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Paul Walmsley [mailto:p...@pwsan.com] > Sent: Thursday, January 06, 2011 11:56 PM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; linux-arm-ker...@lists.infradead.org > Subject: Re: [PATCH] omap: wd_timer: Fix crash frm wdt_probe when > !CONFIG_RUNTIME

Re: [PATCH 1/1] arm: omap: gpio: define .disable callback for gpio irq chip

2011-01-07 Thread David Brownell
> o lazy-disable state This is an odd state, and confusion regularly comes up ... I've never been a fan of having the imperatively named disable_irq() act like a disable_irq_at a_random_later_time_ _but_nyet(). If one must have the latter function, clearer IMO to name it better and have disable

[RFT/PATCH v2 00/12] Retu meets GENIRQ

2011-01-07 Thread Felipe Balbi
Hi all, Second try of moving Retu to GENIRQ + Threaded IRQ. For convenience, patches are also available at [1]. Compile tested only with omap2plus_defconfig + enabled CBUS and RETU support. [1] git://gitorious.org/usb/usb.git cbus Changes from v1: . add CBUS_RETU_IRQ_BASE and CBUS_RETU_IRQ_EN

[RFT/PATCH v2 01/12] cbus: retu: get rid of retu-user.c

2011-01-07 Thread Felipe Balbi
Drop that non-standard of accessing Retu as it's bypassing all the correct layers. Signed-off-by: Felipe Balbi --- drivers/cbus/Kconfig |7 - drivers/cbus/Makefile|1 - drivers/cbus/retu-user.c | 424 -- drivers/cbus/retu.c | 19

[RFT/PATCH v2 02/12] cbus: retu: give it a context structure

2011-01-07 Thread Felipe Balbi
This is pretty much a cleanup patch just adding a context structure for Retu, to avoid all the globals it had. Note that this breaks retu-user.c due to moving the lock around, but that retu-user.c has to go anyway as it's completely non-standard way of accessing Retu children. Signed-off-by: Feli

[RFT/PATCH v2 03/12] cbus: retu: move module_* close to the matching symbol

2011-01-07 Thread Felipe Balbi
Just to make checkpatch.pl a bit happier, move subsys_initcall() and module_exit() closer to the init and exit functions of the driver. Signed-off-by: Felipe Balbi --- drivers/cbus/retu.c | 11 +-- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/drivers/cbus/retu.c b/dr

[RFT/PATCH v2 04/12] cbus: retu: cleanup error path

2011-01-07 Thread Felipe Balbi
Trivial cleanup patch shuffling error path around. Signed-off-by: Felipe Balbi --- drivers/cbus/retu.c | 29 + 1 files changed, 17 insertions(+), 12 deletions(-) diff --git a/drivers/cbus/retu.c b/drivers/cbus/retu.c index 0053d43..7e67e1a 100644 --- a/drivers/cbus

[RFT/PATCH v2 07/12] cbus: retu: move to threaded IRQ and GENIRQ

2011-01-07 Thread Felipe Balbi
Start moving retu to threaded IRQ and while at that also give retu an irq_chip so children can use generic request_threaded_irq() calls. Signed-off-by: Felipe Balbi --- drivers/cbus/Makefile | 10 +- drivers/cbus/retu.c | 270 + drivers/cbus/r

[RFT/PATCH v2 06/12] arm: omap: cbus: pass irq_base and irq_end via platform_data

2011-01-07 Thread Felipe Balbi
Pass CBUS_RETU_IRQ_BASE and CBUS_RETU_IRQ_END via platform_data to retu platform_driver. Signed-off-by: Felipe Balbi --- arch/arm/mach-omap1/board-nokia770.c |8 arch/arm/mach-omap2/board-n8x0.c |8 arch/arm/plat-omap/include/plat/cbus.h |5 + 3 files ch

[RFT/PATCH v2 08/12] cbus: retu: headset: convert to threaded_irq

2011-01-07 Thread Felipe Balbi
use the new irq_chip added to retu.c. Signed-off-by: Felipe Balbi --- drivers/cbus/Makefile |2 +- drivers/cbus/retu-headset.c | 22 -- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/drivers/cbus/Makefile b/drivers/cbus/Makefile index 3375b82..84

[RFT/PATCH v2 10/12] cbus: retu-rtc: move to threaded irq

2011-01-07 Thread Felipe Balbi
Move to the generic threaded irq infrastructure and drop all the retu-specific magic. Unfortunately, due to the conversion and lack of docs, retu_rtc_ioctl() had to be dropped, someone else with access to docs is free to implement it later considering the new style of the driver. Signed-off-by: F

[RFT/PATCH v2 05/12] arm: omap: irqs: add CBUS_RETU_IRQ_BASE and CBUS_RETU_IRQ_END

2011-01-07 Thread Felipe Balbi
those two will be used to pass down irq_base and irq_end to retu platform_driver. Signed-off-by: Felipe Balbi --- arch/arm/plat-omap/include/plat/irqs.h | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-omap/include/plat/irqs.h b/arch/arm/plat-omap/

[RFT/PATCH v2 11/12] cbus: retu-rtc: drop the reset_occurred flag

2011-01-07 Thread Felipe Balbi
that flag is never read anyway, only written, so we can drop it. Signed-off-by: Felipe Balbi --- drivers/cbus/retu-rtc.c | 10 ++ 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/cbus/retu-rtc.c b/drivers/cbus/retu-rtc.c index 6e201aa..b2b9472 100644 --- a/drivers

[RFT/PATCH v2 09/12] cbus: retu-pwrbutton: convert to threaded irq

2011-01-07 Thread Felipe Balbi
Drop the timer function and move to threaded irq infrastructure. Signed-off-by: Felipe Balbi --- drivers/cbus/Makefile |2 +- drivers/cbus/retu-pwrbutton.c | 37 + 2 files changed, 10 insertions(+), 29 deletions(-) diff --git a/drivers/cbus/Make

[RFT/PATCH v2 12/12] cbus: Makefile: re-enable retu-wdt

2011-01-07 Thread Felipe Balbi
Now that all conversions have been made, reenable retu-wdt driver. Signed-off-by: Felipe Balbi --- drivers/cbus/Makefile |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/cbus/Makefile b/drivers/cbus/Makefile index 7bfd997..c5c3940 100644 --- a/drivers/cbus/Makef

omap: Beagle: detect new xM revision B

2011-01-07 Thread Koen Kooi
From: Robert Nelson The xM B uses a DM3730 ES1.1 over the ES1.0 on xM A's, no other board changes. Signed-off-by: Robert Nelson Signed-off-by: Koen Kooi --- diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 7c82730..4fd73e7 100644 --- a/arch/

Re: [PATCH v3 09/17] OMAP2,3: DSS2: Move clocks from core driver to dss driver

2011-01-07 Thread Tomi Valkeinen
On Thu, 2011-01-06 at 15:10 +0530, ext Semwal, Sumit wrote: > Hi Tomi, > > On Wed, Jan 5, 2011 at 9:05 PM, Tomi Valkeinen > wrote: > > On Mon, 2011-01-03 at 18:21 +0530, ext Guruswamy Senthilvadivu wrote: > >> From: Senthilvadivu Guruswamy > >> > >> clks are moved to dss platform driver. clk_g

Re: [lm-sensors] [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread J, KEERTHY
On Thu, Jan 6, 2011 at 5:34 PM, Mark Brown wrote: > On Thu, Jan 06, 2011 at 09:26:40AM +0530, Keerthy wrote: > >> --- >>  drivers/hwmon/Kconfig            |   11 + >>  drivers/hwmon/Makefile           |    1 + >>  drivers/hwmon/twl4030-madc.c     |  794 >> ++ >

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 02:09:17PM +0530, Santosh Shilimkar wrote: > > Can we _please_ have a version of uboot for the SDP4430 platform > > which > > can be configured at runtime _and_ which is capable of DHCP/TFTP ? > > I really don't want to mess about anymore with buggy boot loaders. > Just read

RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > Sent: Friday, January 07, 2011 2:58 PM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: Re: 4430SDP boot failure > > On Fri, Jan 07, 2011 at 02:09:17PM +0530, Santosh Sh

Re: [PATCH 1/1] arm: omap: gpio: define .disable callback for gpio irq chip

2011-01-07 Thread Eduardo Valentin
Hello Kevin, On Thu, Jan 06, 2011 at 09:59:48AM -0800, ext Kevin Hilman wrote: > Eduardo Valentin writes: > > > On Wed, Jan 05, 2011 at 03:22:51PM -0800, ext Kevin Hilman wrote: > >> Eduardo Valentin writes: > >> > >> > Hello Russell, > >> > > >> > On Wed, Jan 05, 2011 at 06:19:18PM +, Russ

Re: [PATCH 1/1] arm: omap: gpio: define .disable callback for gpio irq chip

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 11:56:09AM +0200, Eduardo Valentin wrote: > It is in wakeup-enable gpio. But the driver removes the wakeup > flag from the gpio on its suspend function right after disabling the irq. > disable_irq(gpio_irq); > disable_irq_wake(gpio_irq); > > In this case, the device uses

[PATCH 4/9] cpuidle: Introduce .abbr (abbrevation) for cpuidle states

2011-01-07 Thread Thomas Renninger
and fill name, description and newly introduced abbrevation consistently (always use snprintf) in all cpuidle drivers. This is mainly for perf timechart. It draws vector graphics pictures of sleep/idle state usage catching perf cpu_idle events. The string used for the idle state must not exceed 3

[PATCH 8/9] perf timechart: Map power:cpu_idle events to the corresponding cpuidle state

2011-01-07 Thread Thomas Renninger
Before, power:cpu_idle events were very specific X86 Intel mwait events. This got fixed with previous patches and cpu_idle events are now thrown by all cpuidle drivers and can be mapped to the corresponding cpuidle state in /sys. This patch reads out the corresponding cpuidle name of a cpu_idle ev

[PATCH 3/9] X86/perf: fix power:cpu_idle double end events and throw cpu_idle events from the cpuidle layer

2011-01-07 Thread Thomas Renninger
Currently intel_idle and acpi_idle driver show double cpu_idle "exit idle" events -> this patch fixes it and makes cpu_idle events throwing less complex. It also introduces cpu_idle events for all architectures which use the cpuidle subsystem, namely: - arch/arm/mach-at91/cpuidle.c - arch/arm/

Re: [lm-sensors] [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread Mark Brown
On Fri, Jan 07, 2011 at 02:55:45PM +0530, J, KEERTHY wrote: > On Thu, Jan 6, 2011 at 5:34 PM, Mark Brown > > On Thu, Jan 06, 2011 at 09:26:40AM +0530, Keerthy wrote: > >> +static ssize_t madc_read(struct device *dev, > >> +                      struct device_attribute *devattr, char *buf) > >> +{

Re: [PATCH 8/9] perf timechart: Map power:cpu_idle events to the corresponding cpuidle state

2011-01-07 Thread Thomas Renninger
Argh, forgot guilt refresh on this one. The changelog could be a bit more detailed by adding: On Friday 07 January 2011 11:29:49 Thomas Renninger wrote: > Before, power:cpu_idle events were very specific X86 Intel mwait events. > This got fixed with previous patches and cpu_idle events are now thr

RE: [PATCH v2 2/5] omap2plus: prm: Trvial build break fix for undefined reference to 'omap2_prm_read_mod_reg'

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Paul Walmsley [mailto:p...@pwsan.com] > Sent: Thursday, January 06, 2011 11:28 PM Kevin, > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; khil...@ti.com; t...@atomide.com; > linux-arm-ker...@lists.infradead.org > Subject: Re: [PATCH v2 2/5] omap2plus: p

Re: [lm-sensors] [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread J, KEERTHY
On Fri, Jan 7, 2011 at 4:14 PM, Mark Brown wrote: > On Fri, Jan 07, 2011 at 02:55:45PM +0530, J, KEERTHY wrote: >> On Thu, Jan 6, 2011 at 5:34 PM, Mark Brown >> > On Thu, Jan 06, 2011 at 09:26:40AM +0530, Keerthy wrote: > >> >> +static ssize_t madc_read(struct device *dev, >> >> +                

[PATCH v5 00/17] OMAP2,3: hwmod DSS Adaptation

2011-01-07 Thread Sumit Semwal
v4 of the DSS hwmod patch series focusses on fixing the review comments. OMAP4 hwmod support will be posted after the acceptance of this basic change in the dss2 design. This patch series decouples the "Clocks for DSS in hwmod adaptation" changes from this series. Another series would be posted

[PATCH v5 01/17] OMAP2420: hwmod data: add DSS DISPC RFBI VENC

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod needs database of all IPs in a system. This patch generates the hwmod database for OMAP2420 Display Sub System,. Since DSS is also considered as an IP as DISPC, RFBI, name it as dss_dss. Signed-off-by: Senthilvadivu Guruswamy Acked-by: Benoit Cousson --- ar

[PATCH v5 02/17] OMAP2430: hwmod data: add DSS DISPC RFBI VENC

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod needs database of all IPs in a system. This patch generates the hwmod database for OMAP2430 Display Sub System. Since DSS is also considered as an IP as DISPC, RFBI, name it as dss_dss. Signed-off-by: Senthilvadivu Guruswamy Acked-by: Benoit Cousson --- arc

[PATCH v5 03/17] OMAP3: hwmod data: add DSS DISPC RFBI DSI VENC

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod needs database of all IPs in a system. This patch generates the hwmod database for Display Sub System applicable for OMAP3430-ES2 onwards and OMAP36xx. DSS is also considered as an IP as DISPC, RFBI and named as dss_dss. For all the IP modules in DSS, same clo

[PATCH v5 04/17] OMAP2,3 DSS2 Change driver name to omap_display

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Change the driver name from omapdss to omap_display as the driver takes care of the display devices ie number of panels, type of panels available in the platform. Change the device name in the board files and 2420,2430,3xxx clock files from omapdss to omap_display t

[PATCH v5 05/17] OMAP2,3 DSS2 Use Regulator init with driver name

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Use driver name in regulator inits needed for display instead of using device structure name. Signed-off-by: Senthilvadivu Guruswamy --- arch/arm/mach-omap2/board-3430sdp.c | 11 +++ arch/arm/mach-omap2/board-cm-t35.c | 12 arch

[PATCH v5 06/17] OMAP2,3: DSS2: Create new file display.c for central dss driver registration.

2011-01-07 Thread Sumit Semwal
A new file display.c is introduced for display driver init, which adds a function omap_display_init to do the DSS driver registration. This is the first step in moving away registration of DSS from board files into a common place. Signed-off-by: Senthilvadivu Guruswamy Signed-off-by: Sumit Semw

[PATCH v5 07/17] OMAP2,3: DSS2: board files: replace platform_device_register with omap_display_init()

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy This patch updated board files to replace platform_device_register or platform_add_devices of DSS with omap_display_init(). This moves away registration of DSS from board files into a common place. Signed-off-by: Senthilvadivu Guruswamy Signed-off-by: Sumit Semwal

[PATCH v5 08/17] OMAP2,3: DSS2: Build omap_device for each DSS HWIP

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Looks up the hwmod database for each of the given DSS HW IP and builds omap_device which inturn does the platform device register for each of DSS HW IP Signed-off-by: Senthilvadivu Guruswamy Signed-off-by: Sumit Semwal --- arch/arm/mach-omap2/display.c

[PATCH v5 09/17] OMAP2,3: DSS2: DSS: create platform_driver, move init,exit to driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So a platform_driver of DSS is created and init exit methods are moved from core.c to its driver probe,remove. pdev member has to be maintained by its own drivers. DSS platform driver i

[PATCH v5 10/17] OMAP2,3: DSS2: Move clocks from core driver to dss driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy All clock management is moved to dss platform driver. clk_get/put APIs use dss device instead of core platform device. Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So the device name is changed from omap_display to omap_dss in 2420

[PATCH v5 11/17] OMAP2,3: DSS2: RFBI: create platform_driver, move init,exit to driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So a platform_driver for RFBI is created and init exit methods are moved from core.c to its driver probe,remove. pdev member has to be maintained by its own drivers. RFBI platform drive

[PATCH v5 12/17] OMAP2,3: DSS2: DISPC: create platform_driver, move init,exit to driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So a platform_driver for DISPC is created and init exit methods are moved from core.c to its driver probe,remove. pdev member has to be maintained by its own drivers. DISPC platform dri

[PATCH v5 13/17] OMAP2,3: DSS2: VENC: create platform_driver, move init,exit to driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So a platform_driver for VENC is created and init exit methods are moved from core.c to its driver probe,remove. pdev member has to be maintained by its own drivers. Also, venc_vdda_dac

[PATCH v5 14/17] OMAP2,3: DSS2: DSI: create platform_driver, move init,exit to driver

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy Hwmod adaptation design requires each of the DSS HW IP to be a platform driver. So a platform_driver for DSI is created and init exit methods are moved from core.c to its driver probe,remove. pdev member has to be maintained by its own drivers. Also, vdds_dsi regul

[PATCH v5 16/17] OMAP2,3: DSS2: Use platform device to get baseaddr

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy DSS, DISPC, DSI, RFBI, VENC baseaddr can be obtained from platform_get_resource(). This API in turn picks the right silicon baseaddr from the hwmod database. So hardcoding of base addr could be removed. Signed-off-by: Senthilvadivu Guruswamy --- drivers/video/oma

[PATCH v5 15/17] OMAP2,3: DSS2: replace printk with dev_dbg in init

2011-01-07 Thread Sumit Semwal
This patch replaces printk's in the init/probe functions to dev_dbg for boot time optimization. Signed-off-by: Sumit Semwal --- drivers/video/omap2/dss/dispc.c |2 +- drivers/video/omap2/dss/dsi.c |2 +- drivers/video/omap2/dss/rfbi.c |2 +- drivers/video/omap2/dss/venc.c |2

[PATCH v5 17/17] OMAP2,3: DSS2: Get DSS IRQ from platform device

2011-01-07 Thread Sumit Semwal
From: Senthilvadivu Guruswamy DSS IRQ number can be obtained from platform_get_irq(). This API in turn picks the right IRQ number belonging to HW IP from the hwmod database. So hardcoding of IRQ number could be removed. Signed-off-by: Senthilvadivu Guruswamy --- drivers/video/omap2/dss/dss.c

Latest config warning

2011-01-07 Thread Russell King - ARM Linux
warning: (ARCH_STMP3XXX && || ARCH_OMAP3 && ARCH_OMAP2PLUS) selects USB_ARCH_HAS_EHCI which has unmet direct dependencies (USB_SUPPORT) This didn't happen with 2.6.37. Maybe a missing select USB_SUPPORT somewhere? -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the b

Latest regressions

2011-01-07 Thread Russell King - ARM Linux
In file included from arch/arm/plat-omap/include/plat/omap_hwmod.h:37, from arch/arm/mach-omap2/io.c:45: arch/arm/plat-omap/include/plat/voltage.h: In function ■omap_voltage_register_pmic■: arch/arm/plat-omap/include/plat/voltage.h:137: warning: no return statement in function re

Re: [lm-sensors] [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread J, KEERTHY
On Fri, Jan 7, 2011 at 3:25 AM, Guenter Roeck wrote: > On Thu, 2011-01-06 at 15:21 -0500, Mark Brown wrote: >> On Thu, Jan 06, 2011 at 07:04:30AM -0800, Guenter Roeck wrote: >> > On Thu, Jan 06, 2011 at 07:07:13AM -0500, Mark Brown wrote: >> >> > > Why?  It's not like hwmon has an unreasonably lar

RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] > Sent: Friday, January 07, 2011 3:23 PM Ruessell, > To: Russell King - ARM Linux > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: RE: 4430SDP boot failure > [] > > BTW, if it makes any differ

RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
Sorry, > -Original Message- > From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] > Sent: Friday, January 07, 2011 5:49 PM > To: Russell King - ARM Linux > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: RE: 4430SDP boot failure > > > -Original Message- > > From: Sant

Build breakage with omap2plus_defconfig

2011-01-07 Thread Felipe Balbi
Hi all, Today's Linus' tree (01539ba2a706ab7d35fc0667dff919ade7f87d63) fails to build with omap2plus_defconfig: $ crossmake CHK include/linux/version.h CHK include/generated/utsrelease.h make[1]: `include/generated/mach-types.h' is up to date. CALLscripts/checksyscalls.sh CHK

[GIT PULL] OMAP DSS changes for .38 merge window

2011-01-07 Thread Tomi Valkeinen
Hello Paul, Here are some OMAP display changes for .38. I hope they are not too late, but the holidays messed up my schedules a bit. I made two branches, as I'm not sure which is better: for-paul-38 - This one is the original non-rebased branch. This causes a trivial conflict with fbdev/master i

Re: Build breakage with omap2plus_defconfig

2011-01-07 Thread Felipe Balbi
Hi, On Fri, Jan 07, 2011 at 02:38:59PM +0200, Felipe Balbi wrote: > Today's Linus' tree (01539ba2a706ab7d35fc0667dff919ade7f87d63) fails to > build with omap2plus_defconfig: > > $ crossmake > CHK include/linux/version.h > CHK include/generated/utsrelease.h > make[1]: `include/generate

RE: Build breakage with omap2plus_defconfig

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > ow...@vger.kernel.org] On Behalf Of Felipe Balbi > Sent: Friday, January 07, 2011 6:09 PM > To: Russell King; Tony Lindgren > Cc: Linux OMAP Mailing List; Linux ARM Kernel Mailing List > Subject: Build break

RE: Build breakage with omap2plus_defconfig

2011-01-07 Thread Anand Gadiyar
Felipe Balbi wrote: > Hi all, > > Today's Linus' tree > (01539ba2a706ab7d35fc0667dff919ade7f87d63) fails to > build with omap2plus_defconfig: > > $ crossmake > CHK include/linux/version.h > CHK include/generated/utsrelease.h > make[1]: `include/generated/mach-types.h' is up to date. >

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 05:48:41PM +0530, Santosh Shilimkar wrote: > > -Original Message- > > From: Santosh Shilimkar [mailto:santosh.shilim...@ti.com] > > Sent: Friday, January 07, 2011 3:23 PM > Ruessell, > > > > To: Russell King - ARM Linux > > Cc: linux-omap@vger.kernel.org; Tony Lind

Re: [PATCH v5 00/17] OMAP2,3: hwmod DSS Adaptation

2011-01-07 Thread Tomi Valkeinen
Hi Tony, The patch set below is based on l-o tree, as it touches OMAP hwmod/clock/board stuff. It doesn't even apply to my mainline based tree. I'm still in the process of reviewing the latest changes, but is it ok for you to apply these to your tree after I've acked the DSS parts? Or do you have

Re: Build breakage with omap2plus_defconfig

2011-01-07 Thread Felipe Balbi
On Fri, Jan 07, 2011 at 06:20:43PM +0530, Anand Gadiyar wrote: > Felipe Balbi wrote: > > Hi all, > > > > Today's Linus' tree > > (01539ba2a706ab7d35fc0667dff919ade7f87d63) fails to > > build with omap2plus_defconfig: > > > > $ crossmake > > CHK include/linux/version.h > > CHK include/ge

Re: Latest regressions

2011-01-07 Thread Nishanth Menon
Russell King - ARM Linux wrote, on 01/07/2011 05:57 AM: In file included from arch/arm/plat-omap/include/plat/omap_hwmod.h:37, from arch/arm/mach-omap2/io.c:45: arch/arm/plat-omap/include/plat/voltage.h: In function ■omap_voltage_register_pmic■: arch/arm/plat-omap/include/plat/

Re: Build breakage with omap2plus_defconfig

2011-01-07 Thread Felipe Balbi
On Fri, Jan 07, 2011 at 06:18:51PM +0530, Santosh Shilimkar wrote: > > -Original Message- > > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > > ow...@vger.kernel.org] On Behalf Of Felipe Balbi > > Sent: Friday, January 07, 2011 6:09 PM > > To: Russell King; Tony Lindgren > > Cc

Re: omap: Beagle: detect new xM revision B

2011-01-07 Thread Nishanth Menon
Koen Kooi wrote, on 01/07/2011 03:10 AM: From: Robert Nelson The xM B uses a DM3730 ES1.1 over the ES1.0 on xM A's, no other board changes. unrelated to patch: funny why the GPIO version changed then! related to patch: please add [PATCH] in $subject.. minor comment follows: Signed-off-by:

Re: [PATCH 2/2] OMAP3: beagle xm: enable upto 800MHz OPP

2011-01-07 Thread Aaro Koskinen
Hi, On Wed, 5 Jan 2011, Nishanth Menon wrote: +static void __init beagle_opp_init(void) +{ + int r = 0; + + /* Initialize the omap3 opp table */ + if (omap3_opp_init()) { + pr_err("%s: opp default init failed\n", __func__); + return; + } + +

RE: Build breakage with omap2plus_defconfig

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > ow...@vger.kernel.org] On Behalf Of Felipe Balbi > Sent: Friday, January 07, 2011 6:30 PM > To: Santosh Shilimkar > Cc: ba...@ti.com; Russell King; Tony Lindgren; Linux OMAP Mailing > List; Linux ARM Kernel

[PATCH] omap3: Add basic support for 720MHz part

2011-01-07 Thread Sanjeev Premi
This patch adds support for new speed enhanced parts with ARM and IVA running at 720MHz and 520MHz respectively. These parts can be probed at run-time by reading PRODID.SKUID[3:0] at 0x4830A20C [1]. This patch specifically does following: * Detect devices capable of 720MHz. * Add new OPP * Ensu

RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > Sent: Friday, January 07, 2011 6:22 PM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: Re: 4430SDP boot failure > > On Fri, Jan 07, 2011 at 05:48:41PM +0530, Santosh Sh

Re: Build breakage with omap2plus_defconfig

2011-01-07 Thread Felipe Balbi
Hi, On Fri, Jan 07, 2011 at 06:35:39PM +0530, Santosh Shilimkar wrote: > This patch is good but it does tell you that if > you will V6 and v7 together, the feature can't be used. > > Like omap2plus_defconfig, and if booted on > say omap3 or omap4(v7), swp emulation can't be used > even though its

Re: [PATCH v5 00/17] OMAP2,3: hwmod DSS Adaptation

2011-01-07 Thread Tomi Valkeinen
Hi, Ah, I just noticed (thanks Nishanth) that you've sent a pull request, and these patches apply fine on top of the omap-for-linus branch. I'll use that as a base. Tomi On Fri, 2011-01-07 at 14:56 +0200, Tomi Valkeinen wrote: > Hi Tony, > > The patch set below is based on l-o tree, as it touc

Re: [GIT PULL] OMAP DSS changes for .38 merge window

2011-01-07 Thread Paul Mundt
On Fri, Jan 07, 2011 at 02:41:43PM +0200, Tomi Valkeinen wrote: > Hello Paul, > > Here are some OMAP display changes for .38. I hope they are not too > late, but the holidays messed up my schedules a bit. > No, no problem. I usually aim to do two merges per merge window on average, one at the beg

Re: [PATCH 2/2] OMAP3: beagle xm: enable upto 800MHz OPP

2011-01-07 Thread Nishanth Menon
Aaro Koskinen wrote, on 01/07/2011 07:04 AM: On Wed, 5 Jan 2011, Nishanth Menon wrote: +static void __init beagle_opp_init(void) +{ + int r = 0; + + /* Initialize the omap3 opp table */ + if (omap3_opp_init()) { + pr_err("%s: opp default init failed\n", __func__); + return; + } + + /* Custom OP

Re: [PATCH] omap3: Add basic support for 720MHz part

2011-01-07 Thread Nishanth Menon
Sanjeev Premi wrote, on 01/07/2011 07:07 AM: + if (omap3_has_720mhz()) { + pr_info("Enabled OPP corresponding to 720MHz\n"); + + omap34xx_opp_def_list[INDEX_MPU_720MHZ] + .default_available = true; +

Re: [GIT PULL] OMAP DSS changes for .38 merge window

2011-01-07 Thread Tomi Valkeinen
On Fri, 2011-01-07 at 22:25 +0900, ext Paul Mundt wrote: > On Fri, Jan 07, 2011 at 02:41:43PM +0200, Tomi Valkeinen wrote: > > Hello Paul, > > > > Here are some OMAP display changes for .38. I hope they are not too > > late, but the holidays messed up my schedules a bit. > > > No, no problem. I u

Re: 4430SDP boot failure

2011-01-07 Thread Koen Kooi
Op 7 jan 2011, om 13:51 heeft Russell King - ARM Linux het volgende geschreven: > This is the command line I've been giving it: > > setenv bootargs 'root=/dev/mmcblk0p2 rw mem=512M vmalloc=1G > console=ttyO2,115200n8 rootdelay=2' Why are people still using rootdelay? 'rootwait' is vastly superio

RE: [PATCH] omap3: Add basic support for 720MHz part

2011-01-07 Thread Premi, Sanjeev
> -Original Message- > From: Menon, Nishanth > Sent: Friday, January 07, 2011 7:04 PM > To: Premi, Sanjeev > Cc: linux-omap@vger.kernel.org > Subject: Re: [PATCH] omap3: Add basic support for 720MHz part > > Sanjeev Premi wrote, on 01/07/2011 07:07 AM: > > + if (omap3_has_720mhz

Re: [GIT PULL] OMAP DSS changes for .38 merge window

2011-01-07 Thread Paul Mundt
On Fri, Jan 07, 2011 at 03:37:32PM +0200, Tomi Valkeinen wrote: > On Fri, 2011-01-07 at 22:25 +0900, ext Paul Mundt wrote: > I guess it's not out-of-the-question to get driver changes in in early > rcs, but I'd rather get everything pulled during the merge window. Also, > some of the patches still

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 02:07:53PM +0100, Koen Kooi wrote: > Op 7 jan 2011, om 13:51 heeft Russell King - ARM Linux het volgende > geschreven: > > This is the command line I've been giving it: > > > > setenv bootargs 'root=/dev/mmcblk0p2 rw mem=512M vmalloc=1G > > console=ttyO2,115200n8 rootdela

Re: [PATCH v5 06/17] OMAP2,3: DSS2: Create new file display.c for central dss driver registration.

2011-01-07 Thread Tomi Valkeinen
Hi, On Fri, 2011-01-07 at 16:55 +0530, ext Sumit Semwal wrote: > A new file display.c is introduced for display driver init, which adds a > function > omap_display_init to do the DSS driver registration. This is the first step > in moving > away registration of DSS from board files into a common

Re: [PATCH] omap3: Add basic support for 720MHz part

2011-01-07 Thread Nishanth Menon
Premi, Sanjeev wrote, on 01/07/2011 07:50 AM: -Original Message- From: Menon, Nishanth Sent: Friday, January 07, 2011 7:04 PM To: Premi, Sanjeev Cc: linux-omap@vger.kernel.org Subject: Re: [PATCH] omap3: Add basic support for 720MHz part Sanjeev Premi wrote, on 01/07/2011 07:07 AM: +

Re: [GIT PULL] OMAP DSS changes for .38 merge window

2011-01-07 Thread Tomi Valkeinen
On Fri, 2011-01-07 at 22:52 +0900, ext Paul Mundt wrote: > Hmm, I've just fast-forwarded to Linus's current tree and tried to pull > your rebase branch in, but it seems to have a board conflict with the > OMAP tree merge: > > CONFLICT (delete/modify): arch/arm/mach-omap2/board-zoom2.c deleted in

Re: linux-next: manual merge of the usb tree with the omap tree

2011-01-07 Thread Anand Gadiyar
On 1/6/2011 9:20 PM, Ming Lei wrote: > Hi, > > 2011/1/6 Ming Lei : >> Hi, >> >> 2011/1/6 Anand Gadiyar : >> >>> I'll take a look in a short while. I don't have an XM to >>> test, so you'll have to help me out here. >> >> No problem for me, :-) > > I see why the beagle xM does not work, the attach

Re: linux-next: manual merge of the usb tree with the omap tree

2011-01-07 Thread Ming Lei
Hi Anand, 2011/1/7 Anand Gadiyar : > Hi Ming Lei, > > I'm able to reproduce this on my panda, and I have it working as of > linux-next-20101221 (the last version I tested last year) and failing > on linux-next-20101227 (which was the very next linux-next release). > > Not sure why, but my Panda ma

RE: RFBI worked example

2011-01-07 Thread Ben Tucker
With further experimentation it appears that I can call the omap_rfbi_update() from the call back, but as the callback is in interrupt context this could be dangerous. I would love to see an example of this elsewhere. static void framedone_callback(void *data) { int r; u16 dw, dh; stru

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 06:39:06PM +0530, Santosh Shilimkar wrote: > Have sent you latest bootloaders and full bootlog on my ES1.0 > OMAP4430SDP. 2.6.37 just boots fine for me. > > Low level debug as you reported seems to be broken though. Many thanks, the new mlo and uboot gets dhcp/tftp working

RE: 4430SDP boot failure

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > Sent: Friday, January 07, 2011 7:55 PM > To: Santosh Shilimkar > Cc: linux-omap@vger.kernel.org; Tony Lindgren > Subject: Re: 4430SDP boot failure > > On Fri, Jan 07, 2011 at 06:39:06PM +0530, Santosh Sh

RE: linux-next: manual merge of the usb tree with the omap tree

2011-01-07 Thread Anand Gadiyar
Ming Lei wrote: > 2011/1/7 Anand Gadiyar : > > Hi Ming Lei, > > > > I'm able to reproduce this on my panda, and I have it working as of > > linux-next-20101221 (the last version I tested last year) and failing > > on linux-next-20101227 (which was the very next linux-next release). > > > > Not sure

Re: Latest regressions

2011-01-07 Thread Russell King - ARM Linux
While trying to build the latest kernel for the SDP4430 board: arch/arm/mach-omap2/clockdomain.c: In function ■_enable_hwsup■: arch/arm/mach-omap2/clockdomain.c:251: error: ■struct clockdomain■ has no member named ■clktrctrl_mask■ arch/arm/mach-omap2/clockdomain.c:254: error: ■struct clockdomain■

Re: [lm-sensors] [PATCH v3] hwmon: twl4030: Driver for twl4030 madc module

2011-01-07 Thread Guenter Roeck
On Fri, Jan 07, 2011 at 07:12:13AM -0500, J, KEERTHY wrote: > On Fri, Jan 7, 2011 at 3:25 AM, Guenter Roeck > wrote: > > On Thu, 2011-01-06 at 15:21 -0500, Mark Brown wrote: > >> On Thu, Jan 06, 2011 at 07:04:30AM -0800, Guenter Roeck wrote: > >> > On Thu, Jan 06, 2011 at 07:07:13AM -0500, Mark Br

RE: Latest regressions

2011-01-07 Thread Santosh Shilimkar
> -Original Message- > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > ow...@vger.kernel.org] On Behalf Of Russell King - ARM Linux > Sent: Friday, January 07, 2011 8:11 PM > To: linux-omap@vger.kernel.org > Subject: Re: Latest regressions > > While trying to build the latest k

Re: Latest regressions

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 08:24:26PM +0530, Santosh Shilimkar wrote: > > -Original Message- > > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > > ow...@vger.kernel.org] On Behalf Of Russell King - ARM Linux > > Sent: Friday, January 07, 2011 8:11 PM > > To: linux-omap@vger.kernel

RE: RFBI worked example

2011-01-07 Thread Tomi Valkeinen
On Fri, 2011-01-07 at 14:18 +, ext Ben Tucker wrote: > With further experimentation it appears that I can call the > omap_rfbi_update() from the call back, but as the callback is in interrupt > context this could be dangerous. I would love to see an example of this > elsewhere. Did you get it

RE: linux-next: manual merge of the usb tree with the omap tree

2011-01-07 Thread Anand Gadiyar
Ming Lei wrote: > Ming Lei wrote: > > 2011/1/7 Anand Gadiyar : > > > Hi Ming Lei, > > > > > > I'm able to reproduce this on my panda, and I have it working as of > > > linux-next-20101221 (the last version I tested last year) and failing > > > on linux-next-20101227 (which was the very next linux-n

[PATCH v2 2/2] OMAP3: beagle xm: enable upto 800MHz OPP

2011-01-07 Thread Nishanth Menon
OMP3630 silicon can enable higher frequencies only depending on the board characteristics meeting the recommended standards, and has to be selectively toggled. Beagle XM uses 3730 variant and the board design allows enabling 800MHz and 1GHz OPPs. However, We need Smart reflex class 1.5 and ABB to

Re: 4430SDP boot failure - solved + SPI bug fix

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 07:56:34PM +0530, Santosh Shilimkar wrote: > > -Original Message- > > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > > Sent: Friday, January 07, 2011 7:55 PM > > To: Santosh Shilimkar > > Cc: linux-omap@vger.kernel.org; Tony Lindgren > > Subject: Re

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Thu, Jan 06, 2011 at 12:40:54PM -0800, Tony Lindgren wrote: > Anyways, I can debug the DEBUG_LL booting issue further if the patch > I posted does not help. This is what I ended up with earlier today to make the debug code work both in the decompressor and in the kernel - once I had it working

Re: 4430SDP boot failure

2011-01-07 Thread Russell King - ARM Linux
On Fri, Jan 07, 2011 at 07:56:34PM +0530, Santosh Shilimkar wrote: > > -Original Message- > > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] > > Sent: Friday, January 07, 2011 7:55 PM > > To: Santosh Shilimkar > > Cc: linux-omap@vger.kernel.org; Tony Lindgren > > Subject: Re

  1   2   >