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