blob: 43d0e79842ac8b900b119d5dd1b5fc0a62cec106 [file] [log] [blame]
Harini Katakamc474b382014-04-14 14:36:53 +05301/*
2 * Cadence SPI controller driver (master mode only)
3 *
4 * Copyright (C) 2008 - 2014 Xilinx, Inc.
5 *
6 * based on Blackfin On-Chip SPI Driver (spi_bfin5xx.c)
7 *
8 * This program is free software; you can redistribute it and/or modify it under
9 * the terms of the GNU General Public License version 2 as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/clk.h>
15#include <linux/delay.h>
Linus Walleijcfeefa72019-01-07 16:51:53 +010016#include <linux/gpio/consumer.h>
Harini Katakamc474b382014-04-14 14:36:53 +053017#include <linux/interrupt.h>
18#include <linux/io.h>
19#include <linux/module.h>
20#include <linux/of_irq.h>
21#include <linux/of_address.h>
22#include <linux/platform_device.h>
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +053023#include <linux/pm_runtime.h>
Harini Katakamc474b382014-04-14 14:36:53 +053024#include <linux/spi/spi.h>
25
26/* Name of this driver */
27#define CDNS_SPI_NAME "cdns-spi"
28
29/* Register offset definitions */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +053030#define CDNS_SPI_CR 0x00 /* Configuration Register, RW */
31#define CDNS_SPI_ISR 0x04 /* Interrupt Status Register, RO */
32#define CDNS_SPI_IER 0x08 /* Interrupt Enable Register, WO */
33#define CDNS_SPI_IDR 0x0c /* Interrupt Disable Register, WO */
34#define CDNS_SPI_IMR 0x10 /* Interrupt Enabled Mask Register, RO */
35#define CDNS_SPI_ER 0x14 /* Enable/Disable Register, RW */
36#define CDNS_SPI_DR 0x18 /* Delay Register, RW */
37#define CDNS_SPI_TXD 0x1C /* Data Transmit Register, WO */
38#define CDNS_SPI_RXD 0x20 /* Data Receive Register, RO */
39#define CDNS_SPI_SICR 0x24 /* Slave Idle Count Register, RW */
40#define CDNS_SPI_THLD 0x28 /* Transmit FIFO Watermark Register,RW */
Harini Katakamc474b382014-04-14 14:36:53 +053041
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +053042#define SPI_AUTOSUSPEND_TIMEOUT 3000
Harini Katakamc474b382014-04-14 14:36:53 +053043/*
44 * SPI Configuration Register bit Masks
45 *
46 * This register contains various control bits that affect the operation
47 * of the SPI controller
48 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +053049#define CDNS_SPI_CR_MANSTRT 0x00010000 /* Manual TX Start */
50#define CDNS_SPI_CR_CPHA 0x00000004 /* Clock Phase Control */
51#define CDNS_SPI_CR_CPOL 0x00000002 /* Clock Polarity Control */
52#define CDNS_SPI_CR_SSCTRL 0x00003C00 /* Slave Select Mask */
53#define CDNS_SPI_CR_PERI_SEL 0x00000200 /* Peripheral Select Decode */
54#define CDNS_SPI_CR_BAUD_DIV 0x00000038 /* Baud Rate Divisor Mask */
55#define CDNS_SPI_CR_MSTREN 0x00000001 /* Master Enable Mask */
56#define CDNS_SPI_CR_MANSTRTEN 0x00008000 /* Manual TX Enable Mask */
57#define CDNS_SPI_CR_SSFORCE 0x00004000 /* Manual SS Enable Mask */
58#define CDNS_SPI_CR_BAUD_DIV_4 0x00000008 /* Default Baud Div Mask */
59#define CDNS_SPI_CR_DEFAULT (CDNS_SPI_CR_MSTREN | \
60 CDNS_SPI_CR_SSCTRL | \
61 CDNS_SPI_CR_SSFORCE | \
62 CDNS_SPI_CR_BAUD_DIV_4)
Harini Katakamc474b382014-04-14 14:36:53 +053063
64/*
65 * SPI Configuration Register - Baud rate and slave select
66 *
67 * These are the values used in the calculation of baud rate divisor and
68 * setting the slave select.
69 */
70
71#define CDNS_SPI_BAUD_DIV_MAX 7 /* Baud rate divisor maximum */
72#define CDNS_SPI_BAUD_DIV_MIN 1 /* Baud rate divisor minimum */
73#define CDNS_SPI_BAUD_DIV_SHIFT 3 /* Baud rate divisor shift in CR */
74#define CDNS_SPI_SS_SHIFT 10 /* Slave Select field shift in CR */
75#define CDNS_SPI_SS0 0x1 /* Slave Select zero */
76
77/*
78 * SPI Interrupt Registers bit Masks
79 *
80 * All the four interrupt registers (Status/Mask/Enable/Disable) have the same
81 * bit definitions.
82 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +053083#define CDNS_SPI_IXR_TXOW 0x00000004 /* SPI TX FIFO Overwater */
84#define CDNS_SPI_IXR_MODF 0x00000002 /* SPI Mode Fault */
85#define CDNS_SPI_IXR_RXNEMTY 0x00000010 /* SPI RX FIFO Not Empty */
86#define CDNS_SPI_IXR_DEFAULT (CDNS_SPI_IXR_TXOW | \
87 CDNS_SPI_IXR_MODF)
88#define CDNS_SPI_IXR_TXFULL 0x00000008 /* SPI TX Full */
89#define CDNS_SPI_IXR_ALL 0x0000007F /* SPI all interrupts */
Harini Katakamc474b382014-04-14 14:36:53 +053090
91/*
92 * SPI Enable Register bit Masks
93 *
94 * This register is used to enable or disable the SPI controller
95 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +053096#define CDNS_SPI_ER_ENABLE 0x00000001 /* SPI Enable Bit Mask */
97#define CDNS_SPI_ER_DISABLE 0x0 /* SPI Disable Bit Mask */
Harini Katakamc474b382014-04-14 14:36:53 +053098
99/* SPI FIFO depth in bytes */
100#define CDNS_SPI_FIFO_DEPTH 128
101
102/* Default number of chip select lines */
103#define CDNS_SPI_DEFAULT_NUM_CS 4
104
105/**
106 * struct cdns_spi - This definition defines spi driver instance
107 * @regs: Virtual address of the SPI controller registers
108 * @ref_clk: Pointer to the peripheral clock
109 * @pclk: Pointer to the APB clock
110 * @speed_hz: Current SPI bus clock speed in Hz
111 * @txbuf: Pointer to the TX buffer
112 * @rxbuf: Pointer to the RX buffer
113 * @tx_bytes: Number of bytes left to transfer
114 * @rx_bytes: Number of bytes requested
115 * @dev_busy: Device busy flag
116 * @is_decoded_cs: Flag for decoder property set or not
117 */
118struct cdns_spi {
119 void __iomem *regs;
120 struct clk *ref_clk;
121 struct clk *pclk;
122 u32 speed_hz;
123 const u8 *txbuf;
124 u8 *rxbuf;
125 int tx_bytes;
126 int rx_bytes;
127 u8 dev_busy;
128 u32 is_decoded_cs;
129};
130
131/* Macros for the SPI controller read/write */
132static inline u32 cdns_spi_read(struct cdns_spi *xspi, u32 offset)
133{
134 return readl_relaxed(xspi->regs + offset);
135}
136
137static inline void cdns_spi_write(struct cdns_spi *xspi, u32 offset, u32 val)
138{
139 writel_relaxed(val, xspi->regs + offset);
140}
141
142/**
143 * cdns_spi_init_hw - Initialize the hardware and configure the SPI controller
144 * @xspi: Pointer to the cdns_spi structure
145 *
146 * On reset the SPI controller is configured to be in master mode, baud rate
147 * divisor is set to 4, threshold value for TX FIFO not full interrupt is set
148 * to 1 and size of the word to be transferred as 8 bit.
149 * This function initializes the SPI controller to disable and clear all the
150 * interrupts, enable manual slave select and manual start, deselect all the
151 * chip select lines, and enable the SPI controller.
152 */
153static void cdns_spi_init_hw(struct cdns_spi *xspi)
154{
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530155 u32 ctrl_reg = CDNS_SPI_CR_DEFAULT;
Lars-Peter Clausenee0ebe812014-11-27 16:12:18 +0100156
157 if (xspi->is_decoded_cs)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530158 ctrl_reg |= CDNS_SPI_CR_PERI_SEL;
Lars-Peter Clausenee0ebe812014-11-27 16:12:18 +0100159
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530160 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
161 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_ALL);
Harini Katakamc474b382014-04-14 14:36:53 +0530162
163 /* Clear the RX FIFO */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530164 while (cdns_spi_read(xspi, CDNS_SPI_ISR) & CDNS_SPI_IXR_RXNEMTY)
165 cdns_spi_read(xspi, CDNS_SPI_RXD);
Harini Katakamc474b382014-04-14 14:36:53 +0530166
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530167 cdns_spi_write(xspi, CDNS_SPI_ISR, CDNS_SPI_IXR_ALL);
168 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
169 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530170}
171
172/**
173 * cdns_spi_chipselect - Select or deselect the chip select line
174 * @spi: Pointer to the spi_device structure
Linus Walleij6046f542019-01-16 09:21:09 +0100175 * @enable: Select (1) or deselect (0) the chip select line
Harini Katakamc474b382014-04-14 14:36:53 +0530176 */
Linus Walleij6046f542019-01-16 09:21:09 +0100177static void cdns_spi_chipselect(struct spi_device *spi, bool enable)
Harini Katakamc474b382014-04-14 14:36:53 +0530178{
179 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
180 u32 ctrl_reg;
181
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530182 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
Harini Katakamc474b382014-04-14 14:36:53 +0530183
Linus Walleij6046f542019-01-16 09:21:09 +0100184 if (!enable) {
Harini Katakamc474b382014-04-14 14:36:53 +0530185 /* Deselect the slave */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530186 ctrl_reg |= CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530187 } else {
188 /* Select the slave */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530189 ctrl_reg &= ~CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530190 if (!(xspi->is_decoded_cs))
191 ctrl_reg |= ((~(CDNS_SPI_SS0 << spi->chip_select)) <<
192 CDNS_SPI_SS_SHIFT) &
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530193 CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530194 else
195 ctrl_reg |= (spi->chip_select << CDNS_SPI_SS_SHIFT) &
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530196 CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530197 }
198
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530199 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
Harini Katakamc474b382014-04-14 14:36:53 +0530200}
201
202/**
203 * cdns_spi_config_clock_mode - Sets clock polarity and phase
204 * @spi: Pointer to the spi_device structure
205 *
206 * Sets the requested clock polarity and phase.
207 */
208static void cdns_spi_config_clock_mode(struct spi_device *spi)
209{
210 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200211 u32 ctrl_reg, new_ctrl_reg;
Harini Katakamc474b382014-04-14 14:36:53 +0530212
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530213 new_ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
214 ctrl_reg = new_ctrl_reg;
Harini Katakamc474b382014-04-14 14:36:53 +0530215
216 /* Set the SPI clock phase and clock polarity */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530217 new_ctrl_reg &= ~(CDNS_SPI_CR_CPHA | CDNS_SPI_CR_CPOL);
Harini Katakamc474b382014-04-14 14:36:53 +0530218 if (spi->mode & SPI_CPHA)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530219 new_ctrl_reg |= CDNS_SPI_CR_CPHA;
Harini Katakamc474b382014-04-14 14:36:53 +0530220 if (spi->mode & SPI_CPOL)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530221 new_ctrl_reg |= CDNS_SPI_CR_CPOL;
Harini Katakamc474b382014-04-14 14:36:53 +0530222
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200223 if (new_ctrl_reg != ctrl_reg) {
224 /*
225 * Just writing the CR register does not seem to apply the clock
226 * setting changes. This is problematic when changing the clock
227 * polarity as it will cause the SPI slave to see spurious clock
228 * transitions. To workaround the issue toggle the ER register.
229 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530230 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
231 cdns_spi_write(xspi, CDNS_SPI_CR, new_ctrl_reg);
232 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200233 }
Harini Katakamc474b382014-04-14 14:36:53 +0530234}
235
236/**
237 * cdns_spi_config_clock_freq - Sets clock frequency
238 * @spi: Pointer to the spi_device structure
239 * @transfer: Pointer to the spi_transfer structure which provides
240 * information about next transfer setup parameters
241 *
242 * Sets the requested clock frequency.
243 * Note: If the requested frequency is not an exact match with what can be
244 * obtained using the prescalar value the driver sets the clock frequency which
245 * is lower than the requested frequency (maximum lower) for the transfer. If
246 * the requested frequency is higher or lower than that is supported by the SPI
247 * controller the driver will set the highest or lowest frequency supported by
248 * controller.
249 */
250static void cdns_spi_config_clock_freq(struct spi_device *spi,
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530251 struct spi_transfer *transfer)
Harini Katakamc474b382014-04-14 14:36:53 +0530252{
253 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
254 u32 ctrl_reg, baud_rate_val;
255 unsigned long frequency;
256
257 frequency = clk_get_rate(xspi->ref_clk);
258
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530259 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
Harini Katakamc474b382014-04-14 14:36:53 +0530260
261 /* Set the clock frequency */
262 if (xspi->speed_hz != transfer->speed_hz) {
263 /* first valid value is 1 */
264 baud_rate_val = CDNS_SPI_BAUD_DIV_MIN;
265 while ((baud_rate_val < CDNS_SPI_BAUD_DIV_MAX) &&
266 (frequency / (2 << baud_rate_val)) > transfer->speed_hz)
267 baud_rate_val++;
268
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530269 ctrl_reg &= ~CDNS_SPI_CR_BAUD_DIV;
Harini Katakamc474b382014-04-14 14:36:53 +0530270 ctrl_reg |= baud_rate_val << CDNS_SPI_BAUD_DIV_SHIFT;
271
272 xspi->speed_hz = frequency / (2 << baud_rate_val);
273 }
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530274 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
Harini Katakamc474b382014-04-14 14:36:53 +0530275}
276
277/**
278 * cdns_spi_setup_transfer - Configure SPI controller for specified transfer
279 * @spi: Pointer to the spi_device structure
280 * @transfer: Pointer to the spi_transfer structure which provides
281 * information about next transfer setup parameters
282 *
283 * Sets the operational mode of SPI controller for the next SPI transfer and
284 * sets the requested clock frequency.
285 *
286 * Return: Always 0
287 */
288static int cdns_spi_setup_transfer(struct spi_device *spi,
289 struct spi_transfer *transfer)
290{
291 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
292
293 cdns_spi_config_clock_freq(spi, transfer);
294
295 dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u clock speed\n",
296 __func__, spi->mode, spi->bits_per_word,
297 xspi->speed_hz);
298
299 return 0;
300}
301
302/**
303 * cdns_spi_fill_tx_fifo - Fills the TX FIFO with as many bytes as possible
304 * @xspi: Pointer to the cdns_spi structure
305 */
306static void cdns_spi_fill_tx_fifo(struct cdns_spi *xspi)
307{
308 unsigned long trans_cnt = 0;
309
310 while ((trans_cnt < CDNS_SPI_FIFO_DEPTH) &&
311 (xspi->tx_bytes > 0)) {
sxauwsk49530e62018-04-17 04:01:27 +0800312
313 /* When xspi in busy condition, bytes may send failed,
314 * then spi control did't work thoroughly, add one byte delay
315 */
316 if (cdns_spi_read(xspi, CDNS_SPI_ISR) &
317 CDNS_SPI_IXR_TXFULL)
Janek Kotas931c4e92018-06-04 11:24:44 +0000318 udelay(10);
sxauwsk49530e62018-04-17 04:01:27 +0800319
Harini Katakamc474b382014-04-14 14:36:53 +0530320 if (xspi->txbuf)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530321 cdns_spi_write(xspi, CDNS_SPI_TXD, *xspi->txbuf++);
Harini Katakamc474b382014-04-14 14:36:53 +0530322 else
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530323 cdns_spi_write(xspi, CDNS_SPI_TXD, 0);
Harini Katakamc474b382014-04-14 14:36:53 +0530324
325 xspi->tx_bytes--;
326 trans_cnt++;
327 }
328}
329
330/**
331 * cdns_spi_irq - Interrupt service routine of the SPI controller
332 * @irq: IRQ number
333 * @dev_id: Pointer to the xspi structure
334 *
335 * This function handles TX empty and Mode Fault interrupts only.
336 * On TX empty interrupt this function reads the received data from RX FIFO and
337 * fills the TX FIFO if there is any data remaining to be transferred.
338 * On Mode Fault interrupt this function indicates that transfer is completed,
339 * the SPI subsystem will identify the error as the remaining bytes to be
340 * transferred is non-zero.
341 *
342 * Return: IRQ_HANDLED when handled; IRQ_NONE otherwise.
343 */
344static irqreturn_t cdns_spi_irq(int irq, void *dev_id)
345{
346 struct spi_master *master = dev_id;
347 struct cdns_spi *xspi = spi_master_get_devdata(master);
348 u32 intr_status, status;
349
350 status = IRQ_NONE;
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530351 intr_status = cdns_spi_read(xspi, CDNS_SPI_ISR);
352 cdns_spi_write(xspi, CDNS_SPI_ISR, intr_status);
Harini Katakamc474b382014-04-14 14:36:53 +0530353
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530354 if (intr_status & CDNS_SPI_IXR_MODF) {
Harini Katakamc474b382014-04-14 14:36:53 +0530355 /* Indicate that transfer is completed, the SPI subsystem will
356 * identify the error as the remaining bytes to be
357 * transferred is non-zero
358 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530359 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530360 spi_finalize_current_transfer(master);
361 status = IRQ_HANDLED;
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530362 } else if (intr_status & CDNS_SPI_IXR_TXOW) {
Harini Katakamc474b382014-04-14 14:36:53 +0530363 unsigned long trans_cnt;
364
365 trans_cnt = xspi->rx_bytes - xspi->tx_bytes;
366
367 /* Read out the data from the RX FIFO */
368 while (trans_cnt) {
369 u8 data;
370
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530371 data = cdns_spi_read(xspi, CDNS_SPI_RXD);
Harini Katakamc474b382014-04-14 14:36:53 +0530372 if (xspi->rxbuf)
373 *xspi->rxbuf++ = data;
374
375 xspi->rx_bytes--;
376 trans_cnt--;
377 }
378
379 if (xspi->tx_bytes) {
380 /* There is more data to send */
381 cdns_spi_fill_tx_fifo(xspi);
382 } else {
383 /* Transfer is completed */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530384 cdns_spi_write(xspi, CDNS_SPI_IDR,
385 CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530386 spi_finalize_current_transfer(master);
387 }
388 status = IRQ_HANDLED;
389 }
390
391 return status;
392}
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530393
Lars-Peter Clausenb48b9482014-07-10 11:26:29 +0200394static int cdns_prepare_message(struct spi_master *master,
395 struct spi_message *msg)
396{
397 cdns_spi_config_clock_mode(msg->spi);
398 return 0;
399}
Harini Katakamc474b382014-04-14 14:36:53 +0530400
401/**
402 * cdns_transfer_one - Initiates the SPI transfer
403 * @master: Pointer to spi_master structure
404 * @spi: Pointer to the spi_device structure
405 * @transfer: Pointer to the spi_transfer structure which provides
406 * information about next transfer parameters
407 *
408 * This function fills the TX FIFO, starts the SPI transfer and
409 * returns a positive transfer count so that core will wait for completion.
410 *
411 * Return: Number of bytes transferred in the last transfer
412 */
413static int cdns_transfer_one(struct spi_master *master,
414 struct spi_device *spi,
415 struct spi_transfer *transfer)
416{
417 struct cdns_spi *xspi = spi_master_get_devdata(master);
418
419 xspi->txbuf = transfer->tx_buf;
420 xspi->rxbuf = transfer->rx_buf;
421 xspi->tx_bytes = transfer->len;
422 xspi->rx_bytes = transfer->len;
423
424 cdns_spi_setup_transfer(spi, transfer);
425
426 cdns_spi_fill_tx_fifo(xspi);
427
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530428 cdns_spi_write(xspi, CDNS_SPI_IER, CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530429 return transfer->len;
430}
431
432/**
433 * cdns_prepare_transfer_hardware - Prepares hardware for transfer.
434 * @master: Pointer to the spi_master structure which provides
435 * information about the controller.
436 *
437 * This function enables SPI master controller.
438 *
439 * Return: 0 always
440 */
441static int cdns_prepare_transfer_hardware(struct spi_master *master)
442{
443 struct cdns_spi *xspi = spi_master_get_devdata(master);
444
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530445 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530446
447 return 0;
448}
449
450/**
451 * cdns_unprepare_transfer_hardware - Relaxes hardware after transfer
452 * @master: Pointer to the spi_master structure which provides
453 * information about the controller.
454 *
455 * This function disables the SPI master controller.
456 *
457 * Return: 0 always
458 */
459static int cdns_unprepare_transfer_hardware(struct spi_master *master)
460{
461 struct cdns_spi *xspi = spi_master_get_devdata(master);
462
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530463 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530464
465 return 0;
466}
467
468/**
469 * cdns_spi_probe - Probe method for the SPI driver
470 * @pdev: Pointer to the platform_device structure
471 *
472 * This function initializes the driver data structures and the hardware.
473 *
474 * Return: 0 on success and error value on error
475 */
476static int cdns_spi_probe(struct platform_device *pdev)
477{
478 int ret = 0, irq;
479 struct spi_master *master;
480 struct cdns_spi *xspi;
481 struct resource *res;
482 u32 num_cs;
483
484 master = spi_alloc_master(&pdev->dev, sizeof(*xspi));
Shubhrajyoti Datta15a1c502016-04-05 23:37:48 +0530485 if (!master)
Harini Katakamc474b382014-04-14 14:36:53 +0530486 return -ENOMEM;
487
488 xspi = spi_master_get_devdata(master);
489 master->dev.of_node = pdev->dev.of_node;
490 platform_set_drvdata(pdev, master);
491
492 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
493 xspi->regs = devm_ioremap_resource(&pdev->dev, res);
494 if (IS_ERR(xspi->regs)) {
495 ret = PTR_ERR(xspi->regs);
496 goto remove_master;
497 }
498
499 xspi->pclk = devm_clk_get(&pdev->dev, "pclk");
500 if (IS_ERR(xspi->pclk)) {
501 dev_err(&pdev->dev, "pclk clock not found.\n");
502 ret = PTR_ERR(xspi->pclk);
503 goto remove_master;
504 }
505
506 xspi->ref_clk = devm_clk_get(&pdev->dev, "ref_clk");
507 if (IS_ERR(xspi->ref_clk)) {
508 dev_err(&pdev->dev, "ref_clk clock not found.\n");
509 ret = PTR_ERR(xspi->ref_clk);
510 goto remove_master;
511 }
512
513 ret = clk_prepare_enable(xspi->pclk);
514 if (ret) {
515 dev_err(&pdev->dev, "Unable to enable APB clock.\n");
516 goto remove_master;
517 }
518
519 ret = clk_prepare_enable(xspi->ref_clk);
520 if (ret) {
521 dev_err(&pdev->dev, "Unable to enable device clock.\n");
522 goto clk_dis_apb;
523 }
524
Paul Cercueil3cc29102014-11-27 16:12:17 +0100525 ret = of_property_read_u32(pdev->dev.of_node, "num-cs", &num_cs);
526 if (ret < 0)
527 master->num_chipselect = CDNS_SPI_DEFAULT_NUM_CS;
528 else
529 master->num_chipselect = num_cs;
530
531 ret = of_property_read_u32(pdev->dev.of_node, "is-decoded-cs",
532 &xspi->is_decoded_cs);
533 if (ret < 0)
534 xspi->is_decoded_cs = 0;
535
Harini Katakamc474b382014-04-14 14:36:53 +0530536 /* SPI controller initializations */
537 cdns_spi_init_hw(xspi);
538
Charles Keepax734882a2019-01-04 18:08:09 +0000539 pm_runtime_set_active(&pdev->dev);
540 pm_runtime_enable(&pdev->dev);
541 pm_runtime_use_autosuspend(&pdev->dev);
542 pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530543
Harini Katakamc474b382014-04-14 14:36:53 +0530544 irq = platform_get_irq(pdev, 0);
545 if (irq <= 0) {
546 ret = -ENXIO;
547 dev_err(&pdev->dev, "irq number is invalid\n");
Shubhrajyoti Datta50ac6972016-04-05 23:37:50 +0530548 goto clk_dis_all;
Harini Katakamc474b382014-04-14 14:36:53 +0530549 }
550
551 ret = devm_request_irq(&pdev->dev, irq, cdns_spi_irq,
552 0, pdev->name, master);
553 if (ret != 0) {
554 ret = -ENXIO;
555 dev_err(&pdev->dev, "request_irq failed\n");
Shubhrajyoti Datta50ac6972016-04-05 23:37:50 +0530556 goto clk_dis_all;
Harini Katakamc474b382014-04-14 14:36:53 +0530557 }
558
Linus Walleijcfeefa72019-01-07 16:51:53 +0100559 master->use_gpio_descriptors = true;
Harini Katakamc474b382014-04-14 14:36:53 +0530560 master->prepare_transfer_hardware = cdns_prepare_transfer_hardware;
Lars-Peter Clausenb48b9482014-07-10 11:26:29 +0200561 master->prepare_message = cdns_prepare_message;
Harini Katakamc474b382014-04-14 14:36:53 +0530562 master->transfer_one = cdns_transfer_one;
563 master->unprepare_transfer_hardware = cdns_unprepare_transfer_hardware;
564 master->set_cs = cdns_spi_chipselect;
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530565 master->auto_runtime_pm = true;
Harini Katakamc474b382014-04-14 14:36:53 +0530566 master->mode_bits = SPI_CPOL | SPI_CPHA;
567
568 /* Set to default valid value */
569 master->max_speed_hz = clk_get_rate(xspi->ref_clk) / 4;
570 xspi->speed_hz = master->max_speed_hz;
571
572 master->bits_per_word_mask = SPI_BPW_MASK(8);
573
574 ret = spi_register_master(master);
575 if (ret) {
576 dev_err(&pdev->dev, "spi_register_master failed\n");
577 goto clk_dis_all;
578 }
579
580 return ret;
581
582clk_dis_all:
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530583 pm_runtime_set_suspended(&pdev->dev);
584 pm_runtime_disable(&pdev->dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530585 clk_disable_unprepare(xspi->ref_clk);
586clk_dis_apb:
587 clk_disable_unprepare(xspi->pclk);
588remove_master:
589 spi_master_put(master);
590 return ret;
591}
592
593/**
594 * cdns_spi_remove - Remove method for the SPI driver
595 * @pdev: Pointer to the platform_device structure
596 *
597 * This function is called if a device is physically removed from the system or
598 * if the driver module is being unloaded. It frees all resources allocated to
599 * the device.
600 *
601 * Return: 0 on success and error value on error
602 */
603static int cdns_spi_remove(struct platform_device *pdev)
604{
605 struct spi_master *master = platform_get_drvdata(pdev);
606 struct cdns_spi *xspi = spi_master_get_devdata(master);
607
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530608 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530609
610 clk_disable_unprepare(xspi->ref_clk);
611 clk_disable_unprepare(xspi->pclk);
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530612 pm_runtime_set_suspended(&pdev->dev);
613 pm_runtime_disable(&pdev->dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530614
615 spi_unregister_master(master);
616
617 return 0;
618}
619
620/**
621 * cdns_spi_suspend - Suspend method for the SPI driver
622 * @dev: Address of the platform_device structure
623 *
624 * This function disables the SPI controller and
625 * changes the driver state to "suspend"
626 *
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530627 * Return: 0 on success and error value on error
Harini Katakamc474b382014-04-14 14:36:53 +0530628 */
629static int __maybe_unused cdns_spi_suspend(struct device *dev)
630{
Wolfram Sange1f16b02018-04-19 16:06:16 +0200631 struct spi_master *master = dev_get_drvdata(dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530632
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530633 return spi_master_suspend(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530634}
635
636/**
637 * cdns_spi_resume - Resume method for the SPI driver
638 * @dev: Address of the platform_device structure
639 *
640 * This function changes the driver state to "ready"
641 *
642 * Return: 0 on success and error value on error
643 */
644static int __maybe_unused cdns_spi_resume(struct device *dev)
645{
Wolfram Sange1f16b02018-04-19 16:06:16 +0200646 struct spi_master *master = dev_get_drvdata(dev);
Shubhrajyoti Datta80274082017-08-08 11:00:03 +0200647 struct cdns_spi *xspi = spi_master_get_devdata(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530648
Shubhrajyoti Datta80274082017-08-08 11:00:03 +0200649 cdns_spi_init_hw(xspi);
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530650 return spi_master_resume(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530651}
652
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530653/**
654 * cdns_spi_runtime_resume - Runtime resume method for the SPI driver
655 * @dev: Address of the platform_device structure
656 *
657 * This function enables the clocks
658 *
659 * Return: 0 on success and error value on error
660 */
Arnd Bergmann148b1eb2016-04-16 22:39:21 +0200661static int __maybe_unused cnds_runtime_resume(struct device *dev)
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530662{
663 struct spi_master *master = dev_get_drvdata(dev);
664 struct cdns_spi *xspi = spi_master_get_devdata(master);
665 int ret;
666
667 ret = clk_prepare_enable(xspi->pclk);
668 if (ret) {
669 dev_err(dev, "Cannot enable APB clock.\n");
670 return ret;
671 }
672
673 ret = clk_prepare_enable(xspi->ref_clk);
674 if (ret) {
675 dev_err(dev, "Cannot enable device clock.\n");
Wei Yongjun2ba87a92018-07-11 13:18:59 +0000676 clk_disable_unprepare(xspi->pclk);
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530677 return ret;
678 }
679 return 0;
680}
681
682/**
683 * cdns_spi_runtime_suspend - Runtime suspend method for the SPI driver
684 * @dev: Address of the platform_device structure
685 *
686 * This function disables the clocks
687 *
688 * Return: Always 0
689 */
Arnd Bergmann148b1eb2016-04-16 22:39:21 +0200690static int __maybe_unused cnds_runtime_suspend(struct device *dev)
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530691{
692 struct spi_master *master = dev_get_drvdata(dev);
693 struct cdns_spi *xspi = spi_master_get_devdata(master);
694
695 clk_disable_unprepare(xspi->ref_clk);
696 clk_disable_unprepare(xspi->pclk);
697
698 return 0;
699}
700
701static const struct dev_pm_ops cdns_spi_dev_pm_ops = {
702 SET_RUNTIME_PM_OPS(cnds_runtime_suspend,
703 cnds_runtime_resume, NULL)
704 SET_SYSTEM_SLEEP_PM_OPS(cdns_spi_suspend, cdns_spi_resume)
705};
Harini Katakamc474b382014-04-14 14:36:53 +0530706
Jingoo Hanf7f994a2014-06-03 21:01:40 +0900707static const struct of_device_id cdns_spi_of_match[] = {
Harini Katakamc474b382014-04-14 14:36:53 +0530708 { .compatible = "xlnx,zynq-spi-r1p6" },
709 { .compatible = "cdns,spi-r1p6" },
710 { /* end of table */ }
711};
712MODULE_DEVICE_TABLE(of, cdns_spi_of_match);
713
714/* cdns_spi_driver - This structure defines the SPI subsystem platform driver */
715static struct platform_driver cdns_spi_driver = {
716 .probe = cdns_spi_probe,
717 .remove = cdns_spi_remove,
718 .driver = {
719 .name = CDNS_SPI_NAME,
Harini Katakamc474b382014-04-14 14:36:53 +0530720 .of_match_table = cdns_spi_of_match,
721 .pm = &cdns_spi_dev_pm_ops,
722 },
723};
724
725module_platform_driver(cdns_spi_driver);
726
727MODULE_AUTHOR("Xilinx, Inc.");
728MODULE_DESCRIPTION("Cadence SPI driver");
729MODULE_LICENSE("GPL");