2 * Copyright (C) ST-Ericsson AB 2010
3 * Contact: Sjur Brendeland / sjur.brandeland@stericsson.com
4 * Author: Daniel Martensson / Daniel.Martensson@stericsson.com
5 * License terms: GNU General Public License (GPL) version 2.
8 #include <linux/init.h>
9 #include <linux/module.h>
10 #include <linux/device.h>
11 #include <linux/platform_device.h>
12 #include <linux/string.h>
13 #include <linux/workqueue.h>
14 #include <linux/completion.h>
15 #include <linux/list.h>
16 #include <linux/interrupt.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/delay.h>
19 #include <linux/sched.h>
20 #include <linux/debugfs.h>
21 #include <linux/if_arp.h>
22 #include <net/caif/caif_layer.h>
23 #include <net/caif/caif_spi.h>
25 #ifndef CONFIG_CAIF_SPI_SYNC
26 #define FLAVOR "Flavour: Vanilla.\n"
28 #define FLAVOR "Flavour: Master CMD&LEN at start.\n"
29 #endif /* CONFIG_CAIF_SPI_SYNC */
31 MODULE_LICENSE("GPL");
32 MODULE_AUTHOR("Daniel Martensson<daniel.martensson@stericsson.com>");
33 MODULE_DESCRIPTION("CAIF SPI driver");
35 /* Returns the number of padding bytes for alignment. */
36 #define PAD_POW2(x, pow) ((((x)&((pow)-1))==0) ? 0 : (((pow)-((x)&((pow)-1)))))
39 module_param(spi_loop
, bool, S_IRUGO
);
40 MODULE_PARM_DESC(spi_loop
, "SPI running in loopback mode.");
42 /* SPI frame alignment. */
43 module_param(spi_frm_align
, int, S_IRUGO
);
44 MODULE_PARM_DESC(spi_frm_align
, "SPI frame alignment.");
47 * SPI padding options.
48 * Warning: must be a base of 2 (& operation used) and can not be zero !
50 module_param(spi_up_head_align
, int, S_IRUGO
);
51 MODULE_PARM_DESC(spi_up_head_align
, "SPI uplink head alignment.");
53 module_param(spi_up_tail_align
, int, S_IRUGO
);
54 MODULE_PARM_DESC(spi_up_tail_align
, "SPI uplink tail alignment.");
56 module_param(spi_down_head_align
, int, S_IRUGO
);
57 MODULE_PARM_DESC(spi_down_head_align
, "SPI downlink head alignment.");
59 module_param(spi_down_tail_align
, int, S_IRUGO
);
60 MODULE_PARM_DESC(spi_down_tail_align
, "SPI downlink tail alignment.");
63 #define BYTE_HEX_FMT "%02X"
65 #define BYTE_HEX_FMT "%02hhX"
68 #define SPI_MAX_PAYLOAD_SIZE 4096
70 * Threshold values for the SPI packet queue. Flowcontrol will be asserted
71 * when the number of packets exceeds HIGH_WATER_MARK. It will not be
72 * deasserted before the number of packets drops below LOW_WATER_MARK.
74 #define LOW_WATER_MARK 100
75 #define HIGH_WATER_MARK (LOW_WATER_MARK*5)
80 * We sometimes use UML for debugging, but it cannot handle
81 * dma_alloc_coherent so we have to wrap it.
83 static inline void *dma_alloc(dma_addr_t
*daddr
)
85 return kmalloc(SPI_DMA_BUF_LEN
, GFP_KERNEL
);
88 static inline void dma_free(void *cpu_addr
, dma_addr_t handle
)
95 static inline void *dma_alloc(dma_addr_t
*daddr
)
97 return dma_alloc_coherent(NULL
, SPI_DMA_BUF_LEN
, daddr
,
101 static inline void dma_free(void *cpu_addr
, dma_addr_t handle
)
103 dma_free_coherent(NULL
, SPI_DMA_BUF_LEN
, cpu_addr
, handle
);
105 #endif /* CONFIG_UML */
107 #ifdef CONFIG_DEBUG_FS
109 #define DEBUGFS_BUF_SIZE 4096
111 static struct dentry
*dbgfs_root
;
113 static inline void driver_debugfs_create(void)
115 dbgfs_root
= debugfs_create_dir(cfspi_spi_driver
.driver
.name
, NULL
);
118 static inline void driver_debugfs_remove(void)
120 debugfs_remove(dbgfs_root
);
123 static inline void dev_debugfs_rem(struct cfspi
*cfspi
)
125 debugfs_remove(cfspi
->dbgfs_frame
);
126 debugfs_remove(cfspi
->dbgfs_state
);
127 debugfs_remove(cfspi
->dbgfs_dir
);
130 static ssize_t
dbgfs_state(struct file
*file
, char __user
*user_buf
,
131 size_t count
, loff_t
*ppos
)
136 struct cfspi
*cfspi
= file
->private_data
;
138 buf
= kzalloc(DEBUGFS_BUF_SIZE
, GFP_KERNEL
);
142 /* Print out debug information. */
143 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
144 "CAIF SPI debug information:\n");
146 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
), FLAVOR
);
148 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
149 "STATE: %d\n", cfspi
->dbg_state
);
150 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
151 "Previous CMD: 0x%x\n", cfspi
->pcmd
);
152 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
153 "Current CMD: 0x%x\n", cfspi
->cmd
);
154 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
155 "Previous TX len: %d\n", cfspi
->tx_ppck_len
);
156 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
157 "Previous RX len: %d\n", cfspi
->rx_ppck_len
);
158 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
159 "Current TX len: %d\n", cfspi
->tx_cpck_len
);
160 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
161 "Current RX len: %d\n", cfspi
->rx_cpck_len
);
162 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
163 "Next TX len: %d\n", cfspi
->tx_npck_len
);
164 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
165 "Next RX len: %d\n", cfspi
->rx_npck_len
);
167 if (len
> DEBUGFS_BUF_SIZE
)
168 len
= DEBUGFS_BUF_SIZE
;
170 size
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
176 static ssize_t
print_frame(char *buf
, size_t size
, char *frm
,
177 size_t count
, size_t cut
)
181 for (i
= 0; i
< count
; i
++) {
182 len
+= snprintf((buf
+ len
), (size
- len
),
183 "[0x" BYTE_HEX_FMT
"]",
185 if ((i
== cut
) && (count
> (cut
* 2))) {
188 len
+= snprintf((buf
+ len
), (size
- len
),
189 "--- %u bytes skipped ---\n",
190 (int)(count
- (cut
* 2)));
193 if ((!(i
% 10)) && i
) {
194 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
198 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
), "\n");
202 static ssize_t
dbgfs_frame(struct file
*file
, char __user
*user_buf
,
203 size_t count
, loff_t
*ppos
)
210 cfspi
= file
->private_data
;
211 buf
= kzalloc(DEBUGFS_BUF_SIZE
, GFP_KERNEL
);
215 /* Print out debug information. */
216 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
219 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
220 "Tx data (Len: %d):\n", cfspi
->tx_cpck_len
);
222 len
+= print_frame((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
223 cfspi
->xfer
.va_tx
[0],
224 (cfspi
->tx_cpck_len
+ SPI_CMD_SZ
), 100);
226 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
227 "Rx data (Len: %d):\n", cfspi
->rx_cpck_len
);
229 len
+= print_frame((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
231 (cfspi
->rx_cpck_len
+ SPI_CMD_SZ
), 100);
233 size
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
239 static const struct file_operations dbgfs_state_fops
= {
245 static const struct file_operations dbgfs_frame_fops
= {
251 static inline void dev_debugfs_add(struct cfspi
*cfspi
)
253 cfspi
->dbgfs_dir
= debugfs_create_dir(cfspi
->pdev
->name
, dbgfs_root
);
254 cfspi
->dbgfs_state
= debugfs_create_file("state", S_IRUGO
,
255 cfspi
->dbgfs_dir
, cfspi
,
257 cfspi
->dbgfs_frame
= debugfs_create_file("frame", S_IRUGO
,
258 cfspi
->dbgfs_dir
, cfspi
,
262 inline void cfspi_dbg_state(struct cfspi
*cfspi
, int state
)
264 cfspi
->dbg_state
= state
;
268 static inline void driver_debugfs_create(void)
272 static inline void driver_debugfs_remove(void)
276 static inline void dev_debugfs_add(struct cfspi
*cfspi
)
280 static inline void dev_debugfs_rem(struct cfspi
*cfspi
)
284 inline void cfspi_dbg_state(struct cfspi
*cfspi
, int state
)
287 #endif /* CONFIG_DEBUG_FS */
289 static LIST_HEAD(cfspi_list
);
290 static spinlock_t cfspi_list_lock
;
292 /* SPI uplink head alignment. */
293 static ssize_t
show_up_head_align(struct device_driver
*driver
, char *buf
)
295 return sprintf(buf
, "%d\n", spi_up_head_align
);
298 static DRIVER_ATTR(up_head_align
, S_IRUSR
, show_up_head_align
, NULL
);
300 /* SPI uplink tail alignment. */
301 static ssize_t
show_up_tail_align(struct device_driver
*driver
, char *buf
)
303 return sprintf(buf
, "%d\n", spi_up_tail_align
);
306 static DRIVER_ATTR(up_tail_align
, S_IRUSR
, show_up_tail_align
, NULL
);
308 /* SPI downlink head alignment. */
309 static ssize_t
show_down_head_align(struct device_driver
*driver
, char *buf
)
311 return sprintf(buf
, "%d\n", spi_down_head_align
);
314 static DRIVER_ATTR(down_head_align
, S_IRUSR
, show_down_head_align
, NULL
);
316 /* SPI downlink tail alignment. */
317 static ssize_t
show_down_tail_align(struct device_driver
*driver
, char *buf
)
319 return sprintf(buf
, "%d\n", spi_down_tail_align
);
322 static DRIVER_ATTR(down_tail_align
, S_IRUSR
, show_down_tail_align
, NULL
);
324 /* SPI frame alignment. */
325 static ssize_t
show_frame_align(struct device_driver
*driver
, char *buf
)
327 return sprintf(buf
, "%d\n", spi_frm_align
);
330 static DRIVER_ATTR(frame_align
, S_IRUSR
, show_frame_align
, NULL
);
332 int cfspi_xmitfrm(struct cfspi
*cfspi
, u8
*buf
, size_t len
)
337 if (cfspi
->slave
&& !cfspi
->slave_talked
)
338 cfspi
->slave_talked
= true;
342 struct caif_payload_info
*info
;
346 skb
= skb_dequeue(&cfspi
->chead
);
351 * Calculate length of frame including SPI padding.
352 * The payload position is found in the control buffer.
354 info
= (struct caif_payload_info
*)&skb
->cb
;
357 * Compute head offset i.e. number of bytes to add to
358 * get the start of the payload aligned.
360 if (spi_up_head_align
> 1) {
361 spad
= 1 + PAD_POW2((info
->hdr_len
+ 1), spi_up_head_align
);
362 *dst
= (u8
)(spad
- 1);
366 /* Copy in CAIF frame. */
367 skb_copy_bits(skb
, 0, dst
, skb
->len
);
369 cfspi
->ndev
->stats
.tx_packets
++;
370 cfspi
->ndev
->stats
.tx_bytes
+= skb
->len
;
373 * Compute tail offset i.e. number of bytes to add to
374 * get the complete CAIF frame aligned.
376 epad
= PAD_POW2((skb
->len
+ spad
), spi_up_tail_align
);
381 } while ((dst
- buf
) < len
);
386 int cfspi_xmitlen(struct cfspi
*cfspi
)
388 struct sk_buff
*skb
= NULL
;
393 * Decommit previously committed frames.
394 * skb_queue_splice_tail(&cfspi->chead,&cfspi->qhead)
396 while (skb_peek(&cfspi
->chead
)) {
397 skb
= skb_dequeue_tail(&cfspi
->chead
);
398 skb_queue_head(&cfspi
->qhead
, skb
);
402 struct caif_payload_info
*info
= NULL
;
406 skb
= skb_dequeue(&cfspi
->qhead
);
411 * Calculate length of frame including SPI padding.
412 * The payload position is found in the control buffer.
414 info
= (struct caif_payload_info
*)&skb
->cb
;
417 * Compute head offset i.e. number of bytes to add to
418 * get the start of the payload aligned.
420 if (spi_up_head_align
> 1)
421 spad
= 1 + PAD_POW2((info
->hdr_len
+ 1), spi_up_head_align
);
424 * Compute tail offset i.e. number of bytes to add to
425 * get the complete CAIF frame aligned.
427 epad
= PAD_POW2((skb
->len
+ spad
), spi_up_tail_align
);
429 if ((skb
->len
+ spad
+ epad
+ frm_len
) <= CAIF_MAX_SPI_FRAME
) {
430 skb_queue_tail(&cfspi
->chead
, skb
);
432 frm_len
+= skb
->len
+ spad
+ epad
;
434 /* Put back packet. */
435 skb_queue_head(&cfspi
->qhead
, skb
);
438 } while (pkts
<= CAIF_MAX_SPI_PKTS
);
441 * Send flow on if previously sent flow off
442 * and now go below the low water mark
444 if (cfspi
->flow_off_sent
&& cfspi
->qhead
.qlen
< cfspi
->qd_low_mark
&&
445 cfspi
->cfdev
.flowctrl
) {
446 cfspi
->flow_off_sent
= 0;
447 cfspi
->cfdev
.flowctrl(cfspi
->ndev
, 1);
453 static void cfspi_ss_cb(bool assert, struct cfspi_ifc
*ifc
)
455 struct cfspi
*cfspi
= (struct cfspi
*)ifc
->priv
;
458 * The slave device is the master on the link. Interrupts before the
459 * slave has transmitted are considered spurious.
461 if (cfspi
->slave
&& !cfspi
->slave_talked
) {
462 printk(KERN_WARNING
"CFSPI: Spurious SS interrupt.\n");
467 spin_lock(&cfspi
->lock
);
469 set_bit(SPI_SS_ON
, &cfspi
->state
);
470 set_bit(SPI_XFER
, &cfspi
->state
);
472 set_bit(SPI_SS_OFF
, &cfspi
->state
);
475 spin_unlock(&cfspi
->lock
);
477 /* Wake up the xfer thread. */
479 wake_up_interruptible(&cfspi
->wait
);
482 static void cfspi_xfer_done_cb(struct cfspi_ifc
*ifc
)
484 struct cfspi
*cfspi
= (struct cfspi
*)ifc
->priv
;
486 /* Transfer done, complete work queue */
487 complete(&cfspi
->comp
);
490 static int cfspi_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
492 struct cfspi
*cfspi
= NULL
;
497 cfspi
= netdev_priv(dev
);
499 skb_queue_tail(&cfspi
->qhead
, skb
);
501 spin_lock_irqsave(&cfspi
->lock
, flags
);
502 if (!test_and_set_bit(SPI_XFER
, &cfspi
->state
)) {
503 /* Wake up xfer thread. */
504 wake_up_interruptible(&cfspi
->wait
);
506 spin_unlock_irqrestore(&cfspi
->lock
, flags
);
508 /* Send flow off if number of bytes is above high water mark */
509 if (!cfspi
->flow_off_sent
&&
510 cfspi
->qhead
.qlen
> cfspi
->qd_high_mark
&&
511 cfspi
->cfdev
.flowctrl
) {
512 cfspi
->flow_off_sent
= 1;
513 cfspi
->cfdev
.flowctrl(cfspi
->ndev
, 0);
519 int cfspi_rxfrm(struct cfspi
*cfspi
, u8
*buf
, size_t len
)
523 caif_assert(buf
!= NULL
);
527 struct sk_buff
*skb
= NULL
;
534 * Compute head offset i.e. number of bytes added to
535 * get the start of the payload aligned.
537 if (spi_down_head_align
> 1) {
542 /* Read length of CAIF frame (little endian). */
544 pkt_len
|= ((*(src
+1)) << 8) & 0xFF00;
545 pkt_len
+= 2; /* Add FCS fields. */
547 /* Get a suitable caif packet and copy in data. */
549 skb
= netdev_alloc_skb(cfspi
->ndev
, pkt_len
+ 1);
550 caif_assert(skb
!= NULL
);
552 dst
= skb_put(skb
, pkt_len
);
553 memcpy(dst
, src
, pkt_len
);
556 skb
->protocol
= htons(ETH_P_CAIF
);
557 skb_reset_mac_header(skb
);
558 skb
->dev
= cfspi
->ndev
;
561 * Push received packet up the stack.
564 res
= netif_rx_ni(skb
);
566 res
= cfspi_xmit(skb
, cfspi
->ndev
);
569 cfspi
->ndev
->stats
.rx_packets
++;
570 cfspi
->ndev
->stats
.rx_bytes
+= pkt_len
;
572 cfspi
->ndev
->stats
.rx_dropped
++;
575 * Compute tail offset i.e. number of bytes added to
576 * get the complete CAIF frame aligned.
578 epad
= PAD_POW2((pkt_len
+ spad
), spi_down_tail_align
);
580 } while ((src
- buf
) < len
);
585 static int cfspi_open(struct net_device
*dev
)
587 netif_wake_queue(dev
);
591 static int cfspi_close(struct net_device
*dev
)
593 netif_stop_queue(dev
);
597 static int cfspi_init(struct net_device
*dev
)
600 struct cfspi
*cfspi
= netdev_priv(dev
);
603 cfspi
->flow_off_sent
= 0;
604 cfspi
->qd_low_mark
= LOW_WATER_MARK
;
605 cfspi
->qd_high_mark
= HIGH_WATER_MARK
;
607 /* Set slave info. */
608 if (!strncmp(cfspi_spi_driver
.driver
.name
, "cfspi_sspi", 10)) {
610 cfspi
->slave_talked
= false;
612 cfspi
->slave
= false;
613 cfspi
->slave_talked
= false;
616 /* Allocate DMA buffers. */
617 cfspi
->xfer
.va_tx
[0] = dma_alloc(&cfspi
->xfer
.pa_tx
[0]);
618 if (!cfspi
->xfer
.va_tx
[0]) {
620 goto err_dma_alloc_tx_0
;
623 cfspi
->xfer
.va_rx
= dma_alloc(&cfspi
->xfer
.pa_rx
);
625 if (!cfspi
->xfer
.va_rx
) {
627 goto err_dma_alloc_rx
;
630 /* Initialize the work queue. */
631 INIT_WORK(&cfspi
->work
, cfspi_xfer
);
633 /* Initialize spin locks. */
634 spin_lock_init(&cfspi
->lock
);
636 /* Initialize flow control state. */
637 cfspi
->flow_stop
= false;
639 /* Initialize wait queue. */
640 init_waitqueue_head(&cfspi
->wait
);
642 /* Create work thread. */
643 cfspi
->wq
= create_singlethread_workqueue(dev
->name
);
645 printk(KERN_WARNING
"CFSPI: failed to create work queue.\n");
650 /* Initialize work queue. */
651 init_completion(&cfspi
->comp
);
653 /* Create debugfs entries. */
654 dev_debugfs_add(cfspi
);
656 /* Set up the ifc. */
657 cfspi
->ifc
.ss_cb
= cfspi_ss_cb
;
658 cfspi
->ifc
.xfer_done_cb
= cfspi_xfer_done_cb
;
659 cfspi
->ifc
.priv
= cfspi
;
661 /* Add CAIF SPI device to list. */
662 spin_lock(&cfspi_list_lock
);
663 list_add_tail(&cfspi
->list
, &cfspi_list
);
664 spin_unlock(&cfspi_list_lock
);
666 /* Schedule the work queue. */
667 queue_work(cfspi
->wq
, &cfspi
->work
);
672 dma_free(cfspi
->xfer
.va_rx
, cfspi
->xfer
.pa_rx
);
674 dma_free(cfspi
->xfer
.va_tx
[0], cfspi
->xfer
.pa_tx
[0]);
679 static void cfspi_uninit(struct net_device
*dev
)
681 struct cfspi
*cfspi
= netdev_priv(dev
);
683 /* Remove from list. */
684 spin_lock(&cfspi_list_lock
);
685 list_del(&cfspi
->list
);
686 spin_unlock(&cfspi_list_lock
);
689 /* Free DMA buffers. */
690 dma_free(cfspi
->xfer
.va_rx
, cfspi
->xfer
.pa_rx
);
691 dma_free(cfspi
->xfer
.va_tx
[0], cfspi
->xfer
.pa_tx
[0]);
692 set_bit(SPI_TERMINATE
, &cfspi
->state
);
693 wake_up_interruptible(&cfspi
->wait
);
694 destroy_workqueue(cfspi
->wq
);
695 /* Destroy debugfs directory and files. */
696 dev_debugfs_rem(cfspi
);
700 static const struct net_device_ops cfspi_ops
= {
701 .ndo_open
= cfspi_open
,
702 .ndo_stop
= cfspi_close
,
703 .ndo_init
= cfspi_init
,
704 .ndo_uninit
= cfspi_uninit
,
705 .ndo_start_xmit
= cfspi_xmit
708 static void cfspi_setup(struct net_device
*dev
)
710 struct cfspi
*cfspi
= netdev_priv(dev
);
712 dev
->netdev_ops
= &cfspi_ops
;
713 dev
->type
= ARPHRD_CAIF
;
714 dev
->flags
= IFF_NOARP
| IFF_POINTOPOINT
;
715 dev
->tx_queue_len
= 0;
716 dev
->mtu
= SPI_MAX_PAYLOAD_SIZE
;
717 dev
->destructor
= free_netdev
;
718 skb_queue_head_init(&cfspi
->qhead
);
719 skb_queue_head_init(&cfspi
->chead
);
720 cfspi
->cfdev
.link_select
= CAIF_LINK_HIGH_BANDW
;
721 cfspi
->cfdev
.use_frag
= false;
722 cfspi
->cfdev
.use_stx
= false;
723 cfspi
->cfdev
.use_fcs
= false;
727 int cfspi_spi_probe(struct platform_device
*pdev
)
729 struct cfspi
*cfspi
= NULL
;
730 struct net_device
*ndev
;
731 struct cfspi_dev
*dev
;
733 dev
= (struct cfspi_dev
*)pdev
->dev
.platform_data
;
735 ndev
= alloc_netdev(sizeof(struct cfspi
),
736 "cfspi%d", cfspi_setup
);
740 cfspi
= netdev_priv(ndev
);
741 netif_stop_queue(ndev
);
745 /* Assign the SPI device. */
747 /* Assign the device ifc to this SPI interface. */
748 dev
->ifc
= &cfspi
->ifc
;
750 /* Register network device. */
751 res
= register_netdev(ndev
);
753 printk(KERN_ERR
"CFSPI: Reg. error: %d.\n", res
);
764 int cfspi_spi_remove(struct platform_device
*pdev
)
766 /* Everything is done in cfspi_uninit(). */
770 static void __exit
cfspi_exit_module(void)
772 struct list_head
*list_node
;
774 struct cfspi
*cfspi
= NULL
;
776 list_for_each_safe(list_node
, n
, &cfspi_list
) {
777 cfspi
= list_entry(list_node
, struct cfspi
, list
);
778 unregister_netdev(cfspi
->ndev
);
781 /* Destroy sysfs files. */
782 driver_remove_file(&cfspi_spi_driver
.driver
,
783 &driver_attr_up_head_align
);
784 driver_remove_file(&cfspi_spi_driver
.driver
,
785 &driver_attr_up_tail_align
);
786 driver_remove_file(&cfspi_spi_driver
.driver
,
787 &driver_attr_down_head_align
);
788 driver_remove_file(&cfspi_spi_driver
.driver
,
789 &driver_attr_down_tail_align
);
790 driver_remove_file(&cfspi_spi_driver
.driver
, &driver_attr_frame_align
);
791 /* Unregister platform driver. */
792 platform_driver_unregister(&cfspi_spi_driver
);
793 /* Destroy debugfs root directory. */
794 driver_debugfs_remove();
797 static int __init
cfspi_init_module(void)
801 /* Initialize spin lock. */
802 spin_lock_init(&cfspi_list_lock
);
804 /* Register platform driver. */
805 result
= platform_driver_register(&cfspi_spi_driver
);
807 printk(KERN_ERR
"Could not register platform SPI driver.\n");
808 goto err_dev_register
;
811 /* Create sysfs files. */
813 driver_create_file(&cfspi_spi_driver
.driver
,
814 &driver_attr_up_head_align
);
816 printk(KERN_ERR
"Sysfs creation failed 1.\n");
817 goto err_create_up_head_align
;
821 driver_create_file(&cfspi_spi_driver
.driver
,
822 &driver_attr_up_tail_align
);
824 printk(KERN_ERR
"Sysfs creation failed 2.\n");
825 goto err_create_up_tail_align
;
829 driver_create_file(&cfspi_spi_driver
.driver
,
830 &driver_attr_down_head_align
);
832 printk(KERN_ERR
"Sysfs creation failed 3.\n");
833 goto err_create_down_head_align
;
837 driver_create_file(&cfspi_spi_driver
.driver
,
838 &driver_attr_down_tail_align
);
840 printk(KERN_ERR
"Sysfs creation failed 4.\n");
841 goto err_create_down_tail_align
;
845 driver_create_file(&cfspi_spi_driver
.driver
,
846 &driver_attr_frame_align
);
848 printk(KERN_ERR
"Sysfs creation failed 5.\n");
849 goto err_create_frame_align
;
851 driver_debugfs_create();
854 err_create_frame_align
:
855 driver_remove_file(&cfspi_spi_driver
.driver
,
856 &driver_attr_down_tail_align
);
857 err_create_down_tail_align
:
858 driver_remove_file(&cfspi_spi_driver
.driver
,
859 &driver_attr_down_head_align
);
860 err_create_down_head_align
:
861 driver_remove_file(&cfspi_spi_driver
.driver
,
862 &driver_attr_up_tail_align
);
863 err_create_up_tail_align
:
864 driver_remove_file(&cfspi_spi_driver
.driver
,
865 &driver_attr_up_head_align
);
866 err_create_up_head_align
:
871 module_init(cfspi_init_module
);
872 module_exit(cfspi_exit_module
);