Re: [patch-2.6.34-rc2+ 10/11] musb_core: don't call musb_platform_exit() twice

2010-03-25 Thread Felipe Balbi
On Wed, Mar 24, 2010 at 01:10:10PM +0100, ext Sergei Shtylyov wrote: Hello. Felipe Balbi wrote: From: Sergei Shtylyov sshtyl...@ru.mvista.com musb_platform_exit() is called twice from musb_init_controller() iff controller initialization fails. Move the call (and the DevCtl register writes

Re: [patch-2.6.35 09/11] usb: musb: Makefile: remove unexistent config option

2010-03-25 Thread Felipe Balbi
On Wed, Mar 24, 2010 at 03:59:36PM +0100, ext Sergei Shtylyov wrote: Felipe Balbi wrote: Remove the unexistent CONFIG_USB_INVENTRA_MUSB_HAS_AHB_ID option from our Makefile. Problem reported by Sergei Shtylyov sshtyl...@mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com ---

Re: [PATCH 2/9] OMAP: Devkit8000: Add missing package selection

2010-03-25 Thread Felipe Balbi
On Wed, Mar 24, 2010 at 09:29:04PM +0100, ext Thomas Weber wrote: the mach_devkit8000 kconfig option is the only one of the board configs that uses whitespaces for indention at the moment. Thatswhy I replaced these whitespaces with one tab. ok. makes sense then. -- balbi -- To unsubscribe

[PATCH v2 1/2] omap i2c: make errata 1.153 workaround a separate function

2010-03-25 Thread Alexander Shishkin
This is to avoid insanely long lines and levels of indentation. Signed-off-by: Alexander Shishkin virtu...@slind.org Acked-by: Tony Lindgren t...@atomide.com CC: linux-...@vger.kernel.org CC: linux-omap@vger.kernel.org CC: n...@ti.com --- drivers/i2c/busses/i2c-omap.c | 43

[PATCH v2 2/2] omap i2c: add a timeout to the busy waiting

2010-03-25 Thread Alexander Shishkin
The errata 1.153 workaround is busy waiting on XUDF bit in interrupt context, which may lead to kernel hangs. The problem can be reproduced by running the bus with wrong (too high) speed. Signed-off-by: Alexander Shishkin virtu...@slind.org Acked-by: Tony Lindgren t...@atomide.com CC:

Re: [PATCH 1/2] omap i2c: make errata 1.153 workaround a separate function

2010-03-25 Thread Alexander Shishkin
Can you please repost and I'll add those too into omap-testing first? Or maybe point to the right patchwork.kernel.org link. Resending. P.S. I think linux-i2c@ mailing list adds some vicious email headers that the email clients obey and don't include me in the to/cc in replies. I've only

Re: [patch-2.6.35 09/11] usb: musb: Makefile: remove unexistent config option

2010-03-25 Thread Sergei Shtylyov
Hello. Felipe Balbi wrote: Remove the unexistent CONFIG_USB_INVENTRA_MUSB_HAS_AHB_ID option from our Makefile. Problem reported by Sergei Shtylyov sshtyl...@mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/Makefile |4 1 files changed, 0

[patch-2.6.34-rc2+ 01/11] musb: fix power field to hold all possible values

2010-03-25 Thread Felipe Balbi
From: Ajay Kumar Gupta ajay.gu...@ti.com MUSB can supply upto 500mA such as, AM3517 and OMAP3EVM Rev =E and thus the 'power' field has to hold values above 255. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com ---

[patch-2.6.34-rc2+ 02/11] MUSB: fix DaVinci glue layer dependency

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com CONFIG_ARCH_DAVINCI now embraces both the real DaVinci and DA8xx/OMAP-L1x -- on which the DaVinci glue layer won't work. Change the Makefile dependency to CONFIG_ARCH_DAVINCI_DMx which corresponds to real DaVinci. Signed-off-by: Sergei Shtylyov

[patch-2.6.34-rc2+ 03/11] MUSB: Blackfin: don't fake blackfin_interrupt() result

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com Commit a5073b52833e4df8e16c93dc4cbb7e0c558c74a2 (musb_gadget: fix unhandled endpoint 0 IRQs) misses this change to blackfin.c: stop faking successful result of blackfin_interrupt() and emitting a debug message on an unhandled interrupt.

[patch-2.6.34-rc2+ 04/11] musb: save and restore missing bus control register

2010-03-25 Thread Felipe Balbi
From: Ajay Kumar Gupta ajay.gu...@ti.com Added the missing BUS_CONTROL register in musb save/restore routines. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/musb_core.c |2 ++ drivers/usb/musb/musb_core.h |2 +-

[patch-2.6.34-rc2+ 06/11] musb_core: don't touch 'musb-clock' in musb_free()

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com Remove duplicate/unbalanced calls to clk_disable()/clk_put() in musb_free(): - clk_disable() is called by musb_platform_exit() just prior to this call; - clk_put() is called by the callers of musb_free() prior to calling it... Signed-off-by: Sergei

[patch-2.6.34-rc2+ 11/11] musb_core: fix musb_init_controller() error cleanup path

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com This function forgets to call usb_remove_hcd() or musb_gadget_cleanup() iff sysfs_create_group() fails. Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com [ felipe.ba...@nokia.com : review the entire error path not only when we fail hcd

[patch-2.6.34-rc2+ 07/11] musb_core: don't prevent disabling clock on driver unload

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com Resetting 'musb-clock' to NULL in musb_shutdown() prevents musb_platform_exit() from properly disabling the clock when unloading the driver -- don't do it. Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi

[patch-2.6.34-rc2+ 00/11] musb patches (v2)

2010-03-25 Thread Felipe Balbi
Hi Greg, sorry for the last time. There was a bug in my script which caused it to rebased against the wrong branch. Now rebasing against Linus' today's master. Ajay Kumar Gupta (2): musb: fix power field to hold all possible values musb: save and restore missing bus control register Dan

[patch-2.6.34-rc2+ 08/11] MUSB: DaVinci: fix musb_platform_init() error cleanup path

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com This function forgets to call clk_disable() iff reading the USB module version register returns 0. Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/davinci.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff

[patch-2.6.34-rc2+ 05/11] musb: potential use after free

2010-03-25 Thread Felipe Balbi
From: Dan Carpenter erro...@gmail.com We assign urb-hcpriv = qh; a few lines down. I'm pretty sure we want it urb-hcpriv to be NULL not a freed value. Signed-off-by: Dan Carpenter erro...@gmail.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/musb_host.c |1 + 1

[patch-2.6.34-rc2+ 09/11] MUSB: OMAP: don't call clk_put()

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com Remove duplicate/unbalanced call to clk_put() from musb_platform_exit() -- clk_put() gets called from musb_core.c anyway... Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com ---

[patch-2.6.34-rc2+ 10/11] musb_core: don't call musb_platform_exit() twice

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com musb_platform_exit() is called twice from musb_init_controller() iff controller initialization fails. Move the call (and the DevCtl register writes surrounding it) from musb_free() to musb_remove(). Fix mispalced and now incorrect 'goto's in

[patch-2.6.35 (v2) 00/11] musb patches

2010-03-25 Thread Felipe Balbi
Hi Greg, v2 of musb patches for next merge window. Again, sorry for the mistake. Ajay Kumar Gupta (1): musb: Add extvbus in musb_board_data Anand Gadiyar (2): usb: musb: omap2430: remove unused define usb: musb: omap2430.c: remove unnecessary includes Cliff Cai (1): USB: musb: support

[patch-2.6.35 (v2) 03/11] MUSB: OMAP: remove omap_vbus_power()

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com This function does nothing... Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/omap2430.c |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git

[patch-2.6.35 (v2) 04/11] MUSB: Blackfin: remove bfin_vbus_power()

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com This function does nothing... Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/blackfin.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git

[patch-2.6.35 (v2) 07/11] usb: musb: omap2430: remove unused define

2010-03-25 Thread Felipe Balbi
From: Anand Gadiyar gadi...@ti.com get_cpu_rev() is unused in this driver. It is probably legacy code. So remove it. Signed-off-by: Anand Gadiyar gadi...@ti.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/omap2430.c |4 1 files changed, 0 insertions(+), 4

[patch-2.6.35 (v2) 08/11] usb: musb: omap2430.c: remove unnecessary includes

2010-03-25 Thread Felipe Balbi
From: Anand Gadiyar gadi...@ti.com We don't need mach-types and hardware.h Signed-off-by: Anand Gadiyar gadi...@ti.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/omap2430.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git

[patch-2.6.35 (v2) 09/11] usb: musb: Makefile: remove unexistent config option

2010-03-25 Thread Felipe Balbi
Remove the unexistent CONFIG_USB_INVENTRA_MUSB_HAS_AHB_ID option from our Makefile. Problem reported by Sergei Shtylyov sshtyl...@mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/Makefile |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff

[patch-2.6.35 (v2) 05/11] MUSB: OMAP: make musb_platform_suspend() 'static'

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com This function is only called inside omap2430.c... Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/omap2430.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[patch-2.6.35 (v2) 06/11] MUSB: Blackfin: remove musb_platform_{suspend|resume}()

2010-03-25 Thread Felipe Balbi
From: Sergei Shtylyov sshtyl...@ru.mvista.com These functions do nothing and also are both unnecessarily 'extern'; actually, musb_platform_resume() in not even called... Signed-off-by: Sergei Shtylyov sshtyl...@ru.mvista.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com ---

[patch-2.6.35 (v2) 10/11] musb: Add extvbus in musb_board_data

2010-03-25 Thread Felipe Balbi
From: Ajay Kumar Gupta ajay.gu...@ti.com EXTVBUS programming is required by OMAP3EVM REV =E to supply 500mA power so adding a flag which can be used by musb driver to program EXTVBUS. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com ---

[patch-2.6.35 (v2) 02/11] USB: musb: support host/gadget role switching on Blackfin parts

2010-03-25 Thread Felipe Balbi
From: Cliff Cai cliff@analog.com Signed-off-by: Cliff Cai cliff@analog.com Signed-off-by: Mike Frysinger vap...@gentoo.org Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/blackfin.c | 69 +++ 1 files changed, 63

[patch-2.6.35 (v2) 11/11] usb: musb: add ulpi access operations

2010-03-25 Thread Felipe Balbi
From: Heikki Krogerus ext-heikki.kroge...@nokia.com This adds helper functions for ULPI access, and implements otg_io_access_ops for musb. Signed-off-by: Heikki Krogerus ext-heikki.kroge...@nokia.com Signed-off-by: Felipe Balbi felipe.ba...@nokia.com --- drivers/usb/musb/musb_core.c | 86

RE: [patch-2.6.34-rc2+ 10/11] musb_core: don't call musb_platform_exit() twice

2010-03-25 Thread Gadiyar, Anand
Felipe Balbi wrote: From: Sergei Shtylyov sshtyl...@ru.mvista.com musb_platform_exit() is called twice from musb_init_controller() iff controller initialization fails. Move the call (and the DevCtl register writes surrounding it) from musb_free() to musb_remove(). Fix mispalced and

Re: [patch-2.6.34-rc2+ 10/11] musb_core: don't call musb_platform_exit() twice

2010-03-25 Thread Felipe Balbi
On Thu, Mar 25, 2010 at 01:34:25PM +0100, ext Gadiyar, Anand wrote: Felipe Balbi wrote: From: Sergei Shtylyov sshtyl...@ru.mvista.com musb_platform_exit() is called twice from musb_init_controller() iff controller initialization fails. Move the call (and the DevCtl register writes surrounding

Re: [RFC][PATCH 4/5] input: serio: add support for Amstrad Delta serial keyboard port

2010-03-25 Thread Janusz Krzysztofik
Wednesday 24 March 2010 22:29:21 Dmitry Torokhov napisaƂ(a): On Wednesday 24 March 2010 02:21:22 pm Janusz Krzysztofik wrote: Hi Dmitry, Wednesday 24 March 2010 17:16:04 Dmitry Torokhov wrote: On Mon, Mar 22, 2010 at 10:07:47PM +0100, Janusz Krzysztofik wrote: Meanwhile, I've

[PATCHv2 0/2] crypto: omap-sha1-md5: OMAP3 SHA1 MD5 driver

2010-03-25 Thread Dmitry Kasatkin
Earlier kernel contained omap sha1 and md5 driver, which was not maintained, was not ported to new crypto APIs and removed from the source tree. This driver implements async and sync crypto API. Changes to v1 patches - device registration moved to platform code - multi device instances supported

[PATCHv2 1/2] crypto: updates omap sham device related platform code

2010-03-25 Thread Dmitry Kasatkin
- registration - clocks Signed-off-by: Dmitry Kasatkin dmitry.kasat...@nokia.com --- arch/arm/mach-omap2/clock2420_data.c |2 +- arch/arm/mach-omap2/clock2430_data.c |2 +- arch/arm/mach-omap2/clock3xxx_data.c |2 +- arch/arm/mach-omap2/devices.c | 26

[PATCHv2 2/2] crypto: omap-sham - omap sha1 md5 driver

2010-03-25 Thread Dmitry Kasatkin
Earlier kernel contained omap sha1 and md5 driver, which was not maintained, was not ported to new crypto APIs and removed from the source tree. - implements async and sync crypto API using dma and cpu. - supports multiple sham instances if available Signed-off-by: Dmitry Kasatkin

Re: [PATCH v2 2/2] omap i2c: add a timeout to the busy waiting

2010-03-25 Thread Aaro Koskinen
Hi, Alexander Shishkin wrote: The errata 1.153 workaround is busy waiting on XUDF bit in interrupt context, which may lead to kernel hangs. The problem can be reproduced by running the bus with wrong (too high) speed. Signed-off-by: Alexander Shishkin virtu...@slind.org Acked-by: Tony

Re: [PATCH v2 2/2] omap i2c: add a timeout to the busy waiting

2010-03-25 Thread Alexander Shishkin
On Thu, Mar 25, 2010 at 04:38:09 +0200, Aaro Koskinen wrote: Hi, Alexander Shishkin wrote: The errata 1.153 workaround is busy waiting on XUDF bit in interrupt context, which may lead to kernel hangs. The problem can be reproduced by running the bus with wrong (too high) speed.

[PATCH 16/16] Video omap lcd_omap3beagle.c: duplicated include

2010-03-25 Thread Andrea Gelmini
drivers/video/omap/lcd_omap3beagle.c: plat/mux.h is included more than once. Signed-off-by: Andrea Gelmini andrea.gelm...@gelma.net --- drivers/video/omap/lcd_omap3beagle.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/video/omap/lcd_omap3beagle.c

Re: [PATCH 1/3] DSPBRIDGE: fix checkpatch error introduced with mailbox patches

2010-03-25 Thread Omar Ramirez Luna
On 3/24/2010 2:11 PM, Chitriki Rudramuni, Deepak wrote: Omar Ramirez Luna wrote: This fixes: ERROR: foo* bar should be foo *bar 218: FILE: drivers/dsp/bridge/wmd/_tiomap.h:374: +dsp_status sm_interrupt_dsp(struct wmd_dev_context* dev_context, u16 mb_val); Signed-off-by: Omar Ramirez

Re: [PATCH 2/3] DSPBRIDGE: Fix obvious wrong comment formats in mbox migration

2010-03-25 Thread Omar Ramirez Luna
On 3/24/2010 2:12 PM, Chitriki Rudramuni, Deepak wrote: Ramirez Luna, Omar wrote: Fix obvious wrong comment formats in mbox migration. Signed-off-by: Omar Ramirez Lunaomar.rami...@ti.com --- drivers/dsp/bridge/wmd/_tiomap.h|2 +- drivers/dsp/bridge/wmd/tiomap3430.c |2 +- 2

Re: [PATCH 3/3] DSPBRIDGE: auto select mailbox when compiling bridge

2010-03-25 Thread Omar Ramirez Luna
On 3/24/2010 2:12 PM, Chitriki Rudramuni, Deepak wrote: Omar Ramirez Luna wrote: Auto select mailbox when compiling bridgedriver. If selected as module, first install: arch/arm/plat-omap/mailbox.ko arch/arm/mach-omap2/mailbox_mach.ko Signed-off-by: Omar Ramirez Lunaomar.rami...@ti.com [...]

[RFC][PATCH 0/19] Cleanup- custom error codes

2010-03-25 Thread Hebbar, Shivananda
This RFC patch series tries to address the use of Linux standard error codes in dspbridge. Here is the proposal. As of today there are around 113 DSPBRIDGE specific error codes. Here are the details: 1. 41 error codes are not currently used in bridge. Hence they can be removed. 2. 19 error

[RFC][PATCH 1/19] DSPBRIDGE: Cleanup custom error code (DSP_EALREADYCONNECTED -EISCONN)

2010-03-25 Thread Hebbar, Shivananda
From 8efca5b26980b94ed9caa812fa702477d4b78fc2 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 09:10:22 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_EALREADYCONNECTED -EISCONN) This patch replaces DSP_EALREADYCONNECTED with EISCONN.

[RFC][PATCH 2/19] DSPBRIDGE: Cleanup custom error code (DSP_ECORRUPTFILE -EBADF)

2010-03-25 Thread Hebbar, Shivananda
From e7bc198d031784db9eae9cfbca1afac63e3b0453 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 09:27:38 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code(DSP_ECORRUPTFILE -EBADF) This patch replaces DSP_ECORRUPTFILE with EBADF. Signed-off-by:

[RFC][PATCH 3/19] DSPBRIDGE: Cleanup custom error code (DSP_EFILE -ENOENT)

2010-03-25 Thread Hebbar, Shivananda
From 26285ce4fad4381fc340a91cfb47dc1b22c376b1 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 09:32:41 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_EFILE -ENOENT) This patch replaces error code DSP_EFILE with ENOENT. Signed-off-by:

[RFC][PATCH 5/19] DSPBRIDGE: Cleanup custom error code (DSP_EINVALIDARG - EINVAL)

2010-03-25 Thread Hebbar, Shivananda
From abbca2b727ef2554790430b4c412902a6783267d Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 11:32:19 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_EINVALIDARG - EINVAL) This patch replaces DSP_EINVALIDARG with EINVAL. Signed-off-by:

[RFC][PATCH 10/19] DSPBRIDGE: Cleanup custom error code (DSP_EPOINTER - EFAULT)

2010-03-25 Thread Hebbar, Shivananda
From c4c2d2e82b5329c5fced3730c8b9ea7612bf861c Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 11:26:00 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_EPOINTER - EFAULT). This patch replaces DSP_EPOINTER with EFAULT Signed-off-by:

[RFC][PATCH 9/19] DSPBRIDGE: Cleanup custom error code (DSP_EFOPEN - EBADF)

2010-03-25 Thread Hebbar, Shivananda
From 05c56defce05af67fe61226960dca4bb02b89bdb Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 13:24:31 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_EFOPEN - EBADF). This patch replaces DSP_EFOPEN with EBADF Signed-off-by: Shivananda

[RFC][PATCH 11/19] DSPBRIDGE: Cleanup custom error code (DSP_ERANGE - EDOM)

2010-03-25 Thread Hebbar, Shivananda
From 97dbbf09aabd0dc94396ad15eeaa6871142ae290 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 11:31:43 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_ERANGE - EDOM) This patch replaces DSP_ERANGE with EDOM. Signed-off-by: Shivananda

[RFC][PATCH 8/19] DSPBRIDGE: Cleanup custom error code (DSP_ENOTIMPL - ENOSYS)

2010-03-25 Thread Hebbar, Shivananda
From 2010dcf45f5539f8b7603d327a9a22bb0aeeb972 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 12:19:38 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_ENOTIMPL - ENOSYS) This patch replaces DSP_ENOTIMPL with ENOSYS Signed-off-by:

[RFC][PATCH 7/19] DSPBRIDGE: Cleanup custom error code (DSP_ENODETYPE - EPERM)

2010-03-25 Thread Hebbar, Shivananda
From 6bb5942655ec4fd4a3f389da358b5a7096fba630 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Tue, 23 Mar 2010 12:02:46 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (DSP_ENODETYPE - EPERM). This patch replaces DSP_ENODETYPE with EPERM Signed-off-by:

[RFC][PATCH 12/19] DSPBRIDGE: Cleanup custom error code (DSP_ESIZE - EINVAL)

2010-03-25 Thread Hebbar, Shivananda
From c423abda17246b08b64ff4489a50c68697c63714 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 11:44:03 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code(DSP_ESIZE - EINVAL). This patch replaces DSP_ESIZE with EINVAL. Signed-off-by: Shivananda

[RFC][PATCH 18/19] DSPBRIDGE: Cleanup custom error code (CHNL_E_CANCELLED - ECANCELED)

2010-03-25 Thread Hebbar, Shivananda
From ba0442c11ea834ad6b2323051c22c4964ad52a0b Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 13:05:18 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code(CHNL_E_CANCELLED - ECANCELED) This patch replaces CHNL_E_CANCELLED with ECANCELED.

[RFC][PATCH 17/19] DSPBRIDGE: Cleanup custom error code (CHNL_E_CHANBUSY - EALREADY)

2010-03-25 Thread Hebbar, Shivananda
From c1e9ac00a68f40da3712b3a907a3b46e23df923e Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 13:00:15 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code (CHNL_E_CHANBUSY - EALREADY). This patch replaces CHNL_E_CHANBUSY with EALREADY.

[RFC][PATCH] DSPBRIDGE: Cleanup unused custom error codes

2010-03-25 Thread Hebbar, Shivananda
From cd86b1a92364ab19d24463a3cce9d593afbb069c Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 14:03:48 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup unused custom error codes This patch removes unused DSPBRIDGE error codes. Signed-off-by: Shivananda Hebbar

[RFC][PATCH 19/19] DSPBRIDGE: Cleanup custom error code (WMD_E_TIMEOUT - ETIMEDOUT)

2010-03-25 Thread Hebbar, Shivananda
From a80fb3467de1367e4a7ce143d744abc807f7dc61 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 13:12:12 -0600 Subject: [PATCH] DSPBRIDGE: Cleanup custom error code(WMD_E_TIMEOUT - ETIMEDOUT) This patch replaces WMD_E_TIMEOUT with ETIMEDOUT. Signed-off-by:

[RFC][PATCH]DSPBRIDGE:Cleanup unused success codes

2010-03-25 Thread Hebbar, Shivananda
From 6ee4200fd19d0a2a41ad90df2af015c2d08438a7 Mon Sep 17 00:00:00 2001 From: Shivananda Hebbar x0heb...@ti.com Date: Wed, 24 Mar 2010 15:54:33 -0600 Subject: [PATCH] DSPBRIDGE: Remove unused success codes. This patch removes unused success codes. Signed-off-by: Shivananda Hebbar x0heb...@ti.com

[PATCH] OMAP: board-sdp-flash.c: Fix typos in debug output

2010-03-25 Thread swirl
From: Thomas Weber sw...@gmx.li Corrected type of flash in output (OneNAND = NOR). Removed whitespace after newline in output. Removed double whitespace in output. Signed-off-by: Thomas Weber we...@corscience.de --- arch/arm/mach-omap2/board-sdp-flash.c |8 1 files changed, 4

Re: [RFC][PATCH 0/19] Cleanup- custom error codes

2010-03-25 Thread Nishanth Menon
Hebbar, Shivananda had written, on 03/25/2010 03:06 PM, the following: This RFC patch series tries to address the use of Linux standard error codes in dspbridge. 1. 41 error codes are not currently used in bridge. Hence they can be removed. 2. 19 error codes are mapped to Linux standard

[PATCH v2] DSPBRIDGE: DSP recovery feature

2010-03-25 Thread Guzman Lugo, Fernando
Patch updated with new O_NONBLOCK option in bridge_open function. From aa1b238e4bd30eb52a96a7000998cd7d32e37050 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Thu, 25 Mar 2010 15:23:38 -0600 Subject: [PATCH] DSPBRIDGE: DSP recovery feature This patch implements a

RE: [RFC][PATCH 0/19] Cleanup- custom error codes

2010-03-25 Thread Hebbar, Shivananda
-Original Message- From: Menon, Nishanth Sent: Thursday, March 25, 2010 3:58 PM To: Hebbar, Shivananda Cc: linux-omap@vger.kernel.org; Ramirez Luna, Omar; Felipe Contreras; Palande Ameya (Nokia-D/Helsinki) Subject: Re: [RFC][PATCH 0/19] Cleanup- custom error codes Hebbar,

Re: [RFC][PATCH 0/19] Cleanup- custom error codes

2010-03-25 Thread Felipe Contreras
On Thu, Mar 25, 2010 at 11:37 PM, Hebbar, Shivananda x0heb...@ti.com wrote: love the cleanup *but*: arch/arm/plat-omap/include/dspbridge/dbdefs.h:typedef u32 dsp_status; 1) All usage of dsp_status should be changed to int Looks like MM code uses this variable. Even MM code needs to be changed

PATCH] OMAP3: add mailbox initialization for 3630

2010-03-25 Thread Guzman Lugo, Fernando
From 1fcfb230789f904de80c46b69c50879ee3f32ed8 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Thu, 25 Mar 2010 16:55:46 -0600 Subject: [PATCH] OMAP3: add mailbox initialization for 3630 This patch adds mailbox initialization for 3630 Signed-off-by: Fernando Guzman Lugo

RE: PATCH] OMAP3: add mailbox initialization for 3630

2010-03-25 Thread Kanigeri, Hari
Fernando, + if (cpu_is_omap2420() || cpu_is_omap3430() || + cpu_is_omap3630() || cpu_is_omap44xx()) looks like this check is applied to all OMAPS. Can we just remove this check ? Thank you, Best regards, Hari -- To unsubscribe from this list: send the line

Re: PATCH] OMAP3: add mailbox initialization for 3630

2010-03-25 Thread Deepak Chitriki
Acked-by: Deepak Chitriki deepak.chitr...@ti.com Deepak Guzman Lugo, Fernando wrote: From 1fcfb230789f904de80c46b69c50879ee3f32ed8 Mon Sep 17 00:00:00 2001 From: Fernando Guzman Lugo x0095...@ti.com Date: Thu, 25 Mar 2010 16:55:46 -0600 Subject: [PATCH] OMAP3: add mailbox initialization for

[RFC] Initial attempt to make ARM use LMB

2010-03-25 Thread Russell King - ARM Linux
LMB... logical memory blocks. LM is a different method of managing memory regions during the early boot period when the usual kernel memory allocators are not up and running. LMB has been in the kernel for quite some time, and is already being used by Microblaze, PPC, SH and Sparc. Maybe soon

RE: [RFC][PATCH 0/19] Cleanup- custom error codes

2010-03-25 Thread Hebbar, Shivananda
-Original Message- From: Felipe Contreras [mailto:felipe.contre...@gmail.com] Sent: Thursday, March 25, 2010 5:08 PM To: Hebbar, Shivananda Cc: Menon, Nishanth; linux-omap@vger.kernel.org; Ramirez Luna, Omar; Felipe Contreras; Palande Ameya (Nokia-D/Helsinki) Subject: Re:

RE: PATCH] OMAP3: add mailbox initialization for 3630

2010-03-25 Thread Guzman Lugo, Fernando
-Original Message- From: Kanigeri, Hari Sent: Thursday, March 25, 2010 4:56 PM To: Guzman Lugo, Fernando; linux-omap@vger.kernel.org Cc: Doyu Hiroshi (Nokia-D/Helsinki); Palande Ameya (Nokia-D/Helsinki); Felipe Contreras Subject: RE: PATCH] OMAP3: add mailbox initialization for 3630

[PATCH] OMAP3: clock: fix enable bit used for dpll4_m4x2 clock

2010-03-25 Thread Ranjith Lohithakshan
The enable bit for dpll4_m4x2 clock should be OMAP3430_PWRDN_DSS1_SHIFT. The code erroneously uses OMAP3430_PWRDN_CAM_SHIFT which is meant for dpll4_m5x2 clock. This came into notice during a recent review of the clock tree. Signed-off-by: Ranjith Lohithakshan ranji...@ti.com ---

Re: PATCH] OMAP3: add mailbox initialization for 3630

2010-03-25 Thread Hiroshi DOYU
From: ext Guzman Lugo, Fernando x0095...@ti.com Subject: RE: PATCH] OMAP3: add mailbox initialization for 3630 Date: Fri, 26 Mar 2010 00:44:38 +0100 -Original Message- From: Kanigeri, Hari Sent: Thursday, March 25, 2010 4:56 PM To: Guzman Lugo, Fernando; linux-omap@vger.kernel.org Cc: