All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Carlos Chinea <carlos.chinea@nokia.com>
Cc: linux-omap@vger.kernel.org
Subject: Re: [PATCH 0/5] RFC: OMAP Synchronous Serial Interface (SSI) driver (take II)
Date: Fri, 3 Oct 2008 13:34:39 +0300	[thread overview]
Message-ID: <20081003103437.GG25482@atomide.com> (raw)
In-Reply-To: <1223029515.32631.148.camel@groo.research.nokia.com>

* Carlos Chinea <carlos.chinea@nokia.com> [081003 13:26]:
> Hi guys !
> 
> A couple of weeks ago, I sent a set of patches for comments.
> I am sending a new set of those patches with debug statements removed and a bug fix.
> 
> The new patch set is based on linux-omap 2.6.27-rc7
> 
> Any comments will be appreciated.

You should send this to LKML, and cc linux-omap to get proper review
of these patches.

Tony

> 
> Br,
> Carlos
> 
>  Documentation/arm/OMAP/ssi/board-ssi.c.example     |  216 ++++++++
>  Documentation/arm/OMAP/ssi/ssi                     |  232 +++++++++
>  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/mach/ssi/ssi_sst_reg.h  |   65 +++
>  arch/arm/plat-omap/include/mach/ssi/ssi_sys_reg.h  |  107 ++++
>  drivers/misc/Kconfig                               |    2 +
>  drivers/misc/Makefile                              |    1 +
>  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/ssi_driver_bus.c                  |  192 ++++++++
>  drivers/misc/ssi/ssi_driver_dma.c                  |  406 ++++++++++++++++
>  drivers/misc/ssi/ssi_driver_if.c                   |  335 +++++++++++++
>  drivers/misc/ssi/ssi_driver_int.c                  |  232 +++++++++
>  include/linux/ssi_driver_if.h                      |  137 ++++++
>  18 files changed, 2941 insertions(+), 0 deletions(-)
> 
> 
> On Tue, 2008-09-16 at 17:30 +0300, ext Carlos Chinea wrote:
> > 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 speed communication
> > interface that is used for connecting OMAP to a cellular modem engine.
> > 
> > The patch set is based on linux-omap 2.6.27-rc6.
> > 
> > Any comments will be appreciated.
> > 
> > Br,
> > Carlos
> > 
> >  Documentation/arm/OMAP/ssi/board-ssi.c.example       |  216 +++++++
> >  Documentation/arm/OMAP/ssi/ssi                       |  233 +++++++
> >  arch/arm/plat-omap/include/mach/ssi/ssi_gdd_reg.h    |  145 ++++
> >  arch/arm/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/mach/ssi/ssi_sst_reg.h    |   65 ++
> >  arch/arm/plat-omap/include/mach/ssi/ssi_sys_reg.h    |  108 +++
> >  drivers/misc/Kconfig                                 |    2 
> >  drivers/misc/Makefile                                |    2 
> >  drivers/misc/ssi/Kconfig                             |   20 
> >  drivers/misc/ssi/Makefile                            |   11 
> >  drivers/misc/ssi/ssi_driver.c                        |  572 +++++++++++++++++++
> >  drivers/misc/ssi/ssi_driver.h                        |  228 +++++++
> >  drivers/misc/ssi/ssi_driver_bus.c                    |  218 +++++++
> >  drivers/misc/ssi/ssi_driver_dma.c                    |  461 +++++++++++++++
> >  drivers/misc/ssi/ssi_driver_if.c                     |  374 ++++++++++++
> >  drivers/misc/ssi/ssi_driver_int.c                    |  296 +++++++++
> >  include/linux/ssi_driver_if.h                        |  138 ++++
> >  18 files changed, 3213 insertions(+), 5 deletions(-)
> > 
> > 
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      parent reply	other threads:[~2008-10-03 10:31 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-16 14:30 [PATCH 0/5] RFC: OMAP Synchronous Serial Interface (SSI) driver Carlos Chinea
2008-10-03 10:25 ` [PATCH 0/5] RFC: OMAP Synchronous Serial Interface (SSI) driver (take II) Carlos Chinea
2008-10-03 10:29   ` [PATCH 1/5] OMAP SSI hardware interface definitions Carlos Chinea
2008-10-03 10:29     ` [PATCH 2/5] OMAP SSI driver interface Carlos Chinea
2008-10-03 10:29       ` [PATCH 3/5] OMAP SSI driver code Carlos Chinea
2008-10-03 10:29         ` [PATCH 4/5] OMAP SSI integration into misc drivers Carlos Chinea
2008-10-03 10:29           ` [PATCH 5/5] OMAP SSI API documentation Carlos Chinea
2008-10-03 14:27     ` [PATCH 1/5] OMAP SSI hardware interface definitions David Brownell
2008-10-03 10:34   ` Tony Lindgren [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20081003103437.GG25482@atomide.com \
    --to=tony@atomide.com \
    --cc=carlos.chinea@nokia.com \
    --cc=linux-omap@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.