2 * SPI bus driver for the Topcliff PCH used by Intel SoCs
4 * Copyright (C) 2010 OKI SEMICONDUCTOR Co., LTD.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20 #include <linux/delay.h>
21 #include <linux/pci.h>
22 #include <linux/wait.h>
23 #include <linux/spi/spi.h>
24 #include <linux/interrupt.h>
25 #include <linux/sched.h>
26 #include <linux/spi/spidev.h>
27 #include <linux/module.h>
28 #include <linux/device.h>
30 /* Register offsets */
31 #define PCH_SPCR 0x00 /* SPI control register */
32 #define PCH_SPBRR 0x04 /* SPI baud rate register */
33 #define PCH_SPSR 0x08 /* SPI status register */
34 #define PCH_SPDWR 0x0C /* SPI write data register */
35 #define PCH_SPDRR 0x10 /* SPI read data register */
36 #define PCH_SSNXCR 0x18 /* SSN Expand Control Register */
37 #define PCH_SRST 0x1C /* SPI reset register */
39 #define PCH_SPSR_TFD 0x000007C0
40 #define PCH_SPSR_RFD 0x0000F800
42 #define PCH_READABLE(x) (((x) & PCH_SPSR_RFD)>>11)
43 #define PCH_WRITABLE(x) (((x) & PCH_SPSR_TFD)>>6)
45 #define PCH_RX_THOLD 7
46 #define PCH_RX_THOLD_MAX 15
48 #define PCH_MAX_BAUDRATE 5000000
49 #define PCH_MAX_FIFO_DEPTH 16
51 #define STATUS_RUNNING 1
52 #define STATUS_EXITING 2
53 #define PCH_SLEEP_TIME 10
55 #define PCH_ADDRESS_SIZE 0x20
58 #define SSN_NO_CONTROL 0x00U
59 #define PCH_MAX_CS 0xFF
60 #define PCI_DEVICE_ID_GE_SPI 0x8816
62 #define SPCR_SPE_BIT (1 << 0)
63 #define SPCR_MSTR_BIT (1 << 1)
64 #define SPCR_LSBF_BIT (1 << 4)
65 #define SPCR_CPHA_BIT (1 << 5)
66 #define SPCR_CPOL_BIT (1 << 6)
67 #define SPCR_TFIE_BIT (1 << 8)
68 #define SPCR_RFIE_BIT (1 << 9)
69 #define SPCR_FIE_BIT (1 << 10)
70 #define SPCR_ORIE_BIT (1 << 11)
71 #define SPCR_MDFIE_BIT (1 << 12)
72 #define SPCR_FICLR_BIT (1 << 24)
73 #define SPSR_TFI_BIT (1 << 0)
74 #define SPSR_RFI_BIT (1 << 1)
75 #define SPSR_FI_BIT (1 << 2)
76 #define SPBRR_SIZE_BIT (1 << 10)
78 #define PCH_ALL (SPCR_TFIE_BIT|SPCR_RFIE_BIT|SPCR_FIE_BIT|SPCR_ORIE_BIT|SPCR_MDFIE_BIT)
80 #define SPCR_RFIC_FIELD 20
81 #define SPCR_TFIC_FIELD 16
83 #define SPSR_INT_BITS 0x1F
84 #define MASK_SPBRR_SPBR_BITS (~((1 << 10) - 1))
85 #define MASK_RFIC_SPCR_BITS (~(0xf << 20))
86 #define MASK_TFIC_SPCR_BITS (~(0xf000f << 12))
88 #define PCH_CLOCK_HZ 50000000
89 #define PCH_MAX_SPBR 1023
93 * struct pch_spi_data - Holds the SPI channel specific details
94 * @io_remap_addr: The remapped PCI base address
95 * @master: Pointer to the SPI master structure
96 * @work: Reference to work queue handler
97 * @wk: Workqueue for carrying out execution of the
99 * @wait: Wait queue for waking up upon receiving an
101 * @transfer_complete: Status of SPI Transfer
102 * @bcurrent_msg_processing: Status flag for message processing
103 * @lock: Lock for protecting this structure
104 * @queue: SPI Message queue
105 * @status: Status of the SPI driver
106 * @bpw_len: Length of data to be transferred in bits per
108 * @transfer_active: Flag showing active transfer
109 * @tx_index: Transmit data count; for bookkeeping during
111 * @rx_index: Receive data count; for bookkeeping during
113 * @tx_buff: Buffer for data to be transmitted
114 * @rx_index: Buffer for Received data
115 * @n_curnt_chip: The chip number that this SPI driver currently
117 * @current_chip: Reference to the current chip that this SPI
118 * driver currently operates on
119 * @current_msg: The current message that this SPI driver is
121 * @cur_trans: The current transfer that this SPI driver is
123 * @board_dat: Reference to the SPI device data structure
125 struct pch_spi_data
{
126 void __iomem
*io_remap_addr
;
127 struct spi_master
*master
;
128 struct work_struct work
;
129 struct workqueue_struct
*wk
;
130 wait_queue_head_t wait
;
131 u8 transfer_complete
;
132 u8 bcurrent_msg_processing
;
134 struct list_head queue
;
143 struct spi_device
*current_chip
;
144 struct spi_message
*current_msg
;
145 struct spi_transfer
*cur_trans
;
146 struct pch_spi_board_data
*board_dat
;
150 * struct pch_spi_board_data - Holds the SPI device specific details
151 * @pdev: Pointer to the PCI device
152 * @irq_reg_sts: Status of IRQ registration
153 * @pci_req_sts: Status of pci_request_regions
154 * @suspend_sts: Status of suspend
155 * @data: Pointer to SPI channel data structure
157 struct pch_spi_board_data
{
158 struct pci_dev
*pdev
;
162 struct pch_spi_data
*data
;
165 static struct pci_device_id pch_spi_pcidev_id
[] = {
166 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_GE_SPI
)},
171 * pch_spi_writereg() - Performs register writes
172 * @master: Pointer to struct spi_master.
173 * @idx: Register offset.
174 * @val: Value to be written to register.
176 static inline void pch_spi_writereg(struct spi_master
*master
, int idx
, u32 val
)
178 struct pch_spi_data
*data
= spi_master_get_devdata(master
);
179 iowrite32(val
, (data
->io_remap_addr
+ idx
));
183 * pch_spi_readreg() - Performs register reads
184 * @master: Pointer to struct spi_master.
185 * @idx: Register offset.
187 static inline u32
pch_spi_readreg(struct spi_master
*master
, int idx
)
189 struct pch_spi_data
*data
= spi_master_get_devdata(master
);
190 return ioread32(data
->io_remap_addr
+ idx
);
193 static inline void pch_spi_setclr_reg(struct spi_master
*master
, int idx
,
196 u32 tmp
= pch_spi_readreg(master
, idx
);
197 tmp
= (tmp
& ~clr
) | set
;
198 pch_spi_writereg(master
, idx
, tmp
);
201 static void pch_spi_set_master_mode(struct spi_master
*master
)
203 pch_spi_setclr_reg(master
, PCH_SPCR
, SPCR_MSTR_BIT
, 0);
207 * pch_spi_clear_fifo() - Clears the Transmit and Receive FIFOs
208 * @master: Pointer to struct spi_master.
210 static void pch_spi_clear_fifo(struct spi_master
*master
)
212 pch_spi_setclr_reg(master
, PCH_SPCR
, SPCR_FICLR_BIT
, 0);
213 pch_spi_setclr_reg(master
, PCH_SPCR
, 0, SPCR_FICLR_BIT
);
216 static void pch_spi_handler_sub(struct pch_spi_data
*data
, u32 reg_spsr_val
,
217 void __iomem
*io_remap_addr
)
219 u32 n_read
, tx_index
, rx_index
, bpw_len
;
220 u16
*pkt_rx_buffer
, *pkt_tx_buff
;
227 spsr
= io_remap_addr
+ PCH_SPSR
;
228 iowrite32(reg_spsr_val
, spsr
);
230 if (data
->transfer_active
) {
231 rx_index
= data
->rx_index
;
232 tx_index
= data
->tx_index
;
233 bpw_len
= data
->bpw_len
;
234 pkt_rx_buffer
= data
->pkt_rx_buff
;
235 pkt_tx_buff
= data
->pkt_tx_buff
;
237 spdrr
= io_remap_addr
+ PCH_SPDRR
;
238 spdwr
= io_remap_addr
+ PCH_SPDWR
;
240 n_read
= PCH_READABLE(reg_spsr_val
);
242 for (read_cnt
= 0; (read_cnt
< n_read
); read_cnt
++) {
243 pkt_rx_buffer
[rx_index
++] = ioread32(spdrr
);
244 if (tx_index
< bpw_len
)
245 iowrite32(pkt_tx_buff
[tx_index
++], spdwr
);
248 /* disable RFI if not needed */
249 if ((bpw_len
- rx_index
) <= PCH_MAX_FIFO_DEPTH
) {
250 reg_spcr_val
= ioread32(io_remap_addr
+ PCH_SPCR
);
251 reg_spcr_val
&= ~SPCR_RFIE_BIT
; /* disable RFI */
253 /* reset rx threshold */
254 reg_spcr_val
&= MASK_RFIC_SPCR_BITS
;
255 reg_spcr_val
|= (PCH_RX_THOLD_MAX
<< SPCR_RFIC_FIELD
);
256 iowrite32(((reg_spcr_val
) &= (~(SPCR_RFIE_BIT
))),
257 (io_remap_addr
+ PCH_SPCR
));
261 data
->tx_index
= tx_index
;
262 data
->rx_index
= rx_index
;
266 /* if transfer complete interrupt */
267 if (reg_spsr_val
& SPSR_FI_BIT
) {
268 /* disable FI & RFI interrupts */
269 pch_spi_setclr_reg(data
->master
, PCH_SPCR
, 0,
270 SPCR_FIE_BIT
| SPCR_RFIE_BIT
);
272 /* transfer is completed;inform pch_spi_process_messages */
273 data
->transfer_complete
= true;
274 wake_up(&data
->wait
);
279 * pch_spi_handler() - Interrupt handler
280 * @irq: The interrupt number.
281 * @dev_id: Pointer to struct pch_spi_board_data.
283 static irqreturn_t
pch_spi_handler(int irq
, void *dev_id
)
286 struct pch_spi_data
*data
;
288 void __iomem
*io_remap_addr
;
289 irqreturn_t ret
= IRQ_NONE
;
290 struct pch_spi_board_data
*board_dat
= dev_id
;
292 if (board_dat
->suspend_sts
) {
293 dev_dbg(&board_dat
->pdev
->dev
,
294 "%s returning due to suspend\n", __func__
);
298 data
= board_dat
->data
;
299 io_remap_addr
= data
->io_remap_addr
;
300 spsr
= io_remap_addr
+ PCH_SPSR
;
302 reg_spsr_val
= ioread32(spsr
);
304 /* Check if the interrupt is for SPI device */
305 if (reg_spsr_val
& (SPSR_FI_BIT
| SPSR_RFI_BIT
)) {
306 pch_spi_handler_sub(data
, reg_spsr_val
, io_remap_addr
);
310 dev_dbg(&board_dat
->pdev
->dev
, "%s EXIT return value=%d\n",
317 * pch_spi_set_baud_rate() - Sets SPBR field in SPBRR
318 * @master: Pointer to struct spi_master.
319 * @speed_hz: Baud rate.
321 static void pch_spi_set_baud_rate(struct spi_master
*master
, u32 speed_hz
)
323 u32 n_spbr
= PCH_CLOCK_HZ
/ (speed_hz
* 2);
325 /* if baud rate is less than we can support limit it */
326 if (n_spbr
> PCH_MAX_SPBR
)
327 n_spbr
= PCH_MAX_SPBR
;
329 pch_spi_setclr_reg(master
, PCH_SPBRR
, n_spbr
, ~MASK_SPBRR_SPBR_BITS
);
333 * pch_spi_set_bits_per_word() - Sets SIZE field in SPBRR
334 * @master: Pointer to struct spi_master.
335 * @bits_per_word: Bits per word for SPI transfer.
337 static void pch_spi_set_bits_per_word(struct spi_master
*master
,
340 if (bits_per_word
== 8)
341 pch_spi_setclr_reg(master
, PCH_SPBRR
, 0, SPBRR_SIZE_BIT
);
343 pch_spi_setclr_reg(master
, PCH_SPBRR
, SPBRR_SIZE_BIT
, 0);
347 * pch_spi_setup_transfer() - Configures the PCH SPI hardware for transfer
348 * @spi: Pointer to struct spi_device.
350 static void pch_spi_setup_transfer(struct spi_device
*spi
)
354 dev_dbg(&spi
->dev
, "%s SPBRR content =%x setting baud rate=%d\n",
355 __func__
, pch_spi_readreg(spi
->master
, PCH_SPBRR
),
357 pch_spi_set_baud_rate(spi
->master
, spi
->max_speed_hz
);
359 /* set bits per word */
360 pch_spi_set_bits_per_word(spi
->master
, spi
->bits_per_word
);
362 if (!(spi
->mode
& SPI_LSB_FIRST
))
363 flags
|= SPCR_LSBF_BIT
;
364 if (spi
->mode
& SPI_CPOL
)
365 flags
|= SPCR_CPOL_BIT
;
366 if (spi
->mode
& SPI_CPHA
)
367 flags
|= SPCR_CPHA_BIT
;
368 pch_spi_setclr_reg(spi
->master
, PCH_SPCR
, flags
,
369 (SPCR_LSBF_BIT
| SPCR_CPOL_BIT
| SPCR_CPHA_BIT
));
371 /* Clear the FIFO by toggling FICLR to 1 and back to 0 */
372 pch_spi_clear_fifo(spi
->master
);
376 * pch_spi_reset() - Clears SPI registers
377 * @master: Pointer to struct spi_master.
379 static void pch_spi_reset(struct spi_master
*master
)
381 /* write 1 to reset SPI */
382 pch_spi_writereg(master
, PCH_SRST
, 0x1);
385 pch_spi_writereg(master
, PCH_SRST
, 0x0);
388 static int pch_spi_setup(struct spi_device
*pspi
)
390 /* check bits per word */
391 if (pspi
->bits_per_word
== 0) {
392 pspi
->bits_per_word
= 8;
393 dev_dbg(&pspi
->dev
, "%s 8 bits per word\n", __func__
);
396 if ((pspi
->bits_per_word
!= 8) && (pspi
->bits_per_word
!= 16)) {
397 dev_err(&pspi
->dev
, "%s Invalid bits per word\n", __func__
);
401 /* Check baud rate setting */
402 /* if baud rate of chip is greater than
403 max we can support,return error */
404 if ((pspi
->max_speed_hz
) > PCH_MAX_BAUDRATE
)
405 pspi
->max_speed_hz
= PCH_MAX_BAUDRATE
;
407 dev_dbg(&pspi
->dev
, "%s MODE = %x\n", __func__
,
408 (pspi
->mode
) & (SPI_CPOL
| SPI_CPHA
));
413 static int pch_spi_transfer(struct spi_device
*pspi
, struct spi_message
*pmsg
)
416 struct spi_transfer
*transfer
;
417 struct pch_spi_data
*data
= spi_master_get_devdata(pspi
->master
);
421 /* validate spi message and baud rate */
422 if (unlikely(list_empty(&pmsg
->transfers
) == 1)) {
423 dev_err(&pspi
->dev
, "%s list empty\n", __func__
);
428 if (unlikely(pspi
->max_speed_hz
== 0)) {
429 dev_err(&pspi
->dev
, "%s pch_spi_tranfer maxspeed=%d\n",
430 __func__
, pspi
->max_speed_hz
);
435 dev_dbg(&pspi
->dev
, "%s Transfer List not empty. "
436 "Transfer Speed is set.\n", __func__
);
438 /* validate Tx/Rx buffers and Transfer length */
439 list_for_each_entry(transfer
, &pmsg
->transfers
, transfer_list
) {
440 if (!transfer
->tx_buf
&& !transfer
->rx_buf
) {
442 "%s Tx and Rx buffer NULL\n", __func__
);
447 if (!transfer
->len
) {
448 dev_err(&pspi
->dev
, "%s Transfer length invalid\n",
454 dev_dbg(&pspi
->dev
, "%s Tx/Rx buffer valid. Transfer length"
455 " valid\n", __func__
);
457 /* if baud rate hs been specified validate the same */
458 if (transfer
->speed_hz
> PCH_MAX_BAUDRATE
)
459 transfer
->speed_hz
= PCH_MAX_BAUDRATE
;
461 /* if bits per word has been specified validate the same */
462 if (transfer
->bits_per_word
) {
463 if ((transfer
->bits_per_word
!= 8)
464 && (transfer
->bits_per_word
!= 16)) {
467 "%s Invalid bits per word\n", __func__
);
473 spin_lock_irqsave(&data
->lock
, flags
);
475 /* We won't process any messages if we have been asked to terminate */
476 if (data
->status
== STATUS_EXITING
) {
477 dev_err(&pspi
->dev
, "%s status = STATUS_EXITING.\n", __func__
);
479 goto err_return_spinlock
;
482 /* If suspended ,return -EINVAL */
483 if (data
->board_dat
->suspend_sts
) {
484 dev_err(&pspi
->dev
, "%s suspend; returning EINVAL\n", __func__
);
486 goto err_return_spinlock
;
489 /* set status of message */
490 pmsg
->actual_length
= 0;
491 dev_dbg(&pspi
->dev
, "%s - pmsg->status =%d\n", __func__
, pmsg
->status
);
493 pmsg
->status
= -EINPROGRESS
;
495 /* add message to queue */
496 list_add_tail(&pmsg
->queue
, &data
->queue
);
497 dev_dbg(&pspi
->dev
, "%s - Invoked list_add_tail\n", __func__
);
499 /* schedule work queue to run */
500 queue_work(data
->wk
, &data
->work
);
501 dev_dbg(&pspi
->dev
, "%s - Invoked queue work\n", __func__
);
506 spin_unlock_irqrestore(&data
->lock
, flags
);
508 dev_dbg(&pspi
->dev
, "%s RETURN=%d\n", __func__
, retval
);
512 static inline void pch_spi_select_chip(struct pch_spi_data
*data
,
513 struct spi_device
*pspi
)
515 if (data
->current_chip
!= NULL
) {
516 if (pspi
->chip_select
!= data
->n_curnt_chip
) {
517 dev_dbg(&pspi
->dev
, "%s : different slave\n", __func__
);
518 data
->current_chip
= NULL
;
522 data
->current_chip
= pspi
;
524 data
->n_curnt_chip
= data
->current_chip
->chip_select
;
526 dev_dbg(&pspi
->dev
, "%s :Invoking pch_spi_setup_transfer\n", __func__
);
527 pch_spi_setup_transfer(pspi
);
530 static void pch_spi_set_tx(struct pch_spi_data
*data
, int *bpw
,
531 struct spi_message
**ppmsg
)
536 struct spi_message
*pmsg
;
542 /* set baud rate if needed */
543 if (data
->cur_trans
->speed_hz
) {
544 dev_dbg(&data
->master
->dev
, "%s:setting baud rate\n", __func__
);
545 pch_spi_set_baud_rate(data
->master
, data
->cur_trans
->speed_hz
);
548 /* set bits per word if needed */
549 if (data
->cur_trans
->bits_per_word
&&
550 (data
->current_msg
->spi
->bits_per_word
!= data
->cur_trans
->bits_per_word
)) {
551 dev_dbg(&data
->master
->dev
, "%s:set bits per word\n", __func__
);
552 pch_spi_set_bits_per_word(data
->master
,
553 data
->cur_trans
->bits_per_word
);
554 *bpw
= data
->cur_trans
->bits_per_word
;
556 *bpw
= data
->current_msg
->spi
->bits_per_word
;
559 /* reset Tx/Rx index */
563 data
->bpw_len
= data
->cur_trans
->len
/ (*bpw
/ 8);
565 /* find alloc size */
566 size
= data
->cur_trans
->len
* sizeof(*data
->pkt_tx_buff
);
568 /* allocate memory for pkt_tx_buff & pkt_rx_buffer */
569 data
->pkt_tx_buff
= kzalloc(size
, GFP_KERNEL
);
570 if (data
->pkt_tx_buff
!= NULL
) {
571 data
->pkt_rx_buff
= kzalloc(size
, GFP_KERNEL
);
572 if (!data
->pkt_rx_buff
)
573 kfree(data
->pkt_tx_buff
);
576 if (!data
->pkt_rx_buff
) {
577 /* flush queue and set status of all transfers to -ENOMEM */
578 dev_err(&data
->master
->dev
, "%s :kzalloc failed\n", __func__
);
579 list_for_each_entry(pmsg
, data
->queue
.next
, queue
) {
580 pmsg
->status
= -ENOMEM
;
582 if (pmsg
->complete
!= 0)
583 pmsg
->complete(pmsg
->context
);
585 /* delete from queue */
586 list_del_init(&pmsg
->queue
);
592 if (data
->cur_trans
->tx_buf
!= NULL
) {
594 tx_buf
= data
->cur_trans
->tx_buf
;
595 for (j
= 0; j
< data
->bpw_len
; j
++)
596 data
->pkt_tx_buff
[j
] = *tx_buf
++;
598 tx_sbuf
= data
->cur_trans
->tx_buf
;
599 for (j
= 0; j
< data
->bpw_len
; j
++)
600 data
->pkt_tx_buff
[j
] = *tx_sbuf
++;
604 /* if len greater than PCH_MAX_FIFO_DEPTH, write 16,else len bytes */
605 n_writes
= data
->bpw_len
;
606 if (n_writes
> PCH_MAX_FIFO_DEPTH
)
607 n_writes
= PCH_MAX_FIFO_DEPTH
;
609 dev_dbg(&data
->master
->dev
, "\n%s:Pulling down SSN low - writing "
610 "0x2 to SSNXCR\n", __func__
);
611 pch_spi_writereg(data
->master
, PCH_SSNXCR
, SSN_LOW
);
613 for (j
= 0; j
< n_writes
; j
++)
614 pch_spi_writereg(data
->master
, PCH_SPDWR
, data
->pkt_tx_buff
[j
]);
616 /* update tx_index */
619 /* reset transfer complete flag */
620 data
->transfer_complete
= false;
621 data
->transfer_active
= true;
625 static void pch_spi_nomore_transfer(struct pch_spi_data
*data
,
626 struct spi_message
*pmsg
)
628 dev_dbg(&data
->master
->dev
, "%s called\n", __func__
);
629 /* Invoke complete callback
630 * [To the spi core..indicating end of transfer] */
631 data
->current_msg
->status
= 0;
633 if (data
->current_msg
->complete
!= 0) {
634 dev_dbg(&data
->master
->dev
,
635 "%s:Invoking callback of SPI core\n", __func__
);
636 data
->current_msg
->complete(data
->current_msg
->context
);
639 /* update status in global variable */
640 data
->bcurrent_msg_processing
= false;
642 dev_dbg(&data
->master
->dev
,
643 "%s:data->bcurrent_msg_processing = false\n", __func__
);
645 data
->current_msg
= NULL
;
646 data
->cur_trans
= NULL
;
648 /* check if we have items in list and not suspending
649 * return 1 if list empty */
650 if ((list_empty(&data
->queue
) == 0) &&
651 (!data
->board_dat
->suspend_sts
) &&
652 (data
->status
!= STATUS_EXITING
)) {
653 /* We have some more work to do (either there is more tranint
654 * bpw;sfer requests in the current message or there are
657 dev_dbg(&data
->master
->dev
, "%s:Invoke queue_work\n", __func__
);
658 queue_work(data
->wk
, &data
->work
);
659 } else if (data
->board_dat
->suspend_sts
||
660 data
->status
== STATUS_EXITING
) {
661 dev_dbg(&data
->master
->dev
,
662 "%s suspend/remove initiated, flushing queue\n",
664 list_for_each_entry(pmsg
, data
->queue
.next
, queue
) {
668 pmsg
->complete(pmsg
->context
);
670 /* delete from queue */
671 list_del_init(&pmsg
->queue
);
676 static void pch_spi_set_ir(struct pch_spi_data
*data
)
678 /* enable interrupts */
679 if ((data
->bpw_len
) > PCH_MAX_FIFO_DEPTH
) {
680 /* set receive threshold to PCH_RX_THOLD */
681 pch_spi_setclr_reg(data
->master
, PCH_SPCR
,
682 PCH_RX_THOLD
<< SPCR_RFIC_FIELD
,
683 ~MASK_RFIC_SPCR_BITS
);
684 /* enable FI and RFI interrupts */
685 pch_spi_setclr_reg(data
->master
, PCH_SPCR
,
686 SPCR_RFIE_BIT
| SPCR_FIE_BIT
, 0);
688 /* set receive threshold to maximum */
689 pch_spi_setclr_reg(data
->master
, PCH_SPCR
,
690 PCH_RX_THOLD_MAX
<< SPCR_TFIC_FIELD
,
691 ~MASK_TFIC_SPCR_BITS
);
692 /* enable FI interrupt */
693 pch_spi_setclr_reg(data
->master
, PCH_SPCR
, SPCR_FIE_BIT
, 0);
696 dev_dbg(&data
->master
->dev
,
697 "%s:invoking pch_spi_set_enable to enable SPI\n", __func__
);
700 pch_spi_setclr_reg(data
->current_chip
->master
, PCH_SPCR
, SPCR_SPE_BIT
, 0);
702 /* Wait until the transfer completes; go to sleep after
703 initiating the transfer. */
704 dev_dbg(&data
->master
->dev
,
705 "%s:waiting for transfer to get over\n", __func__
);
707 wait_event_interruptible(data
->wait
, data
->transfer_complete
);
709 pch_spi_writereg(data
->master
, PCH_SSNXCR
, SSN_NO_CONTROL
);
710 dev_dbg(&data
->master
->dev
,
711 "%s:no more control over SSN-writing 0 to SSNXCR.", __func__
);
713 data
->transfer_active
= false;
714 dev_dbg(&data
->master
->dev
,
715 "%s set data->transfer_active = false\n", __func__
);
717 /* clear all interrupts */
718 pch_spi_writereg(data
->master
, PCH_SPSR
,
719 pch_spi_readreg(data
->master
, PCH_SPSR
));
720 /* disable interrupts */
721 pch_spi_setclr_reg(data
->master
, PCH_SPCR
, 0, PCH_ALL
);
724 static void pch_spi_copy_rx_data(struct pch_spi_data
*data
, int bpw
)
731 if (!data
->cur_trans
->rx_buf
)
735 rx_buf
= data
->cur_trans
->rx_buf
;
736 for (j
= 0; j
< data
->bpw_len
; j
++)
737 *rx_buf
++ = data
->pkt_rx_buff
[j
] & 0xFF;
739 rx_sbuf
= data
->cur_trans
->rx_buf
;
740 for (j
= 0; j
< data
->bpw_len
; j
++)
741 *rx_sbuf
++ = data
->pkt_rx_buff
[j
];
746 static void pch_spi_process_messages(struct work_struct
*pwork
)
748 struct spi_message
*pmsg
;
749 struct pch_spi_data
*data
;
752 data
= container_of(pwork
, struct pch_spi_data
, work
);
753 dev_dbg(&data
->master
->dev
, "%s data initialized\n", __func__
);
755 spin_lock(&data
->lock
);
757 /* check if suspend has been initiated;if yes flush queue */
758 if (data
->board_dat
->suspend_sts
|| (data
->status
== STATUS_EXITING
)) {
759 dev_dbg(&data
->master
->dev
,
760 "%s suspend/remove initiated,flushing queue\n",
763 list_for_each_entry(pmsg
, data
->queue
.next
, queue
) {
766 if (pmsg
->complete
!= 0) {
767 spin_unlock(&data
->lock
);
768 pmsg
->complete(pmsg
->context
);
769 spin_lock(&data
->lock
);
772 /* delete from queue */
773 list_del_init(&pmsg
->queue
);
776 spin_unlock(&data
->lock
);
780 data
->bcurrent_msg_processing
= true;
781 dev_dbg(&data
->master
->dev
,
782 "%s Set data->bcurrent_msg_processing= true\n", __func__
);
784 /* Get the message from the queue and delete it from there. */
785 data
->current_msg
= list_entry(data
->queue
.next
, struct spi_message
,
788 list_del_init(&data
->current_msg
->queue
);
790 data
->current_msg
->status
= 0;
792 pch_spi_select_chip(data
, data
->current_msg
->spi
);
794 spin_unlock(&data
->lock
);
797 /* If we are already processing a message get the next
798 transfer structure from the message otherwise retrieve
799 the 1st transfer request from the message. */
800 spin_lock(&data
->lock
);
802 if (data
->cur_trans
== NULL
) {
804 list_entry(data
->current_msg
->transfers
.
805 next
, struct spi_transfer
,
807 dev_dbg(&data
->master
->dev
,
808 "%s :Getting 1st transfer message\n", __func__
);
811 list_entry(data
->cur_trans
->transfer_list
.next
,
814 dev_dbg(&data
->master
->dev
,
815 "%s :Getting next transfer message\n",
819 spin_unlock(&data
->lock
);
821 pch_spi_set_tx(data
, &bpw
, &pmsg
);
823 /* Control interrupt*/
824 pch_spi_set_ir(data
);
826 /* Disable SPI transfer */
827 pch_spi_setclr_reg(data
->current_chip
->master
, PCH_SPCR
, 0,
831 pch_spi_clear_fifo(data
->master
);
834 pch_spi_copy_rx_data(data
, bpw
);
837 kfree(data
->pkt_rx_buff
);
838 data
->pkt_rx_buff
= NULL
;
840 kfree(data
->pkt_tx_buff
);
841 data
->pkt_tx_buff
= NULL
;
843 /* increment message count */
844 data
->current_msg
->actual_length
+= data
->cur_trans
->len
;
846 dev_dbg(&data
->master
->dev
,
847 "%s:data->current_msg->actual_length=%d\n",
848 __func__
, data
->current_msg
->actual_length
);
850 /* check for delay */
851 if (data
->cur_trans
->delay_usecs
) {
852 dev_dbg(&data
->master
->dev
, "%s:"
853 "delay in usec=%d\n", __func__
,
854 data
->cur_trans
->delay_usecs
);
855 udelay(data
->cur_trans
->delay_usecs
);
858 spin_lock(&data
->lock
);
860 /* No more transfer in this message. */
861 if ((data
->cur_trans
->transfer_list
.next
) ==
862 &(data
->current_msg
->transfers
)) {
863 pch_spi_nomore_transfer(data
, pmsg
);
866 spin_unlock(&data
->lock
);
868 } while (data
->cur_trans
!= NULL
);
871 static void pch_spi_free_resources(struct pch_spi_board_data
*board_dat
)
873 dev_dbg(&board_dat
->pdev
->dev
, "%s ENTRY\n", __func__
);
876 if (board_dat
->data
->wk
!= NULL
) {
877 destroy_workqueue(board_dat
->data
->wk
);
878 board_dat
->data
->wk
= NULL
;
879 dev_dbg(&board_dat
->pdev
->dev
,
880 "%s destroy_workqueue invoked successfully\n",
884 /* disable interrupts & free IRQ */
885 if (board_dat
->irq_reg_sts
) {
886 /* disable interrupts */
887 pch_spi_setclr_reg(board_dat
->data
->master
, PCH_SPCR
, 0,
891 free_irq(board_dat
->pdev
->irq
, board_dat
);
893 dev_dbg(&board_dat
->pdev
->dev
,
894 "%s free_irq invoked successfully\n", __func__
);
896 board_dat
->irq_reg_sts
= false;
899 /* unmap PCI base address */
900 if (board_dat
->data
->io_remap_addr
!= 0) {
901 pci_iounmap(board_dat
->pdev
, board_dat
->data
->io_remap_addr
);
903 board_dat
->data
->io_remap_addr
= 0;
905 dev_dbg(&board_dat
->pdev
->dev
,
906 "%s pci_iounmap invoked successfully\n", __func__
);
909 /* release PCI region */
910 if (board_dat
->pci_req_sts
) {
911 pci_release_regions(board_dat
->pdev
);
912 dev_dbg(&board_dat
->pdev
->dev
,
913 "%s pci_release_regions invoked successfully\n",
915 board_dat
->pci_req_sts
= false;
919 static int pch_spi_get_resources(struct pch_spi_board_data
*board_dat
)
921 void __iomem
*io_remap_addr
;
923 dev_dbg(&board_dat
->pdev
->dev
, "%s ENTRY\n", __func__
);
925 /* create workqueue */
926 board_dat
->data
->wk
= create_singlethread_workqueue(KBUILD_MODNAME
);
927 if (!board_dat
->data
->wk
) {
928 dev_err(&board_dat
->pdev
->dev
,
929 "%s create_singlet hread_workqueue failed\n", __func__
);
934 dev_dbg(&board_dat
->pdev
->dev
,
935 "%s create_singlethread_workqueue success\n", __func__
);
937 retval
= pci_request_regions(board_dat
->pdev
, KBUILD_MODNAME
);
939 dev_err(&board_dat
->pdev
->dev
,
940 "%s request_region failed\n", __func__
);
944 board_dat
->pci_req_sts
= true;
946 io_remap_addr
= pci_iomap(board_dat
->pdev
, 1, 0);
947 if (io_remap_addr
== 0) {
948 dev_err(&board_dat
->pdev
->dev
,
949 "%s pci_iomap failed\n", __func__
);
954 /* calculate base address for all channels */
955 board_dat
->data
->io_remap_addr
= io_remap_addr
;
957 /* reset PCH SPI h/w */
958 pch_spi_reset(board_dat
->data
->master
);
959 dev_dbg(&board_dat
->pdev
->dev
,
960 "%s pch_spi_reset invoked successfully\n", __func__
);
963 retval
= request_irq(board_dat
->pdev
->irq
, pch_spi_handler
,
964 IRQF_SHARED
, KBUILD_MODNAME
, board_dat
);
966 dev_err(&board_dat
->pdev
->dev
,
967 "%s request_irq failed\n", __func__
);
971 dev_dbg(&board_dat
->pdev
->dev
, "%s request_irq returned=%d\n",
974 board_dat
->irq_reg_sts
= true;
975 dev_dbg(&board_dat
->pdev
->dev
, "%s data->irq_reg_sts=true\n", __func__
);
979 dev_err(&board_dat
->pdev
->dev
,
980 "%s FAIL:invoking pch_spi_free_resources\n", __func__
);
981 pch_spi_free_resources(board_dat
);
984 dev_dbg(&board_dat
->pdev
->dev
, "%s Return=%d\n", __func__
, retval
);
989 static int pch_spi_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
992 struct spi_master
*master
;
994 struct pch_spi_board_data
*board_dat
;
997 dev_dbg(&pdev
->dev
, "%s ENTRY\n", __func__
);
999 /* allocate memory for private data */
1000 board_dat
= kzalloc(sizeof(struct pch_spi_board_data
), GFP_KERNEL
);
1001 if (board_dat
== NULL
) {
1003 " %s memory allocation for private data failed\n",
1010 "%s memory allocation for private data success\n", __func__
);
1012 /* enable PCI device */
1013 retval
= pci_enable_device(pdev
);
1015 dev_err(&pdev
->dev
, "%s pci_enable_device FAILED\n", __func__
);
1017 goto err_pci_en_device
;
1020 dev_dbg(&pdev
->dev
, "%s pci_enable_device returned=%d\n",
1023 board_dat
->pdev
= pdev
;
1025 /* alllocate memory for SPI master */
1026 master
= spi_alloc_master(&pdev
->dev
, sizeof(struct pch_spi_data
));
1027 if (master
== NULL
) {
1029 dev_err(&pdev
->dev
, "%s Fail.\n", __func__
);
1030 goto err_spi_alloc_master
;
1034 "%s spi_alloc_master returned non NULL\n", __func__
);
1036 /* initialize members of SPI master */
1037 master
->bus_num
= -1;
1038 master
->num_chipselect
= PCH_MAX_CS
;
1039 master
->setup
= pch_spi_setup
;
1040 master
->transfer
= pch_spi_transfer
;
1042 "%s transfer member of SPI master initialized\n", __func__
);
1044 board_dat
->data
= spi_master_get_devdata(master
);
1046 board_dat
->data
->master
= master
;
1047 board_dat
->data
->n_curnt_chip
= 255;
1048 board_dat
->data
->board_dat
= board_dat
;
1049 board_dat
->data
->status
= STATUS_RUNNING
;
1051 INIT_LIST_HEAD(&board_dat
->data
->queue
);
1052 spin_lock_init(&board_dat
->data
->lock
);
1053 INIT_WORK(&board_dat
->data
->work
, pch_spi_process_messages
);
1054 init_waitqueue_head(&board_dat
->data
->wait
);
1056 /* allocate resources for PCH SPI */
1057 retval
= pch_spi_get_resources(board_dat
);
1059 dev_err(&pdev
->dev
, "%s fail(retval=%d)\n", __func__
, retval
);
1060 goto err_spi_get_resources
;
1063 dev_dbg(&pdev
->dev
, "%s pch_spi_get_resources returned=%d\n",
1066 /* save private data in dev */
1067 pci_set_drvdata(pdev
, board_dat
);
1068 dev_dbg(&pdev
->dev
, "%s invoked pci_set_drvdata\n", __func__
);
1070 /* set master mode */
1071 pch_spi_set_master_mode(master
);
1073 "%s invoked pch_spi_set_master_mode\n", __func__
);
1075 /* Register the controller with the SPI core. */
1076 retval
= spi_register_master(master
);
1079 "%s spi_register_master FAILED\n", __func__
);
1080 goto err_spi_reg_master
;
1083 dev_dbg(&pdev
->dev
, "%s spi_register_master returned=%d\n",
1090 spi_unregister_master(master
);
1091 err_spi_get_resources
:
1092 err_spi_alloc_master
:
1093 spi_master_put(master
);
1094 pci_disable_device(pdev
);
1101 static void pch_spi_remove(struct pci_dev
*pdev
)
1103 struct pch_spi_board_data
*board_dat
= pci_get_drvdata(pdev
);
1106 dev_dbg(&pdev
->dev
, "%s ENTRY\n", __func__
);
1110 "%s pci_get_drvdata returned NULL\n", __func__
);
1114 /* check for any pending messages; no action is taken if the queue
1115 * is still full; but at least we tried. Unload anyway */
1117 spin_lock(&board_dat
->data
->lock
);
1118 board_dat
->data
->status
= STATUS_EXITING
;
1119 while ((list_empty(&board_dat
->data
->queue
) == 0) && --count
) {
1120 dev_dbg(&board_dat
->pdev
->dev
, "%s :queue not empty\n",
1122 spin_unlock(&board_dat
->data
->lock
);
1123 msleep(PCH_SLEEP_TIME
);
1124 spin_lock(&board_dat
->data
->lock
);
1126 spin_unlock(&board_dat
->data
->lock
);
1128 /* Free resources allocated for PCH SPI */
1129 pch_spi_free_resources(board_dat
);
1131 spi_unregister_master(board_dat
->data
->master
);
1133 /* free memory for private data */
1136 pci_set_drvdata(pdev
, NULL
);
1138 /* disable PCI device */
1139 pci_disable_device(pdev
);
1141 dev_dbg(&pdev
->dev
, "%s invoked pci_disable_device\n", __func__
);
1145 static int pch_spi_suspend(struct pci_dev
*pdev
, pm_message_t state
)
1150 struct pch_spi_board_data
*board_dat
= pci_get_drvdata(pdev
);
1152 dev_dbg(&pdev
->dev
, "%s ENTRY\n", __func__
);
1156 "%s pci_get_drvdata returned NULL\n", __func__
);
1161 board_dat
->suspend_sts
= true;
1163 /* check if the current message is processed:
1164 Only after thats done the transfer will be suspended */
1166 while ((--count
) > 0) {
1167 if (!(board_dat
->data
->bcurrent_msg_processing
)) {
1168 dev_dbg(&pdev
->dev
, "%s board_dat->data->bCurrent_"
1169 "msg_processing = false\n", __func__
);
1172 dev_dbg(&pdev
->dev
, "%s board_dat->data->bCurrent_msg_"
1173 "processing = true\n", __func__
);
1175 msleep(PCH_SLEEP_TIME
);
1179 if (board_dat
->irq_reg_sts
) {
1180 /* disable all interrupts */
1181 pch_spi_setclr_reg(board_dat
->data
->master
, PCH_SPCR
, 0,
1183 pch_spi_reset(board_dat
->data
->master
);
1185 free_irq(board_dat
->pdev
->irq
, board_dat
);
1187 board_dat
->irq_reg_sts
= false;
1189 "%s free_irq invoked successfully.\n", __func__
);
1192 /* save config space */
1193 retval
= pci_save_state(pdev
);
1196 dev_dbg(&pdev
->dev
, "%s pci_save_state returned=%d\n",
1198 /* disable PM notifications */
1199 pci_enable_wake(pdev
, PCI_D3hot
, 0);
1201 "%s pci_enable_wake invoked successfully\n", __func__
);
1202 /* disable PCI device */
1203 pci_disable_device(pdev
);
1205 "%s pci_disable_device invoked successfully\n",
1207 /* move device to D3hot state */
1208 pci_set_power_state(pdev
, PCI_D3hot
);
1210 "%s pci_set_power_state invoked successfully\n",
1213 dev_err(&pdev
->dev
, "%s pci_save_state failed\n", __func__
);
1216 dev_dbg(&pdev
->dev
, "%s return=%d\n", __func__
, retval
);
1221 static int pch_spi_resume(struct pci_dev
*pdev
)
1225 struct pch_spi_board_data
*board
= pci_get_drvdata(pdev
);
1226 dev_dbg(&pdev
->dev
, "%s ENTRY\n", __func__
);
1230 "%s pci_get_drvdata returned NULL\n", __func__
);
1234 /* move device to DO power state */
1235 pci_set_power_state(pdev
, PCI_D0
);
1238 pci_restore_state(pdev
);
1240 retval
= pci_enable_device(pdev
);
1243 "%s pci_enable_device failed\n", __func__
);
1245 /* disable PM notifications */
1246 pci_enable_wake(pdev
, PCI_D3hot
, 0);
1248 /* register IRQ handler */
1249 if (!board
->irq_reg_sts
) {
1251 retval
= request_irq(board
->pdev
->irq
, pch_spi_handler
,
1252 IRQF_SHARED
, KBUILD_MODNAME
,
1256 "%s request_irq failed\n", __func__
);
1259 board
->irq_reg_sts
= true;
1261 /* reset PCH SPI h/w */
1262 pch_spi_reset(board
->data
->master
);
1263 pch_spi_set_master_mode(board
->data
->master
);
1265 /* set suspend status to false */
1266 board
->suspend_sts
= false;
1271 dev_dbg(&pdev
->dev
, "%s returning=%d\n", __func__
, retval
);
1276 #define pch_spi_suspend NULL
1277 #define pch_spi_resume NULL
1281 static struct pci_driver pch_spi_pcidev
= {
1283 .id_table
= pch_spi_pcidev_id
,
1284 .probe
= pch_spi_probe
,
1285 .remove
= pch_spi_remove
,
1286 .suspend
= pch_spi_suspend
,
1287 .resume
= pch_spi_resume
,
1290 static int __init
pch_spi_init(void)
1292 return pci_register_driver(&pch_spi_pcidev
);
1294 module_init(pch_spi_init
);
1296 static void __exit
pch_spi_exit(void)
1298 pci_unregister_driver(&pch_spi_pcidev
);
1300 module_exit(pch_spi_exit
);
1302 MODULE_LICENSE("GPL");
1303 MODULE_DESCRIPTION("Topcliff PCH SPI PCI Driver");