compilation error

2010-02-12 Thread Niamathullah sharief
Hello, can anyone tell me while compilaing dbus-1.2.20 i am getting the folllowing error checking for XML_ParserCreate_MM in -lexpat... no configure: error: Could not find expat.h, check config.log for failed attempts what is wrong?what i should install?i installed libexpat also. still i get the

Re: Moving board patches from DSS2 to linux-omap

2010-02-12 Thread Tomi Valkeinen
On Thu, 2010-02-11 at 19:52 +0100, ext Tony Lindgren wrote: * Tomi Valkeinen tomi.valkei...@nokia.com [100211 03:59]: On Thu, 2010-02-11 at 12:50 +0100, ext Mike Rapoport wrote: Tomi Valkeinen wrote: Hi, As discussed previously, board file changes in DSS2 tree cause conflicts

Re: compilation error

2010-02-12 Thread Gary Thomas
On 02/12/2010 03:13 AM, Niamathullah sharief wrote: Hello, can anyone tell me while compilaing dbus-1.2.20 i am getting the folllowing error checking for XML_ParserCreate_MM in -lexpat... no configure: error: Could not find expat.h, check config.log for failed attempts what is wrong?what i

[PATCH 0/4 RFC]OMAP:GPIO: Make GPIO an early init device

2010-02-12 Thread Varadarajan, Charulatha
From: Charulatha V ch...@ti.com This patch series splits OMAP GPIO into OMAP1 and OMAP2 components. Then coverts OMAP2 OMAP3 and OMAP4 GPIO module to use device registration model and makes GPIO an early init device. This is in preparation for the omap_device conversion of the GPIO portions.

[PATCH 1/4 RFC]OMAP2: Fix compile errors

2010-02-12 Thread Varadarajan, Charulatha
From: Rajendra Nayak rna...@ti.com There are few compile errors for OMAP2 which are fixed by this patch Signed-off-by: Rajendra Nayak rna...@ti.com Signed-off-by: Charulatha V ch...@ti.com --- arch/arm/mach-omap2/board-2430sdp.c |2 +- arch/arm/mach-omap2/serial.c|1 +

[PATCH 3/4 RFC]OMAP:Convert GPIO into a early driver

2010-02-12 Thread Varadarajan, Charulatha
From: Charulatha V ch...@ti.com This patch converts GPIO module into a platform driver by making each GPIO Bank a device. This is done by providing clock, interrupt and base address details through platform data. This patch also initializes GPIO driver as a earlydriver. This is so that GPIO

[PATCH 4/4 RFC]OMAP:GPIO: Convert all printk's to pr_* in gpio

2010-02-12 Thread Varadarajan, Charulatha
From: Charulatha V ch...@ti.com GPIO driver still uses printk's instead of using pr_* This patch fixes all such instances. Signed-off-by: Charulatha V ch...@ti.com Signed-off-by: Rajendra Nayak rna...@ti.com --- arch/arm/mach-omap2/gpio.c | 26 +- 1 files changed, 13

[PATCH 1/2 RFC]OMAP3430: hwmod: add GPIO hwmods

2010-02-12 Thread Varadarajan, Charulatha
From: Charulatha V ch...@ti.com Add hwmod structures for GPIO module on OMAP3430. Signed-off-by: Charulatha V ch...@ti.com Signed-off-by: Rajendra Nayak rna...@ti.com --- arch/arm/mach-omap2/omap_hwmod_34xx.h | 410 + 1 files changed, 410 insertions(+), 0

[PATCH 2/2 RFC]OMAP3430: hwmod: Adapt GPIO to use HWMOD FW

2010-02-12 Thread Varadarajan, Charulatha
From: Charulatha V ch...@ti.com HWmod framework is used for OMAP3430 GPIO driver. Signed-off-by: Charulatha V ch...@ti.com --- arch/arm/mach-omap2/gpio.c | 901 arch/arm/plat-omap/include/plat/gpio.h | 25 +- 2 files changed, 123 insertions(+),

omap3 camera interface driver

2010-02-12 Thread Weng, Wending
Hi Hiremath, I used to work with BSP from TI, there is driver for camera interface. Now I switched to 2.6.33.rc3, don't see any omap3 camera interface driver, could you tell me the status of this driver? Thanks. Software Engineer Wending -- To unsubscribe from this list: send the

[PATCH 0/2] dspbridge: proc: double free on error path

2010-02-12 Thread Phil Carmody
First a bit of a cleanup of what was clearly some legacy 'handle' usage, and then a new quicker escape route for an error path to avoid a double free. It's tempting to get a bit more invasive, as there's a lot of quite dodgy looking code (e.g. casting away const) in the areas around my changes,

[PATCH 1/2] dspbridge: proc: it's a pointer, not a handle

2010-02-12 Thread Phil Carmody
From: Phil Carmody ext-phil.2.carm...@nokia.com If there's one thing worse than systems hungarian notation, it's misleading systems hungarian notation. And you don't need 2 copies of the pointer. Signed-off-by: Phil Carmody ext-phil.2.carm...@nokia.com --- drivers/dsp/bridge/rmgr/proc.c | 25

[PATCH 2/2] dspbridge: proc: fix a double-free on 2 error paths

2010-02-12 Thread Phil Carmody
From: Phil Carmody ext-phil.2.carm...@nokia.com We free in the tail cleanup, so don't free before jumping there. Signed-off-by: Phil Carmody ext-phil.2.carm...@nokia.com --- drivers/dsp/bridge/rmgr/proc.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git

[PATCHv4] OMAP3: Serial: Improved sleep logic

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com This patch contains following improvements: - Only RX interrupt will now kick the sleep prevent timer - TX fifo status is checked before disabling clocks, this will prevent on-going transmission to be cut - Smartidle is now enabled/disabled only while

[PATCHv6 2/9] OMAP3: PM: Added support for INACTIVE and ON states in omap_sram_idle

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com Previously omap_sram_idle() did not know about the difference between ON and INACTIVE states, which complicated the state handling in these cases. Now, the following changes are done in the idle logic: - Check for IO-chain arming is changed to reflect

[PATCHv6 3/9] OMAP3: CPUidle: Fixed support for ON / INACTIVE states

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com New powerdomain support code for INACTIVE state removes the need to control clockdomains directly from cpuidle. Also, cpuidle state definitions can now directly support ON / INACTIVE simplifying the implementation. Signed-off-by: Tero Kristo

[PATCHv6 5/9] OMAP3: Clock: Added IDLEST definitions for SGX

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com Added definitions for OMAP3430ES2_ST_SGX_SHIFT and OMAP3430ES2_ST_SGX_MASK as these were missing. Signed-off-by: Tero Kristo tero.kri...@nokia.com --- arch/arm/mach-omap2/cm-regbits-34xx.h |4 1 files changed, 4 insertions(+), 0 deletions(-)

[PATCHv6 4/9] OMAP3: PM: Removed pwrdm state hacking from omap_sram_idle

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com Following hacks will be moved inside cpuidle in subsequent patch: - CAM domain prevents idle completely - PER should not go OFF if core remains active This simplifies the design and allows cpuidle to keep better track of which power states system will

[PATCHv6 6/9] OMAP: Powerdomains: Add support for checking if pwrdm/clkdm can idle

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com pwrdm_can_idle(pwrdm) will check if the specified powerdomain can enter idle. This is done by checking all clockdomains under the powerdomain if they can idle also. omap2_clkdm_can_idle(clkdm) will check if the specified clockdomain can enter idle. This

[PATCHv6 9/9] OMAP3: PM: Added support for suspending to INACTIVE state

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com With the new support functions this is now possible. Suspending to INACTIVE is useful for testing purposes. Signed-off-by: Tero Kristo tero.kri...@nokia.com --- arch/arm/mach-omap2/pm34xx.c | 11 ++- 1 files changed, 6 insertions(+), 5

[PATCHv6 7/9] OMAP3: CPUidle: Added peripheral pwrdm checks into bm check

2010-02-12 Thread Tero Kristo
From: Tero Kristo tero.kri...@nokia.com Following checks are made (and their reasoning): - If CAM domain is active, prevent idle completely * CAM pwrdm does not have HW wakeup capability - If PER is likely to remain on, prevent PER off * Saves on unnecessary context save/restore - If CORE

[Resend: Patch] DSPBRIDGE: Remove conditional check from the InputMsg function

2010-02-12 Thread Hebbar, Shivananda
From: Shivananda Hebbar x0heb...@ti.com This patch removes conditional check for uMaxMsgs for the below reasons. 1)1st conditional check. MPU Bridge stops processing messages from DSP, if uMaxMsgs (currently 8) are sent in one shot. The check (=) will make it to return from function without

Re: compilation error

2010-02-12 Thread Koen Kooi
Op 12 feb 2010, om 13:20 heeft Gary Thomas het volgende geschreven: On 02/12/2010 03:13 AM, Niamathullah sharief wrote: Hello, can anyone tell me while compilaing dbus-1.2.20 i am getting the folllowing error checking for XML_ParserCreate_MM in -lexpat... no configure: error: Could not

Re: Moving board patches from DSS2 to linux-omap

2010-02-12 Thread Tony Lindgren
* Tomi Valkeinen tomi.valkei...@nokia.com [100212 02:38]: On Thu, 2010-02-11 at 19:52 +0100, ext Tony Lindgren wrote: * Tomi Valkeinen tomi.valkei...@nokia.com [100211 03:59]: On Thu, 2010-02-11 at 12:50 +0100, ext Mike Rapoport wrote: Tomi Valkeinen wrote: Hi, As

Re: PATCH[V2 1/3]: Update Platform files for SPI

2010-02-12 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [100209 15:03]: * Grant Likely grant.lik...@secretlab.ca [100209 14:38]: On Tue, Feb 9, 2010 at 3:25 PM, Tony Lindgren t...@atomide.com wrote: * Hemanth V heman...@ti.com [100203 02:19]: From ee48142ddc43129a21676dbb56a83e3e7d8063de Mon Sep 17 00:00:00

Re: [PATCH 0/2 RFC]OMAP3430: hwmod FW for GPIO

2010-02-12 Thread Paul Walmsley
On Fri, 12 Feb 2010, Varadarajan, Charulatha wrote: This patch series makes the OMAP3430 GPIO module use hwmod framework. This patch series applies on top of pm branch and it requires my previous patch set which converts GPIO into an early init device. They are boot tested on SDP 3430

[PATCH 0/6] Mailbox: Fix some issues in mailbox module

2010-02-12 Thread Guzman Lugo, Fernando
From a7b162f3af04bbfa39c439c47b8499962410a9c9 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 12 Feb 2010 19:35:05 -0600 Subject: [PATCH 0/6] Mailbox: Fix some issues in mailbox module This set of patches fix some issue I found when I was working with mailbox

[PATCH 1/6] Mailbox: free mailbox interrupt before freeing blk queue

2010-02-12 Thread Guzman Lugo, Fernando
From 4993c3740c532553035a175024a5b2067c11afc4 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 12 Feb 2010 19:02:32 -0600 Subject: [PATCH] Mailbox: free mailbox interrupt before freeing blk queue Free interrupt before freeing blk_queue to avoid any attempt of access

[PATCH 2/6] Mailbox: flush pending deferred works before freeing blk queue

2010-02-12 Thread Guzman Lugo, Fernando
From 0c844957e17257f19f7ef3f51ac860275ce89440 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 12 Feb 2010 19:07:14 -0600 Subject: [PATCH] Mailbox: flush pending deferred works before freeing blk queue flush pending deferred works before freeing blk_queue to prevent

[PATCH 3/6] Mailbox: change mailbox version print to pr_debug

2010-02-12 Thread Guzman Lugo, Fernando
From 60e21e76773de379deb41ff166f9679b7078276f Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Wed, 10 Feb 2010 17:08:20 -0600 Subject: [PATCH] Mailbox: change mailbox version print to pr_debug it is not useful printing the version every time mailbox is used instead

[PATCH 4/6] Mailbox: Check valid registered callback before calling

2010-02-12 Thread Guzman Lugo, Fernando
From 6b31bcca42598217bd46dd5719c50d37fa9ffc3a Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Wed, 27 Jan 2010 20:04:02 -0600 Subject: [PATCH] Mailbox: Check valid registered callback before calling This patch checks if the mailbox user has assinged a valid callback

[PATCH 5/6] Mailbox: sleeping function called from invalid context fix

2010-02-12 Thread Guzman Lugo, Fernando
From e06b2716824f225747c4dc83ed2623d0160ae132 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 29 Jan 2010 17:12:24 -0600 Subject: [PATCH] Mailbox: sleeping function called from invalid context fix This patch fixes this bug: BUG: sleeping function called from invalid

[PATCH 0/3] DSPBRIDGE: Replace custom mailbox implementation with kernel mailbox module

2010-02-12 Thread Guzman Lugo, Fernando
From d287e11cdb126f2c9b4be8d6d6f958ffdf7ff716 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 12 Feb 2010 19:55:55 -0600 Subject: [PATCH] DSPBRIDGE: Replace custom mailbox implementation with kernel mailbox module This set of patches removes dspbridge mailbox

[PATCH 1/3] DSPBRIDGE: Change dspbridge for open source mailbox implementation

2010-02-12 Thread Guzman Lugo, Fernando
From 627fb103cb73202128b8c5d2a51c879c52ebf076 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 12 Feb 2010 02:26:58 -0600 Subject: [PATCH] DSPBRIDGE: Change dspbridge for open source mailbox implementation This patch removes our dspbridge for opensource mailbox

[PATCH 2/3] DSPBRIDGE: Remove hw_mbox.c and hw_mbox.h not needed anymore

2010-02-12 Thread Guzman Lugo, Fernando
From 5451312f78b6631c9cfacfde10928f481e60b65c Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Wed, 27 Jan 2010 20:12:38 -0600 Subject: [PATCH] DSPBRIDGE: Remove hw_mbox.c and hw_mbox.h not needed anymore Because of mailbox migration now the files hw_mbox.c and hw_mbox.h

[PATCH 3/3] DSPBRIDGE: Remove chnl_sm.h and tiomap_sm.c

2010-02-12 Thread Guzman Lugo, Fernando
From d287e11cdb126f2c9b4be8d6d6f958ffdf7ff716 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Fri, 22 Jan 2010 21:46:42 -0600 Subject: [PATCH] DSPBRIDGE: Remove chnl_sm.h and tiomap_sm.c Because of mailbox migration all the functions in tiomap_sm.c except one and their