All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next-2.6 00/13] net-caif: introducing CAIF protocol stack
@ 2010-01-20 22:55 sjur.brandeland
  2010-01-20 22:55 ` [PATCH net-next-2.6 01/13] net-caif: add CAIF protocol definitions sjur.brandeland
                   ` (13 more replies)
  0 siblings, 14 replies; 47+ messages in thread
From: sjur.brandeland @ 2010-01-20 22:55 UTC (permalink / raw)
  To: netdev; +Cc: davem, marcel, stefano.babic, randy.dunlap

This patch-set introduces the CAIF protocol Stack.

The "Communication CPU to Application CPU Interface" (CAIF) is a packet based
connection-oriented MUX protocol developed by ST-Ericsson for use with its
modems.

* CAIF provides a socket interface which can be used to open virtual AT
  channels, create and configure GPRS Data connections.

* A CAIF Network device is also provided for GPRS access.
  This interface can be managed with socket IOCTLs or RTNL.

* A kernel interface is provided allowing Kernel modules to use CAIF.

* A serial link layer layer implemented as a line discipline is currently 
  implemented. Other link interfaces may be contributed at a later stage.

  RTNL/IOCTL
   !
   !	 +------+   +------+   +------+
   !	+------+!  +------+!  +------+!
   !	! Sock !!  !Kernel!!  ! Net  !!
   !	! API  !+  ! API  !+  ! Dev  !+	  <- CAIF "Client" APIs
   !	+------+   +------!   +------+
   !	   !	      !		 !
   !	   +----------!----------+
   !		   +------+		  <- CAIF Protocol Implementation
   +------->	   ! CAIF !
		   +------+
	     +--------!--------+
	     !		       !
	  +------+	    +-----+
	  ! ldisc!	    ! ... !	  <- Link Layer (Net Devices)
	  +------+	    +-----+
	     !
	  +------+
	  ! tty	 !			  <- Serial Layer
	  +------+


The patch set is based on net-next-2.6.


Sjur Braendeland (13):
  net-caif: add CAIF protocol definitions
  net-caif: add CAIF header files
  net-caif: add CAIF generic protocol stack header files
  net-caif: add CAIF header files
  net-caif: add CAIF generic protocol stack
  net-caif: add CAIF generic caif support functions
  net-caif: add CAIF device registration functionality
  net-caif: add CAIF socket implementation
  net-caif: add CAIF netdevice
  net-caif: add kernel-client API for CAIF
  net-caif: add CAIF Kconfig and Makefiles
  net-caif: add CAIF documentation
  net-caif-driver: add CAIF serial driver (ldisc)

 Documentation/networking/caif/Linux-CAIF.txt |  235 +++++
 Documentation/networking/caif/README         |   27 +
 drivers/net/Kconfig                          |    2 +
 drivers/net/Makefile                         |    1 +
 drivers/net/caif/Kconfig                     |   15 +
 drivers/net/caif/Makefile                    |   14 +
 drivers/net/caif/caif_serial.c               |  420 ++++++++
 include/linux/caif/caif_config.h             |  155 +++
 include/linux/caif/caif_socket.h             |  161 +++
 include/linux/caif/if_caif.h                 |   71 ++
 include/linux/if_arp.h                       |    1 +
 include/linux/if_ether.h                     |    1 +
 include/linux/socket.h                       |    5 +-
 include/linux/tty.h                          |    4 +-
 include/net/caif/caif_dev.h                  |   29 +
 include/net/caif/caif_device.h               |   34 +
 include/net/caif/caif_kernel.h               |  309 ++++++
 include/net/caif/generic/caif_layer.h        |  225 ++++
 include/net/caif/generic/cfcnfg.h            |  110 ++
 include/net/caif/generic/cfctrl.h            |  136 +++
 include/net/caif/generic/cffrml.h            |   19 +
 include/net/caif/generic/cfglue.h            |  110 ++
 include/net/caif/generic/cflst.h             |   19 +
 include/net/caif/generic/cfmuxl.h            |   22 +
 include/net/caif/generic/cfpkt.h             |  274 +++++
 include/net/caif/generic/cfserl.h            |   14 +
 include/net/caif/generic/cfsrvl.h            |   33 +
 net/Kconfig                                  |    2 +
 net/Makefile                                 |    1 +
 net/caif/Kconfig                             |   57 +
 net/caif/Makefile                            |   29 +
 net/caif/caif_chnlif.c                       |  177 ++++
 net/caif/caif_config_util.c                  |  121 +++
 net/caif/caif_dev.c                          |  417 ++++++++
 net/caif/caif_socket.c                       | 1427 ++++++++++++++++++++++++++
 net/caif/chnl_net.c                          |  566 ++++++++++
 net/caif/generic/cfcnfg.c                    |  538 ++++++++++
 net/caif/generic/cfctrl.c                    |  699 +++++++++++++
 net/caif/generic/cfdgml.c                    |  106 ++
 net/caif/generic/cffrml.c                    |  148 +++
 net/caif/generic/cflist.c                    |   88 ++
 net/caif/generic/cfmuxl.c                    |  225 ++++
 net/caif/generic/cfpkt_skbuff.c              |  596 +++++++++++
 net/caif/generic/cfrfml.c                    |  104 ++
 net/caif/generic/cfserl.c                    |  198 ++++
 net/caif/generic/cfsrvl.c                    |  182 ++++
 net/caif/generic/cfutill.c                   |  112 ++
 net/caif/generic/cfveil.c                    |  106 ++
 net/caif/generic/cfvidl.c                    |   62 ++
 49 files changed, 8404 insertions(+), 3 deletions(-)


^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2010-02-02 14:19 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-20 22:55 [PATCH net-next-2.6 00/13] net-caif: introducing CAIF protocol stack sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 01/13] net-caif: add CAIF protocol definitions sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 02/13] net-caif: add CAIF header files sjur.brandeland
2010-01-20 23:27   ` Randy Dunlap
2010-01-22 11:05     ` Sjur Brændeland
2010-01-21  7:44   ` Patrick McHardy
2010-01-22 10:53     ` Sjur Brændeland
2010-01-22  7:51   ` Marcel Holtmann
2010-01-22  8:18     ` Sjur Brændeland
2010-01-22  8:39       ` Marcel Holtmann
2010-01-22  8:56         ` Sjur Brændeland
2010-01-22  9:16           ` Marcel Holtmann
2010-01-22  9:43             ` Sjur Brændeland
2010-01-20 22:55 ` [PATCH net-next-2.6 03/13] net-caif: add CAIF generic protocol stack " sjur.brandeland
2010-01-21  8:13   ` Patrick McHardy
2010-01-22 11:02     ` Sjur Brændeland
2010-01-22  9:28   ` Marcel Holtmann
2010-01-22 10:01     ` Sjur Brændeland
2010-01-22 10:12       ` Marcel Holtmann
2010-01-22 10:16         ` Sjur Brændeland
2010-01-22 10:24           ` Marcel Holtmann
2010-01-20 22:55 ` [PATCH net-next-2.6 04/13] net-caif: add CAIF " sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 05/13] net-caif: add CAIF generic protocol stack sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 06/13] net-caif: add CAIF generic caif support functions sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 07/13] net-caif: add CAIF device registration functionality sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 08/13] net-caif: add CAIF socket implementation sjur.brandeland
2010-01-20 22:55 ` [PATCH net-next-2.6 09/13] net-caif: add CAIF netdevice sjur.brandeland
2010-01-21  8:03   ` Patrick McHardy
2010-02-02 12:37     ` Sjur Brændeland
2010-02-02 14:14       ` Marcel Holtmann
2010-02-02 14:19         ` Patrick McHardy
2010-02-02 14:17       ` Patrick McHardy
2010-01-20 22:55 ` [PATCH net-next-2.6 10/13] net-caif: add kernel-client API for CAIF sjur.brandeland
2010-01-26 17:50   ` Randy Dunlap
2010-01-26 19:56     ` Sjur Brændeland
2010-01-20 22:55 ` [PATCH net-next-2.6 11/13] net-caif: add CAIF Kconfig and Makefiles sjur.brandeland
2010-01-22  9:40   ` Marcel Holtmann
2010-01-20 22:55 ` [PATCH net-next-2.6 13/13] net-caif-driver: add CAIF serial driver (ldisc) sjur.brandeland
2010-01-20 23:36   ` Randy Dunlap
2010-01-22 11:07     ` Sjur Brændeland
2010-01-22  9:21   ` Marcel Holtmann
2010-01-22  9:56     ` Sjur Brændeland
2010-01-22 10:07       ` Marcel Holtmann
2010-01-22  9:43 ` [PATCH net-next-2.6 00/13] net-caif: introducing CAIF protocol stack Marcel Holtmann
2010-01-22 10:11   ` Sjur Brændeland
2010-01-22 10:19     ` Marcel Holtmann
     [not found] ` <1264028130-14364-13-git-send-email-sjur.brandeland@stericsson.com>
2010-01-26 18:00   ` [PATCH net-next-2.6 12/13] net-caif: add CAIF documentation Randy Dunlap

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.