blob: 5c9516ae4942e5cf8b2ef381d2ecd496803cbf14 [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>
Moritz Fischerb42a33b2017-04-25 11:30:14 -070016#include <linux/gpio.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
Moritz Fischerb42a33b2017-04-25 11:30:14 -0700131struct cdns_spi_device_data {
132 bool gpio_requested;
133};
134
Harini Katakamc474b382014-04-14 14:36:53 +0530135/* Macros for the SPI controller read/write */
136static inline u32 cdns_spi_read(struct cdns_spi *xspi, u32 offset)
137{
138 return readl_relaxed(xspi->regs + offset);
139}
140
141static inline void cdns_spi_write(struct cdns_spi *xspi, u32 offset, u32 val)
142{
143 writel_relaxed(val, xspi->regs + offset);
144}
145
146/**
147 * cdns_spi_init_hw - Initialize the hardware and configure the SPI controller
148 * @xspi: Pointer to the cdns_spi structure
149 *
150 * On reset the SPI controller is configured to be in master mode, baud rate
151 * divisor is set to 4, threshold value for TX FIFO not full interrupt is set
152 * to 1 and size of the word to be transferred as 8 bit.
153 * This function initializes the SPI controller to disable and clear all the
154 * interrupts, enable manual slave select and manual start, deselect all the
155 * chip select lines, and enable the SPI controller.
156 */
157static void cdns_spi_init_hw(struct cdns_spi *xspi)
158{
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530159 u32 ctrl_reg = CDNS_SPI_CR_DEFAULT;
Lars-Peter Clausenee0ebe812014-11-27 16:12:18 +0100160
161 if (xspi->is_decoded_cs)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530162 ctrl_reg |= CDNS_SPI_CR_PERI_SEL;
Lars-Peter Clausenee0ebe812014-11-27 16:12:18 +0100163
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530164 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
165 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_ALL);
Harini Katakamc474b382014-04-14 14:36:53 +0530166
167 /* Clear the RX FIFO */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530168 while (cdns_spi_read(xspi, CDNS_SPI_ISR) & CDNS_SPI_IXR_RXNEMTY)
169 cdns_spi_read(xspi, CDNS_SPI_RXD);
Harini Katakamc474b382014-04-14 14:36:53 +0530170
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530171 cdns_spi_write(xspi, CDNS_SPI_ISR, CDNS_SPI_IXR_ALL);
172 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
173 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530174}
175
176/**
177 * cdns_spi_chipselect - Select or deselect the chip select line
178 * @spi: Pointer to the spi_device structure
Shubhrajyoti Dattab4037362016-04-05 23:37:51 +0530179 * @is_high: Select(0) or deselect (1) the chip select line
Harini Katakamc474b382014-04-14 14:36:53 +0530180 */
181static void cdns_spi_chipselect(struct spi_device *spi, bool is_high)
182{
183 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
184 u32 ctrl_reg;
185
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530186 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
Harini Katakamc474b382014-04-14 14:36:53 +0530187
188 if (is_high) {
189 /* Deselect the slave */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530190 ctrl_reg |= CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530191 } else {
192 /* Select the slave */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530193 ctrl_reg &= ~CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530194 if (!(xspi->is_decoded_cs))
195 ctrl_reg |= ((~(CDNS_SPI_SS0 << spi->chip_select)) <<
196 CDNS_SPI_SS_SHIFT) &
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530197 CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530198 else
199 ctrl_reg |= (spi->chip_select << CDNS_SPI_SS_SHIFT) &
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530200 CDNS_SPI_CR_SSCTRL;
Harini Katakamc474b382014-04-14 14:36:53 +0530201 }
202
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530203 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
Harini Katakamc474b382014-04-14 14:36:53 +0530204}
205
206/**
207 * cdns_spi_config_clock_mode - Sets clock polarity and phase
208 * @spi: Pointer to the spi_device structure
209 *
210 * Sets the requested clock polarity and phase.
211 */
212static void cdns_spi_config_clock_mode(struct spi_device *spi)
213{
214 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200215 u32 ctrl_reg, new_ctrl_reg;
Harini Katakamc474b382014-04-14 14:36:53 +0530216
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530217 new_ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
218 ctrl_reg = new_ctrl_reg;
Harini Katakamc474b382014-04-14 14:36:53 +0530219
220 /* Set the SPI clock phase and clock polarity */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530221 new_ctrl_reg &= ~(CDNS_SPI_CR_CPHA | CDNS_SPI_CR_CPOL);
Harini Katakamc474b382014-04-14 14:36:53 +0530222 if (spi->mode & SPI_CPHA)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530223 new_ctrl_reg |= CDNS_SPI_CR_CPHA;
Harini Katakamc474b382014-04-14 14:36:53 +0530224 if (spi->mode & SPI_CPOL)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530225 new_ctrl_reg |= CDNS_SPI_CR_CPOL;
Harini Katakamc474b382014-04-14 14:36:53 +0530226
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200227 if (new_ctrl_reg != ctrl_reg) {
228 /*
229 * Just writing the CR register does not seem to apply the clock
230 * setting changes. This is problematic when changing the clock
231 * polarity as it will cause the SPI slave to see spurious clock
232 * transitions. To workaround the issue toggle the ER register.
233 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530234 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
235 cdns_spi_write(xspi, CDNS_SPI_CR, new_ctrl_reg);
236 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Lars-Peter Clausena39e65e2014-07-10 11:26:28 +0200237 }
Harini Katakamc474b382014-04-14 14:36:53 +0530238}
239
240/**
241 * cdns_spi_config_clock_freq - Sets clock frequency
242 * @spi: Pointer to the spi_device structure
243 * @transfer: Pointer to the spi_transfer structure which provides
244 * information about next transfer setup parameters
245 *
246 * Sets the requested clock frequency.
247 * Note: If the requested frequency is not an exact match with what can be
248 * obtained using the prescalar value the driver sets the clock frequency which
249 * is lower than the requested frequency (maximum lower) for the transfer. If
250 * the requested frequency is higher or lower than that is supported by the SPI
251 * controller the driver will set the highest or lowest frequency supported by
252 * controller.
253 */
254static void cdns_spi_config_clock_freq(struct spi_device *spi,
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530255 struct spi_transfer *transfer)
Harini Katakamc474b382014-04-14 14:36:53 +0530256{
257 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
258 u32 ctrl_reg, baud_rate_val;
259 unsigned long frequency;
260
261 frequency = clk_get_rate(xspi->ref_clk);
262
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530263 ctrl_reg = cdns_spi_read(xspi, CDNS_SPI_CR);
Harini Katakamc474b382014-04-14 14:36:53 +0530264
265 /* Set the clock frequency */
266 if (xspi->speed_hz != transfer->speed_hz) {
267 /* first valid value is 1 */
268 baud_rate_val = CDNS_SPI_BAUD_DIV_MIN;
269 while ((baud_rate_val < CDNS_SPI_BAUD_DIV_MAX) &&
270 (frequency / (2 << baud_rate_val)) > transfer->speed_hz)
271 baud_rate_val++;
272
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530273 ctrl_reg &= ~CDNS_SPI_CR_BAUD_DIV;
Harini Katakamc474b382014-04-14 14:36:53 +0530274 ctrl_reg |= baud_rate_val << CDNS_SPI_BAUD_DIV_SHIFT;
275
276 xspi->speed_hz = frequency / (2 << baud_rate_val);
277 }
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530278 cdns_spi_write(xspi, CDNS_SPI_CR, ctrl_reg);
Harini Katakamc474b382014-04-14 14:36:53 +0530279}
280
281/**
282 * cdns_spi_setup_transfer - Configure SPI controller for specified transfer
283 * @spi: Pointer to the spi_device structure
284 * @transfer: Pointer to the spi_transfer structure which provides
285 * information about next transfer setup parameters
286 *
287 * Sets the operational mode of SPI controller for the next SPI transfer and
288 * sets the requested clock frequency.
289 *
290 * Return: Always 0
291 */
292static int cdns_spi_setup_transfer(struct spi_device *spi,
293 struct spi_transfer *transfer)
294{
295 struct cdns_spi *xspi = spi_master_get_devdata(spi->master);
296
297 cdns_spi_config_clock_freq(spi, transfer);
298
299 dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u clock speed\n",
300 __func__, spi->mode, spi->bits_per_word,
301 xspi->speed_hz);
302
303 return 0;
304}
305
306/**
307 * cdns_spi_fill_tx_fifo - Fills the TX FIFO with as many bytes as possible
308 * @xspi: Pointer to the cdns_spi structure
309 */
310static void cdns_spi_fill_tx_fifo(struct cdns_spi *xspi)
311{
312 unsigned long trans_cnt = 0;
313
314 while ((trans_cnt < CDNS_SPI_FIFO_DEPTH) &&
315 (xspi->tx_bytes > 0)) {
316 if (xspi->txbuf)
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530317 cdns_spi_write(xspi, CDNS_SPI_TXD, *xspi->txbuf++);
Harini Katakamc474b382014-04-14 14:36:53 +0530318 else
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530319 cdns_spi_write(xspi, CDNS_SPI_TXD, 0);
Harini Katakamc474b382014-04-14 14:36:53 +0530320
321 xspi->tx_bytes--;
322 trans_cnt++;
323 }
324}
325
326/**
327 * cdns_spi_irq - Interrupt service routine of the SPI controller
328 * @irq: IRQ number
329 * @dev_id: Pointer to the xspi structure
330 *
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.
337 *
338 * Return: IRQ_HANDLED when handled; IRQ_NONE otherwise.
339 */
340static irqreturn_t cdns_spi_irq(int irq, void *dev_id)
341{
342 struct spi_master *master = dev_id;
343 struct cdns_spi *xspi = spi_master_get_devdata(master);
344 u32 intr_status, status;
345
346 status = IRQ_NONE;
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530347 intr_status = cdns_spi_read(xspi, CDNS_SPI_ISR);
348 cdns_spi_write(xspi, CDNS_SPI_ISR, intr_status);
Harini Katakamc474b382014-04-14 14:36:53 +0530349
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530350 if (intr_status & CDNS_SPI_IXR_MODF) {
Harini Katakamc474b382014-04-14 14:36:53 +0530351 /* Indicate that transfer is completed, the SPI subsystem will
352 * identify the error as the remaining bytes to be
353 * transferred is non-zero
354 */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530355 cdns_spi_write(xspi, CDNS_SPI_IDR, CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530356 spi_finalize_current_transfer(master);
357 status = IRQ_HANDLED;
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530358 } else if (intr_status & CDNS_SPI_IXR_TXOW) {
Harini Katakamc474b382014-04-14 14:36:53 +0530359 unsigned long trans_cnt;
360
361 trans_cnt = xspi->rx_bytes - xspi->tx_bytes;
362
363 /* Read out the data from the RX FIFO */
364 while (trans_cnt) {
365 u8 data;
366
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530367 data = cdns_spi_read(xspi, CDNS_SPI_RXD);
Harini Katakamc474b382014-04-14 14:36:53 +0530368 if (xspi->rxbuf)
369 *xspi->rxbuf++ = data;
370
371 xspi->rx_bytes--;
372 trans_cnt--;
373 }
374
375 if (xspi->tx_bytes) {
376 /* There is more data to send */
377 cdns_spi_fill_tx_fifo(xspi);
378 } else {
379 /* Transfer is completed */
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530380 cdns_spi_write(xspi, CDNS_SPI_IDR,
381 CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530382 spi_finalize_current_transfer(master);
383 }
384 status = IRQ_HANDLED;
385 }
386
387 return status;
388}
Shubhrajyoti Datta57bb13692016-04-06 14:55:35 +0530389
Lars-Peter Clausenb48b9482014-07-10 11:26:29 +0200390static int cdns_prepare_message(struct spi_master *master,
391 struct spi_message *msg)
392{
393 cdns_spi_config_clock_mode(msg->spi);
394 return 0;
395}
Harini Katakamc474b382014-04-14 14:36:53 +0530396
397/**
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
403 *
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.
406 *
407 * Return: Number of bytes transferred in the last transfer
408 */
409static int cdns_transfer_one(struct spi_master *master,
410 struct spi_device *spi,
411 struct spi_transfer *transfer)
412{
413 struct cdns_spi *xspi = spi_master_get_devdata(master);
414
415 xspi->txbuf = transfer->tx_buf;
416 xspi->rxbuf = transfer->rx_buf;
417 xspi->tx_bytes = transfer->len;
418 xspi->rx_bytes = transfer->len;
419
420 cdns_spi_setup_transfer(spi, transfer);
421
422 cdns_spi_fill_tx_fifo(xspi);
423
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530424 cdns_spi_write(xspi, CDNS_SPI_IER, CDNS_SPI_IXR_DEFAULT);
Harini Katakamc474b382014-04-14 14:36:53 +0530425 return transfer->len;
426}
427
428/**
429 * cdns_prepare_transfer_hardware - Prepares hardware for transfer.
430 * @master: Pointer to the spi_master structure which provides
431 * information about the controller.
432 *
433 * This function enables SPI master controller.
434 *
435 * Return: 0 always
436 */
437static int cdns_prepare_transfer_hardware(struct spi_master *master)
438{
439 struct cdns_spi *xspi = spi_master_get_devdata(master);
440
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530441 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_ENABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530442
443 return 0;
444}
445
446/**
447 * cdns_unprepare_transfer_hardware - Relaxes hardware after transfer
448 * @master: Pointer to the spi_master structure which provides
449 * information about the controller.
450 *
451 * This function disables the SPI master controller.
452 *
453 * Return: 0 always
454 */
455static int cdns_unprepare_transfer_hardware(struct spi_master *master)
456{
457 struct cdns_spi *xspi = spi_master_get_devdata(master);
458
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530459 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530460
461 return 0;
462}
463
Moritz Fischerb42a33b2017-04-25 11:30:14 -0700464static int cdns_spi_setup(struct spi_device *spi)
465{
466
467 int ret = -EINVAL;
468 struct cdns_spi_device_data *cdns_spi_data = spi_get_ctldata(spi);
469
470 /* this is a pin managed by the controller, leave it alone */
471 if (spi->cs_gpio == -ENOENT)
472 return 0;
473
474 /* this seems to be the first time we're here */
475 if (!cdns_spi_data) {
476 cdns_spi_data = kzalloc(sizeof(*cdns_spi_data), GFP_KERNEL);
477 if (!cdns_spi_data)
478 return -ENOMEM;
479 cdns_spi_data->gpio_requested = false;
480 spi_set_ctldata(spi, cdns_spi_data);
481 }
482
483 /* if we haven't done so, grab the gpio */
484 if (!cdns_spi_data->gpio_requested && gpio_is_valid(spi->cs_gpio)) {
485 ret = gpio_request_one(spi->cs_gpio,
486 (spi->mode & SPI_CS_HIGH) ?
487 GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH,
488 dev_name(&spi->dev));
489 if (ret)
490 dev_err(&spi->dev, "can't request chipselect gpio %d\n",
491 spi->cs_gpio);
492 else
493 cdns_spi_data->gpio_requested = true;
494 } else {
495 if (gpio_is_valid(spi->cs_gpio)) {
496 int mode = ((spi->mode & SPI_CS_HIGH) ?
497 GPIOF_OUT_INIT_LOW : GPIOF_OUT_INIT_HIGH);
498
499 ret = gpio_direction_output(spi->cs_gpio, mode);
500 if (ret)
501 dev_err(&spi->dev, "chipselect gpio %d setup failed (%d)\n",
502 spi->cs_gpio, ret);
503 }
504 }
505
506 return ret;
507}
508
509static void cdns_spi_cleanup(struct spi_device *spi)
510{
511 struct cdns_spi_device_data *cdns_spi_data = spi_get_ctldata(spi);
512
513 if (cdns_spi_data) {
514 if (cdns_spi_data->gpio_requested)
515 gpio_free(spi->cs_gpio);
516 kfree(cdns_spi_data);
517 spi_set_ctldata(spi, NULL);
518 }
519
520}
521
Harini Katakamc474b382014-04-14 14:36:53 +0530522/**
523 * cdns_spi_probe - Probe method for the SPI driver
524 * @pdev: Pointer to the platform_device structure
525 *
526 * This function initializes the driver data structures and the hardware.
527 *
528 * Return: 0 on success and error value on error
529 */
530static int cdns_spi_probe(struct platform_device *pdev)
531{
532 int ret = 0, irq;
533 struct spi_master *master;
534 struct cdns_spi *xspi;
535 struct resource *res;
536 u32 num_cs;
537
538 master = spi_alloc_master(&pdev->dev, sizeof(*xspi));
Shubhrajyoti Datta15a1c502016-04-05 23:37:48 +0530539 if (!master)
Harini Katakamc474b382014-04-14 14:36:53 +0530540 return -ENOMEM;
541
542 xspi = spi_master_get_devdata(master);
543 master->dev.of_node = pdev->dev.of_node;
544 platform_set_drvdata(pdev, master);
545
546 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
547 xspi->regs = devm_ioremap_resource(&pdev->dev, res);
548 if (IS_ERR(xspi->regs)) {
549 ret = PTR_ERR(xspi->regs);
550 goto remove_master;
551 }
552
553 xspi->pclk = devm_clk_get(&pdev->dev, "pclk");
554 if (IS_ERR(xspi->pclk)) {
555 dev_err(&pdev->dev, "pclk clock not found.\n");
556 ret = PTR_ERR(xspi->pclk);
557 goto remove_master;
558 }
559
560 xspi->ref_clk = devm_clk_get(&pdev->dev, "ref_clk");
561 if (IS_ERR(xspi->ref_clk)) {
562 dev_err(&pdev->dev, "ref_clk clock not found.\n");
563 ret = PTR_ERR(xspi->ref_clk);
564 goto remove_master;
565 }
566
567 ret = clk_prepare_enable(xspi->pclk);
568 if (ret) {
569 dev_err(&pdev->dev, "Unable to enable APB clock.\n");
570 goto remove_master;
571 }
572
573 ret = clk_prepare_enable(xspi->ref_clk);
574 if (ret) {
575 dev_err(&pdev->dev, "Unable to enable device clock.\n");
576 goto clk_dis_apb;
577 }
578
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530579 pm_runtime_use_autosuspend(&pdev->dev);
580 pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
581 pm_runtime_set_active(&pdev->dev);
Naga Sureshkumar Relli48767fd2017-08-08 10:59:33 +0200582 pm_runtime_enable(&pdev->dev);
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530583
Paul Cercueil3cc29102014-11-27 16:12:17 +0100584 ret = of_property_read_u32(pdev->dev.of_node, "num-cs", &num_cs);
585 if (ret < 0)
586 master->num_chipselect = CDNS_SPI_DEFAULT_NUM_CS;
587 else
588 master->num_chipselect = num_cs;
589
590 ret = of_property_read_u32(pdev->dev.of_node, "is-decoded-cs",
591 &xspi->is_decoded_cs);
592 if (ret < 0)
593 xspi->is_decoded_cs = 0;
594
Harini Katakamc474b382014-04-14 14:36:53 +0530595 /* SPI controller initializations */
596 cdns_spi_init_hw(xspi);
597
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530598 pm_runtime_mark_last_busy(&pdev->dev);
599 pm_runtime_put_autosuspend(&pdev->dev);
600
Harini Katakamc474b382014-04-14 14:36:53 +0530601 irq = platform_get_irq(pdev, 0);
602 if (irq <= 0) {
603 ret = -ENXIO;
604 dev_err(&pdev->dev, "irq number is invalid\n");
Shubhrajyoti Datta50ac6972016-04-05 23:37:50 +0530605 goto clk_dis_all;
Harini Katakamc474b382014-04-14 14:36:53 +0530606 }
607
608 ret = devm_request_irq(&pdev->dev, irq, cdns_spi_irq,
609 0, pdev->name, master);
610 if (ret != 0) {
611 ret = -ENXIO;
612 dev_err(&pdev->dev, "request_irq failed\n");
Shubhrajyoti Datta50ac6972016-04-05 23:37:50 +0530613 goto clk_dis_all;
Harini Katakamc474b382014-04-14 14:36:53 +0530614 }
615
Harini Katakamc474b382014-04-14 14:36:53 +0530616 master->prepare_transfer_hardware = cdns_prepare_transfer_hardware;
Lars-Peter Clausenb48b9482014-07-10 11:26:29 +0200617 master->prepare_message = cdns_prepare_message;
Harini Katakamc474b382014-04-14 14:36:53 +0530618 master->transfer_one = cdns_transfer_one;
619 master->unprepare_transfer_hardware = cdns_unprepare_transfer_hardware;
620 master->set_cs = cdns_spi_chipselect;
Moritz Fischerb42a33b2017-04-25 11:30:14 -0700621 master->setup = cdns_spi_setup;
622 master->cleanup = cdns_spi_cleanup;
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530623 master->auto_runtime_pm = true;
Harini Katakamc474b382014-04-14 14:36:53 +0530624 master->mode_bits = SPI_CPOL | SPI_CPHA;
625
626 /* Set to default valid value */
627 master->max_speed_hz = clk_get_rate(xspi->ref_clk) / 4;
628 xspi->speed_hz = master->max_speed_hz;
629
630 master->bits_per_word_mask = SPI_BPW_MASK(8);
631
632 ret = spi_register_master(master);
633 if (ret) {
634 dev_err(&pdev->dev, "spi_register_master failed\n");
635 goto clk_dis_all;
636 }
637
638 return ret;
639
640clk_dis_all:
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530641 pm_runtime_set_suspended(&pdev->dev);
642 pm_runtime_disable(&pdev->dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530643 clk_disable_unprepare(xspi->ref_clk);
644clk_dis_apb:
645 clk_disable_unprepare(xspi->pclk);
646remove_master:
647 spi_master_put(master);
648 return ret;
649}
650
651/**
652 * cdns_spi_remove - Remove method for the SPI driver
653 * @pdev: Pointer to the platform_device structure
654 *
655 * This function is called if a device is physically removed from the system or
656 * if the driver module is being unloaded. It frees all resources allocated to
657 * the device.
658 *
659 * Return: 0 on success and error value on error
660 */
661static int cdns_spi_remove(struct platform_device *pdev)
662{
663 struct spi_master *master = platform_get_drvdata(pdev);
664 struct cdns_spi *xspi = spi_master_get_devdata(master);
665
Shubhrajyoti Datta24746672016-04-05 23:37:49 +0530666 cdns_spi_write(xspi, CDNS_SPI_ER, CDNS_SPI_ER_DISABLE);
Harini Katakamc474b382014-04-14 14:36:53 +0530667
668 clk_disable_unprepare(xspi->ref_clk);
669 clk_disable_unprepare(xspi->pclk);
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530670 pm_runtime_set_suspended(&pdev->dev);
671 pm_runtime_disable(&pdev->dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530672
673 spi_unregister_master(master);
674
675 return 0;
676}
677
678/**
679 * cdns_spi_suspend - Suspend method for the SPI driver
680 * @dev: Address of the platform_device structure
681 *
682 * This function disables the SPI controller and
683 * changes the driver state to "suspend"
684 *
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530685 * Return: 0 on success and error value on error
Harini Katakamc474b382014-04-14 14:36:53 +0530686 */
687static int __maybe_unused cdns_spi_suspend(struct device *dev)
688{
Geliang Tang9033a5f2016-01-01 20:28:59 +0800689 struct platform_device *pdev = to_platform_device(dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530690 struct spi_master *master = platform_get_drvdata(pdev);
Harini Katakamc474b382014-04-14 14:36:53 +0530691
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530692 return spi_master_suspend(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530693}
694
695/**
696 * cdns_spi_resume - Resume method for the SPI driver
697 * @dev: Address of the platform_device structure
698 *
699 * This function changes the driver state to "ready"
700 *
701 * Return: 0 on success and error value on error
702 */
703static int __maybe_unused cdns_spi_resume(struct device *dev)
704{
Geliang Tang9033a5f2016-01-01 20:28:59 +0800705 struct platform_device *pdev = to_platform_device(dev);
Harini Katakamc474b382014-04-14 14:36:53 +0530706 struct spi_master *master = platform_get_drvdata(pdev);
Shubhrajyoti Datta80274082017-08-08 11:00:03 +0200707 struct cdns_spi *xspi = spi_master_get_devdata(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530708
Shubhrajyoti Datta80274082017-08-08 11:00:03 +0200709 cdns_spi_init_hw(xspi);
Shubhrajyoti Datta6fe9b672016-04-05 23:37:54 +0530710 return spi_master_resume(master);
Harini Katakamc474b382014-04-14 14:36:53 +0530711}
712
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530713/**
714 * cdns_spi_runtime_resume - Runtime resume method for the SPI driver
715 * @dev: Address of the platform_device structure
716 *
717 * This function enables the clocks
718 *
719 * Return: 0 on success and error value on error
720 */
Arnd Bergmann148b1eb2016-04-16 22:39:21 +0200721static int __maybe_unused cnds_runtime_resume(struct device *dev)
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530722{
723 struct spi_master *master = dev_get_drvdata(dev);
724 struct cdns_spi *xspi = spi_master_get_devdata(master);
725 int ret;
726
727 ret = clk_prepare_enable(xspi->pclk);
728 if (ret) {
729 dev_err(dev, "Cannot enable APB clock.\n");
730 return ret;
731 }
732
733 ret = clk_prepare_enable(xspi->ref_clk);
734 if (ret) {
735 dev_err(dev, "Cannot enable device clock.\n");
736 clk_disable(xspi->pclk);
737 return ret;
738 }
739 return 0;
740}
741
742/**
743 * cdns_spi_runtime_suspend - Runtime suspend method for the SPI driver
744 * @dev: Address of the platform_device structure
745 *
746 * This function disables the clocks
747 *
748 * Return: Always 0
749 */
Arnd Bergmann148b1eb2016-04-16 22:39:21 +0200750static int __maybe_unused cnds_runtime_suspend(struct device *dev)
Shubhrajyoti Dattad36ccd92016-04-05 23:37:52 +0530751{
752 struct spi_master *master = dev_get_drvdata(dev);
753 struct cdns_spi *xspi = spi_master_get_devdata(master);
754
755 clk_disable_unprepare(xspi->ref_clk);
756 clk_disable_unprepare(xspi->pclk);
757
758 return 0;
759}
760
761static const struct dev_pm_ops cdns_spi_dev_pm_ops = {
762 SET_RUNTIME_PM_OPS(cnds_runtime_suspend,
763 cnds_runtime_resume, NULL)
764 SET_SYSTEM_SLEEP_PM_OPS(cdns_spi_suspend, cdns_spi_resume)
765};
Harini Katakamc474b382014-04-14 14:36:53 +0530766
Jingoo Hanf7f994a2014-06-03 21:01:40 +0900767static const struct of_device_id cdns_spi_of_match[] = {
Harini Katakamc474b382014-04-14 14:36:53 +0530768 { .compatible = "xlnx,zynq-spi-r1p6" },
769 { .compatible = "cdns,spi-r1p6" },
770 { /* end of table */ }
771};
772MODULE_DEVICE_TABLE(of, cdns_spi_of_match);
773
774/* cdns_spi_driver - This structure defines the SPI subsystem platform driver */
775static struct platform_driver cdns_spi_driver = {
776 .probe = cdns_spi_probe,
777 .remove = cdns_spi_remove,
778 .driver = {
779 .name = CDNS_SPI_NAME,
Harini Katakamc474b382014-04-14 14:36:53 +0530780 .of_match_table = cdns_spi_of_match,
781 .pm = &cdns_spi_dev_pm_ops,
782 },
783};
784
785module_platform_driver(cdns_spi_driver);
786
787MODULE_AUTHOR("Xilinx, Inc.");
788MODULE_DESCRIPTION("Cadence SPI driver");
789MODULE_LICENSE("GPL");