Merge tag 'trace-v5.11-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux/fpc-iii.git] / drivers / spi / spi-omap-100k.c
blob36a4922a134a13f4c6214ee2a1bced9585f61225
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * OMAP7xx SPI 100k controller driver
4 * Author: Fabrice Crohas <fcrohas@gmail.com>
5 * from original omap1_mcspi driver
7 * Copyright (C) 2005, 2006 Nokia Corporation
8 * Author: Samuel Ortiz <samuel.ortiz@nokia.com> and
9 * Juha Yrj�l� <juha.yrjola@nokia.com>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/delay.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/err.h>
20 #include <linux/clk.h>
21 #include <linux/io.h>
22 #include <linux/slab.h>
24 #include <linux/spi/spi.h>
26 #define OMAP1_SPI100K_MAX_FREQ 48000000
28 #define ICR_SPITAS (OMAP7XX_ICR_BASE + 0x12)
30 #define SPI_SETUP1 0x00
31 #define SPI_SETUP2 0x02
32 #define SPI_CTRL 0x04
33 #define SPI_STATUS 0x06
34 #define SPI_TX_LSB 0x08
35 #define SPI_TX_MSB 0x0a
36 #define SPI_RX_LSB 0x0c
37 #define SPI_RX_MSB 0x0e
39 #define SPI_SETUP1_INT_READ_ENABLE (1UL << 5)
40 #define SPI_SETUP1_INT_WRITE_ENABLE (1UL << 4)
41 #define SPI_SETUP1_CLOCK_DIVISOR(x) ((x) << 1)
42 #define SPI_SETUP1_CLOCK_ENABLE (1UL << 0)
44 #define SPI_SETUP2_ACTIVE_EDGE_FALLING (0UL << 0)
45 #define SPI_SETUP2_ACTIVE_EDGE_RISING (1UL << 0)
46 #define SPI_SETUP2_NEGATIVE_LEVEL (0UL << 5)
47 #define SPI_SETUP2_POSITIVE_LEVEL (1UL << 5)
48 #define SPI_SETUP2_LEVEL_TRIGGER (0UL << 10)
49 #define SPI_SETUP2_EDGE_TRIGGER (1UL << 10)
51 #define SPI_CTRL_SEN(x) ((x) << 7)
52 #define SPI_CTRL_WORD_SIZE(x) (((x) - 1) << 2)
53 #define SPI_CTRL_WR (1UL << 1)
54 #define SPI_CTRL_RD (1UL << 0)
56 #define SPI_STATUS_WE (1UL << 1)
57 #define SPI_STATUS_RD (1UL << 0)
59 /* use PIO for small transfers, avoiding DMA setup/teardown overhead and
60 * cache operations; better heuristics consider wordsize and bitrate.
62 #define DMA_MIN_BYTES 8
64 #define SPI_RUNNING 0
65 #define SPI_SHUTDOWN 1
67 struct omap1_spi100k {
68 struct clk *ick;
69 struct clk *fck;
71 /* Virtual base address of the controller */
72 void __iomem *base;
75 struct omap1_spi100k_cs {
76 void __iomem *base;
77 int word_len;
80 static void spi100k_enable_clock(struct spi_master *master)
82 unsigned int val;
83 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
85 /* enable SPI */
86 val = readw(spi100k->base + SPI_SETUP1);
87 val |= SPI_SETUP1_CLOCK_ENABLE;
88 writew(val, spi100k->base + SPI_SETUP1);
91 static void spi100k_disable_clock(struct spi_master *master)
93 unsigned int val;
94 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
96 /* disable SPI */
97 val = readw(spi100k->base + SPI_SETUP1);
98 val &= ~SPI_SETUP1_CLOCK_ENABLE;
99 writew(val, spi100k->base + SPI_SETUP1);
102 static void spi100k_write_data(struct spi_master *master, int len, int data)
104 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
106 /* write 16-bit word, shifting 8-bit data if necessary */
107 if (len <= 8) {
108 data <<= 8;
109 len = 16;
112 spi100k_enable_clock(master);
113 writew(data , spi100k->base + SPI_TX_MSB);
115 writew(SPI_CTRL_SEN(0) |
116 SPI_CTRL_WORD_SIZE(len) |
117 SPI_CTRL_WR,
118 spi100k->base + SPI_CTRL);
120 /* Wait for bit ack send change */
121 while ((readw(spi100k->base + SPI_STATUS) & SPI_STATUS_WE) != SPI_STATUS_WE)
123 udelay(1000);
125 spi100k_disable_clock(master);
128 static int spi100k_read_data(struct spi_master *master, int len)
130 int dataL;
131 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
133 /* Always do at least 16 bits */
134 if (len <= 8)
135 len = 16;
137 spi100k_enable_clock(master);
138 writew(SPI_CTRL_SEN(0) |
139 SPI_CTRL_WORD_SIZE(len) |
140 SPI_CTRL_RD,
141 spi100k->base + SPI_CTRL);
143 while ((readw(spi100k->base + SPI_STATUS) & SPI_STATUS_RD) != SPI_STATUS_RD)
145 udelay(1000);
147 dataL = readw(spi100k->base + SPI_RX_LSB);
148 readw(spi100k->base + SPI_RX_MSB);
149 spi100k_disable_clock(master);
151 return dataL;
154 static void spi100k_open(struct spi_master *master)
156 /* get control of SPI */
157 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
159 writew(SPI_SETUP1_INT_READ_ENABLE |
160 SPI_SETUP1_INT_WRITE_ENABLE |
161 SPI_SETUP1_CLOCK_DIVISOR(0), spi100k->base + SPI_SETUP1);
163 /* configure clock and interrupts */
164 writew(SPI_SETUP2_ACTIVE_EDGE_FALLING |
165 SPI_SETUP2_NEGATIVE_LEVEL |
166 SPI_SETUP2_LEVEL_TRIGGER, spi100k->base + SPI_SETUP2);
169 static void omap1_spi100k_force_cs(struct omap1_spi100k *spi100k, int enable)
171 if (enable)
172 writew(0x05fc, spi100k->base + SPI_CTRL);
173 else
174 writew(0x05fd, spi100k->base + SPI_CTRL);
177 static unsigned
178 omap1_spi100k_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
180 struct omap1_spi100k_cs *cs = spi->controller_state;
181 unsigned int count, c;
182 int word_len;
184 count = xfer->len;
185 c = count;
186 word_len = cs->word_len;
188 if (word_len <= 8) {
189 u8 *rx;
190 const u8 *tx;
192 rx = xfer->rx_buf;
193 tx = xfer->tx_buf;
194 do {
195 c -= 1;
196 if (xfer->tx_buf != NULL)
197 spi100k_write_data(spi->master, word_len, *tx++);
198 if (xfer->rx_buf != NULL)
199 *rx++ = spi100k_read_data(spi->master, word_len);
200 } while (c);
201 } else if (word_len <= 16) {
202 u16 *rx;
203 const u16 *tx;
205 rx = xfer->rx_buf;
206 tx = xfer->tx_buf;
207 do {
208 c -= 2;
209 if (xfer->tx_buf != NULL)
210 spi100k_write_data(spi->master, word_len, *tx++);
211 if (xfer->rx_buf != NULL)
212 *rx++ = spi100k_read_data(spi->master, word_len);
213 } while (c);
214 } else if (word_len <= 32) {
215 u32 *rx;
216 const u32 *tx;
218 rx = xfer->rx_buf;
219 tx = xfer->tx_buf;
220 do {
221 c -= 4;
222 if (xfer->tx_buf != NULL)
223 spi100k_write_data(spi->master, word_len, *tx);
224 if (xfer->rx_buf != NULL)
225 *rx = spi100k_read_data(spi->master, word_len);
226 } while (c);
228 return count - c;
231 /* called only when no transfer is active to this device */
232 static int omap1_spi100k_setup_transfer(struct spi_device *spi,
233 struct spi_transfer *t)
235 struct omap1_spi100k *spi100k = spi_master_get_devdata(spi->master);
236 struct omap1_spi100k_cs *cs = spi->controller_state;
237 u8 word_len;
239 if (t != NULL)
240 word_len = t->bits_per_word;
241 else
242 word_len = spi->bits_per_word;
244 if (spi->bits_per_word > 32)
245 return -EINVAL;
246 cs->word_len = word_len;
248 /* SPI init before transfer */
249 writew(0x3e , spi100k->base + SPI_SETUP1);
250 writew(0x00 , spi100k->base + SPI_STATUS);
251 writew(0x3e , spi100k->base + SPI_CTRL);
253 return 0;
256 /* the spi->mode bits understood by this driver: */
257 #define MODEBITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH)
259 static int omap1_spi100k_setup(struct spi_device *spi)
261 int ret;
262 struct omap1_spi100k *spi100k;
263 struct omap1_spi100k_cs *cs = spi->controller_state;
265 spi100k = spi_master_get_devdata(spi->master);
267 if (!cs) {
268 cs = devm_kzalloc(&spi->dev, sizeof(*cs), GFP_KERNEL);
269 if (!cs)
270 return -ENOMEM;
271 cs->base = spi100k->base + spi->chip_select * 0x14;
272 spi->controller_state = cs;
275 spi100k_open(spi->master);
277 clk_prepare_enable(spi100k->ick);
278 clk_prepare_enable(spi100k->fck);
280 ret = omap1_spi100k_setup_transfer(spi, NULL);
282 clk_disable_unprepare(spi100k->ick);
283 clk_disable_unprepare(spi100k->fck);
285 return ret;
288 static int omap1_spi100k_transfer_one_message(struct spi_master *master,
289 struct spi_message *m)
291 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
292 struct spi_device *spi = m->spi;
293 struct spi_transfer *t = NULL;
294 int cs_active = 0;
295 int status = 0;
297 list_for_each_entry(t, &m->transfers, transfer_list) {
298 if (t->tx_buf == NULL && t->rx_buf == NULL && t->len) {
299 status = -EINVAL;
300 break;
302 status = omap1_spi100k_setup_transfer(spi, t);
303 if (status < 0)
304 break;
306 if (!cs_active) {
307 omap1_spi100k_force_cs(spi100k, 1);
308 cs_active = 1;
311 if (t->len) {
312 unsigned count;
314 count = omap1_spi100k_txrx_pio(spi, t);
315 m->actual_length += count;
317 if (count != t->len) {
318 status = -EIO;
319 break;
323 spi_transfer_delay_exec(t);
325 /* ignore the "leave it on after last xfer" hint */
327 if (t->cs_change) {
328 omap1_spi100k_force_cs(spi100k, 0);
329 cs_active = 0;
333 status = omap1_spi100k_setup_transfer(spi, NULL);
335 if (cs_active)
336 omap1_spi100k_force_cs(spi100k, 0);
338 m->status = status;
340 spi_finalize_current_message(master);
342 return status;
345 static int omap1_spi100k_probe(struct platform_device *pdev)
347 struct spi_master *master;
348 struct omap1_spi100k *spi100k;
349 int status = 0;
351 if (!pdev->id)
352 return -EINVAL;
354 master = spi_alloc_master(&pdev->dev, sizeof(*spi100k));
355 if (master == NULL) {
356 dev_dbg(&pdev->dev, "master allocation failed\n");
357 return -ENOMEM;
360 if (pdev->id != -1)
361 master->bus_num = pdev->id;
363 master->setup = omap1_spi100k_setup;
364 master->transfer_one_message = omap1_spi100k_transfer_one_message;
365 master->num_chipselect = 2;
366 master->mode_bits = MODEBITS;
367 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
368 master->min_speed_hz = OMAP1_SPI100K_MAX_FREQ/(1<<16);
369 master->max_speed_hz = OMAP1_SPI100K_MAX_FREQ;
370 master->auto_runtime_pm = true;
372 spi100k = spi_master_get_devdata(master);
375 * The memory region base address is taken as the platform_data.
376 * You should allocate this with ioremap() before initializing
377 * the SPI.
379 spi100k->base = (void __iomem *)dev_get_platdata(&pdev->dev);
381 spi100k->ick = devm_clk_get(&pdev->dev, "ick");
382 if (IS_ERR(spi100k->ick)) {
383 dev_dbg(&pdev->dev, "can't get spi100k_ick\n");
384 status = PTR_ERR(spi100k->ick);
385 goto err;
388 spi100k->fck = devm_clk_get(&pdev->dev, "fck");
389 if (IS_ERR(spi100k->fck)) {
390 dev_dbg(&pdev->dev, "can't get spi100k_fck\n");
391 status = PTR_ERR(spi100k->fck);
392 goto err;
395 status = clk_prepare_enable(spi100k->ick);
396 if (status != 0) {
397 dev_err(&pdev->dev, "failed to enable ick: %d\n", status);
398 goto err;
401 status = clk_prepare_enable(spi100k->fck);
402 if (status != 0) {
403 dev_err(&pdev->dev, "failed to enable fck: %d\n", status);
404 goto err_ick;
407 pm_runtime_enable(&pdev->dev);
408 pm_runtime_set_active(&pdev->dev);
410 status = devm_spi_register_master(&pdev->dev, master);
411 if (status < 0)
412 goto err_fck;
414 return status;
416 err_fck:
417 clk_disable_unprepare(spi100k->fck);
418 err_ick:
419 clk_disable_unprepare(spi100k->ick);
420 err:
421 spi_master_put(master);
422 return status;
425 static int omap1_spi100k_remove(struct platform_device *pdev)
427 struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
428 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
430 pm_runtime_disable(&pdev->dev);
432 clk_disable_unprepare(spi100k->fck);
433 clk_disable_unprepare(spi100k->ick);
435 return 0;
438 #ifdef CONFIG_PM
439 static int omap1_spi100k_runtime_suspend(struct device *dev)
441 struct spi_master *master = spi_master_get(dev_get_drvdata(dev));
442 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
444 clk_disable_unprepare(spi100k->ick);
445 clk_disable_unprepare(spi100k->fck);
447 return 0;
450 static int omap1_spi100k_runtime_resume(struct device *dev)
452 struct spi_master *master = spi_master_get(dev_get_drvdata(dev));
453 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
454 int ret;
456 ret = clk_prepare_enable(spi100k->ick);
457 if (ret != 0) {
458 dev_err(dev, "Failed to enable ick: %d\n", ret);
459 return ret;
462 ret = clk_prepare_enable(spi100k->fck);
463 if (ret != 0) {
464 dev_err(dev, "Failed to enable fck: %d\n", ret);
465 clk_disable_unprepare(spi100k->ick);
466 return ret;
469 return 0;
471 #endif
473 static const struct dev_pm_ops omap1_spi100k_pm = {
474 SET_RUNTIME_PM_OPS(omap1_spi100k_runtime_suspend,
475 omap1_spi100k_runtime_resume, NULL)
478 static struct platform_driver omap1_spi100k_driver = {
479 .driver = {
480 .name = "omap1_spi100k",
481 .pm = &omap1_spi100k_pm,
483 .probe = omap1_spi100k_probe,
484 .remove = omap1_spi100k_remove,
487 module_platform_driver(omap1_spi100k_driver);
489 MODULE_DESCRIPTION("OMAP7xx SPI 100k controller driver");
490 MODULE_AUTHOR("Fabrice Crohas <fcrohas@gmail.com>");
491 MODULE_LICENSE("GPL");