2 * Copyright 2007-2012 Siemens AG
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.
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.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
19 * Sergey Lapin <slapin@ossfans.org>
20 * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
21 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
24 #include <linux/netdevice.h>
25 #include <linux/if_arp.h>
26 #include <linux/crc-ccitt.h>
28 #include <net/ieee802154_netdev.h>
29 #include <net/mac802154.h>
30 #include <net/wpan-phy.h>
32 #include "mac802154.h"
34 /* IEEE 802.15.4 transceivers can sleep during the xmit session, so process
35 * packets through the workqueue.
39 struct work_struct work;
40 struct mac802154_priv *priv;
45 static void mac802154_xmit_worker(struct work_struct *work)
47 struct xmit_work *xw = container_of(work, struct xmit_work, work);
48 struct mac802154_sub_if_data *sdata;
51 mutex_lock(&xw->priv->phy->pib_lock);
52 if (xw->priv->phy->current_channel != xw->chan ||
53 xw->priv->phy->current_page != xw->page) {
54 res = xw->priv->ops->set_channel(&xw->priv->hw,
58 pr_debug("set_channel failed\n");
62 xw->priv->phy->current_channel = xw->chan;
63 xw->priv->phy->current_page = xw->page;
66 res = xw->priv->ops->xmit(&xw->priv->hw, xw->skb);
68 pr_debug("transmission failed\n");
71 mutex_unlock(&xw->priv->phy->pib_lock);
73 /* Restart the netif queue on each sub_if_data object. */
75 list_for_each_entry_rcu(sdata, &xw->priv->slaves, list)
76 netif_wake_queue(sdata->dev);
79 dev_kfree_skb(xw->skb);
84 netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb,
87 struct xmit_work *work;
88 struct mac802154_sub_if_data *sdata;
90 if (!(priv->phy->channels_supported[page] & (1 << chan))) {
96 mac802154_monitors_rx(mac802154_to_priv(&priv->hw), skb);
98 if (!(priv->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
99 u16 crc = crc_ccitt(0, skb->data, skb->len);
100 u8 *data = skb_put(skb, 2);
101 data[0] = crc & 0xff;
105 if (skb_cow_head(skb, priv->hw.extra_tx_headroom)) {
110 work = kzalloc(sizeof(struct xmit_work), GFP_ATOMIC);
113 return NETDEV_TX_BUSY;
116 /* Stop the netif queue on each sub_if_data object. */
118 list_for_each_entry_rcu(sdata, &priv->slaves, list)
119 netif_stop_queue(sdata->dev);
122 INIT_WORK(&work->work, mac802154_xmit_worker);
128 queue_work(priv->dev_workqueue, &work->work);