diff options
| author | Sjur Braendeland <sjur.brandeland@stericsson.com> | 2010-03-30 09:56:21 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-03-30 22:08:45 -0400 |
| commit | 09009f30de188c847d72039e6250bfea56a0f887 (patch) | |
| tree | d979db08952227ad8175267e68bd61413bd0e53e /include/net/caif | |
| parent | f671c54207d8a47129f35a84569fdfda614d2439 (diff) | |
net-caif: add CAIF core protocol stack header files
Add include files for the CAIF Core protocol stack.
caif_layer.h - Defines the structure of the CAIF protocol layers
cfcnfg.h - CAIF Configuration Module for services and link layers
cfctrl.h - CAIF Control Protocol Layer
cffrml.h - CAIF Framing Layer
cfmuxl.h - CAIF Muxing Layer
cfpkt.h - CAIF Packet layer (skb helper functions)
cfserl.h - CAIF Serial Layer
cfsrvl.h - CAIF Service Layer
Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/caif')
| -rw-r--r-- | include/net/caif/caif_layer.h | 283 | ||||
| -rw-r--r-- | include/net/caif/cfcnfg.h | 133 | ||||
| -rw-r--r-- | include/net/caif/cfctrl.h | 138 | ||||
| -rw-r--r-- | include/net/caif/cffrml.h | 16 | ||||
| -rw-r--r-- | include/net/caif/cfmuxl.h | 22 | ||||
| -rw-r--r-- | include/net/caif/cfpkt.h | 274 | ||||
| -rw-r--r-- | include/net/caif/cfserl.h | 12 | ||||
| -rw-r--r-- | include/net/caif/cfsrvl.h | 34 |
8 files changed, 912 insertions, 0 deletions
diff --git a/include/net/caif/caif_layer.h b/include/net/caif/caif_layer.h new file mode 100644 index 000000000000..25c472f0e5b8 --- /dev/null +++ b/include/net/caif/caif_layer.h | |||
| @@ -0,0 +1,283 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) ST-Ericsson AB 2010 | ||
| 3 | * Author: Sjur Brendeland / sjur.brandeland@stericsson.com | ||
| 4 | * License terms: GNU General Public License (GPL) version 2 | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef CAIF_LAYER_H_ | ||
| 8 | #define CAIF_LAYER_H_ | ||
| 9 | |||
| 10 | #include <linux/list.h> | ||
| 11 | |||
| 12 | struct cflayer; | ||
| 13 | struct cfpkt; | ||
| 14 | struct cfpktq; | ||
| 15 | struct caif_payload_info; | ||
| 16 | struct caif_packet_funcs; | ||
| 17 | |||
| 18 | #define CAIF_MAX_FRAMESIZE 4096 | ||
| 19 | #define CAIF_MAX_PAYLOAD_SIZE (4096 - 64) | ||
| 20 | #define CAIF_NEEDED_HEADROOM (10) | ||
| 21 | #define CAIF_NEEDED_TAILROOM (2) | ||
| 22 | |||
| 23 | #define CAIF_LAYER_NAME_SZ 16 | ||
| 24 | #define CAIF_SUCCESS 1 | ||
| 25 | #define CAIF_FAILURE 0 | ||
| 26 | |||
| 27 | /** | ||
| 28 | * caif_assert() - Assert function for CAIF. | ||
| 29 | * @assert: expression to evaluate. | ||
| 30 | * | ||
| 31 | * This function will print a error message and a do WARN_ON if the | ||
| 32 | * assertion failes. Normally this will do a stack up at the current location. | ||
| 33 | */ | ||
| 34 | #define caif_assert(assert) \ | ||
| 35 | do { \ | ||
| 36 | if (!(assert)) { \ | ||
| 37 | pr_err("caif:Assert detected:'%s'\n", #assert); \ | ||
| 38 | WARN_ON(!(assert)); \ | ||
| 39 | } \ | ||
| 40 | } while (0) | ||
| 41 | |||
| 42 | |||
| 43 | /** | ||
| 44 | * enum caif_ctrlcmd - CAIF Stack Control Signaling sent in layer.ctrlcmd(). | ||
| 45 | * | ||
| 46 | * @CAIF_CTRLCMD_FLOW_OFF_IND: Flow Control is OFF, transmit function | ||
| 47 | * should stop sending data | ||
| 48 | * | ||
| 49 | * @CAIF_CTRLCMD_FLOW_ON_IND: Flow Control is ON, transmit function | ||
| 50 | * can start sending data | ||
| 51 | * | ||
| 52 | * @CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND: Remote end modem has decided to close | ||
| 53 | * down channel | ||
| 54 | * | ||
| 55 | * @CAIF_CTRLCMD_INIT_RSP: Called initially when the layer below | ||
| 56 | * has finished initialization | ||
| 57 | * | ||
| 58 | * @CAIF_CTRLCMD_DEINIT_RSP: Called when de-initialization is | ||
| 59 | * complete | ||
| 60 | * | ||
| 61 | * @CAIF_CTRLCMD_INIT_FAIL_RSP: Called if initialization fails | ||
| 62 | * | ||
| 63 | * @_CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND: CAIF Link layer temporarily cannot | ||
| 64 | * send more packets. | ||
| 65 | * @_CAIF_CTRLCMD_PHYIF_FLOW_ON_IND: Called if CAIF Link layer is able | ||
| 66 | * to send packets again. | ||
| 67 | * @_CAIF_CTRLCMD_PHYIF_DOWN_IND: Called if CAIF Link layer is going | ||
| 68 | * down. | ||
| 69 | * | ||
| 70 | * These commands are sent upwards in the CAIF stack to the CAIF Client. | ||
| 71 | * They are used for signaling originating from the modem or CAIF Link Layer. | ||
| 72 | * These are either responses (*_RSP) or events (*_IND). | ||
| 73 | */ | ||
| 74 | enum caif_ctrlcmd { | ||
| 75 | CAIF_CTRLCMD_FLOW_OFF_IND, | ||
| 76 | CAIF_CTRLCMD_FLOW_ON_IND, | ||
| 77 | CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND, | ||
| 78 | CAIF_CTRLCMD_INIT_RSP, | ||
| 79 | CAIF_CTRLCMD_DEINIT_RSP, | ||
| 80 | CAIF_CTRLCMD_INIT_FAIL_RSP, | ||
| 81 | _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND, | ||
| 82 | _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND, | ||
| 83 | _CAIF_CTRLCMD_PHYIF_DOWN_IND, | ||
| 84 | }; | ||
| 85 | |||
| 86 | /** | ||
| 87 | * enum caif_modemcmd - Modem Control Signaling, sent from CAIF Client | ||
| 88 | * to the CAIF Link Layer or modem. | ||
| 89 | * | ||
| 90 | * @CAIF_MODEMCMD_FLOW_ON_REQ: Flow Control is ON, transmit function | ||
| 91 | * can start sending data. | ||
| 92 | * | ||
| 93 | * @CAIF_MODEMCMD_FLOW_OFF_REQ: Flow Control is OFF, transmit function | ||
| 94 | * should stop sending data. | ||
| 95 | * | ||
| 96 | * @_CAIF_MODEMCMD_PHYIF_USEFULL: Notify physical layer that it is in use | ||
| 97 | * | ||
| 98 | * @_CAIF_MODEMCMD_PHYIF_USELESS: Notify physical layer that it is | ||
| 99 | * no longer in use. | ||
| 100 | * | ||
| 101 | * These are requests sent 'downwards' in the stack. | ||
| 102 | * Flow ON, OFF can be indicated to the modem. | ||
| 103 | */ | ||
| 104 | enum caif_modemcmd { | ||
| 105 | CAIF_MODEMCMD_FLOW_ON_REQ = 0, | ||
| 106 | CAIF_MODEMCMD_FLOW_OFF_REQ = 1, | ||
| 107 | _CAIF_MODEMCMD_PHYIF_USEFULL = 3, | ||
| 108 | _CAIF_MODEMCMD_PHYIF_USELESS = 4 | ||
| 109 | }; | ||
| 110 | |||
| 111 | /** | ||
| 112 | * enum caif_direction - CAIF Packet Direction. | ||
| 113 | * Indicate if a packet is to be sent out or to be received in. | ||
| 114 | * @CAIF_DIR_IN: Incoming packet received. | ||
| 115 | * @CAIF_DIR_OUT: Outgoing packet to be transmitted. | ||
| 116 | */ | ||
| 117 | enum caif_direction { | ||
| 118 | CAIF_DIR_IN = 0, | ||
| 119 | CAIF_DIR_OUT = 1 | ||
| 120 | }; | ||
| 121 | |||
| 122 | /** | ||
| 123 | * struct cflayer - CAIF Stack layer. | ||
| 124 | * Defines the framework for the CAIF Core Stack. | ||
| 125 | * @up: Pointer up to the layer above. | ||
| 126 | * @dn: Pointer down to the layer below. | ||
| 127 | * @node: List node used when layer participate in a list. | ||
| 128 | * @receive: Packet receive function. | ||
| 129 | * @transmit: Packet transmit funciton. | ||
| 130 | * @ctrlcmd: Used for control signalling upwards in the stack. | ||
| 131 | * @modemcmd: Used for control signaling downwards in the stack. | ||
| 132 | * @prio: Priority of this layer. | ||
| 133 | * @id: The identity of this layer | ||
| 134 | * @type: The type of this layer | ||
| 135 | * @name: Name of the layer. | ||
| 136 | * | ||
| 137 | * This structure defines the layered structure in CAIF. | ||
| 138 | * | ||
| 139 | * It defines CAIF layering structure, used by all CAIF Layers and the | ||
| 140 | * layers interfacing CAIF. | ||
| 141 | * | ||
| 142 | * In order to integrate with CAIF an adaptation layer on top of the CAIF stack | ||
| 143 | * and PHY layer below the CAIF stack | ||
| 144 | * must be implemented. These layer must follow the design principles below. | ||
| 145 | * | ||
| 146 | * Principles for layering of protocol layers: | ||
| 147 | * - All layers must use this structure. If embedding it, then place this | ||
| 148 | * structure first in the layer specific structure. | ||
| 149 | * | ||
| 150 | * - Each layer should not depend on any others layer private data. | ||
| 151 | * | ||
| 152 | * - In order to send data upwards do | ||
| 153 | * layer->up->receive(layer->up, packet); | ||
| 154 | * | ||
| 155 | * - In order to send data downwards do | ||
| 156 | * layer->dn->transmit(layer->dn, info, packet); | ||
| 157 | */ | ||
| 158 | struct cflayer { | ||
| 159 | struct cflayer *up; | ||
| 160 | struct cflayer *dn; | ||
| 161 | struct list_head node; | ||
| 162 | |||
| 163 | /* | ||
| 164 | * receive() - Receive Function. | ||
| 165 | * Contract: Each layer must implement a receive function passing the | ||
| 166 | * CAIF packets upwards in the stack. | ||
| 167 | * Packet handling rules: | ||
| 168 | * - The CAIF packet (cfpkt) cannot be accessed after | ||
| 169 | * passing it to the next layer using up->receive(). | ||
| 170 | * - If parsing of the packet fails, the packet must be | ||
| 171 | * destroyed and -1 returned from the function. | ||
| 172 | * - If parsing succeeds (and above layers return OK) then | ||
| 173 | * the function must return a value > 0. | ||
| 174 | * | ||
| 175 | * Returns result < 0 indicates an error, 0 or positive value | ||
| 176 | * indicates success. | ||
| 177 | * | ||
| 178 | * @layr: Pointer to the current layer the receive function is | ||
