blob: 62b5c7dfe7f35329473f2c47edf519633845e443 [file] [log] [blame]
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +00001/*
2 * Copyright (C) 2007-2012 Siemens AG
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000013 * Written by:
14 * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
15 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
16 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
17 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
18 */
19
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/workqueue.h>
23#include <linux/netdevice.h>
24#include <linux/crc-ccitt.h>
25
26#include <net/mac802154.h>
27#include <net/ieee802154_netdev.h>
28
Alexander Aring0f1556b2014-10-25 09:41:00 +020029#include "ieee802154_i.h"
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000030
31/* The IEEE 802.15.4 standard defines 4 MAC packet types:
32 * - beacon frame
33 * - MAC command frame
34 * - acknowledgement frame
35 * - data frame
36 *
37 * and only the data frame should be pushed to the upper layers, other types
38 * are just internal MAC layer management information. So only data packets
39 * are going to be sent to the networking queue, all other will be processed
40 * right here by using the device workqueue.
41 */
42struct rx_work {
43 struct sk_buff *skb;
44 struct work_struct work;
Alexander Aring5a504392014-10-25 17:16:34 +020045 struct ieee802154_hw *hw;
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000046 u8 lqi;
47};
48
49static void
Alexander Aring5a504392014-10-25 17:16:34 +020050mac802154_subif_rx(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000051{
52 struct mac802154_priv *priv = mac802154_to_priv(hw);
53
54 mac_cb(skb)->lqi = lqi;
55 skb->protocol = htons(ETH_P_IEEE802154);
56 skb_reset_mac_header(skb);
57
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000058 if (!(priv->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
59 u16 crc;
60
61 if (skb->len < 2) {
62 pr_debug("got invalid frame\n");
Phoebe Buckheister2d3b5b02014-06-11 12:03:07 +020063 goto fail;
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000064 }
65 crc = crc_ccitt(0, skb->data, skb->len);
66 if (crc) {
67 pr_debug("CRC mismatch\n");
Phoebe Buckheister2d3b5b02014-06-11 12:03:07 +020068 goto fail;
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000069 }
70 skb_trim(skb, skb->len - 2); /* CRC */
71 }
72
alex.bluesman.smirnov@gmail.com06060692012-05-15 20:50:29 +000073 mac802154_monitors_rx(priv, skb);
alex.bluesman.smirnov@gmail.com32bad7e2012-06-25 23:24:48 +000074 mac802154_wpans_rx(priv, skb);
Phoebe Buckheister2d3b5b02014-06-11 12:03:07 +020075
76 return;
77
78fail:
79 kfree_skb(skb);
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000080}
81
82static void mac802154_rx_worker(struct work_struct *work)
83{
84 struct rx_work *rw = container_of(work, struct rx_work, work);
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000085
Alexander Aring5a504392014-10-25 17:16:34 +020086 mac802154_subif_rx(rw->hw, rw->skb, rw->lqi);
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000087 kfree(rw);
88}
89
90void
Alexander Aring5a504392014-10-25 17:16:34 +020091ieee802154_rx_irqsafe(struct ieee802154_hw *hw, struct sk_buff *skb, u8 lqi)
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000092{
Alexander Aring5a504392014-10-25 17:16:34 +020093 struct mac802154_priv *priv = mac802154_to_priv(hw);
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +000094 struct rx_work *work;
95
96 if (!skb)
97 return;
98
Varka Bhadram24bbd442014-08-11 13:25:07 +020099 work = kzalloc(sizeof(*work), GFP_ATOMIC);
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +0000100 if (!work)
101 return;
102
103 INIT_WORK(&work->work, mac802154_rx_worker);
104 work->skb = skb;
Alexander Aring5a504392014-10-25 17:16:34 +0200105 work->hw = hw;
alex.bluesman.smirnov@gmail.com1cd829c2012-05-15 20:50:21 +0000106 work->lqi = lqi;
107
108 queue_work(priv->dev_workqueue, &work->work);
109}
110EXPORT_SYMBOL(ieee802154_rx_irqsafe);