blob: 326243fae7e27fa93d73d2f0806b25a8f0a3ba77 [file] [log] [blame]
Harry Morrisded845a2017-03-28 13:08:58 +01001/*
2 * http://www.cascoda.com/products/ca-821x/
3 * Copyright (c) 2016, Cascoda, Ltd.
4 * All rights reserved.
5 *
6 * This code is dual-licensed under both GPLv2 and 3-clause BSD. What follows is
7 * the license notice for both respectively.
8 *
9 *******************************************************************************
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 *******************************************************************************
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions are met:
25 *
26 * 1. Redistributions of source code must retain the above copyright notice,
27 * this list of conditions and the following disclaimer.
28 *
29 * 2. Redistributions in binary form must reproduce the above copyright notice,
30 * this list of conditions and the following disclaimer in the documentation
31 * and/or other materials provided with the distribution.
32 *
33 * 3. Neither the name of the copyright holder nor the names of its contributors
34 * may be used to endorse or promote products derived from this software without
35 * specific prior written permission.
36 *
37 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
38 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
41 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
42 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
43 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
44 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
45 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
47 * POSSIBILITY OF SUCH DAMAGE.
48 */
49
50#include <linux/cdev.h>
51#include <linux/clk-provider.h>
52#include <linux/debugfs.h>
53#include <linux/delay.h>
54#include <linux/gpio.h>
55#include <linux/ieee802154.h>
56#include <linux/kfifo.h>
57#include <linux/of.h>
58#include <linux/of_device.h>
59#include <linux/of_gpio.h>
60#include <linux/module.h>
61#include <linux/mutex.h>
62#include <linux/poll.h>
63#include <linux/skbuff.h>
64#include <linux/slab.h>
65#include <linux/spi/spi.h>
66#include <linux/spinlock.h>
67#include <linux/string.h>
68#include <linux/workqueue.h>
Florian Westphal0ab10312017-07-17 13:57:18 +020069#include <linux/interrupt.h>
Harry Morrisded845a2017-03-28 13:08:58 +010070
71#include <net/ieee802154_netdev.h>
72#include <net/mac802154.h>
73
74#define DRIVER_NAME "ca8210"
75
76/* external clock frequencies */
77#define ONE_MHZ 1000000
78#define TWO_MHZ (2 * ONE_MHZ)
79#define FOUR_MHZ (4 * ONE_MHZ)
80#define EIGHT_MHZ (8 * ONE_MHZ)
81#define SIXTEEN_MHZ (16 * ONE_MHZ)
82
83/* spi constants */
84#define CA8210_SPI_BUF_SIZE 256
85#define CA8210_SYNC_TIMEOUT 1000 /* Timeout for synchronous commands [ms] */
86
87/* test interface constants */
88#define CA8210_TEST_INT_FILE_NAME "ca8210_test"
89#define CA8210_TEST_INT_FIFO_SIZE 256
90
91/* MAC status enumerations */
92#define MAC_SUCCESS (0x00)
93#define MAC_ERROR (0x01)
94#define MAC_CANCELLED (0x02)
95#define MAC_READY_FOR_POLL (0x03)
96#define MAC_COUNTER_ERROR (0xDB)
97#define MAC_IMPROPER_KEY_TYPE (0xDC)
98#define MAC_IMPROPER_SECURITY_LEVEL (0xDD)
99#define MAC_UNSUPPORTED_LEGACY (0xDE)
100#define MAC_UNSUPPORTED_SECURITY (0xDF)
101#define MAC_BEACON_LOST (0xE0)
102#define MAC_CHANNEL_ACCESS_FAILURE (0xE1)
103#define MAC_DENIED (0xE2)
104#define MAC_DISABLE_TRX_FAILURE (0xE3)
105#define MAC_SECURITY_ERROR (0xE4)
106#define MAC_FRAME_TOO_LONG (0xE5)
107#define MAC_INVALID_GTS (0xE6)
108#define MAC_INVALID_HANDLE (0xE7)
109#define MAC_INVALID_PARAMETER (0xE8)
110#define MAC_NO_ACK (0xE9)
111#define MAC_NO_BEACON (0xEA)
112#define MAC_NO_DATA (0xEB)
113#define MAC_NO_SHORT_ADDRESS (0xEC)
114#define MAC_OUT_OF_CAP (0xED)
115#define MAC_PAN_ID_CONFLICT (0xEE)
116#define MAC_REALIGNMENT (0xEF)
117#define MAC_TRANSACTION_EXPIRED (0xF0)
118#define MAC_TRANSACTION_OVERFLOW (0xF1)
119#define MAC_TX_ACTIVE (0xF2)
120#define MAC_UNAVAILABLE_KEY (0xF3)
121#define MAC_UNSUPPORTED_ATTRIBUTE (0xF4)
122#define MAC_INVALID_ADDRESS (0xF5)
123#define MAC_ON_TIME_TOO_LONG (0xF6)
124#define MAC_PAST_TIME (0xF7)
125#define MAC_TRACKING_OFF (0xF8)
126#define MAC_INVALID_INDEX (0xF9)
127#define MAC_LIMIT_REACHED (0xFA)
128#define MAC_READ_ONLY (0xFB)
129#define MAC_SCAN_IN_PROGRESS (0xFC)
130#define MAC_SUPERFRAME_OVERLAP (0xFD)
131#define MAC_SYSTEM_ERROR (0xFF)
132
133/* HWME attribute IDs */
134#define HWME_EDTHRESHOLD (0x04)
135#define HWME_EDVALUE (0x06)
136#define HWME_SYSCLKOUT (0x0F)
137#define HWME_LQILIMIT (0x11)
138
139/* TDME attribute IDs */
140#define TDME_CHANNEL (0x00)
141#define TDME_ATM_CONFIG (0x06)
142
143#define MAX_HWME_ATTRIBUTE_SIZE 16
144#define MAX_TDME_ATTRIBUTE_SIZE 2
145
146/* PHY/MAC PIB Attribute Enumerations */
147#define PHY_CURRENT_CHANNEL (0x00)
148#define PHY_TRANSMIT_POWER (0x02)
149#define PHY_CCA_MODE (0x03)
150#define MAC_ASSOCIATION_PERMIT (0x41)
151#define MAC_AUTO_REQUEST (0x42)
152#define MAC_BATT_LIFE_EXT (0x43)
153#define MAC_BATT_LIFE_EXT_PERIODS (0x44)
154#define MAC_BEACON_PAYLOAD (0x45)
155#define MAC_BEACON_PAYLOAD_LENGTH (0x46)
156#define MAC_BEACON_ORDER (0x47)
157#define MAC_GTS_PERMIT (0x4d)
158#define MAC_MAX_CSMA_BACKOFFS (0x4e)
159#define MAC_MIN_BE (0x4f)
160#define MAC_PAN_ID (0x50)
161#define MAC_PROMISCUOUS_MODE (0x51)
162#define MAC_RX_ON_WHEN_IDLE (0x52)
163#define MAC_SHORT_ADDRESS (0x53)
164#define MAC_SUPERFRAME_ORDER (0x54)
165#define MAC_ASSOCIATED_PAN_COORD (0x56)
166#define MAC_MAX_BE (0x57)
167#define MAC_MAX_FRAME_RETRIES (0x59)
168#define MAC_RESPONSE_WAIT_TIME (0x5A)
169#define MAC_SECURITY_ENABLED (0x5D)
170
171#define MAC_AUTO_REQUEST_SECURITY_LEVEL (0x78)
172#define MAC_AUTO_REQUEST_KEY_ID_MODE (0x79)
173
174#define NS_IEEE_ADDRESS (0xFF) /* Non-standard IEEE address */
175
176/* MAC Address Mode Definitions */
177#define MAC_MODE_NO_ADDR (0x00)
178#define MAC_MODE_SHORT_ADDR (0x02)
179#define MAC_MODE_LONG_ADDR (0x03)
180
181/* MAC constants */
182#define MAX_BEACON_OVERHEAD (75)
183#define MAX_BEACON_PAYLOAD_LENGTH (IEEE802154_MTU - MAX_BEACON_OVERHEAD)
184
185#define MAX_ATTRIBUTE_SIZE (122)
186#define MAX_DATA_SIZE (114)
187
188#define CA8210_VALID_CHANNELS (0x07FFF800)
189
190/* MAC workarounds for V1.1 and MPW silicon (V0.x) */
191#define CA8210_MAC_WORKAROUNDS (0)
192#define CA8210_MAC_MPW (0)
193
194/* memory manipulation macros */
195#define LS_BYTE(x) ((u8)((x) & 0xFF))
196#define MS_BYTE(x) ((u8)(((x) >> 8) & 0xFF))
197
198/* message ID codes in SPI commands */
199/* downstream */
200#define MCPS_DATA_REQUEST (0x00)
201#define MLME_ASSOCIATE_REQUEST (0x02)
202#define MLME_ASSOCIATE_RESPONSE (0x03)
203#define MLME_DISASSOCIATE_REQUEST (0x04)
204#define MLME_GET_REQUEST (0x05)
205#define MLME_ORPHAN_RESPONSE (0x06)
206#define MLME_RESET_REQUEST (0x07)
207#define MLME_RX_ENABLE_REQUEST (0x08)
208#define MLME_SCAN_REQUEST (0x09)
209#define MLME_SET_REQUEST (0x0A)
210#define MLME_START_REQUEST (0x0B)
211#define MLME_POLL_REQUEST (0x0D)
212#define HWME_SET_REQUEST (0x0E)
213#define HWME_GET_REQUEST (0x0F)
214#define TDME_SETSFR_REQUEST (0x11)
215#define TDME_GETSFR_REQUEST (0x12)
216#define TDME_SET_REQUEST (0x14)
217/* upstream */
218#define MCPS_DATA_INDICATION (0x00)
219#define MCPS_DATA_CONFIRM (0x01)
220#define MLME_RESET_CONFIRM (0x0A)
221#define MLME_SET_CONFIRM (0x0E)
222#define MLME_START_CONFIRM (0x0F)
223#define HWME_SET_CONFIRM (0x12)
224#define HWME_GET_CONFIRM (0x13)
225#define HWME_WAKEUP_INDICATION (0x15)
226#define TDME_SETSFR_CONFIRM (0x17)
227
228/* SPI command IDs */
229/* bit indicating a confirm or indication from slave to master */
230#define SPI_S2M (0x20)
231/* bit indicating a synchronous message */
232#define SPI_SYN (0x40)
233
234/* SPI command definitions */
235#define SPI_IDLE (0xFF)
236#define SPI_NACK (0xF0)
237
238#define SPI_MCPS_DATA_REQUEST (MCPS_DATA_REQUEST)
239#define SPI_MCPS_DATA_INDICATION (MCPS_DATA_INDICATION + SPI_S2M)
240#define SPI_MCPS_DATA_CONFIRM (MCPS_DATA_CONFIRM + SPI_S2M)
241
242#define SPI_MLME_ASSOCIATE_REQUEST (MLME_ASSOCIATE_REQUEST)
243#define SPI_MLME_RESET_REQUEST (MLME_RESET_REQUEST + SPI_SYN)
244#define SPI_MLME_SET_REQUEST (MLME_SET_REQUEST + SPI_SYN)
245#define SPI_MLME_START_REQUEST (MLME_START_REQUEST + SPI_SYN)
246#define SPI_MLME_RESET_CONFIRM (MLME_RESET_CONFIRM + SPI_S2M + SPI_SYN)
247#define SPI_MLME_SET_CONFIRM (MLME_SET_CONFIRM + SPI_S2M + SPI_SYN)
248#define SPI_MLME_START_CONFIRM (MLME_START_CONFIRM + SPI_S2M + SPI_SYN)
249
250#define SPI_HWME_SET_REQUEST (HWME_SET_REQUEST + SPI_SYN)
251#define SPI_HWME_GET_REQUEST (HWME_GET_REQUEST + SPI_SYN)
252#define SPI_HWME_SET_CONFIRM (HWME_SET_CONFIRM + SPI_S2M + SPI_SYN)
253#define SPI_HWME_GET_CONFIRM (HWME_GET_CONFIRM + SPI_S2M + SPI_SYN)
254#define SPI_HWME_WAKEUP_INDICATION (HWME_WAKEUP_INDICATION + SPI_S2M)
255
256#define SPI_TDME_SETSFR_REQUEST (TDME_SETSFR_REQUEST + SPI_SYN)
257#define SPI_TDME_SET_REQUEST (TDME_SET_REQUEST + SPI_SYN)
258#define SPI_TDME_SETSFR_CONFIRM (TDME_SETSFR_CONFIRM + SPI_S2M + SPI_SYN)
259
260/* TDME SFR addresses */
261/* Page 0 */
262#define CA8210_SFR_PACFG (0xB1)
263#define CA8210_SFR_MACCON (0xD8)
264#define CA8210_SFR_PACFGIB (0xFE)
265/* Page 1 */
266#define CA8210_SFR_LOTXCAL (0xBF)
267#define CA8210_SFR_PTHRH (0xD1)
268#define CA8210_SFR_PRECFG (0xD3)
269#define CA8210_SFR_LNAGX40 (0xE1)
270#define CA8210_SFR_LNAGX41 (0xE2)
271#define CA8210_SFR_LNAGX42 (0xE3)
272#define CA8210_SFR_LNAGX43 (0xE4)
273#define CA8210_SFR_LNAGX44 (0xE5)
274#define CA8210_SFR_LNAGX45 (0xE6)
275#define CA8210_SFR_LNAGX46 (0xE7)
276#define CA8210_SFR_LNAGX47 (0xE9)
277
278#define PACFGIB_DEFAULT_CURRENT (0x3F)
279#define PTHRH_DEFAULT_THRESHOLD (0x5A)
280#define LNAGX40_DEFAULT_GAIN (0x29) /* 10dB */
281#define LNAGX41_DEFAULT_GAIN (0x54) /* 21dB */
282#define LNAGX42_DEFAULT_GAIN (0x6C) /* 27dB */
283#define LNAGX43_DEFAULT_GAIN (0x7A) /* 30dB */
284#define LNAGX44_DEFAULT_GAIN (0x84) /* 33dB */
285#define LNAGX45_DEFAULT_GAIN (0x8B) /* 34dB */
286#define LNAGX46_DEFAULT_GAIN (0x92) /* 36dB */
287#define LNAGX47_DEFAULT_GAIN (0x96) /* 37dB */
288
289#define CA8210_IOCTL_HARD_RESET (0x00)
290
291/* Structs/Enums */
292
293/**
294 * struct cas_control - spi transfer structure
295 * @msg: spi_message for each exchange
296 * @transfer: spi_transfer for each exchange
297 * @tx_buf: source array for transmission
298 * @tx_in_buf: array storing bytes received during transmission
299 * @priv: pointer to private data
300 *
301 * This structure stores all the necessary data passed around during a single
302 * spi exchange.
303 */
304struct cas_control {
305 struct spi_message msg;
306 struct spi_transfer transfer;
307
308 u8 tx_buf[CA8210_SPI_BUF_SIZE];
309 u8 tx_in_buf[CA8210_SPI_BUF_SIZE];
310
311 struct ca8210_priv *priv;
312};
313
314/**
315 * struct ca8210_test - ca8210 test interface structure
316 * @ca8210_dfs_spi_int: pointer to the entry in the debug fs for this device
317 * @up_fifo: fifo for upstream messages
318 *
319 * This structure stores all the data pertaining to the debug interface
320 */
321struct ca8210_test {
322 struct dentry *ca8210_dfs_spi_int;
323 struct kfifo up_fifo;
324 wait_queue_head_t readq;
325};
326
327/**
328 * struct ca8210_priv - ca8210 private data structure
329 * @spi: pointer to the ca8210 spi device object
330 * @hw: pointer to the ca8210 ieee802154_hw object
331 * @hw_registered: true if hw has been registered with ieee802154
332 * @lock: spinlock protecting the private data area
333 * @mlme_workqueue: workqueue for triggering MLME Reset
334 * @irq_workqueue: workqueue for irq processing
335 * @tx_skb: current socket buffer to transmit
336 * @nextmsduhandle: msdu handle to pass to the 15.4 MAC layer for the
337 * next transmission
338 * @clk: external clock provided by the ca8210
339 * @last_dsn: sequence number of last data packet received, for
340 * resend detection
341 * @test: test interface data section for this instance
342 * @async_tx_pending: true if an asynchronous transmission was started and
343 * is not complete
344 * @sync_command_response: pointer to buffer to fill with sync response
345 * @ca8210_is_awake: nonzero if ca8210 is initialised, ready for comms
346 * @sync_down: counts number of downstream synchronous commands
347 * @sync_up: counts number of upstream synchronous commands
348 * @spi_transfer_complete completion object for a single spi_transfer
349 * @sync_exchange_complete completion object for a complete synchronous API
350 * exchange
351 * @promiscuous whether the ca8210 is in promiscuous mode or not
352 * @retries: records how many times the current pending spi
353 * transfer has been retried
354 */
355struct ca8210_priv {
356 struct spi_device *spi;
357 struct ieee802154_hw *hw;
358 bool hw_registered;
359 spinlock_t lock;
360 struct workqueue_struct *mlme_workqueue;
361 struct workqueue_struct *irq_workqueue;
362 struct sk_buff *tx_skb;
363 u8 nextmsduhandle;
364 struct clk *clk;
365 int last_dsn;
366 struct ca8210_test test;
367 bool async_tx_pending;
368 u8 *sync_command_response;
369 struct completion ca8210_is_awake;
370 int sync_down, sync_up;
371 struct completion spi_transfer_complete, sync_exchange_complete;
372 bool promiscuous;
373 int retries;
374};
375
376/**
377 * struct work_priv_container - link between a work object and the relevant
378 * device's private data
379 * @work: work object being executed
380 * @priv: device's private data section
381 *
382 */
383struct work_priv_container {
384 struct work_struct work;
385 struct ca8210_priv *priv;
386};
387
388/**
389 * struct ca8210_platform_data - ca8210 platform data structure
390 * @extclockenable: true if the external clock is to be enabled
391 * @extclockfreq: frequency of the external clock
392 * @extclockgpio: ca8210 output gpio of the external clock
393 * @gpio_reset: gpio number of ca8210 reset line
394 * @gpio_irq: gpio number of ca8210 interrupt line
395 * @irq_id: identifier for the ca8210 irq
396 *
397 */
398struct ca8210_platform_data {
399 bool extclockenable;
400 unsigned int extclockfreq;
401 unsigned int extclockgpio;
402 int gpio_reset;
403 int gpio_irq;
404 int irq_id;
405};
406
407/**
408 * struct fulladdr - full MAC addressing information structure
409 * @mode: address mode (none, short, extended)
410 * @pan_id: 16-bit LE pan id
411 * @address: LE address, variable length as specified by mode
412 *
413 */
414struct fulladdr {
415 u8 mode;
416 u8 pan_id[2];
417 u8 address[8];
418};
419
420/**
421 * union macaddr: generic MAC address container
422 * @short_addr: 16-bit short address
423 * @ieee_address: 64-bit extended address as LE byte array
424 *
425 */
426union macaddr {
427 u16 short_address;
428 u8 ieee_address[8];
429};
430
431/**
432 * struct secspec: security specification for SAP commands
433 * @security_level: 0-7, controls level of authentication & encryption
434 * @key_id_mode: 0-3, specifies how to obtain key
435 * @key_source: extended key retrieval data
436 * @key_index: single-byte key identifier
437 *
438 */
439struct secspec {
440 u8 security_level;
441 u8 key_id_mode;
442 u8 key_source[8];
443 u8 key_index;
444};
445
446/* downlink functions parameter set definitions */
447struct mcps_data_request_pset {
448 u8 src_addr_mode;
449 struct fulladdr dst;
450 u8 msdu_length;
451 u8 msdu_handle;
452 u8 tx_options;
453 u8 msdu[MAX_DATA_SIZE];
454};
455
456struct mlme_set_request_pset {
457 u8 pib_attribute;
458 u8 pib_attribute_index;
459 u8 pib_attribute_length;
460 u8 pib_attribute_value[MAX_ATTRIBUTE_SIZE];
461};
462
463struct hwme_set_request_pset {
464 u8 hw_attribute;
465 u8 hw_attribute_length;
466 u8 hw_attribute_value[MAX_HWME_ATTRIBUTE_SIZE];
467};
468
469struct hwme_get_request_pset {
470 u8 hw_attribute;
471};
472
473struct tdme_setsfr_request_pset {
474 u8 sfr_page;
475 u8 sfr_address;
476 u8 sfr_value;
477};
478
479/* uplink functions parameter set definitions */
480struct hwme_set_confirm_pset {
481 u8 status;
482 u8 hw_attribute;
483};
484
485struct hwme_get_confirm_pset {
486 u8 status;
487 u8 hw_attribute;
488 u8 hw_attribute_length;
489 u8 hw_attribute_value[MAX_HWME_ATTRIBUTE_SIZE];
490};
491
492struct tdme_setsfr_confirm_pset {
493 u8 status;
494 u8 sfr_page;
495 u8 sfr_address;
496};
497
498struct mac_message {
499 u8 command_id;
500 u8 length;
501 union {
502 struct mcps_data_request_pset data_req;
503 struct mlme_set_request_pset set_req;
504 struct hwme_set_request_pset hwme_set_req;
505 struct hwme_get_request_pset hwme_get_req;
506 struct tdme_setsfr_request_pset tdme_set_sfr_req;
507 struct hwme_set_confirm_pset hwme_set_cnf;
508 struct hwme_get_confirm_pset hwme_get_cnf;
509 struct tdme_setsfr_confirm_pset tdme_set_sfr_cnf;
510 u8 u8param;
511 u8 status;
512 u8 payload[148];
513 } pdata;
514};
515
516union pa_cfg_sfr {
517 struct {
518 u8 bias_current_trim : 3;
519 u8 /* reserved */ : 1;
520 u8 buffer_capacitor_trim : 3;
521 u8 boost : 1;
522 };
523 u8 paib;
524};
525
526struct preamble_cfg_sfr {
527 u8 timeout_symbols : 3;
528 u8 acquisition_symbols : 3;
529 u8 search_symbols : 2;
530};
531
532static int (*cascoda_api_upstream)(
533 const u8 *buf,
534 size_t len,
535 void *device_ref
536);
537
538/**
539 * link_to_linux_err() - Translates an 802.15.4 return code into the closest
540 * linux error
541 * @link_status: 802.15.4 status code
542 *
543 * Return: 0 or Linux error code
544 */
545static int link_to_linux_err(int link_status)
546{
547 if (link_status < 0) {
548 /* status is already a Linux code */
549 return link_status;
550 }
551 switch (link_status) {
552 case MAC_SUCCESS:
553 case MAC_REALIGNMENT:
554 return 0;
555 case MAC_IMPROPER_KEY_TYPE:
556 return -EKEYREJECTED;
557 case MAC_IMPROPER_SECURITY_LEVEL:
558 case MAC_UNSUPPORTED_LEGACY:
559 case MAC_DENIED:
560 return -EACCES;
561 case MAC_BEACON_LOST:
562 case MAC_NO_ACK:
563 case MAC_NO_BEACON:
564 return -ENETUNREACH;
565 case MAC_CHANNEL_ACCESS_FAILURE:
566 case MAC_TX_ACTIVE:
567 case MAC_SCAN_IN_PROGRESS:
568 return -EBUSY;
569 case MAC_DISABLE_TRX_FAILURE:
570 case MAC_OUT_OF_CAP:
571 return -EAGAIN;
572 case MAC_FRAME_TOO_LONG:
573 return -EMSGSIZE;
574 case MAC_INVALID_GTS:
575 case MAC_PAST_TIME:
576 return -EBADSLT;
577 case MAC_INVALID_HANDLE:
578 return -EBADMSG;
579 case MAC_INVALID_PARAMETER:
580 case MAC_UNSUPPORTED_ATTRIBUTE:
581 case MAC_ON_TIME_TOO_LONG:
582 case MAC_INVALID_INDEX:
583 return -EINVAL;
584 case MAC_NO_DATA:
585 return -ENODATA;
586 case MAC_NO_SHORT_ADDRESS:
587 return -EFAULT;
588 case MAC_PAN_ID_CONFLICT:
589 return -EADDRINUSE;
590 case MAC_TRANSACTION_EXPIRED:
591 return -ETIME;
592 case MAC_TRANSACTION_OVERFLOW:
593 return -ENOBUFS;
594 case MAC_UNAVAILABLE_KEY:
595 return -ENOKEY;
596 case MAC_INVALID_ADDRESS:
597 return -ENXIO;
598 case MAC_TRACKING_OFF:
599 case MAC_SUPERFRAME_OVERLAP:
600 return -EREMOTEIO;
601 case MAC_LIMIT_REACHED:
602 return -EDQUOT;
603 case MAC_READ_ONLY:
604 return -EROFS;
605 default:
606 return -EPROTO;
607 }
608}
609
610/**
611 * ca8210_test_int_driver_write() - Writes a message to the test interface to be
612 * read by the userspace
613 * @buf: Buffer containing upstream message
614 * @len: length of message to write
615 * @spi: SPI device of message originator
616 *
617 * Return: 0 or linux error code
618 */
619static int ca8210_test_int_driver_write(
620 const u8 *buf,
621 size_t len,
622 void *spi
623)
624{
625 struct ca8210_priv *priv = spi_get_drvdata(spi);
626 struct ca8210_test *test = &priv->test;
627 char *fifo_buffer;
628 int i;
629
630 dev_dbg(
631 &priv->spi->dev,
632 "test_interface: Buffering upstream message:\n"
633 );
634 for (i = 0; i < len; i++)
635 dev_dbg(&priv->spi->dev, "%#03x\n", buf[i]);
636
637 fifo_buffer = kmalloc(len, GFP_KERNEL);
Colin Ian King941825e2017-03-29 18:05:40 +0100638 if (!fifo_buffer)
639 return -ENOMEM;
Harry Morrisded845a2017-03-28 13:08:58 +0100640 memcpy(fifo_buffer, buf, len);
641 kfifo_in(&test->up_fifo, &fifo_buffer, 4);
642 wake_up_interruptible(&priv->test.readq);
643
644 return 0;
645}
646
647/* SPI Operation */
648
649static int ca8210_net_rx(
650 struct ieee802154_hw *hw,
651 u8 *command,
652 size_t len
653);
654static u8 mlme_reset_request_sync(
655 u8 set_default_pib,
656 void *device_ref
657);
658static int ca8210_spi_transfer(
659 struct spi_device *spi,
660 const u8 *buf,
661 size_t len
662);
663
664/**
665 * ca8210_reset_send() - Hard resets the ca8210 for a given time
666 * @spi: Pointer to target ca8210 spi device
667 * @ms: Milliseconds to hold the reset line low for
668 */
669static void ca8210_reset_send(struct spi_device *spi, unsigned int ms)
670{
671 struct ca8210_platform_data *pdata = spi->dev.platform_data;
672 struct ca8210_priv *priv = spi_get_drvdata(spi);
673 long status;
674
675 gpio_set_value(pdata->gpio_reset, 0);
676 reinit_completion(&priv->ca8210_is_awake);
677 msleep(ms);
678 gpio_set_value(pdata->gpio_reset, 1);
679 priv->promiscuous = false;
680
681 /* Wait until wakeup indication seen */
682 status = wait_for_completion_interruptible_timeout(
683 &priv->ca8210_is_awake,
684 msecs_to_jiffies(CA8210_SYNC_TIMEOUT)
685 );
686 if (status == 0) {
687 dev_crit(
688 &spi->dev,
689 "Fatal: No wakeup from ca8210 after reset!\n"
690 );
691 }
692
693 dev_dbg(&spi->dev, "Reset the device\n");
694}
695
696/**
697 * ca8210_mlme_reset_worker() - Resets the MLME, Called when the MAC OVERFLOW
698 * condition happens.
699 * @work: Pointer to work being executed
700 */
701static void ca8210_mlme_reset_worker(struct work_struct *work)
702{
703 struct work_priv_container *wpc = container_of(
704 work,
705 struct work_priv_container,
706 work
707 );
708 struct ca8210_priv *priv = wpc->priv;
709
710 mlme_reset_request_sync(0, priv->spi);
711 kfree(wpc);
712}
713
714/**
715 * ca8210_rx_done() - Calls various message dispatches responding to a received
716 * command
717 * @arg: Pointer to the cas_control object for the relevant spi transfer
718 *
719 * Presents a received SAP command from the ca8210 to the Cascoda EVBME, test
720 * interface and network driver.
721 */
722static void ca8210_rx_done(struct cas_control *cas_ctl)
723{
724 u8 *buf;
725 u8 len;
726 struct work_priv_container *mlme_reset_wpc;
727 struct ca8210_priv *priv = cas_ctl->priv;
728
729 buf = cas_ctl->tx_in_buf;
730 len = buf[1] + 2;
731 if (len > CA8210_SPI_BUF_SIZE) {
732 dev_crit(
733 &priv->spi->dev,
734 "Received packet len (%d) erroneously long\n",
735 len
736 );
737 goto finish;
738 }
739
740 if (buf[0] & SPI_SYN) {
741 if (priv->sync_command_response) {
742 memcpy(priv->sync_command_response, buf, len);
743 complete(&priv->sync_exchange_complete);
744 } else {
745 if (cascoda_api_upstream)
746 cascoda_api_upstream(buf, len, priv->spi);
747 priv->sync_up++;
748 }
749 } else {
750 if (cascoda_api_upstream)
751 cascoda_api_upstream(buf, len, priv->spi);
752 }
753
754 ca8210_net_rx(priv->hw, buf, len);
755 if (buf[0] == SPI_MCPS_DATA_CONFIRM) {
756 if (buf[3] == MAC_TRANSACTION_OVERFLOW) {
757 dev_info(
758 &priv->spi->dev,
759 "Waiting for transaction overflow to stabilise...\n");
760 msleep(2000);
761 dev_info(
762 &priv->spi->dev,
763 "Resetting MAC...\n");
764
Colin Ian King941825e2017-03-29 18:05:40 +0100765 mlme_reset_wpc = kmalloc(sizeof(*mlme_reset_wpc),
766 GFP_KERNEL);
767 if (!mlme_reset_wpc)
768 goto finish;
Harry Morrisded845a2017-03-28 13:08:58 +0100769 INIT_WORK(
770 &mlme_reset_wpc->work,
771 ca8210_mlme_reset_worker
772 );
773 mlme_reset_wpc->priv = priv;
774 queue_work(priv->mlme_workqueue, &mlme_reset_wpc->work);
775 }
776 } else if (buf[0] == SPI_HWME_WAKEUP_INDICATION) {
777 dev_notice(
778 &priv->spi->dev,
779 "Wakeup indication received, reason:\n"
780 );
781 switch (buf[2]) {
782 case 0:
783 dev_notice(
784 &priv->spi->dev,
785 "Transceiver woken up from Power Up / System Reset\n"
786 );
787 break;
788 case 1:
789 dev_notice(
790 &priv->spi->dev,
791 "Watchdog Timer Time-Out\n"
792 );
793 break;
794 case 2:
795 dev_notice(
796 &priv->spi->dev,
797 "Transceiver woken up from Power-Off by Sleep Timer Time-Out\n");
798 break;
799 case 3:
800 dev_notice(
801 &priv->spi->dev,
802 "Transceiver woken up from Power-Off by GPIO Activity\n"
803 );
804 break;
805 case 4:
806 dev_notice(
807 &priv->spi->dev,
808 "Transceiver woken up from Standby by Sleep Timer Time-Out\n"
809 );
810 break;
811 case 5:
812 dev_notice(
813 &priv->spi->dev,
814 "Transceiver woken up from Standby by GPIO Activity\n"
815 );
816 break;
817 case 6:
818 dev_notice(
819 &priv->spi->dev,
820 "Sleep-Timer Time-Out in Active Mode\n"
821 );
822 break;
823 default:
824 dev_warn(&priv->spi->dev, "Wakeup reason unknown\n");
825 break;
826 }
827 complete(&priv->ca8210_is_awake);
828 }
829
830finish:;
831}
832
833static int ca8210_remove(struct spi_device *spi_device);
834
835/**
836 * ca8210_spi_transfer_complete() - Called when a single spi transfer has
837 * completed
838 * @context: Pointer to the cas_control object for the finished transfer
839 */
840static void ca8210_spi_transfer_complete(void *context)
841{
842 struct cas_control *cas_ctl = context;
843 struct ca8210_priv *priv = cas_ctl->priv;
844 bool duplex_rx = false;
845 int i;
846 u8 retry_buffer[CA8210_SPI_BUF_SIZE];
847
848 if (
849 cas_ctl->tx_in_buf[0] == SPI_NACK ||
850 (cas_ctl->tx_in_buf[0] == SPI_IDLE &&
851 cas_ctl->tx_in_buf[1] == SPI_NACK)
852 ) {
853 /* ca8210 is busy */
854 dev_info(&priv->spi->dev, "ca8210 was busy during attempted write\n");
855 if (cas_ctl->tx_buf[0] == SPI_IDLE) {
856 dev_warn(
857 &priv->spi->dev,
858 "IRQ servicing NACKd, dropping transfer\n"
859 );
860 kfree(cas_ctl);
861 return;
862 }
863 if (priv->retries > 3) {
864 dev_err(&priv->spi->dev, "too many retries!\n");
865 kfree(cas_ctl);
866 ca8210_remove(priv->spi);
867 return;
868 }
869 memcpy(retry_buffer, cas_ctl->tx_buf, CA8210_SPI_BUF_SIZE);
870 kfree(cas_ctl);
871 ca8210_spi_transfer(
872 priv->spi,
873 retry_buffer,
874 CA8210_SPI_BUF_SIZE
875 );
876 priv->retries++;
877 dev_info(&priv->spi->dev, "retried spi write\n");
878 return;
879 } else if (
880 cas_ctl->tx_in_buf[0] != SPI_IDLE &&
881 cas_ctl->tx_in_buf[0] != SPI_NACK
882 ) {
883 duplex_rx = true;
884 }
885
886 if (duplex_rx) {
887 dev_dbg(&priv->spi->dev, "READ CMD DURING TX\n");
888 for (i = 0; i < cas_ctl->tx_in_buf[1] + 2; i++)
889 dev_dbg(
890 &priv->spi->dev,
891 "%#03x\n",
892 cas_ctl->tx_in_buf[i]
893 );
894 ca8210_rx_done(cas_ctl);
895 }
896 complete(&priv->spi_transfer_complete);
897 kfree(cas_ctl);
898 priv->retries = 0;
899}
900
901/**
902 * ca8210_spi_transfer() - Initiate duplex spi transfer with ca8210
903 * @spi: Pointer to spi device for transfer
904 * @buf: Octet array to send
905 * @len: length of the buffer being sent
906 *
907 * Return: 0 or linux error code
908 */
909static int ca8210_spi_transfer(
910 struct spi_device *spi,
911 const u8 *buf,
912 size_t len
913)
914{
915 int i, status = 0;
Gustavo A. R. Silva7dab5462017-05-23 13:11:47 -0500916 struct ca8210_priv *priv;
Harry Morrisded845a2017-03-28 13:08:58 +0100917 struct cas_control *cas_ctl;
918
919 if (!spi) {
920 dev_crit(
921 &spi->dev,
922 "NULL spi device passed to ca8210_spi_transfer\n"
923 );
924 return -ENODEV;
925 }
926
Gustavo A. R. Silva7dab5462017-05-23 13:11:47 -0500927 priv = spi_get_drvdata(spi);
Harry Morrisded845a2017-03-28 13:08:58 +0100928 reinit_completion(&priv->spi_transfer_complete);
929
930 dev_dbg(&spi->dev, "ca8210_spi_transfer called\n");
931
Colin Ian King941825e2017-03-29 18:05:40 +0100932 cas_ctl = kmalloc(sizeof(*cas_ctl), GFP_ATOMIC);
933 if (!cas_ctl)
934 return -ENOMEM;
935
Harry Morrisded845a2017-03-28 13:08:58 +0100936 cas_ctl->priv = priv;
937 memset(cas_ctl->tx_buf, SPI_IDLE, CA8210_SPI_BUF_SIZE);
938 memset(cas_ctl->tx_in_buf, SPI_IDLE, CA8210_SPI_BUF_SIZE);
939 memcpy(cas_ctl->tx_buf, buf, len);
940
941 for (i = 0; i < len; i++)
942 dev_dbg(&spi->dev, "%#03x\n", cas_ctl->tx_buf[i]);
943
944 spi_message_init(&cas_ctl->msg);
945
946 cas_ctl->transfer.tx_nbits = 1; /* 1 MOSI line */
947 cas_ctl->transfer.rx_nbits = 1; /* 1 MISO line */
948 cas_ctl->transfer.speed_hz = 0; /* Use device setting */
949 cas_ctl->transfer.bits_per_word = 0; /* Use device setting */
950 cas_ctl->transfer.tx_buf = cas_ctl->tx_buf;
951 cas_ctl->transfer.rx_buf = cas_ctl->tx_in_buf;
952 cas_ctl->transfer.delay_usecs = 0;
953 cas_ctl->transfer.cs_change = 0;
954 cas_ctl->transfer.len = sizeof(struct mac_message);
955 cas_ctl->msg.complete = ca8210_spi_transfer_complete;
956 cas_ctl->msg.context = cas_ctl;
957
958 spi_message_add_tail(
959 &cas_ctl->transfer,
960 &cas_ctl->msg
961 );
962
963 status = spi_async(spi, &cas_ctl->msg);
964 if (status < 0) {
965 dev_crit(
966 &spi->dev,
967 "status %d from spi_sync in write\n",
968 status
969 );
970 }
971
972 return status;
973}
974
975/**
976 * ca8210_spi_exchange() - Exchange API/SAP commands with the radio
977 * @buf: Octet array of command being sent downstream
978 * @len: length of buf
979 * @response: buffer for storing synchronous response
980 * @device_ref: spi_device pointer for ca8210
981 *
982 * Effectively calls ca8210_spi_transfer to write buf[] to the spi, then for
983 * synchronous commands waits for the corresponding response to be read from
984 * the spi before returning. The response is written to the response parameter.
985 *
986 * Return: 0 or linux error code
987 */
988static int ca8210_spi_exchange(
989 const u8 *buf,
990 size_t len,
991 u8 *response,
992 void *device_ref
993)
994{
995 int status = 0;
996 struct spi_device *spi = device_ref;
997 struct ca8210_priv *priv = spi->dev.driver_data;
998 long wait_remaining;
999
1000 if ((buf[0] & SPI_SYN) && response) { /* if sync wait for confirm */
1001 reinit_completion(&priv->sync_exchange_complete);
1002 priv->sync_command_response = response;
1003 }
1004
1005 do {
1006 reinit_completion(&priv->spi_transfer_complete);
1007 status = ca8210_spi_transfer(priv->spi, buf, len);
1008 if (status) {
1009 dev_warn(
1010 &spi->dev,
1011 "spi write failed, returned %d\n",
1012 status
1013 );
1014 if (status == -EBUSY)
1015 continue;
1016 if (((buf[0] & SPI_SYN) && response))
1017 complete(&priv->sync_exchange_complete);
1018 goto cleanup;
1019 }
1020
1021 wait_remaining = wait_for_completion_interruptible_timeout(
1022 &priv->spi_transfer_complete,
1023 msecs_to_jiffies(1000)
1024 );
1025 if (wait_remaining == -ERESTARTSYS) {
1026 status = -ERESTARTSYS;
1027 } else if (wait_remaining == 0) {
1028 dev_err(
1029 &spi->dev,
1030 "SPI downstream transfer timed out!\n"
1031 );
1032 status = -ETIME;
1033 goto cleanup;
1034 }
1035 } while (status < 0);
1036
1037 if (!((buf[0] & SPI_SYN) && response))
1038 goto cleanup;
1039
1040 wait_remaining = wait_for_completion_interruptible_timeout(
1041 &priv->sync_exchange_complete,
1042 msecs_to_jiffies(CA8210_SYNC_TIMEOUT)
1043 );
1044 if (wait_remaining == -ERESTARTSYS) {
1045 status = -ERESTARTSYS;
1046 } else if (wait_remaining == 0) {
1047 dev_err(
1048 &spi->dev,
1049 "Synchronous confirm timeout\n"
1050 );
1051 status = -ETIME;
1052 }
1053
1054cleanup:
1055 priv->sync_command_response = NULL;
1056 return status;
1057}
1058
1059/**
1060 * ca8210_interrupt_handler() - Called when an irq is received from the ca8210
1061 * @irq: Id of the irq being handled
1062 * @dev_id: Pointer passed by the system, pointing to the ca8210's private data
1063 *
1064 * This function is called when the irq line from the ca8210 is asserted,
1065 * signifying that the ca8210 has a message to send upstream to us. Starts the
1066 * asynchronous spi read.
1067 *
1068 * Return: irq return code
1069 */
1070static irqreturn_t ca8210_interrupt_handler(int irq, void *dev_id)
1071{
1072 struct ca8210_priv *priv = dev_id;
1073 int status;
1074
1075 dev_dbg(&priv->spi->dev, "irq: Interrupt occurred\n");
1076 do {
1077 status = ca8210_spi_transfer(priv->spi, NULL, 0);
1078 if (status && (status != -EBUSY)) {
1079 dev_warn(
1080 &priv->spi->dev,
1081 "spi read failed, returned %d\n",
1082 status
1083 );
1084 }
1085 } while (status == -EBUSY);
1086 return IRQ_HANDLED;
1087}
1088
1089static int (*cascoda_api_downstream)(
1090 const u8 *buf,
1091 size_t len,
1092 u8 *response,
1093 void *device_ref
1094) = ca8210_spi_exchange;
1095
1096/* Cascoda API / 15.4 SAP Primitives */
1097
1098/**
1099 * tdme_setsfr_request_sync() - TDME_SETSFR_request/confirm according to API
1100 * @sfr_page: SFR Page
1101 * @sfr_address: SFR Address
1102 * @sfr_value: SFR Value
1103 * @device_ref: Nondescript pointer to target device
1104 *
1105 * Return: 802.15.4 status code of TDME-SETSFR.confirm
1106 */
1107static u8 tdme_setsfr_request_sync(
1108 u8 sfr_page,
1109 u8 sfr_address,
1110 u8 sfr_value,
1111 void *device_ref
1112)
1113{
1114 int ret;
1115 struct mac_message command, response;
1116 struct spi_device *spi = device_ref;
1117
1118 command.command_id = SPI_TDME_SETSFR_REQUEST;
1119 command.length = 3;
1120 command.pdata.tdme_set_sfr_req.sfr_page = sfr_page;
1121 command.pdata.tdme_set_sfr_req.sfr_address = sfr_address;
1122 command.pdata.tdme_set_sfr_req.sfr_value = sfr_value;
1123 response.command_id = SPI_IDLE;
1124 ret = cascoda_api_downstream(
1125 &command.command_id,
1126 command.length + 2,
1127 &response.command_id,
1128 device_ref
1129 );
1130 if (ret) {
1131 dev_crit(&spi->dev, "cascoda_api_downstream returned %d", ret);
1132 return MAC_SYSTEM_ERROR;
1133 }
1134
1135 if (response.command_id != SPI_TDME_SETSFR_CONFIRM) {
1136 dev_crit(
1137 &spi->dev,
1138 "sync response to SPI_TDME_SETSFR_REQUEST was not SPI_TDME_SETSFR_CONFIRM, it was %d\n",
1139 response.command_id
1140 );
1141 return MAC_SYSTEM_ERROR;
1142 }
1143
1144 return response.pdata.tdme_set_sfr_cnf.status;
1145}
1146
1147/**
1148 * tdme_chipinit() - TDME Chip Register Default Initialisation Macro
1149 * @device_ref: Nondescript pointer to target device
1150 *
1151 * Return: 802.15.4 status code of API calls
1152 */
1153static u8 tdme_chipinit(void *device_ref)
1154{
1155 u8 status = MAC_SUCCESS;
1156 u8 sfr_address;
1157 struct spi_device *spi = device_ref;
1158 struct preamble_cfg_sfr pre_cfg_value = {
1159 .timeout_symbols = 3,
1160 .acquisition_symbols = 3,
1161 .search_symbols = 1,
1162 };
1163 /* LNA Gain Settings */
1164 status = tdme_setsfr_request_sync(
1165 1, (sfr_address = CA8210_SFR_LNAGX40),
1166 LNAGX40_DEFAULT_GAIN, device_ref);
1167 if (status)
1168 goto finish;
1169 status = tdme_setsfr_request_sync(
1170 1, (sfr_address = CA8210_SFR_LNAGX41),
1171 LNAGX41_DEFAULT_GAIN, device_ref);
1172 if (status)
1173 goto finish;
1174 status = tdme_setsfr_request_sync(
1175 1, (sfr_address = CA8210_SFR_LNAGX42),
1176 LNAGX42_DEFAULT_GAIN, device_ref);
1177 if (status)
1178 goto finish;
1179 status = tdme_setsfr_request_sync(
1180 1, (sfr_address = CA8210_SFR_LNAGX43),
1181 LNAGX43_DEFAULT_GAIN, device_ref);
1182 if (status)
1183 goto finish;
1184 status = tdme_setsfr_request_sync(
1185 1, (sfr_address = CA8210_SFR_LNAGX44),
1186 LNAGX44_DEFAULT_GAIN, device_ref);
1187 if (status)
1188 goto finish;
1189 status = tdme_setsfr_request_sync(
1190 1, (sfr_address = CA8210_SFR_LNAGX45),
1191 LNAGX45_DEFAULT_GAIN, device_ref);
1192 if (status)
1193 goto finish;
1194 status = tdme_setsfr_request_sync(
1195 1, (sfr_address = CA8210_SFR_LNAGX46),
1196 LNAGX46_DEFAULT_GAIN, device_ref);
1197 if (status)
1198 goto finish;
1199 status = tdme_setsfr_request_sync(
1200 1, (sfr_address = CA8210_SFR_LNAGX47),
1201 LNAGX47_DEFAULT_GAIN, device_ref);
1202 if (status)
1203 goto finish;
1204 /* Preamble Timing Config */
1205 status = tdme_setsfr_request_sync(
1206 1, (sfr_address = CA8210_SFR_PRECFG),
1207 *((u8 *)&pre_cfg_value), device_ref);
1208 if (status)
1209 goto finish;
1210 /* Preamble Threshold High */
1211 status = tdme_setsfr_request_sync(
1212 1, (sfr_address = CA8210_SFR_PTHRH),
1213 PTHRH_DEFAULT_THRESHOLD, device_ref);
1214 if (status)
1215 goto finish;
1216 /* Tx Output Power 8 dBm */
1217 status = tdme_setsfr_request_sync(
1218 0, (sfr_address = CA8210_SFR_PACFGIB),
1219 PACFGIB_DEFAULT_CURRENT, device_ref);
1220 if (status)
1221 goto finish;
1222
1223finish:
1224 if (status != MAC_SUCCESS) {
1225 dev_err(
1226 &spi->dev,
1227 "failed to set sfr at %#03x, status = %#03x\n",
1228 sfr_address,
1229 status
1230 );
1231 }
1232 return status;
1233}
1234
1235/**
1236 * tdme_channelinit() - TDME Channel Register Default Initialisation Macro (Tx)
1237 * @channel: 802.15.4 channel to initialise chip for
1238 * @device_ref: Nondescript pointer to target device
1239 *
1240 * Return: 802.15.4 status code of API calls
1241 */
1242static u8 tdme_channelinit(u8 channel, void *device_ref)
1243{
1244 /* Transceiver front-end local oscillator tx two-point calibration
1245 * value. Tuned for the hardware.
1246 */
1247 u8 txcalval;
1248
1249 if (channel >= 25)
1250 txcalval = 0xA7;
1251 else if (channel >= 23)
1252 txcalval = 0xA8;
1253 else if (channel >= 22)
1254 txcalval = 0xA9;
1255 else if (channel >= 20)
1256 txcalval = 0xAA;
1257 else if (channel >= 17)
1258 txcalval = 0xAB;
1259 else if (channel >= 16)
1260 txcalval = 0xAC;
1261 else if (channel >= 14)
1262 txcalval = 0xAD;
1263 else if (channel >= 12)
1264 txcalval = 0xAE;
1265 else
1266 txcalval = 0xAF;
1267
1268 return tdme_setsfr_request_sync(
1269 1,
1270 CA8210_SFR_LOTXCAL,
1271 txcalval,
1272 device_ref
1273 ); /* LO Tx Cal */
1274}
1275
1276/**
1277 * tdme_checkpibattribute() - Checks Attribute Values that are not checked in
1278 * MAC
1279 * @pib_attribute: Attribute Number
1280 * @pib_attribute_length: Attribute length
1281 * @pib_attribute_value: Pointer to Attribute Value
1282 * @device_ref: Nondescript pointer to target device
1283 *
1284 * Return: 802.15.4 status code of checks
1285 */
1286static u8 tdme_checkpibattribute(
1287 u8 pib_attribute,
1288 u8 pib_attribute_length,
1289 const void *pib_attribute_value
1290)
1291{
1292 u8 status = MAC_SUCCESS;
1293 u8 value;
1294
1295 value = *((u8 *)pib_attribute_value);
1296
1297 switch (pib_attribute) {
1298 /* PHY */
1299 case PHY_TRANSMIT_POWER:
1300 if (value > 0x3F)
1301 status = MAC_INVALID_PARAMETER;
1302 break;
1303 case PHY_CCA_MODE:
1304 if (value > 0x03)
1305 status = MAC_INVALID_PARAMETER;
1306 break;
1307 /* MAC */
1308 case MAC_BATT_LIFE_EXT_PERIODS:
1309 if ((value < 6) || (value > 41))
1310 status = MAC_INVALID_PARAMETER;
1311 break;
1312 case MAC_BEACON_PAYLOAD:
1313 if (pib_attribute_length > MAX_BEACON_PAYLOAD_LENGTH)
1314 status = MAC_INVALID_PARAMETER;
1315 break;
1316 case MAC_BEACON_PAYLOAD_LENGTH:
1317 if (value > MAX_BEACON_PAYLOAD_LENGTH)
1318 status = MAC_INVALID_PARAMETER;
1319 break;
1320 case MAC_BEACON_ORDER:
1321 if (value > 15)
1322 status = MAC_INVALID_PARAMETER;
1323 break;
1324 case MAC_MAX_BE:
1325 if ((value < 3) || (value > 8))
1326 status = MAC_INVALID_PARAMETER;
1327 break;
1328 case MAC_MAX_CSMA_BACKOFFS:
1329 if (value > 5)
1330 status = MAC_INVALID_PARAMETER;
1331 break;
1332 case MAC_MAX_FRAME_RETRIES:
1333 if (value > 7)
1334 status = MAC_INVALID_PARAMETER;
1335 break;
1336 case MAC_MIN_BE:
1337 if (value > 8)
1338 status = MAC_INVALID_PARAMETER;
1339 break;
1340 case MAC_RESPONSE_WAIT_TIME:
1341 if ((value < 2) || (value > 64))
1342 status = MAC_INVALID_PARAMETER;
1343 break;
1344 case MAC_SUPERFRAME_ORDER:
1345 if (value > 15)
1346 status = MAC_INVALID_PARAMETER;
1347 break;
1348 /* boolean */
1349 case MAC_ASSOCIATED_PAN_COORD:
1350 case MAC_ASSOCIATION_PERMIT:
1351 case MAC_AUTO_REQUEST:
1352 case MAC_BATT_LIFE_EXT:
1353 case MAC_GTS_PERMIT:
1354 case MAC_PROMISCUOUS_MODE:
1355 case MAC_RX_ON_WHEN_IDLE:
1356 case MAC_SECURITY_ENABLED:
1357 if (value > 1)
1358 status = MAC_INVALID_PARAMETER;
1359 break;
1360 /* MAC SEC */
1361 case MAC_AUTO_REQUEST_SECURITY_LEVEL:
1362 if (value > 7)
1363 status = MAC_INVALID_PARAMETER;
1364 break;
1365 case MAC_AUTO_REQUEST_KEY_ID_MODE:
1366 if (value > 3)
1367 status = MAC_INVALID_PARAMETER;
1368 break;
1369 default:
1370 break;
1371 }
1372
1373 return status;
1374}
1375
1376/**
1377 * tdme_settxpower() - Sets the tx power for MLME_SET phyTransmitPower
1378 * @txp: Transmit Power
1379 * @device_ref: Nondescript pointer to target device
1380 *
1381 * Normalised to 802.15.4 Definition (6-bit, signed):
1382 * Bit 7-6: not used
1383 * Bit 5-0: tx power (-32 - +31 dB)
1384 *
1385 * Return: 802.15.4 status code of api calls
1386 */
1387static u8 tdme_settxpower(u8 txp, void *device_ref)
1388{
1389 u8 status;
1390 s8 txp_val;
1391 u8 txp_ext;
1392 union pa_cfg_sfr pa_cfg_val;
1393
1394 /* extend from 6 to 8 bit */
1395 txp_ext = 0x3F & txp;
1396 if (txp_ext & 0x20)
1397 txp_ext += 0xC0;
1398 txp_val = (s8)txp_ext;
1399
1400 if (CA8210_MAC_MPW) {
1401 if (txp_val > 0) {
1402 /* 8 dBm: ptrim = 5, itrim = +3 => +4 dBm */
1403 pa_cfg_val.bias_current_trim = 3;
1404 pa_cfg_val.buffer_capacitor_trim = 5;
1405 pa_cfg_val.boost = 1;
1406 } else {
1407 /* 0 dBm: ptrim = 7, itrim = +3 => -6 dBm */
1408 pa_cfg_val.bias_current_trim = 3;
1409 pa_cfg_val.buffer_capacitor_trim = 7;
1410 pa_cfg_val.boost = 0;
1411 }
1412 /* write PACFG */
1413 status = tdme_setsfr_request_sync(
1414 0,
1415 CA8210_SFR_PACFG,
1416 pa_cfg_val.paib,
1417 device_ref
1418 );
1419 } else {
1420 /* Look-Up Table for Setting Current and Frequency Trim values
1421 * for desired Output Power
1422 */
1423 if (txp_val > 8) {
1424 pa_cfg_val.paib = 0x3F;
1425 } else if (txp_val == 8) {
1426 pa_cfg_val.paib = 0x32;
1427 } else if (txp_val == 7) {
1428 pa_cfg_val.paib = 0x22;
1429 } else if (txp_val == 6) {
1430 pa_cfg_val.paib = 0x18;
1431 } else if (txp_val == 5) {
1432 pa_cfg_val.paib = 0x10;
1433 } else if (txp_val == 4) {
1434 pa_cfg_val.paib = 0x0C;
1435 } else if (txp_val == 3) {
1436 pa_cfg_val.paib = 0x08;
1437 } else if (txp_val == 2) {
1438 pa_cfg_val.paib = 0x05;
1439 } else if (txp_val == 1) {
1440 pa_cfg_val.paib = 0x03;
1441 } else if (txp_val == 0) {
1442 pa_cfg_val.paib = 0x01;
1443 } else { /* < 0 */
1444 pa_cfg_val.paib = 0x00;
1445 }
1446 /* write PACFGIB */
1447 status = tdme_setsfr_request_sync(
1448 0,
1449 CA8210_SFR_PACFGIB,
1450 pa_cfg_val.paib,
1451 device_ref
1452 );
1453 }
1454
1455 return status;
1456}
1457
1458/**
1459 * mcps_data_request() - mcps_data_request (Send Data) according to API Spec
1460 * @src_addr_mode: Source Addressing Mode
1461 * @dst_address_mode: Destination Addressing Mode
1462 * @dst_pan_id: Destination PAN ID
1463 * @dst_addr: Pointer to Destination Address
1464 * @msdu_length: length of Data
1465 * @msdu: Pointer to Data
1466 * @msdu_handle: Handle of Data
1467 * @tx_options: Tx Options Bit Field
1468 * @security: Pointer to Security Structure or NULL
1469 * @device_ref: Nondescript pointer to target device
1470 *
1471 * Return: 802.15.4 status code of action
1472 */
1473static u8 mcps_data_request(
1474 u8 src_addr_mode,
1475 u8 dst_address_mode,
1476 u16 dst_pan_id,
1477 union macaddr *dst_addr,
1478 u8 msdu_length,
1479 u8 *msdu,
1480 u8 msdu_handle,
1481 u8 tx_options,
1482 struct secspec *security,
1483 void *device_ref
1484)
1485{
1486 struct secspec *psec;
1487 struct mac_message command;
1488
1489 command.command_id = SPI_MCPS_DATA_REQUEST;
1490 command.pdata.data_req.src_addr_mode = src_addr_mode;
1491 command.pdata.data_req.dst.mode = dst_address_mode;
1492 if (dst_address_mode != MAC_MODE_NO_ADDR) {
1493 command.pdata.data_req.dst.pan_id[0] = LS_BYTE(dst_pan_id);
1494 command.pdata.data_req.dst.pan_id[1] = MS_BYTE(dst_pan_id);
1495 if (dst_address_mode == MAC_MODE_SHORT_ADDR) {
1496 command.pdata.data_req.dst.address[0] = LS_BYTE(
1497 dst_addr->short_address
1498 );
1499 command.pdata.data_req.dst.address[1] = MS_BYTE(
1500 dst_addr->short_address
1501 );
1502 } else { /* MAC_MODE_LONG_ADDR*/
1503 memcpy(
1504 command.pdata.data_req.dst.address,
1505 dst_addr->ieee_address,
1506 8
1507 );
1508 }
1509 }
1510 command.pdata.data_req.msdu_length = msdu_length;
1511 command.pdata.data_req.msdu_handle = msdu_handle;
1512 command.pdata.data_req.tx_options = tx_options;
1513 memcpy(command.pdata.data_req.msdu, msdu, msdu_length);
1514 psec = (struct secspec *)(command.pdata.data_req.msdu + msdu_length);
1515 command.length = sizeof(struct mcps_data_request_pset) -
1516 MAX_DATA_SIZE + msdu_length;
1517 if (!security || (security->security_level == 0)) {
1518 psec->security_level = 0;
1519 command.length += 1;
1520 } else {
1521 *psec = *security;
1522 command.length += sizeof(struct secspec);
1523 }
1524
1525 if (ca8210_spi_transfer(device_ref, &command.command_id,
1526 command.length + 2))
1527 return MAC_SYSTEM_ERROR;
1528
1529 return MAC_SUCCESS;
1530}
1531
1532/**
1533 * mlme_reset_request_sync() - MLME_RESET_request/confirm according to API Spec
1534 * @set_default_pib: Set defaults in PIB
1535 * @device_ref: Nondescript pointer to target device
1536 *
1537 * Return: 802.15.4 status code of MLME-RESET.confirm
1538 */
1539static u8 mlme_reset_request_sync(
1540 u8 set_default_pib,
1541 void *device_ref
1542)
1543{
1544 u8 status;
1545 struct mac_message command, response;
1546 struct spi_device *spi = device_ref;
1547
1548 command.command_id = SPI_MLME_RESET_REQUEST;
1549 command.length = 1;
1550 command.pdata.u8param = set_default_pib;
1551
1552 if (cascoda_api_downstream(
1553 &command.command_id,
1554 command.length + 2,
1555 &response.command_id,
1556 device_ref)) {
1557 dev_err(&spi->dev, "cascoda_api_downstream failed\n");
1558 return MAC_SYSTEM_ERROR;
1559 }
1560
1561 if (response.command_id != SPI_MLME_RESET_CONFIRM)
1562 return MAC_SYSTEM_ERROR;
1563
1564 status = response.pdata.status;
1565
1566 /* reset COORD Bit for Channel Filtering as Coordinator */
1567 if (CA8210_MAC_WORKAROUNDS && set_default_pib && (!status)) {
1568 status = tdme_setsfr_request_sync(
1569 0,
1570 CA8210_SFR_MACCON,
1571 0,
1572 device_ref
1573 );
1574 }
1575
1576 return status;
1577}
1578
1579/**
1580 * mlme_set_request_sync() - MLME_SET_request/confirm according to API Spec
1581 * @pib_attribute: Attribute Number
1582 * @pib_attribute_index: Index within Attribute if an Array
1583 * @pib_attribute_length: Attribute length
1584 * @pib_attribute_value: Pointer to Attribute Value
1585 * @device_ref: Nondescript pointer to target device
1586 *
1587 * Return: 802.15.4 status code of MLME-SET.confirm
1588 */
1589static u8 mlme_set_request_sync(
1590 u8 pib_attribute,
1591 u8 pib_attribute_index,
1592 u8 pib_attribute_length,
1593 const void *pib_attribute_value,
1594 void *device_ref
1595)
1596{
1597 u8 status;
1598 struct mac_message command, response;
1599
1600 /* pre-check the validity of pib_attribute values that are not checked
1601 * in MAC
1602 */
1603 if (tdme_checkpibattribute(
1604 pib_attribute, pib_attribute_length, pib_attribute_value)) {
1605 return MAC_INVALID_PARAMETER;
1606 }
1607
1608 if (pib_attribute == PHY_CURRENT_CHANNEL) {
1609 status = tdme_channelinit(
1610 *((u8 *)pib_attribute_value),
1611 device_ref
1612 );
1613 if (status)
1614 return status;
1615 }
1616
1617 if (pib_attribute == PHY_TRANSMIT_POWER) {
1618 return tdme_settxpower(
1619 *((u8 *)pib_attribute_value),
1620 device_ref
1621 );
1622 }
1623
1624 command.command_id = SPI_MLME_SET_REQUEST;
1625 command.length = sizeof(struct mlme_set_request_pset) -
1626 MAX_ATTRIBUTE_SIZE + pib_attribute_length;
1627 command.pdata.set_req.pib_attribute = pib_attribute;
1628 command.pdata.set_req.pib_attribute_index = pib_attribute_index;
1629 command.pdata.set_req.pib_attribute_length = pib_attribute_length;
1630 memcpy(
1631 command.pdata.set_req.pib_attribute_value,
1632 pib_attribute_value,
1633 pib_attribute_length
1634 );
1635
1636 if (cascoda_api_downstream(
1637 &command.command_id,
1638 command.length + 2,
1639 &response.command_id,
1640 device_ref)) {
1641 return MAC_SYSTEM_ERROR;
1642 }
1643
1644 if (response.command_id != SPI_MLME_SET_CONFIRM)
1645 return MAC_SYSTEM_ERROR;
1646
1647 return response.pdata.status;
1648}
1649
1650/**
1651 * hwme_set_request_sync() - HWME_SET_request/confirm according to API Spec
1652 * @hw_attribute: Attribute Number
1653 * @hw_attribute_length: Attribute length
1654 * @hw_attribute_value: Pointer to Attribute Value
1655 * @device_ref: Nondescript pointer to target device
1656 *
1657 * Return: 802.15.4 status code of HWME-SET.confirm
1658 */
1659static u8 hwme_set_request_sync(
1660 u8 hw_attribute,
1661 u8 hw_attribute_length,
1662 u8 *hw_attribute_value,
1663 void *device_ref
1664)
1665{
1666 struct mac_message command, response;
1667
1668 command.command_id = SPI_HWME_SET_REQUEST;
1669 command.length = 2 + hw_attribute_length;
1670 command.pdata.hwme_set_req.hw_attribute = hw_attribute;
1671 command.pdata.hwme_set_req.hw_attribute_length = hw_attribute_length;
1672 memcpy(
1673 command.pdata.hwme_set_req.hw_attribute_value,
1674 hw_attribute_value,
1675 hw_attribute_length
1676 );
1677
1678 if (cascoda_api_downstream(
1679 &command.command_id,
1680 command.length + 2,
1681 &response.command_id,
1682 device_ref)) {
1683 return MAC_SYSTEM_ERROR;
1684 }
1685
1686 if (response.command_id != SPI_HWME_SET_CONFIRM)
1687 return MAC_SYSTEM_ERROR;
1688
1689 return response.pdata.hwme_set_cnf.status;
1690}
1691
1692/**
1693 * hwme_get_request_sync() - HWME_GET_request/confirm according to API Spec
1694 * @hw_attribute: Attribute Number
1695 * @hw_attribute_length: Attribute length
1696 * @hw_attribute_value: Pointer to Attribute Value
1697 * @device_ref: Nondescript pointer to target device
1698 *
1699 * Return: 802.15.4 status code of HWME-GET.confirm
1700 */
1701static u8 hwme_get_request_sync(
1702 u8 hw_attribute,
1703 u8 *hw_attribute_length,
1704 u8 *hw_attribute_value,
1705 void *device_ref
1706)
1707{
1708 struct mac_message command, response;
1709
1710 command.command_id = SPI_HWME_GET_REQUEST;
1711 command.length = 1;
1712 command.pdata.hwme_get_req.hw_attribute = hw_attribute;
1713
1714 if (cascoda_api_downstream(
1715 &command.command_id,
1716 command.length + 2,
1717 &response.command_id,
1718 device_ref)) {
1719 return MAC_SYSTEM_ERROR;
1720 }
1721
1722 if (response.command_id != SPI_HWME_GET_CONFIRM)
1723 return MAC_SYSTEM_ERROR;
1724
1725 if (response.pdata.hwme_get_cnf.status == MAC_SUCCESS) {
1726 *hw_attribute_length =
1727 response.pdata.hwme_get_cnf.hw_attribute_length;
1728 memcpy(
1729 hw_attribute_value,
1730 response.pdata.hwme_get_cnf.hw_attribute_value,
1731 *hw_attribute_length
1732 );
1733 }
1734
1735 return response.pdata.hwme_get_cnf.status;
1736}
1737
1738/* Network driver operation */
1739
1740/**
1741 * ca8210_async_xmit_complete() - Called to announce that an asynchronous
1742 * transmission has finished
1743 * @hw: ieee802154_hw of ca8210 that has finished exchange
1744 * @msduhandle: Identifier of transmission that has completed
1745 * @status: Returned 802.15.4 status code of the transmission
1746 *
1747 * Return: 0 or linux error code
1748 */
1749static int ca8210_async_xmit_complete(
1750 struct ieee802154_hw *hw,
1751 u8 msduhandle,
1752 u8 status)
1753{
1754 struct ca8210_priv *priv = hw->priv;
1755
1756 if (priv->nextmsduhandle != msduhandle) {
1757 dev_err(
1758 &priv->spi->dev,
1759 "Unexpected msdu_handle on data confirm, Expected %d, got %d\n",
1760 priv->nextmsduhandle,
1761 msduhandle
1762 );
1763 return -EIO;
1764 }
1765
1766 priv->async_tx_pending = false;
1767 priv->nextmsduhandle++;
1768
1769 if (status) {
1770 dev_err(
1771 &priv->spi->dev,
1772 "Link transmission unsuccessful, status = %d\n",
1773 status
1774 );
1775 if (status != MAC_TRANSACTION_OVERFLOW) {
1776 ieee802154_wake_queue(priv->hw);
1777 return 0;
1778 }
1779 }
1780 ieee802154_xmit_complete(priv->hw, priv->tx_skb, true);
1781
1782 return 0;
1783}
1784
1785/**
1786 * ca8210_skb_rx() - Contructs a properly framed socket buffer from a received
1787 * MCPS_DATA_indication
1788 * @hw: ieee802154_hw that MCPS_DATA_indication was received by
1789 * @len: length of MCPS_DATA_indication
1790 * @data_ind: Octet array of MCPS_DATA_indication
1791 *
1792 * Called by the spi driver whenever a SAP command is received, this function
1793 * will ascertain whether the command is of interest to the network driver and
1794 * take necessary action.
1795 *
1796 * Return: 0 or linux error code
1797 */
1798static int ca8210_skb_rx(
1799 struct ieee802154_hw *hw,
1800 size_t len,
1801 u8 *data_ind
1802)
1803{
1804 struct ieee802154_hdr hdr;
1805 int msdulen;
1806 int hlen;
1807 u8 mpdulinkquality = data_ind[23];
1808 struct sk_buff *skb;
1809 struct ca8210_priv *priv = hw->priv;
1810
1811 /* Allocate mtu size buffer for every rx packet */
1812 skb = dev_alloc_skb(IEEE802154_MTU + sizeof(hdr));
Markus Elfring3a21bf52017-05-22 08:03:17 +02001813 if (!skb)
Harry Morrisded845a2017-03-28 13:08:58 +01001814 return -ENOMEM;
Markus Elfring3a21bf52017-05-22 08:03:17 +02001815
Harry Morrisded845a2017-03-28 13:08:58 +01001816 skb_reserve(skb, sizeof(hdr));
1817
1818 msdulen = data_ind[22]; /* msdu_length */
1819 if (msdulen > IEEE802154_MTU) {
1820 dev_err(
1821 &priv->spi->dev,
1822 "received erroneously large msdu length!\n"
1823 );
1824 kfree_skb(skb);
1825 return -EMSGSIZE;
1826 }
1827 dev_dbg(&priv->spi->dev, "skb buffer length = %d\n", msdulen);
1828
1829 if (priv->promiscuous)
1830 goto copy_payload;
1831
1832 /* Populate hdr */
1833 hdr.sec.level = data_ind[29 + msdulen];
1834 dev_dbg(&priv->spi->dev, "security level: %#03x\n", hdr.sec.level);
1835 if (hdr.sec.level > 0) {
1836 hdr.sec.key_id_mode = data_ind[30 + msdulen];
1837 memcpy(&hdr.sec.extended_src, &data_ind[31 + msdulen], 8);
1838 hdr.sec.key_id = data_ind[39 + msdulen];
1839 }
1840 hdr.source.mode = data_ind[0];
1841 dev_dbg(&priv->spi->dev, "srcAddrMode: %#03x\n", hdr.source.mode);
1842 hdr.source.pan_id = *(u16 *)&data_ind[1];
1843 dev_dbg(&priv->spi->dev, "srcPanId: %#06x\n", hdr.source.pan_id);
1844 memcpy(&hdr.source.extended_addr, &data_ind[3], 8);
1845 hdr.dest.mode = data_ind[11];
1846 dev_dbg(&priv->spi->dev, "dstAddrMode: %#03x\n", hdr.dest.mode);
1847 hdr.dest.pan_id = *(u16 *)&data_ind[12];
1848 dev_dbg(&priv->spi->dev, "dstPanId: %#06x\n", hdr.dest.pan_id);
1849 memcpy(&hdr.dest.extended_addr, &data_ind[14], 8);
1850
1851 /* Fill in FC implicitly */
1852 hdr.fc.type = 1; /* Data frame */
1853 if (hdr.sec.level)
1854 hdr.fc.security_enabled = 1;
1855 else
1856 hdr.fc.security_enabled = 0;
1857 if (data_ind[1] != data_ind[12] || data_ind[2] != data_ind[13])
1858 hdr.fc.intra_pan = 1;
1859 else
1860 hdr.fc.intra_pan = 0;
1861 hdr.fc.dest_addr_mode = hdr.dest.mode;
1862 hdr.fc.source_addr_mode = hdr.source.mode;
1863
1864 /* Add hdr to front of buffer */
1865 hlen = ieee802154_hdr_push(skb, &hdr);
1866
1867 if (hlen < 0) {
1868 dev_crit(&priv->spi->dev, "failed to push mac hdr onto skb!\n");
1869 kfree_skb(skb);
1870 return hlen;
1871 }
1872
1873 skb_reset_mac_header(skb);
1874 skb->mac_len = hlen;
1875
1876copy_payload:
1877 /* Add <msdulen> bytes of space to the back of the buffer */
1878 /* Copy msdu to skb */
Johannes Berg59ae1d12017-06-16 14:29:20 +02001879 skb_put_data(skb, &data_ind[29], msdulen);
Harry Morrisded845a2017-03-28 13:08:58 +01001880
1881 ieee802154_rx_irqsafe(hw, skb, mpdulinkquality);
1882 return 0;
1883}
1884
1885/**
1886 * ca8210_net_rx() - Acts upon received SAP commands relevant to the network
1887 * driver
1888 * @hw: ieee802154_hw that command was received by
1889 * @command: Octet array of received command
1890 * @len: length of the received command
1891 *
1892 * Called by the spi driver whenever a SAP command is received, this function
1893 * will ascertain whether the command is of interest to the network driver and
1894 * take necessary action.
1895 *
1896 * Return: 0 or linux error code
1897 */
1898static int ca8210_net_rx(struct ieee802154_hw *hw, u8 *command, size_t len)
1899{
1900 struct ca8210_priv *priv = hw->priv;
1901 unsigned long flags;
1902 u8 status;
1903
1904 dev_dbg(&priv->spi->dev, "ca8210_net_rx(), CmdID = %d\n", command[0]);
1905
1906 if (command[0] == SPI_MCPS_DATA_INDICATION) {
1907 /* Received data */
1908 spin_lock_irqsave(&priv->lock, flags);
1909 if (command[26] == priv->last_dsn) {
1910 dev_dbg(
1911 &priv->spi->dev,
1912 "DSN %d resend received, ignoring...\n",
1913 command[26]
1914 );
1915 spin_unlock_irqrestore(&priv->lock, flags);
1916 return 0;
1917 }
1918 priv->last_dsn = command[26];
1919 spin_unlock_irqrestore(&priv->lock, flags);
1920 return ca8210_skb_rx(hw, len - 2, command + 2);
1921 } else if (command[0] == SPI_MCPS_DATA_CONFIRM) {
1922 status = command[3];
1923 if (priv->async_tx_pending) {
1924 return ca8210_async_xmit_complete(
1925 hw,
1926 command[2],
1927 status
1928 );
1929 }
1930 }
1931
1932 return 0;
1933}
1934
1935/**
1936 * ca8210_skb_tx() - Transmits a given socket buffer using the ca8210
1937 * @skb: Socket buffer to transmit
1938 * @msduhandle: Data identifier to pass to the 802.15.4 MAC
1939 * @priv: Pointer to private data section of target ca8210
1940 *
1941 * Return: 0 or linux error code
1942 */
1943static int ca8210_skb_tx(
1944 struct sk_buff *skb,
1945 u8 msduhandle,
1946 struct ca8210_priv *priv
1947)
1948{
1949 int status;
1950 struct ieee802154_hdr header = { 0 };
1951 struct secspec secspec;
1952 unsigned int mac_len;
1953
1954 dev_dbg(&priv->spi->dev, "ca8210_skb_tx() called\n");
1955
1956 /* Get addressing info from skb - ieee802154 layer creates a full
1957 * packet
1958 */
1959 mac_len = ieee802154_hdr_peek_addrs(skb, &header);
1960
1961 secspec.security_level = header.sec.level;
1962 secspec.key_id_mode = header.sec.key_id_mode;
1963 if (secspec.key_id_mode == 2)
1964 memcpy(secspec.key_source, &header.sec.short_src, 4);
1965 else if (secspec.key_id_mode == 3)
1966 memcpy(secspec.key_source, &header.sec.extended_src, 8);
1967 secspec.key_index = header.sec.key_id;
1968
1969 /* Pass to Cascoda API */
1970 status = mcps_data_request(
1971 header.source.mode,
1972 header.dest.mode,
1973 header.dest.pan_id,
1974 (union macaddr *)&header.dest.extended_addr,
1975 skb->len - mac_len,
1976 &skb->data[mac_len],
1977 msduhandle,
1978 header.fc.ack_request,
1979 &secspec,
1980 priv->spi
1981 );
1982 return link_to_linux_err(status);
1983}
1984
1985/**
1986 * ca8210_start() - Starts the network driver
1987 * @hw: ieee802154_hw of ca8210 being started
1988 *
1989 * Return: 0 or linux error code
1990 */
1991static int ca8210_start(struct ieee802154_hw *hw)
1992{
1993 int status;
1994 u8 rx_on_when_idle;
1995 u8 lqi_threshold = 0;
1996 struct ca8210_priv *priv = hw->priv;
1997
1998 priv->last_dsn = -1;
1999 /* Turn receiver on when idle for now just to test rx */
2000 rx_on_when_idle = 1;
2001 status = mlme_set_request_sync(
2002 MAC_RX_ON_WHEN_IDLE,
2003 0,
2004 1,
2005 &rx_on_when_idle,
2006 priv->spi
2007 );
2008 if (status) {
2009 dev_crit(
2010 &priv->spi->dev,
2011 "Setting rx_on_when_idle failed, status = %d\n",
2012 status
2013 );
2014 return link_to_linux_err(status);
2015 }
2016 status = hwme_set_request_sync(
2017 HWME_LQILIMIT,
2018 1,
2019 &lqi_threshold,
2020 priv->spi
2021 );
2022 if (status) {
2023 dev_crit(
2024 &priv->spi->dev,
2025 "Setting lqilimit failed, status = %d\n",
2026 status
2027 );
2028 return link_to_linux_err(status);
2029 }
2030
2031 return 0;
2032}
2033
2034/**
2035 * ca8210_stop() - Stops the network driver
2036 * @hw: ieee802154_hw of ca8210 being stopped
2037 *
2038 * Return: 0 or linux error code
2039 */
2040static void ca8210_stop(struct ieee802154_hw *hw)
2041{
2042}
2043
2044/**
2045 * ca8210_xmit_async() - Asynchronously transmits a given socket buffer using
2046 * the ca8210
2047 * @hw: ieee802154_hw of ca8210 to transmit from
2048 * @skb: Socket buffer to transmit
2049 *
2050 * Return: 0 or linux error code
2051 */
2052static int ca8210_xmit_async(struct ieee802154_hw *hw, struct sk_buff *skb)
2053{
2054 struct ca8210_priv *priv = hw->priv;
2055 int status;
2056
2057 dev_dbg(&priv->spi->dev, "calling ca8210_xmit_async()\n");
2058
2059 priv->tx_skb = skb;
2060 priv->async_tx_pending = true;
2061 status = ca8210_skb_tx(skb, priv->nextmsduhandle, priv);
2062 return status;
2063}
2064
2065/**
2066 * ca8210_get_ed() - Returns the measured energy on the current channel at this
2067 * instant in time
2068 * @hw: ieee802154_hw of target ca8210
2069 * @level: Measured Energy Detect level
2070 *
2071 * Return: 0 or linux error code
2072 */
2073static int ca8210_get_ed(struct ieee802154_hw *hw, u8 *level)
2074{
2075 u8 lenvar;
2076 struct ca8210_priv *priv = hw->priv;
2077
2078 return link_to_linux_err(
2079 hwme_get_request_sync(HWME_EDVALUE, &lenvar, level, priv->spi)
2080 );
2081}
2082
2083/**
2084 * ca8210_set_channel() - Sets the current operating 802.15.4 channel of the
2085 * ca8210
2086 * @hw: ieee802154_hw of target ca8210
2087 * @page: Channel page to set
2088 * @channel: Channel number to set
2089 *
2090 * Return: 0 or linux error code
2091 */
2092static int ca8210_set_channel(
2093 struct ieee802154_hw *hw,
2094 u8 page,
2095 u8 channel
2096)
2097{
2098 u8 status;
2099 struct ca8210_priv *priv = hw->priv;
2100
2101 status = mlme_set_request_sync(
2102 PHY_CURRENT_CHANNEL,
2103 0,
2104 1,
2105 &channel,
2106 priv->spi
2107 );
2108 if (status) {
2109 dev_err(
2110 &priv->spi->dev,
2111 "error setting channel, MLME-SET.confirm status = %d\n",
2112 status
2113 );
2114 }
2115 return link_to_linux_err(status);
2116}
2117
2118/**
2119 * ca8210_set_hw_addr_filt() - Sets the address filtering parameters of the
2120 * ca8210
2121 * @hw: ieee802154_hw of target ca8210
2122 * @filt: Filtering parameters
2123 * @changed: Bitmap representing which parameters to change
2124 *
2125 * Effectively just sets the actual addressing information identifying this node
2126 * as all filtering is performed by the ca8210 as detailed in the IEEE 802.15.4
2127 * 2006 specification.
2128 *
2129 * Return: 0 or linux error code
2130 */
2131static int ca8210_set_hw_addr_filt(
2132 struct ieee802154_hw *hw,
2133 struct ieee802154_hw_addr_filt *filt,
2134 unsigned long changed
2135)
2136{
2137 u8 status = 0;
2138 struct ca8210_priv *priv = hw->priv;
2139
2140 if (changed & IEEE802154_AFILT_PANID_CHANGED) {
2141 status = mlme_set_request_sync(
2142 MAC_PAN_ID,
2143 0,
2144 2,
2145 &filt->pan_id, priv->spi
2146 );
2147 if (status) {
2148 dev_err(
2149 &priv->spi->dev,
2150 "error setting pan id, MLME-SET.confirm status = %d",
2151 status
2152 );
2153 return link_to_linux_err(status);
2154 }
2155 }
2156 if (changed & IEEE802154_AFILT_SADDR_CHANGED) {
2157 status = mlme_set_request_sync(
2158 MAC_SHORT_ADDRESS,
2159 0,
2160 2,
2161 &filt->short_addr, priv->spi
2162 );
2163 if (status) {
2164 dev_err(
2165 &priv->spi->dev,
2166 "error setting short address, MLME-SET.confirm status = %d",
2167 status
2168 );
2169 return link_to_linux_err(status);
2170 }
2171 }
2172 if (changed & IEEE802154_AFILT_IEEEADDR_CHANGED) {
2173 status = mlme_set_request_sync(
2174 NS_IEEE_ADDRESS,
2175 0,
2176 8,
2177 &filt->ieee_addr,
2178 priv->spi
2179 );
2180 if (status) {
2181 dev_err(
2182 &priv->spi->dev,
2183 "error setting ieee address, MLME-SET.confirm status = %d",
2184 status
2185 );
2186 return link_to_linux_err(status);
2187 }
2188 }
2189 /* TODO: Should use MLME_START to set coord bit? */
2190 return 0;
2191}
2192
2193/**
2194 * ca8210_set_tx_power() - Sets the transmit power of the ca8210
2195 * @hw: ieee802154_hw of target ca8210
2196 * @mbm: Transmit power in mBm (dBm*100)
2197 *
2198 * Return: 0 or linux error code
2199 */
2200static int ca8210_set_tx_power(struct ieee802154_hw *hw, s32 mbm)
2201{
2202 struct ca8210_priv *priv = hw->priv;
2203
2204 mbm /= 100;
2205 return link_to_linux_err(
2206 mlme_set_request_sync(PHY_TRANSMIT_POWER, 0, 1, &mbm, priv->spi)
2207 );
2208}
2209
2210/**
2211 * ca8210_set_cca_mode() - Sets the clear channel assessment mode of the ca8210
2212 * @hw: ieee802154_hw of target ca8210
2213 * @cca: CCA mode to set
2214 *
2215 * Return: 0 or linux error code
2216 */
2217static int ca8210_set_cca_mode(
2218 struct ieee802154_hw *hw,
2219 const struct wpan_phy_cca *cca
2220)
2221{
2222 u8 status;
2223 u8 cca_mode;
2224 struct ca8210_priv *priv = hw->priv;
2225
2226 cca_mode = cca->mode & 3;
2227 if (cca_mode == 3 && cca->opt == NL802154_CCA_OPT_ENERGY_CARRIER_OR) {
2228 /* cca_mode 0 == CS OR ED, 3 == CS AND ED */
2229 cca_mode = 0;
2230 }
2231 status = mlme_set_request_sync(
2232 PHY_CCA_MODE,
2233 0,
2234 1,
2235 &cca_mode,
2236 priv->spi
2237 );
2238 if (status) {
2239 dev_err(
2240 &priv->spi->dev,
2241 "error setting cca mode, MLME-SET.confirm status = %d",
2242 status
2243 );
2244 }
2245 return link_to_linux_err(status);
2246}
2247
2248/**
2249 * ca8210_set_cca_ed_level() - Sets the CCA ED level of the ca8210
2250 * @hw: ieee802154_hw of target ca8210
2251 * @level: ED level to set (in mbm)
2252 *
2253 * Sets the minimum threshold of measured energy above which the ca8210 will
2254 * back off and retry a transmission.
2255 *
2256 * Return: 0 or linux error code
2257 */
2258static int ca8210_set_cca_ed_level(struct ieee802154_hw *hw, s32 level)
2259{
2260 u8 status;
2261 u8 ed_threshold = (level / 100) * 2 + 256;
2262 struct ca8210_priv *priv = hw->priv;
2263
2264 status = hwme_set_request_sync(
2265 HWME_EDTHRESHOLD,
2266 1,
2267 &ed_threshold,
2268 priv->spi
2269 );
2270 if (status) {
2271 dev_err(
2272 &priv->spi->dev,
2273 "error setting ed threshold, HWME-SET.confirm status = %d",
2274 status
2275 );
2276 }
2277 return link_to_linux_err(status);
2278}
2279
2280/**
2281 * ca8210_set_csma_params() - Sets the CSMA parameters of the ca8210
2282 * @hw: ieee802154_hw of target ca8210
2283 * @min_be: Minimum backoff exponent when backing off a transmission
2284 * @max_be: Maximum backoff exponent when backing off a transmission
2285 * @retries: Number of times to retry after backing off
2286 *
2287 * Return: 0 or linux error code
2288 */
2289static int ca8210_set_csma_params(
2290 struct ieee802154_hw *hw,
2291 u8 min_be,
2292 u8 max_be,
2293 u8 retries
2294)
2295{
2296 u8 status;
2297 struct ca8210_priv *priv = hw->priv;
2298
2299 status = mlme_set_request_sync(MAC_MIN_BE, 0, 1, &min_be, priv->spi);
2300 if (status) {
2301 dev_err(
2302 &priv->spi->dev,
2303 "error setting min be, MLME-SET.confirm status = %d",
2304 status
2305 );
2306 return link_to_linux_err(status);
2307 }
2308 status = mlme_set_request_sync(MAC_MAX_BE, 0, 1, &max_be, priv->spi);
2309 if (status) {
2310 dev_err(
2311 &priv->spi->dev,
2312 "error setting max be, MLME-SET.confirm status = %d",
2313 status
2314 );
2315 return link_to_linux_err(status);
2316 }
2317 status = mlme_set_request_sync(
2318 MAC_MAX_CSMA_BACKOFFS,
2319 0,
2320 1,
2321 &retries,
2322 priv->spi
2323 );
2324 if (status) {
2325 dev_err(
2326 &priv->spi->dev,
2327 "error setting max csma backoffs, MLME-SET.confirm status = %d",
2328 status
2329 );
2330 }
2331 return link_to_linux_err(status);
2332}
2333
2334/**
2335 * ca8210_set_frame_retries() - Sets the maximum frame retries of the ca8210
2336 * @hw: ieee802154_hw of target ca8210
2337 * @retries: Number of retries
2338 *
2339 * Sets the number of times to retry a transmission if no acknowledgment was
2340 * was received from the other end when one was requested.
2341 *
2342 * Return: 0 or linux error code
2343 */
2344static int ca8210_set_frame_retries(struct ieee802154_hw *hw, s8 retries)
2345{
2346 u8 status;
2347 struct ca8210_priv *priv = hw->priv;
2348
2349 status = mlme_set_request_sync(
2350 MAC_MAX_FRAME_RETRIES,
2351 0,
2352 1,
2353 &retries,
2354 priv->spi
2355 );
2356 if (status) {
2357 dev_err(
2358 &priv->spi->dev,
2359 "error setting frame retries, MLME-SET.confirm status = %d",
2360 status
2361 );
2362 }
2363 return link_to_linux_err(status);
2364}
2365
2366static int ca8210_set_promiscuous_mode(struct ieee802154_hw *hw, const bool on)
2367{
2368 u8 status;
2369 struct ca8210_priv *priv = hw->priv;
2370
2371 status = mlme_set_request_sync(
2372 MAC_PROMISCUOUS_MODE,
2373 0,
2374 1,
2375 (const void*)&on,
2376 priv->spi
2377 );
2378 if (status) {
2379 dev_err(
2380 &priv->spi->dev,
2381 "error setting promiscuous mode, MLME-SET.confirm status = %d",
2382 status
2383 );
2384 } else {
2385 priv->promiscuous = on;
2386 }
2387 return link_to_linux_err(status);
2388}
2389
2390static const struct ieee802154_ops ca8210_phy_ops = {
2391 .start = ca8210_start,
2392 .stop = ca8210_stop,
2393 .xmit_async = ca8210_xmit_async,
2394 .ed = ca8210_get_ed,
2395 .set_channel = ca8210_set_channel,
2396 .set_hw_addr_filt = ca8210_set_hw_addr_filt,
2397 .set_txpower = ca8210_set_tx_power,
2398 .set_cca_mode = ca8210_set_cca_mode,
2399 .set_cca_ed_level = ca8210_set_cca_ed_level,
2400 .set_csma_params = ca8210_set_csma_params,
2401 .set_frame_retries = ca8210_set_frame_retries,
2402 .set_promiscuous_mode = ca8210_set_promiscuous_mode
2403};
2404
2405/* Test/EVBME Interface */
2406
2407/**
2408 * ca8210_test_int_open() - Opens the test interface to the userspace
2409 * @inodp: inode representation of file interface
2410 * @filp: file interface
2411 *
2412 * Return: 0 or linux error code
2413 */
2414static int ca8210_test_int_open(struct inode *inodp, struct file *filp)
2415{
2416 struct ca8210_priv *priv = inodp->i_private;
2417
2418 filp->private_data = priv;
2419 return 0;
2420}
2421
2422/**
2423 * ca8210_test_check_upstream() - Checks a command received from the upstream
2424 * testing interface for required action
2425 * @buf: Buffer containing command to check
2426 * @device_ref: Nondescript pointer to target device
2427 *
2428 * Return: 0 or linux error code
2429 */
2430static int ca8210_test_check_upstream(u8 *buf, void *device_ref)
2431{
2432 int ret;
2433 u8 response[CA8210_SPI_BUF_SIZE];
2434
2435 if (buf[0] == SPI_MLME_SET_REQUEST) {
2436 ret = tdme_checkpibattribute(buf[2], buf[4], buf + 5);
2437 if (ret) {
2438 response[0] = SPI_MLME_SET_CONFIRM;
2439 response[1] = 3;
2440 response[2] = MAC_INVALID_PARAMETER;
2441 response[3] = buf[2];
2442 response[4] = buf[3];
2443 if (cascoda_api_upstream)
2444 cascoda_api_upstream(response, 5, device_ref);
2445 return ret;
2446 }
2447 }
2448 if (buf[0] == SPI_MLME_ASSOCIATE_REQUEST) {
2449 return tdme_channelinit(buf[2], device_ref);
2450 } else if (buf[0] == SPI_MLME_START_REQUEST) {
2451 return tdme_channelinit(buf[4], device_ref);
2452 } else if (
2453 (buf[0] == SPI_MLME_SET_REQUEST) &&
2454 (buf[2] == PHY_CURRENT_CHANNEL)
2455 ) {
2456 return tdme_channelinit(buf[5], device_ref);
2457 } else if (
2458 (buf[0] == SPI_TDME_SET_REQUEST) &&
2459 (buf[2] == TDME_CHANNEL)
2460 ) {
2461 return tdme_channelinit(buf[4], device_ref);
2462 } else if (
2463 (CA8210_MAC_WORKAROUNDS) &&
2464 (buf[0] == SPI_MLME_RESET_REQUEST) &&
2465 (buf[2] == 1)
2466 ) {
2467 /* reset COORD Bit for Channel Filtering as Coordinator */
2468 return tdme_setsfr_request_sync(
2469 0,
2470 CA8210_SFR_MACCON,
2471 0,
2472 device_ref
2473 );
2474 }
2475 return 0;
2476} /* End of EVBMECheckSerialCommand() */
2477
2478/**
2479 * ca8210_test_int_user_write() - Called by a process in userspace to send a
2480 * message to the ca8210 drivers
2481 * @filp: file interface
2482 * @in_buf: Buffer containing message to write
2483 * @len: length of message
2484 * @off: file offset
2485 *
2486 * Return: 0 or linux error code
2487 */
2488static ssize_t ca8210_test_int_user_write(
2489 struct file *filp,
2490 const char __user *in_buf,
2491 size_t len,
2492 loff_t *off
2493)
2494{
2495 int ret;
2496 struct ca8210_priv *priv = filp->private_data;
2497 u8 command[CA8210_SPI_BUF_SIZE];
2498
2499 if (len > CA8210_SPI_BUF_SIZE) {
2500 dev_warn(
2501 &priv->spi->dev,
2502 "userspace requested erroneously long write (%zu)\n",
2503 len
2504 );
2505 return -EMSGSIZE;
2506 }
2507
2508 ret = copy_from_user(command, in_buf, len);
2509 if (ret) {
2510 dev_err(
2511 &priv->spi->dev,
2512 "%d bytes could not be copied from userspace\n",
2513 ret
2514 );
2515 return -EIO;
2516 }
2517
2518 ret = ca8210_test_check_upstream(command, priv->spi);
2519 if (ret == 0) {
2520 ret = ca8210_spi_exchange(
2521 command,
2522 command[1] + 2,
2523 NULL,
2524 priv->spi
2525 );
2526 if (ret < 0) {
2527 /* effectively 0 bytes were written successfully */
2528 dev_err(
2529 &priv->spi->dev,
2530 "spi exchange failed\n"
2531 );
2532 return ret;
2533 }
2534 if (command[0] & SPI_SYN)
2535 priv->sync_down++;
2536 }
2537
2538 return len;
2539}
2540
2541/**
2542 * ca8210_test_int_user_read() - Called by a process in userspace to read a
2543 * message from the ca8210 drivers
2544 * @filp: file interface
2545 * @buf: Buffer to write message to
2546 * @len: length of message to read (ignored)
2547 * @offp: file offset
2548 *
2549 * If the O_NONBLOCK flag was set when opening the file then this function will
2550 * not block, i.e. it will return if the fifo is empty. Otherwise the function
2551 * will block, i.e. wait until new data arrives.
2552 *
2553 * Return: number of bytes read
2554 */
2555static ssize_t ca8210_test_int_user_read(
2556 struct file *filp,
2557 char __user *buf,
2558 size_t len,
2559 loff_t *offp
2560)
2561{
2562 int i, cmdlen;
2563 struct ca8210_priv *priv = filp->private_data;
2564 unsigned char *fifo_buffer;
2565 unsigned long bytes_not_copied;
2566
2567 if (filp->f_flags & O_NONBLOCK) {
2568 /* Non-blocking mode */
2569 if (kfifo_is_empty(&priv->test.up_fifo))
2570 return 0;
2571 } else {
2572 /* Blocking mode */
2573 wait_event_interruptible(
2574 priv->test.readq,
2575 !kfifo_is_empty(&priv->test.up_fifo)
2576 );
2577 }
2578
2579 if (kfifo_out(&priv->test.up_fifo, &fifo_buffer, 4) != 4) {
2580 dev_err(
2581 &priv->spi->dev,
2582 "test_interface: Wrong number of elements popped from upstream fifo\n"
2583 );
2584 return 0;
2585 }
2586 cmdlen = fifo_buffer[1];
2587 bytes_not_copied = cmdlen + 2;
2588
2589 bytes_not_copied = copy_to_user(buf, fifo_buffer, bytes_not_copied);
2590 if (bytes_not_copied > 0) {
2591 dev_err(
2592 &priv->spi->dev,
2593 "%lu bytes could not be copied to user space!\n",
2594 bytes_not_copied
2595 );
2596 }
2597
2598 dev_dbg(&priv->spi->dev, "test_interface: Cmd len = %d\n", cmdlen);
2599
2600 dev_dbg(&priv->spi->dev, "test_interface: Read\n");
2601 for (i = 0; i < cmdlen + 2; i++)
2602 dev_dbg(&priv->spi->dev, "%#03x\n", fifo_buffer[i]);
2603
2604 kfree(fifo_buffer);
2605
2606 return cmdlen + 2;
2607}
2608
2609/**
2610 * ca8210_test_int_ioctl() - Called by a process in userspace to enact an
2611 * arbitrary action
2612 * @filp: file interface
2613 * @ioctl_num: which action to enact
2614 * @ioctl_param: arbitrary parameter for the action
2615 *
2616 * Return: status
2617 */
2618static long ca8210_test_int_ioctl(
2619 struct file *filp,
2620 unsigned int ioctl_num,
2621 unsigned long ioctl_param
2622)
2623{
2624 struct ca8210_priv *priv = filp->private_data;
2625
2626 switch (ioctl_num) {
2627 case CA8210_IOCTL_HARD_RESET:
2628 ca8210_reset_send(priv->spi, ioctl_param);
2629 break;
2630 default:
2631 break;
2632 }
2633 return 0;
2634}
2635
2636/**
2637 * ca8210_test_int_poll() - Called by a process in userspace to determine which
2638 * actions are currently possible for the file
2639 * @filp: file interface
2640 * @ptable: poll table
2641 *
2642 * Return: set of poll return flags
2643 */
2644static unsigned int ca8210_test_int_poll(
2645 struct file *filp,
2646 struct poll_table_struct *ptable
2647)
2648{
2649 unsigned int return_flags = 0;
2650 struct ca8210_priv *priv = filp->private_data;
2651
2652 poll_wait(filp, &priv->test.readq, ptable);
2653 if (!kfifo_is_empty(&priv->test.up_fifo))
2654 return_flags |= (POLLIN | POLLRDNORM);
2655 if (wait_event_interruptible(
2656 priv->test.readq,
2657 !kfifo_is_empty(&priv->test.up_fifo))) {
2658 return POLLERR;
2659 }
2660 return return_flags;
2661}
2662
2663static const struct file_operations test_int_fops = {
2664 .read = ca8210_test_int_user_read,
2665 .write = ca8210_test_int_user_write,
2666 .open = ca8210_test_int_open,
2667 .release = NULL,
2668 .unlocked_ioctl = ca8210_test_int_ioctl,
2669 .poll = ca8210_test_int_poll
2670};
2671
2672/* Init/Deinit */
2673
2674/**
2675 * ca8210_get_platform_data() - Populate a ca8210_platform_data object
2676 * @spi_device: Pointer to ca8210 spi device object to get data for
2677 * @pdata: Pointer to ca8210_platform_data object to populate
2678 *
2679 * Return: 0 or linux error code
2680 */
2681static int ca8210_get_platform_data(
2682 struct spi_device *spi_device,
2683 struct ca8210_platform_data *pdata
2684)
2685{
2686 int ret = 0;
2687
2688 if (!spi_device->dev.of_node)
2689 return -EINVAL;
2690
2691 pdata->extclockenable = of_property_read_bool(
2692 spi_device->dev.of_node,
2693 "extclock-enable"
2694 );
2695 if (pdata->extclockenable) {
2696 ret = of_property_read_u32(
2697 spi_device->dev.of_node,
2698 "extclock-freq",
2699 &pdata->extclockfreq
2700 );
2701 if (ret < 0)
2702 return ret;
2703
2704 ret = of_property_read_u32(
2705 spi_device->dev.of_node,
2706 "extclock-gpio",
2707 &pdata->extclockgpio
2708 );
2709 }
2710
2711 return ret;
2712}
2713
2714/**
2715 * ca8210_config_extern_clk() - Configure the external clock provided by the
2716 * ca8210
2717 * @pdata: Pointer to ca8210_platform_data containing clock parameters
2718 * @spi: Pointer to target ca8210 spi device
2719 * @on: True to turn the clock on, false to turn off
2720 *
2721 * The external clock is configured with a frequency and output pin taken from
2722 * the platform data.
2723 *
2724 * Return: 0 or linux error code
2725 */
2726static int ca8210_config_extern_clk(
2727 struct ca8210_platform_data *pdata,
2728 struct spi_device *spi,
2729 bool on
2730)
2731{
2732 u8 clkparam[2];
2733
2734 if (on) {
2735 dev_info(&spi->dev, "Switching external clock on\n");
2736 switch (pdata->extclockfreq) {
2737 case SIXTEEN_MHZ:
2738 clkparam[0] = 1;
2739 break;
2740 case EIGHT_MHZ:
2741 clkparam[0] = 2;
2742 break;
2743 case FOUR_MHZ:
2744 clkparam[0] = 3;
2745 break;
2746 case TWO_MHZ:
2747 clkparam[0] = 4;
2748 break;
2749 case ONE_MHZ:
2750 clkparam[0] = 5;
2751 break;
2752 default:
2753 dev_crit(&spi->dev, "Invalid extclock-freq\n");
2754 return -EINVAL;
2755 }
2756 clkparam[1] = pdata->extclockgpio;
2757 } else {
2758 dev_info(&spi->dev, "Switching external clock off\n");
2759 clkparam[0] = 0; /* off */
2760 clkparam[1] = 0;
2761 }
2762 return link_to_linux_err(
2763 hwme_set_request_sync(HWME_SYSCLKOUT, 2, clkparam, spi)
2764 );
2765}
2766
2767/**
2768 * ca8210_register_ext_clock() - Register ca8210's external clock with kernel
2769 * @spi: Pointer to target ca8210 spi device
2770 *
2771 * Return: 0 or linux error code
2772 */
2773static int ca8210_register_ext_clock(struct spi_device *spi)
2774{
2775 struct device_node *np = spi->dev.of_node;
2776 struct ca8210_priv *priv = spi_get_drvdata(spi);
2777 struct ca8210_platform_data *pdata = spi->dev.platform_data;
2778 int ret = 0;
2779
2780 if (!np)
2781 return -EFAULT;
2782
2783 priv->clk = clk_register_fixed_rate(
2784 &spi->dev,
2785 np->name,
2786 NULL,
2787 0,
2788 pdata->extclockfreq
2789 );
2790
2791 if (IS_ERR(priv->clk)) {
2792 dev_crit(&spi->dev, "Failed to register external clk\n");
2793 return PTR_ERR(priv->clk);
2794 }
2795 ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
2796 if (ret) {
2797 clk_unregister(priv->clk);
2798 dev_crit(
2799 &spi->dev,
2800 "Failed to register external clock as clock provider\n"
2801 );
2802 } else {
2803 dev_info(&spi->dev, "External clock set as clock provider\n");
2804 }
2805
2806 return ret;
2807}
2808
2809/**
2810 * ca8210_unregister_ext_clock() - Unregister ca8210's external clock with
2811 * kernel
2812 * @spi: Pointer to target ca8210 spi device
2813 */
2814static void ca8210_unregister_ext_clock(struct spi_device *spi)
2815{
2816 struct ca8210_priv *priv = spi_get_drvdata(spi);
2817
2818 if (!priv->clk)
2819 return
2820
2821 of_clk_del_provider(spi->dev.of_node);
2822 clk_unregister(priv->clk);
2823 dev_info(&spi->dev, "External clock unregistered\n");
2824}
2825
2826/**
2827 * ca8210_reset_init() - Initialise the reset input to the ca8210
2828 * @spi: Pointer to target ca8210 spi device
2829 *
2830 * Return: 0 or linux error code
2831 */
2832static int ca8210_reset_init(struct spi_device *spi)
2833{
2834 int ret;
2835 struct ca8210_platform_data *pdata = spi->dev.platform_data;
2836
2837 pdata->gpio_reset = of_get_named_gpio(
2838 spi->dev.of_node,
2839 "reset-gpio",
2840 0
2841 );
2842
2843 ret = gpio_direction_output(pdata->gpio_reset, 1);
2844 if (ret < 0) {
2845 dev_crit(
2846 &spi->dev,
2847 "Reset GPIO %d did not set to output mode\n",
2848 pdata->gpio_reset
2849 );
2850 }
2851
2852 return ret;
2853}
2854
2855/**
2856 * ca8210_interrupt_init() - Initialise the irq output from the ca8210
2857 * @spi: Pointer to target ca8210 spi device
2858 *
2859 * Return: 0 or linux error code
2860 */
2861static int ca8210_interrupt_init(struct spi_device *spi)
2862{
2863 int ret;
2864 struct ca8210_platform_data *pdata = spi->dev.platform_data;
2865
2866 pdata->gpio_irq = of_get_named_gpio(
2867 spi->dev.of_node,
2868 "irq-gpio",
2869 0
2870 );
2871
2872 pdata->irq_id = gpio_to_irq(pdata->gpio_irq);
2873 if (pdata->irq_id < 0) {
2874 dev_crit(
2875 &spi->dev,
2876 "Could not get irq for gpio pin %d\n",
2877 pdata->gpio_irq
2878 );
2879 gpio_free(pdata->gpio_irq);
2880 return pdata->irq_id;
2881 }
2882
2883 ret = request_irq(
2884 pdata->irq_id,
2885 ca8210_interrupt_handler,
2886 IRQF_TRIGGER_FALLING,
2887 "ca8210-irq",
2888 spi_get_drvdata(spi)
2889 );
2890 if (ret) {
2891 dev_crit(&spi->dev, "request_irq %d failed\n", pdata->irq_id);
2892 gpio_unexport(pdata->gpio_irq);
2893 gpio_free(pdata->gpio_irq);
2894 }
2895
2896 return ret;
2897}
2898
2899/**
2900 * ca8210_dev_com_init() - Initialise the spi communication component
2901 * @priv: Pointer to private data structure
2902 *
2903 * Return: 0 or linux error code
2904 */
2905static int ca8210_dev_com_init(struct ca8210_priv *priv)
2906{
2907 priv->mlme_workqueue = alloc_ordered_workqueue(
2908 "MLME work queue",
2909 WQ_UNBOUND
2910 );
2911 if (!priv->mlme_workqueue) {
2912 dev_crit(&priv->spi->dev, "alloc of mlme_workqueue failed!\n");
2913 return -ENOMEM;
2914 }
2915
2916 priv->irq_workqueue = alloc_ordered_workqueue(
2917 "ca8210 irq worker",
2918 WQ_UNBOUND
2919 );
2920 if (!priv->irq_workqueue) {
2921 dev_crit(&priv->spi->dev, "alloc of irq_workqueue failed!\n");
2922 return -ENOMEM;
2923 }
2924
2925 return 0;
2926}
2927
2928/**
2929 * ca8210_dev_com_clear() - Deinitialise the spi communication component
2930 * @priv: Pointer to private data structure
2931 */
2932static void ca8210_dev_com_clear(struct ca8210_priv *priv)
2933{
2934 flush_workqueue(priv->mlme_workqueue);
2935 destroy_workqueue(priv->mlme_workqueue);
2936 flush_workqueue(priv->irq_workqueue);
2937 destroy_workqueue(priv->irq_workqueue);
2938}
2939
2940#define CA8210_MAX_TX_POWERS (9)
2941static const s32 ca8210_tx_powers[CA8210_MAX_TX_POWERS] = {
2942 800, 700, 600, 500, 400, 300, 200, 100, 0
2943};
2944
2945#define CA8210_MAX_ED_LEVELS (21)
2946static const s32 ca8210_ed_levels[CA8210_MAX_ED_LEVELS] = {
2947 -10300, -10250, -10200, -10150, -10100, -10050, -10000, -9950, -9900,
2948 -9850, -9800, -9750, -9700, -9650, -9600, -9550, -9500, -9450, -9400,
2949 -9350, -9300
2950};
2951
2952/**
2953 * ca8210_hw_setup() - Populate the ieee802154_hw phy attributes with the
2954 * ca8210's defaults
2955 * @ca8210_hw: Pointer to ieee802154_hw to populate
2956 */
2957static void ca8210_hw_setup(struct ieee802154_hw *ca8210_hw)
2958{
2959 /* Support channels 11-26 */
2960 ca8210_hw->phy->supported.channels[0] = CA8210_VALID_CHANNELS;
2961 ca8210_hw->phy->supported.tx_powers_size = CA8210_MAX_TX_POWERS;
2962 ca8210_hw->phy->supported.tx_powers = ca8210_tx_powers;
2963 ca8210_hw->phy->supported.cca_ed_levels_size = CA8210_MAX_ED_LEVELS;
2964 ca8210_hw->phy->supported.cca_ed_levels = ca8210_ed_levels;
2965 ca8210_hw->phy->current_channel = 18;
2966 ca8210_hw->phy->current_page = 0;
2967 ca8210_hw->phy->transmit_power = 800;
2968 ca8210_hw->phy->cca.mode = NL802154_CCA_ENERGY_CARRIER;
2969 ca8210_hw->phy->cca.opt = NL802154_CCA_OPT_ENERGY_CARRIER_AND;
2970 ca8210_hw->phy->cca_ed_level = -9800;
2971 ca8210_hw->phy->symbol_duration = 16;
2972 ca8210_hw->phy->lifs_period = 40;
2973 ca8210_hw->phy->sifs_period = 12;
2974 ca8210_hw->flags =
2975 IEEE802154_HW_AFILT |
2976 IEEE802154_HW_OMIT_CKSUM |
2977 IEEE802154_HW_FRAME_RETRIES |
2978 IEEE802154_HW_PROMISCUOUS |
2979 IEEE802154_HW_CSMA_PARAMS;
2980 ca8210_hw->phy->flags =
2981 WPAN_PHY_FLAG_TXPOWER |
2982 WPAN_PHY_FLAG_CCA_ED_LEVEL |
2983 WPAN_PHY_FLAG_CCA_MODE;
2984}
2985
2986/**
2987 * ca8210_test_interface_init() - Initialise the test file interface
2988 * @priv: Pointer to private data structure
2989 *
2990 * Provided as an alternative to the standard linux network interface, the test
2991 * interface exposes a file in the filesystem (ca8210_test) that allows
2992 * 802.15.4 SAP Commands and Cascoda EVBME commands to be sent directly to
2993 * the stack.
2994 *
2995 * Return: 0 or linux error code
2996 */
2997static int ca8210_test_interface_init(struct ca8210_priv *priv)
2998{
2999 struct ca8210_test *test = &priv->test;
3000 char node_name[32];
3001
3002 snprintf(
3003 node_name,
3004 sizeof(node_name),
3005 "ca8210@%d_%d",
3006 priv->spi->master->bus_num,
3007 priv->spi->chip_select
3008 );
3009
3010 test->ca8210_dfs_spi_int = debugfs_create_file(
3011 node_name,
3012 0600, /* S_IRUSR | S_IWUSR */
3013 NULL,
3014 priv,
3015 &test_int_fops
3016 );
3017 if (IS_ERR(test->ca8210_dfs_spi_int)) {
3018 dev_err(
3019 &priv->spi->dev,
3020 "Error %ld when creating debugfs node\n",
3021 PTR_ERR(test->ca8210_dfs_spi_int)
3022 );
3023 return PTR_ERR(test->ca8210_dfs_spi_int);
3024 }
3025 debugfs_create_symlink("ca8210", NULL, node_name);
3026 init_waitqueue_head(&test->readq);
3027 return kfifo_alloc(
3028 &test->up_fifo,
3029 CA8210_TEST_INT_FIFO_SIZE,
3030 GFP_KERNEL
3031 );
3032}
3033
3034/**
3035 * ca8210_test_interface_clear() - Deinitialise the test file interface
3036 * @priv: Pointer to private data structure
3037 */
3038static void ca8210_test_interface_clear(struct ca8210_priv *priv)
3039{
3040 struct ca8210_test *test = &priv->test;
3041
3042 if (!IS_ERR(test->ca8210_dfs_spi_int))
3043 debugfs_remove(test->ca8210_dfs_spi_int);
3044 kfifo_free(&test->up_fifo);
3045 dev_info(&priv->spi->dev, "Test interface removed\n");
3046}
3047
3048/**
3049 * ca8210_remove() - Shut down a ca8210 upon being disconnected
3050 * @priv: Pointer to private data structure
3051 *
3052 * Return: 0 or linux error code
3053 */
3054static int ca8210_remove(struct spi_device *spi_device)
3055{
3056 struct ca8210_priv *priv;
3057 struct ca8210_platform_data *pdata;
3058
3059 dev_info(&spi_device->dev, "Removing ca8210\n");
3060
3061 pdata = spi_device->dev.platform_data;
3062 if (pdata) {
3063 if (pdata->extclockenable) {
3064 ca8210_unregister_ext_clock(spi_device);
3065 ca8210_config_extern_clk(pdata, spi_device, 0);
3066 }
3067 free_irq(pdata->irq_id, spi_device->dev.driver_data);
3068 kfree(pdata);
3069 spi_device->dev.platform_data = NULL;
3070 }
3071 /* get spi_device private data */
3072 priv = spi_get_drvdata(spi_device);
3073 if (priv) {
3074 dev_info(
3075 &spi_device->dev,
3076 "sync_down = %d, sync_up = %d\n",
3077 priv->sync_down,
3078 priv->sync_up
3079 );
3080 ca8210_dev_com_clear(spi_device->dev.driver_data);
3081 if (priv->hw) {
3082 if (priv->hw_registered)
3083 ieee802154_unregister_hw(priv->hw);
3084 ieee802154_free_hw(priv->hw);
3085 priv->hw = NULL;
3086 dev_info(
3087 &spi_device->dev,
3088 "Unregistered & freed ieee802154_hw.\n"
3089 );
3090 }
3091 if (IS_ENABLED(CONFIG_IEEE802154_CA8210_DEBUGFS))
3092 ca8210_test_interface_clear(priv);
3093 }
3094
3095 return 0;
3096}
3097
3098/**
3099 * ca8210_probe() - Set up a connected ca8210 upon being detected by the system
3100 * @priv: Pointer to private data structure
3101 *
3102 * Return: 0 or linux error code
3103 */
3104static int ca8210_probe(struct spi_device *spi_device)
3105{
3106 struct ca8210_priv *priv;
3107 struct ieee802154_hw *hw;
3108 struct ca8210_platform_data *pdata;
3109 int ret;
3110
3111 dev_info(&spi_device->dev, "Inserting ca8210\n");
3112
3113 /* allocate ieee802154_hw and private data */
3114 hw = ieee802154_alloc_hw(sizeof(struct ca8210_priv), &ca8210_phy_ops);
3115 if (!hw) {
3116 dev_crit(&spi_device->dev, "ieee802154_alloc_hw failed\n");
3117 ret = -ENOMEM;
3118 goto error;
3119 }
3120
3121 priv = hw->priv;
3122 priv->hw = hw;
3123 priv->spi = spi_device;
3124 hw->parent = &spi_device->dev;
3125 spin_lock_init(&priv->lock);
3126 priv->async_tx_pending = false;
3127 priv->hw_registered = false;
3128 priv->sync_up = 0;
3129 priv->sync_down = 0;
3130 priv->promiscuous = false;
3131 priv->retries = 0;
3132 init_completion(&priv->ca8210_is_awake);
3133 init_completion(&priv->spi_transfer_complete);
3134 init_completion(&priv->sync_exchange_complete);
3135 spi_set_drvdata(priv->spi, priv);
3136 if (IS_ENABLED(CONFIG_IEEE802154_CA8210_DEBUGFS)) {
3137 cascoda_api_upstream = ca8210_test_int_driver_write;
3138 ca8210_test_interface_init(priv);
3139 } else {
3140 cascoda_api_upstream = NULL;
3141 }
3142 ca8210_hw_setup(hw);
3143 ieee802154_random_extended_addr(&hw->phy->perm_extended_addr);
3144
3145 pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
3146 if (!pdata) {
Harry Morrisded845a2017-03-28 13:08:58 +01003147 ret = -ENOMEM;
3148 goto error;
3149 }
3150
3151 ret = ca8210_get_platform_data(priv->spi, pdata);
3152 if (ret) {
3153 dev_crit(&spi_device->dev, "ca8210_get_platform_data failed\n");
3154 goto error;
3155 }
3156 priv->spi->dev.platform_data = pdata;
3157
3158 ret = ca8210_dev_com_init(priv);
3159 if (ret) {
3160 dev_crit(&spi_device->dev, "ca8210_dev_com_init failed\n");
3161 goto error;
3162 }
3163 ret = ca8210_reset_init(priv->spi);
3164 if (ret) {
3165 dev_crit(&spi_device->dev, "ca8210_reset_init failed\n");
3166 goto error;
3167 }
3168
3169 ret = ca8210_interrupt_init(priv->spi);
3170 if (ret) {
3171 dev_crit(&spi_device->dev, "ca8210_interrupt_init failed\n");
3172 goto error;
3173 }
3174
3175 msleep(100);
3176
3177 ca8210_reset_send(priv->spi, 1);
3178
3179 ret = tdme_chipinit(priv->spi);
3180 if (ret) {
3181 dev_crit(&spi_device->dev, "tdme_chipinit failed\n");
3182 goto error;
3183 }
3184
3185 if (pdata->extclockenable) {
3186 ret = ca8210_config_extern_clk(pdata, priv->spi, 1);
3187 if (ret) {
3188 dev_crit(
3189 &spi_device->dev,
3190 "ca8210_config_extern_clk failed\n"
3191 );
3192 goto error;
3193 }
3194 ret = ca8210_register_ext_clock(priv->spi);
3195 if (ret) {
3196 dev_crit(
3197 &spi_device->dev,
3198 "ca8210_register_ext_clock failed\n"
3199 );
3200 goto error;
3201 }
3202 }
3203
3204 ret = ieee802154_register_hw(hw);
3205 if (ret) {
3206 dev_crit(&spi_device->dev, "ieee802154_register_hw failed\n");
3207 goto error;
3208 }
3209 priv->hw_registered = true;
3210
3211 return 0;
3212error:
3213 msleep(100); /* wait for pending spi transfers to complete */
3214 ca8210_remove(spi_device);
3215 return link_to_linux_err(ret);
3216}
3217
3218static const struct of_device_id ca8210_of_ids[] = {
3219 {.compatible = "cascoda,ca8210", },
3220 {},
3221};
3222MODULE_DEVICE_TABLE(of, ca8210_of_ids);
3223
3224static struct spi_driver ca8210_spi_driver = {
3225 .driver = {
3226 .name = DRIVER_NAME,
3227 .owner = THIS_MODULE,
3228 .of_match_table = of_match_ptr(ca8210_of_ids),
3229 },
3230 .probe = ca8210_probe,
3231 .remove = ca8210_remove
3232};
3233
3234module_spi_driver(ca8210_spi_driver);
3235
3236MODULE_AUTHOR("Harry Morris <h.morris@cascoda.com>");
3237MODULE_DESCRIPTION("CA-8210 SoftMAC driver");
3238MODULE_LICENSE("Dual BSD/GPL");
3239MODULE_VERSION("1.0");