Sjur Braendeland | 2721c5b | 2010-03-30 13:56:22 +0000 | [diff] [blame] | 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_DEV_H_ |
| 8 | #define CAIF_DEV_H_ |
| 9 | |
| 10 | #include <net/caif/caif_layer.h> |
| 11 | #include <net/caif/cfcnfg.h> |
| 12 | #include <linux/caif/caif_socket.h> |
| 13 | #include <linux/if.h> |
| 14 | |
| 15 | /** |
| 16 | * struct caif_param - CAIF parameters. |
| 17 | * @size: Length of data |
| 18 | * @data: Binary Data Blob |
| 19 | */ |
| 20 | struct caif_param { |
| 21 | u16 size; |
| 22 | u8 data[256]; |
| 23 | }; |
| 24 | |
| 25 | /** |
Sjur Braendeland | e539d83 | 2010-04-28 08:54:35 +0000 | [diff] [blame^] | 26 | * struct caif_connect_request - Request data for CAIF channel setup. |
| 27 | * @protocol: Type of CAIF protocol to use (at, datagram etc) |
Sjur Braendeland | 2721c5b | 2010-03-30 13:56:22 +0000 | [diff] [blame] | 28 | * @sockaddr: Socket address to connect. |
| 29 | * @priority: Priority of the connection. |
| 30 | * @link_selector: Link selector (high bandwidth or low latency) |
| 31 | * @link_name: Name of the CAIF Link Layer to use. |
Sjur Braendeland | e539d83 | 2010-04-28 08:54:35 +0000 | [diff] [blame^] | 32 | * @param: Connect Request parameters (CAIF_SO_REQ_PARAM). |
Sjur Braendeland | 2721c5b | 2010-03-30 13:56:22 +0000 | [diff] [blame] | 33 | * |
| 34 | * This struct is used when connecting a CAIF channel. |
| 35 | * It contains all CAIF channel configuration options. |
| 36 | */ |
| 37 | struct caif_connect_request { |
Sjur Braendeland | e539d83 | 2010-04-28 08:54:35 +0000 | [diff] [blame^] | 38 | enum caif_protocol_type protocol; |
Sjur Braendeland | 2721c5b | 2010-03-30 13:56:22 +0000 | [diff] [blame] | 39 | struct sockaddr_caif sockaddr; |
| 40 | enum caif_channel_priority priority; |
| 41 | enum caif_link_selector link_selector; |
| 42 | char link_name[16]; |
| 43 | struct caif_param param; |
| 44 | }; |
| 45 | |
| 46 | /** |
| 47 | * caif_connect_client - Connect a client to CAIF Core Stack. |
| 48 | * @config: Channel setup parameters, specifying what address |
| 49 | * to connect on the Modem. |
| 50 | * @client_layer: User implementation of client layer. This layer |
| 51 | * MUST have receive and control callback functions |
| 52 | * implemented. |
| 53 | * |
| 54 | * This function connects a CAIF channel. The Client must implement |
| 55 | * the struct cflayer. This layer represents the Client layer and holds |
| 56 | * receive functions and control callback functions. Control callback |
| 57 | * function will receive information about connect/disconnect responses, |
| 58 | * flow control etc (see enum caif_control). |
| 59 | * E.g. CAIF Socket will call this function for each socket it connects |
| 60 | * and have one client_layer instance for each socket. |
| 61 | */ |
| 62 | int caif_connect_client(struct caif_connect_request *config, |
| 63 | struct cflayer *client_layer); |
| 64 | |
| 65 | /** |
| 66 | * caif_disconnect_client - Disconnects a client from the CAIF stack. |
| 67 | * |
| 68 | * @client_layer: Client layer to be removed. |
| 69 | */ |
| 70 | int caif_disconnect_client(struct cflayer *client_layer); |
| 71 | |
| 72 | /** |
| 73 | * connect_req_to_link_param - Translate configuration parameters |
| 74 | * from socket format to internal format. |
| 75 | * @cnfg: Pointer to configuration handler |
| 76 | * @con_req: Configuration parameters supplied in function |
| 77 | * caif_connect_client |
| 78 | * @channel_setup_param: Parameters supplied to the CAIF Core stack for |
| 79 | * setting up channels. |
| 80 | * |
| 81 | */ |
| 82 | int connect_req_to_link_param(struct cfcnfg *cnfg, |
| 83 | struct caif_connect_request *con_req, |
| 84 | struct cfctrl_link_param *channel_setup_param); |
| 85 | |
| 86 | /** |
| 87 | * get_caif_conf() - Get the configuration handler. |
| 88 | */ |
| 89 | struct cfcnfg *get_caif_conf(void); |
| 90 | |
| 91 | |
| 92 | #endif /* CAIF_DEV_H_ */ |