2 * Copyright (C) ST-Ericsson AB 2010
3 * Author: Daniel Martensson
4 * License terms: GNU General Public License (GPL) version 2.
7 #include <linux/init.h>
8 #include <linux/module.h>
9 #include <linux/device.h>
10 #include <linux/platform_device.h>
11 #include <linux/string.h>
12 #include <linux/workqueue.h>
13 #include <linux/completion.h>
14 #include <linux/list.h>
15 #include <linux/interrupt.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/delay.h>
18 #include <linux/sched.h>
19 #include <linux/debugfs.h>
20 #include <linux/if_arp.h>
21 #include <net/caif/caif_layer.h>
22 #include <net/caif/caif_spi.h>
24 #ifndef CONFIG_CAIF_SPI_SYNC
25 #define FLAVOR "Flavour: Vanilla.\n"
27 #define FLAVOR "Flavour: Master CMD&LEN at start.\n"
28 #endif /* CONFIG_CAIF_SPI_SYNC */
30 MODULE_LICENSE("GPL");
31 MODULE_AUTHOR("Daniel Martensson");
32 MODULE_DESCRIPTION("CAIF SPI driver");
34 /* Returns the number of padding bytes for alignment. */
35 #define PAD_POW2(x, pow) ((((x)&((pow)-1))==0) ? 0 : (((pow)-((x)&((pow)-1)))))
38 module_param(spi_loop
, bool, S_IRUGO
);
39 MODULE_PARM_DESC(spi_loop
, "SPI running in loopback mode.");
41 /* SPI frame alignment. */
42 module_param(spi_frm_align
, int, S_IRUGO
);
43 MODULE_PARM_DESC(spi_frm_align
, "SPI frame alignment.");
46 * SPI padding options.
47 * Warning: must be a base of 2 (& operation used) and can not be zero !
49 module_param(spi_up_head_align
, int, S_IRUGO
);
50 MODULE_PARM_DESC(spi_up_head_align
, "SPI uplink head alignment.");
52 module_param(spi_up_tail_align
, int, S_IRUGO
);
53 MODULE_PARM_DESC(spi_up_tail_align
, "SPI uplink tail alignment.");
55 module_param(spi_down_head_align
, int, S_IRUGO
);
56 MODULE_PARM_DESC(spi_down_head_align
, "SPI downlink head alignment.");
58 module_param(spi_down_tail_align
, int, S_IRUGO
);
59 MODULE_PARM_DESC(spi_down_tail_align
, "SPI downlink tail alignment.");
62 #define BYTE_HEX_FMT "%02X"
64 #define BYTE_HEX_FMT "%02hhX"
67 #define SPI_MAX_PAYLOAD_SIZE 4096
69 * Threshold values for the SPI packet queue. Flowcontrol will be asserted
70 * when the number of packets exceeds HIGH_WATER_MARK. It will not be
71 * deasserted before the number of packets drops below LOW_WATER_MARK.
73 #define LOW_WATER_MARK 100
74 #define HIGH_WATER_MARK (LOW_WATER_MARK*5)
79 * We sometimes use UML for debugging, but it cannot handle
80 * dma_alloc_coherent so we have to wrap it.
82 static inline void *dma_alloc(dma_addr_t
*daddr
)
84 return kmalloc(SPI_DMA_BUF_LEN
, GFP_KERNEL
);
87 static inline void dma_free(void *cpu_addr
, dma_addr_t handle
)
94 static inline void *dma_alloc(dma_addr_t
*daddr
)
96 return dma_alloc_coherent(NULL
, SPI_DMA_BUF_LEN
, daddr
,
100 static inline void dma_free(void *cpu_addr
, dma_addr_t handle
)
102 dma_free_coherent(NULL
, SPI_DMA_BUF_LEN
, cpu_addr
, handle
);
104 #endif /* CONFIG_UML */
106 #ifdef CONFIG_DEBUG_FS
108 #define DEBUGFS_BUF_SIZE 4096
110 static struct dentry
*dbgfs_root
;
112 static inline void driver_debugfs_create(void)
114 dbgfs_root
= debugfs_create_dir(cfspi_spi_driver
.driver
.name
, NULL
);
117 static inline void driver_debugfs_remove(void)
119 debugfs_remove(dbgfs_root
);
122 static inline void dev_debugfs_rem(struct cfspi
*cfspi
)
124 debugfs_remove(cfspi
->dbgfs_frame
);
125 debugfs_remove(cfspi
->dbgfs_state
);
126 debugfs_remove(cfspi
->dbgfs_dir
);
129 static ssize_t
dbgfs_state(struct file
*file
, char __user
*user_buf
,
130 size_t count
, loff_t
*ppos
)
135 struct cfspi
*cfspi
= file
->private_data
;
137 buf
= kzalloc(DEBUGFS_BUF_SIZE
, GFP_KERNEL
);
141 /* Print out debug information. */
142 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
143 "CAIF SPI debug information:\n");
145 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
), FLAVOR
);
147 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
148 "STATE: %d\n", cfspi
->dbg_state
);
149 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
150 "Previous CMD: 0x%x\n", cfspi
->pcmd
);
151 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
152 "Current CMD: 0x%x\n", cfspi
->cmd
);
153 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
154 "Previous TX len: %d\n", cfspi
->tx_ppck_len
);
155 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
156 "Previous RX len: %d\n", cfspi
->rx_ppck_len
);
157 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
158 "Current TX len: %d\n", cfspi
->tx_cpck_len
);
159 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
160 "Current RX len: %d\n", cfspi
->rx_cpck_len
);
161 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
162 "Next TX len: %d\n", cfspi
->tx_npck_len
);
163 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
164 "Next RX len: %d\n", cfspi
->rx_npck_len
);
166 if (len
> DEBUGFS_BUF_SIZE
)
167 len
= DEBUGFS_BUF_SIZE
;
169 size
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
175 static ssize_t
print_frame(char *buf
, size_t size
, char *frm
,
176 size_t count
, size_t cut
)
180 for (i
= 0; i
< count
; i
++) {
181 len
+= snprintf((buf
+ len
), (size
- len
),
182 "[0x" BYTE_HEX_FMT
"]",
184 if ((i
== cut
) && (count
> (cut
* 2))) {
187 len
+= snprintf((buf
+ len
), (size
- len
),
188 "--- %u bytes skipped ---\n",
189 (int)(count
- (cut
* 2)));
192 if ((!(i
% 10)) && i
) {
193 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
197 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
), "\n");
201 static ssize_t
dbgfs_frame(struct file
*file
, char __user
*user_buf
,
202 size_t count
, loff_t
*ppos
)
209 cfspi
= file
->private_data
;
210 buf
= kzalloc(DEBUGFS_BUF_SIZE
, GFP_KERNEL
);
214 /* Print out debug information. */
215 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
218 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
219 "Tx data (Len: %d):\n", cfspi
->tx_cpck_len
);
221 len
+= print_frame((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
222 cfspi
->xfer
.va_tx
[0],
223 (cfspi
->tx_cpck_len
+ SPI_CMD_SZ
), 100);
225 len
+= snprintf((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
226 "Rx data (Len: %d):\n", cfspi
->rx_cpck_len
);
228 len
+= print_frame((buf
+ len
), (DEBUGFS_BUF_SIZE
- len
),
230 (cfspi
->rx_cpck_len
+ SPI_CMD_SZ
), 100);
232 size
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
238 static const struct file_operations dbgfs_state_fops
= {
244 static const struct file_operations dbgfs_frame_fops
= {
250 static inline void dev_debugfs_add(struct cfspi
*cfspi
)
252 cfspi
->dbgfs_dir
= debugfs_create_dir(cfspi
->pdev
->name
, dbgfs_root
);
253 cfspi
->dbgfs_state
= debugfs_create_file("state", S_IRUGO
,
254 cfspi
->dbgfs_dir
, cfspi
,
256 cfspi
->dbgfs_frame
= debugfs_create_file("frame", S_IRUGO
,
257 cfspi
->dbgfs_dir
, cfspi
,
261 inline void cfspi_dbg_state(struct cfspi
*cfspi
, int state
)
263 cfspi
->dbg_state
= state
;
267 static inline void driver_debugfs_create(void)
271 static inline void driver_debugfs_remove(void)
275 static inline void dev_debugfs_add(struct cfspi
*cfspi
)
279 static inline void dev_debugfs_rem(struct cfspi
*cfspi
)
283 inline void cfspi_dbg_state(struct cfspi
*cfspi
, int state
)
286 #endif /* CONFIG_DEBUG_FS */
288 static LIST_HEAD(cfspi_list
);
289 static spinlock_t cfspi_list_lock
;
291 /* SPI uplink head alignment. */
292 static ssize_t
show_up_head_align(struct device_driver
*driver
, char *buf
)
294 return sprintf(buf
, "%d\n", spi_up_head_align
);
297 static DRIVER_ATTR(up_head_align
, S_IRUSR
, show_up_head_align
, NULL
);
299 /* SPI uplink tail alignment. */
300 static ssize_t
show_up_tail_align(struct device_driver
*driver
, char *buf
)
302 return sprintf(buf
, "%d\n", spi_up_tail_align
);
305 static DRIVER_ATTR(up_tail_align
, S_IRUSR
, show_up_tail_align
, NULL
);
307 /* SPI downlink head alignment. */
308 static ssize_t
show_down_head_align(struct device_driver
*driver
, char *buf
)
310 return sprintf(buf
, "%d\n", spi_down_head_align
);
313 static DRIVER_ATTR(down_head_align
, S_IRUSR
, show_down_head_align
, NULL
);
315 /* SPI downlink tail alignment. */
316 static ssize_t
show_down_tail_align(struct device_driver
*driver
, char *buf
)
318 return sprintf(buf
, "%d\n", spi_down_tail_align
);
321 static DRIVER_ATTR(down_tail_align
, S_IRUSR
, show_down_tail_align
, NULL
);
323 /* SPI frame alignment. */
324 static ssize_t
show_frame_align(struct device_driver
*driver
, char *buf
)
326 return sprintf(buf
, "%d\n", spi_frm_align
);
329 static DRIVER_ATTR(frame_align
, S_IRUSR
, show_frame_align
, NULL
);
331 int cfspi_xmitfrm(struct cfspi
*cfspi
, u8
*buf
, size_t len
)
336 if (cfspi
->slave
&& !cfspi
->slave_talked
)
337 cfspi
->slave_talked
= true;
341 struct caif_payload_info
*info
;
345 skb
= skb_dequeue(&cfspi
->chead
);
350 * Calculate length of frame including SPI padding.
351 * The payload position is found in the control buffer.
353 info
= (struct caif_payload_info
*)&skb
->cb
;
356 * Compute head offset i.e. number of bytes to add to
357 * get the start of the payload aligned.
359 if (spi_up_head_align
> 1) {
360 spad
= 1 + PAD_POW2((info
->hdr_len
+ 1), spi_up_head_align
);
361 *dst
= (u8
)(spad
- 1);
365 /* Copy in CAIF frame. */
366 skb_copy_bits(skb
, 0, dst
, skb
->len
);
368 cfspi
->ndev
->stats
.tx_packets
++;
369 cfspi
->ndev
->stats
.tx_bytes
+= skb
->len
;
372 * Compute tail offset i.e. number of bytes to add to
373 * get the complete CAIF frame aligned.
375 epad
= PAD_POW2((skb
->len
+ spad
), spi_up_tail_align
);
380 } while ((dst
- buf
) < len
);
385 int cfspi_xmitlen(struct cfspi
*cfspi
)
387 struct sk_buff
*skb
= NULL
;
392 * Decommit previously committed frames.
393 * skb_queue_splice_tail(&cfspi->chead,&cfspi->qhead)
395 while (skb_peek(&cfspi
->chead
)) {
396 skb
= skb_dequeue_tail(&cfspi
->chead
);
397 skb_queue_head(&cfspi
->qhead
, skb
);
401 struct caif_payload_info
*info
= NULL
;
405 skb
= skb_dequeue(&cfspi
->qhead
);
410 * Calculate length of frame including SPI padding.
411 * The payload position is found in the control buffer.
413 info
= (struct caif_payload_info
*)&skb
->cb
;
416 * Compute head offset i.e. number of bytes to add to
417 * get the start of the payload aligned.
419 if (spi_up_head_align
> 1)
420 spad
= 1 + PAD_POW2((info
->hdr_len
+ 1), spi_up_head_align
);
423 * Compute tail offset i.e. number of bytes to add to
424 * get the complete CAIF frame aligned.
426 epad
= PAD_POW2((skb
->len
+ spad
), spi_up_tail_align
);
428 if ((skb
->len
+ spad
+ epad
+ frm_len
) <= CAIF_MAX_SPI_FRAME
) {
429 skb_queue_tail(&cfspi
->chead
, skb
);
431 frm_len
+= skb
->len
+ spad
+ epad
;
433 /* Put back packet. */
434 skb_queue_head(&cfspi
->qhead
, skb
);
437 } while (pkts
<= CAIF_MAX_SPI_PKTS
);
440 * Send flow on if previously sent flow off
441 * and now go below the low water mark
443 if (cfspi
->flow_off_sent
&& cfspi
->qhead
.qlen
< cfspi
->qd_low_mark
&&
444 cfspi
->cfdev
.flowctrl
) {
445 cfspi
->flow_off_sent
= 0;
446 cfspi
->cfdev
.flowctrl(cfspi
->ndev
, 1);
452 static void cfspi_ss_cb(bool assert, struct cfspi_ifc
*ifc
)
454 struct cfspi
*cfspi
= (struct cfspi
*)ifc
->priv
;
457 * The slave device is the master on the link. Interrupts before the
458 * slave has transmitted are considered spurious.
460 if (cfspi
->slave
&& !cfspi
->slave_talked
) {
461 printk(KERN_WARNING
"CFSPI: Spurious SS interrupt.\n");
466 spin_lock(&cfspi
->lock
);
468 set_bit(SPI_SS_ON
, &cfspi
->state
);
469 set_bit(SPI_XFER
, &cfspi
->state
);
471 set_bit(SPI_SS_OFF
, &cfspi
->state
);
474 spin_unlock(&cfspi
->lock
);
476 /* Wake up the xfer thread. */
478 wake_up_interruptible(&cfspi
->wait
);
481 static void cfspi_xfer_done_cb(struct cfspi_ifc
*ifc
)
483 struct cfspi
*cfspi
= (struct cfspi
*)ifc
->priv
;
485 /* Transfer done, complete work queue */
486 complete(&cfspi
->comp
);
489 static int cfspi_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
491 struct cfspi
*cfspi
= NULL
;
496 cfspi
= netdev_priv(dev
);
498 skb_queue_tail(&cfspi
->qhead
, skb
);
500 spin_lock_irqsave(&cfspi
->lock
, flags
);
501 if (!test_and_set_bit(SPI_XFER
, &cfspi
->state
)) {
502 /* Wake up xfer thread. */
503 wake_up_interruptible(&cfspi
->wait
);
505 spin_unlock_irqrestore(&cfspi
->lock
, flags
);
507 /* Send flow off if number of bytes is above high water mark */
508 if (!cfspi
->flow_off_sent
&&
509 cfspi
->qhead
.qlen
> cfspi
->qd_high_mark
&&
510 cfspi
->cfdev
.flowctrl
) {
511 cfspi
->flow_off_sent
= 1;
512 cfspi
->cfdev
.flowctrl(cfspi
->ndev
, 0);
518 int cfspi_rxfrm(struct cfspi
*cfspi
, u8
*buf
, size_t len
)
522 caif_assert(buf
!= NULL
);
526 struct sk_buff
*skb
= NULL
;
533 * Compute head offset i.e. number of bytes added to
534 * get the start of the payload aligned.
536 if (spi_down_head_align
> 1) {
541 /* Read length of CAIF frame (little endian). */
543 pkt_len
|= ((*(src
+1)) << 8) & 0xFF00;
544 pkt_len
+= 2; /* Add FCS fields. */
546 /* Get a suitable caif packet and copy in data. */
548 skb
= netdev_alloc_skb(cfspi
->ndev
, pkt_len
+ 1);
549 caif_assert(skb
!= NULL
);
551 dst
= skb_put(skb
, pkt_len
);
552 memcpy(dst
, src
, pkt_len
);
555 skb
->protocol
= htons(ETH_P_CAIF
);
556 skb_reset_mac_header(skb
);
557 skb
->dev
= cfspi
->ndev
;
560 * Push received packet up the stack.
563 res
= netif_rx_ni(skb
);
565 res
= cfspi_xmit(skb
, cfspi
->ndev
);
568 cfspi
->ndev
->stats
.rx_packets
++;
569 cfspi
->ndev
->stats
.rx_bytes
+= pkt_len
;
571 cfspi
->ndev
->stats
.rx_dropped
++;
574 * Compute tail offset i.e. number of bytes added to
575 * get the complete CAIF frame aligned.
577 epad
= PAD_POW2((pkt_len
+ spad
), spi_down_tail_align
);
579 } while ((src
- buf
) < len
);
584 static int cfspi_open(struct net_device
*dev
)
586 netif_wake_queue(dev
);
590 static int cfspi_close(struct net_device
*dev
)
592 netif_stop_queue(dev
);
596 static int cfspi_init(struct net_device
*dev
)
599 struct cfspi
*cfspi
= netdev_priv(dev
);
602 cfspi
->flow_off_sent
= 0;
603 cfspi
->qd_low_mark
= LOW_WATER_MARK
;
604 cfspi
->qd_high_mark
= HIGH_WATER_MARK
;
606 /* Set slave info. */
607 if (!strncmp(cfspi_spi_driver
.driver
.name
, "cfspi_sspi", 10)) {
609 cfspi
->slave_talked
= false;
611 cfspi
->slave
= false;
612 cfspi
->slave_talked
= false;
615 /* Allocate DMA buffers. */
616 cfspi
->xfer
.va_tx
[0] = dma_alloc(&cfspi
->xfer
.pa_tx
[0]);
617 if (!cfspi
->xfer
.va_tx
[0]) {
619 goto err_dma_alloc_tx_0
;
622 cfspi
->xfer
.va_rx
= dma_alloc(&cfspi
->xfer
.pa_rx
);
624 if (!cfspi
->xfer
.va_rx
) {
626 goto err_dma_alloc_rx
;
629 /* Initialize the work queue. */
630 INIT_WORK(&cfspi
->work
, cfspi_xfer
);
632 /* Initialize spin locks. */
633 spin_lock_init(&cfspi
->lock
);
635 /* Initialize flow control state. */
636 cfspi
->flow_stop
= false;
638 /* Initialize wait queue. */
639 init_waitqueue_head(&cfspi
->wait
);
641 /* Create work thread. */
642 cfspi
->wq
= create_singlethread_workqueue(dev
->name
);
644 printk(KERN_WARNING
"CFSPI: failed to create work queue.\n");
649 /* Initialize work queue. */
650 init_completion(&cfspi
->comp
);
652 /* Create debugfs entries. */
653 dev_debugfs_add(cfspi
);
655 /* Set up the ifc. */
656 cfspi
->ifc
.ss_cb
= cfspi_ss_cb
;
657 cfspi
->ifc
.xfer_done_cb
= cfspi_xfer_done_cb
;
658 cfspi
->ifc
.priv
= cfspi
;
660 /* Add CAIF SPI device to list. */
661 spin_lock(&cfspi_list_lock
);
662 list_add_tail(&cfspi
->list
, &cfspi_list
);
663 spin_unlock(&cfspi_list_lock
);
665 /* Schedule the work queue. */
666 queue_work(cfspi
->wq
, &cfspi
->work
);
671 dma_free(cfspi
->xfer
.va_rx
, cfspi
->xfer
.pa_rx
);
673 dma_free(cfspi
->xfer
.va_tx
[0], cfspi
->xfer
.pa_tx
[0]);
678 static void cfspi_uninit(struct net_device
*dev
)
680 struct cfspi
*cfspi
= netdev_priv(dev
);
682 /* Remove from list. */
683 spin_lock(&cfspi_list_lock
);
684 list_del(&cfspi
->list
);
685 spin_unlock(&cfspi_list_lock
);
688 /* Free DMA buffers. */
689 dma_free(cfspi
->xfer
.va_rx
, cfspi
->xfer
.pa_rx
);
690 dma_free(cfspi
->xfer
.va_tx
[0], cfspi
->xfer
.pa_tx
[0]);
691 set_bit(SPI_TERMINATE
, &cfspi
->state
);
692 wake_up_interruptible(&cfspi
->wait
);
693 destroy_workqueue(cfspi
->wq
);
694 /* Destroy debugfs directory and files. */
695 dev_debugfs_rem(cfspi
);
699 static const struct net_device_ops cfspi_ops
= {
700 .ndo_open
= cfspi_open
,
701 .ndo_stop
= cfspi_close
,
702 .ndo_init
= cfspi_init
,
703 .ndo_uninit
= cfspi_uninit
,
704 .ndo_start_xmit
= cfspi_xmit
707 static void cfspi_setup(struct net_device
*dev
)
709 struct cfspi
*cfspi
= netdev_priv(dev
);
711 dev
->netdev_ops
= &cfspi_ops
;
712 dev
->type
= ARPHRD_CAIF
;
713 dev
->flags
= IFF_NOARP
| IFF_POINTOPOINT
;
714 dev
->tx_queue_len
= 0;
715 dev
->mtu
= SPI_MAX_PAYLOAD_SIZE
;
716 dev
->destructor
= free_netdev
;
717 skb_queue_head_init(&cfspi
->qhead
);
718 skb_queue_head_init(&cfspi
->chead
);
719 cfspi
->cfdev
.link_select
= CAIF_LINK_HIGH_BANDW
;
720 cfspi
->cfdev
.use_frag
= false;
721 cfspi
->cfdev
.use_stx
= false;
722 cfspi
->cfdev
.use_fcs
= false;
726 int cfspi_spi_probe(struct platform_device
*pdev
)
728 struct cfspi
*cfspi
= NULL
;
729 struct net_device
*ndev
;
730 struct cfspi_dev
*dev
;
732 dev
= (struct cfspi_dev
*)pdev
->dev
.platform_data
;
734 ndev
= alloc_netdev(sizeof(struct cfspi
),
735 "cfspi%d", cfspi_setup
);
739 cfspi
= netdev_priv(ndev
);
740 netif_stop_queue(ndev
);
744 /* Assign the SPI device. */
746 /* Assign the device ifc to this SPI interface. */
747 dev
->ifc
= &cfspi
->ifc
;
749 /* Register network device. */
750 res
= register_netdev(ndev
);
752 printk(KERN_ERR
"CFSPI: Reg. error: %d.\n", res
);
763 int cfspi_spi_remove(struct platform_device
*pdev
)
765 /* Everything is done in cfspi_uninit(). */
769 static void __exit
cfspi_exit_module(void)
771 struct list_head
*list_node
;
773 struct cfspi
*cfspi
= NULL
;
775 list_for_each_safe(list_node
, n
, &cfspi_list
) {
776 cfspi
= list_entry(list_node
, struct cfspi
, list
);
777 unregister_netdev(cfspi
->ndev
);
780 /* Destroy sysfs files. */
781 driver_remove_file(&cfspi_spi_driver
.driver
,
782 &driver_attr_up_head_align
);
783 driver_remove_file(&cfspi_spi_driver
.driver
,
784 &driver_attr_up_tail_align
);
785 driver_remove_file(&cfspi_spi_driver
.driver
,
786 &driver_attr_down_head_align
);
787 driver_remove_file(&cfspi_spi_driver
.driver
,
788 &driver_attr_down_tail_align
);
789 driver_remove_file(&cfspi_spi_driver
.driver
, &driver_attr_frame_align
);
790 /* Unregister platform driver. */
791 platform_driver_unregister(&cfspi_spi_driver
);
792 /* Destroy debugfs root directory. */
793 driver_debugfs_remove();
796 static int __init
cfspi_init_module(void)
800 /* Initialize spin lock. */
801 spin_lock_init(&cfspi_list_lock
);
803 /* Register platform driver. */
804 result
= platform_driver_register(&cfspi_spi_driver
);
806 printk(KERN_ERR
"Could not register platform SPI driver.\n");
807 goto err_dev_register
;
810 /* Create sysfs files. */
812 driver_create_file(&cfspi_spi_driver
.driver
,
813 &driver_attr_up_head_align
);
815 printk(KERN_ERR
"Sysfs creation failed 1.\n");
816 goto err_create_up_head_align
;
820 driver_create_file(&cfspi_spi_driver
.driver
,
821 &driver_attr_up_tail_align
);
823 printk(KERN_ERR
"Sysfs creation failed 2.\n");
824 goto err_create_up_tail_align
;
828 driver_create_file(&cfspi_spi_driver
.driver
,
829 &driver_attr_down_head_align
);
831 printk(KERN_ERR
"Sysfs creation failed 3.\n");
832 goto err_create_down_head_align
;
836 driver_create_file(&cfspi_spi_driver
.driver
,
837 &driver_attr_down_tail_align
);
839 printk(KERN_ERR
"Sysfs creation failed 4.\n");
840 goto err_create_down_tail_align
;
844 driver_create_file(&cfspi_spi_driver
.driver
,
845 &driver_attr_frame_align
);
847 printk(KERN_ERR
"Sysfs creation failed 5.\n");
848 goto err_create_frame_align
;
850 driver_debugfs_create();
853 err_create_frame_align
:
854 driver_remove_file(&cfspi_spi_driver
.driver
,
855 &driver_attr_down_tail_align
);
856 err_create_down_tail_align
:
857 driver_remove_file(&cfspi_spi_driver
.driver
,
858 &driver_attr_down_head_align
);
859 err_create_down_head_align
:
860 driver_remove_file(&cfspi_spi_driver
.driver
,
861 &driver_attr_up_tail_align
);
862 err_create_up_tail_align
:
863 driver_remove_file(&cfspi_spi_driver
.driver
,
864 &driver_attr_up_head_align
);
865 err_create_up_head_align
:
866 platform_driver_unregister(&cfspi_spi_driver
);
871 module_init(cfspi_init_module
);
872 module_exit(cfspi_exit_module
);