2 * CAIF Interface registration.
3 * Copyright (C) ST-Ericsson AB 2010
5 * License terms: GNU General Public License (GPL) version 2
7 * Borrowed heavily from file: pn_dev.c. Thanks to
12 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
14 #include <linux/version.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/if_arp.h>
18 #include <linux/net.h>
19 #include <linux/netdevice.h>
20 #include <linux/skbuff.h>
21 #include <linux/sched.h>
22 #include <linux/wait.h>
23 #include <net/netns/generic.h>
24 #include <net/net_namespace.h>
25 #include <net/pkt_sched.h>
26 #include <net/caif/caif_device.h>
27 #include <net/caif/caif_dev.h>
28 #include <net/caif/caif_layer.h>
29 #include <net/caif/cfpkt.h>
30 #include <net/caif/cfcnfg.h>
32 MODULE_LICENSE("GPL");
33 #define TIMEOUT (HZ*5)
35 /* Used for local tracking of the CAIF net devices */
36 struct caif_device_entry {
38 struct list_head list;
42 struct net_device *netdev;
43 wait_queue_head_t event;
46 struct caif_device_entry_list {
47 struct list_head list;
48 /* Protects simulanous deletes in list */
53 struct caif_device_entry_list caifdevs;
56 static int caif_net_id;
57 static struct cfcnfg *cfg;
59 static struct caif_device_entry_list *caif_device_list(struct net *net)
61 struct caif_net *caifn;
63 caifn = net_generic(net, caif_net_id);
65 return &caifn->caifdevs;
68 /* Allocate new CAIF device. */
69 static struct caif_device_entry *caif_device_alloc(struct net_device *dev)
71 struct caif_device_entry_list *caifdevs;
72 struct caif_device_entry *caifd;
73 caifdevs = caif_device_list(dev_net(dev));
75 caifd = kzalloc(sizeof(*caifd), GFP_ATOMIC);
79 list_add(&caifd->list, &caifdevs->list);
80 init_waitqueue_head(&caifd->event);
84 static struct caif_device_entry *caif_get(struct net_device *dev)
86 struct caif_device_entry_list *caifdevs =
87 caif_device_list(dev_net(dev));
88 struct caif_device_entry *caifd;
90 list_for_each_entry(caifd, &caifdevs->list, list) {
91 if (caifd->netdev == dev)
97 static void caif_device_destroy(struct net_device *dev)
99 struct caif_device_entry_list *caifdevs =
100 caif_device_list(dev_net(dev));
101 struct caif_device_entry *caifd;
103 if (dev->type != ARPHRD_CAIF)
106 spin_lock_bh(&caifdevs->lock);
107 caifd = caif_get(dev);
109 spin_unlock_bh(&caifdevs->lock);
113 list_del(&caifd->list);
114 spin_unlock_bh(&caifdevs->lock);
119 static int transmit(struct cflayer *layer, struct cfpkt *pkt)
121 struct caif_device_entry *caifd =
122 container_of(layer, struct caif_device_entry, layer);
123 struct sk_buff *skb, *skb2;
125 skb = cfpkt_tonative(pkt);
126 skb->dev = caifd->netdev;
128 * Don't allow SKB to be destroyed upon error, but signal resend
129 * notification to clients. We can't rely on the return value as
130 * congestion (NET_XMIT_CN) sometimes drops the packet, sometimes don't.
132 if (netif_queue_stopped(caifd->netdev))
136 ret = dev_queue_xmit(skb2);
146 static int modemcmd(struct cflayer *layr, enum caif_modemcmd ctrl)
148 struct caif_device_entry *caifd;
149 struct caif_dev_common *caifdev;
150 caifd = container_of(layr, struct caif_device_entry, layer);
151 caifdev = netdev_priv(caifd->netdev);
152 if (ctrl == _CAIF_MODEMCMD_PHYIF_USEFULL) {
153 atomic_set(&caifd->in_use, 1);
154 wake_up_interruptible(&caifd->event);
156 } else if (ctrl == _CAIF_MODEMCMD_PHYIF_USELESS) {
157 atomic_set(&caifd->in_use, 0);
158 wake_up_interruptible(&caifd->event);
164 * Stuff received packets to associated sockets.
165 * On error, returns non-zero and releases the skb.
167 static int receive(struct sk_buff *skb, struct net_device *dev,
168 struct packet_type *pkttype, struct net_device *orig_dev)
172 struct caif_device_entry *caifd;
174 pkt = cfpkt_fromnative(CAIF_DIR_IN, skb);
175 caifd = caif_get(dev);
176 if (!caifd || !caifd->layer.up || !caifd->layer.up->receive)
179 if (caifd->layer.up->receive(caifd->layer.up, pkt))
185 static struct packet_type caif_packet_type __read_mostly = {
186 .type = cpu_to_be16(ETH_P_CAIF),
190 static void dev_flowctrl(struct net_device *dev, int on)
192 struct caif_device_entry *caifd = caif_get(dev);
193 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd)
196 caifd->layer.up->ctrlcmd(caifd->layer.up,
198 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND :
199 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND,
203 /* notify Caif of device events */
204 static int caif_device_notify(struct notifier_block *me, unsigned long what,
207 struct net_device *dev = arg;
208 struct caif_device_entry *caifd = NULL;
209 struct caif_dev_common *caifdev;
210 enum cfcnfg_phy_preference pref;
212 enum cfcnfg_phy_type phy_type;
214 if (dev->type != ARPHRD_CAIF)
218 case NETDEV_REGISTER:
219 netdev_info(dev, "register\n");
220 caifd = caif_device_alloc(dev);
223 caifdev = netdev_priv(dev);
224 caifdev->flowctrl = dev_flowctrl;
225 atomic_set(&caifd->state, what);
230 netdev_info(dev, "up\n");
231 caifd = caif_get(dev);
234 caifdev = netdev_priv(dev);
235 if (atomic_read(&caifd->state) == NETDEV_UP) {
236 netdev_info(dev, "already up\n");
239 atomic_set(&caifd->state, what);
240 caifd->layer.transmit = transmit;
241 caifd->layer.modemcmd = modemcmd;
243 if (caifdev->use_frag)
244 phy_type = CFPHYTYPE_FRAG;
246 phy_type = CFPHYTYPE_CAIF;
248 switch (caifdev->link_select) {
249 case CAIF_LINK_HIGH_BANDW:
250 pref = CFPHYPREF_HIGH_BW;
252 case CAIF_LINK_LOW_LATENCY:
253 pref = CFPHYPREF_LOW_LAT;
256 pref = CFPHYPREF_HIGH_BW;
260 cfcnfg_add_phy_layer(get_caif_conf(),
268 strncpy(caifd->layer.name, dev->name,
269 sizeof(caifd->layer.name) - 1);
270 caifd->layer.name[sizeof(caifd->layer.name) - 1] = 0;
273 case NETDEV_GOING_DOWN:
274 caifd = caif_get(dev);
277 netdev_info(dev, "going down\n");
279 if (atomic_read(&caifd->state) == NETDEV_GOING_DOWN ||
280 atomic_read(&caifd->state) == NETDEV_DOWN)
283 atomic_set(&caifd->state, what);
284 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd)
286 caifd->layer.up->ctrlcmd(caifd->layer.up,
287 _CAIF_CTRLCMD_PHYIF_DOWN_IND,
290 res = wait_event_interruptible_timeout(caifd->event,
291 atomic_read(&caifd->in_use) == 0,
296 caifd = caif_get(dev);
299 netdev_info(dev, "down\n");
300 if (atomic_read(&caifd->in_use))
302 "Unregistering an active CAIF device\n");
303 cfcnfg_del_phy_layer(get_caif_conf(), &caifd->layer);
305 atomic_set(&caifd->state, what);
308 case NETDEV_UNREGISTER:
309 caifd = caif_get(dev);
310 netdev_info(dev, "unregister\n");
311 atomic_set(&caifd->state, what);
312 caif_device_destroy(dev);
318 static struct notifier_block caif_device_notifier = {
319 .notifier_call = caif_device_notify,
324 struct cfcnfg *get_caif_conf(void)
328 EXPORT_SYMBOL(get_caif_conf);
330 int caif_connect_client(struct caif_connect_request *conn_req,
331 struct cflayer *client_layer, int *ifindex,
332 int *headroom, int *tailroom)
334 struct cfctrl_link_param param;
336 ret = connect_req_to_link_param(get_caif_conf(), conn_req, ¶m);
339 /* Hook up the adaptation layer. */
340 return cfcnfg_add_adaptation_layer(get_caif_conf(), ¶m,
341 client_layer, ifindex,
344 EXPORT_SYMBOL(caif_connect_client);
346 int caif_disconnect_client(struct cflayer *adap_layer)
348 return cfcnfg_disconn_adapt_layer(get_caif_conf(), adap_layer);
350 EXPORT_SYMBOL(caif_disconnect_client);
352 void caif_release_client(struct cflayer *adap_layer)
354 cfcnfg_release_adap_layer(adap_layer);
356 EXPORT_SYMBOL(caif_release_client);
358 /* Per-namespace Caif devices handling */
359 static int caif_init_net(struct net *net)
361 struct caif_net *caifn = net_generic(net, caif_net_id);
362 INIT_LIST_HEAD(&caifn->caifdevs.list);
363 spin_lock_init(&caifn->caifdevs.lock);
367 static void caif_exit_net(struct net *net)
369 struct net_device *dev;
372 for_each_netdev(net, dev) {
373 if (dev->type != ARPHRD_CAIF)
375 res = dev_close(dev);
376 caif_device_destroy(dev);
381 static struct pernet_operations caif_net_ops = {
382 .init = caif_init_net,
383 .exit = caif_exit_net,
385 .size = sizeof(struct caif_net),
388 /* Initialize Caif devices list */
389 static int __init caif_device_init(void)
392 cfg = cfcnfg_create();
394 pr_warn("can't create cfcnfg\n");
395 goto err_cfcnfg_create_failed;
397 result = register_pernet_device(&caif_net_ops);
404 dev_add_pack(&caif_packet_type);
405 register_netdevice_notifier(&caif_device_notifier);
408 err_cfcnfg_create_failed:
412 static void __exit caif_device_exit(void)
414 dev_remove_pack(&caif_packet_type);
415 unregister_pernet_device(&caif_net_ops);
416 unregister_netdevice_notifier(&caif_device_notifier);
420 module_init(caif_device_init);
421 module_exit(caif_device_exit);