Re: Linux 3.3-1 out - merge window closed

2012-01-24 Thread Carlos Chinea
Hi, On Mon, 2012-01-23 at 20:43 +0100, ext Linus Walleij wrote: On Mon, Jan 23, 2012 at 4:06 PM, Carlos Chinea carlos.chi...@nokia.com wrote: Hi Linus, On Thu, 2012-01-19 at 15:58 -0800, ext Linus Torvalds wrote: So the subject says it all. It's been two weeks(+a day), and 3.3-rc1

Re: Linux 3.3-1 out - merge window closed

2012-01-23 Thread Carlos Chinea
in the kernel to help development.The framework is already in use in Nokia products like N9. Br, Carlos Chinea -- 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

[GIT PULL] HSI framework

2012-01-13 Thread Carlos Chinea
: https://lkml.org/lkml/2011/10/28/69 The patches have been sitting for a while in linux-next without issues. The signed tag covering those commits: hsi_for_3.3 Thanks Br, Carlos Chinea The following changes since commit 805a6af8dba5dfdd35ec35dc52ec0122400b2610: Linux 3.2 (2012-01-04 15:55

Re: RX51 modem support

2012-01-09 Thread Carlos Chinea
it for 3.4. Unfortunately, I can not fully commit to it. I will try to push the hwmod data patch in a few days for review but I still have to do several changes in the driver. Br, Carlos Chinea On Sat, 2011-12-31 at 22:24 +0100, ext Sebastian Reichel wrote: Hi Carlos, The HSI framework is in linux

Re: [PATCH 06/13] OMAPDSS: DSI: Use new lane config in dsi_set_lane_config

2011-11-29 Thread Carlos Chinea
On Mon, 2011-11-28 at 17:43 +0200, ext Tomi Valkeinen wrote: On Mon, 2011-11-28 at 11:08 +0200, Carlos Chinea wrote: Hi Tomi, Just a question/suggestion, bellow: On Thu, 2011-11-24 at 15:29 +0200, ext Tomi Valkeinen wrote: Use the new lane config in dsi_set_lane_config

Re: [PATCH 06/13] OMAPDSS: DSI: Use new lane config in dsi_set_lane_config

2011-11-28 Thread Carlos Chinea
Hi Tomi, Just a question/suggestion, bellow: On Thu, 2011-11-24 at 15:29 +0200, ext Tomi Valkeinen wrote: Use the new lane config in dsi_set_lane_config(). Signed-off-by: Tomi Valkeinen tomi.valkei...@ti.com --- drivers/video/omap2/dss/dsi.c | 84 +++-

Re: [RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-07-25 Thread Carlos Chinea
functional clock ? Br, -- Carlos Chinea carlos.chi...@nokia.com -- 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: [RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-07-22 Thread Carlos Chinea
to know when the HW can be switch off. IMO it is not a good idea to relay just on the wakelines to power on/off the device, exactly because of this kind of issues. Br, -- Carlos Chinea carlos.chi...@nokia.com -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body

Re: [RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-07-22 Thread Carlos Chinea
Hi Felipe, :) On Fri, 2011-07-22 at 14:01 +0300, ext Felipe Balbi wrote: Hi, On Fri, Jul 22, 2011 at 01:43:36PM +0300, Carlos Chinea wrote: +/** + * hsi_flush - Flush all pending transactions on the client's port + * @cl: Pointer to the HSI client

Re: [RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-07-22 Thread Carlos Chinea
On Fri, 2011-07-22 at 15:05 +0300, ext Felipe Balbi wrote: Hi, On Fri, Jul 22, 2011 at 02:51:12PM +0300, Carlos Chinea wrote: Hi Felipe, hello there :-) are you already using pm_runtime ? You could put that logic grouped in runtime_suspend()/runtime_resume() calls and from

Re: [RFC PATCHv5 4/7] HSI: hsi_char: Add HSI char device driver

2011-06-23 Thread Carlos Chinea
or timeouts during HSI bulk transfers. Br, -- Carlos Chinea carlos.chi...@nokia.com -- 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: [RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-06-23 Thread Carlos Chinea
*: hsi_rx_fifo_occupancy() Before putting the link asleep we need to know if the fifo is empty or not. So we would like to have a way to read out the number of bytes in the RX fifo. This should be handled only by hsi_controller. Clients should not care about this. Regards, Sjur Br, Carlos

Re: [RFC PATCHv5 2/7] HSI: omap_ssi: Introducing OMAP SSI driver

2011-06-14 Thread Carlos Chinea
Hi, -- cut-- + +static int __init ssi_init(void) +{ + return platform_device_register(ssi_pdev); +} +subsys_initcall(ssi_init); Looks like you need something here also to prevent this subsys_initcall on running on all boards. Maybe have a pointer to ssi_pdev that only gets

Re: [RFC PATCHv5 2/7] HSI: omap_ssi: Introducing OMAP SSI driver

2011-06-14 Thread Carlos Chinea
On Mon, 2011-06-13 at 13:21 -0700, ext Kevin Hilman wrote: Carlos Chinea carlos.chi...@nokia.com writes: Introduces the OMAP SSI driver in the kernel. The Synchronous Serial Interface (SSI) is a legacy version of HSI. As in the case of HSI, it is mainly used to connect Application

[RFC PATCHv5 3/7] HSI: omap_ssi: Add OMAP SSI to the kernel configuration

2011-06-10 Thread Carlos Chinea
Add OMAP SSI device and driver to the kernel configuration Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- arch/arm/mach-omap2/Makefile |2 ++ drivers/hsi/Kconfig |2 ++ drivers/hsi/Makefile |1 + drivers/hsi/controllers/Kconfig | 23

[RFC PATCHv5 6/7] HSI: Add HSI API documentation

2011-06-10 Thread Carlos Chinea
Add an entry for HSI in the device-drivers section of the kernel documentation. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/DocBook/device-drivers.tmpl | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Documentation/DocBook

[RFC PATCHv5 1/7] HSI: hsi: Introducing HSI framework

2011-06-10 Thread Carlos Chinea
and full duplex communication. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com Acked-by: Linus Walleij linus.wall...@linaro.org --- drivers/Kconfig |2 + drivers/Makefile|1 + drivers/hsi/Kconfig | 17 ++ drivers/hsi/Makefile|5 + drivers/hsi

[RFC PATCHv5 7/7] HSI: hsi_char: Update ioctl-number.txt

2011-06-10 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Added ioctl range for HSI char devices to the documentation Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/ioctl/ioctl-number.txt |1 + 1 files changed, 1 insertions

[RFC PATCHv5 5/7] HSI: hsi_char: Add HSI char device kernel configuration

2011-06-10 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI character device kernel configuration Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/hsi/Kconfig |1 + drivers/hsi/Makefile |2 +- drivers/hsi

[RFC PATCHv5 4/7] HSI: hsi_char: Add HSI char device driver

2011-06-10 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI char device driver to the kernel. Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com Cc: Alan Cox a...@lxorguk.ukuu.org.uk --- drivers/hsi/clients/hsi_char.c | 804

[RFC PATCHv5 0/7] HSI framework and drivers

2011-06-10 Thread Carlos Chinea
): HSI: hsi_char: Add HSI char device driver HSI: hsi_char: Add HSI char device kernel configuration HSI: hsi_char: Update ioctl-number.txt Carlos Chinea (4): HSI: hsi: Introducing HSI framework HSI: omap_ssi: Introducing OMAP SSI driver HSI: omap_ssi: Add OMAP SSI to the kernel

Re: [RFC PATCHv4 0/7] HSI framework and drivers

2011-06-08 Thread Carlos Chinea
Hi, On Tue, 2011-06-07 at 17:09 +0200, ext Sebastian Reichel wrote: On Tue, May 17, 2011 at 11:39:13AM +0300, Carlos Chinea wrote: We are still committed to these patches. We are aiming to release a new version in 3 weeks max, sooner if we can. I am very sorry for the delay and I agree

Re: [RFC PATCHv4 0/7] HSI framework and drivers

2011-05-17 Thread Carlos Chinea
On Mon, 2011-05-16 at 14:04 +0200, ext Linus Walleij wrote: On Thu, May 12, 2011 at 2:17 PM, Govindraj govindraj...@gmail.com wrote: On Tue, Mar 22, 2011 at 3:20 PM, Carlos Chinea carlos.chi...@nokia.com wrote: Hi, On Mon, 2011-03-21 at 09:16 +0100, ext Linus Walleij wrote: 2010/12

Re: [RFC PATCHv4 0/7] HSI framework and drivers

2011-03-22 Thread Carlos Chinea
Hi, On Mon, 2011-03-21 at 09:16 +0100, ext Linus Walleij wrote: 2010/12/14 Carlos Chinea carlos.chi...@nokia.com: Here you have the fourth round of the HSI framework patches. I'd like to notify that this out-of-tree framework is also in use for the ST-Ericsson Ux500s, and we've had

Re: [RFC PATCHv4 2/7] HSI: omap_ssi: Introducing OMAP SSI driver

2010-12-20 Thread Carlos Chinea
Hi Tony, On Fri, 2010-12-17 at 16:30 -0800, ext Tony Lindgren wrote: * Carlos Chinea carlos.chi...@nokia.com [101214 02:13]: Introduces the OMAP SSI driver in the kernel. The Synchronous Serial Interface (SSI) is a legacy version of HSI. As in the case of HSI, it is mainly used

[RFC PATCHv4 0/7] HSI framework and drivers

2010-12-14 Thread Carlos Chinea
: checkpatch reports a false positive on patch 1/7. Andras Domokos (3): HSI: hsi_char: Add HSI char device driver HSI: hsi_char: Add HSI char device kernel configuration HSI: hsi_char: Update ioctl-number.txt Carlos Chinea (4): HSI: hsi: Introducing HSI framework HSI: omap_ssi: Introducing

[RFC PATCHv4 6/7] HSI: Add HSI API documentation

2010-12-14 Thread Carlos Chinea
Add an entry for HSI in the device-drivers section of the kernel documentation. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/DocBook/device-drivers.tmpl | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Documentation/DocBook

[RFC PATCHv4 7/7] HSI: hsi_char: Update ioctl-number.txt

2010-12-14 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Added ioctl range for HSI char devices to the documentation Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/ioctl/ioctl-number.txt |1 + 1 files changed, 1 insertions

[RFC PATCHv4 4/7] HSI: hsi_char: Add HSI char device driver

2010-12-14 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI char device driver to the kernel. Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/hsi/clients/hsi_char.c | 1094 include/linux

[RFC PATCHv4 5/7] HSI: hsi_char: Add HSI char device kernel configuration

2010-12-14 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI character device kernel configuration Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/hsi/Kconfig |1 + drivers/hsi/Makefile |2 +- drivers/hsi

[RFC PATCHv4 3/7] HSI: omap_ssi: Add OMAP SSI to the kernel configuration

2010-12-14 Thread Carlos Chinea
Add OMAP SSI device and driver to the kernel configuration Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- arch/arm/mach-omap2/Makefile |2 ++ drivers/hsi/Kconfig |2 ++ drivers/hsi/Makefile |1 + drivers/hsi/controllers/Kconfig | 23

[RFC PATCHv4 1/7] HSI: hsi: Introducing HSI framework

2010-12-14 Thread Carlos Chinea
and full duplex communication. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/Kconfig |2 + drivers/Makefile|1 + drivers/hsi/Kconfig | 17 ++ drivers/hsi/Makefile|5 + drivers/hsi/hsi.c | 496

Re: [RFC PATCHv4 4/7] HSI: hsi_char: Add HSI char device driver

2010-12-14 Thread Carlos Chinea
On Tue, 2010-12-14 at 11:56 +, ext Alan Cox wrote: +#define HSI_CHST_RD(c) ((c)-state HSI_CHST_RD_MASK) +#define HSI_CHST_WR(c) ((c)-state HSI_CHST_WR_MASK) + +#define HSI_CHST_OC_SET(c, v) \ + do { \ + (c)-state = ~HSI_CHST_OC_MASK; \ +

Re: [RFC PATCHv3 1/7] HSI: Introducing HSI framework

2010-11-03 Thread Carlos Chinea
Hi, my reply under On Sat, 2010-10-23 at 14:41 +0200, ext Peter Henn wrote: Hello Carlos, please find my comments inline Am 18.10.2010 12:53, schrieb Carlos Chinea: Hi Peter, +/** + * struct hsi_config - Configuration for RX/TX HSI modules + * @mode: Bit transmission mode (STREAM

Re: [RFC PATCHv3 1/7] HSI: Introducing HSI framework

2010-10-18 Thread Carlos Chinea
Hi Peter, First, thanks for your comments :) Mine follow... On Sun, 2010-10-17 at 17:58 +0200, ext Peter Henn wrote: Hello Carlos, * Carlos Chinea carlos.chi...@nokia.com [101011 01:58]: Adds HSI framework in to the linux kernel. High Speed Synchronous Serial Interface (HSI

Re: [RFC PATCHv3 2/7] OMAP SSI: Introducing OMAP SSI driver

2010-10-13 Thread Carlos Chinea
Hi, On Tue, 2010-10-12 at 22:49 +0200, ext Tony Lindgren wrote: * Carlos Chinea carlos.chi...@nokia.com [101011 01:58]: Introduces the OMAP SSI driver in the kernel. The Synchronous Serial Interface (SSI) is a legacy version of HSI. As in the case of HSI, it is mainly used to connect

[RFC PATCHv3 0/7] HSI framework and drivers

2010-10-11 Thread Carlos Chinea
to continue getting feedback about this proposal. This patch series is based on 2.6.36-rc6. Version 2 of the patch set: http://lkml.org/lkml/2010/5/7/233 Br, Carlos Chinea Andras Domokos (3): HSI CHAR: Add HSI char device driver HSI CHAR: Add HSI char device kernel configuration HSI CHAR: Update

[RFC PATCHv3 6/7] HSI: Add HSI API documentation

2010-10-11 Thread Carlos Chinea
Add an entry for HSI in the device-drivers section of the kernel documentation. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/DocBook/device-drivers.tmpl | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Documentation/DocBook

[RFC PATCHv3 1/7] HSI: Introducing HSI framework

2010-10-11 Thread Carlos Chinea
and full duplex communication. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/Kconfig |2 + drivers/Makefile|1 + drivers/hsi/Kconfig | 13 ++ drivers/hsi/Makefile|4 + drivers/hsi/hsi.c | 516

[RFC PATCHv3 3/7] OMAP SSI: Add OMAP SSI to the kernel configuration

2010-10-11 Thread Carlos Chinea
Add OMAP SSI device and driver to the kernel configuration Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- arch/arm/mach-omap2/Makefile |3 +++ drivers/hsi/Kconfig |2 ++ drivers/hsi/Makefile |1 + drivers/hsi/controllers/Kconfig | 21

[RFC PATCHv3 7/7] HSI CHAR: Update ioctl-number.txt

2010-10-11 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Added ioctl range for HSI char devices to the documentation Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/ioctl/ioctl-number.txt |1 + 1 files changed, 1 insertions

[RFC PATCHv3 4/7] HSI CHAR: Add HSI char device driver

2010-10-11 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI char device driver to the kernel. Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/hsi/clients/hsi_char.c | 1090 include/linux

[RFC PATCHv3 5/7] HSI CHAR: Add HSI char device kernel configuration

2010-10-11 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI character device kernel configuration Signed-off-by: Andras Domokos andras.domo...@nokia.com Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/hsi/Kconfig |1 + drivers/hsi/Makefile |2 +- drivers/hsi

Re: [RFC PATCHv2 2/7] OMAP SSI: Introducing OMAP SSI driver

2010-05-26 Thread Carlos Chinea
On Tue, 2010-05-18 at 16:05 +0200, ext Sebastien Jan wrote: On Tuesday 18 May 2010 11:07:20 Carlos Chinea wrote: [cut] + val |= __raw_readl(omap_ssi-sys + SSI_MPU_ENABLE_REG(port-num, 0)); + __raw_writel(val, omap_ssi-sys + SSI_MPU_ENABLE_REG(port-num, 0

Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework

2010-05-18 Thread Carlos Chinea
On Fri, 2010-05-14 at 16:22 +0200, ext Sebastien Jan wrote: Hi Carlos, After review, I do not have many comments on the interface, as we already aligned on most of it. Please see my comments inlined below. On Friday 07 May 2010 17:18:31 Carlos Chinea wrote: [strip] diff --git

Re: [RFC PATCHv2 2/7] OMAP SSI: Introducing OMAP SSI driver

2010-05-18 Thread Carlos Chinea
On Fri, 2010-05-14 at 16:41 +0200, ext Sebastien Jan wrote: Hi Carlos, Please see my comments inlined. On Friday 07 May 2010 17:18:32 Carlos Chinea wrote: [strip] diff --git a/drivers/hsi/controllers/omap_ssi.c [strip] + +/** + * struct omap_ssm_ctx - OMAP synchronous serial

[RFC PATCHv2 0/7] HSI framework and drivers

2010-05-07 Thread Carlos Chinea
on 2.6.34-rc6. The original post: http://lkml.org/lkml/2010/4/23/210 Br, Carlos Chinea Andras Domokos (3): HSI CHAR: Add HSI char device driver HSI CHAR: Add HSI char device kernel configuration HSI CHAR: Update ioctl-number.txt Carlos Chinea (4): HSI: Introducing HSI framework OMAP SSI

[RFC PATCHv2 3/7] OMAP SSI: Add OMAP SSI to the kernel configuration

2010-05-07 Thread Carlos Chinea
Add OMAP SSI device and driver to the kernel configuration Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- arch/arm/mach-omap2/Makefile |3 +++ drivers/hsi/Kconfig |2 ++ drivers/hsi/Makefile |1 + drivers/hsi/controllers/Kconfig | 13

[RFC PATCHv2 4/7] HSI CHAR: Add HSI char device driver

2010-05-07 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI char device driver to the kernel. Signed-off-by: Andras Domokos andras.domo...@nokia.com --- drivers/hsi/clients/hsi_char.c | 1053 include/linux/hsi/hsi_char.h | 66 +++ 2 files changed, 1119

[RFC PATCHv2 7/7] HSI CHAR: Update ioctl-number.txt

2010-05-07 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Added ioctl range for HSI char devices to the documentation Signed-off-by: Andras Domokos andras.domo...@nokia.com --- Documentation/ioctl/ioctl-number.txt |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

[RFC PATCHv2 5/7] HSI CHAR: Add HSI char device kernel configuration

2010-05-07 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI character device kernel configuration Signed-off-by: Andras Domokos andras.domo...@nokia.com --- drivers/hsi/Kconfig |1 + drivers/hsi/Makefile |2 +- drivers/hsi/clients/Kconfig | 13 +

[RFC PATCHv2 6/7] HSI: Add HSI API documentation

2010-05-07 Thread Carlos Chinea
Add an entry for HSI in the device-drivers section of the kernel documentation. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- Documentation/DocBook/device-drivers.tmpl | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Documentation/DocBook

[RFC PATCHv2 1/7] HSI: Introducing HSI framework

2010-05-07 Thread Carlos Chinea
and full duplex communication. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/Kconfig |2 + drivers/Makefile|1 + drivers/hsi/Kconfig | 13 ++ drivers/hsi/Makefile|4 + drivers/hsi/hsi.c | 489

Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework

2010-05-07 Thread Carlos Chinea
Hi, On Fri, 2010-05-07 at 17:26 +0200, ext Randy Dunlap wrote: On Fri, 7 May 2010 18:18:31 +0300 Carlos Chinea wrote: --[snip]-- diff --git a/drivers/hsi/Kconfig b/drivers/hsi/Kconfig new file mode 100644 index 000..5af62ce --- /dev/null +++ b/drivers/hsi/Kconfig @@ -0,0

Re: [CBUS PATCH 1/1] CBUS: Fix broken compilation

2010-05-06 Thread Carlos Chinea
in: drivers/cbus/cbus.c drivers/cbus/retu-headset.c drivers/cbus/retu-user.c drivers/cbus/retu-wdt.c drivers/cbus/tahvo-user.c Compile tested with n8x0_defconfig Signed-off-by: Carlos Chinea carlos.chi...@nokia.com I see now the problem. --- drivers/cbus

[CBUS PATCH 1/1] CBUS: Fix broken compilation

2010-05-05 Thread Carlos Chinea
Include explicitly slab.h in: drivers/cbus/cbus.c drivers/cbus/retu-headset.c drivers/cbus/retu-user.c drivers/cbus/retu-wdt.c drivers/cbus/tahvo-user.c Compile tested with n8x0_defconfig Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers

RE: [RFC PATCH 0/5] HSI framework and drivers

2010-04-26 Thread Carlos Chinea
On Fri, 2010-04-23 at 21:44 +0200, Vehmanen Kai (Nokia-D/Tampere) wrote: Hi Paul and others, On 23 April 2010, Paul Walmsley wrote: SSI, which is a legacy version of HSI, is used to connect the application engine with the cellular modem on the Nokia N900. This patch set is based on

[RFC PATCH 0/5] HSI framework and drivers

2010-04-23 Thread Carlos Chinea
version of HSI, is used to connect the application engine with the cellular modem on the Nokia N900. This patch set is based on 2.6.34-rc3 Br, Carlos Chinea Andras Domokos (2): HSI CHAR: Add HSI char device driver HSI CHAR: Add HSI char device kernel configuration Carlos Chinea (3): HSI

[RFC PATCH 3/5] OMAP SSI: Add OMAP SSI to the kernel configuration

2010-04-23 Thread Carlos Chinea
Add OMAP SSI driver to the kernel configuration Add OMAP SSI device to the kernel configuration Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- arch/arm/mach-omap2/Makefile |3 +++ drivers/hsi/Kconfig |2 ++ drivers/hsi/Makefile |1 + drivers/hsi

[RFC PATCH 5/5] HSI CHAR: Add HSI char device kernel configuration

2010-04-23 Thread Carlos Chinea
From: Andras Domokos andras.domo...@nokia.com Add HSI character device kernel configuration Signed-off-by: Andras Domokos andras.domo...@nokia.com --- drivers/hsi/Kconfig |1 + drivers/hsi/Makefile |2 +- drivers/hsi/clients/Kconfig | 11 +++

[RFC PATCH 1/5] HSI: Introducing HSI framework

2010-04-23 Thread Carlos Chinea
and full duplex communication. Signed-off-by: Carlos Chinea carlos.chi...@nokia.com --- drivers/Kconfig |2 + drivers/Makefile|1 + drivers/hsi/Kconfig | 13 ++ drivers/hsi/Makefile|4 + drivers/hsi/hsi.c | 487

Re: [alsa-devel][PATCHv2 1/1] Fix a Oops bug in omap soc driver.

2008-12-19 Thread Carlos Chinea
Hi, On Fri, 2008-12-19 at 22:08 +0800, ext Stanley.Miao wrote: There will be a Oops or frequent underrun messages when playing music with omap soc driver, this is because a data region is incorretly sized, other data region will be overwriten when writing to this data region. Signed-off-by:

[PATCH 2.6.28-rc6 0/1] Fix OMAP/README docummentation

2008-12-03 Thread Carlos Chinea
Hi ! The README file in the OMAP documentation has wrong and misleading information about how the developers have to access the registers in OMAP. The following patch removes completely that section. Please, keep in mind that this does not imply that the rest of the sections are currently OK. I

[PATCH 2.6.28-rc6 1/1] Fix OMAP/README docummentation

2008-12-03 Thread Carlos Chinea
- Remove section 4 because it has wrong and misleading information Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- Documentation/arm/OMAP/README | 39 --- 1 files changed, 0 insertions(+), 39 deletions(-) diff --git a/Documentation/arm/OMAP

[PATCH PM 1/1] OMAP3:PM: Update SSI omapdev record

2008-12-01 Thread Carlos Chinea
-Adds the ssi platform_device name and id to the SSI omapdev record Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- arch/arm/mach-omap2/omapdev3xxx.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/omapdev3xxx.h b/arch/arm/mach-omap2

[PATCH 2/5] OMAP SSI driver interface

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- include/linux/ssi_driver_if.h | 137 + 1 files changed, 137 insertions(+), 0 deletions(-) create mode 100644 include/linux/ssi_driver_if.h diff --git a/include/linux/ssi_driver_if.h b/include/linux

[PATCH 5/5] OMAP SSI API documentation

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- Documentation/arm/OMAP/ssi/board-ssi.c.example | 216 ++ Documentation/arm/OMAP/ssi/ssi | 232 2 files changed, 448 insertions(+), 0 deletions(-) create mode 100644 Documentation

[PATCH 1/5] OMAP SSI hardware interface definitions

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- arch/arm/plat-omap/include/mach/ssi/ssi_gdd_reg.h | 145 .../plat-omap/include/mach/ssi/ssi_reg_common.h| 73 ++ arch/arm/plat-omap/include/mach/ssi/ssi_ssr_reg.h | 56 arch/arm/plat-omap/include

[PATCH 4/5] OMAP SSI integration into misc drivers

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- drivers/misc/Kconfig |2 ++ drivers/misc/Makefile |1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index f0202ee..b09dc68 100644 --- a/drivers/misc/Kconfig +++ b/drivers

[PATCH 3/5] OMAP SSI driver code

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- drivers/misc/ssi/Kconfig | 11 + drivers/misc/ssi/Makefile |7 + drivers/misc/ssi/ssi_driver.c | 513 + drivers/misc/ssi/ssi_driver.h | 211 +++ drivers/misc/ssi

[RFC][PATCH 0/5] OMAP Synchronous Serial Interface (SSI) driver

2008-10-03 Thread Carlos Chinea
Hi guys ! I'm working on adding support for Nokia HSPA modems to OMAP. Please consider integrating the following patch set into the linux-omap tree. The patch set implements a generic device driver for the OMAP Synchronous Serial Interface. The Synchronous Serial Interface (SSI) is a high

[RFC][PATCH 4/5] OMAP SSI integration into misc drivers

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- drivers/misc/Kconfig |2 ++ drivers/misc/Makefile |1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index f0202ee..b09dc68 100644 --- a/drivers/misc/Kconfig +++ b/drivers

[RFC][PATCH 3/5] OMAP SSI driver code

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- drivers/misc/ssi/Kconfig | 11 + drivers/misc/ssi/Makefile |7 + drivers/misc/ssi/ssi_driver.c | 513 + drivers/misc/ssi/ssi_driver.h | 211 +++ drivers/misc/ssi

[RFC][PATCH 5/5] OMAP SSI API documentation

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- Documentation/arm/OMAP/ssi/board-ssi.c.example | 216 ++ Documentation/arm/OMAP/ssi/ssi | 232 2 files changed, 448 insertions(+), 0 deletions(-) create mode 100644 Documentation

[RFC][PATCH 1/5] OMAP SSI hardware interface definitions

2008-10-03 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- arch/arm/plat-omap/include/mach/ssi/ssi_gdd_reg.h | 145 .../plat-omap/include/mach/ssi/ssi_reg_common.h| 73 ++ arch/arm/plat-omap/include/mach/ssi/ssi_ssr_reg.h | 56 arch/arm/plat-omap/include

[PATCH 0/5] RFC: OMAP Synchronous Serial Interface (SSI) driver

2008-09-16 Thread Carlos Chinea
Hi guys ! I'm working on adding support for Nokia HSPA modems to OMAP. Please consider integrating the following patch set into the linux-omap tree. The patch set implements a generic device driver for the OMAP Synchronous Serial Interface. The Synchronous Serial Interface (SSI) is a high

[PATCH 1/5] OMAP SSI hardware interface definitions

2008-09-16 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- arch/arm/plat-omap/include/mach/ssi/ssi_gdd_reg.h | 145 .../plat-omap/include/mach/ssi/ssi_reg_common.h| 73 ++ arch/arm/plat-omap/include/mach/ssi/ssi_ssr_reg.h | 56 arch/arm/plat-omap/include

[PATCH 2/5] OMAP SSI driver interface

2008-09-16 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- include/linux/ssi_driver_if.h | 137 + 1 files changed, 137 insertions(+), 0 deletions(-) create mode 100644 include/linux/ssi_driver_if.h diff --git a/include/linux/ssi_driver_if.h b/include/linux

[PATCH 4/5] OMAP SSI integration into misc drivers

2008-09-16 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- drivers/misc/Kconfig |2 ++ drivers/misc/Makefile |1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index f0202ee..b09dc68 100644 --- a/drivers/misc/Kconfig +++ b/drivers

[PATCH 5/5] OMAP SSI API documentation

2008-09-16 Thread Carlos Chinea
Signed-off-by: Carlos Chinea [EMAIL PROTECTED] --- Documentation/arm/OMAP/ssi/board-ssi.c.example | 216 ++ Documentation/arm/OMAP/ssi/ssi | 232 2 files changed, 448 insertions(+), 0 deletions(-) create mode 100644 Documentation/arm