Merge branch 'drm-dwhdmi-devel' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into...
[deliverable/linux.git] / include / net / caif / cfsrvl.h
CommitLineData
09009f30
SB
1/*
2 * Copyright (C) ST-Ericsson AB 2010
26ee65e6 3 * Author: Sjur Brendeland
09009f30
SB
4 * License terms: GNU General Public License (GPL) version 2
5 */
6
7#ifndef CFSRVL_H_
8#define CFSRVL_H_
9#include <linux/list.h>
10#include <linux/stddef.h>
11#include <linux/types.h>
5b208656 12#include <linux/kref.h>
43e36921 13#include <linux/rculist.h>
5b208656 14
09009f30
SB
15struct cfsrvl {
16 struct cflayer layer;
17 bool open;
18 bool phy_flow_on;
19 bool modem_flow_on;
b1c74247 20 bool supports_flowctrl;
43e36921 21 void (*release)(struct cflayer *layer);
09009f30 22 struct dev_info dev_info;
43e36921 23 void (*hold)(struct cflayer *lyr);
24 void (*put)(struct cflayer *lyr);
25 struct rcu_head rcu;
09009f30
SB
26};
27
28struct cflayer *cfvei_create(u8 linkid, struct dev_info *dev_info);
29struct cflayer *cfdgml_create(u8 linkid, struct dev_info *dev_info);
30struct cflayer *cfutill_create(u8 linkid, struct dev_info *dev_info);
31struct cflayer *cfvidl_create(u8 linkid, struct dev_info *dev_info);
a7da1f55
SB
32struct cflayer *cfrfml_create(u8 linkid, struct dev_info *dev_info,
33 int mtu_size);
09009f30 34struct cflayer *cfdbgl_create(u8 linkid, struct dev_info *dev_info);
43e36921 35
36void cfsrvl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
37 int phyid);
38
09009f30 39bool cfsrvl_phyid_match(struct cflayer *layer, int phyid);
73d6ac63 40
09009f30 41void cfsrvl_init(struct cfsrvl *service,
b1c74247
SB
42 u8 channel_id,
43 struct dev_info *dev_info,
44 bool supports_flowctrl);
09009f30
SB
45bool cfsrvl_ready(struct cfsrvl *service, int *err);
46u8 cfsrvl_getphyid(struct cflayer *layer);
47
5b208656
SB
48static inline void cfsrvl_get(struct cflayer *layr)
49{
43e36921 50 struct cfsrvl *s = container_of(layr, struct cfsrvl, layer);
51 if (layr == NULL || layr->up == NULL || s->hold == NULL)
5b208656 52 return;
43e36921 53
54 s->hold(layr->up);
5b208656
SB
55}
56
57static inline void cfsrvl_put(struct cflayer *layr)
58{
43e36921 59 struct cfsrvl *s = container_of(layr, struct cfsrvl, layer);
60 if (layr == NULL || layr->up == NULL || s->hold == NULL)
5b208656 61 return;
a7da1f55 62
43e36921 63 s->put(layr->up);
5b208656 64}
09009f30 65#endif /* CFSRVL_H_ */
This page took 0.296938 seconds and 5 git commands to generate.