1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Cadence SPI controller driver (master mode only)
5 * Copyright (C) 2008 - 2014 Xilinx, Inc.
7 * based on Blackfin On-Chip SPI Driver (spi_bfin5xx.c)
10 #include <linux/clk.h>
11 #include <linux/delay.h>
12 #include <linux/gpio/consumer.h>
13 #include <linux/interrupt.h>
15 #include <linux/module.h>
16 #include <linux/of_irq.h>
17 #include <linux/of_address.h>
18 #include <linux/platform_device.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/spi/spi.h>
22 /* Name of this driver */
23 #define CDNS_SPI_NAME "cdns-spi"
25 /* Register offset definitions */
26 #define CDNS_SPI_CR 0x00 /* Configuration Register, RW */
27 #define CDNS_SPI_ISR 0x04 /* Interrupt Status Register, RO */
28 #define CDNS_SPI_IER 0x08 /* Interrupt Enable Register, WO */
29 #define CDNS_SPI_IDR 0x0c /* Interrupt Disable Register, WO */
30 #define CDNS_SPI_IMR 0x10 /* Interrupt Enabled Mask Register, RO */
31 #define CDNS_SPI_ER 0x14 /* Enable/Disable Register, RW */
32 #define CDNS_SPI_DR 0x18 /* Delay Register, RW */
33 #define CDNS_SPI_TXD 0x1C /* Data Transmit Register, WO */
34 #define CDNS_SPI_RXD 0x20 /* Data Receive Register, RO */
35 #define CDNS_SPI_SICR 0x24 /* Slave Idle Count Register, RW */
36 #define CDNS_SPI_THLD 0x28 /* Transmit FIFO Watermark Register,RW */
38 #define SPI_AUTOSUSPEND_TIMEOUT 3000
40 * SPI Configuration Register bit Masks
42 * This register contains various control bits that affect the operation
43 * of the SPI controller
45 #define CDNS_SPI_CR_MANSTRT 0x00010000 /* Manual TX Start */
46 #define CDNS_SPI_CR_CPHA 0x00000004 /* Clock Phase Control */
47 #define CDNS_SPI_CR_CPOL 0x00000002 /* Clock Polarity Control */
48 #define CDNS_SPI_CR_SSCTRL 0x00003C00 /* Slave Select Mask */
49 #define CDNS_SPI_CR_PERI_SEL 0x00000200 /* Peripheral Select Decode */
50 #define CDNS_SPI_CR_BAUD_DIV 0x00000038 /* Baud Rate Divisor Mask */
51 #define CDNS_SPI_CR_MSTREN 0x00000001 /* Master Enable Mask */
52 #define CDNS_SPI_CR_MANSTRTEN 0x00008000 /* Manual TX Enable Mask */
53 #define CDNS_SPI_CR_SSFORCE 0x00004000 /* Manual SS Enable Mask */
54 #define CDNS_SPI_CR_BAUD_DIV_4 0x00000008 /* Default Baud Div Mask */
55 #define CDNS_SPI_CR_DEFAULT (CDNS_SPI_CR_MSTREN | \
56 CDNS_SPI_CR_SSCTRL | \
57 CDNS_SPI_CR_SSFORCE | \
58 CDNS_SPI_CR_BAUD_DIV_4)
61 * SPI Configuration Register - Baud rate and slave select
63 * These are the values used in the calculation of baud rate divisor and
64 * setting the slave select.
67 #define CDNS_SPI_BAUD_DIV_MAX 7 /* Baud rate divisor maximum */
68 #define CDNS_SPI_BAUD_DIV_MIN 1 /* Baud rate divisor minimum */
69 #define CDNS_SPI_BAUD_DIV_SHIFT 3 /* Baud rate divisor shift in CR */
70 #define CDNS_SPI_SS_SHIFT 10 /* Slave Select field shift in CR */
71 #define CDNS_SPI_SS0 0x1 /* Slave Select zero */
74 * SPI Interrupt Registers bit Masks
76 * All the four interrupt registers (Status/Mask/Enable/Disable) have the same
79 #define CDNS_SPI_IXR_TXOW 0x00000004 /* SPI TX FIFO Overwater */
80 #define CDNS_SPI_IXR_MODF 0x00000002 /* SPI Mode Fault */
81 #define CDNS_SPI_IXR_RXNEMTY 0x00000010 /* SPI RX FIFO Not Empty */
82 #define CDNS_SPI_IXR_DEFAULT (CDNS_SPI_IXR_TXOW | \
84 #define CDNS_SPI_IXR_TXFULL 0x00000008 /* SPI TX Full */
85 #define CDNS_SPI_IXR_ALL 0x0000007F /* SPI all interrupts */
88 * SPI Enable Register bit Masks
90 * This register is used to enable or disable the SPI controller
92 #define CDNS_SPI_ER_ENABLE 0x00000001 /* SPI Enable Bit Mask */
93 #define CDNS_SPI_ER_DISABLE 0x0 /* SPI Disable Bit Mask */
95 /* SPI FIFO depth in bytes */
96 #define CDNS_SPI_FIFO_DEPTH 128
98 /* Default number of chip select lines */
99 #define CDNS_SPI_DEFAULT_NUM_CS 4
102 * struct cdns_spi - This definition defines spi driver instance
103 * @regs: Virtual address of the SPI controller registers
104 * @ref_clk: Pointer to the peripheral clock
105 * @pclk: Pointer to the APB clock
106 * @speed_hz: Current SPI bus clock speed in Hz
107 * @txbuf: Pointer to the TX buffer
108 * @rxbuf: Pointer to the RX buffer
109 * @tx_bytes: Number of bytes left to transfer
110 * @rx_bytes: Number of bytes requested
111 * @dev_busy: Device busy flag
112 * @is_decoded_cs: Flag for decoder property set or not
127 /* Macros for the SPI controller read/write */
128 static inline u32 cdns_spi_read(struct cdns_spi *xspi, u32 offset)
130 return readl_relaxed(xspi->regs + offset);
133 static inline void cdns_spi_write(struct cdns_spi *xspi, u32 offset, u32 val)
135 writel_relaxed(val, xspi->regs + offset);
139 * cdns_spi_init_hw - Initialize the hardware and configure the SPI controller
140 * @xspi: Pointer to the cdns_spi structure
142 * On reset the SPI controller is configured to be in master mode, baud rate
143 * divisor is set to 4, threshold value for TX FIFO not full interrupt is set
144 * to 1 and size of the word to be transferred as 8 bit.
145 * This function initializes the SPI controller to disable and clear all the
146 * interrupts, enable manual slave select and manual start, deselect all the
147 * chip select lines, and enable the SPI controller.
149 static void cdns_spi_init_hw(struct cdns_spi *xspi)
151 u32 ctrl_reg = CDNS_SPI_CR_DEFAULT;
153 if (xspi->is_decoded_cs)
154 ctrl_reg |= CDNS_SPI_CR_PERI_SEL;
156 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
157 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_ALL);
159 /* Clear the RX FIFO */
160 while (cdns_spi_read(xspi, CDNS_SPI_ISR) & CDNS_SPI_IXR_RXNEMTY)
161 cdns_spi_read(xspi, CDNS_SPI_RXD);
163 cdns_spi_write(xspi, CDNS_SPI_ISR, CDNS_SPI_IXR_ALL);
164 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
165 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
169 * cdns_spi_chipselect - Select or deselect the chip select line
170 * @spi: Pointer to the spi_device structure
171 * @enable: Select (1) or deselect (0) the chip select line
173 static void cdns_spi_chipselect(struct spi_device *spi, bool enable)
175 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
178 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
181 /* Deselect the slave */
182 ctrl_reg |= CDNS_SPI_CR_SSCTRL;
184 /* Select the slave */
185 ctrl_reg &= ~CDNS_SPI_CR_SSCTRL;
186 if (!(xspi->is_decoded_cs))
187 ctrl_reg |= ((~(CDNS_SPI_SS0 << spi->chip_select)) <<
191 ctrl_reg |= (spi->chip_select << CDNS_SPI_SS_SHIFT) &
195 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
199 * cdns_spi_config_clock_mode - Sets clock polarity and phase
200 * @spi: Pointer to the spi_device structure
202 * Sets the requested clock polarity and phase.
204 static void cdns_spi_config_clock_mode(struct spi_device *spi)
206 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
207 u32 ctrl_reg, new_ctrl_reg;
209 new_ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
210 ctrl_reg = new_ctrl_reg;
212 /* Set the SPI clock phase and clock polarity */
213 new_ctrl_reg &= ~(CDNS_SPI_CR_CPHA | CDNS_SPI_CR_CPOL);
214 if (spi->mode & SPI_CPHA)
215 new_ctrl_reg |= CDNS_SPI_CR_CPHA;
216 if (spi->mode & SPI_CPOL)
217 new_ctrl_reg |= CDNS_SPI_CR_CPOL;
219 if (new_ctrl_reg != ctrl_reg) {
221 * Just writing the CR register does not seem to apply the clock
222 * setting changes. This is problematic when changing the clock
223 * polarity as it will cause the SPI slave to see spurious clock
224 * transitions. To workaround the issue toggle the ER register.
226 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
227 cdns_spi_write(xspi, CDNS_SPI_CR, new_ctrl_reg);
228 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
233 * cdns_spi_config_clock_freq - Sets clock frequency
234 * @spi: Pointer to the spi_device structure
235 * @transfer: Pointer to the spi_transfer structure which provides
236 * information about next transfer setup parameters
238 * Sets the requested clock frequency.
239 * Note: If the requested frequency is not an exact match with what can be
240 * obtained using the prescalar value the driver sets the clock frequency which
241 * is lower than the requested frequency (maximum lower) for the transfer. If
242 * the requested frequency is higher or lower than that is supported by the SPI
243 * controller the driver will set the highest or lowest frequency supported by
246 static void cdns_spi_config_clock_freq(struct spi_device *spi,
247 struct spi_transfer *transfer)
249 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
250 u32 ctrl_reg, baud_rate_val;
251 unsigned long frequency;
253 frequency = clk_get_rate(xspi->ref_clk);
255 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
257 /* Set the clock frequency */
258 if (xspi->speed_hz != transfer->speed_hz) {
259 /* first valid value is 1 */
260 baud_rate_val = CDNS_SPI_BAUD_DIV_MIN;
261 while ((baud_rate_val < CDNS_SPI_BAUD_DIV_MAX) &&
262 (frequency / (2 << baud_rate_val)) > transfer->speed_hz)
265 ctrl_reg &= ~CDNS_SPI_CR_BAUD_DIV;
266 ctrl_reg |= baud_rate_val << CDNS_SPI_BAUD_DIV_SHIFT;
268 xspi->speed_hz = frequency / (2 << baud_rate_val);
270 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
274 * cdns_spi_setup_transfer - Configure SPI controller for specified transfer
275 * @spi: Pointer to the spi_device structure
276 * @transfer: Pointer to the spi_transfer structure which provides
277 * information about next transfer setup parameters
279 * Sets the operational mode of SPI controller for the next SPI transfer and
280 * sets the requested clock frequency.
284 static int cdns_spi_setup_transfer(struct spi_device *spi,
285 struct spi_transfer *transfer)
287 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
289 cdns_spi_config_clock_freq(spi, transfer);
291 dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u clock speed\n",
292 __func__, spi->mode, spi->bits_per_word,
299 * cdns_spi_fill_tx_fifo - Fills the TX FIFO with as many bytes as possible
300 * @xspi: Pointer to the cdns_spi structure
302 static void cdns_spi_fill_tx_fifo(struct cdns_spi *xspi)
304 unsigned long trans_cnt = 0;
306 while ((trans_cnt < CDNS_SPI_FIFO_DEPTH) &&
307 (xspi->tx_bytes > 0)) {
309 /* When xspi in busy condition, bytes may send failed,
310 * then spi control did't work thoroughly, add one byte delay
312 if (cdns_spi_read(xspi, CDNS_SPI_ISR) &
317 cdns_spi_write(xspi, CDNS_SPI_TXD, *xspi->txbuf++);
319 cdns_spi_write(xspi, CDNS_SPI_TXD, 0);
327 * cdns_spi_irq - Interrupt service routine of the SPI controller
329 * @dev_id: Pointer to the xspi structure
331 * This function handles TX empty and Mode Fault interrupts only.
332 * On TX empty interrupt this function reads the received data from RX FIFO and
333 * fills the TX FIFO if there is any data remaining to be transferred.
334 * On Mode Fault interrupt this function indicates that transfer is completed,
335 * the SPI subsystem will identify the error as the remaining bytes to be
336 * transferred is non-zero.
338 * Return: IRQ_HANDLED when handled; IRQ_NONE otherwise.
340 static irqreturn_t cdns_spi_irq(int irq, void *dev_id)
342 struct spi_master *master = dev_id;
343 struct cdns_spi *xspi = spi_master_get_devdata(master);
344 u32 intr_status, status;
347 intr_status = cdns_spi_read(xspi, CDNS_SPI_ISR);
348 cdns_spi_write(xspi, CDNS_SPI_ISR, intr_status);
350 if (intr_status & CDNS_SPI_IXR_MODF) {
351 /* Indicate that transfer is completed, the SPI subsystem will
352 * identify the error as the remaining bytes to be
353 * transferred is non-zero
355 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_DEFAULT);
356 spi_finalize_current_transfer(master);
357 status = IRQ_HANDLED;
358 } else if (intr_status & CDNS_SPI_IXR_TXOW) {
359 unsigned long trans_cnt;
361 trans_cnt = xspi->rx_bytes - xspi->tx_bytes;
363 /* Read out the data from the RX FIFO */
367 data = cdns_spi_read(xspi, CDNS_SPI_RXD);
369 *xspi->rxbuf++ = data;
375 if (xspi->tx_bytes) {
376 /* There is more data to send */
377 cdns_spi_fill_tx_fifo(xspi);
379 /* Transfer is completed */
380 cdns_spi_write(xspi, CDNS_SPI_IDR,
381 CDNS_SPI_IXR_DEFAULT);
382 spi_finalize_current_transfer(master);
384 status = IRQ_HANDLED;
390 static int cdns_prepare_message(struct spi_master *master,
391 struct spi_message *msg)
393 cdns_spi_config_clock_mode(msg->spi);
398 * cdns_transfer_one - Initiates the SPI transfer
399 * @master: Pointer to spi_master structure
400 * @spi: Pointer to the spi_device structure
401 * @transfer: Pointer to the spi_transfer structure which provides
402 * information about next transfer parameters
404 * This function fills the TX FIFO, starts the SPI transfer and
405 * returns a positive transfer count so that core will wait for completion.
407 * Return: Number of bytes transferred in the last transfer
409 static int cdns_transfer_one(struct spi_master *master,
410 struct spi_device *spi,
411 struct spi_transfer *transfer)
413 struct cdns_spi *xspi = spi_master_get_devdata(master);
415 xspi->txbuf = transfer->tx_buf;
416 xspi->rxbuf = transfer->rx_buf;
417 xspi->tx_bytes = transfer->len;
418 xspi->rx_bytes = transfer->len;
420 cdns_spi_setup_transfer(spi, transfer);
422 cdns_spi_fill_tx_fifo(xspi);
424 cdns_spi_write(xspi, CDNS_SPI_IER, CDNS_SPI_IXR_DEFAULT);
425 return transfer->len;
429 * cdns_prepare_transfer_hardware - Prepares hardware for transfer.
430 * @master: Pointer to the spi_master structure which provides
431 * information about the controller.
433 * This function enables SPI master controller.
437 static int cdns_prepare_transfer_hardware(struct spi_master *master)
439 struct cdns_spi *xspi = spi_master_get_devdata(master);
441 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
447 * cdns_unprepare_transfer_hardware - Relaxes hardware after transfer
448 * @master: Pointer to the spi_master structure which provides
449 * information about the controller.
451 * This function disables the SPI master controller.
455 static int cdns_unprepare_transfer_hardware(struct spi_master *master)
457 struct cdns_spi *xspi = spi_master_get_devdata(master);
459 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
465 * cdns_spi_probe - Probe method for the SPI driver
466 * @pdev: Pointer to the platform_device structure
468 * This function initializes the driver data structures and the hardware.
470 * Return: 0 on success and error value on error
472 static int cdns_spi_probe(struct platform_device *pdev)
475 struct spi_master *master;
476 struct cdns_spi *xspi;
477 struct resource *res;
480 master = spi_alloc_master(&pdev->dev, sizeof(*xspi));
484 xspi = spi_master_get_devdata(master);
485 master->dev.of_node = pdev->dev.of_node;
486 platform_set_drvdata(pdev, master);
488 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
489 xspi->regs = devm_ioremap_resource(&pdev->dev, res);
490 if (IS_ERR(xspi->regs)) {
491 ret = PTR_ERR(xspi->regs);
495 xspi->pclk = devm_clk_get(&pdev->dev, "pclk");
496 if (IS_ERR(xspi->pclk)) {
497 dev_err(&pdev->dev, "pclk clock not found.\n");
498 ret = PTR_ERR(xspi->pclk);
502 xspi->ref_clk = devm_clk_get(&pdev->dev, "ref_clk");
503 if (IS_ERR(xspi->ref_clk)) {
504 dev_err(&pdev->dev, "ref_clk clock not found.\n");
505 ret = PTR_ERR(xspi->ref_clk);
509 ret = clk_prepare_enable(xspi->pclk);
511 dev_err(&pdev->dev, "Unable to enable APB clock.\n");
515 ret = clk_prepare_enable(xspi->ref_clk);
517 dev_err(&pdev->dev, "Unable to enable device clock.\n");
521 ret = of_property_read_u32(pdev->dev.of_node, "num-cs", &num_cs);
523 master->num_chipselect = CDNS_SPI_DEFAULT_NUM_CS;
525 master->num_chipselect = num_cs;
527 ret = of_property_read_u32(pdev->dev.of_node, "is-decoded-cs",
528 &xspi->is_decoded_cs);
530 xspi->is_decoded_cs = 0;
532 /* SPI controller initializations */
533 cdns_spi_init_hw(xspi);
535 pm_runtime_set_active(&pdev->dev);
536 pm_runtime_enable(&pdev->dev);
537 pm_runtime_use_autosuspend(&pdev->dev);
538 pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
540 irq = platform_get_irq(pdev, 0);
543 dev_err(&pdev->dev, "irq number is invalid\n");
547 ret = devm_request_irq(&pdev->dev, irq, cdns_spi_irq,
548 0, pdev->name, master);
551 dev_err(&pdev->dev, "request_irq failed\n");
555 master->use_gpio_descriptors = true;
556 master->prepare_transfer_hardware = cdns_prepare_transfer_hardware;
557 master->prepare_message = cdns_prepare_message;
558 master->transfer_one = cdns_transfer_one;
559 master->unprepare_transfer_hardware = cdns_unprepare_transfer_hardware;
560 master->set_cs = cdns_spi_chipselect;
561 master->auto_runtime_pm = true;
562 master->mode_bits = SPI_CPOL | SPI_CPHA;
564 /* Set to default valid value */
565 master->max_speed_hz = clk_get_rate(xspi->ref_clk) / 4;
566 xspi->speed_hz = master->max_speed_hz;
568 master->bits_per_word_mask = SPI_BPW_MASK(8);
570 ret = spi_register_master(master);
572 dev_err(&pdev->dev, "spi_register_master failed\n");
579 pm_runtime_set_suspended(&pdev->dev);
580 pm_runtime_disable(&pdev->dev);
581 clk_disable_unprepare(xspi->ref_clk);
583 clk_disable_unprepare(xspi->pclk);
585 spi_master_put(master);
590 * cdns_spi_remove - Remove method for the SPI driver
591 * @pdev: Pointer to the platform_device structure
593 * This function is called if a device is physically removed from the system or
594 * if the driver module is being unloaded. It frees all resources allocated to
597 * Return: 0 on success and error value on error
599 static int cdns_spi_remove(struct platform_device *pdev)
601 struct spi_master *master = platform_get_drvdata(pdev);
602 struct cdns_spi *xspi = spi_master_get_devdata(master);
604 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
606 clk_disable_unprepare(xspi->ref_clk);
607 clk_disable_unprepare(xspi->pclk);
608 pm_runtime_set_suspended(&pdev->dev);
609 pm_runtime_disable(&pdev->dev);
611 spi_unregister_master(master);
617 * cdns_spi_suspend - Suspend method for the SPI driver
618 * @dev: Address of the platform_device structure
620 * This function disables the SPI controller and
621 * changes the driver state to "suspend"
623 * Return: 0 on success and error value on error
625 static int __maybe_unused cdns_spi_suspend(struct device *dev)
627 struct spi_master *master = dev_get_drvdata(dev);
629 return spi_master_suspend(master);
633 * cdns_spi_resume - Resume method for the SPI driver
634 * @dev: Address of the platform_device structure
636 * This function changes the driver state to "ready"
638 * Return: 0 on success and error value on error
640 static int __maybe_unused cdns_spi_resume(struct device *dev)
642 struct spi_master *master = dev_get_drvdata(dev);
643 struct cdns_spi *xspi = spi_master_get_devdata(master);
645 cdns_spi_init_hw(xspi);
646 return spi_master_resume(master);
650 * cdns_spi_runtime_resume - Runtime resume method for the SPI driver
651 * @dev: Address of the platform_device structure
653 * This function enables the clocks
655 * Return: 0 on success and error value on error
657 static int __maybe_unused cnds_runtime_resume(struct device *dev)
659 struct spi_master *master = dev_get_drvdata(dev);
660 struct cdns_spi *xspi = spi_master_get_devdata(master);
663 ret = clk_prepare_enable(xspi->pclk);
665 dev_err(dev, "Cannot enable APB clock.\n");
669 ret = clk_prepare_enable(xspi->ref_clk);
671 dev_err(dev, "Cannot enable device clock.\n");
672 clk_disable_unprepare(xspi->pclk);
679 * cdns_spi_runtime_suspend - Runtime suspend method for the SPI driver
680 * @dev: Address of the platform_device structure
682 * This function disables the clocks
686 static int __maybe_unused cnds_runtime_suspend(struct device *dev)
688 struct spi_master *master = dev_get_drvdata(dev);
689 struct cdns_spi *xspi = spi_master_get_devdata(master);
691 clk_disable_unprepare(xspi->ref_clk);
692 clk_disable_unprepare(xspi->pclk);
697 static const struct dev_pm_ops cdns_spi_dev_pm_ops = {
698 SET_RUNTIME_PM_OPS(cnds_runtime_suspend,
699 cnds_runtime_resume, NULL)
700 SET_SYSTEM_SLEEP_PM_OPS(cdns_spi_suspend, cdns_spi_resume)
703 static const struct of_device_id cdns_spi_of_match[] = {
704 { .compatible = "xlnx,zynq-spi-r1p6" },
705 { .compatible = "cdns,spi-r1p6" },
706 { /* end of table */ }
708 MODULE_DEVICE_TABLE(of, cdns_spi_of_match);
710 /* cdns_spi_driver - This structure defines the SPI subsystem platform driver */
711 static struct platform_driver cdns_spi_driver = {
712 .probe = cdns_spi_probe,
713 .remove = cdns_spi_remove,
715 .name = CDNS_SPI_NAME,
716 .of_match_table = cdns_spi_of_match,
717 .pm = &cdns_spi_dev_pm_ops,
721 module_platform_driver(cdns_spi_driver);
723 MODULE_AUTHOR("Xilinx, Inc.");
724 MODULE_DESCRIPTION("Cadence SPI driver");
725 MODULE_LICENSE("GPL");