spi: pl022: Don't touch unspecified bits in interrupt mask
[deliverable/linux.git] / drivers / spi / spi-pl022.c
CommitLineData
b43d65f7 1/*
b43d65f7
LW
2 * A driver for the ARM PL022 PrimeCell SSP/SPI bus master.
3 *
aeef9915 4 * Copyright (C) 2008-2012 ST-Ericsson AB
b43d65f7
LW
5 * Copyright (C) 2006 STMicroelectronics Pvt. Ltd.
6 *
7 * Author: Linus Walleij <linus.walleij@stericsson.com>
8 *
9 * Initial version inspired by:
10 * linux-2.6.17-rc3-mm1/drivers/spi/pxa2xx_spi.c
11 * Initial adoption to PL022 by:
12 * Sachin Verma <sachin.verma@st.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 */
24
b43d65f7
LW
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/device.h>
28#include <linux/ioport.h>
29#include <linux/errno.h>
30#include <linux/interrupt.h>
31#include <linux/spi/spi.h>
b43d65f7
LW
32#include <linux/delay.h>
33#include <linux/clk.h>
34#include <linux/err.h>
35#include <linux/amba/bus.h>
36#include <linux/amba/pl022.h>
37#include <linux/io.h>
5a0e3ad6 38#include <linux/slab.h>
b1b6b9aa
LW
39#include <linux/dmaengine.h>
40#include <linux/dma-mapping.h>
41#include <linux/scatterlist.h>
bcda6ff8 42#include <linux/pm_runtime.h>
f6f46de1 43#include <linux/gpio.h>
6d3952a7 44#include <linux/of_gpio.h>
4f5e1b37 45#include <linux/pinctrl/consumer.h>
b43d65f7
LW
46
47/*
48 * This macro is used to define some register default values.
49 * reg is masked with mask, the OR:ed with an (again masked)
50 * val shifted sb steps to the left.
51 */
52#define SSP_WRITE_BITS(reg, val, mask, sb) \
53 ((reg) = (((reg) & ~(mask)) | (((val)<<(sb)) & (mask))))
54
55/*
56 * This macro is also used to define some default values.
57 * It will just shift val by sb steps to the left and mask
58 * the result with mask.
59 */
60#define GEN_MASK_BITS(val, mask, sb) \
61 (((val)<<(sb)) & (mask))
62
63#define DRIVE_TX 0
64#define DO_NOT_DRIVE_TX 1
65
66#define DO_NOT_QUEUE_DMA 0
67#define QUEUE_DMA 1
68
69#define RX_TRANSFER 1
70#define TX_TRANSFER 2
71
72/*
73 * Macros to access SSP Registers with their offsets
74 */
75#define SSP_CR0(r) (r + 0x000)
76#define SSP_CR1(r) (r + 0x004)
77#define SSP_DR(r) (r + 0x008)
78#define SSP_SR(r) (r + 0x00C)
79#define SSP_CPSR(r) (r + 0x010)
80#define SSP_IMSC(r) (r + 0x014)
81#define SSP_RIS(r) (r + 0x018)
82#define SSP_MIS(r) (r + 0x01C)
83#define SSP_ICR(r) (r + 0x020)
84#define SSP_DMACR(r) (r + 0x024)
db4fa45e 85#define SSP_CSR(r) (r + 0x030) /* vendor extension */
b43d65f7
LW
86#define SSP_ITCR(r) (r + 0x080)
87#define SSP_ITIP(r) (r + 0x084)
88#define SSP_ITOP(r) (r + 0x088)
89#define SSP_TDR(r) (r + 0x08C)
90
91#define SSP_PID0(r) (r + 0xFE0)
92#define SSP_PID1(r) (r + 0xFE4)
93#define SSP_PID2(r) (r + 0xFE8)
94#define SSP_PID3(r) (r + 0xFEC)
95
96#define SSP_CID0(r) (r + 0xFF0)
97#define SSP_CID1(r) (r + 0xFF4)
98#define SSP_CID2(r) (r + 0xFF8)
99#define SSP_CID3(r) (r + 0xFFC)
100
101/*
102 * SSP Control Register 0 - SSP_CR0
103 */
556f4aeb
LW
104#define SSP_CR0_MASK_DSS (0x0FUL << 0)
105#define SSP_CR0_MASK_FRF (0x3UL << 4)
b43d65f7
LW
106#define SSP_CR0_MASK_SPO (0x1UL << 6)
107#define SSP_CR0_MASK_SPH (0x1UL << 7)
108#define SSP_CR0_MASK_SCR (0xFFUL << 8)
556f4aeb
LW
109
110/*
111 * The ST version of this block moves som bits
112 * in SSP_CR0 and extends it to 32 bits
113 */
114#define SSP_CR0_MASK_DSS_ST (0x1FUL << 0)
115#define SSP_CR0_MASK_HALFDUP_ST (0x1UL << 5)
116#define SSP_CR0_MASK_CSS_ST (0x1FUL << 16)
117#define SSP_CR0_MASK_FRF_ST (0x3UL << 21)
118
b43d65f7
LW
119/*
120 * SSP Control Register 0 - SSP_CR1
121 */
122#define SSP_CR1_MASK_LBM (0x1UL << 0)
123#define SSP_CR1_MASK_SSE (0x1UL << 1)
124#define SSP_CR1_MASK_MS (0x1UL << 2)
125#define SSP_CR1_MASK_SOD (0x1UL << 3)
b43d65f7
LW
126
127/*
556f4aeb
LW
128 * The ST version of this block adds some bits
129 * in SSP_CR1
b43d65f7 130 */
556f4aeb
LW
131#define SSP_CR1_MASK_RENDN_ST (0x1UL << 4)
132#define SSP_CR1_MASK_TENDN_ST (0x1UL << 5)
133#define SSP_CR1_MASK_MWAIT_ST (0x1UL << 6)
134#define SSP_CR1_MASK_RXIFLSEL_ST (0x7UL << 7)
135#define SSP_CR1_MASK_TXIFLSEL_ST (0x7UL << 10)
781c7b12
LW
136/* This one is only in the PL023 variant */
137#define SSP_CR1_MASK_FBCLKDEL_ST (0x7UL << 13)
b43d65f7
LW
138
139/*
140 * SSP Status Register - SSP_SR
141 */
142#define SSP_SR_MASK_TFE (0x1UL << 0) /* Transmit FIFO empty */
143#define SSP_SR_MASK_TNF (0x1UL << 1) /* Transmit FIFO not full */
144#define SSP_SR_MASK_RNE (0x1UL << 2) /* Receive FIFO not empty */
556f4aeb 145#define SSP_SR_MASK_RFF (0x1UL << 3) /* Receive FIFO full */
b43d65f7
LW
146#define SSP_SR_MASK_BSY (0x1UL << 4) /* Busy Flag */
147
148/*
149 * SSP Clock Prescale Register - SSP_CPSR
150 */
151#define SSP_CPSR_MASK_CPSDVSR (0xFFUL << 0)
152
153/*
154 * SSP Interrupt Mask Set/Clear Register - SSP_IMSC
155 */
156#define SSP_IMSC_MASK_RORIM (0x1UL << 0) /* Receive Overrun Interrupt mask */
157#define SSP_IMSC_MASK_RTIM (0x1UL << 1) /* Receive timeout Interrupt mask */
158#define SSP_IMSC_MASK_RXIM (0x1UL << 2) /* Receive FIFO Interrupt mask */
159#define SSP_IMSC_MASK_TXIM (0x1UL << 3) /* Transmit FIFO Interrupt mask */
160
161/*
162 * SSP Raw Interrupt Status Register - SSP_RIS
163 */
164/* Receive Overrun Raw Interrupt status */
165#define SSP_RIS_MASK_RORRIS (0x1UL << 0)
166/* Receive Timeout Raw Interrupt status */
167#define SSP_RIS_MASK_RTRIS (0x1UL << 1)
168/* Receive FIFO Raw Interrupt status */
169#define SSP_RIS_MASK_RXRIS (0x1UL << 2)
170/* Transmit FIFO Raw Interrupt status */
171#define SSP_RIS_MASK_TXRIS (0x1UL << 3)
172
173/*
174 * SSP Masked Interrupt Status Register - SSP_MIS
175 */
176/* Receive Overrun Masked Interrupt status */
177#define SSP_MIS_MASK_RORMIS (0x1UL << 0)
178/* Receive Timeout Masked Interrupt status */
179#define SSP_MIS_MASK_RTMIS (0x1UL << 1)
180/* Receive FIFO Masked Interrupt status */
181#define SSP_MIS_MASK_RXMIS (0x1UL << 2)
182/* Transmit FIFO Masked Interrupt status */
183#define SSP_MIS_MASK_TXMIS (0x1UL << 3)
184
185/*
186 * SSP Interrupt Clear Register - SSP_ICR
187 */
188/* Receive Overrun Raw Clear Interrupt bit */
189#define SSP_ICR_MASK_RORIC (0x1UL << 0)
190/* Receive Timeout Clear Interrupt bit */
191#define SSP_ICR_MASK_RTIC (0x1UL << 1)
192
193/*
194 * SSP DMA Control Register - SSP_DMACR
195 */
196/* Receive DMA Enable bit */
197#define SSP_DMACR_MASK_RXDMAE (0x1UL << 0)
198/* Transmit DMA Enable bit */
199#define SSP_DMACR_MASK_TXDMAE (0x1UL << 1)
200
db4fa45e
AB
201/*
202 * SSP Chip Select Control Register - SSP_CSR
203 * (vendor extension)
204 */
205#define SSP_CSR_CSVALUE_MASK (0x1FUL << 0)
206
b43d65f7
LW
207/*
208 * SSP Integration Test control Register - SSP_ITCR
209 */
210#define SSP_ITCR_MASK_ITEN (0x1UL << 0)
211#define SSP_ITCR_MASK_TESTFIFO (0x1UL << 1)
212
213/*
214 * SSP Integration Test Input Register - SSP_ITIP
215 */
216#define ITIP_MASK_SSPRXD (0x1UL << 0)
217#define ITIP_MASK_SSPFSSIN (0x1UL << 1)
218#define ITIP_MASK_SSPCLKIN (0x1UL << 2)
219#define ITIP_MASK_RXDMAC (0x1UL << 3)
220#define ITIP_MASK_TXDMAC (0x1UL << 4)
221#define ITIP_MASK_SSPTXDIN (0x1UL << 5)
222
223/*
224 * SSP Integration Test output Register - SSP_ITOP
225 */
226#define ITOP_MASK_SSPTXD (0x1UL << 0)
227#define ITOP_MASK_SSPFSSOUT (0x1UL << 1)
228#define ITOP_MASK_SSPCLKOUT (0x1UL << 2)
229#define ITOP_MASK_SSPOEn (0x1UL << 3)
230#define ITOP_MASK_SSPCTLOEn (0x1UL << 4)
231#define ITOP_MASK_RORINTR (0x1UL << 5)
232#define ITOP_MASK_RTINTR (0x1UL << 6)
233#define ITOP_MASK_RXINTR (0x1UL << 7)
234#define ITOP_MASK_TXINTR (0x1UL << 8)
235#define ITOP_MASK_INTR (0x1UL << 9)
236#define ITOP_MASK_RXDMABREQ (0x1UL << 10)
237#define ITOP_MASK_RXDMASREQ (0x1UL << 11)
238#define ITOP_MASK_TXDMABREQ (0x1UL << 12)
239#define ITOP_MASK_TXDMASREQ (0x1UL << 13)
240
241/*
242 * SSP Test Data Register - SSP_TDR
243 */
556f4aeb 244#define TDR_MASK_TESTDATA (0xFFFFFFFF)
b43d65f7
LW
245
246/*
247 * Message State
248 * we use the spi_message.state (void *) pointer to
249 * hold a single state value, that's why all this
250 * (void *) casting is done here.
251 */
556f4aeb
LW
252#define STATE_START ((void *) 0)
253#define STATE_RUNNING ((void *) 1)
254#define STATE_DONE ((void *) 2)
255#define STATE_ERROR ((void *) -1)
b43d65f7 256
b43d65f7
LW
257/*
258 * SSP State - Whether Enabled or Disabled
259 */
556f4aeb
LW
260#define SSP_DISABLED (0)
261#define SSP_ENABLED (1)
b43d65f7
LW
262
263/*
264 * SSP DMA State - Whether DMA Enabled or Disabled
265 */
556f4aeb
LW
266#define SSP_DMA_DISABLED (0)
267#define SSP_DMA_ENABLED (1)
b43d65f7
LW
268
269/*
270 * SSP Clock Defaults
271 */
556f4aeb
LW
272#define SSP_DEFAULT_CLKRATE 0x2
273#define SSP_DEFAULT_PRESCALE 0x40
b43d65f7
LW
274
275/*
276 * SSP Clock Parameter ranges
277 */
278#define CPSDVR_MIN 0x02
279#define CPSDVR_MAX 0xFE
280#define SCR_MIN 0x00
281#define SCR_MAX 0xFF
282
283/*
284 * SSP Interrupt related Macros
285 */
286#define DEFAULT_SSP_REG_IMSC 0x0UL
287#define DISABLE_ALL_INTERRUPTS DEFAULT_SSP_REG_IMSC
85fa4e1f
AS
288#define ENABLE_ALL_INTERRUPTS ( \
289 SSP_IMSC_MASK_RORIM | \
290 SSP_IMSC_MASK_RTIM | \
291 SSP_IMSC_MASK_RXIM | \
292 SSP_IMSC_MASK_TXIM \
293)
b43d65f7
LW
294
295#define CLEAR_ALL_INTERRUPTS 0x3
296
a18c266f
MT
297#define SPI_POLLING_TIMEOUT 1000
298
b43d65f7
LW
299/*
300 * The type of reading going on on this chip
301 */
302enum ssp_reading {
303 READING_NULL,
304 READING_U8,
305 READING_U16,
306 READING_U32
307};
308
309/**
310 * The type of writing going on on this chip
311 */
312enum ssp_writing {
313 WRITING_NULL,
314 WRITING_U8,
315 WRITING_U16,
316 WRITING_U32
317};
318
319/**
320 * struct vendor_data - vendor-specific config parameters
321 * for PL022 derivates
322 * @fifodepth: depth of FIFOs (both)
323 * @max_bpw: maximum number of bits per word
324 * @unidir: supports unidirection transfers
556f4aeb
LW
325 * @extended_cr: 32 bit wide control register 0 with extra
326 * features and extra features in CR1 as found in the ST variants
781c7b12 327 * @pl023: supports a subset of the ST extensions called "PL023"
db4fa45e 328 * @internal_cs_ctrl: supports chip select control register
b43d65f7
LW
329 */
330struct vendor_data {
331 int fifodepth;
332 int max_bpw;
333 bool unidir;
556f4aeb 334 bool extended_cr;
781c7b12 335 bool pl023;
06fb01fd 336 bool loopback;
db4fa45e 337 bool internal_cs_ctrl;
b43d65f7
LW
338};
339
340/**
341 * struct pl022 - This is the private SSP driver data structure
342 * @adev: AMBA device model hookup
12e8b325
LW
343 * @vendor: vendor data for the IP block
344 * @phybase: the physical memory where the SSP device resides
345 * @virtbase: the virtual memory where the SSP is mapped
346 * @clk: outgoing clock "SPICLK" for the SPI bus
b43d65f7
LW
347 * @master: SPI framework hookup
348 * @master_info: controller-specific data from machine setup
14af60b6
CB
349 * @kworker: thread struct for message pump
350 * @kworker_task: pointer to task for message pump kworker thread
351 * @pump_messages: work struct for scheduling work to the message pump
12e8b325
LW
352 * @queue_lock: spinlock to syncronise access to message queue
353 * @queue: message queue
14af60b6
CB
354 * @busy: message pump is busy
355 * @running: message pump is running
b43d65f7
LW
356 * @pump_transfers: Tasklet used in Interrupt Transfer mode
357 * @cur_msg: Pointer to current spi_message being processed
358 * @cur_transfer: Pointer to current spi_transfer
359 * @cur_chip: pointer to current clients chip(assigned from controller_state)
8b8d7191
VS
360 * @next_msg_cs_active: the next message in the queue has been examined
361 * and it was found that it uses the same chip select as the previous
362 * message, so we left it active after the previous transfer, and it's
363 * active already.
b43d65f7
LW
364 * @tx: current position in TX buffer to be read
365 * @tx_end: end position in TX buffer to be read
366 * @rx: current position in RX buffer to be written
367 * @rx_end: end position in RX buffer to be written
12e8b325
LW
368 * @read: the type of read currently going on
369 * @write: the type of write currently going on
370 * @exp_fifo_level: expected FIFO level
371 * @dma_rx_channel: optional channel for RX DMA
372 * @dma_tx_channel: optional channel for TX DMA
373 * @sgt_rx: scattertable for the RX transfer
374 * @sgt_tx: scattertable for the TX transfer
375 * @dummypage: a dummy page used for driving data on the bus with DMA
f6f46de1
RS
376 * @cur_cs: current chip select (gpio)
377 * @chipselects: list of chipselects (gpios)
b43d65f7
LW
378 */
379struct pl022 {
380 struct amba_device *adev;
381 struct vendor_data *vendor;
382 resource_size_t phybase;
383 void __iomem *virtbase;
384 struct clk *clk;
385 struct spi_master *master;
386 struct pl022_ssp_controller *master_info;
ffbbdd21 387 /* Message per-transfer pump */
b43d65f7
LW
388 struct tasklet_struct pump_transfers;
389 struct spi_message *cur_msg;
390 struct spi_transfer *cur_transfer;
391 struct chip_data *cur_chip;
8b8d7191 392 bool next_msg_cs_active;
b43d65f7
LW
393 void *tx;
394 void *tx_end;
395 void *rx;
396 void *rx_end;
397 enum ssp_reading read;
398 enum ssp_writing write;
fc05475f 399 u32 exp_fifo_level;
083be3f0
LW
400 enum ssp_rx_level_trig rx_lev_trig;
401 enum ssp_tx_level_trig tx_lev_trig;
b1b6b9aa
LW
402 /* DMA settings */
403#ifdef CONFIG_DMA_ENGINE
404 struct dma_chan *dma_rx_channel;
405 struct dma_chan *dma_tx_channel;
406 struct sg_table sgt_rx;
407 struct sg_table sgt_tx;
408 char *dummypage;
ffbbdd21 409 bool dma_running;
b1b6b9aa 410#endif
f6f46de1
RS
411 int cur_cs;
412 int *chipselects;
b43d65f7
LW
413};
414
415/**
416 * struct chip_data - To maintain runtime state of SSP for each client chip
556f4aeb
LW
417 * @cr0: Value of control register CR0 of SSP - on later ST variants this
418 * register is 32 bits wide rather than just 16
b43d65f7
LW
419 * @cr1: Value of control register CR1 of SSP
420 * @dmacr: Value of DMA control Register of SSP
421 * @cpsr: Value of Clock prescale register
422 * @n_bytes: how many bytes(power of 2) reqd for a given data width of client
423 * @enable_dma: Whether to enable DMA or not
b43d65f7 424 * @read: function ptr to be used to read when doing xfer for this chip
12e8b325 425 * @write: function ptr to be used to write when doing xfer for this chip
b43d65f7
LW
426 * @cs_control: chip select callback provided by chip
427 * @xfer_type: polling/interrupt/DMA
428 *
429 * Runtime state of the SSP controller, maintained per chip,
430 * This would be set according to the current message that would be served
431 */
432struct chip_data {
556f4aeb 433 u32 cr0;
b43d65f7
LW
434 u16 cr1;
435 u16 dmacr;
436 u16 cpsr;
437 u8 n_bytes;
b1b6b9aa 438 bool enable_dma;
b43d65f7
LW
439 enum ssp_reading read;
440 enum ssp_writing write;
441 void (*cs_control) (u32 command);
442 int xfer_type;
443};
444
445/**
446 * null_cs_control - Dummy chip select function
447 * @command: select/delect the chip
448 *
449 * If no chip select function is provided by client this is used as dummy
450 * chip select
451 */
452static void null_cs_control(u32 command)
453{
454 pr_debug("pl022: dummy chip select control, CS=0x%x\n", command);
455}
456
db4fa45e
AB
457/**
458 * internal_cs_control - Control chip select signals via SSP_CSR.
459 * @pl022: SSP driver private data structure
460 * @command: select/delect the chip
461 *
462 * Used on controller with internal chip select control via SSP_CSR register
463 * (vendor extension). Each of the 5 LSB in the register controls one chip
464 * select signal.
465 */
466static void internal_cs_control(struct pl022 *pl022, u32 command)
467{
468 u32 tmp;
469
470 tmp = readw(SSP_CSR(pl022->virtbase));
471 if (command == SSP_CHIP_SELECT)
472 tmp &= ~BIT(pl022->cur_cs);
473 else
474 tmp |= BIT(pl022->cur_cs);
475 writew(tmp, SSP_CSR(pl022->virtbase));
476}
477
f6f46de1
RS
478static void pl022_cs_control(struct pl022 *pl022, u32 command)
479{
db4fa45e
AB
480 if (pl022->vendor->internal_cs_ctrl)
481 internal_cs_control(pl022, command);
482 else if (gpio_is_valid(pl022->cur_cs))
f6f46de1
RS
483 gpio_set_value(pl022->cur_cs, command);
484 else
485 pl022->cur_chip->cs_control(command);
486}
487
b43d65f7
LW
488/**
489 * giveback - current spi_message is over, schedule next message and call
490 * callback of this message. Assumes that caller already
491 * set message->status; dma and pio irqs are blocked
492 * @pl022: SSP driver private data structure
493 */
494static void giveback(struct pl022 *pl022)
495{
496 struct spi_transfer *last_transfer;
8b8d7191 497 pl022->next_msg_cs_active = false;
b43d65f7 498
23e2c2aa
AL
499 last_transfer = list_last_entry(&pl022->cur_msg->transfers,
500 struct spi_transfer, transfer_list);
b43d65f7
LW
501
502 /* Delay if requested before any change in chip select */
503 if (last_transfer->delay_usecs)
504 /*
505 * FIXME: This runs in interrupt context.
506 * Is this really smart?
507 */
508 udelay(last_transfer->delay_usecs);
509
8b8d7191 510 if (!last_transfer->cs_change) {
b43d65f7
LW
511 struct spi_message *next_msg;
512
8b8d7191
VS
513 /*
514 * cs_change was not set. We can keep the chip select
515 * enabled if there is message in the queue and it is
516 * for the same spi device.
b43d65f7
LW
517 *
518 * We cannot postpone this until pump_messages, because
519 * after calling msg->complete (below) the driver that
520 * sent the current message could be unloaded, which
521 * could invalidate the cs_control() callback...
522 */
b43d65f7 523 /* get a pointer to the next message, if any */
ffbbdd21 524 next_msg = spi_get_next_queued_message(pl022->master);
b43d65f7 525
8b8d7191
VS
526 /*
527 * see if the next and current messages point
528 * to the same spi device.
b43d65f7 529 */
8b8d7191 530 if (next_msg && next_msg->spi != pl022->cur_msg->spi)
b43d65f7 531 next_msg = NULL;
8b8d7191 532 if (!next_msg || pl022->cur_msg->state == STATE_ERROR)
f6f46de1 533 pl022_cs_control(pl022, SSP_CHIP_DESELECT);
8b8d7191
VS
534 else
535 pl022->next_msg_cs_active = true;
ffbbdd21 536
b43d65f7 537 }
8b8d7191 538
8b8d7191
VS
539 pl022->cur_msg = NULL;
540 pl022->cur_transfer = NULL;
541 pl022->cur_chip = NULL;
ffbbdd21 542 spi_finalize_current_message(pl022->master);
fd316941
VS
543
544 /* disable the SPI/SSP operation */
545 writew((readw(SSP_CR1(pl022->virtbase)) &
546 (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase));
547
b43d65f7
LW
548}
549
550/**
551 * flush - flush the FIFO to reach a clean state
552 * @pl022: SSP driver private data structure
553 */
554static int flush(struct pl022 *pl022)
555{
556 unsigned long limit = loops_per_jiffy << 1;
557
558 dev_dbg(&pl022->adev->dev, "flush\n");
559 do {
560 while (readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE)
561 readw(SSP_DR(pl022->virtbase));
562 } while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_BSY) && limit--);
fc05475f
LW
563
564 pl022->exp_fifo_level = 0;
565
b43d65f7
LW
566 return limit;
567}
568
569/**
570 * restore_state - Load configuration of current chip
571 * @pl022: SSP driver private data structure
572 */
573static void restore_state(struct pl022 *pl022)
574{
575 struct chip_data *chip = pl022->cur_chip;
576
556f4aeb
LW
577 if (pl022->vendor->extended_cr)
578 writel(chip->cr0, SSP_CR0(pl022->virtbase));
579 else
580 writew(chip->cr0, SSP_CR0(pl022->virtbase));
b43d65f7
LW
581 writew(chip->cr1, SSP_CR1(pl022->virtbase));
582 writew(chip->dmacr, SSP_DMACR(pl022->virtbase));
583 writew(chip->cpsr, SSP_CPSR(pl022->virtbase));
584 writew(DISABLE_ALL_INTERRUPTS, SSP_IMSC(pl022->virtbase));
585 writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase));
586}
587
b43d65f7
LW
588/*
589 * Default SSP Register Values
590 */
591#define DEFAULT_SSP_REG_CR0 ( \
592 GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS, 0) | \
556f4aeb
LW
593 GEN_MASK_BITS(SSP_INTERFACE_MOTOROLA_SPI, SSP_CR0_MASK_FRF, 4) | \
594 GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \
595 GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \
596 GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) \
597)
598
599/* ST versions have slightly different bit layout */
600#define DEFAULT_SSP_REG_CR0_ST ( \
601 GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS_ST, 0) | \
602 GEN_MASK_BITS(SSP_MICROWIRE_CHANNEL_FULL_DUPLEX, SSP_CR0_MASK_HALFDUP_ST, 5) | \
b43d65f7 603 GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \
ee2b805c 604 GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \
556f4aeb
LW
605 GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) | \
606 GEN_MASK_BITS(SSP_BITS_8, SSP_CR0_MASK_CSS_ST, 16) | \
607 GEN_MASK_BITS(SSP_INTERFACE_MOTOROLA_SPI, SSP_CR0_MASK_FRF_ST, 21) \
b43d65f7
LW
608)
609
781c7b12
LW
610/* The PL023 version is slightly different again */
611#define DEFAULT_SSP_REG_CR0_ST_PL023 ( \
612 GEN_MASK_BITS(SSP_DATA_BITS_12, SSP_CR0_MASK_DSS_ST, 0) | \
613 GEN_MASK_BITS(SSP_CLK_POL_IDLE_LOW, SSP_CR0_MASK_SPO, 6) | \
614 GEN_MASK_BITS(SSP_CLK_SECOND_EDGE, SSP_CR0_MASK_SPH, 7) | \
615 GEN_MASK_BITS(SSP_DEFAULT_CLKRATE, SSP_CR0_MASK_SCR, 8) \
616)
617
b43d65f7
LW
618#define DEFAULT_SSP_REG_CR1 ( \
619 GEN_MASK_BITS(LOOPBACK_DISABLED, SSP_CR1_MASK_LBM, 0) | \
620 GEN_MASK_BITS(SSP_DISABLED, SSP_CR1_MASK_SSE, 1) | \
621 GEN_MASK_BITS(SSP_MASTER, SSP_CR1_MASK_MS, 2) | \
556f4aeb 622 GEN_MASK_BITS(DO_NOT_DRIVE_TX, SSP_CR1_MASK_SOD, 3) \
b43d65f7
LW
623)
624
556f4aeb
LW
625/* ST versions extend this register to use all 16 bits */
626#define DEFAULT_SSP_REG_CR1_ST ( \
627 DEFAULT_SSP_REG_CR1 | \
628 GEN_MASK_BITS(SSP_RX_MSB, SSP_CR1_MASK_RENDN_ST, 4) | \
629 GEN_MASK_BITS(SSP_TX_MSB, SSP_CR1_MASK_TENDN_ST, 5) | \
630 GEN_MASK_BITS(SSP_MWIRE_WAIT_ZERO, SSP_CR1_MASK_MWAIT_ST, 6) |\
631 GEN_MASK_BITS(SSP_RX_1_OR_MORE_ELEM, SSP_CR1_MASK_RXIFLSEL_ST, 7) | \
632 GEN_MASK_BITS(SSP_TX_1_OR_MORE_EMPTY_LOC, SSP_CR1_MASK_TXIFLSEL_ST, 10) \
633)
634
781c7b12
LW
635/*
636 * The PL023 variant has further differences: no loopback mode, no microwire
637 * support, and a new clock feedback delay setting.
638 */
639#define DEFAULT_SSP_REG_CR1_ST_PL023 ( \
640 GEN_MASK_BITS(SSP_DISABLED, SSP_CR1_MASK_SSE, 1) | \
641 GEN_MASK_BITS(SSP_MASTER, SSP_CR1_MASK_MS, 2) | \
642 GEN_MASK_BITS(DO_NOT_DRIVE_TX, SSP_CR1_MASK_SOD, 3) | \
643 GEN_MASK_BITS(SSP_RX_MSB, SSP_CR1_MASK_RENDN_ST, 4) | \
644 GEN_MASK_BITS(SSP_TX_MSB, SSP_CR1_MASK_TENDN_ST, 5) | \
645 GEN_MASK_BITS(SSP_RX_1_OR_MORE_ELEM, SSP_CR1_MASK_RXIFLSEL_ST, 7) | \
646 GEN_MASK_BITS(SSP_TX_1_OR_MORE_EMPTY_LOC, SSP_CR1_MASK_TXIFLSEL_ST, 10) | \
647 GEN_MASK_BITS(SSP_FEEDBACK_CLK_DELAY_NONE, SSP_CR1_MASK_FBCLKDEL_ST, 13) \
648)
556f4aeb 649
b43d65f7 650#define DEFAULT_SSP_REG_CPSR ( \
556f4aeb 651 GEN_MASK_BITS(SSP_DEFAULT_PRESCALE, SSP_CPSR_MASK_CPSDVSR, 0) \
b43d65f7
LW
652)
653
654#define DEFAULT_SSP_REG_DMACR (\
655 GEN_MASK_BITS(SSP_DMA_DISABLED, SSP_DMACR_MASK_RXDMAE, 0) | \
656 GEN_MASK_BITS(SSP_DMA_DISABLED, SSP_DMACR_MASK_TXDMAE, 1) \
657)
658
781c7b12
LW
659/**
660 * load_ssp_default_config - Load default configuration for SSP
661 * @pl022: SSP driver private data structure
662 */
b43d65f7
LW
663static void load_ssp_default_config(struct pl022 *pl022)
664{
781c7b12
LW
665 if (pl022->vendor->pl023) {
666 writel(DEFAULT_SSP_REG_CR0_ST_PL023, SSP_CR0(pl022->virtbase));
667 writew(DEFAULT_SSP_REG_CR1_ST_PL023, SSP_CR1(pl022->virtbase));
668 } else if (pl022->vendor->extended_cr) {
556f4aeb
LW
669 writel(DEFAULT_SSP_REG_CR0_ST, SSP_CR0(pl022->virtbase));
670 writew(DEFAULT_SSP_REG_CR1_ST, SSP_CR1(pl022->virtbase));
671 } else {
672 writew(DEFAULT_SSP_REG_CR0, SSP_CR0(pl022->virtbase));
673 writew(DEFAULT_SSP_REG_CR1, SSP_CR1(pl022->virtbase));
674 }
b43d65f7
LW
675 writew(DEFAULT_SSP_REG_DMACR, SSP_DMACR(pl022->virtbase));
676 writew(DEFAULT_SSP_REG_CPSR, SSP_CPSR(pl022->virtbase));
677 writew(DISABLE_ALL_INTERRUPTS, SSP_IMSC(pl022->virtbase));
678 writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase));
679}
680
681/**
682 * This will write to TX and read from RX according to the parameters
683 * set in pl022.
684 */
685static void readwriter(struct pl022 *pl022)
686{
687
688 /*
25985edc 689 * The FIFO depth is different between primecell variants.
b43d65f7
LW
690 * I believe filling in too much in the FIFO might cause
691 * errons in 8bit wide transfers on ARM variants (just 8 words
692 * FIFO, means only 8x8 = 64 bits in FIFO) at least.
693 *
fc05475f
LW
694 * To prevent this issue, the TX FIFO is only filled to the
695 * unused RX FIFO fill length, regardless of what the TX
696 * FIFO status flag indicates.
b43d65f7
LW
697 */
698 dev_dbg(&pl022->adev->dev,
699 "%s, rx: %p, rxend: %p, tx: %p, txend: %p\n",
700 __func__, pl022->rx, pl022->rx_end, pl022->tx, pl022->tx_end);
701
702 /* Read as much as you can */
703 while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE)
704 && (pl022->rx < pl022->rx_end)) {
705 switch (pl022->read) {
706 case READING_NULL:
707 readw(SSP_DR(pl022->virtbase));
708 break;
709 case READING_U8:
710 *(u8 *) (pl022->rx) =
711 readw(SSP_DR(pl022->virtbase)) & 0xFFU;
712 break;
713 case READING_U16:
714 *(u16 *) (pl022->rx) =
715 (u16) readw(SSP_DR(pl022->virtbase));
716 break;
717 case READING_U32:
718 *(u32 *) (pl022->rx) =
719 readl(SSP_DR(pl022->virtbase));
720 break;
721 }
722 pl022->rx += (pl022->cur_chip->n_bytes);
fc05475f 723 pl022->exp_fifo_level--;
b43d65f7
LW
724 }
725 /*
fc05475f 726 * Write as much as possible up to the RX FIFO size
b43d65f7 727 */
fc05475f 728 while ((pl022->exp_fifo_level < pl022->vendor->fifodepth)
b43d65f7
LW
729 && (pl022->tx < pl022->tx_end)) {
730 switch (pl022->write) {
731 case WRITING_NULL:
732 writew(0x0, SSP_DR(pl022->virtbase));
733 break;
734 case WRITING_U8:
735 writew(*(u8 *) (pl022->tx), SSP_DR(pl022->virtbase));
736 break;
737 case WRITING_U16:
738 writew((*(u16 *) (pl022->tx)), SSP_DR(pl022->virtbase));
739 break;
740 case WRITING_U32:
741 writel(*(u32 *) (pl022->tx), SSP_DR(pl022->virtbase));
742 break;
743 }
744 pl022->tx += (pl022->cur_chip->n_bytes);
fc05475f 745 pl022->exp_fifo_level++;
b43d65f7
LW
746 /*
747 * This inner reader takes care of things appearing in the RX
748 * FIFO as we're transmitting. This will happen a lot since the
749 * clock starts running when you put things into the TX FIFO,
25985edc 750 * and then things are continuously clocked into the RX FIFO.
b43d65f7
LW
751 */
752 while ((readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RNE)
753 && (pl022->rx < pl022->rx_end)) {
754 switch (pl022->read) {
755 case READING_NULL:
756 readw(SSP_DR(pl022->virtbase));
757 break;
758 case READING_U8:
759 *(u8 *) (pl022->rx) =
760 readw(SSP_DR(pl022->virtbase)) & 0xFFU;
761 break;
762 case READING_U16:
763 *(u16 *) (pl022->rx) =
764 (u16) readw(SSP_DR(pl022->virtbase));
765 break;
766 case READING_U32:
767 *(u32 *) (pl022->rx) =
768 readl(SSP_DR(pl022->virtbase));
769 break;
770 }
771 pl022->rx += (pl022->cur_chip->n_bytes);
fc05475f 772 pl022->exp_fifo_level--;
b43d65f7
LW
773 }
774 }
775 /*
776 * When we exit here the TX FIFO should be full and the RX FIFO
777 * should be empty
778 */
779}
780
b43d65f7
LW
781/**
782 * next_transfer - Move to the Next transfer in the current spi message
783 * @pl022: SSP driver private data structure
784 *
785 * This function moves though the linked list of spi transfers in the
786 * current spi message and returns with the state of current spi
787 * message i.e whether its last transfer is done(STATE_DONE) or
788 * Next transfer is ready(STATE_RUNNING)
789 */
790static void *next_transfer(struct pl022 *pl022)
791{
792 struct spi_message *msg = pl022->cur_msg;
793 struct spi_transfer *trans = pl022->cur_transfer;
794
795 /* Move to next transfer */
796 if (trans->transfer_list.next != &msg->transfers) {
797 pl022->cur_transfer =
798 list_entry(trans->transfer_list.next,
799 struct spi_transfer, transfer_list);
800 return STATE_RUNNING;
801 }
802 return STATE_DONE;
803}
b1b6b9aa
LW
804
805/*
806 * This DMA functionality is only compiled in if we have
807 * access to the generic DMA devices/DMA engine.
808 */
809#ifdef CONFIG_DMA_ENGINE
810static void unmap_free_dma_scatter(struct pl022 *pl022)
811{
812 /* Unmap and free the SG tables */
b7298896 813 dma_unmap_sg(pl022->dma_tx_channel->device->dev, pl022->sgt_tx.sgl,
b1b6b9aa 814 pl022->sgt_tx.nents, DMA_TO_DEVICE);
b7298896 815 dma_unmap_sg(pl022->dma_rx_channel->device->dev, pl022->sgt_rx.sgl,
b1b6b9aa
LW
816 pl022->sgt_rx.nents, DMA_FROM_DEVICE);
817 sg_free_table(&pl022->sgt_rx);
818 sg_free_table(&pl022->sgt_tx);
819}
820
821static void dma_callback(void *data)
822{
823 struct pl022 *pl022 = data;
824 struct spi_message *msg = pl022->cur_msg;
825
826 BUG_ON(!pl022->sgt_rx.sgl);
827
828#ifdef VERBOSE_DEBUG
829 /*
830 * Optionally dump out buffers to inspect contents, this is
831 * good if you want to convince yourself that the loopback
832 * read/write contents are the same, when adopting to a new
833 * DMA engine.
834 */
835 {
836 struct scatterlist *sg;
837 unsigned int i;
838
839 dma_sync_sg_for_cpu(&pl022->adev->dev,
840 pl022->sgt_rx.sgl,
841 pl022->sgt_rx.nents,
842 DMA_FROM_DEVICE);
843
844 for_each_sg(pl022->sgt_rx.sgl, sg, pl022->sgt_rx.nents, i) {
845 dev_dbg(&pl022->adev->dev, "SPI RX SG ENTRY: %d", i);
846 print_hex_dump(KERN_ERR, "SPI RX: ",
847 DUMP_PREFIX_OFFSET,
848 16,
849 1,
850 sg_virt(sg),
851 sg_dma_len(sg),
852 1);
853 }
854 for_each_sg(pl022->sgt_tx.sgl, sg, pl022->sgt_tx.nents, i) {
855 dev_dbg(&pl022->adev->dev, "SPI TX SG ENTRY: %d", i);
856 print_hex_dump(KERN_ERR, "SPI TX: ",
857 DUMP_PREFIX_OFFSET,
858 16,
859 1,
860 sg_virt(sg),
861 sg_dma_len(sg),
862 1);
863 }
864 }
865#endif
866
867 unmap_free_dma_scatter(pl022);
868
25985edc 869 /* Update total bytes transferred */
b1b6b9aa
LW
870 msg->actual_length += pl022->cur_transfer->len;
871 if (pl022->cur_transfer->cs_change)
f6f46de1 872 pl022_cs_control(pl022, SSP_CHIP_DESELECT);
b1b6b9aa
LW
873
874 /* Move to next transfer */
875 msg->state = next_transfer(pl022);
876 tasklet_schedule(&pl022->pump_transfers);
877}
878
879static void setup_dma_scatter(struct pl022 *pl022,
880 void *buffer,
881 unsigned int length,
882 struct sg_table *sgtab)
883{
884 struct scatterlist *sg;
885 int bytesleft = length;
886 void *bufp = buffer;
887 int mapbytes;
888 int i;
889
890 if (buffer) {
891 for_each_sg(sgtab->sgl, sg, sgtab->nents, i) {
892 /*
893 * If there are less bytes left than what fits
894 * in the current page (plus page alignment offset)
895 * we just feed in this, else we stuff in as much
896 * as we can.
897 */
898 if (bytesleft < (PAGE_SIZE - offset_in_page(bufp)))
899 mapbytes = bytesleft;
900 else
901 mapbytes = PAGE_SIZE - offset_in_page(bufp);
902 sg_set_page(sg, virt_to_page(bufp),
903 mapbytes, offset_in_page(bufp));
904 bufp += mapbytes;
905 bytesleft -= mapbytes;
906 dev_dbg(&pl022->adev->dev,
907 "set RX/TX target page @ %p, %d bytes, %d left\n",
908 bufp, mapbytes, bytesleft);
909 }
910 } else {
911 /* Map the dummy buffer on every page */
912 for_each_sg(sgtab->sgl, sg, sgtab->nents, i) {
913 if (bytesleft < PAGE_SIZE)
914 mapbytes = bytesleft;
915 else
916 mapbytes = PAGE_SIZE;
917 sg_set_page(sg, virt_to_page(pl022->dummypage),
918 mapbytes, 0);
919 bytesleft -= mapbytes;
920 dev_dbg(&pl022->adev->dev,
921 "set RX/TX to dummy page %d bytes, %d left\n",
922 mapbytes, bytesleft);
923
924 }
925 }
926 BUG_ON(bytesleft);
927}
928
929/**
930 * configure_dma - configures the channels for the next transfer
931 * @pl022: SSP driver's private data structure
932 */
933static int configure_dma(struct pl022 *pl022)
934{
935 struct dma_slave_config rx_conf = {
936 .src_addr = SSP_DR(pl022->phybase),
a485df4b 937 .direction = DMA_DEV_TO_MEM,
258aea76 938 .device_fc = false,
b1b6b9aa
LW
939 };
940 struct dma_slave_config tx_conf = {
941 .dst_addr = SSP_DR(pl022->phybase),
a485df4b 942 .direction = DMA_MEM_TO_DEV,
258aea76 943 .device_fc = false,
b1b6b9aa
LW
944 };
945 unsigned int pages;
946 int ret;
082086f2 947 int rx_sglen, tx_sglen;
b1b6b9aa
LW
948 struct dma_chan *rxchan = pl022->dma_rx_channel;
949 struct dma_chan *txchan = pl022->dma_tx_channel;
950 struct dma_async_tx_descriptor *rxdesc;
951 struct dma_async_tx_descriptor *txdesc;
b1b6b9aa
LW
952
953 /* Check that the channels are available */
954 if (!rxchan || !txchan)
955 return -ENODEV;
956
083be3f0
LW
957 /*
958 * If supplied, the DMA burstsize should equal the FIFO trigger level.
959 * Notice that the DMA engine uses one-to-one mapping. Since we can
960 * not trigger on 2 elements this needs explicit mapping rather than
961 * calculation.
962 */
963 switch (pl022->rx_lev_trig) {
964 case SSP_RX_1_OR_MORE_ELEM:
965 rx_conf.src_maxburst = 1;
966 break;
967 case SSP_RX_4_OR_MORE_ELEM:
968 rx_conf.src_maxburst = 4;
969 break;
970 case SSP_RX_8_OR_MORE_ELEM:
971 rx_conf.src_maxburst = 8;
972 break;
973 case SSP_RX_16_OR_MORE_ELEM:
974 rx_conf.src_maxburst = 16;
975 break;
976 case SSP_RX_32_OR_MORE_ELEM:
977 rx_conf.src_maxburst = 32;
978 break;
979 default:
980 rx_conf.src_maxburst = pl022->vendor->fifodepth >> 1;
981 break;
982 }
983
984 switch (pl022->tx_lev_trig) {
985 case SSP_TX_1_OR_MORE_EMPTY_LOC:
986 tx_conf.dst_maxburst = 1;
987 break;
988 case SSP_TX_4_OR_MORE_EMPTY_LOC:
989 tx_conf.dst_maxburst = 4;
990 break;
991 case SSP_TX_8_OR_MORE_EMPTY_LOC:
992 tx_conf.dst_maxburst = 8;
993 break;
994 case SSP_TX_16_OR_MORE_EMPTY_LOC:
995 tx_conf.dst_maxburst = 16;
996 break;
997 case SSP_TX_32_OR_MORE_EMPTY_LOC:
998 tx_conf.dst_maxburst = 32;
999 break;
1000 default:
1001 tx_conf.dst_maxburst = pl022->vendor->fifodepth >> 1;
1002 break;
1003 }
1004
b1b6b9aa
LW
1005 switch (pl022->read) {
1006 case READING_NULL:
1007 /* Use the same as for writing */
1008 rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_UNDEFINED;
1009 break;
1010 case READING_U8:
1011 rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1012 break;
1013 case READING_U16:
1014 rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1015 break;
1016 case READING_U32:
1017 rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1018 break;
1019 }
1020
1021 switch (pl022->write) {
1022 case WRITING_NULL:
1023 /* Use the same as for reading */
1024 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_UNDEFINED;
1025 break;
1026 case WRITING_U8:
1027 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1028 break;
1029 case WRITING_U16:
1030 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1031 break;
1032 case WRITING_U32:
bc3f67a3 1033 tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
b1b6b9aa
LW
1034 break;
1035 }
1036
1037 /* SPI pecularity: we need to read and write the same width */
1038 if (rx_conf.src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
1039 rx_conf.src_addr_width = tx_conf.dst_addr_width;
1040 if (tx_conf.dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
1041 tx_conf.dst_addr_width = rx_conf.src_addr_width;
1042 BUG_ON(rx_conf.src_addr_width != tx_conf.dst_addr_width);
1043
ecd442fd
LW
1044 dmaengine_slave_config(rxchan, &rx_conf);
1045 dmaengine_slave_config(txchan, &tx_conf);
b1b6b9aa
LW
1046
1047 /* Create sglists for the transfers */
b181565e 1048 pages = DIV_ROUND_UP(pl022->cur_transfer->len, PAGE_SIZE);
b1b6b9aa
LW
1049 dev_dbg(&pl022->adev->dev, "using %d pages for transfer\n", pages);
1050
538a18dc 1051 ret = sg_alloc_table(&pl022->sgt_rx, pages, GFP_ATOMIC);
b1b6b9aa
LW
1052 if (ret)
1053 goto err_alloc_rx_sg;
1054
538a18dc 1055 ret = sg_alloc_table(&pl022->sgt_tx, pages, GFP_ATOMIC);
b1b6b9aa
LW
1056 if (ret)
1057 goto err_alloc_tx_sg;
1058
1059 /* Fill in the scatterlists for the RX+TX buffers */
1060 setup_dma_scatter(pl022, pl022->rx,
1061 pl022->cur_transfer->len, &pl022->sgt_rx);
1062 setup_dma_scatter(pl022, pl022->tx,
1063 pl022->cur_transfer->len, &pl022->sgt_tx);
1064
1065 /* Map DMA buffers */
082086f2 1066 rx_sglen = dma_map_sg(rxchan->device->dev, pl022->sgt_rx.sgl,
b1b6b9aa 1067 pl022->sgt_rx.nents, DMA_FROM_DEVICE);
082086f2 1068 if (!rx_sglen)
b1b6b9aa
LW
1069 goto err_rx_sgmap;
1070
082086f2 1071 tx_sglen = dma_map_sg(txchan->device->dev, pl022->sgt_tx.sgl,
b1b6b9aa 1072 pl022->sgt_tx.nents, DMA_TO_DEVICE);
082086f2 1073 if (!tx_sglen)
b1b6b9aa
LW
1074 goto err_tx_sgmap;
1075
1076 /* Send both scatterlists */
16052827 1077 rxdesc = dmaengine_prep_slave_sg(rxchan,
b1b6b9aa 1078 pl022->sgt_rx.sgl,
082086f2 1079 rx_sglen,
a485df4b 1080 DMA_DEV_TO_MEM,
b1b6b9aa
LW
1081 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1082 if (!rxdesc)
1083 goto err_rxdesc;
1084
16052827 1085 txdesc = dmaengine_prep_slave_sg(txchan,
b1b6b9aa 1086 pl022->sgt_tx.sgl,
082086f2 1087 tx_sglen,
a485df4b 1088 DMA_MEM_TO_DEV,
b1b6b9aa
LW
1089 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1090 if (!txdesc)
1091 goto err_txdesc;
1092
1093 /* Put the callback on the RX transfer only, that should finish last */
1094 rxdesc->callback = dma_callback;
1095 rxdesc->callback_param = pl022;
1096
1097 /* Submit and fire RX and TX with TX last so we're ready to read! */
ecd442fd
LW
1098 dmaengine_submit(rxdesc);
1099 dmaengine_submit(txdesc);
1100 dma_async_issue_pending(rxchan);
1101 dma_async_issue_pending(txchan);
ffbbdd21 1102 pl022->dma_running = true;
b1b6b9aa
LW
1103
1104 return 0;
1105
b1b6b9aa 1106err_txdesc:
ecd442fd 1107 dmaengine_terminate_all(txchan);
b1b6b9aa 1108err_rxdesc:
ecd442fd 1109 dmaengine_terminate_all(rxchan);
b7298896 1110 dma_unmap_sg(txchan->device->dev, pl022->sgt_tx.sgl,
b1b6b9aa
LW
1111 pl022->sgt_tx.nents, DMA_TO_DEVICE);
1112err_tx_sgmap:
b7298896 1113 dma_unmap_sg(rxchan->device->dev, pl022->sgt_rx.sgl,
3ffa6158 1114 pl022->sgt_rx.nents, DMA_FROM_DEVICE);
b1b6b9aa
LW
1115err_rx_sgmap:
1116 sg_free_table(&pl022->sgt_tx);
1117err_alloc_tx_sg:
1118 sg_free_table(&pl022->sgt_rx);
1119err_alloc_rx_sg:
1120 return -ENOMEM;
1121}
1122
fd4a319b 1123static int pl022_dma_probe(struct pl022 *pl022)
b1b6b9aa
LW
1124{
1125 dma_cap_mask_t mask;
1126
1127 /* Try to acquire a generic DMA engine slave channel */
1128 dma_cap_zero(mask);
1129 dma_cap_set(DMA_SLAVE, mask);
1130 /*
1131 * We need both RX and TX channels to do DMA, else do none
1132 * of them.
1133 */
1134 pl022->dma_rx_channel = dma_request_channel(mask,
1135 pl022->master_info->dma_filter,
1136 pl022->master_info->dma_rx_param);
1137 if (!pl022->dma_rx_channel) {
43c64015 1138 dev_dbg(&pl022->adev->dev, "no RX DMA channel!\n");
b1b6b9aa
LW
1139 goto err_no_rxchan;
1140 }
1141
1142 pl022->dma_tx_channel = dma_request_channel(mask,
1143 pl022->master_info->dma_filter,
1144 pl022->master_info->dma_tx_param);
1145 if (!pl022->dma_tx_channel) {
43c64015 1146 dev_dbg(&pl022->adev->dev, "no TX DMA channel!\n");
b1b6b9aa
LW
1147 goto err_no_txchan;
1148 }
1149
1150 pl022->dummypage = kmalloc(PAGE_SIZE, GFP_KERNEL);
77538f4a 1151 if (!pl022->dummypage)
b1b6b9aa 1152 goto err_no_dummypage;
b1b6b9aa
LW
1153
1154 dev_info(&pl022->adev->dev, "setup for DMA on RX %s, TX %s\n",
1155 dma_chan_name(pl022->dma_rx_channel),
1156 dma_chan_name(pl022->dma_tx_channel));
1157
1158 return 0;
1159
1160err_no_dummypage:
1161 dma_release_channel(pl022->dma_tx_channel);
1162err_no_txchan:
1163 dma_release_channel(pl022->dma_rx_channel);
1164 pl022->dma_rx_channel = NULL;
1165err_no_rxchan:
43c64015
VK
1166 dev_err(&pl022->adev->dev,
1167 "Failed to work in dma mode, work without dma!\n");
b1b6b9aa
LW
1168 return -ENODEV;
1169}
1170
dc715452
AB
1171static int pl022_dma_autoprobe(struct pl022 *pl022)
1172{
1173 struct device *dev = &pl022->adev->dev;
1174
1175 /* automatically configure DMA channels from platform, normally using DT */
1176 pl022->dma_rx_channel = dma_request_slave_channel(dev, "rx");
1177 if (!pl022->dma_rx_channel)
1178 goto err_no_rxchan;
1179
1180 pl022->dma_tx_channel = dma_request_slave_channel(dev, "tx");
1181 if (!pl022->dma_tx_channel)
1182 goto err_no_txchan;
1183
1184 pl022->dummypage = kmalloc(PAGE_SIZE, GFP_KERNEL);
1185 if (!pl022->dummypage)
1186 goto err_no_dummypage;
1187
1188 return 0;
1189
1190err_no_dummypage:
1191 dma_release_channel(pl022->dma_tx_channel);
1192 pl022->dma_tx_channel = NULL;
1193err_no_txchan:
1194 dma_release_channel(pl022->dma_rx_channel);
1195 pl022->dma_rx_channel = NULL;
1196err_no_rxchan:
1197 return -ENODEV;
1198}
1199
b1b6b9aa
LW
1200static void terminate_dma(struct pl022 *pl022)
1201{
1202 struct dma_chan *rxchan = pl022->dma_rx_channel;
1203 struct dma_chan *txchan = pl022->dma_tx_channel;
1204
ecd442fd
LW
1205 dmaengine_terminate_all(rxchan);
1206 dmaengine_terminate_all(txchan);
b1b6b9aa 1207 unmap_free_dma_scatter(pl022);
ffbbdd21 1208 pl022->dma_running = false;
b1b6b9aa
LW
1209}
1210
1211static void pl022_dma_remove(struct pl022 *pl022)
1212{
ffbbdd21 1213 if (pl022->dma_running)
b1b6b9aa
LW
1214 terminate_dma(pl022);
1215 if (pl022->dma_tx_channel)
1216 dma_release_channel(pl022->dma_tx_channel);
1217 if (pl022->dma_rx_channel)
1218 dma_release_channel(pl022->dma_rx_channel);
1219 kfree(pl022->dummypage);
1220}
1221
1222#else
1223static inline int configure_dma(struct pl022 *pl022)
1224{
1225 return -ENODEV;
1226}
1227
dc715452
AB
1228static inline int pl022_dma_autoprobe(struct pl022 *pl022)
1229{
1230 return 0;
1231}
1232
b1b6b9aa
LW
1233static inline int pl022_dma_probe(struct pl022 *pl022)
1234{
1235 return 0;
1236}
1237
1238static inline void pl022_dma_remove(struct pl022 *pl022)
1239{
1240}
1241#endif
1242
b43d65f7
LW
1243/**
1244 * pl022_interrupt_handler - Interrupt handler for SSP controller
1245 *
1246 * This function handles interrupts generated for an interrupt based transfer.
1247 * If a receive overrun (ROR) interrupt is there then we disable SSP, flag the
1248 * current message's state as STATE_ERROR and schedule the tasklet
1249 * pump_transfers which will do the postprocessing of the current message by
1250 * calling giveback(). Otherwise it reads data from RX FIFO till there is no
1251 * more data, and writes data in TX FIFO till it is not full. If we complete
1252 * the transfer we move to the next transfer and schedule the tasklet.
1253 */
1254static irqreturn_t pl022_interrupt_handler(int irq, void *dev_id)
1255{
1256 struct pl022 *pl022 = dev_id;
1257 struct spi_message *msg = pl022->cur_msg;
1258 u16 irq_status = 0;
1259 u16 flag = 0;
1260
1261 if (unlikely(!msg)) {
1262 dev_err(&pl022->adev->dev,
1263 "bad message state in interrupt handler");
1264 /* Never fail */
1265 return IRQ_HANDLED;
1266 }
1267
1268 /* Read the Interrupt Status Register */
1269 irq_status = readw(SSP_MIS(pl022->virtbase));
1270
1271 if (unlikely(!irq_status))
1272 return IRQ_NONE;
1273
b1b6b9aa
LW
1274 /*
1275 * This handles the FIFO interrupts, the timeout
1276 * interrupts are flatly ignored, they cannot be
1277 * trusted.
1278 */
b43d65f7
LW
1279 if (unlikely(irq_status & SSP_MIS_MASK_RORMIS)) {
1280 /*
1281 * Overrun interrupt - bail out since our Data has been
1282 * corrupted
1283 */
b1b6b9aa 1284 dev_err(&pl022->adev->dev, "FIFO overrun\n");
b43d65f7
LW
1285 if (readw(SSP_SR(pl022->virtbase)) & SSP_SR_MASK_RFF)
1286 dev_err(&pl022->adev->dev,
1287 "RXFIFO is full\n");
b43d65f7
LW
1288
1289 /*
1290 * Disable and clear interrupts, disable SSP,
1291 * mark message with bad status so it can be
1292 * retried.
1293 */
1294 writew(DISABLE_ALL_INTERRUPTS,
1295 SSP_IMSC(pl022->virtbase));
1296 writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase));
1297 writew((readw(SSP_CR1(pl022->virtbase)) &
1298 (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase));
1299 msg->state = STATE_ERROR;
1300
1301 /* Schedule message queue handler */
1302 tasklet_schedule(&pl022->pump_transfers);
1303 return IRQ_HANDLED;
1304 }
1305
1306 readwriter(pl022);
1307
1308 if ((pl022->tx == pl022->tx_end) && (flag == 0)) {
1309 flag = 1;
172289df
CB
1310 /* Disable Transmit interrupt, enable receive interrupt */
1311 writew((readw(SSP_IMSC(pl022->virtbase)) &
1312 ~SSP_IMSC_MASK_TXIM) | SSP_IMSC_MASK_RXIM,
b43d65f7
LW
1313 SSP_IMSC(pl022->virtbase));
1314 }
1315
1316 /*
1317 * Since all transactions must write as much as shall be read,
1318 * we can conclude the entire transaction once RX is complete.
1319 * At this point, all TX will always be finished.
1320 */
1321 if (pl022->rx >= pl022->rx_end) {
1322 writew(DISABLE_ALL_INTERRUPTS,
1323 SSP_IMSC(pl022->virtbase));
1324 writew(CLEAR_ALL_INTERRUPTS, SSP_ICR(pl022->virtbase));
1325 if (unlikely(pl022->rx > pl022->rx_end)) {
1326 dev_warn(&pl022->adev->dev, "read %u surplus "
1327 "bytes (did you request an odd "
1328 "number of bytes on a 16bit bus?)\n",
1329 (u32) (pl022->rx - pl022->rx_end));
1330 }
25985edc 1331 /* Update total bytes transferred */
b43d65f7
LW
1332 msg->actual_length += pl022->cur_transfer->len;
1333 if (pl022->cur_transfer->cs_change)
f6f46de1 1334 pl022_cs_control(pl022, SSP_CHIP_DESELECT);
b43d65f7
LW
1335 /* Move to next transfer */
1336 msg->state = next_transfer(pl022);
1337 tasklet_schedule(&pl022->pump_transfers);
1338 return IRQ_HANDLED;
1339 }
1340
1341 return IRQ_HANDLED;
1342}
1343
1344/**
1345 * This sets up the pointers to memory for the next message to
1346 * send out on the SPI bus.
1347 */
1348static int set_up_next_transfer(struct pl022 *pl022,
1349 struct spi_transfer *transfer)
1350{
1351 int residue;
1352
1353 /* Sanity check the message for this bus width */
1354 residue = pl022->cur_transfer->len % pl022->cur_chip->n_bytes;
1355 if (unlikely(residue != 0)) {
1356 dev_err(&pl022->adev->dev,
1357 "message of %u bytes to transmit but the current "
1358 "chip bus has a data width of %u bytes!\n",
1359 pl022->cur_transfer->len,
1360 pl022->cur_chip->n_bytes);
1361 dev_err(&pl022->adev->dev, "skipping this message\n");
1362 return -EIO;
1363 }
1364 pl022->tx = (void *)transfer->tx_buf;
1365 pl022->tx_end = pl022->tx + pl022->cur_transfer->len;
1366 pl022->rx = (void *)transfer->rx_buf;
1367 pl022->rx_end = pl022->rx + pl022->cur_transfer->len;
1368 pl022->write =
1369 pl022->tx ? pl022->cur_chip->write : WRITING_NULL;
1370 pl022->read = pl022->rx ? pl022->cur_chip->read : READING_NULL;
1371 return 0;
1372}
1373
1374/**
b1b6b9aa
LW
1375 * pump_transfers - Tasklet function which schedules next transfer
1376 * when running in interrupt or DMA transfer mode.
b43d65f7
LW
1377 * @data: SSP driver private data structure
1378 *
1379 */
1380static void pump_transfers(unsigned long data)
1381{
1382 struct pl022 *pl022 = (struct pl022 *) data;
1383 struct spi_message *message = NULL;
1384 struct spi_transfer *transfer = NULL;
1385 struct spi_transfer *previous = NULL;
1386
1387 /* Get current state information */
1388 message = pl022->cur_msg;
1389 transfer = pl022->cur_transfer;
1390
1391 /* Handle for abort */
1392 if (message->state == STATE_ERROR) {
1393 message->status = -EIO;
1394 giveback(pl022);
1395 return;
1396 }
1397
1398 /* Handle end of message */
1399 if (message->state == STATE_DONE) {
1400 message->status = 0;
1401 giveback(pl022);
1402 return;
1403 }
1404
1405 /* Delay if requested at end of transfer before CS change */
1406 if (message->state == STATE_RUNNING) {
1407 previous = list_entry(transfer->transfer_list.prev,
1408 struct spi_transfer,
1409 transfer_list);
1410 if (previous->delay_usecs)
1411 /*
1412 * FIXME: This runs in interrupt context.
1413 * Is this really smart?
1414 */
1415 udelay(previous->delay_usecs);
1416
8b8d7191 1417 /* Reselect chip select only if cs_change was requested */
b43d65f7 1418 if (previous->cs_change)
f6f46de1 1419 pl022_cs_control(pl022, SSP_CHIP_SELECT);
b43d65f7
LW
1420 } else {
1421 /* STATE_START */
1422 message->state = STATE_RUNNING;
1423 }
1424
1425 if (set_up_next_transfer(pl022, transfer)) {
1426 message->state = STATE_ERROR;
1427 message->status = -EIO;
1428 giveback(pl022);
1429 return;
1430 }
1431 /* Flush the FIFOs and let's go! */
1432 flush(pl022);
b43d65f7 1433
b1b6b9aa
LW
1434 if (pl022->cur_chip->enable_dma) {
1435 if (configure_dma(pl022)) {
1436 dev_dbg(&pl022->adev->dev,
1437 "configuration of DMA failed, fall back to interrupt mode\n");
1438 goto err_config_dma;
1439 }
b43d65f7
LW
1440 return;
1441 }
b43d65f7 1442
b1b6b9aa 1443err_config_dma:
172289df
CB
1444 /* enable all interrupts except RX */
1445 writew(ENABLE_ALL_INTERRUPTS & ~SSP_IMSC_MASK_RXIM, SSP_IMSC(pl022->virtbase));
b43d65f7
LW
1446}
1447
b1b6b9aa 1448static void do_interrupt_dma_transfer(struct pl022 *pl022)
b43d65f7 1449{
172289df
CB
1450 /*
1451 * Default is to enable all interrupts except RX -
1452 * this will be enabled once TX is complete
1453 */
d555ea05 1454 u32 irqflags = (u32)(ENABLE_ALL_INTERRUPTS & ~SSP_IMSC_MASK_RXIM);
b43d65f7 1455
8b8d7191
VS
1456 /* Enable target chip, if not already active */
1457 if (!pl022->next_msg_cs_active)
f6f46de1 1458 pl022_cs_control(pl022, SSP_CHIP_SELECT);
b43d65f7 1459
b43d65f7
LW
1460 if (set_up_next_transfer(pl022, pl022->cur_transfer)) {
1461 /* Error path */
1462 pl022->cur_msg->state = STATE_ERROR;
1463 pl022->cur_msg->status = -EIO;
1464 giveback(pl022);
1465 return;
1466 }
b1b6b9aa
LW
1467 /* If we're using DMA, set up DMA here */
1468 if (pl022->cur_chip->enable_dma) {
1469 /* Configure DMA transfer */
1470 if (configure_dma(pl022)) {
1471 dev_dbg(&pl022->adev->dev,
1472 "configuration of DMA failed, fall back to interrupt mode\n");
1473 goto err_config_dma;
1474 }
1475 /* Disable interrupts in DMA mode, IRQ from DMA controller */
1476 irqflags = DISABLE_ALL_INTERRUPTS;
1477 }
1478err_config_dma:
b43d65f7
LW
1479 /* Enable SSP, turn on interrupts */
1480 writew((readw(SSP_CR1(pl022->virtbase)) | SSP_CR1_MASK_SSE),
1481 SSP_CR1(pl022->virtbase));
b1b6b9aa 1482 writew(irqflags, SSP_IMSC(pl022->virtbase));
b43d65f7
LW
1483}
1484
b1b6b9aa 1485static void do_polling_transfer(struct pl022 *pl022)
b43d65f7 1486{
b43d65f7
LW
1487 struct spi_message *message = NULL;
1488 struct spi_transfer *transfer = NULL;
1489 struct spi_transfer *previous = NULL;
1490 struct chip_data *chip;
a18c266f 1491 unsigned long time, timeout;
b43d65f7
LW
1492
1493 chip = pl022->cur_chip;
1494 message = pl022->cur_msg;
1495
1496 while (message->state != STATE_DONE) {
1497 /* Handle for abort */
1498 if (message->state == STATE_ERROR)
1499 break;
1500 transfer = pl022->cur_transfer;
1501
1502 /* Delay if requested at end of transfer */
1503 if (message->state == STATE_RUNNING) {
1504 previous =
1505 list_entry(transfer->transfer_list.prev,
1506 struct spi_transfer, transfer_list);
1507 if (previous->delay_usecs)
1508 udelay(previous->delay_usecs);
1509 if (previous->cs_change)
f6f46de1 1510 pl022_cs_control(pl022, SSP_CHIP_SELECT);
b43d65f7
LW
1511 } else {
1512 /* STATE_START */
1513 message->state = STATE_RUNNING;
8b8d7191 1514 if (!pl022->next_msg_cs_active)
f6f46de1 1515 pl022_cs_control(pl022, SSP_CHIP_SELECT);
b43d65f7
LW
1516 }
1517
1518 /* Configuration Changing Per Transfer */
1519 if (set_up_next_transfer(pl022, transfer)) {
1520 /* Error path */
1521 message->state = STATE_ERROR;
1522 break;
1523 }
1524 /* Flush FIFOs and enable SSP */
1525 flush(pl022);
1526 writew((readw(SSP_CR1(pl022->virtbase)) | SSP_CR1_MASK_SSE),
1527 SSP_CR1(pl022->virtbase));
1528
556f4aeb 1529 dev_dbg(&pl022->adev->dev, "polling transfer ongoing ...\n");
a18c266f
MT
1530
1531 timeout = jiffies + msecs_to_jiffies(SPI_POLLING_TIMEOUT);
1532 while (pl022->tx < pl022->tx_end || pl022->rx < pl022->rx_end) {
1533 time = jiffies;
b43d65f7 1534 readwriter(pl022);
a18c266f
MT
1535 if (time_after(time, timeout)) {
1536 dev_warn(&pl022->adev->dev,
1537 "%s: timeout!\n", __func__);
1538 message->state = STATE_ERROR;
1539 goto out;
1540 }
521999bd 1541 cpu_relax();
a18c266f 1542 }
b43d65f7 1543
25985edc 1544 /* Update total byte transferred */
b43d65f7
LW
1545 message->actual_length += pl022->cur_transfer->len;
1546 if (pl022->cur_transfer->cs_change)
f6f46de1 1547 pl022_cs_control(pl022, SSP_CHIP_DESELECT);
b43d65f7
LW
1548 /* Move to next transfer */
1549 message->state = next_transfer(pl022);
1550 }
a18c266f 1551out:
b43d65f7
LW
1552 /* Handle end of message */
1553 if (message->state == STATE_DONE)
1554 message->status = 0;
1555 else
1556 message->status = -EIO;
1557
1558 giveback(pl022);
1559 return;
1560}
1561
ffbbdd21
LW
1562static int pl022_transfer_one_message(struct spi_master *master,
1563 struct spi_message *msg)
b43d65f7 1564{
ffbbdd21 1565 struct pl022 *pl022 = spi_master_get_devdata(master);
b43d65f7
LW
1566
1567 /* Initial message state */
ffbbdd21
LW
1568 pl022->cur_msg = msg;
1569 msg->state = STATE_START;
1570
1571 pl022->cur_transfer = list_entry(msg->transfers.next,
1572 struct spi_transfer, transfer_list);
b43d65f7
LW
1573
1574 /* Setup the SPI using the per chip configuration */
ffbbdd21 1575 pl022->cur_chip = spi_get_ctldata(msg->spi);
f6f46de1 1576 pl022->cur_cs = pl022->chipselects[msg->spi->chip_select];
d4b6af2e 1577
b43d65f7
LW
1578 restore_state(pl022);
1579 flush(pl022);
1580
1581 if (pl022->cur_chip->xfer_type == POLLING_TRANSFER)
1582 do_polling_transfer(pl022);
b43d65f7 1583 else
b1b6b9aa 1584 do_interrupt_dma_transfer(pl022);
b43d65f7
LW
1585
1586 return 0;
1587}
1588
ffbbdd21 1589static int pl022_unprepare_transfer_hardware(struct spi_master *master)
b43d65f7 1590{
ffbbdd21 1591 struct pl022 *pl022 = spi_master_get_devdata(master);
b43d65f7 1592
ffbbdd21
LW
1593 /* nothing more to do - disable spi/ssp and power off */
1594 writew((readw(SSP_CR1(pl022->virtbase)) &
1595 (~SSP_CR1_MASK_SSE)), SSP_CR1(pl022->virtbase));
b43d65f7 1596
b43d65f7
LW
1597 return 0;
1598}
1599
1600static int verify_controller_parameters(struct pl022 *pl022,
f9d629c7 1601 struct pl022_config_chip const *chip_info)
b43d65f7 1602{
b43d65f7
LW
1603 if ((chip_info->iface < SSP_INTERFACE_MOTOROLA_SPI)
1604 || (chip_info->iface > SSP_INTERFACE_UNIDIRECTIONAL)) {
5a1c98be 1605 dev_err(&pl022->adev->dev,
b43d65f7
LW
1606 "interface is configured incorrectly\n");
1607 return -EINVAL;
1608 }
1609 if ((chip_info->iface == SSP_INTERFACE_UNIDIRECTIONAL) &&
1610 (!pl022->vendor->unidir)) {
5a1c98be 1611 dev_err(&pl022->adev->dev,
b43d65f7
LW
1612 "unidirectional mode not supported in this "
1613 "hardware version\n");
1614 return -EINVAL;
1615 }
1616 if ((chip_info->hierarchy != SSP_MASTER)
1617 && (chip_info->hierarchy != SSP_SLAVE)) {
5a1c98be 1618 dev_err(&pl022->adev->dev,
b43d65f7
LW
1619 "hierarchy is configured incorrectly\n");
1620 return -EINVAL;
1621 }
b43d65f7
LW
1622 if ((chip_info->com_mode != INTERRUPT_TRANSFER)
1623 && (chip_info->com_mode != DMA_TRANSFER)
1624 && (chip_info->com_mode != POLLING_TRANSFER)) {
5a1c98be 1625 dev_err(&pl022->adev->dev,
b43d65f7
LW
1626 "Communication mode is configured incorrectly\n");
1627 return -EINVAL;
1628 }
78b2b911
LW
1629 switch (chip_info->rx_lev_trig) {
1630 case SSP_RX_1_OR_MORE_ELEM:
1631 case SSP_RX_4_OR_MORE_ELEM:
1632 case SSP_RX_8_OR_MORE_ELEM:
1633 /* These are always OK, all variants can handle this */
1634 break;
1635 case SSP_RX_16_OR_MORE_ELEM:
1636 if (pl022->vendor->fifodepth < 16) {
1637 dev_err(&pl022->adev->dev,
1638 "RX FIFO Trigger Level is configured incorrectly\n");
1639 return -EINVAL;
1640 }
1641 break;
1642 case SSP_RX_32_OR_MORE_ELEM:
1643 if (pl022->vendor->fifodepth < 32) {
1644 dev_err(&pl022->adev->dev,
1645 "RX FIFO Trigger Level is configured incorrectly\n");
1646 return -EINVAL;
1647 }
1648 break;
1649 default:
5a1c98be 1650 dev_err(&pl022->adev->dev,
b43d65f7
LW
1651 "RX FIFO Trigger Level is configured incorrectly\n");
1652 return -EINVAL;
1653 }
78b2b911
LW
1654 switch (chip_info->tx_lev_trig) {
1655 case SSP_TX_1_OR_MORE_EMPTY_LOC:
1656 case SSP_TX_4_OR_MORE_EMPTY_LOC:
1657 case SSP_TX_8_OR_MORE_EMPTY_LOC:
1658 /* These are always OK, all variants can handle this */
1659 break;
1660 case SSP_TX_16_OR_MORE_EMPTY_LOC:
1661 if (pl022->vendor->fifodepth < 16) {
1662 dev_err(&pl022->adev->dev,
1663 "TX FIFO Trigger Level is configured incorrectly\n");
1664 return -EINVAL;
1665 }
1666 break;
1667 case SSP_TX_32_OR_MORE_EMPTY_LOC:
1668 if (pl022->vendor->fifodepth < 32) {
1669 dev_err(&pl022->adev->dev,
1670 "TX FIFO Trigger Level is configured incorrectly\n");
1671 return -EINVAL;
1672 }
1673 break;
1674 default:
5a1c98be 1675 dev_err(&pl022->adev->dev,
b43d65f7
LW
1676 "TX FIFO Trigger Level is configured incorrectly\n");
1677 return -EINVAL;
1678 }
b43d65f7
LW
1679 if (chip_info->iface == SSP_INTERFACE_NATIONAL_MICROWIRE) {
1680 if ((chip_info->ctrl_len < SSP_BITS_4)
1681 || (chip_info->ctrl_len > SSP_BITS_32)) {
5a1c98be 1682 dev_err(&pl022->adev->dev,
b43d65f7
LW
1683 "CTRL LEN is configured incorrectly\n");
1684 return -EINVAL;
1685 }
1686 if ((chip_info->wait_state != SSP_MWIRE_WAIT_ZERO)
1687 && (chip_info->wait_state != SSP_MWIRE_WAIT_ONE)) {
5a1c98be 1688 dev_err(&pl022->adev->dev,
b43d65f7
LW
1689 "Wait State is configured incorrectly\n");
1690 return -EINVAL;
1691 }
556f4aeb
LW
1692 /* Half duplex is only available in the ST Micro version */
1693 if (pl022->vendor->extended_cr) {
1694 if ((chip_info->duplex !=
1695 SSP_MICROWIRE_CHANNEL_FULL_DUPLEX)
1696 && (chip_info->duplex !=
4a4fd471 1697 SSP_MICROWIRE_CHANNEL_HALF_DUPLEX)) {
5a1c98be 1698 dev_err(&pl022->adev->dev,
556f4aeb
LW
1699 "Microwire duplex mode is configured incorrectly\n");
1700 return -EINVAL;
4a4fd471 1701 }
556f4aeb
LW
1702 } else {
1703 if (chip_info->duplex != SSP_MICROWIRE_CHANNEL_FULL_DUPLEX)
5a1c98be 1704 dev_err(&pl022->adev->dev,
556f4aeb
LW
1705 "Microwire half duplex mode requested,"
1706 " but this is only available in the"
1707 " ST version of PL022\n");
b43d65f7
LW
1708 return -EINVAL;
1709 }
1710 }
b43d65f7
LW
1711 return 0;
1712}
1713
0379b2a3
VK
1714static inline u32 spi_rate(u32 rate, u16 cpsdvsr, u16 scr)
1715{
1716 return rate / (cpsdvsr * (1 + scr));
1717}
1718
1719static int calculate_effective_freq(struct pl022 *pl022, int freq, struct
1720 ssp_clock_params * clk_freq)
b43d65f7
LW
1721{
1722 /* Lets calculate the frequency parameters */
0379b2a3
VK
1723 u16 cpsdvsr = CPSDVR_MIN, scr = SCR_MIN;
1724 u32 rate, max_tclk, min_tclk, best_freq = 0, best_cpsdvsr = 0,
1725 best_scr = 0, tmp, found = 0;
b43d65f7
LW
1726
1727 rate = clk_get_rate(pl022->clk);
1728 /* cpsdvscr = 2 & scr 0 */
0379b2a3 1729 max_tclk = spi_rate(rate, CPSDVR_MIN, SCR_MIN);
b43d65f7 1730 /* cpsdvsr = 254 & scr = 255 */
0379b2a3
VK
1731 min_tclk = spi_rate(rate, CPSDVR_MAX, SCR_MAX);
1732
ea505bc9
VK
1733 if (freq > max_tclk)
1734 dev_warn(&pl022->adev->dev,
1735 "Max speed that can be programmed is %d Hz, you requested %d\n",
1736 max_tclk, freq);
1737
1738 if (freq < min_tclk) {
b43d65f7 1739 dev_err(&pl022->adev->dev,
ea505bc9
VK
1740 "Requested frequency: %d Hz is less than minimum possible %d Hz\n",
1741 freq, min_tclk);
b43d65f7
LW
1742 return -EINVAL;
1743 }
0379b2a3
VK
1744
1745 /*
1746 * best_freq will give closest possible available rate (<= requested
1747 * freq) for all values of scr & cpsdvsr.
1748 */
1749 while ((cpsdvsr <= CPSDVR_MAX) && !found) {
1750 while (scr <= SCR_MAX) {
1751 tmp = spi_rate(rate, cpsdvsr, scr);
1752
5eb806a3
VK
1753 if (tmp > freq) {
1754 /* we need lower freq */
0379b2a3 1755 scr++;
5eb806a3
VK
1756 continue;
1757 }
1758
0379b2a3 1759 /*
5eb806a3
VK
1760 * If found exact value, mark found and break.
1761 * If found more closer value, update and break.
0379b2a3 1762 */
5eb806a3 1763 if (tmp > best_freq) {
0379b2a3
VK
1764 best_freq = tmp;
1765 best_cpsdvsr = cpsdvsr;
1766 best_scr = scr;
1767
1768 if (tmp == freq)
5eb806a3 1769 found = 1;
0379b2a3 1770 }
5eb806a3
VK
1771 /*
1772 * increased scr will give lower rates, which are not
1773 * required
1774 */
1775 break;
0379b2a3
VK
1776 }
1777 cpsdvsr += 2;
1778 scr = SCR_MIN;
1779 }
1780
5eb806a3
VK
1781 WARN(!best_freq, "pl022: Matching cpsdvsr and scr not found for %d Hz rate \n",
1782 freq);
1783
0379b2a3
VK
1784 clk_freq->cpsdvsr = (u8) (best_cpsdvsr & 0xFF);
1785 clk_freq->scr = (u8) (best_scr & 0xFF);
1786 dev_dbg(&pl022->adev->dev,
1787 "SSP Target Frequency is: %u, Effective Frequency is %u\n",
1788 freq, best_freq);
1789 dev_dbg(&pl022->adev->dev, "SSP cpsdvsr = %d, scr = %d\n",
1790 clk_freq->cpsdvsr, clk_freq->scr);
1791
b43d65f7
LW
1792 return 0;
1793}
1794
f9d629c7
LW
1795/*
1796 * A piece of default chip info unless the platform
1797 * supplies it.
1798 */
1799static const struct pl022_config_chip pl022_default_chip_info = {
1800 .com_mode = POLLING_TRANSFER,
1801 .iface = SSP_INTERFACE_MOTOROLA_SPI,
1802 .hierarchy = SSP_SLAVE,
1803 .slave_tx_disable = DO_NOT_DRIVE_TX,
1804 .rx_lev_trig = SSP_RX_1_OR_MORE_ELEM,
1805 .tx_lev_trig = SSP_TX_1_OR_MORE_EMPTY_LOC,
1806 .ctrl_len = SSP_BITS_8,
1807 .wait_state = SSP_MWIRE_WAIT_ZERO,
1808 .duplex = SSP_MICROWIRE_CHANNEL_FULL_DUPLEX,
1809 .cs_control = null_cs_control,
1810};
1811
b43d65f7
LW
1812/**
1813 * pl022_setup - setup function registered to SPI master framework
1814 * @spi: spi device which is requesting setup
1815 *
1816 * This function is registered to the SPI framework for this SPI master
1817 * controller. If it is the first time when setup is called by this device,
1818 * this function will initialize the runtime state for this chip and save
1819 * the same in the device structure. Else it will update the runtime info
1820 * with the updated chip info. Nothing is really being written to the
1821 * controller hardware here, that is not done until the actual transfer
1822 * commence.
1823 */
b43d65f7
LW
1824static int pl022_setup(struct spi_device *spi)
1825{
f9d629c7 1826 struct pl022_config_chip const *chip_info;
6d3952a7 1827 struct pl022_config_chip chip_info_dt;
b43d65f7 1828 struct chip_data *chip;
c4a47843 1829 struct ssp_clock_params clk_freq = { .cpsdvsr = 0, .scr = 0};
b43d65f7
LW
1830 int status = 0;
1831 struct pl022 *pl022 = spi_master_get_devdata(spi->master);
bde435a9
KW
1832 unsigned int bits = spi->bits_per_word;
1833 u32 tmp;
6d3952a7 1834 struct device_node *np = spi->dev.of_node;
b43d65f7
LW
1835
1836 if (!spi->max_speed_hz)
1837 return -EINVAL;
1838
1839 /* Get controller_state if one is supplied */
1840 chip = spi_get_ctldata(spi);
1841
1842 if (chip == NULL) {
1843 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
77538f4a 1844 if (!chip)
b43d65f7 1845 return -ENOMEM;
b43d65f7
LW
1846 dev_dbg(&spi->dev,
1847 "allocated memory for controller's runtime state\n");
1848 }
1849
1850 /* Get controller data if one is supplied */
1851 chip_info = spi->controller_data;
1852
1853 if (chip_info == NULL) {
6d3952a7
RS
1854 if (np) {
1855 chip_info_dt = pl022_default_chip_info;
1856
1857 chip_info_dt.hierarchy = SSP_MASTER;
1858 of_property_read_u32(np, "pl022,interface",
1859 &chip_info_dt.iface);
1860 of_property_read_u32(np, "pl022,com-mode",
1861 &chip_info_dt.com_mode);
1862 of_property_read_u32(np, "pl022,rx-level-trig",
1863 &chip_info_dt.rx_lev_trig);
1864 of_property_read_u32(np, "pl022,tx-level-trig",
1865 &chip_info_dt.tx_lev_trig);
1866 of_property_read_u32(np, "pl022,ctrl-len",
1867 &chip_info_dt.ctrl_len);
1868 of_property_read_u32(np, "pl022,wait-state",
1869 &chip_info_dt.wait_state);
1870 of_property_read_u32(np, "pl022,duplex",
1871 &chip_info_dt.duplex);
1872
1873 chip_info = &chip_info_dt;
1874 } else {
1875 chip_info = &pl022_default_chip_info;
1876 /* spi_board_info.controller_data not is supplied */
1877 dev_dbg(&spi->dev,
1878 "using default controller_data settings\n");
1879 }
f9d629c7 1880 } else
b43d65f7
LW
1881 dev_dbg(&spi->dev,
1882 "using user supplied controller_data settings\n");
b43d65f7
LW
1883
1884 /*
1885 * We can override with custom divisors, else we use the board
1886 * frequency setting
1887 */
1888 if ((0 == chip_info->clk_freq.cpsdvsr)
1889 && (0 == chip_info->clk_freq.scr)) {
1890 status = calculate_effective_freq(pl022,
1891 spi->max_speed_hz,
f9d629c7 1892 &clk_freq);
b43d65f7
LW
1893 if (status < 0)
1894 goto err_config_params;
1895 } else {
f9d629c7
LW
1896 memcpy(&clk_freq, &chip_info->clk_freq, sizeof(clk_freq));
1897 if ((clk_freq.cpsdvsr % 2) != 0)
1898 clk_freq.cpsdvsr =
1899 clk_freq.cpsdvsr - 1;
b43d65f7 1900 }
f9d629c7
LW
1901 if ((clk_freq.cpsdvsr < CPSDVR_MIN)
1902 || (clk_freq.cpsdvsr > CPSDVR_MAX)) {
e3f88ae9 1903 status = -EINVAL;
f9d629c7
LW
1904 dev_err(&spi->dev,
1905 "cpsdvsr is configured incorrectly\n");
1906 goto err_config_params;
1907 }
1908
b43d65f7
LW
1909 status = verify_controller_parameters(pl022, chip_info);
1910 if (status) {
1911 dev_err(&spi->dev, "controller data is incorrect");
1912 goto err_config_params;
1913 }
f9d629c7 1914
083be3f0
LW
1915 pl022->rx_lev_trig = chip_info->rx_lev_trig;
1916 pl022->tx_lev_trig = chip_info->tx_lev_trig;
1917
b43d65f7
LW
1918 /* Now set controller state based on controller data */
1919 chip->xfer_type = chip_info->com_mode;
f9d629c7
LW
1920 if (!chip_info->cs_control) {
1921 chip->cs_control = null_cs_control;
f6f46de1
RS
1922 if (!gpio_is_valid(pl022->chipselects[spi->chip_select]))
1923 dev_warn(&spi->dev,
1924 "invalid chip select\n");
f9d629c7
LW
1925 } else
1926 chip->cs_control = chip_info->cs_control;
b43d65f7 1927
eb798c64
VS
1928 /* Check bits per word with vendor specific range */
1929 if ((bits <= 3) || (bits > pl022->vendor->max_bpw)) {
bde435a9 1930 status = -ENOTSUPP;
eb798c64
VS
1931 dev_err(&spi->dev, "illegal data size for this controller!\n");
1932 dev_err(&spi->dev, "This controller can only handle 4 <= n <= %d bit words\n",
1933 pl022->vendor->max_bpw);
bde435a9
KW
1934 goto err_config_params;
1935 } else if (bits <= 8) {
1936 dev_dbg(&spi->dev, "4 <= n <=8 bits per word\n");
b43d65f7
LW
1937 chip->n_bytes = 1;
1938 chip->read = READING_U8;
1939 chip->write = WRITING_U8;
bde435a9 1940 } else if (bits <= 16) {
b43d65f7
LW
1941 dev_dbg(&spi->dev, "9 <= n <= 16 bits per word\n");
1942 chip->n_bytes = 2;
1943 chip->read = READING_U16;
1944 chip->write = WRITING_U16;
1945 } else {
eb798c64
VS
1946 dev_dbg(&spi->dev, "17 <= n <= 32 bits per word\n");
1947 chip->n_bytes = 4;
1948 chip->read = READING_U32;
1949 chip->write = WRITING_U32;
b43d65f7
LW
1950 }
1951
1952 /* Now Initialize all register settings required for this chip */
1953 chip->cr0 = 0;
1954 chip->cr1 = 0;
1955 chip->dmacr = 0;
1956 chip->cpsr = 0;
1957 if ((chip_info->com_mode == DMA_TRANSFER)
1958 && ((pl022->master_info)->enable_dma)) {
b1b6b9aa 1959 chip->enable_dma = true;
b43d65f7 1960 dev_dbg(&spi->dev, "DMA mode set in controller state\n");
b43d65f7
LW
1961 SSP_WRITE_BITS(chip->dmacr, SSP_DMA_ENABLED,
1962 SSP_DMACR_MASK_RXDMAE, 0);
1963 SSP_WRITE_BITS(chip->dmacr, SSP_DMA_ENABLED,
1964 SSP_DMACR_MASK_TXDMAE, 1);
1965 } else {
b1b6b9aa 1966 chip->enable_dma = false;
b43d65f7
LW
1967 dev_dbg(&spi->dev, "DMA mode NOT set in controller state\n");
1968 SSP_WRITE_BITS(chip->dmacr, SSP_DMA_DISABLED,
1969 SSP_DMACR_MASK_RXDMAE, 0);
1970 SSP_WRITE_BITS(chip->dmacr, SSP_DMA_DISABLED,
1971 SSP_DMACR_MASK_TXDMAE, 1);
1972 }
1973
f9d629c7 1974 chip->cpsr = clk_freq.cpsdvsr;
b43d65f7 1975
556f4aeb
LW
1976 /* Special setup for the ST micro extended control registers */
1977 if (pl022->vendor->extended_cr) {
bde435a9
KW
1978 u32 etx;
1979
781c7b12
LW
1980 if (pl022->vendor->pl023) {
1981 /* These bits are only in the PL023 */
1982 SSP_WRITE_BITS(chip->cr1, chip_info->clkdelay,
1983 SSP_CR1_MASK_FBCLKDEL_ST, 13);
1984 } else {
1985 /* These bits are in the PL022 but not PL023 */
1986 SSP_WRITE_BITS(chip->cr0, chip_info->duplex,
1987 SSP_CR0_MASK_HALFDUP_ST, 5);
1988 SSP_WRITE_BITS(chip->cr0, chip_info->ctrl_len,
1989 SSP_CR0_MASK_CSS_ST, 16);
1990 SSP_WRITE_BITS(chip->cr0, chip_info->iface,
1991 SSP_CR0_MASK_FRF_ST, 21);
1992 SSP_WRITE_BITS(chip->cr1, chip_info->wait_state,
1993 SSP_CR1_MASK_MWAIT_ST, 6);
1994 }
bde435a9 1995 SSP_WRITE_BITS(chip->cr0, bits - 1,
556f4aeb 1996 SSP_CR0_MASK_DSS_ST, 0);
bde435a9
KW
1997
1998 if (spi->mode & SPI_LSB_FIRST) {
1999 tmp = SSP_RX_LSB;
2000 etx = SSP_TX_LSB;
2001 } else {
2002 tmp = SSP_RX_MSB;
2003 etx = SSP_TX_MSB;
2004 }
2005 SSP_WRITE_BITS(chip->cr1, tmp, SSP_CR1_MASK_RENDN_ST, 4);
2006 SSP_WRITE_BITS(chip->cr1, etx, SSP_CR1_MASK_TENDN_ST, 5);
556f4aeb
LW
2007 SSP_WRITE_BITS(chip->cr1, chip_info->rx_lev_trig,
2008 SSP_CR1_MASK_RXIFLSEL_ST, 7);
2009 SSP_WRITE_BITS(chip->cr1, chip_info->tx_lev_trig,
2010 SSP_CR1_MASK_TXIFLSEL_ST, 10);
2011 } else {
bde435a9 2012 SSP_WRITE_BITS(chip->cr0, bits - 1,
556f4aeb
LW
2013 SSP_CR0_MASK_DSS, 0);
2014 SSP_WRITE_BITS(chip->cr0, chip_info->iface,
2015 SSP_CR0_MASK_FRF, 4);
2016 }
bde435a9 2017
556f4aeb 2018 /* Stuff that is common for all versions */
bde435a9
KW
2019 if (spi->mode & SPI_CPOL)
2020 tmp = SSP_CLK_POL_IDLE_HIGH;
2021 else
2022 tmp = SSP_CLK_POL_IDLE_LOW;
2023 SSP_WRITE_BITS(chip->cr0, tmp, SSP_CR0_MASK_SPO, 6);
2024
2025 if (spi->mode & SPI_CPHA)
2026 tmp = SSP_CLK_SECOND_EDGE;
2027 else
2028 tmp = SSP_CLK_FIRST_EDGE;
2029 SSP_WRITE_BITS(chip->cr0, tmp, SSP_CR0_MASK_SPH, 7);
2030
f9d629c7 2031 SSP_WRITE_BITS(chip->cr0, clk_freq.scr, SSP_CR0_MASK_SCR, 8);
781c7b12 2032 /* Loopback is available on all versions except PL023 */
06fb01fd 2033 if (pl022->vendor->loopback) {
bde435a9
KW
2034 if (spi->mode & SPI_LOOP)
2035 tmp = LOOPBACK_ENABLED;
2036 else
2037 tmp = LOOPBACK_DISABLED;
2038 SSP_WRITE_BITS(chip->cr1, tmp, SSP_CR1_MASK_LBM, 0);
2039 }
b43d65f7
LW
2040 SSP_WRITE_BITS(chip->cr1, SSP_DISABLED, SSP_CR1_MASK_SSE, 1);
2041 SSP_WRITE_BITS(chip->cr1, chip_info->hierarchy, SSP_CR1_MASK_MS, 2);
f1e45f86
VK
2042 SSP_WRITE_BITS(chip->cr1, chip_info->slave_tx_disable, SSP_CR1_MASK_SOD,
2043 3);
b43d65f7
LW
2044
2045 /* Save controller_state */
2046 spi_set_ctldata(spi, chip);
2047 return status;
2048 err_config_params:
bde435a9 2049 spi_set_ctldata(spi, NULL);
b43d65f7
LW
2050 kfree(chip);
2051 return status;
2052}
2053
2054/**
2055 * pl022_cleanup - cleanup function registered to SPI master framework
2056 * @spi: spi device which is requesting cleanup
2057 *
2058 * This function is registered to the SPI framework for this SPI master
2059 * controller. It will free the runtime state of chip.
2060 */
2061static void pl022_cleanup(struct spi_device *spi)
2062{
2063 struct chip_data *chip = spi_get_ctldata(spi);
2064
2065 spi_set_ctldata(spi, NULL);
2066 kfree(chip);
2067}
2068
39a6ac11
RS
2069static struct pl022_ssp_controller *
2070pl022_platform_data_dt_get(struct device *dev)
2071{
2072 struct device_node *np = dev->of_node;
2073 struct pl022_ssp_controller *pd;
2074 u32 tmp;
2075
2076 if (!np) {
2077 dev_err(dev, "no dt node defined\n");
2078 return NULL;
2079 }
2080
2081 pd = devm_kzalloc(dev, sizeof(struct pl022_ssp_controller), GFP_KERNEL);
77538f4a 2082 if (!pd)
39a6ac11 2083 return NULL;
39a6ac11
RS
2084
2085 pd->bus_id = -1;
dbd897b9 2086 pd->enable_dma = 1;
39a6ac11
RS
2087 of_property_read_u32(np, "num-cs", &tmp);
2088 pd->num_chipselect = tmp;
2089 of_property_read_u32(np, "pl022,autosuspend-delay",
2090 &pd->autosuspend_delay);
2091 pd->rt = of_property_read_bool(np, "pl022,rt");
2092
2093 return pd;
2094}
2095
fd4a319b 2096static int pl022_probe(struct amba_device *adev, const struct amba_id *id)
b43d65f7
LW
2097{
2098 struct device *dev = &adev->dev;
8074cf06
JH
2099 struct pl022_ssp_controller *platform_info =
2100 dev_get_platdata(&adev->dev);
b43d65f7
LW
2101 struct spi_master *master;
2102 struct pl022 *pl022 = NULL; /*Data for this driver */
6d3952a7
RS
2103 struct device_node *np = adev->dev.of_node;
2104 int status = 0, i, num_cs;
b43d65f7
LW
2105
2106 dev_info(&adev->dev,
2107 "ARM PL022 driver, device ID: 0x%08x\n", adev->periphid);
39a6ac11
RS
2108 if (!platform_info && IS_ENABLED(CONFIG_OF))
2109 platform_info = pl022_platform_data_dt_get(dev);
2110
2111 if (!platform_info) {
2112 dev_err(dev, "probe: no platform data defined\n");
aeef9915 2113 return -ENODEV;
b43d65f7
LW
2114 }
2115
6d3952a7
RS
2116 if (platform_info->num_chipselect) {
2117 num_cs = platform_info->num_chipselect;
6d3952a7 2118 } else {
39a6ac11 2119 dev_err(dev, "probe: no chip select defined\n");
aeef9915 2120 return -ENODEV;
6d3952a7
RS
2121 }
2122
b43d65f7 2123 /* Allocate master with space for data */
b4b84826 2124 master = spi_alloc_master(dev, sizeof(struct pl022));
b43d65f7
LW
2125 if (master == NULL) {
2126 dev_err(&adev->dev, "probe - cannot alloc SPI master\n");
aeef9915 2127 return -ENOMEM;
b43d65f7
LW
2128 }
2129
2130 pl022 = spi_master_get_devdata(master);
2131 pl022->master = master;
2132 pl022->master_info = platform_info;
2133 pl022->adev = adev;
2134 pl022->vendor = id->data;
b4b84826
RS
2135 pl022->chipselects = devm_kzalloc(dev, num_cs * sizeof(int),
2136 GFP_KERNEL);
73e3f1eb
KP
2137 if (!pl022->chipselects) {
2138 status = -ENOMEM;
2139 goto err_no_mem;
2140 }
b43d65f7
LW
2141
2142 /*
2143 * Bus Number Which has been Assigned to this SSP controller
2144 * on this board
2145 */
2146 master->bus_num = platform_info->bus_id;
6d3952a7 2147 master->num_chipselect = num_cs;
b43d65f7
LW
2148 master->cleanup = pl022_cleanup;
2149 master->setup = pl022_setup;
29b6e906 2150 master->auto_runtime_pm = true;
ffbbdd21
LW
2151 master->transfer_one_message = pl022_transfer_one_message;
2152 master->unprepare_transfer_hardware = pl022_unprepare_transfer_hardware;
2153 master->rt = platform_info->rt;
6d3952a7 2154 master->dev.of_node = dev->of_node;
b43d65f7 2155
6d3952a7
RS
2156 if (platform_info->num_chipselect && platform_info->chipselects) {
2157 for (i = 0; i < num_cs; i++)
f6f46de1 2158 pl022->chipselects[i] = platform_info->chipselects[i];
db4fa45e
AB
2159 } else if (pl022->vendor->internal_cs_ctrl) {
2160 for (i = 0; i < num_cs; i++)
2161 pl022->chipselects[i] = i;
6d3952a7
RS
2162 } else if (IS_ENABLED(CONFIG_OF)) {
2163 for (i = 0; i < num_cs; i++) {
2164 int cs_gpio = of_get_named_gpio(np, "cs-gpios", i);
2165
2166 if (cs_gpio == -EPROBE_DEFER) {
2167 status = -EPROBE_DEFER;
2168 goto err_no_gpio;
2169 }
2170
2171 pl022->chipselects[i] = cs_gpio;
2172
2173 if (gpio_is_valid(cs_gpio)) {
aeef9915 2174 if (devm_gpio_request(dev, cs_gpio, "ssp-pl022"))
6d3952a7
RS
2175 dev_err(&adev->dev,
2176 "could not request %d gpio\n",
2177 cs_gpio);
2178 else if (gpio_direction_output(cs_gpio, 1))
2179 dev_err(&adev->dev,
61e89e65 2180 "could not set gpio %d as output\n",
6d3952a7
RS
2181 cs_gpio);
2182 }
2183 }
2184 }
f6f46de1 2185
bde435a9
KW
2186 /*
2187 * Supports mode 0-3, loopback, and active low CS. Transfers are
2188 * always MS bit first on the original pl022.
2189 */
2190 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LOOP;
2191 if (pl022->vendor->extended_cr)
2192 master->mode_bits |= SPI_LSB_FIRST;
2193
b43d65f7
LW
2194 dev_dbg(&adev->dev, "BUSNO: %d\n", master->bus_num);
2195
2196 status = amba_request_regions(adev, NULL);
2197 if (status)
2198 goto err_no_ioregion;
2199
b1b6b9aa 2200 pl022->phybase = adev->res.start;
aeef9915
LW
2201 pl022->virtbase = devm_ioremap(dev, adev->res.start,
2202 resource_size(&adev->res));
b43d65f7
LW
2203 if (pl022->virtbase == NULL) {
2204 status = -ENOMEM;
2205 goto err_no_ioremap;
2206 }
2c067509
JH
2207 dev_info(&adev->dev, "mapped registers from %pa to %p\n",
2208 &adev->res.start, pl022->virtbase);
b43d65f7 2209
aeef9915 2210 pl022->clk = devm_clk_get(&adev->dev, NULL);
b43d65f7
LW
2211 if (IS_ERR(pl022->clk)) {
2212 status = PTR_ERR(pl022->clk);
2213 dev_err(&adev->dev, "could not retrieve SSP/SPI bus clock\n");
2214 goto err_no_clk;
2215 }
7ff6bcf0 2216
6cac167b 2217 status = clk_prepare_enable(pl022->clk);
71e63e74
UH
2218 if (status) {
2219 dev_err(&adev->dev, "could not enable SSP/SPI bus clock\n");
2220 goto err_no_clk_en;
2221 }
2222
ffbbdd21
LW
2223 /* Initialize transfer pump */
2224 tasklet_init(&pl022->pump_transfers, pump_transfers,
2225 (unsigned long)pl022);
2226
b43d65f7 2227 /* Disable SSP */
b43d65f7
LW
2228 writew((readw(SSP_CR1(pl022->virtbase)) & (~SSP_CR1_MASK_SSE)),
2229 SSP_CR1(pl022->virtbase));
2230 load_ssp_default_config(pl022);
b43d65f7 2231
aeef9915
LW
2232 status = devm_request_irq(dev, adev->irq[0], pl022_interrupt_handler,
2233 0, "pl022", pl022);
b43d65f7
LW
2234 if (status < 0) {
2235 dev_err(&adev->dev, "probe - cannot get IRQ (%d)\n", status);
2236 goto err_no_irq;
2237 }
b1b6b9aa 2238
dc715452
AB
2239 /* Get DMA channels, try autoconfiguration first */
2240 status = pl022_dma_autoprobe(pl022);
2241
2242 /* If that failed, use channels from platform_info */
2243 if (status == 0)
2244 platform_info->enable_dma = 1;
2245 else if (platform_info->enable_dma) {
b1b6b9aa
LW
2246 status = pl022_dma_probe(pl022);
2247 if (status != 0)
43c64015 2248 platform_info->enable_dma = 0;
b1b6b9aa
LW
2249 }
2250
b43d65f7
LW
2251 /* Register with the SPI framework */
2252 amba_set_drvdata(adev, pl022);
35794a77 2253 status = devm_spi_register_master(&adev->dev, master);
b43d65f7
LW
2254 if (status != 0) {
2255 dev_err(&adev->dev,
2256 "probe - problem registering spi master\n");
2257 goto err_spi_register;
2258 }
25985edc 2259 dev_dbg(dev, "probe succeeded\n");
92b97f0a
RK
2260
2261 /* let runtime pm put suspend */
53e4acea
CB
2262 if (platform_info->autosuspend_delay > 0) {
2263 dev_info(&adev->dev,
2264 "will use autosuspend for runtime pm, delay %dms\n",
2265 platform_info->autosuspend_delay);
2266 pm_runtime_set_autosuspend_delay(dev,
2267 platform_info->autosuspend_delay);
2268 pm_runtime_use_autosuspend(dev);
53e4acea 2269 }
0df34994
UH
2270 pm_runtime_put(dev);
2271
b43d65f7
LW
2272 return 0;
2273
2274 err_spi_register:
3e3ea716
VK
2275 if (platform_info->enable_dma)
2276 pl022_dma_remove(pl022);
b43d65f7 2277 err_no_irq:
6cac167b 2278 clk_disable_unprepare(pl022->clk);
71e63e74 2279 err_no_clk_en:
b43d65f7 2280 err_no_clk:
b43d65f7
LW
2281 err_no_ioremap:
2282 amba_release_regions(adev);
2283 err_no_ioregion:
6d3952a7 2284 err_no_gpio:
73e3f1eb 2285 err_no_mem:
b43d65f7 2286 spi_master_put(master);
b43d65f7
LW
2287 return status;
2288}
2289
fd4a319b 2290static int
b43d65f7
LW
2291pl022_remove(struct amba_device *adev)
2292{
2293 struct pl022 *pl022 = amba_get_drvdata(adev);
50658b66 2294
b43d65f7
LW
2295 if (!pl022)
2296 return 0;
2297
92b97f0a
RK
2298 /*
2299 * undo pm_runtime_put() in probe. I assume that we're not
2300 * accessing the primecell here.
2301 */
2302 pm_runtime_get_noresume(&adev->dev);
2303
b43d65f7 2304 load_ssp_default_config(pl022);
3e3ea716
VK
2305 if (pl022->master_info->enable_dma)
2306 pl022_dma_remove(pl022);
2307
6cac167b 2308 clk_disable_unprepare(pl022->clk);
b43d65f7
LW
2309 amba_release_regions(adev);
2310 tasklet_disable(&pl022->pump_transfers);
b43d65f7
LW
2311 return 0;
2312}
2313
84a5dc41 2314#ifdef CONFIG_PM_SLEEP
6cfa6279 2315static int pl022_suspend(struct device *dev)
b43d65f7 2316{
92b97f0a 2317 struct pl022 *pl022 = dev_get_drvdata(dev);
ffbbdd21 2318 int ret;
b43d65f7 2319
ffbbdd21
LW
2320 ret = spi_master_suspend(pl022->master);
2321 if (ret) {
2322 dev_warn(dev, "cannot suspend master\n");
2323 return ret;
b43d65f7 2324 }
4964a26d 2325
84a5dc41
UH
2326 ret = pm_runtime_force_suspend(dev);
2327 if (ret) {
2328 spi_master_resume(pl022->master);
2329 return ret;
2330 }
2331
2332 pinctrl_pm_select_sleep_state(dev);
b43d65f7 2333
6cfa6279 2334 dev_dbg(dev, "suspended\n");
b43d65f7
LW
2335 return 0;
2336}
2337
92b97f0a 2338static int pl022_resume(struct device *dev)
b43d65f7 2339{
92b97f0a 2340 struct pl022 *pl022 = dev_get_drvdata(dev);
ffbbdd21 2341 int ret;
b43d65f7 2342
84a5dc41
UH
2343 ret = pm_runtime_force_resume(dev);
2344 if (ret)
2345 dev_err(dev, "problem resuming\n");
ada7aec7 2346
b43d65f7 2347 /* Start the queue running */
ffbbdd21
LW
2348 ret = spi_master_resume(pl022->master);
2349 if (ret)
2350 dev_err(dev, "problem starting queue (%d)\n", ret);
b43d65f7 2351 else
92b97f0a 2352 dev_dbg(dev, "resumed\n");
b43d65f7 2353
ffbbdd21 2354 return ret;
b43d65f7 2355}
84a5dc41 2356#endif
b43d65f7 2357
736198b0 2358#ifdef CONFIG_PM
92b97f0a
RK
2359static int pl022_runtime_suspend(struct device *dev)
2360{
2361 struct pl022 *pl022 = dev_get_drvdata(dev);
4f5e1b37 2362
84a5dc41
UH
2363 clk_disable_unprepare(pl022->clk);
2364 pinctrl_pm_select_idle_state(dev);
2365
92b97f0a
RK
2366 return 0;
2367}
2368
2369static int pl022_runtime_resume(struct device *dev)
2370{
2371 struct pl022 *pl022 = dev_get_drvdata(dev);
92b97f0a 2372
84a5dc41
UH
2373 pinctrl_pm_select_default_state(dev);
2374 clk_prepare_enable(pl022->clk);
2375
92b97f0a
RK
2376 return 0;
2377}
2378#endif
2379
2380static const struct dev_pm_ops pl022_dev_pm_ops = {
2381 SET_SYSTEM_SLEEP_PM_OPS(pl022_suspend, pl022_resume)
6ed23b80 2382 SET_RUNTIME_PM_OPS(pl022_runtime_suspend, pl022_runtime_resume, NULL)
92b97f0a
RK
2383};
2384
b43d65f7
LW
2385static struct vendor_data vendor_arm = {
2386 .fifodepth = 8,
2387 .max_bpw = 16,
2388 .unidir = false,
556f4aeb 2389 .extended_cr = false,
781c7b12 2390 .pl023 = false,
06fb01fd 2391 .loopback = true,
db4fa45e 2392 .internal_cs_ctrl = false,
b43d65f7
LW
2393};
2394
b43d65f7
LW
2395static struct vendor_data vendor_st = {
2396 .fifodepth = 32,
2397 .max_bpw = 32,
2398 .unidir = false,
556f4aeb 2399 .extended_cr = true,
781c7b12 2400 .pl023 = false,
06fb01fd 2401 .loopback = true,
db4fa45e 2402 .internal_cs_ctrl = false,
781c7b12
LW
2403};
2404
2405static struct vendor_data vendor_st_pl023 = {
2406 .fifodepth = 32,
2407 .max_bpw = 32,
2408 .unidir = false,
2409 .extended_cr = true,
2410 .pl023 = true,
06fb01fd 2411 .loopback = false,
db4fa45e
AB
2412 .internal_cs_ctrl = false,
2413};
2414
2415static struct vendor_data vendor_lsi = {
2416 .fifodepth = 8,
2417 .max_bpw = 16,
2418 .unidir = false,
2419 .extended_cr = false,
2420 .pl023 = false,
2421 .loopback = true,
2422 .internal_cs_ctrl = true,
06fb01fd
PL
2423};
2424
b43d65f7
LW
2425static struct amba_id pl022_ids[] = {
2426 {
2427 /*
2428 * ARM PL022 variant, this has a 16bit wide
2429 * and 8 locations deep TX/RX FIFO
2430 */
2431 .id = 0x00041022,
2432 .mask = 0x000fffff,
2433 .data = &vendor_arm,
2434 },
2435 {
2436 /*
2437 * ST Micro derivative, this has 32bit wide
2438 * and 32 locations deep TX/RX FIFO
2439 */
e89e04fc 2440 .id = 0x01080022,
b43d65f7
LW
2441 .mask = 0xffffffff,
2442 .data = &vendor_st,
2443 },
781c7b12
LW
2444 {
2445 /*
2446 * ST-Ericsson derivative "PL023" (this is not
2447 * an official ARM number), this is a PL022 SSP block
2448 * stripped to SPI mode only, it has 32bit wide
2449 * and 32 locations deep TX/RX FIFO but no extended
2450 * CR0/CR1 register
2451 */
f1e45f86
VK
2452 .id = 0x00080023,
2453 .mask = 0xffffffff,
2454 .data = &vendor_st_pl023,
781c7b12 2455 },
db4fa45e
AB
2456 {
2457 /*
2458 * PL022 variant that has a chip select control register whih
2459 * allows control of 5 output signals nCS[0:4].
2460 */
2461 .id = 0x000b6022,
2462 .mask = 0x000fffff,
2463 .data = &vendor_lsi,
2464 },
b43d65f7
LW
2465 { 0, 0 },
2466};
2467
7eeac71b
DM
2468MODULE_DEVICE_TABLE(amba, pl022_ids);
2469
b43d65f7
LW
2470static struct amba_driver pl022_driver = {
2471 .drv = {
2472 .name = "ssp-pl022",
92b97f0a 2473 .pm = &pl022_dev_pm_ops,
b43d65f7
LW
2474 },
2475 .id_table = pl022_ids,
2476 .probe = pl022_probe,
fd4a319b 2477 .remove = pl022_remove,
b43d65f7
LW
2478};
2479
b43d65f7
LW
2480static int __init pl022_init(void)
2481{
2482 return amba_driver_register(&pl022_driver);
2483}
25c8e03b 2484subsys_initcall(pl022_init);
b43d65f7
LW
2485
2486static void __exit pl022_exit(void)
2487{
2488 amba_driver_unregister(&pl022_driver);
2489}
b43d65f7
LW
2490module_exit(pl022_exit);
2491
2492MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>");
2493MODULE_DESCRIPTION("PL022 SSP Controller Driver");
2494MODULE_LICENSE("GPL");
This page took 0.471516 seconds and 5 git commands to generate.