spi: pxa2xx: pxa2xx_spi_transfer_one() can be static
[linux-2.6-block.git] / drivers / spi / spi-pxa2xx.c
CommitLineData
e0c9905e
SS
1/*
2 * Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
a0d2642e 3 * Copyright (C) 2013, Intel Corporation
e0c9905e
SS
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
e0c9905e
SS
14 */
15
8b136baa 16#include <linux/bitops.h>
e0c9905e
SS
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/device.h>
20#include <linux/ioport.h>
21#include <linux/errno.h>
cbfd6a21 22#include <linux/err.h>
e0c9905e 23#include <linux/interrupt.h>
9df461ec 24#include <linux/kernel.h>
34cadd9c 25#include <linux/pci.h>
e0c9905e 26#include <linux/platform_device.h>
8348c259 27#include <linux/spi/pxa2xx_spi.h>
e0c9905e 28#include <linux/spi/spi.h>
e0c9905e 29#include <linux/delay.h>
a7bb3909 30#include <linux/gpio.h>
089bd46d 31#include <linux/gpio/consumer.h>
5a0e3ad6 32#include <linux/slab.h>
3343b7a6 33#include <linux/clk.h>
7d94a505 34#include <linux/pm_runtime.h>
a3496855 35#include <linux/acpi.h>
e0c9905e 36
cd7bed00 37#include "spi-pxa2xx.h"
e0c9905e
SS
38
39MODULE_AUTHOR("Stephen Street");
037cdafe 40MODULE_DESCRIPTION("PXA2xx SSP SPI Controller");
e0c9905e 41MODULE_LICENSE("GPL");
7e38c3c4 42MODULE_ALIAS("platform:pxa2xx-spi");
e0c9905e 43
f1f640a9
VS
44#define TIMOUT_DFLT 1000
45
b97c74bd
NF
46/*
47 * for testing SSCR1 changes that require SSP restart, basically
48 * everything except the service and interrupt enables, the pxa270 developer
49 * manual says only SSCR1_SCFR, SSCR1_SPH, SSCR1_SPO need to be in this
50 * list, but the PXA255 dev man says all bits without really meaning the
51 * service and interrupt enables
52 */
53#define SSCR1_CHANGE_MASK (SSCR1_TTELP | SSCR1_TTE | SSCR1_SCFR \
8d94cc50 54 | SSCR1_ECRA | SSCR1_ECRB | SSCR1_SCLKDIR \
b97c74bd
NF
55 | SSCR1_SFRMDIR | SSCR1_RWOT | SSCR1_TRAIL \
56 | SSCR1_IFS | SSCR1_STRF | SSCR1_EFWR \
57 | SSCR1_RFT | SSCR1_TFT | SSCR1_MWDS \
58 | SSCR1_SPH | SSCR1_SPO | SSCR1_LBM)
8d94cc50 59
e5262d05
WC
60#define QUARK_X1000_SSCR1_CHANGE_MASK (QUARK_X1000_SSCR1_STRF \
61 | QUARK_X1000_SSCR1_EFWR \
62 | QUARK_X1000_SSCR1_RFT \
63 | QUARK_X1000_SSCR1_TFT \
64 | SSCR1_SPH | SSCR1_SPO | SSCR1_LBM)
65
7c7289a4
AS
66#define CE4100_SSCR1_CHANGE_MASK (SSCR1_TTELP | SSCR1_TTE | SSCR1_SCFR \
67 | SSCR1_ECRA | SSCR1_ECRB | SSCR1_SCLKDIR \
68 | SSCR1_SFRMDIR | SSCR1_RWOT | SSCR1_TRAIL \
69 | SSCR1_IFS | SSCR1_STRF | SSCR1_EFWR \
70 | CE4100_SSCR1_RFT | CE4100_SSCR1_TFT | SSCR1_MWDS \
71 | SSCR1_SPH | SSCR1_SPO | SSCR1_LBM)
72
624ea72e
JN
73#define LPSS_GENERAL_REG_RXTO_HOLDOFF_DISABLE BIT(24)
74#define LPSS_CS_CONTROL_SW_MODE BIT(0)
75#define LPSS_CS_CONTROL_CS_HIGH BIT(1)
8b136baa
JN
76#define LPSS_CAPS_CS_EN_SHIFT 9
77#define LPSS_CAPS_CS_EN_MASK (0xf << LPSS_CAPS_CS_EN_SHIFT)
a0d2642e 78
dccf7369
JN
79struct lpss_config {
80 /* LPSS offset from drv_data->ioaddr */
81 unsigned offset;
82 /* Register offsets from drv_data->lpss_base or -1 */
83 int reg_general;
84 int reg_ssp;
85 int reg_cs_ctrl;
8b136baa 86 int reg_capabilities;
dccf7369
JN
87 /* FIFO thresholds */
88 u32 rx_threshold;
89 u32 tx_threshold_lo;
90 u32 tx_threshold_hi;
c1e4a53c
MW
91 /* Chip select control */
92 unsigned cs_sel_shift;
93 unsigned cs_sel_mask;
30f3a6ab 94 unsigned cs_num;
dccf7369
JN
95};
96
97/* Keep these sorted with enum pxa_ssp_type */
98static const struct lpss_config lpss_platforms[] = {
99 { /* LPSS_LPT_SSP */
100 .offset = 0x800,
101 .reg_general = 0x08,
102 .reg_ssp = 0x0c,
103 .reg_cs_ctrl = 0x18,
8b136baa 104 .reg_capabilities = -1,
dccf7369
JN
105 .rx_threshold = 64,
106 .tx_threshold_lo = 160,
107 .tx_threshold_hi = 224,
108 },
109 { /* LPSS_BYT_SSP */
110 .offset = 0x400,
111 .reg_general = 0x08,
112 .reg_ssp = 0x0c,
113 .reg_cs_ctrl = 0x18,
8b136baa 114 .reg_capabilities = -1,
dccf7369
JN
115 .rx_threshold = 64,
116 .tx_threshold_lo = 160,
117 .tx_threshold_hi = 224,
118 },
30f3a6ab
MW
119 { /* LPSS_BSW_SSP */
120 .offset = 0x400,
121 .reg_general = 0x08,
122 .reg_ssp = 0x0c,
123 .reg_cs_ctrl = 0x18,
124 .reg_capabilities = -1,
125 .rx_threshold = 64,
126 .tx_threshold_lo = 160,
127 .tx_threshold_hi = 224,
128 .cs_sel_shift = 2,
129 .cs_sel_mask = 1 << 2,
130 .cs_num = 2,
131 },
34cadd9c
JN
132 { /* LPSS_SPT_SSP */
133 .offset = 0x200,
134 .reg_general = -1,
135 .reg_ssp = 0x20,
136 .reg_cs_ctrl = 0x24,
66ec246e 137 .reg_capabilities = -1,
34cadd9c
JN
138 .rx_threshold = 1,
139 .tx_threshold_lo = 32,
140 .tx_threshold_hi = 56,
141 },
b7c08cf8
JN
142 { /* LPSS_BXT_SSP */
143 .offset = 0x200,
144 .reg_general = -1,
145 .reg_ssp = 0x20,
146 .reg_cs_ctrl = 0x24,
147 .reg_capabilities = 0xfc,
148 .rx_threshold = 1,
149 .tx_threshold_lo = 16,
150 .tx_threshold_hi = 48,
c1e4a53c
MW
151 .cs_sel_shift = 8,
152 .cs_sel_mask = 3 << 8,
b7c08cf8 153 },
fc0b2acc
JN
154 { /* LPSS_CNL_SSP */
155 .offset = 0x200,
156 .reg_general = -1,
157 .reg_ssp = 0x20,
158 .reg_cs_ctrl = 0x24,
159 .reg_capabilities = 0xfc,
160 .rx_threshold = 1,
161 .tx_threshold_lo = 32,
162 .tx_threshold_hi = 56,
163 .cs_sel_shift = 8,
164 .cs_sel_mask = 3 << 8,
165 },
dccf7369
JN
166};
167
168static inline const struct lpss_config
169*lpss_get_config(const struct driver_data *drv_data)
170{
171 return &lpss_platforms[drv_data->ssp_type - LPSS_LPT_SSP];
172}
173
a0d2642e
MW
174static bool is_lpss_ssp(const struct driver_data *drv_data)
175{
03fbf488
JN
176 switch (drv_data->ssp_type) {
177 case LPSS_LPT_SSP:
178 case LPSS_BYT_SSP:
30f3a6ab 179 case LPSS_BSW_SSP:
34cadd9c 180 case LPSS_SPT_SSP:
b7c08cf8 181 case LPSS_BXT_SSP:
fc0b2acc 182 case LPSS_CNL_SSP:
03fbf488
JN
183 return true;
184 default:
185 return false;
186 }
a0d2642e
MW
187}
188
e5262d05
WC
189static bool is_quark_x1000_ssp(const struct driver_data *drv_data)
190{
191 return drv_data->ssp_type == QUARK_X1000_SSP;
192}
193
4fdb2424
WC
194static u32 pxa2xx_spi_get_ssrc1_change_mask(const struct driver_data *drv_data)
195{
196 switch (drv_data->ssp_type) {
e5262d05
WC
197 case QUARK_X1000_SSP:
198 return QUARK_X1000_SSCR1_CHANGE_MASK;
7c7289a4
AS
199 case CE4100_SSP:
200 return CE4100_SSCR1_CHANGE_MASK;
4fdb2424
WC
201 default:
202 return SSCR1_CHANGE_MASK;
203 }
204}
205
206static u32
207pxa2xx_spi_get_rx_default_thre(const struct driver_data *drv_data)
208{
209 switch (drv_data->ssp_type) {
e5262d05
WC
210 case QUARK_X1000_SSP:
211 return RX_THRESH_QUARK_X1000_DFLT;
7c7289a4
AS
212 case CE4100_SSP:
213 return RX_THRESH_CE4100_DFLT;
4fdb2424
WC
214 default:
215 return RX_THRESH_DFLT;
216 }
217}
218
219static bool pxa2xx_spi_txfifo_full(const struct driver_data *drv_data)
220{
4fdb2424
WC
221 u32 mask;
222
223 switch (drv_data->ssp_type) {
e5262d05
WC
224 case QUARK_X1000_SSP:
225 mask = QUARK_X1000_SSSR_TFL_MASK;
226 break;
7c7289a4
AS
227 case CE4100_SSP:
228 mask = CE4100_SSSR_TFL_MASK;
229 break;
4fdb2424
WC
230 default:
231 mask = SSSR_TFL_MASK;
232 break;
233 }
234
c039dd27 235 return (pxa2xx_spi_read(drv_data, SSSR) & mask) == mask;
4fdb2424
WC
236}
237
238static void pxa2xx_spi_clear_rx_thre(const struct driver_data *drv_data,
239 u32 *sccr1_reg)
240{
241 u32 mask;
242
243 switch (drv_data->ssp_type) {
e5262d05
WC
244 case QUARK_X1000_SSP:
245 mask = QUARK_X1000_SSCR1_RFT;
246 break;
7c7289a4
AS
247 case CE4100_SSP:
248 mask = CE4100_SSCR1_RFT;
249 break;
4fdb2424
WC
250 default:
251 mask = SSCR1_RFT;
252 break;
253 }
254 *sccr1_reg &= ~mask;
255}
256
257static void pxa2xx_spi_set_rx_thre(const struct driver_data *drv_data,
258 u32 *sccr1_reg, u32 threshold)
259{
260 switch (drv_data->ssp_type) {
e5262d05
WC
261 case QUARK_X1000_SSP:
262 *sccr1_reg |= QUARK_X1000_SSCR1_RxTresh(threshold);
263 break;
7c7289a4
AS
264 case CE4100_SSP:
265 *sccr1_reg |= CE4100_SSCR1_RxTresh(threshold);
266 break;
4fdb2424
WC
267 default:
268 *sccr1_reg |= SSCR1_RxTresh(threshold);
269 break;
270 }
271}
272
273static u32 pxa2xx_configure_sscr0(const struct driver_data *drv_data,
274 u32 clk_div, u8 bits)
275{
276 switch (drv_data->ssp_type) {
e5262d05
WC
277 case QUARK_X1000_SSP:
278 return clk_div
279 | QUARK_X1000_SSCR0_Motorola
280 | QUARK_X1000_SSCR0_DataSize(bits > 32 ? 8 : bits)
281 | SSCR0_SSE;
4fdb2424
WC
282 default:
283 return clk_div
284 | SSCR0_Motorola
285 | SSCR0_DataSize(bits > 16 ? bits - 16 : bits)
286 | SSCR0_SSE
287 | (bits > 16 ? SSCR0_EDSS : 0);
288 }
289}
290
a0d2642e
MW
291/*
292 * Read and write LPSS SSP private registers. Caller must first check that
293 * is_lpss_ssp() returns true before these can be called.
294 */
295static u32 __lpss_ssp_read_priv(struct driver_data *drv_data, unsigned offset)
296{
297 WARN_ON(!drv_data->lpss_base);
298 return readl(drv_data->lpss_base + offset);
299}
300
301static void __lpss_ssp_write_priv(struct driver_data *drv_data,
302 unsigned offset, u32 value)
303{
304 WARN_ON(!drv_data->lpss_base);
305 writel(value, drv_data->lpss_base + offset);
306}
307
308/*
309 * lpss_ssp_setup - perform LPSS SSP specific setup
310 * @drv_data: pointer to the driver private data
311 *
312 * Perform LPSS SSP specific setup. This function must be called first if
313 * one is going to use LPSS SSP private registers.
314 */
315static void lpss_ssp_setup(struct driver_data *drv_data)
316{
dccf7369
JN
317 const struct lpss_config *config;
318 u32 value;
a0d2642e 319
dccf7369
JN
320 config = lpss_get_config(drv_data);
321 drv_data->lpss_base = drv_data->ioaddr + config->offset;
a0d2642e
MW
322
323 /* Enable software chip select control */
0e897218 324 value = __lpss_ssp_read_priv(drv_data, config->reg_cs_ctrl);
624ea72e
JN
325 value &= ~(LPSS_CS_CONTROL_SW_MODE | LPSS_CS_CONTROL_CS_HIGH);
326 value |= LPSS_CS_CONTROL_SW_MODE | LPSS_CS_CONTROL_CS_HIGH;
dccf7369 327 __lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value);
0054e28d
MW
328
329 /* Enable multiblock DMA transfers */
1de70612 330 if (drv_data->master_info->enable_dma) {
dccf7369 331 __lpss_ssp_write_priv(drv_data, config->reg_ssp, 1);
1de70612 332
82ba2c2a
JN
333 if (config->reg_general >= 0) {
334 value = __lpss_ssp_read_priv(drv_data,
335 config->reg_general);
624ea72e 336 value |= LPSS_GENERAL_REG_RXTO_HOLDOFF_DISABLE;
82ba2c2a
JN
337 __lpss_ssp_write_priv(drv_data,
338 config->reg_general, value);
339 }
1de70612 340 }
a0d2642e
MW
341}
342
d5898e19 343static void lpss_ssp_select_cs(struct spi_device *spi,
c1e4a53c
MW
344 const struct lpss_config *config)
345{
d5898e19
JN
346 struct driver_data *drv_data =
347 spi_controller_get_devdata(spi->controller);
c1e4a53c
MW
348 u32 value, cs;
349
350 if (!config->cs_sel_mask)
351 return;
352
353 value = __lpss_ssp_read_priv(drv_data, config->reg_cs_ctrl);
354
d5898e19 355 cs = spi->chip_select;
c1e4a53c
MW
356 cs <<= config->cs_sel_shift;
357 if (cs != (value & config->cs_sel_mask)) {
358 /*
359 * When switching another chip select output active the
360 * output must be selected first and wait 2 ssp_clk cycles
361 * before changing state to active. Otherwise a short
362 * glitch will occur on the previous chip select since
363 * output select is latched but state control is not.
364 */
365 value &= ~config->cs_sel_mask;
366 value |= cs;
367 __lpss_ssp_write_priv(drv_data,
368 config->reg_cs_ctrl, value);
369 ndelay(1000000000 /
370 (drv_data->master->max_speed_hz / 2));
371 }
372}
373
d5898e19 374static void lpss_ssp_cs_control(struct spi_device *spi, bool enable)
a0d2642e 375{
d5898e19
JN
376 struct driver_data *drv_data =
377 spi_controller_get_devdata(spi->controller);
dccf7369 378 const struct lpss_config *config;
c1e4a53c 379 u32 value;
a0d2642e 380
dccf7369
JN
381 config = lpss_get_config(drv_data);
382
c1e4a53c 383 if (enable)
d5898e19 384 lpss_ssp_select_cs(spi, config);
c1e4a53c 385
dccf7369 386 value = __lpss_ssp_read_priv(drv_data, config->reg_cs_ctrl);
c1e4a53c 387 if (enable)
624ea72e 388 value &= ~LPSS_CS_CONTROL_CS_HIGH;
c1e4a53c 389 else
624ea72e 390 value |= LPSS_CS_CONTROL_CS_HIGH;
dccf7369 391 __lpss_ssp_write_priv(drv_data, config->reg_cs_ctrl, value);
a0d2642e
MW
392}
393
d5898e19 394static void cs_assert(struct spi_device *spi)
a7bb3909 395{
d5898e19
JN
396 struct chip_data *chip = spi_get_ctldata(spi);
397 struct driver_data *drv_data =
398 spi_controller_get_devdata(spi->controller);
a7bb3909 399
2a8626a9 400 if (drv_data->ssp_type == CE4100_SSP) {
96579a4e 401 pxa2xx_spi_write(drv_data, SSSR, chip->frm);
2a8626a9
SAS
402 return;
403 }
404
a7bb3909
EM
405 if (chip->cs_control) {
406 chip->cs_control(PXA2XX_CS_ASSERT);
407 return;
408 }
409
c18d925f
JK
410 if (chip->gpiod_cs) {
411 gpiod_set_value(chip->gpiod_cs, chip->gpio_cs_inverted);
a0d2642e
MW
412 return;
413 }
414
7566bcc7 415 if (is_lpss_ssp(drv_data))
d5898e19 416 lpss_ssp_cs_control(spi, true);
a7bb3909
EM
417}
418
d5898e19 419static void cs_deassert(struct spi_device *spi)
a7bb3909 420{
d5898e19
JN
421 struct chip_data *chip = spi_get_ctldata(spi);
422 struct driver_data *drv_data =
423 spi_controller_get_devdata(spi->controller);
104e51af 424 unsigned long timeout;
a7bb3909 425
2a8626a9
SAS
426 if (drv_data->ssp_type == CE4100_SSP)
427 return;
428
104e51af
JN
429 /* Wait until SSP becomes idle before deasserting the CS */
430 timeout = jiffies + msecs_to_jiffies(10);
431 while (pxa2xx_spi_read(drv_data, SSSR) & SSSR_BSY &&
432 !time_after(jiffies, timeout))
433 cpu_relax();
434
a7bb3909 435 if (chip->cs_control) {
2b2562d3 436 chip->cs_control(PXA2XX_CS_DEASSERT);
a7bb3909
EM
437 return;
438 }
439
c18d925f
JK
440 if (chip->gpiod_cs) {
441 gpiod_set_value(chip->gpiod_cs, !chip->gpio_cs_inverted);
a0d2642e
MW
442 return;
443 }
444
7566bcc7 445 if (is_lpss_ssp(drv_data))
d5898e19
JN
446 lpss_ssp_cs_control(spi, false);
447}
448
449static void pxa2xx_spi_set_cs(struct spi_device *spi, bool level)
450{
451 if (level)
452 cs_deassert(spi);
453 else
454 cs_assert(spi);
a7bb3909
EM
455}
456
cd7bed00 457int pxa2xx_spi_flush(struct driver_data *drv_data)
e0c9905e
SS
458{
459 unsigned long limit = loops_per_jiffy << 1;
460
e0c9905e 461 do {
c039dd27
JN
462 while (pxa2xx_spi_read(drv_data, SSSR) & SSSR_RNE)
463 pxa2xx_spi_read(drv_data, SSDR);
464 } while ((pxa2xx_spi_read(drv_data, SSSR) & SSSR_BSY) && --limit);
2a8626a9 465 write_SSSR_CS(drv_data, SSSR_ROR);
e0c9905e
SS
466
467 return limit;
468}
469
8d94cc50 470static int null_writer(struct driver_data *drv_data)
e0c9905e 471{
9708c121 472 u8 n_bytes = drv_data->n_bytes;
e0c9905e 473
4fdb2424 474 if (pxa2xx_spi_txfifo_full(drv_data)
8d94cc50
SS
475 || (drv_data->tx == drv_data->tx_end))
476 return 0;
477
c039dd27 478 pxa2xx_spi_write(drv_data, SSDR, 0);
8d94cc50
SS
479 drv_data->tx += n_bytes;
480
481 return 1;
e0c9905e
SS
482}
483
8d94cc50 484static int null_reader(struct driver_data *drv_data)
e0c9905e 485{
9708c121 486 u8 n_bytes = drv_data->n_bytes;
e0c9905e 487
c039dd27
JN
488 while ((pxa2xx_spi_read(drv_data, SSSR) & SSSR_RNE)
489 && (drv_data->rx < drv_data->rx_end)) {
490 pxa2xx_spi_read(drv_data, SSDR);
e0c9905e
SS
491 drv_data->rx += n_bytes;
492 }
8d94cc50
SS
493
494 return drv_data->rx == drv_data->rx_end;
e0c9905e
SS
495}
496
8d94cc50 497static int u8_writer(struct driver_data *drv_data)
e0c9905e 498{
4fdb2424 499 if (pxa2xx_spi_txfifo_full(drv_data)
8d94cc50
SS
500 || (drv_data->tx == drv_data->tx_end))
501 return 0;
502
c039dd27 503 pxa2xx_spi_write(drv_data, SSDR, *(u8 *)(drv_data->tx));
8d94cc50
SS
504 ++drv_data->tx;
505
506 return 1;
e0c9905e
SS
507}
508
8d94cc50 509static int u8_reader(struct driver_data *drv_data)
e0c9905e 510{
c039dd27
JN
511 while ((pxa2xx_spi_read(drv_data, SSSR) & SSSR_RNE)
512 && (drv_data->rx < drv_data->rx_end)) {
513 *(u8 *)(drv_data->rx) = pxa2xx_spi_read(drv_data, SSDR);
e0c9905e
SS
514 ++drv_data->rx;
515 }
8d94cc50
SS
516
517 return drv_data->rx == drv_data->rx_end;
e0c9905e
SS
518}
519
8d94cc50 520static int u16_writer(struct driver_data *drv_data)
e0c9905e 521{
4fdb2424 522 if (pxa2xx_spi_txfifo_full(drv_data)
8d94cc50
SS
523 || (drv_data->tx == drv_data->tx_end))
524 return 0;
525
c039dd27 526 pxa2xx_spi_write(drv_data, SSDR, *(u16 *)(drv_data->tx));
8d94cc50
SS
527 drv_data->tx += 2;
528
529 return 1;
e0c9905e
SS
530}
531
8d94cc50 532static int u16_reader(struct driver_data *drv_data)
e0c9905e 533{
c039dd27
JN
534 while ((pxa2xx_spi_read(drv_data, SSSR) & SSSR_RNE)
535 && (drv_data->rx < drv_data->rx_end)) {
536 *(u16 *)(drv_data->rx) = pxa2xx_spi_read(drv_data, SSDR);
e0c9905e
SS
537 drv_data->rx += 2;
538 }
8d94cc50
SS
539
540 return drv_data->rx == drv_data->rx_end;
e0c9905e 541}
8d94cc50
SS
542
543static int u32_writer(struct driver_data *drv_data)
e0c9905e 544{
4fdb2424 545 if (pxa2xx_spi_txfifo_full(drv_data)
8d94cc50
SS
546 || (drv_data->tx == drv_data->tx_end))
547 return 0;
548
c039dd27 549 pxa2xx_spi_write(drv_data, SSDR, *(u32 *)(drv_data->tx));
8d94cc50
SS
550 drv_data->tx += 4;
551
552 return 1;
e0c9905e
SS
553}
554
8d94cc50 555static int u32_reader(struct driver_data *drv_data)
e0c9905e 556{
c039dd27
JN
557 while ((pxa2xx_spi_read(drv_data, SSSR) & SSSR_RNE)
558 && (drv_data->rx < drv_data->rx_end)) {
559 *(u32 *)(drv_data->rx) = pxa2xx_spi_read(drv_data, SSDR);
e0c9905e
SS
560 drv_data->rx += 4;
561 }
8d94cc50
SS
562
563 return drv_data->rx == drv_data->rx_end;
e0c9905e
SS
564}
565
579d3bb2
SAS
566static void reset_sccr1(struct driver_data *drv_data)
567{
96579a4e
JN
568 struct chip_data *chip =
569 spi_get_ctldata(drv_data->master->cur_msg->spi);
579d3bb2
SAS
570 u32 sccr1_reg;
571
c039dd27 572 sccr1_reg = pxa2xx_spi_read(drv_data, SSCR1) & ~drv_data->int_cr1;
152bc19e
AS
573 switch (drv_data->ssp_type) {
574 case QUARK_X1000_SSP:
575 sccr1_reg &= ~QUARK_X1000_SSCR1_RFT;
576 break;
7c7289a4
AS
577 case CE4100_SSP:
578 sccr1_reg &= ~CE4100_SSCR1_RFT;
579 break;
152bc19e
AS
580 default:
581 sccr1_reg &= ~SSCR1_RFT;
582 break;
583 }
579d3bb2 584 sccr1_reg |= chip->threshold;
c039dd27 585 pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg);
579d3bb2
SAS
586}
587
8d94cc50 588static void int_error_stop(struct driver_data *drv_data, const char* msg)
e0c9905e 589{
8d94cc50 590 /* Stop and reset SSP */
2a8626a9 591 write_SSSR_CS(drv_data, drv_data->clear_sr);
579d3bb2 592 reset_sccr1(drv_data);
2a8626a9 593 if (!pxa25x_ssp_comp(drv_data))
c039dd27 594 pxa2xx_spi_write(drv_data, SSTO, 0);
cd7bed00 595 pxa2xx_spi_flush(drv_data);
c039dd27
JN
596 pxa2xx_spi_write(drv_data, SSCR0,
597 pxa2xx_spi_read(drv_data, SSCR0) & ~SSCR0_SSE);
e0c9905e 598
8d94cc50 599 dev_err(&drv_data->pdev->dev, "%s\n", msg);
e0c9905e 600
d5898e19
JN
601 drv_data->master->cur_msg->status = -EIO;
602 spi_finalize_current_transfer(drv_data->master);
8d94cc50 603}
5daa3ba0 604
8d94cc50
SS
605static void int_transfer_complete(struct driver_data *drv_data)
606{
07550df0 607 /* Clear and disable interrupts */
2a8626a9 608 write_SSSR_CS(drv_data, drv_data->clear_sr);
579d3bb2 609 reset_sccr1(drv_data);
2a8626a9 610 if (!pxa25x_ssp_comp(drv_data))
c039dd27 611 pxa2xx_spi_write(drv_data, SSTO, 0);
e0c9905e 612
d5898e19 613 spi_finalize_current_transfer(drv_data->master);
8d94cc50 614}
e0c9905e 615
8d94cc50
SS
616static irqreturn_t interrupt_transfer(struct driver_data *drv_data)
617{
c039dd27
JN
618 u32 irq_mask = (pxa2xx_spi_read(drv_data, SSCR1) & SSCR1_TIE) ?
619 drv_data->mask_sr : drv_data->mask_sr & ~SSSR_TFS;
e0c9905e 620
c039dd27 621 u32 irq_status = pxa2xx_spi_read(drv_data, SSSR) & irq_mask;
e0c9905e 622
8d94cc50
SS
623 if (irq_status & SSSR_ROR) {
624 int_error_stop(drv_data, "interrupt_transfer: fifo overrun");
625 return IRQ_HANDLED;
626 }
e0c9905e 627
8d94cc50 628 if (irq_status & SSSR_TINT) {
c039dd27 629 pxa2xx_spi_write(drv_data, SSSR, SSSR_TINT);
8d94cc50
SS
630 if (drv_data->read(drv_data)) {
631 int_transfer_complete(drv_data);
632 return IRQ_HANDLED;
633 }
634 }
e0c9905e 635
8d94cc50
SS
636 /* Drain rx fifo, Fill tx fifo and prevent overruns */
637 do {
638 if (drv_data->read(drv_data)) {
639 int_transfer_complete(drv_data);
640 return IRQ_HANDLED;
641 }
642 } while (drv_data->write(drv_data));
e0c9905e 643
8d94cc50
SS
644 if (drv_data->read(drv_data)) {
645 int_transfer_complete(drv_data);
646 return IRQ_HANDLED;
647 }
e0c9905e 648
8d94cc50 649 if (drv_data->tx == drv_data->tx_end) {
579d3bb2
SAS
650 u32 bytes_left;
651 u32 sccr1_reg;
652
c039dd27 653 sccr1_reg = pxa2xx_spi_read(drv_data, SSCR1);
579d3bb2
SAS
654 sccr1_reg &= ~SSCR1_TIE;
655
656 /*
657 * PXA25x_SSP has no timeout, set up rx threshould for the
25985edc 658 * remaining RX bytes.
579d3bb2 659 */
2a8626a9 660 if (pxa25x_ssp_comp(drv_data)) {
4fdb2424 661 u32 rx_thre;
579d3bb2 662
4fdb2424 663 pxa2xx_spi_clear_rx_thre(drv_data, &sccr1_reg);
579d3bb2
SAS
664
665 bytes_left = drv_data->rx_end - drv_data->rx;
666 switch (drv_data->n_bytes) {
667 case 4:
668 bytes_left >>= 1;
669 case 2:
670 bytes_left >>= 1;
8d94cc50 671 }
579d3bb2 672
4fdb2424
WC
673 rx_thre = pxa2xx_spi_get_rx_default_thre(drv_data);
674 if (rx_thre > bytes_left)
675 rx_thre = bytes_left;
579d3bb2 676
4fdb2424 677 pxa2xx_spi_set_rx_thre(drv_data, &sccr1_reg, rx_thre);
e0c9905e 678 }
c039dd27 679 pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg);
e0c9905e
SS
680 }
681
5daa3ba0
SS
682 /* We did something */
683 return IRQ_HANDLED;
e0c9905e
SS
684}
685
b0312482
JK
686static void handle_bad_msg(struct driver_data *drv_data)
687{
688 pxa2xx_spi_write(drv_data, SSCR0,
689 pxa2xx_spi_read(drv_data, SSCR0) & ~SSCR0_SSE);
690 pxa2xx_spi_write(drv_data, SSCR1,
691 pxa2xx_spi_read(drv_data, SSCR1) & ~drv_data->int_cr1);
692 if (!pxa25x_ssp_comp(drv_data))
693 pxa2xx_spi_write(drv_data, SSTO, 0);
694 write_SSSR_CS(drv_data, drv_data->clear_sr);
695
696 dev_err(&drv_data->pdev->dev,
697 "bad message state in interrupt handler\n");
698}
699
7d12e780 700static irqreturn_t ssp_int(int irq, void *dev_id)
e0c9905e 701{
c7bec5ab 702 struct driver_data *drv_data = dev_id;
7d94a505 703 u32 sccr1_reg;
49cbb1e0
SAS
704 u32 mask = drv_data->mask_sr;
705 u32 status;
706
7d94a505
MW
707 /*
708 * The IRQ might be shared with other peripherals so we must first
709 * check that are we RPM suspended or not. If we are we assume that
710 * the IRQ was not for us (we shouldn't be RPM suspended when the
711 * interrupt is enabled).
712 */
713 if (pm_runtime_suspended(&drv_data->pdev->dev))
714 return IRQ_NONE;
715
269e4a41
MW
716 /*
717 * If the device is not yet in RPM suspended state and we get an
718 * interrupt that is meant for another device, check if status bits
719 * are all set to one. That means that the device is already
720 * powered off.
721 */
c039dd27 722 status = pxa2xx_spi_read(drv_data, SSSR);
269e4a41
MW
723 if (status == ~0)
724 return IRQ_NONE;
725
c039dd27 726 sccr1_reg = pxa2xx_spi_read(drv_data, SSCR1);
49cbb1e0
SAS
727
728 /* Ignore possible writes if we don't need to write */
729 if (!(sccr1_reg & SSCR1_TIE))
730 mask &= ~SSSR_TFS;
731
02bc933e
TJN
732 /* Ignore RX timeout interrupt if it is disabled */
733 if (!(sccr1_reg & SSCR1_TINTE))
734 mask &= ~SSSR_TINT;
735
49cbb1e0
SAS
736 if (!(status & mask))
737 return IRQ_NONE;
e0c9905e 738
e51e9b93
JK
739 pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg & ~drv_data->int_cr1);
740 pxa2xx_spi_write(drv_data, SSCR1, sccr1_reg);
5daa3ba0 741
4fc0caac 742 if (!drv_data->master->cur_msg) {
b0312482 743 handle_bad_msg(drv_data);
e0c9905e
SS
744 /* Never fail */
745 return IRQ_HANDLED;
746 }
747
748 return drv_data->transfer_handler(drv_data);
749}
750
e5262d05 751/*
9df461ec
AS
752 * The Quark SPI has an additional 24 bit register (DDS_CLK_RATE) to multiply
753 * input frequency by fractions of 2^24. It also has a divider by 5.
754 *
755 * There are formulas to get baud rate value for given input frequency and
756 * divider parameters, such as DDS_CLK_RATE and SCR:
757 *
758 * Fsys = 200MHz
759 *
760 * Fssp = Fsys * DDS_CLK_RATE / 2^24 (1)
761 * Baud rate = Fsclk = Fssp / (2 * (SCR + 1)) (2)
762 *
763 * DDS_CLK_RATE either 2^n or 2^n / 5.
764 * SCR is in range 0 .. 255
765 *
766 * Divisor = 5^i * 2^j * 2 * k
767 * i = [0, 1] i = 1 iff j = 0 or j > 3
768 * j = [0, 23] j = 0 iff i = 1
769 * k = [1, 256]
770 * Special case: j = 0, i = 1: Divisor = 2 / 5
771 *
772 * Accordingly to the specification the recommended values for DDS_CLK_RATE
773 * are:
774 * Case 1: 2^n, n = [0, 23]
775 * Case 2: 2^24 * 2 / 5 (0x666666)
776 * Case 3: less than or equal to 2^24 / 5 / 16 (0x33333)
777 *
778 * In all cases the lowest possible value is better.
779 *
780 * The function calculates parameters for all cases and chooses the one closest
781 * to the asked baud rate.
e5262d05 782 */
9df461ec
AS
783static unsigned int quark_x1000_get_clk_div(int rate, u32 *dds)
784{
785 unsigned long xtal = 200000000;
786 unsigned long fref = xtal / 2; /* mandatory division by 2,
787 see (2) */
788 /* case 3 */
789 unsigned long fref1 = fref / 2; /* case 1 */
790 unsigned long fref2 = fref * 2 / 5; /* case 2 */
791 unsigned long scale;
792 unsigned long q, q1, q2;
793 long r, r1, r2;
794 u32 mul;
795
796 /* Case 1 */
797
798 /* Set initial value for DDS_CLK_RATE */
799 mul = (1 << 24) >> 1;
800
801 /* Calculate initial quot */
3ad48062 802 q1 = DIV_ROUND_UP(fref1, rate);
9df461ec
AS
803
804 /* Scale q1 if it's too big */
805 if (q1 > 256) {
806 /* Scale q1 to range [1, 512] */
807 scale = fls_long(q1 - 1);
808 if (scale > 9) {
809 q1 >>= scale - 9;
810 mul >>= scale - 9;
e5262d05 811 }
9df461ec
AS
812
813 /* Round the result if we have a remainder */
814 q1 += q1 & 1;
815 }
816
817 /* Decrease DDS_CLK_RATE as much as we can without loss in precision */
818 scale = __ffs(q1);
819 q1 >>= scale;
820 mul >>= scale;
821
822 /* Get the remainder */
823 r1 = abs(fref1 / (1 << (24 - fls_long(mul))) / q1 - rate);
824
825 /* Case 2 */
826
3ad48062 827 q2 = DIV_ROUND_UP(fref2, rate);
9df461ec
AS
828 r2 = abs(fref2 / q2 - rate);
829
830 /*
831 * Choose the best between two: less remainder we have the better. We
832 * can't go case 2 if q2 is greater than 256 since SCR register can
833 * hold only values 0 .. 255.
834 */
835 if (r2 >= r1 || q2 > 256) {
836 /* case 1 is better */
837 r = r1;
838 q = q1;
839 } else {
840 /* case 2 is better */
841 r = r2;
842 q = q2;
843 mul = (1 << 24) * 2 / 5;
e5262d05
WC
844 }
845
3ad48062 846 /* Check case 3 only if the divisor is big enough */
9df461ec
AS
847 if (fref / rate >= 80) {
848 u64 fssp;
849 u32 m;
850
851 /* Calculate initial quot */
3ad48062 852 q1 = DIV_ROUND_UP(fref, rate);
9df461ec
AS
853 m = (1 << 24) / q1;
854
855 /* Get the remainder */
856 fssp = (u64)fref * m;
857 do_div(fssp, 1 << 24);
858 r1 = abs(fssp - rate);
859
860 /* Choose this one if it suits better */
861 if (r1 < r) {
862 /* case 3 is better */
863 q = 1;
864 mul = m;
865 }
866 }
e5262d05 867
9df461ec
AS
868 *dds = mul;
869 return q - 1;
e5262d05
WC
870}
871
3343b7a6 872static unsigned int ssp_get_clk_div(struct driver_data *drv_data, int rate)
2f1a74e5 873{
0eca7cf2 874 unsigned long ssp_clk = drv_data->master->max_speed_hz;
3343b7a6
MW
875 const struct ssp_device *ssp = drv_data->ssp;
876
877 rate = min_t(int, ssp_clk, rate);
2f1a74e5 878
2a8626a9 879 if (ssp->type == PXA25x_SSP || ssp->type == CE4100_SSP)
025ffe88 880 return (ssp_clk / (2 * rate) - 1) & 0xff;
2f1a74e5 881 else
025ffe88 882 return (ssp_clk / rate - 1) & 0xfff;
2f1a74e5 883}
884
e5262d05 885static unsigned int pxa2xx_ssp_get_clk_div(struct driver_data *drv_data,
d2c2f6a4 886 int rate)
e5262d05 887{
96579a4e
JN
888 struct chip_data *chip =
889 spi_get_ctldata(drv_data->master->cur_msg->spi);
025ffe88 890 unsigned int clk_div;
e5262d05
WC
891
892 switch (drv_data->ssp_type) {
893 case QUARK_X1000_SSP:
9df461ec 894 clk_div = quark_x1000_get_clk_div(rate, &chip->dds_rate);
eecacf73 895 break;
e5262d05 896 default:
025ffe88 897 clk_div = ssp_get_clk_div(drv_data, rate);
eecacf73 898 break;
e5262d05 899 }
025ffe88 900 return clk_div << 8;
e5262d05
WC
901}
902
3cc7b0e3 903static bool pxa2xx_spi_can_dma(struct spi_controller *master,
b6ced294
JN
904 struct spi_device *spi,
905 struct spi_transfer *xfer)
906{
907 struct chip_data *chip = spi_get_ctldata(spi);
908
909 return chip->enable_dma &&
910 xfer->len <= MAX_DMA_LEN &&
911 xfer->len >= chip->dma_burst_size;
912}
913
71293a60 914static int pxa2xx_spi_transfer_one(struct spi_controller *master,
915 struct spi_device *spi,
916 struct spi_transfer *transfer)
e0c9905e 917{
d5898e19 918 struct driver_data *drv_data = spi_controller_get_devdata(master);
4fc0caac 919 struct spi_message *message = master->cur_msg;
96579a4e
JN
920 struct chip_data *chip = spi_get_ctldata(message->spi);
921 u32 dma_thresh = chip->dma_threshold;
922 u32 dma_burst = chip->dma_burst_size;
923 u32 change_mask = pxa2xx_spi_get_ssrc1_change_mask(drv_data);
bffc967e
JN
924 u32 clk_div;
925 u8 bits;
926 u32 speed;
9708c121 927 u32 cr0;
8d94cc50 928 u32 cr1;
7d1f1bf6 929 int err;
b6ced294 930 int dma_mapped;
e0c9905e 931
cd7bed00 932 /* Check if we can DMA this transfer */
b6ced294 933 if (transfer->len > MAX_DMA_LEN && chip->enable_dma) {
7e964455
NF
934
935 /* reject already-mapped transfers; PIO won't always work */
936 if (message->is_dma_mapped
937 || transfer->rx_dma || transfer->tx_dma) {
938 dev_err(&drv_data->pdev->dev,
8ae55af3 939 "Mapped transfer length of %u is greater than %d\n",
7e964455 940 transfer->len, MAX_DMA_LEN);
d5898e19 941 return -EINVAL;
7e964455
NF
942 }
943
944 /* warn ... we force this to PIO mode */
f6bd03a7 945 dev_warn_ratelimited(&message->spi->dev,
8ae55af3 946 "DMA disabled for transfer length %ld greater than %d\n",
d5898e19 947 (long)transfer->len, MAX_DMA_LEN);
8d94cc50
SS
948 }
949
e0c9905e 950 /* Setup the transfer state based on the type of transfer */
cd7bed00 951 if (pxa2xx_spi_flush(drv_data) == 0) {
8ae55af3 952 dev_err(&drv_data->pdev->dev, "Flush failed\n");
d5898e19 953 return -EIO;
e0c9905e 954 }
9708c121 955 drv_data->n_bytes = chip->n_bytes;
e0c9905e
SS
956 drv_data->tx = (void *)transfer->tx_buf;
957 drv_data->tx_end = drv_data->tx + transfer->len;
958 drv_data->rx = transfer->rx_buf;
959 drv_data->rx_end = drv_data->rx + transfer->len;
e0c9905e
SS
960 drv_data->write = drv_data->tx ? chip->write : null_writer;
961 drv_data->read = drv_data->rx ? chip->read : null_reader;
9708c121
SS
962
963 /* Change speed and bit per word on a per transfer */
196b0e2c
JN
964 bits = transfer->bits_per_word;
965 speed = transfer->speed_hz;
966
d2c2f6a4 967 clk_div = pxa2xx_ssp_get_clk_div(drv_data, speed);
196b0e2c
JN
968
969 if (bits <= 8) {
970 drv_data->n_bytes = 1;
971 drv_data->read = drv_data->read != null_reader ?
972 u8_reader : null_reader;
973 drv_data->write = drv_data->write != null_writer ?
974 u8_writer : null_writer;
975 } else if (bits <= 16) {
976 drv_data->n_bytes = 2;
977 drv_data->read = drv_data->read != null_reader ?
978 u16_reader : null_reader;
979 drv_data->write = drv_data->write != null_writer ?
980 u16_writer : null_writer;
981 } else if (bits <= 32) {
982 drv_data->n_bytes = 4;
983 drv_data->read = drv_data->read != null_reader ?
984 u32_reader : null_reader;
985 drv_data->write = drv_data->write != null_writer ?
986 u32_writer : null_writer;
9708c121 987 }
196b0e2c
JN
988 /*
989 * if bits/word is changed in dma mode, then must check the
990 * thresholds and burst also
991 */
992 if (chip->enable_dma) {
993 if (pxa2xx_spi_set_dma_burst_and_threshold(chip,
994 message->spi,
995 bits, &dma_burst,
996 &dma_thresh))
997 dev_warn_ratelimited(&message->spi->dev,
8ae55af3 998 "DMA burst size reduced to match bits_per_word\n");
9708c121
SS
999 }
1000
b6ced294
JN
1001 dma_mapped = master->can_dma &&
1002 master->can_dma(master, message->spi, transfer) &&
1003 master->cur_msg_mapped;
1004 if (dma_mapped) {
e0c9905e
SS
1005
1006 /* Ensure we have the correct interrupt handler */
cd7bed00
MW
1007 drv_data->transfer_handler = pxa2xx_spi_dma_transfer;
1008
d5898e19
JN
1009 err = pxa2xx_spi_dma_prepare(drv_data, transfer);
1010 if (err)
1011 return err;
e0c9905e 1012
8d94cc50
SS
1013 /* Clear status and start DMA engine */
1014 cr1 = chip->cr1 | dma_thresh | drv_data->dma_cr1;
c039dd27 1015 pxa2xx_spi_write(drv_data, SSSR, drv_data->clear_sr);
cd7bed00
MW
1016
1017 pxa2xx_spi_dma_start(drv_data);
e0c9905e
SS
1018 } else {
1019 /* Ensure we have the correct interrupt handler */
1020 drv_data->transfer_handler = interrupt_transfer;
1021
8d94cc50
SS
1022 /* Clear status */
1023 cr1 = chip->cr1 | chip->threshold | drv_data->int_cr1;
2a8626a9 1024 write_SSSR_CS(drv_data, drv_data->clear_sr);
8d94cc50
SS
1025 }
1026
ee03672d
JN
1027 /* NOTE: PXA25x_SSP _could_ use external clocking ... */
1028 cr0 = pxa2xx_configure_sscr0(drv_data, clk_div, bits);
1029 if (!pxa25x_ssp_comp(drv_data))
1030 dev_dbg(&message->spi->dev, "%u Hz actual, %s\n",
2d7537d8 1031 master->max_speed_hz
ee03672d 1032 / (1 + ((cr0 & SSCR0_SCR(0xfff)) >> 8)),
b6ced294 1033 dma_mapped ? "DMA" : "PIO");
ee03672d
JN
1034 else
1035 dev_dbg(&message->spi->dev, "%u Hz actual, %s\n",
2d7537d8 1036 master->max_speed_hz / 2
ee03672d 1037 / (1 + ((cr0 & SSCR0_SCR(0x0ff)) >> 8)),
b6ced294 1038 dma_mapped ? "DMA" : "PIO");
ee03672d 1039
a0d2642e 1040 if (is_lpss_ssp(drv_data)) {
c039dd27
JN
1041 if ((pxa2xx_spi_read(drv_data, SSIRF) & 0xff)
1042 != chip->lpss_rx_threshold)
1043 pxa2xx_spi_write(drv_data, SSIRF,
1044 chip->lpss_rx_threshold);
1045 if ((pxa2xx_spi_read(drv_data, SSITF) & 0xffff)
1046 != chip->lpss_tx_threshold)
1047 pxa2xx_spi_write(drv_data, SSITF,
1048 chip->lpss_tx_threshold);
a0d2642e
MW
1049 }
1050
e5262d05 1051 if (is_quark_x1000_ssp(drv_data) &&
c039dd27
JN
1052 (pxa2xx_spi_read(drv_data, DDS_RATE) != chip->dds_rate))
1053 pxa2xx_spi_write(drv_data, DDS_RATE, chip->dds_rate);
e5262d05 1054
8d94cc50 1055 /* see if we need to reload the config registers */
c039dd27
JN
1056 if ((pxa2xx_spi_read(drv_data, SSCR0) != cr0)
1057 || (pxa2xx_spi_read(drv_data, SSCR1) & change_mask)
1058 != (cr1 & change_mask)) {
b97c74bd 1059 /* stop the SSP, and update the other bits */
c039dd27 1060 pxa2xx_spi_write(drv_data, SSCR0, cr0 & ~SSCR0_SSE);
2a8626a9 1061 if (!pxa25x_ssp_comp(drv_data))
c039dd27 1062 pxa2xx_spi_write(drv_data, SSTO, chip->timeout);
b97c74bd 1063 /* first set CR1 without interrupt and service enables */
c039dd27 1064 pxa2xx_spi_write(drv_data, SSCR1, cr1 & change_mask);
b97c74bd 1065 /* restart the SSP */
c039dd27 1066 pxa2xx_spi_write(drv_data, SSCR0, cr0);
b97c74bd 1067
8d94cc50 1068 } else {
2a8626a9 1069 if (!pxa25x_ssp_comp(drv_data))
c039dd27 1070 pxa2xx_spi_write(drv_data, SSTO, chip->timeout);
e0c9905e 1071 }
b97c74bd 1072
d5898e19
JN
1073 /*
1074 * Release the data by enabling service requests and interrupts,
1075 * without changing any mode bits
1076 */
c039dd27 1077 pxa2xx_spi_write(drv_data, SSCR1, cr1);
d5898e19
JN
1078
1079 return 1;
e0c9905e
SS
1080}
1081
d5898e19
JN
1082static void pxa2xx_spi_handle_err(struct spi_controller *master,
1083 struct spi_message *msg)
e0c9905e 1084{
3cc7b0e3 1085 struct driver_data *drv_data = spi_controller_get_devdata(master);
e0c9905e 1086
d5898e19
JN
1087 /* Disable the SSP */
1088 pxa2xx_spi_write(drv_data, SSCR0,
1089 pxa2xx_spi_read(drv_data, SSCR0) & ~SSCR0_SSE);
1090 /* Clear and disable interrupts and service requests */
1091 write_SSSR_CS(drv_data, drv_data->clear_sr);
1092 pxa2xx_spi_write(drv_data, SSCR1,
1093 pxa2xx_spi_read(drv_data, SSCR1)
1094 & ~(drv_data->int_cr1 | drv_data->dma_cr1));
1095 if (!pxa25x_ssp_comp(drv_data))
1096 pxa2xx_spi_write(drv_data, SSTO, 0);
e0c9905e 1097
d5898e19
JN
1098 /*
1099 * Stop the DMA if running. Note DMA callback handler may have unset
1100 * the dma_running already, which is fine as stopping is not needed
1101 * then but we shouldn't rely this flag for anything else than
1102 * stopping. For instance to differentiate between PIO and DMA
1103 * transfers.
1104 */
1105 if (atomic_read(&drv_data->dma_running))
1106 pxa2xx_spi_dma_stop(drv_data);
e0c9905e
SS
1107}
1108
3cc7b0e3 1109static int pxa2xx_spi_unprepare_transfer(struct spi_controller *master)
7d94a505 1110{
3cc7b0e3 1111 struct driver_data *drv_data = spi_controller_get_devdata(master);
7d94a505
MW
1112
1113 /* Disable the SSP now */
c039dd27
JN
1114 pxa2xx_spi_write(drv_data, SSCR0,
1115 pxa2xx_spi_read(drv_data, SSCR0) & ~SSCR0_SSE);
7d94a505 1116
7d94a505
MW
1117 return 0;
1118}
1119
a7bb3909
EM
1120static int setup_cs(struct spi_device *spi, struct chip_data *chip,
1121 struct pxa2xx_spi_chip *chip_info)
1122{
3cc7b0e3
JN
1123 struct driver_data *drv_data =
1124 spi_controller_get_devdata(spi->controller);
c18d925f 1125 struct gpio_desc *gpiod;
a7bb3909
EM
1126 int err = 0;
1127
99f499cd
MW
1128 if (chip == NULL)
1129 return 0;
1130
6ac5a435 1131 if (drv_data->cs_gpiods) {
6ac5a435
AS
1132 gpiod = drv_data->cs_gpiods[spi->chip_select];
1133 if (gpiod) {
c18d925f 1134 chip->gpiod_cs = gpiod;
6ac5a435
AS
1135 chip->gpio_cs_inverted = spi->mode & SPI_CS_HIGH;
1136 gpiod_set_value(gpiod, chip->gpio_cs_inverted);
99f499cd
MW
1137 }
1138
1139 return 0;
1140 }
1141
1142 if (chip_info == NULL)
a7bb3909
EM
1143 return 0;
1144
1145 /* NOTE: setup() can be called multiple times, possibly with
1146 * different chip_info, release previously requested GPIO
1147 */
c18d925f 1148 if (chip->gpiod_cs) {
a885eebc 1149 gpiod_put(chip->gpiod_cs);
c18d925f
JK
1150 chip->gpiod_cs = NULL;
1151 }
a7bb3909
EM
1152
1153 /* If (*cs_control) is provided, ignore GPIO chip select */
1154 if (chip_info->cs_control) {
1155 chip->cs_control = chip_info->cs_control;
1156 return 0;
1157 }
1158
1159 if (gpio_is_valid(chip_info->gpio_cs)) {
1160 err = gpio_request(chip_info->gpio_cs, "SPI_CS");
1161 if (err) {
f6bd03a7
JN
1162 dev_err(&spi->dev, "failed to request chip select GPIO%d\n",
1163 chip_info->gpio_cs);
a7bb3909
EM
1164 return err;
1165 }
1166
c18d925f
JK
1167 gpiod = gpio_to_desc(chip_info->gpio_cs);
1168 chip->gpiod_cs = gpiod;
a7bb3909
EM
1169 chip->gpio_cs_inverted = spi->mode & SPI_CS_HIGH;
1170
c18d925f 1171 err = gpiod_direction_output(gpiod, !chip->gpio_cs_inverted);
a7bb3909
EM
1172 }
1173
1174 return err;
1175}
1176
e0c9905e
SS
1177static int setup(struct spi_device *spi)
1178{
bffc967e 1179 struct pxa2xx_spi_chip *chip_info;
e0c9905e 1180 struct chip_data *chip;
dccf7369 1181 const struct lpss_config *config;
3cc7b0e3
JN
1182 struct driver_data *drv_data =
1183 spi_controller_get_devdata(spi->controller);
a0d2642e
MW
1184 uint tx_thres, tx_hi_thres, rx_thres;
1185
e5262d05
WC
1186 switch (drv_data->ssp_type) {
1187 case QUARK_X1000_SSP:
1188 tx_thres = TX_THRESH_QUARK_X1000_DFLT;
1189 tx_hi_thres = 0;
1190 rx_thres = RX_THRESH_QUARK_X1000_DFLT;
1191 break;
7c7289a4
AS
1192 case CE4100_SSP:
1193 tx_thres = TX_THRESH_CE4100_DFLT;
1194 tx_hi_thres = 0;
1195 rx_thres = RX_THRESH_CE4100_DFLT;
1196 break;
03fbf488
JN
1197 case LPSS_LPT_SSP:
1198 case LPSS_BYT_SSP:
30f3a6ab 1199 case LPSS_BSW_SSP:
34cadd9c 1200 case LPSS_SPT_SSP:
b7c08cf8 1201 case LPSS_BXT_SSP:
fc0b2acc 1202 case LPSS_CNL_SSP:
dccf7369
JN
1203 config = lpss_get_config(drv_data);
1204 tx_thres = config->tx_threshold_lo;
1205 tx_hi_thres = config->tx_threshold_hi;
1206 rx_thres = config->rx_threshold;
e5262d05
WC
1207 break;
1208 default:
a0d2642e
MW
1209 tx_thres = TX_THRESH_DFLT;
1210 tx_hi_thres = 0;
1211 rx_thres = RX_THRESH_DFLT;
e5262d05 1212 break;
a0d2642e 1213 }
e0c9905e 1214
8d94cc50 1215 /* Only alloc on first setup */
e0c9905e 1216 chip = spi_get_ctldata(spi);
8d94cc50 1217 if (!chip) {
e0c9905e 1218 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
9deae459 1219 if (!chip)
e0c9905e
SS
1220 return -ENOMEM;
1221
2a8626a9
SAS
1222 if (drv_data->ssp_type == CE4100_SSP) {
1223 if (spi->chip_select > 4) {
f6bd03a7
JN
1224 dev_err(&spi->dev,
1225 "failed setup: cs number must not be > 4.\n");
2a8626a9
SAS
1226 kfree(chip);
1227 return -EINVAL;
1228 }
1229
1230 chip->frm = spi->chip_select;
c18d925f 1231 }
c64e1265 1232 chip->enable_dma = drv_data->master_info->enable_dma;
f1f640a9 1233 chip->timeout = TIMOUT_DFLT;
e0c9905e
SS
1234 }
1235
8d94cc50
SS
1236 /* protocol drivers may change the chip settings, so...
1237 * if chip_info exists, use it */
1238 chip_info = spi->controller_data;
1239
e0c9905e 1240 /* chip_info isn't always needed */
8d94cc50 1241 chip->cr1 = 0;
e0c9905e 1242 if (chip_info) {
f1f640a9
VS
1243 if (chip_info->timeout)
1244 chip->timeout = chip_info->timeout;
1245 if (chip_info->tx_threshold)
1246 tx_thres = chip_info->tx_threshold;
a0d2642e
MW
1247 if (chip_info->tx_hi_threshold)
1248 tx_hi_thres = chip_info->tx_hi_threshold;
f1f640a9
VS
1249 if (chip_info->rx_threshold)
1250 rx_thres = chip_info->rx_threshold;
e0c9905e 1251 chip->dma_threshold = 0;
e0c9905e
SS
1252 if (chip_info->enable_loopback)
1253 chip->cr1 = SSCR1_LBM;
1254 }
1255
a0d2642e
MW
1256 chip->lpss_rx_threshold = SSIRF_RxThresh(rx_thres);
1257 chip->lpss_tx_threshold = SSITF_TxLoThresh(tx_thres)
1258 | SSITF_TxHiThresh(tx_hi_thres);
1259
8d94cc50
SS
1260 /* set dma burst and threshold outside of chip_info path so that if
1261 * chip_info goes away after setting chip->enable_dma, the
1262 * burst and threshold can still respond to changes in bits_per_word */
1263 if (chip->enable_dma) {
1264 /* set up legal burst and threshold for dma */
cd7bed00
MW
1265 if (pxa2xx_spi_set_dma_burst_and_threshold(chip, spi,
1266 spi->bits_per_word,
8d94cc50
SS
1267 &chip->dma_burst_size,
1268 &chip->dma_threshold)) {
f6bd03a7
JN
1269 dev_warn(&spi->dev,
1270 "in setup: DMA burst size reduced to match bits_per_word\n");
8d94cc50
SS
1271 }
1272 }
1273
e5262d05
WC
1274 switch (drv_data->ssp_type) {
1275 case QUARK_X1000_SSP:
1276 chip->threshold = (QUARK_X1000_SSCR1_RxTresh(rx_thres)
1277 & QUARK_X1000_SSCR1_RFT)
1278 | (QUARK_X1000_SSCR1_TxTresh(tx_thres)
1279 & QUARK_X1000_SSCR1_TFT);
1280 break;
7c7289a4
AS
1281 case CE4100_SSP:
1282 chip->threshold = (CE4100_SSCR1_RxTresh(rx_thres) & CE4100_SSCR1_RFT) |
1283 (CE4100_SSCR1_TxTresh(tx_thres) & CE4100_SSCR1_TFT);
1284 break;
e5262d05
WC
1285 default:
1286 chip->threshold = (SSCR1_RxTresh(rx_thres) & SSCR1_RFT) |
1287 (SSCR1_TxTresh(tx_thres) & SSCR1_TFT);
1288 break;
1289 }
1290
7f6ee1ad
JC
1291 chip->cr1 &= ~(SSCR1_SPO | SSCR1_SPH);
1292 chip->cr1 |= (((spi->mode & SPI_CPHA) != 0) ? SSCR1_SPH : 0)
1293 | (((spi->mode & SPI_CPOL) != 0) ? SSCR1_SPO : 0);
e0c9905e 1294
b833172f
MW
1295 if (spi->mode & SPI_LOOP)
1296 chip->cr1 |= SSCR1_LBM;
1297
e0c9905e
SS
1298 if (spi->bits_per_word <= 8) {
1299 chip->n_bytes = 1;
e0c9905e
SS
1300 chip->read = u8_reader;
1301 chip->write = u8_writer;
1302 } else if (spi->bits_per_word <= 16) {
1303 chip->n_bytes = 2;
e0c9905e
SS
1304 chip->read = u16_reader;
1305 chip->write = u16_writer;
1306 } else if (spi->bits_per_word <= 32) {
e0c9905e 1307 chip->n_bytes = 4;
e0c9905e
SS
1308 chip->read = u32_reader;
1309 chip->write = u32_writer;
e0c9905e
SS
1310 }
1311
1312 spi_set_ctldata(spi, chip);
1313
2a8626a9
SAS
1314 if (drv_data->ssp_type == CE4100_SSP)
1315 return 0;
1316
a7bb3909 1317 return setup_cs(spi, chip, chip_info);
e0c9905e
SS
1318}
1319
0ffa0285 1320static void cleanup(struct spi_device *spi)
e0c9905e 1321{
0ffa0285 1322 struct chip_data *chip = spi_get_ctldata(spi);
3cc7b0e3
JN
1323 struct driver_data *drv_data =
1324 spi_controller_get_devdata(spi->controller);
e0c9905e 1325
7348d82a
DR
1326 if (!chip)
1327 return;
1328
6ac5a435 1329 if (drv_data->ssp_type != CE4100_SSP && !drv_data->cs_gpiods &&
c18d925f 1330 chip->gpiod_cs)
a885eebc 1331 gpiod_put(chip->gpiod_cs);
a7bb3909 1332
e0c9905e
SS
1333 kfree(chip);
1334}
1335
0db64215 1336#ifdef CONFIG_PCI
a3496855 1337#ifdef CONFIG_ACPI
03fbf488 1338
8422ddf7 1339static const struct acpi_device_id pxa2xx_spi_acpi_match[] = {
03fbf488
JN
1340 { "INT33C0", LPSS_LPT_SSP },
1341 { "INT33C1", LPSS_LPT_SSP },
1342 { "INT3430", LPSS_LPT_SSP },
1343 { "INT3431", LPSS_LPT_SSP },
1344 { "80860F0E", LPSS_BYT_SSP },
30f3a6ab 1345 { "8086228E", LPSS_BSW_SSP },
03fbf488
JN
1346 { },
1347};
1348MODULE_DEVICE_TABLE(acpi, pxa2xx_spi_acpi_match);
1349
0db64215
JN
1350static int pxa2xx_spi_get_port_id(struct acpi_device *adev)
1351{
1352 unsigned int devid;
1353 int port_id = -1;
1354
1355 if (adev && adev->pnp.unique_id &&
1356 !kstrtouint(adev->pnp.unique_id, 0, &devid))
1357 port_id = devid;
1358 return port_id;
1359}
1360#else /* !CONFIG_ACPI */
1361static int pxa2xx_spi_get_port_id(struct acpi_device *adev)
1362{
1363 return -1;
1364}
1365#endif
1366
34cadd9c
JN
1367/*
1368 * PCI IDs of compound devices that integrate both host controller and private
1369 * integrated DMA engine. Please note these are not used in module
1370 * autoloading and probing in this module but matching the LPSS SSP type.
1371 */
1372static const struct pci_device_id pxa2xx_spi_pci_compound_match[] = {
1373 /* SPT-LP */
1374 { PCI_VDEVICE(INTEL, 0x9d29), LPSS_SPT_SSP },
1375 { PCI_VDEVICE(INTEL, 0x9d2a), LPSS_SPT_SSP },
1376 /* SPT-H */
1377 { PCI_VDEVICE(INTEL, 0xa129), LPSS_SPT_SSP },
1378 { PCI_VDEVICE(INTEL, 0xa12a), LPSS_SPT_SSP },
704d2b07
MW
1379 /* KBL-H */
1380 { PCI_VDEVICE(INTEL, 0xa2a9), LPSS_SPT_SSP },
1381 { PCI_VDEVICE(INTEL, 0xa2aa), LPSS_SPT_SSP },
c1b03f11 1382 /* BXT A-Step */
b7c08cf8
JN
1383 { PCI_VDEVICE(INTEL, 0x0ac2), LPSS_BXT_SSP },
1384 { PCI_VDEVICE(INTEL, 0x0ac4), LPSS_BXT_SSP },
1385 { PCI_VDEVICE(INTEL, 0x0ac6), LPSS_BXT_SSP },
c1b03f11
JN
1386 /* BXT B-Step */
1387 { PCI_VDEVICE(INTEL, 0x1ac2), LPSS_BXT_SSP },
1388 { PCI_VDEVICE(INTEL, 0x1ac4), LPSS_BXT_SSP },
1389 { PCI_VDEVICE(INTEL, 0x1ac6), LPSS_BXT_SSP },
e18a80ac
DB
1390 /* GLK */
1391 { PCI_VDEVICE(INTEL, 0x31c2), LPSS_BXT_SSP },
1392 { PCI_VDEVICE(INTEL, 0x31c4), LPSS_BXT_SSP },
1393 { PCI_VDEVICE(INTEL, 0x31c6), LPSS_BXT_SSP },
b7c08cf8
JN
1394 /* APL */
1395 { PCI_VDEVICE(INTEL, 0x5ac2), LPSS_BXT_SSP },
1396 { PCI_VDEVICE(INTEL, 0x5ac4), LPSS_BXT_SSP },
1397 { PCI_VDEVICE(INTEL, 0x5ac6), LPSS_BXT_SSP },
fc0b2acc
JN
1398 /* CNL-LP */
1399 { PCI_VDEVICE(INTEL, 0x9daa), LPSS_CNL_SSP },
1400 { PCI_VDEVICE(INTEL, 0x9dab), LPSS_CNL_SSP },
1401 { PCI_VDEVICE(INTEL, 0x9dfb), LPSS_CNL_SSP },
1402 /* CNL-H */
1403 { PCI_VDEVICE(INTEL, 0xa32a), LPSS_CNL_SSP },
1404 { PCI_VDEVICE(INTEL, 0xa32b), LPSS_CNL_SSP },
1405 { PCI_VDEVICE(INTEL, 0xa37b), LPSS_CNL_SSP },
94e5c23d 1406 { },
34cadd9c
JN
1407};
1408
1409static bool pxa2xx_spi_idma_filter(struct dma_chan *chan, void *param)
1410{
1411 struct device *dev = param;
1412
1413 if (dev != chan->device->dev->parent)
1414 return false;
1415
1416 return true;
1417}
1418
a3496855 1419static struct pxa2xx_spi_master *
0db64215 1420pxa2xx_spi_init_pdata(struct platform_device *pdev)
a3496855
MW
1421{
1422 struct pxa2xx_spi_master *pdata;
a3496855
MW
1423 struct acpi_device *adev;
1424 struct ssp_device *ssp;
1425 struct resource *res;
34cadd9c
JN
1426 const struct acpi_device_id *adev_id = NULL;
1427 const struct pci_device_id *pcidev_id = NULL;
3b8b6d05 1428 int type;
a3496855 1429
b9f6940a 1430 adev = ACPI_COMPANION(&pdev->dev);
a3496855 1431
34cadd9c
JN
1432 if (dev_is_pci(pdev->dev.parent))
1433 pcidev_id = pci_match_id(pxa2xx_spi_pci_compound_match,
1434 to_pci_dev(pdev->dev.parent));
0db64215 1435 else if (adev)
34cadd9c
JN
1436 adev_id = acpi_match_device(pdev->dev.driver->acpi_match_table,
1437 &pdev->dev);
0db64215
JN
1438 else
1439 return NULL;
34cadd9c
JN
1440
1441 if (adev_id)
1442 type = (int)adev_id->driver_data;
1443 else if (pcidev_id)
1444 type = (int)pcidev_id->driver_data;
03fbf488
JN
1445 else
1446 return NULL;
1447
cc0ee987 1448 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
9deae459 1449 if (!pdata)
a3496855 1450 return NULL;
a3496855
MW
1451
1452 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1453 if (!res)
1454 return NULL;
1455
1456 ssp = &pdata->ssp;
1457
1458 ssp->phys_base = res->start;
cbfd6a21
SK
1459 ssp->mmio_base = devm_ioremap_resource(&pdev->dev, res);
1460 if (IS_ERR(ssp->mmio_base))
6dc81f6f 1461 return NULL;
a3496855 1462
34cadd9c
JN
1463 if (pcidev_id) {
1464 pdata->tx_param = pdev->dev.parent;
1465 pdata->rx_param = pdev->dev.parent;
1466 pdata->dma_filter = pxa2xx_spi_idma_filter;
1467 }
1468
a3496855
MW
1469 ssp->clk = devm_clk_get(&pdev->dev, NULL);
1470 ssp->irq = platform_get_irq(pdev, 0);
03fbf488 1471 ssp->type = type;
a3496855 1472 ssp->pdev = pdev;
0db64215 1473 ssp->port_id = pxa2xx_spi_get_port_id(adev);
a3496855
MW
1474
1475 pdata->num_chipselect = 1;
cddb339b 1476 pdata->enable_dma = true;
a3496855
MW
1477
1478 return pdata;
1479}
1480
0db64215 1481#else /* !CONFIG_PCI */
a3496855 1482static inline struct pxa2xx_spi_master *
0db64215 1483pxa2xx_spi_init_pdata(struct platform_device *pdev)
a3496855
MW
1484{
1485 return NULL;
1486}
1487#endif
1488
3cc7b0e3
JN
1489static int pxa2xx_spi_fw_translate_cs(struct spi_controller *master,
1490 unsigned int cs)
0c27d9cf 1491{
3cc7b0e3 1492 struct driver_data *drv_data = spi_controller_get_devdata(master);
0c27d9cf
MW
1493
1494 if (has_acpi_companion(&drv_data->pdev->dev)) {
1495 switch (drv_data->ssp_type) {
1496 /*
1497 * For Atoms the ACPI DeviceSelection used by the Windows
1498 * driver starts from 1 instead of 0 so translate it here
1499 * to match what Linux expects.
1500 */
1501 case LPSS_BYT_SSP:
30f3a6ab 1502 case LPSS_BSW_SSP:
0c27d9cf
MW
1503 return cs - 1;
1504
1505 default:
1506 break;
1507 }
1508 }
1509
1510 return cs;
1511}
1512
fd4a319b 1513static int pxa2xx_spi_probe(struct platform_device *pdev)
e0c9905e
SS
1514{
1515 struct device *dev = &pdev->dev;
1516 struct pxa2xx_spi_master *platform_info;
3cc7b0e3 1517 struct spi_controller *master;
65a00a20 1518 struct driver_data *drv_data;
2f1a74e5 1519 struct ssp_device *ssp;
8b136baa 1520 const struct lpss_config *config;
99f499cd 1521 int status, count;
c039dd27 1522 u32 tmp;
e0c9905e 1523
851bacf5
MW
1524 platform_info = dev_get_platdata(dev);
1525 if (!platform_info) {
0db64215 1526 platform_info = pxa2xx_spi_init_pdata(pdev);
a3496855
MW
1527 if (!platform_info) {
1528 dev_err(&pdev->dev, "missing platform data\n");
1529 return -ENODEV;
1530 }
851bacf5 1531 }
e0c9905e 1532
baffe169 1533 ssp = pxa_ssp_request(pdev->id, pdev->name);
851bacf5
MW
1534 if (!ssp)
1535 ssp = &platform_info->ssp;
1536
1537 if (!ssp->mmio_base) {
1538 dev_err(&pdev->dev, "failed to get ssp\n");
e0c9905e
SS
1539 return -ENODEV;
1540 }
1541
757fe8d5 1542 master = spi_alloc_master(dev, sizeof(struct driver_data));
e0c9905e 1543 if (!master) {
65a00a20 1544 dev_err(&pdev->dev, "cannot alloc spi_master\n");
baffe169 1545 pxa_ssp_free(ssp);
e0c9905e
SS
1546 return -ENOMEM;
1547 }
3cc7b0e3 1548 drv_data = spi_controller_get_devdata(master);
e0c9905e
SS
1549 drv_data->master = master;
1550 drv_data->master_info = platform_info;
1551 drv_data->pdev = pdev;
2f1a74e5 1552 drv_data->ssp = ssp;
e0c9905e 1553
21486af0 1554 master->dev.of_node = pdev->dev.of_node;
e7db06b5 1555 /* the spi->mode bits understood by this driver: */
b833172f 1556 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LOOP;
e7db06b5 1557
851bacf5 1558 master->bus_num = ssp->port_id;
7ad0ba91 1559 master->dma_alignment = DMA_ALIGNMENT;
e0c9905e
SS
1560 master->cleanup = cleanup;
1561 master->setup = setup;
d5898e19
JN
1562 master->set_cs = pxa2xx_spi_set_cs;
1563 master->transfer_one = pxa2xx_spi_transfer_one;
1564 master->handle_err = pxa2xx_spi_handle_err;
7d94a505 1565 master->unprepare_transfer_hardware = pxa2xx_spi_unprepare_transfer;
0c27d9cf 1566 master->fw_translate_cs = pxa2xx_spi_fw_translate_cs;
7dd62787 1567 master->auto_runtime_pm = true;
3cc7b0e3 1568 master->flags = SPI_CONTROLLER_MUST_RX | SPI_CONTROLLER_MUST_TX;
e0c9905e 1569
2f1a74e5 1570 drv_data->ssp_type = ssp->type;
e0c9905e 1571
2f1a74e5 1572 drv_data->ioaddr = ssp->mmio_base;
1573 drv_data->ssdr_physical = ssp->phys_base + SSDR;
2a8626a9 1574 if (pxa25x_ssp_comp(drv_data)) {
e5262d05
WC
1575 switch (drv_data->ssp_type) {
1576 case QUARK_X1000_SSP:
1577 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
1578 break;
1579 default:
1580 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16);
1581 break;
1582 }
1583
e0c9905e
SS
1584 drv_data->int_cr1 = SSCR1_TIE | SSCR1_RIE;
1585 drv_data->dma_cr1 = 0;
1586 drv_data->clear_sr = SSSR_ROR;
1587 drv_data->mask_sr = SSSR_RFS | SSSR_TFS | SSSR_ROR;
1588 } else {
24778be2 1589 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
e0c9905e 1590 drv_data->int_cr1 = SSCR1_TIE | SSCR1_RIE | SSCR1_TINTE;
5928808e 1591 drv_data->dma_cr1 = DEFAULT_DMA_CR1;
e0c9905e
SS
1592 drv_data->clear_sr = SSSR_ROR | SSSR_TINT;
1593 drv_data->mask_sr = SSSR_TINT | SSSR_RFS | SSSR_TFS | SSSR_ROR;
1594 }
1595
49cbb1e0
SAS
1596 status = request_irq(ssp->irq, ssp_int, IRQF_SHARED, dev_name(dev),
1597 drv_data);
e0c9905e 1598 if (status < 0) {
65a00a20 1599 dev_err(&pdev->dev, "cannot get IRQ %d\n", ssp->irq);
e0c9905e
SS
1600 goto out_error_master_alloc;
1601 }
1602
1603 /* Setup DMA if requested */
e0c9905e 1604 if (platform_info->enable_dma) {
cd7bed00
MW
1605 status = pxa2xx_spi_dma_setup(drv_data);
1606 if (status) {
cddb339b 1607 dev_dbg(dev, "no DMA channels available, using PIO\n");
cd7bed00 1608 platform_info->enable_dma = false;
b6ced294
JN
1609 } else {
1610 master->can_dma = pxa2xx_spi_can_dma;
e0c9905e 1611 }
e0c9905e
SS
1612 }
1613
1614 /* Enable SOC clock */
3343b7a6
MW
1615 clk_prepare_enable(ssp->clk);
1616
0eca7cf2 1617 master->max_speed_hz = clk_get_rate(ssp->clk);
e0c9905e
SS
1618
1619 /* Load default SSP configuration */
c039dd27 1620 pxa2xx_spi_write(drv_data, SSCR0, 0);
e5262d05
WC
1621 switch (drv_data->ssp_type) {
1622 case QUARK_X1000_SSP:
7c7289a4
AS
1623 tmp = QUARK_X1000_SSCR1_RxTresh(RX_THRESH_QUARK_X1000_DFLT) |
1624 QUARK_X1000_SSCR1_TxTresh(TX_THRESH_QUARK_X1000_DFLT);
c039dd27 1625 pxa2xx_spi_write(drv_data, SSCR1, tmp);
e5262d05
WC
1626
1627 /* using the Motorola SPI protocol and use 8 bit frame */
7c7289a4
AS
1628 tmp = QUARK_X1000_SSCR0_Motorola | QUARK_X1000_SSCR0_DataSize(8);
1629 pxa2xx_spi_write(drv_data, SSCR0, tmp);
e5262d05 1630 break;
7c7289a4
AS
1631 case CE4100_SSP:
1632 tmp = CE4100_SSCR1_RxTresh(RX_THRESH_CE4100_DFLT) |
1633 CE4100_SSCR1_TxTresh(TX_THRESH_CE4100_DFLT);
1634 pxa2xx_spi_write(drv_data, SSCR1, tmp);
1635 tmp = SSCR0_SCR(2) | SSCR0_Motorola | SSCR0_DataSize(8);
1636 pxa2xx_spi_write(drv_data, SSCR0, tmp);
a2dd8af0 1637 break;
e5262d05 1638 default:
c039dd27
JN
1639 tmp = SSCR1_RxTresh(RX_THRESH_DFLT) |
1640 SSCR1_TxTresh(TX_THRESH_DFLT);
1641 pxa2xx_spi_write(drv_data, SSCR1, tmp);
1642 tmp = SSCR0_SCR(2) | SSCR0_Motorola | SSCR0_DataSize(8);
1643 pxa2xx_spi_write(drv_data, SSCR0, tmp);
e5262d05
WC
1644 break;
1645 }
1646
2a8626a9 1647 if (!pxa25x_ssp_comp(drv_data))
c039dd27 1648 pxa2xx_spi_write(drv_data, SSTO, 0);
e5262d05
WC
1649
1650 if (!is_quark_x1000_ssp(drv_data))
c039dd27 1651 pxa2xx_spi_write(drv_data, SSPSP, 0);
e0c9905e 1652
8b136baa
JN
1653 if (is_lpss_ssp(drv_data)) {
1654 lpss_ssp_setup(drv_data);
1655 config = lpss_get_config(drv_data);
1656 if (config->reg_capabilities >= 0) {
1657 tmp = __lpss_ssp_read_priv(drv_data,
1658 config->reg_capabilities);
1659 tmp &= LPSS_CAPS_CS_EN_MASK;
1660 tmp >>= LPSS_CAPS_CS_EN_SHIFT;
1661 platform_info->num_chipselect = ffz(tmp);
30f3a6ab
MW
1662 } else if (config->cs_num) {
1663 platform_info->num_chipselect = config->cs_num;
8b136baa
JN
1664 }
1665 }
1666 master->num_chipselect = platform_info->num_chipselect;
1667
99f499cd 1668 count = gpiod_count(&pdev->dev, "cs");
6ac5a435
AS
1669 if (count > 0) {
1670 int i;
1671
99f499cd
MW
1672 master->num_chipselect = max_t(int, count,
1673 master->num_chipselect);
1674
6ac5a435
AS
1675 drv_data->cs_gpiods = devm_kcalloc(&pdev->dev,
1676 master->num_chipselect, sizeof(struct gpio_desc *),
1677 GFP_KERNEL);
1678 if (!drv_data->cs_gpiods) {
1679 status = -ENOMEM;
1680 goto out_error_clock_enabled;
1681 }
1682
1683 for (i = 0; i < master->num_chipselect; i++) {
1684 struct gpio_desc *gpiod;
1685
d35f2dc9 1686 gpiod = devm_gpiod_get_index(dev, "cs", i, GPIOD_ASIS);
6ac5a435
AS
1687 if (IS_ERR(gpiod)) {
1688 /* Means use native chip select */
1689 if (PTR_ERR(gpiod) == -ENOENT)
1690 continue;
1691
1692 status = (int)PTR_ERR(gpiod);
1693 goto out_error_clock_enabled;
1694 } else {
1695 drv_data->cs_gpiods[i] = gpiod;
1696 }
1697 }
1698 }
1699
836d1a22
AO
1700 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1701 pm_runtime_use_autosuspend(&pdev->dev);
1702 pm_runtime_set_active(&pdev->dev);
1703 pm_runtime_enable(&pdev->dev);
1704
e0c9905e
SS
1705 /* Register with the SPI framework */
1706 platform_set_drvdata(pdev, drv_data);
3cc7b0e3 1707 status = devm_spi_register_controller(&pdev->dev, master);
e0c9905e
SS
1708 if (status != 0) {
1709 dev_err(&pdev->dev, "problem registering spi master\n");
7f86bde9 1710 goto out_error_clock_enabled;
e0c9905e
SS
1711 }
1712
1713 return status;
1714
e0c9905e 1715out_error_clock_enabled:
e2b714af
JN
1716 pm_runtime_put_noidle(&pdev->dev);
1717 pm_runtime_disable(&pdev->dev);
3343b7a6 1718 clk_disable_unprepare(ssp->clk);
cd7bed00 1719 pxa2xx_spi_dma_release(drv_data);
2f1a74e5 1720 free_irq(ssp->irq, drv_data);
e0c9905e
SS
1721
1722out_error_master_alloc:
3cc7b0e3 1723 spi_controller_put(master);
baffe169 1724 pxa_ssp_free(ssp);
e0c9905e
SS
1725 return status;
1726}
1727
1728static int pxa2xx_spi_remove(struct platform_device *pdev)
1729{
1730 struct driver_data *drv_data = platform_get_drvdata(pdev);
51e911e2 1731 struct ssp_device *ssp;
e0c9905e
SS
1732
1733 if (!drv_data)
1734 return 0;
51e911e2 1735 ssp = drv_data->ssp;
e0c9905e 1736
7d94a505
MW
1737 pm_runtime_get_sync(&pdev->dev);
1738
e0c9905e 1739 /* Disable the SSP at the peripheral and SOC level */
c039dd27 1740 pxa2xx_spi_write(drv_data, SSCR0, 0);
3343b7a6 1741 clk_disable_unprepare(ssp->clk);
e0c9905e
SS
1742
1743 /* Release DMA */
cd7bed00
MW
1744 if (drv_data->master_info->enable_dma)
1745 pxa2xx_spi_dma_release(drv_data);
e0c9905e 1746
7d94a505
MW
1747 pm_runtime_put_noidle(&pdev->dev);
1748 pm_runtime_disable(&pdev->dev);
1749
e0c9905e 1750 /* Release IRQ */
2f1a74e5 1751 free_irq(ssp->irq, drv_data);
1752
1753 /* Release SSP */
baffe169 1754 pxa_ssp_free(ssp);
e0c9905e 1755
e0c9905e
SS
1756 return 0;
1757}
1758
1759static void pxa2xx_spi_shutdown(struct platform_device *pdev)
1760{
1761 int status = 0;
1762
1763 if ((status = pxa2xx_spi_remove(pdev)) != 0)
1764 dev_err(&pdev->dev, "shutdown failed with %d\n", status);
1765}
1766
382cebb0 1767#ifdef CONFIG_PM_SLEEP
86d2593a 1768static int pxa2xx_spi_suspend(struct device *dev)
e0c9905e 1769{
86d2593a 1770 struct driver_data *drv_data = dev_get_drvdata(dev);
2f1a74e5 1771 struct ssp_device *ssp = drv_data->ssp;
bffc967e 1772 int status;
e0c9905e 1773
3cc7b0e3 1774 status = spi_controller_suspend(drv_data->master);
e0c9905e
SS
1775 if (status != 0)
1776 return status;
c039dd27 1777 pxa2xx_spi_write(drv_data, SSCR0, 0);
2b9375b9
DES
1778
1779 if (!pm_runtime_suspended(dev))
1780 clk_disable_unprepare(ssp->clk);
e0c9905e
SS
1781
1782 return 0;
1783}
1784
86d2593a 1785static int pxa2xx_spi_resume(struct device *dev)
e0c9905e 1786{
86d2593a 1787 struct driver_data *drv_data = dev_get_drvdata(dev);
2f1a74e5 1788 struct ssp_device *ssp = drv_data->ssp;
bffc967e 1789 int status;
e0c9905e
SS
1790
1791 /* Enable the SSP clock */
2b9375b9
DES
1792 if (!pm_runtime_suspended(dev))
1793 clk_prepare_enable(ssp->clk);
e0c9905e 1794
c50325f7 1795 /* Restore LPSS private register bits */
48421adf
JN
1796 if (is_lpss_ssp(drv_data))
1797 lpss_ssp_setup(drv_data);
c50325f7 1798
e0c9905e 1799 /* Start the queue running */
3cc7b0e3 1800 status = spi_controller_resume(drv_data->master);
e0c9905e 1801 if (status != 0) {
86d2593a 1802 dev_err(dev, "problem starting queue (%d)\n", status);
e0c9905e
SS
1803 return status;
1804 }
1805
1806 return 0;
1807}
7d94a505
MW
1808#endif
1809
ec833050 1810#ifdef CONFIG_PM
7d94a505
MW
1811static int pxa2xx_spi_runtime_suspend(struct device *dev)
1812{
1813 struct driver_data *drv_data = dev_get_drvdata(dev);
1814
1815 clk_disable_unprepare(drv_data->ssp->clk);
1816 return 0;
1817}
1818
1819static int pxa2xx_spi_runtime_resume(struct device *dev)
1820{
1821 struct driver_data *drv_data = dev_get_drvdata(dev);
1822
1823 clk_prepare_enable(drv_data->ssp->clk);
1824 return 0;
1825}
1826#endif
86d2593a 1827
47145210 1828static const struct dev_pm_ops pxa2xx_spi_pm_ops = {
7d94a505
MW
1829 SET_SYSTEM_SLEEP_PM_OPS(pxa2xx_spi_suspend, pxa2xx_spi_resume)
1830 SET_RUNTIME_PM_OPS(pxa2xx_spi_runtime_suspend,
1831 pxa2xx_spi_runtime_resume, NULL)
86d2593a 1832};
e0c9905e
SS
1833
1834static struct platform_driver driver = {
1835 .driver = {
86d2593a 1836 .name = "pxa2xx-spi",
86d2593a 1837 .pm = &pxa2xx_spi_pm_ops,
a3496855 1838 .acpi_match_table = ACPI_PTR(pxa2xx_spi_acpi_match),
e0c9905e 1839 },
fbd29a14 1840 .probe = pxa2xx_spi_probe,
d1e44d9c 1841 .remove = pxa2xx_spi_remove,
e0c9905e 1842 .shutdown = pxa2xx_spi_shutdown,
e0c9905e
SS
1843};
1844
1845static int __init pxa2xx_spi_init(void)
1846{
fbd29a14 1847 return platform_driver_register(&driver);
e0c9905e 1848}
5b61a749 1849subsys_initcall(pxa2xx_spi_init);
e0c9905e
SS
1850
1851static void __exit pxa2xx_spi_exit(void)
1852{
1853 platform_driver_unregister(&driver);
1854}
1855module_exit(pxa2xx_spi_exit);