RE: [PATCH] OMAP3: Serial: Improved sleep logic

2010-02-04 Thread Tero.Kristo
-Original Message- From: ext Tony Lindgren [mailto:t...@atomide.com] Sent: 03 February, 2010 19:50 To: Kristo Tero (Nokia-D/Tampere) Cc: linux-omap@vger.kernel.org Subject: Re: [PATCH] OMAP3: Serial: Improved sleep logic * Tero Kristo tero.kri...@nokia.com [100202 01:38]: From: Tero

RE: [alsa-devel] [PATCH 0/4] ASOC: Add AM3517 EVM support in ASOC

2010-02-04 Thread Aggarwal, Anuj
Hmm, well I still have about 70 patches pending and have not yet gotten into looking at the board-*.c files that much.. But looks like I had marked these as awaiting upstream. I've marked them new again and will queue into omap for-next when I get to dealing with the board-*.c files.

[PATCH 1/3] omap3evm: Add mux settings for keypad

2010-02-04 Thread Sanjeev Premi
This patch sets SYS_NIRQ for keypad input. It also sets the same as a wakeup event from OFF mode. Signed-off-by: Sanjeev Premi pr...@ti.com --- arch/arm/mach-omap2/board-omap3evm.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap3evm.c

[PATCH 2/3] omap3evm: Fixes after moving to matrix_keypad

2010-02-04 Thread Sanjeev Premi
The keypad was not working properly after migrating to matrix_keypad. Swapped the row, col fields of the KEY() macro in the keymap definition to get it working again. Signed-off-by: Sanjeev Premi pr...@ti.com --- arch/arm/mach-omap2/board-omap3evm.c | 27 +++ 1 files

[PATCH 3/3] omap3evm: Configure GPIO175 for touchscreen PEN_IRQ

2010-02-04 Thread Sanjeev Premi
GPIO175 is used for PEN_IRQ on the EVM. This patch sets the mux settings for the same. Signed-off-by: Sanjeev Premi pr...@ti.com --- arch/arm/mach-omap2/board-omap3evm.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap3evm.c

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

2010-02-04 Thread Tomi Valkeinen
On Wed, 2010-02-03 at 18:12 +0100, ext Tony Lindgren wrote: * Grazvydas Ignotas nota...@gmail.com [100203 04:27]: hi, On Wed, Feb 3, 2010 at 6:29 AM, Stephen Rothwell s...@canb.auug.org.au wrote: Hi Tomi, Today's linux-next merge of the omap_dss2 tree got a conflict in

Re: [RFC] [PATCH] omapfb: Fix 12-bit display (RGB444 color mode) handling

2010-02-04 Thread Tomi Valkeinen
Hi, On Wed, 2010-02-03 at 17:21 +0100, ext Janusz Krzysztofik wrote: Tomi Valkeinen wrote: On Thu, 2010-01-14 at 21:25 +0100, ext Janusz Krzysztofik wrote: Support for RGB444 (12-bit) pixel format has been introduced into omapfb/lcdc by Mark Underwood on 2006-05-26 (commit

[PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Grazvydas Ignotas
The ADS7846/TSC2046 touchscreen controllers can (and usually are) connected to various regulators for power, so add regulator support. Make it optional for now to avoid breaking all current users of this driver. Signed-off-by: Grazvydas Ignotas nota...@gmail.com ---

[PATCH 0/5] cache-l2x0 and omap4 l2 support

2010-02-04 Thread Shilimkar, Santosh
Russell / Tony, Here is the series which combines earlier two series because of dependency and rebased against 2.6.33-rc2. This series also implements Russell's suggested combined monitor API. Tested on OMAP4430 SDP The following changes since commit abe94c756c08d50566c09a65b9c7fe72f83071c5:

[PATCH 2/5] OMAP4: Add L2 Cache support

2010-02-04 Thread Santosh Shilimkar
This patch adds L2 Cache support for OMAP4. External L2 cache is used in OMPA4 v2 version incorporates Catalin's commnet on the register save/restore list Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com CC: Catalin Marinas catalin.mari...@arm.com CC: Tony Lindgren t...@atomide.com CC:

[PATCH 1/5] ARM: L2 : Add maintainace by line helper functions

2010-02-04 Thread Santosh Shilimkar
This patch adds the cache maintainance by line helper functions. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com Acked-by: Catalin Marinas catalin.mari...@arm.com CC: Tony Lindgren t...@atomide.com CC: Russell King rmk+ker...@arm.linux.org.uk --- arch/arm/mm/cache-l2x0.c | 36

[PATCH 5/5] OMAP4: Enable L2 Cache

2010-02-04 Thread Santosh Shilimkar
This patch enables L2 cache and associated Errata on the OMAP4430 SDP. Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com CC: Tony Lindgren t...@atomide.com CC: Russell King rmk+ker...@arm.linux.org.uk --- arch/arm/configs/omap_4430sdp_defconfig |3 +++ 1 files changed, 3

[PATCH 3/5] OMAP4: Clean the secondary_data from L2

2010-02-04 Thread Santosh Shilimkar
The boot_secondary() needs to call outer_clean_range() because the L2 cache is already enabled in the kernel boot with early_initcall Signed-off-by: Santosh Shilimkar santosh.shilim...@ti.com CC: Tony Lindgren t...@atomide.com CC: Russell King rmk+ker...@arm.linux.org.uk ---

[PATCH 4/5] ARM: L2 : Errata 588369: Clean Invalidate do not invalidate clean lines

2010-02-04 Thread Santosh Shilimkar
This patch implements the work-around for the errata 588369. The secure API is used to alter L2 debug register because of trust-zone. This version updated with comments from Russell and Catalin and generated against 2.6.33-rc4 mainline kernel. Detail comments can be found:

Re: [PATCH 2/5] OMAP4: Add L2 Cache support

2010-02-04 Thread Russell King - ARM Linux
On Thu, Feb 04, 2010 at 07:55:44PM +0530, Santosh Shilimkar wrote: This patch adds L2 Cache support for OMAP4. External L2 cache is used in OMPA4 OMAP4. @@ -49,6 +50,58 @@ static struct omap_lcd_config sdp4430_lcd_config __initdata = { static struct omap_board_config_kernel

Re: [PATCH 4/5] ARM: L2 : Errata 588369: Clean Invalidate do not invalidate clean lines

2010-02-04 Thread Russell King - ARM Linux
On Thu, Feb 04, 2010 at 07:55:46PM +0530, Santosh Shilimkar wrote: diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c index 1a14d18..6241f10 100644 --- a/arch/arm/mm/cache-l2x0.c +++ b/arch/arm/mm/cache-l2x0.c @@ -56,12 +56,41 @@ static inline void l2x0_inv_line(unsigned long

Re: [RFC] [PATCH] omapfb: Fix 12-bit display (RGB444 color mode) handling

2010-02-04 Thread Janusz Krzysztofik
Thursday 04 February 2010 10:58:12 Tomi Valkeinen wrote: Hi, On Wed, 2010-02-03 at 17:21 +0100, ext Janusz Krzysztofik wrote: Tomi Valkeinen wrote: On Thu, 2010-01-14 at 21:25 +0100, ext Janusz Krzysztofik wrote: Support for RGB444 (12-bit) pixel format has been introduced into

Re: [PATCH 0/5] cache-l2x0 and omap4 l2 support

2010-02-04 Thread Russell King - ARM Linux
On Thu, Feb 04, 2010 at 07:52:52PM +0530, Shilimkar, Santosh wrote: Russell / Tony, Here is the series which combines earlier two series because of dependency and rebased against 2.6.33-rc2. This series also implements Russell's suggested combined monitor API. Tested on OMAP4430 SDP If

Re: [RFC] [PATCH] omapfb: Fix 12-bit display (RGB444 color mode) handling

2010-02-04 Thread Tomi Valkeinen
On Thu, 2010-02-04 at 15:40 +0100, ext Janusz Krzysztofik wrote: Thursday 04 February 2010 10:58:12 Tomi Valkeinen wrote: Hi, On Wed, 2010-02-03 at 17:21 +0100, ext Janusz Krzysztofik wrote: Tomi Valkeinen wrote: On Thu, 2010-01-14 at 21:25 +0100, ext Janusz Krzysztofik wrote:

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Grazvydas Ignotas
On Thu, Feb 4, 2010 at 4:24 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Thu, Feb 04, 2010 at 03:39:18PM +0200, Grazvydas Ignotas wrote: The ADS7846/TSC2046 touchscreen controllers can (and usually are) connected to various regulators for power, so add regulator support. Make

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Mike Rapoport
Mark Brown wrote: On Thu, Feb 04, 2010 at 03:39:18PM +0200, Grazvydas Ignotas wrote: The ADS7846/TSC2046 touchscreen controllers can (and usually are) connected to various regulators for power, so add regulator support. Make it optional for now to avoid breaking all current users of this

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
Hi, Shortening the email a bit and only including the pieces that still have open questions: On Thu, Feb 04, 2010 at 08:39:10PM +0530, Govindraj.R wrote: +#define OMAP_SERIAL_NAME ? ? ttyO +#define OMAP_SERIAL_MAJOR ? ?204 +#define OMAP_SERIAL_MINOR ? ?64 Where did these numbers come

[PATCH 2/2] OMAP: DSS2: OMAPFB: implement OMAPFB_GET_DISPLAY_INFO

2010-02-04 Thread Tomi Valkeinen
Previously the only place to get the size of the display was from the DSS's sysfs interface, making, for example, configuring overlays and doing updates on manual displays more difficult. Signed-off-by: Tomi Valkeinen tomi.valkei...@nokia.com --- drivers/video/omap2/omapfb/omapfb-ioctl.c | 18

[PATCH 1/2] OMAP: DSS2: OMAPFB: implement OMAPFB_RESERVE_BUFFER

2010-02-04 Thread Tomi Valkeinen
Currently applications can reserve fb memory with OMAPFB_SETUP_MEM ioctl, which takes the size in bytes as an argument. This falls apart when using VRFB, as the memory need for VRFB is not trivial This patch implements OMAPFB_RESERVE_BUFFER ioctl, which reserves memory just like SETUP_MEM, but

[PATCHv2 0/3] DSPBRIDGE: MEM Module cleanup series

2010-02-04 Thread Ameya Palande
This series contains patches which remove following things from the MEM module: 1. MEM_CHECK memory leak debugging mechanism 2. MEM_Free() function 3. MEM_VFree() function There was some issue while applying patches from V1, which should be solved in V2. Ameya Palande (3): DSPBRIDGE: Get rid

[PATCH 3/3] DSPBRIDGE: Get rid of MEM_VFree()

2010-02-04 Thread Ameya Palande
vfree() is NULL safe so MEM_VFree() doesn't provide any significant advantage. By getting rid of MEM_VFree() and the NULL pointer check associated with it, we can save on: 1. One level of indirection which translates to a function call cost. 2. NULL pointer checking cost. Signed-off-by: Ameya

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Govindraj.R
Olof, Hi, Shortening the email a bit and only including the pieces that still have open questions: On Thu, Feb 04, 2010 at 08:39:10PM +0530, Govindraj.R wrote: +#define OMAP_SERIAL_NAME ? ? ttyO +#define OMAP_SERIAL_MAJOR ? ?204 +#define OMAP_SERIAL_MINOR ? ?64 Where did these

RE: [PATCH 4/5] ARM: L2 : Errata 588369: Clean Invalidate do not invalidate clean lines

2010-02-04 Thread Shilimkar, Santosh
-Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Thursday, February 04, 2010 8:13 PM To: Shilimkar, Santosh Cc: t...@atomide.com; Woodruff, Richard; catalin.mari...@arm.com; linux-arm- ker...@lists.infradead.org; linux-omap@vger.kernel.org

RE: [PATCH 0/5] cache-l2x0 and omap4 l2 support

2010-02-04 Thread Shilimkar, Santosh
Tony, -Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Thursday, February 04, 2010 8:14 PM To: Shilimkar, Santosh Cc: Tony Lindgren; Catalin Marinas; linux-arm-ker...@lists.infradead.org; linux-omap@vger.kernel.org Subject: Re: [PATCH 0/5]

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Mark Brown
On Thu, Feb 04, 2010 at 05:08:11PM +0200, Mike Rapoport wrote: Mark Brown wrote: This should not be required. The regulator API stubs itself out when it is not built so all API calls report as successful. And what about boards that have the ads7846 tied to power rail and still want to

[PATCH 1/3] twl4030: keypad: Add suspend-resume functions

2010-02-04 Thread Sanjeev Premi
This patch adds suspend, resume functions to the TWL4030 keypad driver when CONFIG_PM is selected. Signed-off-by: Sanjeev Premi pr...@ti.com --- drivers/input/keyboard/twl4030_keypad.c | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git

[PATCH 2/3] twl4030: keypad: Hooks for board specific suspend-resume

2010-02-04 Thread Sanjeev Premi
This patch adds hooks to support board specific implementation during the suspend and resume operations. The TWL4030 can be connected to multiple boards. Without these hooks, board specific macros will be required in a generic driver. Signed-off-by: Sanjeev Premi pr...@ti.com ---

[PATCH 0/3] twl4030: keypad: Support for suspend-resume

2010-02-04 Thread Sanjeev Premi
This set adds suspend-resume functionality to the TWL4030 keypad driver. It also adds the capability to wakeup from the OFF mode. These 2 patches don't depend upon the code in pm branch. And have been tested on linux-omap/master (c6348aa): twl4030: keypad: Add suspend-resume functions

Re: [PATCH] OMAP3: Serial: Improved sleep logic

2010-02-04 Thread Tony Lindgren
* tero.kri...@nokia.com tero.kri...@nokia.com [100203 23:59]: -Original Message- From: ext Tony Lindgren [mailto:t...@atomide.com] Sent: 03 February, 2010 19:50 To: Kristo Tero (Nokia-D/Tampere) Cc: linux-omap@vger.kernel.org Subject: Re: [PATCH] OMAP3: Serial: Improved sleep

Re: [PATCH 0/5] cache-l2x0 and omap4 l2 support

2010-02-04 Thread Tony Lindgren
* Shilimkar, Santosh santosh.shilim...@ti.com [100204 07:59]: Tony, -Original Message- From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Thursday, February 04, 2010 8:14 PM To: Shilimkar, Santosh Cc: Tony Lindgren; Catalin Marinas;

[PATCH V2 0/4] OMAP2: Board support for DevKit8000

2010-02-04 Thread Thomas Weber
These patches add support for Timll DevKit8000. The DevKit8000 is a beagle board clone with ethernet and lcd. The patches based on work from embest, Kim Botherway and many others. Changelog V2 Add minimal support for DevKit8000 Add correct position of led3.

[PATCH V2 1/4] Add minimal support for DevKit8000

2010-02-04 Thread Thomas Weber
These patches add board support for the Timll DevKit8000. The DevKit8000 is a beagle board clone from Timll, sold by armkits.com. The DevKit8000 has RS232 serial port, LCD, DVI-D, S-Video, Ethernet, SD/MMC, keyboard, camera, SPI, I2C, USB and JTAG interface. Signed-off-by: Thomas Weber

[PATCH V2 2/4] Add devkit8000_defconfig

2010-02-04 Thread Thomas Weber
This patch adds a default config for the Timll Devkit8000. Signed-off-by: Thomas Weber we...@corscience.de --- arch/arm/configs/devkit8000_defconfig | 1889 + 1 files changed, 1889 insertions(+), 0 deletions(-) create mode 100644

[PATCH V2 3/4] Add ASoC support for Devkit8000

2010-02-04 Thread Thomas Weber
This patch expands the omap3beagle sound soc for the beagle board clone DevKit8000. Signed-off-by: Thomas Weber we...@corscience.de --- sound/soc/omap/Kconfig |8 +--- sound/soc/omap/omap3beagle.c |6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git

[PATCH V2 4/4] OMAP: DSS: Add Innolux 7 display for DevKit8000

2010-02-04 Thread Thomas Weber
This patch adds the 7 inch display Innolux AT070TN83 for the DevKit8000 with DSS2 interface. Signed-off-by: Thomas Weber we...@corscience.de --- drivers/video/omap2/displays/Kconfig |8 ++- drivers/video/omap2/displays/Makefile |1 +

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Mark Brown
On Thu, Feb 04, 2010 at 04:52:26PM +0200, Grazvydas Ignotas wrote: On Thu, Feb 4, 2010 at 4:24 PM, Mark Brown The updates to fix up the boards that need this are fairly straightforward and given that it's fairly easy to identify systems which are using the driver in mainline so I'd really

[PATCH 2/3] OMAP3 PM: Defining .pwrsts_logic_ret field for core power domain structure

2010-02-04 Thread Thara Gopinath
This patch adds the flag .pwrsts_logic_ret info for the core power domain in the associated powerdomain structure. This flag specifies the states core domain logic can hit in event of the domain entering retention. Signed-off-by: Thara Gopinath th...@ti.com Cc: Paul Walmsley p...@pwsan.com ---

[PATCH 3/3] OMAP3 PM: Adding counters for power domain logic off and mem off during retention.

2010-02-04 Thread Thara Gopinath
This patch adds counters to keep track of whether the powerdomain logic or software controllable memory banks are turned off when the power domain enters retention. During power domain retention if logic gets turned off, the scenario is known as Open Switch Retention. Also during retention s/w

[PATCH 0/3] OMAP2/3 PM: Powerdomain patch set for supporting Open Switch Retention

2010-02-04 Thread Thara Gopinath
From: Thara Gopinath th...@omaplbp.(none) This patch series contains some preparatory powerdomain framework related fixes for supporting Open Switch Retetion of Core and MPU domains in OMAP3. Thara Gopinath (3): OMAP2/3 PM: Adding powerdomain APIs for reading the next logic and mem state

[PATCH 1/3] OMAP2/3 PM: Adding powerdomain APIs for reading the next logic and mem state

2010-02-04 Thread Thara Gopinath
This patch adds APIs pwrdm_read_logic_retst and pwrdm_read_mem_retst for reading the next programmed logic and memory state a powerdomain is to hit in event of the next power domain state being retention. Signed-off-by: Thara Gopinath th...@ti.com Cc: Paul Walmsley p...@pwsan.com ---

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Kevin Hilman
Govindraj.R govindraj.r...@ti.com writes: [...] + * @baud: baudrate for which divisor needs to be calculated. + * + * We have written our own function to get the divisor so as to support + * 13x mode. + */ Again, the why, not the how. Why do you need the 13x divisor? What's magic

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Dmitry Torokhov
On Thu, Feb 04, 2010 at 04:21:55PM +, Mark Brown wrote: On Thu, Feb 04, 2010 at 04:52:26PM +0200, Grazvydas Ignotas wrote: On Thu, Feb 4, 2010 at 4:24 PM, Mark Brown The updates to fix up the boards that need this are fairly straightforward and given that it's fairly easy to

Re: [PATCH 0/3] twl4030: keypad: Support for suspend-resume

2010-02-04 Thread Tony Lindgren
Hi, * Sanjeev Premi pr...@ti.com [100204 08:04]: This set adds suspend-resume functionality to the TWL4030 keypad driver. It also adds the capability to wakeup from the OFF mode. These 2 patches don't depend upon the code in pm branch. And have been tested on linux-omap/master (c6348aa):

Re: [PATCH] Input: ads7846: add regulator support

2010-02-04 Thread Mark Brown
On 4 Feb 2010, at 18:08, Dmitry Torokhov dmitry.torok...@gmail.com wrote: On Thu, Feb 04, 2010 at 04:21:55PM +, Mark Brown wrote: On Thu, Feb 04, 2010 at 04:52:26PM +0200, Grazvydas Ignotas wrote: On Thu, Feb 4, 2010 at 4:24 PM, Mark Brown The updates to fix up the boards that need

Re: [PM-WIP-OPP] [PATCH v2] omap3: pm: cpufreq: populate l3 opp1 again

2010-02-04 Thread Kevin Hilman
Nishanth Menon n...@ti.com writes: We had removed the frequency for OPP1 L3 when we used to use frequency to enable/disable frequencies. It is better to populate the same instead of confusing future readers of the code. The OPP1 remains disabled as explained in the discussion. Discussion:

Re: [PM-WIP-OPP][PATCH v4] omap: pm: Introducing enum for OPP types

2010-02-04 Thread Kevin Hilman
Nishanth Menon n...@ti.com writes: From: Romit Dasgupta ro...@ti.com Using omap_opp * to refer to domain types entails opp implementation into maintaining pointers outside the opp layer. Since all we need is an identifier to a specific domain for query/operational purposes, we introduce

RE: [PATCH v2] OMAP: UART: fix full-fifo write abort

2010-02-04 Thread Shilimkar, Santosh
Tony, Can this be merged now in linux-omap ? -Original Message- From: Shilimkar, Santosh Sent: Friday, January 29, 2010 3:58 PM To: t...@atomide.com Cc: linux-omap@vger.kernel.org; Shilimkar, Santosh; Woodruff, Richard; Ghorai, Sukumar Subject: [PATCH v2] OMAP: UART: fix full-fifo

[PATCH] OMAP2/3/4: ioremap address space

2010-02-04 Thread Shilimkar, Santosh
Tony, -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Shilimkar, Santosh Sent: Wednesday, January 27, 2010 11:14 AM To: Tony Lindgren Cc: linux-omap@vger.kernel.org; Kevin Hilman Subject: RE: [PATCH] OMAP2/3/4: ioremap

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
On Thu, Feb 04, 2010 at 09:15:23PM +0530, Govindraj.R wrote: Ah. Care to update the comment to mention that? I guess the case above is similar. Before accessing FCR we need to write 0x00 to LCR, I will correct it as, / Access to FCR requires writing Ox00 to LCR */ Sounds

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
On Thu, Feb 04, 2010 at 09:46:40AM -0800, Kevin Hilman wrote: Govindraj.R govindraj.r...@ti.com writes: [...] + * @baud: baudrate for which divisor needs to be calculated. + * + * We have written our own function to get the divisor so as to support + * 13x mode. + */

[PATCH] DSPBRIDGE: check pointer before calling Proc_Detach

2010-02-04 Thread Omar Ramirez Luna
From: Ernest Ramos Falcon erne...@ti.com This patch adds a check before calling Proc_Detach, otherwise in case a failure occurs on PROC_Attach and hProcessor is invalid when the userspace task closes its handle, unexpected behavior might be seen as this pointer is dereferenced in PROC_Detach.

Re: [PATCH] OMAP3: Serial: Improved sleep logic

2010-02-04 Thread Kevin Hilman
Tero Kristo tero.kri...@nokia.com writes: From: Tero Kristo tero.kri...@nokia.com Only RX interrupt will now kick the sleep prevent timer. In addition, TX fifo status is checked before disabling clocks, this will prevent occasional garbage being printed on serial line. Smartidle is also

Re: [PATCH 2/3] twl4030: keypad: Hooks for board specific suspend-resume

2010-02-04 Thread Kevin Hilman
Sanjeev Premi pr...@ti.com writes: This patch adds hooks to support board specific implementation during the suspend and resume operations. The TWL4030 can be connected to multiple boards. Without these hooks, board specific macros will be required in a generic driver. Signed-off-by:

Re: [PATCH] OMAP2/3/4: ioremap address space

2010-02-04 Thread Tony Lindgren
* Shilimkar, Santosh santosh.shilim...@ti.com [100204 11:45]: Tony, -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Shilimkar, Santosh Sent: Wednesday, January 27, 2010 11:14 AM To: Tony Lindgren Cc:

Re: [PATCH 3/3] OMAP3: PM: Wakeup from TWL4030 keypad with OFF mode

2010-02-04 Thread Kevin Hilman
Sanjeev Premi pr...@ti.com writes: This patch allows wakeup from TWL4030 keypad when OFF mode is hit during suspend. Tested on OMAP3EVM. Signed-off-by: Sanjeev Premi pr...@ti.com The idea here looks good, but there is nothing realy EVM specific here AFAICT, and this exact code could be

[GIT PULL] omap fixes for 2.6.33-rc6

2010-02-04 Thread Tony Lindgren
Hi Linus, Please pull omap fixes from: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git omap-fixes-for-linus Regards, Tony The following changes since commit abe94c756c08d50566c09a65b9c7fe72f83071c5: Linus Torvalds (1): Linux 2.6.33-rc6 are available in the

Re: [PATCH/RFC 0/4] convert HS-MMC driver to hwmod + runtime PM

2010-02-04 Thread Kevin Hilman
Kevin Hilman khil...@deeprootsystems.com writes: This series converts the OMAP HS-MMC driver to use omap_hwmod + runtime PM API. Depends on MMC hwmods available in 'pm-wip/hwmods' branch of my git tree[1] as well as previously posted runtime PM series: [PATCH/RFC 0/2] initial runtime PM

linux-next: manual merge of the omap tree with the arm tree

2010-02-04 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the omap tree got a conflict in arch/arm/mach-omap1/include/mach/debug-macro.S arch/arm/mach-omap2/include/mach/debug-macro.S between commit 7f62dc4756eaf761570b96250630d48f80397d64 (ARM: 5910/1: ARM: Add tmp register for addruart and loadsp) from the arm tree

Re: [PATCH 2/2] OMAP: DSS2: OMAPFB: implement OMAPFB_GET_DISPLAY_INFO

2010-02-04 Thread Ville Syrjälä
On Thu, Feb 04, 2010 at 05:31:26PM +0200, Tomi Valkeinen wrote: Previously the only place to get the size of the display was from the DSS's sysfs interface, making, for example, configuring overlays and doing updates on manual displays more difficult. Signed-off-by: Tomi Valkeinen

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

2010-02-04 Thread Tony Lindgren
* Stephen Rothwell s...@canb.auug.org.au [100204 15:17]: Hi all, Today's linux-next merge of the omap tree got a conflict in arch/arm/mach-omap1/include/mach/debug-macro.S arch/arm/mach-omap2/include/mach/debug-macro.S between commit 7f62dc4756eaf761570b96250630d48f80397d64 (ARM: 5910/1:

Re: [PATCH 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-02-04 Thread Tony Lindgren
Hi, Almost there.. Few more comments below. * Vimal Singh vimal.neww...@gmail.com [100112 22:48]: From 89eaa5d55e04f65e76ad49ed8b010cba578d91ca Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11 Jan 2010 16:01:29 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for

Re: [PATCH 2/3] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init

2010-02-04 Thread Tony Lindgren
* Vimal Singh vimal.neww...@gmail.com [100112 22:51]: From 994785b066a9bd4fbaf7753cb6ab7317440afd36 Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Tue, 12 Jan 2010 17:22:42 +0530 Subject: [PATCH] OMAP: SDP: Introducing 'board-sdp-flash.c' for flash init This patch adds

Re: [PATCHV5 1/4] OMAP3: introduce DPLL4 Jtype

2010-02-04 Thread Paul Walmsley
Hello Vishwanath, Do you plan to address the comments on patches 1, 2, and 4 of this series and repost? It would be nice to get these in for 2.6.34 and time is dwindling, - Paul -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to

Re: [alsa-devel] [PATCH 0/4] ASOC: Add AM3517 EVM support in ASOC

2010-02-04 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [100203 17:48]: * Aggarwal, Anuj anuj.aggar...@ti.com [100129 00:13]: -Original Message- From: Mark Brown [mailto:broo...@opensource.wolfsonmicro.com] Sent: Friday, October 30, 2009 4:00 AM To: Aggarwal, Anuj Cc: alsa-de...@alsa-project.org;

[APPLIED] [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): e72cab3cc5a7e2fb9808552bec63c6ebbd0c4809 PatchWorks http://patchwork.kernel.org/patch/67321/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 3/3] omap3: Add platform init code for EHCI driver on IGEP v2

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): b89092d992fb738aee592715c4b976281eb89344 PatchWorks http://patchwork.kernel.org/patch/67323/ Git (Likely to change, and takes a while to get

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

2010-02-04 Thread Stephen Rothwell
Hi Tony, On Thu, 4 Feb 2010 15:30:19 -0800 Tony Lindgren t...@atomide.com wrote: Thanks, I'll sort it out in omap for-next tree so they merge cleanly. Thanks -- Cheers, Stephen Rothwells...@canb.auug.org.au http://www.canb.auug.org.au/~sfr/ pgpV7BlwoG9sN.pgp

[APPLIED] [PATCHv2 6/8] ARM: OMAP3: SDRC: add timing data for Numonyx

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): ba8e34c19167d929b32fff4ae007452ba0f4ee81 PatchWorks http://patchwork.kernel.org/patch/72592/ Git (Likely to change, and takes a while to get

Re: [PATCH 1/3] Initial support for Technexion Thunderboard : boardsupport

2010-02-04 Thread Tony Lindgren
Hi, * Daniel Toussaint dan...@dmhome.net [091213 05:32]: Dear All, Patches reformatted for mainline. Look OK, can you please repost the series with proper patch description and Signed-off-by? See Documentation/submit* files for more info. Need it pretty fast too for this merge window

[APPLIED] [PATCH 1/3-V1] AM35xx: Introduce am35xx.h file

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 6a188e18f755ad5f04f65a90b688d26fa973eb23 PatchWorks http://patchwork.kernel.org/patch/72096/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 2/3-V1] AM35xx: Add AM35xx intr_clr amp; sw_rst cntrl reg bit

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 6e11d063ed02906e9e92f87f2bfb70b0a10886c5 PatchWorks http://patchwork.kernel.org/patch/72098/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 3/3-V1] AM35xx: Update irq.h for AM35xx IPSS module

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): e0782a9c7ff8c4fd86291c0f05cfd5bff4d95edb PatchWorks http://patchwork.kernel.org/patch/72097/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 1/4-V1] AM3517: Enable basic I2C Support

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): a9eb689a1f53707456bb9d0c867b80088f165058 PatchWorks http://patchwork.kernel.org/patch/72101/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 2/4-V1] AM3517: Enable TSC2004 driver support for AM3517EVM

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 5fcad6b119b8760f817dbf2f2d6331ee0cee442f PatchWorks http://patchwork.kernel.org/patch/72102/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 3/4-V1] AM3517: Enable RTC driver support for AM3517EVM

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 0e444714870c4b98e1c3417359f359916b452f86 PatchWorks http://patchwork.kernel.org/patch/72100/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH 4/4-V1] AM3517: Enable I2C-GPIO Expander driver support for

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 2029228d29b58312307f9044fbd324f558bd6ef6 PatchWorks http://patchwork.kernel.org/patch/72103/ Git (Likely to change, and takes a while to get

Re: [APPLIED] [PATCH 1/4-V1] AM3517: Enable basic I2C Support

2010-02-04 Thread Tony Lindgren
* Tony Lindgren t...@atomide.com [100204 17:02]: Actually added only this 1/4, the rest won't compile so I've dropped them. Regards, Tony This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change):

RE: [PATCHV2 2/2] OMAP3630: Clock: Fixing HSDivider Limitation

2010-02-04 Thread Paul Walmsley
Hi Vijayakumar, any update on these patches? - Paul -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 2/2 V2] omap: 3630: Disable internal pull-ups

2010-02-04 Thread Tony Lindgren
* Pais, Allen allen.p...@ti.com [100121 02:50]: From 4aa00e5dd0bdf06b7eb421cef9e066670669691e Mon Sep 17 00:00:00 2001 From: Allen Pais allen.p...@ti.com Date: Thu, 21 Jan 2010 21:54:04 +0530 Subject: [PATCH 2/2] omap: 3630: Disable internal pull-ups This patch disables the newly introduced

Re: [PATCHv2 1/4] Regulator: OMAP: Creating TWL4030 file having supplies init data

2010-02-04 Thread Tony Lindgren
Hi, * Anuj Aggarwal anuj.aggar...@ti.com [100112 01:12]: A new file for TWL4030/TPS65950 is created which has common supplies and regulator init data structures. They will be referenced from the various board-evm files depending upon the EVM requirements, using the twl4030-pmic.h header file.

[APPLIED] [PATCHv2 2/6] OMAP4: IRQ: Add McPDM IRQ definition.

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): badd13ec074ac5ed97035916a97530c590c179d5 PatchWorks http://patchwork.kernel.org/patch/74769/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCHv2 3/6] ARM: OMAP4: Add McPDM base address

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 51177e2afc96da7984db25dca38a8f618f2e732a PatchWorks http://patchwork.kernel.org/patch/74770/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCHv2 4/6] OMAP4: MCPDM: Register McPDM platform device

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): c3aee5623b847af12fb9e30ea491f6249be32d41 PatchWorks http://patchwork.kernel.org/patch/74771/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH V2 1/4] Add minimal support for DevKit8000

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): 2c3dc8e6bc77782f3d855653b9df4445572c1914 PatchWorks http://patchwork.kernel.org/patch/77078/ Git (Likely to change, and takes a while to get

[APPLIED] [PATCH V2 2/4] Add devkit8000_defconfig

2010-02-04 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Branch in linux-omap: for-next Initial commit ID (Likely to change): d9b7514e22a429d82652c7ca40afba2bed530f7a PatchWorks http://patchwork.kernel.org/patch/77080/ Git (Likely to change, and takes a while to get

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

2010-02-04 Thread Tony Lindgren
* Stephen Rothwell s...@canb.auug.org.au [100204 16:13]: Hi Tony, On Thu, 4 Feb 2010 15:30:19 -0800 Tony Lindgren t...@atomide.com wrote: Thanks, I'll sort it out in omap for-next tree so they merge cleanly. Tried figuring out a clean mergeable solution, but it looks like I need to

RE: [PATCH] OMAP2/3/4: ioremap address space

2010-02-04 Thread Shilimkar, Santosh
-Original Message- From: Tony Lindgren [mailto:t...@atomide.com] Sent: Friday, February 05, 2010 3:21 AM To: Shilimkar, Santosh Cc: linux-omap@vger.kernel.org; Kevin Hilman Subject: Re: [PATCH] OMAP2/3/4: ioremap address space * Shilimkar, Santosh santosh.shilim...@ti.com [100204

RE: [APPLIED] [PATCH 2/4-V1] AM3517: Enable TSC2004 driver support for AM3517EVM

2010-02-04 Thread Hiremath, Vaibhav
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- ow...@vger.kernel.org] On Behalf Of Tony Lindgren Sent: Friday, February 05, 2010 6:35 AM To: linux-omap@vger.kernel.org Subject: [APPLIED] [PATCH 2/4-V1] AM3517: Enable TSC2004 driver support for

Re: [PATCH 1/3] Introducing 'gpmc-nand.c' for GPMC specific NAND init

2010-02-04 Thread Vimal Singh
On Fri, Feb 5, 2010 at 5:17 AM, Tony Lindgren t...@atomide.com wrote: Hi, Almost there.. Few more comments below. * Vimal Singh vimal.neww...@gmail.com [100112 22:48]: From 89eaa5d55e04f65e76ad49ed8b010cba578d91ca Mon Sep 17 00:00:00 2001 From: Vimal Singh vimalsi...@ti.com Date: Mon, 11

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

2010-02-04 Thread Paul Walmsley
On Tue, 2 Feb 2010, Tero Kristo wrote: 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 Thanks, queued for 2.6.34. - Paul -- To unsubscribe from

RE: [PATCH 2/3] twl4030: keypad: Hooks for board specific suspend-resume

2010-02-04 Thread Premi, Sanjeev
-Original Message- From: Kevin Hilman [mailto:khil...@deeprootsystems.com] Sent: Friday, February 05, 2010 3:19 AM To: Premi, Sanjeev Cc: linux-omap@vger.kernel.org Subject: Re: [PATCH 2/3] twl4030: keypad: Hooks for board specific suspend-resume Sanjeev Premi pr...@ti.com