xref: /openbmc/linux/include/net/caif/cfcnfg.h (revision 09009f30)
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 CFCNFG_H_
8 #define CFCNFG_H_
9 #include <linux/spinlock.h>
10 #include <net/caif/caif_layer.h>
11 #include <net/caif/cfctrl.h>
12 
13 struct cfcnfg;
14 
15 /**
16  * enum cfcnfg_phy_type -  Types of physical layers defined in CAIF Stack
17  *
18  * @CFPHYTYPE_FRAG:	Fragmented frames physical interface.
19  * @CFPHYTYPE_CAIF:	Generic CAIF physical interface
20  */
21 enum cfcnfg_phy_type {
22 	CFPHYTYPE_FRAG = 1,
23 	CFPHYTYPE_CAIF,
24 	CFPHYTYPE_MAX
25 };
26 
27 /**
28  * enum cfcnfg_phy_preference - Physical preference HW Abstraction
29  *
30  * @CFPHYPREF_UNSPECIFIED:	Default physical interface
31  *
32  * @CFPHYPREF_LOW_LAT:		Default physical interface for low-latency
33  *				traffic
34  * @CFPHYPREF_HIGH_BW:		Default physical interface for high-bandwidth
35  *				traffic
36  * @CFPHYPREF_LOOP:		TEST only Loopback interface simulating modem
37  *				responses.
38  *
39  */
40 enum cfcnfg_phy_preference {
41 	CFPHYPREF_UNSPECIFIED,
42 	CFPHYPREF_LOW_LAT,
43 	CFPHYPREF_HIGH_BW,
44 	CFPHYPREF_LOOP
45 };
46 
47 /**
48  * cfcnfg_create() - Create the CAIF configuration object.
49  */
50 struct cfcnfg *cfcnfg_create(void);
51 
52 /**
53  * cfcnfg_remove() -  Remove the CFCNFG object
54  * @cfg: config object
55  */
56 void cfcnfg_remove(struct cfcnfg *cfg);
57 
58 /**
59  * cfcnfg_add_phy_layer() - Adds a physical layer to the CAIF stack.
60  * @cnfg:	Pointer to a CAIF configuration object, created by
61  *		cfcnfg_create().
62  * @phy_type:	Specifies the type of physical interface, e.g.
63  *			CFPHYTYPE_FRAG.
64  * @dev:	Pointer to link layer device
65  * @phy_layer:	Specify the physical layer. The transmit function
66  *		MUST be set in the structure.
67  * @phyid:	The assigned physical ID for this layer, used in
68  *		cfcnfg_add_adapt_layer to specify PHY for the link.
69  * @pref:	The phy (link layer) preference.
70  * @fcs:	Specify if checksum is used in CAIF Framing Layer.
71  * @stx:	Specify if Start Of Frame eXtention is used.
72  */
73 
74 void
75 cfcnfg_add_phy_layer(struct cfcnfg *cnfg, enum cfcnfg_phy_type phy_type,
76 		     void *dev, struct cflayer *phy_layer, u16 *phyid,
77 		     enum cfcnfg_phy_preference pref,
78 		     bool fcs, bool stx);
79 
80 /**
81  * cfcnfg_del_phy_layer - Deletes an phy layer from the CAIF stack.
82  *
83  * @cnfg:	Pointer to a CAIF configuration object, created by
84  *		cfcnfg_create().
85  * @phy_layer:	Adaptation layer to be removed.
86  */
87 int cfcnfg_del_phy_layer(struct cfcnfg *cnfg, struct cflayer *phy_layer);
88 
89 /**
90  * cfcnfg_del_adapt_layer - Deletes an adaptation layer from the CAIF stack.
91  *
92  * @cnfg:	Pointer to a CAIF configuration object, created by
93  *		cfcnfg_create().
94  * @adap_layer: Adaptation layer to be removed.
95  */
96 int cfcnfg_del_adapt_layer(struct cfcnfg *cnfg, struct cflayer *adap_layer);
97 
98 /**
99  * cfcnfg_add_adaptation_layer - Add an adaptation layer to the CAIF stack.
100  *
101  * The adaptation Layer is where the interface to application or higher-level
102  * driver functionality is implemented.
103  *
104  * @cnfg:		Pointer to a CAIF configuration object, created by
105  *				cfcnfg_create().
106  * @param:		Link setup parameters.
107  * @adap_layer:		Specify the adaptation layer; the receive and
108  *			flow-control functions MUST be set in the structure.
109  *
110  */
111 int
112 cfcnfg_add_adaptation_layer(struct cfcnfg *cnfg,
113 			    struct cfctrl_link_param *param,
114 			    struct cflayer *adap_layer);
115 
116 /**
117  * cfcnfg_get_phyid() - Get physical ID, given type.
118  * Returns one of the physical interfaces matching the given type.
119  * Zero if no match is found.
120  * @cnfg:	Configuration object
121  * @phy_pref:	Caif Link Layer preference
122  */
123 struct dev_info *cfcnfg_get_phyid(struct cfcnfg *cnfg,
124 		     enum cfcnfg_phy_preference phy_pref);
125 
126 /**
127  * cfcnfg_get_named() - Get the Physical Identifier of CAIF Link Layer
128  * @cnfg:	Configuration object
129  * @name:	Name of the Physical Layer (Caif Link Layer)
130  */
131 int cfcnfg_get_named(struct cfcnfg *cnfg, char *name);
132 
133 #endif				/* CFCNFG_H_ */
134