2 * OMAP7xx SPI 100k controller driver
4 * from original omap1_mcspi driver
6 * Copyright (C) 2005, 2006 Nokia Corporation
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/module.h>
29 #include <linux/device.h>
30 #include <linux/delay.h>
31 #include <linux/platform_device.h>
32 #include <linux/err.h>
33 #include <linux/clk.h>
35 #include <linux/gpio.h>
36 #include <linux/slab.h>
38 #include <linux/spi/spi.h>
40 #define OMAP1_SPI100K_MAX_FREQ 48000000
42 #define ICR_SPITAS (OMAP7XX_ICR_BASE + 0x12)
44 #define SPI_SETUP1 0x00
45 #define SPI_SETUP2 0x02
47 #define SPI_STATUS 0x06
48 #define SPI_TX_LSB 0x08
49 #define SPI_TX_MSB 0x0a
50 #define SPI_RX_LSB 0x0c
51 #define SPI_RX_MSB 0x0e
53 #define SPI_SETUP1_INT_READ_ENABLE (1UL << 5)
54 #define SPI_SETUP1_INT_WRITE_ENABLE (1UL << 4)
55 #define SPI_SETUP1_CLOCK_DIVISOR(x) ((x) << 1)
56 #define SPI_SETUP1_CLOCK_ENABLE (1UL << 0)
58 #define SPI_SETUP2_ACTIVE_EDGE_FALLING (0UL << 0)
59 #define SPI_SETUP2_ACTIVE_EDGE_RISING (1UL << 0)
60 #define SPI_SETUP2_NEGATIVE_LEVEL (0UL << 5)
61 #define SPI_SETUP2_POSITIVE_LEVEL (1UL << 5)
62 #define SPI_SETUP2_LEVEL_TRIGGER (0UL << 10)
63 #define SPI_SETUP2_EDGE_TRIGGER (1UL << 10)
65 #define SPI_CTRL_SEN(x) ((x) << 7)
66 #define SPI_CTRL_WORD_SIZE(x) (((x) - 1) << 2)
67 #define SPI_CTRL_WR (1UL << 1)
68 #define SPI_CTRL_RD (1UL << 0)
70 #define SPI_STATUS_WE (1UL << 1)
71 #define SPI_STATUS_RD (1UL << 0)
77 /* use PIO for small transfers, avoiding DMA setup/teardown overhead and
78 * cache operations; better heuristics consider wordsize and bitrate.
80 #define DMA_MIN_BYTES 8
83 #define SPI_SHUTDOWN 1
85 struct omap1_spi100k {
89 /* Virtual base address of the controller */
93 struct omap1_spi100k_cs {
98 static void spi100k_enable_clock(struct spi_master *master)
101 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
104 val = readw(spi100k->base + SPI_SETUP1);
105 val |= SPI_SETUP1_CLOCK_ENABLE;
106 writew(val, spi100k->base + SPI_SETUP1);
109 static void spi100k_disable_clock(struct spi_master *master)
112 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
115 val = readw(spi100k->base + SPI_SETUP1);
116 val &= ~SPI_SETUP1_CLOCK_ENABLE;
117 writew(val, spi100k->base + SPI_SETUP1);
120 static void spi100k_write_data(struct spi_master *master, int len, int data)
122 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
124 /* write 16-bit word, shifting 8-bit data if necessary */
130 spi100k_enable_clock(master);
131 writew(data , spi100k->base + SPI_TX_MSB);
133 writew(SPI_CTRL_SEN(0) |
134 SPI_CTRL_WORD_SIZE(len) |
136 spi100k->base + SPI_CTRL);
138 /* Wait for bit ack send change */
139 while ((readw(spi100k->base + SPI_STATUS) & SPI_STATUS_WE) != SPI_STATUS_WE)
143 spi100k_disable_clock(master);
146 static int spi100k_read_data(struct spi_master *master, int len)
149 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
151 /* Always do at least 16 bits */
155 spi100k_enable_clock(master);
156 writew(SPI_CTRL_SEN(0) |
157 SPI_CTRL_WORD_SIZE(len) |
159 spi100k->base + SPI_CTRL);
161 while ((readw(spi100k->base + SPI_STATUS) & SPI_STATUS_RD) != SPI_STATUS_RD)
165 dataL = readw(spi100k->base + SPI_RX_LSB);
166 dataH = readw(spi100k->base + SPI_RX_MSB);
167 spi100k_disable_clock(master);
172 static void spi100k_open(struct spi_master *master)
174 /* get control of SPI */
175 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
177 writew(SPI_SETUP1_INT_READ_ENABLE |
178 SPI_SETUP1_INT_WRITE_ENABLE |
179 SPI_SETUP1_CLOCK_DIVISOR(0), spi100k->base + SPI_SETUP1);
181 /* configure clock and interrupts */
182 writew(SPI_SETUP2_ACTIVE_EDGE_FALLING |
183 SPI_SETUP2_NEGATIVE_LEVEL |
184 SPI_SETUP2_LEVEL_TRIGGER, spi100k->base + SPI_SETUP2);
187 static void omap1_spi100k_force_cs(struct omap1_spi100k *spi100k, int enable)
190 writew(0x05fc, spi100k->base + SPI_CTRL);
192 writew(0x05fd, spi100k->base + SPI_CTRL);
196 omap1_spi100k_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
198 struct omap1_spi100k_cs *cs = spi->controller_state;
199 unsigned int count, c;
204 word_len = cs->word_len;
214 if (xfer->tx_buf != NULL)
215 spi100k_write_data(spi->master, word_len, *tx++);
216 if (xfer->rx_buf != NULL)
217 *rx++ = spi100k_read_data(spi->master, word_len);
219 } else if (word_len <= 16) {
227 if (xfer->tx_buf != NULL)
228 spi100k_write_data(spi->master, word_len, *tx++);
229 if (xfer->rx_buf != NULL)
230 *rx++ = spi100k_read_data(spi->master, word_len);
232 } else if (word_len <= 32) {
240 if (xfer->tx_buf != NULL)
241 spi100k_write_data(spi->master, word_len, *tx);
242 if (xfer->rx_buf != NULL)
243 *rx = spi100k_read_data(spi->master, word_len);
249 /* called only when no transfer is active to this device */
250 static int omap1_spi100k_setup_transfer(struct spi_device *spi,
251 struct spi_transfer *t)
253 struct omap1_spi100k *spi100k = spi_master_get_devdata(spi->master);
254 struct omap1_spi100k_cs *cs = spi->controller_state;
255 u8 word_len = spi->bits_per_word;
257 if (t != NULL && t->bits_per_word)
258 word_len = t->bits_per_word;
262 if (spi->bits_per_word > 32)
264 cs->word_len = word_len;
266 /* SPI init before transfer */
267 writew(0x3e , spi100k->base + SPI_SETUP1);
268 writew(0x00 , spi100k->base + SPI_STATUS);
269 writew(0x3e , spi100k->base + SPI_CTRL);
274 /* the spi->mode bits understood by this driver: */
275 #define MODEBITS (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH)
277 static int omap1_spi100k_setup(struct spi_device *spi)
280 struct omap1_spi100k *spi100k;
281 struct omap1_spi100k_cs *cs = spi->controller_state;
283 spi100k = spi_master_get_devdata(spi->master);
286 cs = devm_kzalloc(&spi->dev, sizeof(*cs), GFP_KERNEL);
289 cs->base = spi100k->base + spi->chip_select * 0x14;
290 spi->controller_state = cs;
293 spi100k_open(spi->master);
295 clk_prepare_enable(spi100k->ick);
296 clk_prepare_enable(spi100k->fck);
298 ret = omap1_spi100k_setup_transfer(spi, NULL);
300 clk_disable_unprepare(spi100k->ick);
301 clk_disable_unprepare(spi100k->fck);
306 static int omap1_spi100k_prepare_hardware(struct spi_master *master)
308 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
310 clk_prepare_enable(spi100k->ick);
311 clk_prepare_enable(spi100k->fck);
316 static int omap1_spi100k_transfer_one_message(struct spi_master *master,
317 struct spi_message *m)
319 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
320 struct spi_device *spi = m->spi;
321 struct spi_transfer *t = NULL;
323 int par_override = 0;
326 list_for_each_entry(t, &m->transfers, transfer_list) {
327 if (t->tx_buf == NULL && t->rx_buf == NULL && t->len) {
331 if (par_override || t->speed_hz || t->bits_per_word) {
333 status = omap1_spi100k_setup_transfer(spi, t);
336 if (!t->speed_hz && !t->bits_per_word)
341 omap1_spi100k_force_cs(spi100k, 1);
348 count = omap1_spi100k_txrx_pio(spi, t);
349 m->actual_length += count;
351 if (count != t->len) {
358 udelay(t->delay_usecs);
360 /* ignore the "leave it on after last xfer" hint */
363 omap1_spi100k_force_cs(spi100k, 0);
368 /* Restore defaults if they were overriden */
371 status = omap1_spi100k_setup_transfer(spi, NULL);
375 omap1_spi100k_force_cs(spi100k, 0);
379 spi_finalize_current_message(master);
384 static int omap1_spi100k_unprepare_hardware(struct spi_master *master)
386 struct omap1_spi100k *spi100k = spi_master_get_devdata(master);
388 clk_disable_unprepare(spi100k->ick);
389 clk_disable_unprepare(spi100k->fck);
394 static int omap1_spi100k_probe(struct platform_device *pdev)
396 struct spi_master *master;
397 struct omap1_spi100k *spi100k;
403 master = spi_alloc_master(&pdev->dev, sizeof(*spi100k));
404 if (master == NULL) {
405 dev_dbg(&pdev->dev, "master allocation failed\n");
410 master->bus_num = pdev->id;
412 master->setup = omap1_spi100k_setup;
413 master->transfer_one_message = omap1_spi100k_transfer_one_message;
414 master->prepare_transfer_hardware = omap1_spi100k_prepare_hardware;
415 master->unprepare_transfer_hardware = omap1_spi100k_unprepare_hardware;
416 master->cleanup = NULL;
417 master->num_chipselect = 2;
418 master->mode_bits = MODEBITS;
419 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
420 master->min_speed_hz = OMAP1_SPI100K_MAX_FREQ/(1<<16);
421 master->max_speed_hz = OMAP1_SPI100K_MAX_FREQ;
423 platform_set_drvdata(pdev, master);
425 spi100k = spi_master_get_devdata(master);
428 * The memory region base address is taken as the platform_data.
429 * You should allocate this with ioremap() before initializing
432 spi100k->base = (void __iomem *)dev_get_platdata(&pdev->dev);
434 spi100k->ick = devm_clk_get(&pdev->dev, "ick");
435 if (IS_ERR(spi100k->ick)) {
436 dev_dbg(&pdev->dev, "can't get spi100k_ick\n");
437 status = PTR_ERR(spi100k->ick);
441 spi100k->fck = devm_clk_get(&pdev->dev, "fck");
442 if (IS_ERR(spi100k->fck)) {
443 dev_dbg(&pdev->dev, "can't get spi100k_fck\n");
444 status = PTR_ERR(spi100k->fck);
448 status = devm_spi_register_master(&pdev->dev, master);
455 spi_master_put(master);
459 static struct platform_driver omap1_spi100k_driver = {
461 .name = "omap1_spi100k",
462 .owner = THIS_MODULE,
464 .probe = omap1_spi100k_probe,
467 module_platform_driver(omap1_spi100k_driver);
469 MODULE_DESCRIPTION("OMAP7xx SPI 100k controller driver");
471 MODULE_LICENSE("GPL");