blob: 8cad107a5b3f7e6d3b77f79fbf56f4b49f944267 [file] [log] [blame]
Shadi Ammouri60cadec2008-08-05 13:01:09 -07001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * Marvell Orion SPI controller driver
Shadi Ammouri60cadec2008-08-05 13:01:09 -07003 *
4 * Author: Shadi Ammouri <shadi@marvell.com>
5 * Copyright (C) 2007-2008 Marvell Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
Shadi Ammouri60cadec2008-08-05 13:01:09 -070012#include <linux/interrupt.h>
13#include <linux/delay.h>
14#include <linux/platform_device.h>
15#include <linux/err.h>
16#include <linux/io.h>
17#include <linux/spi/spi.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040018#include <linux/module.h>
Russell King5c678692014-06-21 12:22:37 +010019#include <linux/pm_runtime.h>
Andrew Lunnf814f9a2012-07-23 12:08:09 +020020#include <linux/of.h>
Greg Ungererdf59fa72014-09-28 23:24:04 +100021#include <linux/of_device.h>
Andrew Lunn4574b882012-04-06 17:17:26 +020022#include <linux/clk.h>
Mark Brown895248f2013-07-29 05:10:21 +010023#include <linux/sizes.h>
Shadi Ammouri60cadec2008-08-05 13:01:09 -070024#include <asm/unaligned.h>
25
26#define DRIVER_NAME "orion_spi"
27
Russell King5c678692014-06-21 12:22:37 +010028/* Runtime PM autosuspend timeout: PM is fairly light on this driver */
29#define SPI_AUTOSUSPEND_TIMEOUT 200
30
Ken Wilson23244402015-01-16 13:10:47 +100031/* Some SoCs using this driver support up to 8 chip selects.
32 * It is up to the implementer to only use the chip selects
33 * that are available.
34 */
35#define ORION_NUM_CHIPSELECTS 8
36
Shadi Ammouri60cadec2008-08-05 13:01:09 -070037#define ORION_SPI_WAIT_RDY_MAX_LOOP 2000 /* in usec */
38
39#define ORION_SPI_IF_CTRL_REG 0x00
40#define ORION_SPI_IF_CONFIG_REG 0x04
41#define ORION_SPI_DATA_OUT_REG 0x08
42#define ORION_SPI_DATA_IN_REG 0x0c
43#define ORION_SPI_INT_CAUSE_REG 0x10
44
Jason Gunthorpeb15d5d72012-11-21 12:23:35 -070045#define ORION_SPI_MODE_CPOL (1 << 11)
46#define ORION_SPI_MODE_CPHA (1 << 12)
Shadi Ammouri60cadec2008-08-05 13:01:09 -070047#define ORION_SPI_IF_8_16_BIT_MODE (1 << 5)
48#define ORION_SPI_CLK_PRESCALE_MASK 0x1F
Greg Ungererdf59fa72014-09-28 23:24:04 +100049#define ARMADA_SPI_CLK_PRESCALE_MASK 0xDF
Jason Gunthorpeb15d5d72012-11-21 12:23:35 -070050#define ORION_SPI_MODE_MASK (ORION_SPI_MODE_CPOL | \
51 ORION_SPI_MODE_CPHA)
Ken Wilson23244402015-01-16 13:10:47 +100052#define ORION_SPI_CS_MASK 0x1C
53#define ORION_SPI_CS_SHIFT 2
54#define ORION_SPI_CS(cs) ((cs << ORION_SPI_CS_SHIFT) & \
55 ORION_SPI_CS_MASK)
Shadi Ammouri60cadec2008-08-05 13:01:09 -070056
Greg Ungererdf59fa72014-09-28 23:24:04 +100057enum orion_spi_type {
58 ORION_SPI,
59 ARMADA_SPI,
60};
61
62struct orion_spi_dev {
63 enum orion_spi_type typ;
Gregory CLEMENTce2f6ea2015-05-26 11:44:42 +020064 /*
65 * min_divisor and max_hz should be exclusive, the only we can
66 * have both is for managing the armada-370-spi case with old
67 * device tree
68 */
69 unsigned long max_hz;
Greg Ungererdf59fa72014-09-28 23:24:04 +100070 unsigned int min_divisor;
71 unsigned int max_divisor;
72 u32 prescale_mask;
73};
74
Shadi Ammouri60cadec2008-08-05 13:01:09 -070075struct orion_spi {
Shadi Ammouri60cadec2008-08-05 13:01:09 -070076 struct spi_master *master;
77 void __iomem *base;
Andrew Lunn4574b882012-04-06 17:17:26 +020078 struct clk *clk;
Greg Ungererdf59fa72014-09-28 23:24:04 +100079 const struct orion_spi_dev *devdata;
Shadi Ammouri60cadec2008-08-05 13:01:09 -070080};
81
Shadi Ammouri60cadec2008-08-05 13:01:09 -070082static inline void __iomem *spi_reg(struct orion_spi *orion_spi, u32 reg)
83{
84 return orion_spi->base + reg;
85}
86
87static inline void
88orion_spi_setbits(struct orion_spi *orion_spi, u32 reg, u32 mask)
89{
90 void __iomem *reg_addr = spi_reg(orion_spi, reg);
91 u32 val;
92
93 val = readl(reg_addr);
94 val |= mask;
95 writel(val, reg_addr);
96}
97
98static inline void
99orion_spi_clrbits(struct orion_spi *orion_spi, u32 reg, u32 mask)
100{
101 void __iomem *reg_addr = spi_reg(orion_spi, reg);
102 u32 val;
103
104 val = readl(reg_addr);
105 val &= ~mask;
106 writel(val, reg_addr);
107}
108
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700109static int orion_spi_baudrate_set(struct spi_device *spi, unsigned int speed)
110{
111 u32 tclk_hz;
112 u32 rate;
113 u32 prescale;
114 u32 reg;
115 struct orion_spi *orion_spi;
Greg Ungererdf59fa72014-09-28 23:24:04 +1000116 const struct orion_spi_dev *devdata;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700117
118 orion_spi = spi_master_get_devdata(spi->master);
Greg Ungererdf59fa72014-09-28 23:24:04 +1000119 devdata = orion_spi->devdata;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700120
Andrew Lunn4574b882012-04-06 17:17:26 +0200121 tclk_hz = clk_get_rate(orion_spi->clk);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700122
Greg Ungererdf59fa72014-09-28 23:24:04 +1000123 if (devdata->typ == ARMADA_SPI) {
124 unsigned int clk, spr, sppr, sppr2, err;
125 unsigned int best_spr, best_sppr, best_err;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700126
Greg Ungererdf59fa72014-09-28 23:24:04 +1000127 best_err = speed;
128 best_spr = 0;
129 best_sppr = 0;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700130
Greg Ungererdf59fa72014-09-28 23:24:04 +1000131 /* Iterate over the valid range looking for best fit */
132 for (sppr = 0; sppr < 8; sppr++) {
133 sppr2 = 0x1 << sppr;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700134
Greg Ungererdf59fa72014-09-28 23:24:04 +1000135 spr = tclk_hz / sppr2;
136 spr = DIV_ROUND_UP(spr, speed);
137 if ((spr == 0) || (spr > 15))
138 continue;
139
140 clk = tclk_hz / (spr * sppr2);
141 err = speed - clk;
142
143 if (err < best_err) {
144 best_spr = spr;
145 best_sppr = sppr;
146 best_err = err;
147 }
148 }
149
150 if ((best_sppr == 0) && (best_spr == 0))
151 return -EINVAL;
152
153 prescale = ((best_sppr & 0x6) << 5) |
154 ((best_sppr & 0x1) << 4) | best_spr;
155 } else {
156 /*
157 * the supported rates are: 4,6,8...30
158 * round up as we look for equal or less speed
159 */
160 rate = DIV_ROUND_UP(tclk_hz, speed);
161 rate = roundup(rate, 2);
162
163 /* check if requested speed is too small */
164 if (rate > 30)
165 return -EINVAL;
166
167 if (rate < 4)
168 rate = 4;
169
170 /* Convert the rate to SPI clock divisor value. */
171 prescale = 0x10 + rate/2;
172 }
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700173
174 reg = readl(spi_reg(orion_spi, ORION_SPI_IF_CONFIG_REG));
Greg Ungererdf59fa72014-09-28 23:24:04 +1000175 reg = ((reg & ~devdata->prescale_mask) | prescale);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700176 writel(reg, spi_reg(orion_spi, ORION_SPI_IF_CONFIG_REG));
177
178 return 0;
179}
180
Jason Gunthorpeb15d5d72012-11-21 12:23:35 -0700181static void
182orion_spi_mode_set(struct spi_device *spi)
183{
184 u32 reg;
185 struct orion_spi *orion_spi;
186
187 orion_spi = spi_master_get_devdata(spi->master);
188
189 reg = readl(spi_reg(orion_spi, ORION_SPI_IF_CONFIG_REG));
190 reg &= ~ORION_SPI_MODE_MASK;
191 if (spi->mode & SPI_CPOL)
192 reg |= ORION_SPI_MODE_CPOL;
193 if (spi->mode & SPI_CPHA)
194 reg |= ORION_SPI_MODE_CPHA;
195 writel(reg, spi_reg(orion_spi, ORION_SPI_IF_CONFIG_REG));
196}
197
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700198/*
199 * called only when no transfer is active on the bus
200 */
201static int
202orion_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
203{
204 struct orion_spi *orion_spi;
205 unsigned int speed = spi->max_speed_hz;
206 unsigned int bits_per_word = spi->bits_per_word;
207 int rc;
208
209 orion_spi = spi_master_get_devdata(spi->master);
210
211 if ((t != NULL) && t->speed_hz)
212 speed = t->speed_hz;
213
214 if ((t != NULL) && t->bits_per_word)
215 bits_per_word = t->bits_per_word;
216
Jason Gunthorpeb15d5d72012-11-21 12:23:35 -0700217 orion_spi_mode_set(spi);
218
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700219 rc = orion_spi_baudrate_set(spi, speed);
220 if (rc)
221 return rc;
222
Axel Lin495b3352014-02-11 20:51:36 +0800223 if (bits_per_word == 16)
224 orion_spi_setbits(orion_spi, ORION_SPI_IF_CONFIG_REG,
225 ORION_SPI_IF_8_16_BIT_MODE);
226 else
227 orion_spi_clrbits(orion_spi, ORION_SPI_IF_CONFIG_REG,
228 ORION_SPI_IF_8_16_BIT_MODE);
229
230 return 0;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700231}
232
Ken Wilson75872eb2015-01-12 13:13:59 +1000233static void orion_spi_set_cs(struct spi_device *spi, bool enable)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700234{
Ken Wilson75872eb2015-01-12 13:13:59 +1000235 struct orion_spi *orion_spi;
236
237 orion_spi = spi_master_get_devdata(spi->master);
238
Ken Wilson23244402015-01-16 13:10:47 +1000239 orion_spi_clrbits(orion_spi, ORION_SPI_IF_CTRL_REG, ORION_SPI_CS_MASK);
240 orion_spi_setbits(orion_spi, ORION_SPI_IF_CTRL_REG,
241 ORION_SPI_CS(spi->chip_select));
242
Ken Wilson75872eb2015-01-12 13:13:59 +1000243 /* Chip select logic is inverted from spi_set_cs */
244 if (!enable)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700245 orion_spi_setbits(orion_spi, ORION_SPI_IF_CTRL_REG, 0x1);
246 else
247 orion_spi_clrbits(orion_spi, ORION_SPI_IF_CTRL_REG, 0x1);
248}
249
250static inline int orion_spi_wait_till_ready(struct orion_spi *orion_spi)
251{
252 int i;
253
254 for (i = 0; i < ORION_SPI_WAIT_RDY_MAX_LOOP; i++) {
255 if (readl(spi_reg(orion_spi, ORION_SPI_INT_CAUSE_REG)))
256 return 1;
Jingoo Hanb8434042014-09-02 11:51:39 +0900257
258 udelay(1);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700259 }
260
261 return -1;
262}
263
264static inline int
265orion_spi_write_read_8bit(struct spi_device *spi,
266 const u8 **tx_buf, u8 **rx_buf)
267{
268 void __iomem *tx_reg, *rx_reg, *int_reg;
269 struct orion_spi *orion_spi;
270
271 orion_spi = spi_master_get_devdata(spi->master);
272 tx_reg = spi_reg(orion_spi, ORION_SPI_DATA_OUT_REG);
273 rx_reg = spi_reg(orion_spi, ORION_SPI_DATA_IN_REG);
274 int_reg = spi_reg(orion_spi, ORION_SPI_INT_CAUSE_REG);
275
276 /* clear the interrupt cause register */
277 writel(0x0, int_reg);
278
279 if (tx_buf && *tx_buf)
280 writel(*(*tx_buf)++, tx_reg);
281 else
282 writel(0, tx_reg);
283
284 if (orion_spi_wait_till_ready(orion_spi) < 0) {
285 dev_err(&spi->dev, "TXS timed out\n");
286 return -1;
287 }
288
289 if (rx_buf && *rx_buf)
290 *(*rx_buf)++ = readl(rx_reg);
291
292 return 1;
293}
294
295static inline int
296orion_spi_write_read_16bit(struct spi_device *spi,
297 const u16 **tx_buf, u16 **rx_buf)
298{
299 void __iomem *tx_reg, *rx_reg, *int_reg;
300 struct orion_spi *orion_spi;
301
302 orion_spi = spi_master_get_devdata(spi->master);
303 tx_reg = spi_reg(orion_spi, ORION_SPI_DATA_OUT_REG);
304 rx_reg = spi_reg(orion_spi, ORION_SPI_DATA_IN_REG);
305 int_reg = spi_reg(orion_spi, ORION_SPI_INT_CAUSE_REG);
306
307 /* clear the interrupt cause register */
308 writel(0x0, int_reg);
309
310 if (tx_buf && *tx_buf)
311 writel(__cpu_to_le16(get_unaligned((*tx_buf)++)), tx_reg);
312 else
313 writel(0, tx_reg);
314
315 if (orion_spi_wait_till_ready(orion_spi) < 0) {
316 dev_err(&spi->dev, "TXS timed out\n");
317 return -1;
318 }
319
320 if (rx_buf && *rx_buf)
321 put_unaligned(__le16_to_cpu(readl(rx_reg)), (*rx_buf)++);
322
323 return 1;
324}
325
326static unsigned int
327orion_spi_write_read(struct spi_device *spi, struct spi_transfer *xfer)
328{
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700329 unsigned int count;
330 int word_len;
331
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700332 word_len = spi->bits_per_word;
333 count = xfer->len;
334
335 if (word_len == 8) {
336 const u8 *tx = xfer->tx_buf;
337 u8 *rx = xfer->rx_buf;
338
339 do {
340 if (orion_spi_write_read_8bit(spi, &tx, &rx) < 0)
341 goto out;
342 count--;
343 } while (count);
344 } else if (word_len == 16) {
345 const u16 *tx = xfer->tx_buf;
346 u16 *rx = xfer->rx_buf;
347
348 do {
349 if (orion_spi_write_read_16bit(spi, &tx, &rx) < 0)
350 goto out;
351 count -= 2;
352 } while (count);
353 }
354
355out:
356 return xfer->len - count;
357}
358
Ken Wilson75872eb2015-01-12 13:13:59 +1000359static int orion_spi_transfer_one(struct spi_master *master,
360 struct spi_device *spi,
361 struct spi_transfer *t)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700362{
Andrew Lunnba59a802012-07-23 13:16:55 +0200363 int status = 0;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700364
Ken Wilson75872eb2015-01-12 13:13:59 +1000365 status = orion_spi_setup_transfer(spi, t);
Andrew Lunnba59a802012-07-23 13:16:55 +0200366 if (status < 0)
Ken Wilson75872eb2015-01-12 13:13:59 +1000367 return status;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700368
Ken Wilson75872eb2015-01-12 13:13:59 +1000369 if (t->len)
370 orion_spi_write_read(spi, t);
Andrew Lunnba59a802012-07-23 13:16:55 +0200371
Ken Wilson75872eb2015-01-12 13:13:59 +1000372 return status;
373}
Andrew Lunnba59a802012-07-23 13:16:55 +0200374
Ken Wilson75872eb2015-01-12 13:13:59 +1000375static int orion_spi_setup(struct spi_device *spi)
376{
377 return orion_spi_setup_transfer(spi, NULL);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700378}
379
Grant Likely2deff8d2013-02-05 13:27:35 +0000380static int orion_spi_reset(struct orion_spi *orion_spi)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700381{
382 /* Verify that the CS is deasserted */
Ken Wilson75872eb2015-01-12 13:13:59 +1000383 orion_spi_clrbits(orion_spi, ORION_SPI_IF_CTRL_REG, 0x1);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700384 return 0;
385}
386
Greg Ungererdf59fa72014-09-28 23:24:04 +1000387static const struct orion_spi_dev orion_spi_dev_data = {
388 .typ = ORION_SPI,
389 .min_divisor = 4,
390 .max_divisor = 30,
391 .prescale_mask = ORION_SPI_CLK_PRESCALE_MASK,
392};
393
Gregory CLEMENT4dacccf2015-05-26 11:44:43 +0200394static const struct orion_spi_dev armada_370_spi_dev_data = {
Greg Ungererdf59fa72014-09-28 23:24:04 +1000395 .typ = ARMADA_SPI,
Gregory CLEMENTce2f6ea2015-05-26 11:44:42 +0200396 .min_divisor = 4,
Greg Ungererdf59fa72014-09-28 23:24:04 +1000397 .max_divisor = 1920,
Gregory CLEMENTce2f6ea2015-05-26 11:44:42 +0200398 .max_hz = 50000000,
Greg Ungererdf59fa72014-09-28 23:24:04 +1000399 .prescale_mask = ARMADA_SPI_CLK_PRESCALE_MASK,
400};
401
Gregory CLEMENT4dacccf2015-05-26 11:44:43 +0200402static const struct orion_spi_dev armada_xp_spi_dev_data = {
403 .typ = ARMADA_SPI,
404 .max_hz = 50000000,
405 .max_divisor = 1920,
406 .prescale_mask = ARMADA_SPI_CLK_PRESCALE_MASK,
407};
408
409static const struct orion_spi_dev armada_375_spi_dev_data = {
410 .typ = ARMADA_SPI,
411 .min_divisor = 15,
412 .max_divisor = 1920,
413 .prescale_mask = ARMADA_SPI_CLK_PRESCALE_MASK,
414};
415
Greg Ungererdf59fa72014-09-28 23:24:04 +1000416static const struct of_device_id orion_spi_of_match_table[] = {
Gregory CLEMENT4dacccf2015-05-26 11:44:43 +0200417 {
418 .compatible = "marvell,orion-spi",
419 .data = &orion_spi_dev_data,
420 },
421 {
422 .compatible = "marvell,armada-370-spi",
423 .data = &armada_370_spi_dev_data,
424 },
425 {
426 .compatible = "marvell,armada-375-spi",
427 .data = &armada_375_spi_dev_data,
428 },
429 {
430 .compatible = "marvell,armada-380-spi",
431 .data = &armada_xp_spi_dev_data,
432 },
433 {
434 .compatible = "marvell,armada-390-spi",
435 .data = &armada_xp_spi_dev_data,
436 },
437 {
438 .compatible = "marvell,armada-xp-spi",
439 .data = &armada_xp_spi_dev_data,
440 },
441
Greg Ungererdf59fa72014-09-28 23:24:04 +1000442 {}
443};
444MODULE_DEVICE_TABLE(of, orion_spi_of_match_table);
445
Grant Likely2deff8d2013-02-05 13:27:35 +0000446static int orion_spi_probe(struct platform_device *pdev)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700447{
Greg Ungererdf59fa72014-09-28 23:24:04 +1000448 const struct of_device_id *of_id;
449 const struct orion_spi_dev *devdata;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700450 struct spi_master *master;
451 struct orion_spi *spi;
452 struct resource *r;
Andrew Lunn4574b882012-04-06 17:17:26 +0200453 unsigned long tclk_hz;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700454 int status = 0;
455
Jingoo Han3fed8062013-10-14 10:35:08 +0900456 master = spi_alloc_master(&pdev->dev, sizeof(*spi));
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700457 if (master == NULL) {
458 dev_dbg(&pdev->dev, "master allocation failed\n");
459 return -ENOMEM;
460 }
461
462 if (pdev->id != -1)
463 master->bus_num = pdev->id;
Andrew Lunnf814f9a2012-07-23 12:08:09 +0200464 if (pdev->dev.of_node) {
Thomas Petazzonie06871c2014-07-27 23:53:19 +0200465 u32 cell_index;
Jingoo Hanb8434042014-09-02 11:51:39 +0900466
Thomas Petazzonie06871c2014-07-27 23:53:19 +0200467 if (!of_property_read_u32(pdev->dev.of_node, "cell-index",
468 &cell_index))
469 master->bus_num = cell_index;
Andrew Lunnf814f9a2012-07-23 12:08:09 +0200470 }
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700471
David Brownelle7db06b2009-06-17 16:26:04 -0700472 /* we support only mode 0, and no options */
Jason Gunthorpeb15d5d72012-11-21 12:23:35 -0700473 master->mode_bits = SPI_CPHA | SPI_CPOL;
Ken Wilson75872eb2015-01-12 13:13:59 +1000474 master->set_cs = orion_spi_set_cs;
475 master->transfer_one = orion_spi_transfer_one;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700476 master->num_chipselect = ORION_NUM_CHIPSELECTS;
Ken Wilson75872eb2015-01-12 13:13:59 +1000477 master->setup = orion_spi_setup;
Axel Lin495b3352014-02-11 20:51:36 +0800478 master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16);
Russell King5c678692014-06-21 12:22:37 +0100479 master->auto_runtime_pm = true;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700480
Jingoo Han24b5a822013-05-23 19:20:40 +0900481 platform_set_drvdata(pdev, master);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700482
483 spi = spi_master_get_devdata(master);
484 spi->master = master;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700485
Greg Ungererdf59fa72014-09-28 23:24:04 +1000486 of_id = of_match_device(orion_spi_of_match_table, &pdev->dev);
Greg Ungerer9a2d3632014-10-21 15:57:48 +1000487 devdata = (of_id) ? of_id->data : &orion_spi_dev_data;
Greg Ungererdf59fa72014-09-28 23:24:04 +1000488 spi->devdata = devdata;
489
Jingoo Hanbb489842013-12-09 19:21:22 +0900490 spi->clk = devm_clk_get(&pdev->dev, NULL);
Andrew Lunn4574b882012-04-06 17:17:26 +0200491 if (IS_ERR(spi->clk)) {
492 status = PTR_ERR(spi->clk);
493 goto out;
494 }
495
Russell Kingc85012a2014-06-21 11:32:23 +0100496 status = clk_prepare_enable(spi->clk);
497 if (status)
498 goto out;
499
Andrew Lunn4574b882012-04-06 17:17:26 +0200500 tclk_hz = clk_get_rate(spi->clk);
Gregory CLEMENTce2f6ea2015-05-26 11:44:42 +0200501
502 /*
503 * With old device tree, armada-370-spi could be used with
504 * Armada XP, however for this SoC the maximum frequency is
505 * 50MHz instead of tclk/4. On Armada 370, tclk cannot be
506 * higher than 200MHz. So, in order to be able to handle both
507 * SoCs, we can take the minimum of 50MHz and tclk/4.
508 */
509 if (of_device_is_compatible(pdev->dev.of_node,
510 "marvell,armada-370-spi"))
511 master->max_speed_hz = min(devdata->max_hz,
512 DIV_ROUND_UP(tclk_hz, devdata->min_divisor));
Gregory CLEMENT4dacccf2015-05-26 11:44:43 +0200513 else if (devdata->min_divisor)
Gregory CLEMENTce2f6ea2015-05-26 11:44:42 +0200514 master->max_speed_hz =
515 DIV_ROUND_UP(tclk_hz, devdata->min_divisor);
Gregory CLEMENT4dacccf2015-05-26 11:44:43 +0200516 else
517 master->max_speed_hz = devdata->max_hz;
Greg Ungererdf59fa72014-09-28 23:24:04 +1000518 master->min_speed_hz = DIV_ROUND_UP(tclk_hz, devdata->max_divisor);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700519
520 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Mark Brown1729ce32013-07-28 14:38:06 +0100521 spi->base = devm_ioremap_resource(&pdev->dev, r);
522 if (IS_ERR(spi->base)) {
523 status = PTR_ERR(spi->base);
Andrew Lunn4574b882012-04-06 17:17:26 +0200524 goto out_rel_clk;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700525 }
526
Russell King5c678692014-06-21 12:22:37 +0100527 pm_runtime_set_active(&pdev->dev);
528 pm_runtime_use_autosuspend(&pdev->dev);
529 pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
530 pm_runtime_enable(&pdev->dev);
531
Wei Yongjun14033812014-07-20 22:03:14 +0800532 status = orion_spi_reset(spi);
533 if (status < 0)
Russell King5c678692014-06-21 12:22:37 +0100534 goto out_rel_pm;
535
536 pm_runtime_mark_last_busy(&pdev->dev);
537 pm_runtime_put_autosuspend(&pdev->dev);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700538
Andrew Lunnf814f9a2012-07-23 12:08:09 +0200539 master->dev.of_node = pdev->dev.of_node;
Russell King5c678692014-06-21 12:22:37 +0100540 status = spi_register_master(master);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700541 if (status < 0)
Russell King5c678692014-06-21 12:22:37 +0100542 goto out_rel_pm;
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700543
544 return status;
545
Russell King5c678692014-06-21 12:22:37 +0100546out_rel_pm:
547 pm_runtime_disable(&pdev->dev);
Andrew Lunn4574b882012-04-06 17:17:26 +0200548out_rel_clk:
549 clk_disable_unprepare(spi->clk);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700550out:
551 spi_master_put(master);
552 return status;
553}
554
555
Grant Likely2deff8d2013-02-05 13:27:35 +0000556static int orion_spi_remove(struct platform_device *pdev)
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700557{
Russell King5c678692014-06-21 12:22:37 +0100558 struct spi_master *master = platform_get_drvdata(pdev);
559 struct orion_spi *spi = spi_master_get_devdata(master);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700560
Russell King5c678692014-06-21 12:22:37 +0100561 pm_runtime_get_sync(&pdev->dev);
Andrew Lunn4574b882012-04-06 17:17:26 +0200562 clk_disable_unprepare(spi->clk);
Andrew Lunn4574b882012-04-06 17:17:26 +0200563
Russell King5c678692014-06-21 12:22:37 +0100564 spi_unregister_master(master);
565 pm_runtime_disable(&pdev->dev);
566
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700567 return 0;
568}
569
570MODULE_ALIAS("platform:" DRIVER_NAME);
571
Rafael J. Wysockiec833052014-12-13 00:41:15 +0100572#ifdef CONFIG_PM
Russell King5c678692014-06-21 12:22:37 +0100573static int orion_spi_runtime_suspend(struct device *dev)
574{
575 struct spi_master *master = dev_get_drvdata(dev);
576 struct orion_spi *spi = spi_master_get_devdata(master);
577
578 clk_disable_unprepare(spi->clk);
579 return 0;
580}
581
582static int orion_spi_runtime_resume(struct device *dev)
583{
584 struct spi_master *master = dev_get_drvdata(dev);
585 struct orion_spi *spi = spi_master_get_devdata(master);
586
587 return clk_prepare_enable(spi->clk);
588}
589#endif
590
591static const struct dev_pm_ops orion_spi_pm_ops = {
592 SET_RUNTIME_PM_OPS(orion_spi_runtime_suspend,
593 orion_spi_runtime_resume,
594 NULL)
595};
596
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700597static struct platform_driver orion_spi_driver = {
598 .driver = {
599 .name = DRIVER_NAME,
Russell King5c678692014-06-21 12:22:37 +0100600 .pm = &orion_spi_pm_ops,
Andrew Lunnf814f9a2012-07-23 12:08:09 +0200601 .of_match_table = of_match_ptr(orion_spi_of_match_table),
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700602 },
Ezequiel Garcia41ab7242013-02-04 09:26:26 -0300603 .probe = orion_spi_probe,
Grant Likely2deff8d2013-02-05 13:27:35 +0000604 .remove = orion_spi_remove,
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700605};
606
Ezequiel Garcia41ab7242013-02-04 09:26:26 -0300607module_platform_driver(orion_spi_driver);
Shadi Ammouri60cadec2008-08-05 13:01:09 -0700608
609MODULE_DESCRIPTION("Orion SPI driver");
610MODULE_AUTHOR("Shadi Ammouri <shadi@marvell.com>");
611MODULE_LICENSE("GPL");