David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 1 | /* |
Grant Likely | ca632f5 | 2011-06-06 01:16:30 -0600 | [diff] [blame] | 2 | * MicroWire interface driver for OMAP |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2003 MontaVista Software Inc. <source@mvista.com> |
| 5 | * |
| 6 | * Ported to 2.6 OMAP uwire interface. |
| 7 | * Copyright (C) 2004 Texas Instruments. |
| 8 | * |
| 9 | * Generalization patches by Juha Yrjola <juha.yrjola@nokia.com> |
| 10 | * |
| 11 | * Copyright (C) 2005 David Brownell (ported to 2.6 SPI interface) |
| 12 | * Copyright (C) 2006 Nokia |
| 13 | * |
| 14 | * Many updates by Imre Deak <imre.deak@nokia.com> |
| 15 | * |
| 16 | * This program is free software; you can redistribute it and/or modify it |
| 17 | * under the terms of the GNU General Public License as published by the |
| 18 | * Free Software Foundation; either version 2 of the License, or (at your |
| 19 | * option) any later version. |
| 20 | * |
| 21 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 22 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 23 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 24 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 25 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 26 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
| 27 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 28 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 30 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | * You should have received a copy of the GNU General Public License along |
| 33 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 34 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 35 | */ |
| 36 | #include <linux/kernel.h> |
| 37 | #include <linux/init.h> |
| 38 | #include <linux/delay.h> |
| 39 | #include <linux/platform_device.h> |
| 40 | #include <linux/workqueue.h> |
| 41 | #include <linux/interrupt.h> |
| 42 | #include <linux/err.h> |
| 43 | #include <linux/clk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 45 | |
| 46 | #include <linux/spi/spi.h> |
| 47 | #include <linux/spi/spi_bitbang.h> |
Paul Gortmaker | d7614de | 2011-07-03 15:44:29 -0400 | [diff] [blame] | 48 | #include <linux/module.h> |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 49 | |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 50 | #include <asm/irq.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 51 | #include <mach/hardware.h> |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 52 | #include <asm/io.h> |
| 53 | #include <asm/mach-types.h> |
| 54 | |
Tony Lindgren | 70c494c | 2012-09-19 10:46:56 -0700 | [diff] [blame] | 55 | #include <mach/mux.h> |
Tony Lindgren | 68cb700 | 2012-08-31 17:04:35 -0700 | [diff] [blame] | 56 | |
| 57 | #include <mach/omap7xx.h> /* OMAP7XX_IO_CONF registers */ |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 58 | |
| 59 | |
| 60 | /* FIXME address is now a platform device resource, |
| 61 | * and irqs should show there too... |
| 62 | */ |
| 63 | #define UWIRE_BASE_PHYS 0xFFFB3000 |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 64 | |
| 65 | /* uWire Registers: */ |
| 66 | #define UWIRE_IO_SIZE 0x20 |
| 67 | #define UWIRE_TDR 0x00 |
| 68 | #define UWIRE_RDR 0x00 |
| 69 | #define UWIRE_CSR 0x01 |
| 70 | #define UWIRE_SR1 0x02 |
| 71 | #define UWIRE_SR2 0x03 |
| 72 | #define UWIRE_SR3 0x04 |
| 73 | #define UWIRE_SR4 0x05 |
| 74 | #define UWIRE_SR5 0x06 |
| 75 | |
| 76 | /* CSR bits */ |
| 77 | #define RDRB (1 << 15) |
| 78 | #define CSRB (1 << 14) |
| 79 | #define START (1 << 13) |
| 80 | #define CS_CMD (1 << 12) |
| 81 | |
| 82 | /* SR1 or SR2 bits */ |
| 83 | #define UWIRE_READ_FALLING_EDGE 0x0001 |
| 84 | #define UWIRE_READ_RISING_EDGE 0x0000 |
| 85 | #define UWIRE_WRITE_FALLING_EDGE 0x0000 |
| 86 | #define UWIRE_WRITE_RISING_EDGE 0x0002 |
| 87 | #define UWIRE_CS_ACTIVE_LOW 0x0000 |
| 88 | #define UWIRE_CS_ACTIVE_HIGH 0x0004 |
| 89 | #define UWIRE_FREQ_DIV_2 0x0000 |
| 90 | #define UWIRE_FREQ_DIV_4 0x0008 |
| 91 | #define UWIRE_FREQ_DIV_8 0x0010 |
| 92 | #define UWIRE_CHK_READY 0x0020 |
| 93 | #define UWIRE_CLK_INVERTED 0x0040 |
| 94 | |
| 95 | |
| 96 | struct uwire_spi { |
| 97 | struct spi_bitbang bitbang; |
| 98 | struct clk *ck; |
| 99 | }; |
| 100 | |
| 101 | struct uwire_state { |
| 102 | unsigned bits_per_word; |
| 103 | unsigned div1_idx; |
| 104 | }; |
| 105 | |
| 106 | /* REVISIT compile time constant for idx_shift? */ |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 107 | /* |
| 108 | * Or, put it in a structure which is used throughout the driver; |
| 109 | * that avoids having to issue two loads for each bit of static data. |
| 110 | */ |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 111 | static unsigned int uwire_idx_shift; |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 112 | static void __iomem *uwire_base; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 113 | |
| 114 | static inline void uwire_write_reg(int idx, u16 val) |
| 115 | { |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 116 | __raw_writew(val, uwire_base + (idx << uwire_idx_shift)); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static inline u16 uwire_read_reg(int idx) |
| 120 | { |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 121 | return __raw_readw(uwire_base + (idx << uwire_idx_shift)); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static inline void omap_uwire_configure_mode(u8 cs, unsigned long flags) |
| 125 | { |
| 126 | u16 w, val = 0; |
| 127 | int shift, reg; |
| 128 | |
| 129 | if (flags & UWIRE_CLK_INVERTED) |
| 130 | val ^= 0x03; |
| 131 | val = flags & 0x3f; |
| 132 | if (cs & 1) |
| 133 | shift = 6; |
| 134 | else |
| 135 | shift = 0; |
| 136 | if (cs <= 1) |
| 137 | reg = UWIRE_SR1; |
| 138 | else |
| 139 | reg = UWIRE_SR2; |
| 140 | |
| 141 | w = uwire_read_reg(reg); |
| 142 | w &= ~(0x3f << shift); |
| 143 | w |= val << shift; |
| 144 | uwire_write_reg(reg, w); |
| 145 | } |
| 146 | |
| 147 | static int wait_uwire_csr_flag(u16 mask, u16 val, int might_not_catch) |
| 148 | { |
| 149 | u16 w; |
| 150 | int c = 0; |
| 151 | unsigned long max_jiffies = jiffies + HZ; |
| 152 | |
| 153 | for (;;) { |
| 154 | w = uwire_read_reg(UWIRE_CSR); |
| 155 | if ((w & mask) == val) |
| 156 | break; |
| 157 | if (time_after(jiffies, max_jiffies)) { |
| 158 | printk(KERN_ERR "%s: timeout. reg=%#06x " |
| 159 | "mask=%#06x val=%#06x\n", |
Harvey Harrison | b687d2a | 2008-04-28 02:14:19 -0700 | [diff] [blame] | 160 | __func__, w, mask, val); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 161 | return -1; |
| 162 | } |
| 163 | c++; |
| 164 | if (might_not_catch && c > 64) |
| 165 | break; |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static void uwire_set_clk1_div(int div1_idx) |
| 171 | { |
| 172 | u16 w; |
| 173 | |
| 174 | w = uwire_read_reg(UWIRE_SR3); |
| 175 | w &= ~(0x03 << 1); |
| 176 | w |= div1_idx << 1; |
| 177 | uwire_write_reg(UWIRE_SR3, w); |
| 178 | } |
| 179 | |
| 180 | static void uwire_chipselect(struct spi_device *spi, int value) |
| 181 | { |
| 182 | struct uwire_state *ust = spi->controller_state; |
| 183 | u16 w; |
| 184 | int old_cs; |
| 185 | |
| 186 | |
| 187 | BUG_ON(wait_uwire_csr_flag(CSRB, 0, 0)); |
| 188 | |
| 189 | w = uwire_read_reg(UWIRE_CSR); |
| 190 | old_cs = (w >> 10) & 0x03; |
| 191 | if (value == BITBANG_CS_INACTIVE || old_cs != spi->chip_select) { |
| 192 | /* Deselect this CS, or the previous CS */ |
| 193 | w &= ~CS_CMD; |
| 194 | uwire_write_reg(UWIRE_CSR, w); |
| 195 | } |
| 196 | /* activate specfied chipselect */ |
| 197 | if (value == BITBANG_CS_ACTIVE) { |
| 198 | uwire_set_clk1_div(ust->div1_idx); |
| 199 | /* invert clock? */ |
| 200 | if (spi->mode & SPI_CPOL) |
| 201 | uwire_write_reg(UWIRE_SR4, 1); |
| 202 | else |
| 203 | uwire_write_reg(UWIRE_SR4, 0); |
| 204 | |
| 205 | w = spi->chip_select << 10; |
| 206 | w |= CS_CMD; |
| 207 | uwire_write_reg(UWIRE_CSR, w); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | static int uwire_txrx(struct spi_device *spi, struct spi_transfer *t) |
| 212 | { |
| 213 | struct uwire_state *ust = spi->controller_state; |
| 214 | unsigned len = t->len; |
| 215 | unsigned bits = ust->bits_per_word; |
| 216 | unsigned bytes; |
| 217 | u16 val, w; |
Joe Perches | a419aef | 2009-08-18 11:18:35 -0700 | [diff] [blame] | 218 | int status = 0; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 219 | |
| 220 | if (!t->tx_buf && !t->rx_buf) |
| 221 | return 0; |
| 222 | |
| 223 | /* Microwire doesn't read and write concurrently */ |
| 224 | if (t->tx_buf && t->rx_buf) |
| 225 | return -EPERM; |
| 226 | |
| 227 | w = spi->chip_select << 10; |
| 228 | w |= CS_CMD; |
| 229 | |
| 230 | if (t->tx_buf) { |
| 231 | const u8 *buf = t->tx_buf; |
| 232 | |
| 233 | /* NOTE: DMA could be used for TX transfers */ |
| 234 | |
| 235 | /* write one or two bytes at a time */ |
| 236 | while (len >= 1) { |
| 237 | /* tx bit 15 is first sent; we byteswap multibyte words |
| 238 | * (msb-first) on the way out from memory. |
| 239 | */ |
| 240 | val = *buf++; |
| 241 | if (bits > 8) { |
| 242 | bytes = 2; |
| 243 | val |= *buf++ << 8; |
| 244 | } else |
| 245 | bytes = 1; |
| 246 | val <<= 16 - bits; |
| 247 | |
| 248 | #ifdef VERBOSE |
| 249 | pr_debug("%s: write-%d =%04x\n", |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 250 | dev_name(&spi->dev), bits, val); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 251 | #endif |
| 252 | if (wait_uwire_csr_flag(CSRB, 0, 0)) |
| 253 | goto eio; |
| 254 | |
| 255 | uwire_write_reg(UWIRE_TDR, val); |
| 256 | |
| 257 | /* start write */ |
| 258 | val = START | w | (bits << 5); |
| 259 | |
| 260 | uwire_write_reg(UWIRE_CSR, val); |
| 261 | len -= bytes; |
| 262 | |
| 263 | /* Wait till write actually starts. |
| 264 | * This is needed with MPU clock 60+ MHz. |
| 265 | * REVISIT: we may not have time to catch it... |
| 266 | */ |
| 267 | if (wait_uwire_csr_flag(CSRB, CSRB, 1)) |
| 268 | goto eio; |
| 269 | |
| 270 | status += bytes; |
| 271 | } |
| 272 | |
| 273 | /* REVISIT: save this for later to get more i/o overlap */ |
| 274 | if (wait_uwire_csr_flag(CSRB, 0, 0)) |
| 275 | goto eio; |
| 276 | |
| 277 | } else if (t->rx_buf) { |
| 278 | u8 *buf = t->rx_buf; |
| 279 | |
| 280 | /* read one or two bytes at a time */ |
| 281 | while (len) { |
| 282 | if (bits > 8) { |
| 283 | bytes = 2; |
| 284 | } else |
| 285 | bytes = 1; |
| 286 | |
| 287 | /* start read */ |
| 288 | val = START | w | (bits << 0); |
| 289 | uwire_write_reg(UWIRE_CSR, val); |
| 290 | len -= bytes; |
| 291 | |
| 292 | /* Wait till read actually starts */ |
| 293 | (void) wait_uwire_csr_flag(CSRB, CSRB, 1); |
| 294 | |
| 295 | if (wait_uwire_csr_flag(RDRB | CSRB, |
| 296 | RDRB, 0)) |
| 297 | goto eio; |
| 298 | |
| 299 | /* rx bit 0 is last received; multibyte words will |
| 300 | * be properly byteswapped on the way to memory. |
| 301 | */ |
| 302 | val = uwire_read_reg(UWIRE_RDR); |
| 303 | val &= (1 << bits) - 1; |
| 304 | *buf++ = (u8) val; |
| 305 | if (bytes == 2) |
| 306 | *buf++ = val >> 8; |
| 307 | status += bytes; |
| 308 | #ifdef VERBOSE |
| 309 | pr_debug("%s: read-%d =%04x\n", |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 310 | dev_name(&spi->dev), bits, val); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 311 | #endif |
| 312 | |
| 313 | } |
| 314 | } |
| 315 | return status; |
| 316 | eio: |
| 317 | return -EIO; |
| 318 | } |
| 319 | |
| 320 | static int uwire_setup_transfer(struct spi_device *spi, struct spi_transfer *t) |
| 321 | { |
| 322 | struct uwire_state *ust = spi->controller_state; |
| 323 | struct uwire_spi *uwire; |
| 324 | unsigned flags = 0; |
| 325 | unsigned bits; |
| 326 | unsigned hz; |
| 327 | unsigned long rate; |
| 328 | int div1_idx; |
| 329 | int div1; |
| 330 | int div2; |
| 331 | int status; |
| 332 | |
| 333 | uwire = spi_master_get_devdata(spi->master); |
| 334 | |
| 335 | if (spi->chip_select > 3) { |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 336 | pr_debug("%s: cs%d?\n", dev_name(&spi->dev), spi->chip_select); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 337 | status = -ENODEV; |
| 338 | goto done; |
| 339 | } |
| 340 | |
| 341 | bits = spi->bits_per_word; |
| 342 | if (t != NULL && t->bits_per_word) |
| 343 | bits = t->bits_per_word; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 344 | |
| 345 | if (bits > 16) { |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 346 | pr_debug("%s: wordsize %d?\n", dev_name(&spi->dev), bits); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 347 | status = -ENODEV; |
| 348 | goto done; |
| 349 | } |
| 350 | ust->bits_per_word = bits; |
| 351 | |
| 352 | /* mode 0..3, clock inverted separately; |
| 353 | * standard nCS signaling; |
| 354 | * don't treat DI=high as "not ready" |
| 355 | */ |
| 356 | if (spi->mode & SPI_CS_HIGH) |
| 357 | flags |= UWIRE_CS_ACTIVE_HIGH; |
| 358 | |
| 359 | if (spi->mode & SPI_CPOL) |
| 360 | flags |= UWIRE_CLK_INVERTED; |
| 361 | |
| 362 | switch (spi->mode & (SPI_CPOL | SPI_CPHA)) { |
| 363 | case SPI_MODE_0: |
| 364 | case SPI_MODE_3: |
Imre Deak | e5f1b19 | 2007-05-23 13:58:20 -0700 | [diff] [blame] | 365 | flags |= UWIRE_WRITE_FALLING_EDGE | UWIRE_READ_RISING_EDGE; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 366 | break; |
| 367 | case SPI_MODE_1: |
| 368 | case SPI_MODE_2: |
Imre Deak | e5f1b19 | 2007-05-23 13:58:20 -0700 | [diff] [blame] | 369 | flags |= UWIRE_WRITE_RISING_EDGE | UWIRE_READ_FALLING_EDGE; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 370 | break; |
| 371 | } |
| 372 | |
| 373 | /* assume it's already enabled */ |
| 374 | rate = clk_get_rate(uwire->ck); |
| 375 | |
| 376 | hz = spi->max_speed_hz; |
| 377 | if (t != NULL && t->speed_hz) |
| 378 | hz = t->speed_hz; |
| 379 | |
| 380 | if (!hz) { |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 381 | pr_debug("%s: zero speed?\n", dev_name(&spi->dev)); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 382 | status = -EINVAL; |
| 383 | goto done; |
| 384 | } |
| 385 | |
| 386 | /* F_INT = mpu_xor_clk / DIV1 */ |
| 387 | for (div1_idx = 0; div1_idx < 4; div1_idx++) { |
| 388 | switch (div1_idx) { |
| 389 | case 0: |
| 390 | div1 = 2; |
| 391 | break; |
| 392 | case 1: |
| 393 | div1 = 4; |
| 394 | break; |
| 395 | case 2: |
| 396 | div1 = 7; |
| 397 | break; |
| 398 | default: |
| 399 | case 3: |
| 400 | div1 = 10; |
| 401 | break; |
| 402 | } |
| 403 | div2 = (rate / div1 + hz - 1) / hz; |
| 404 | if (div2 <= 8) |
| 405 | break; |
| 406 | } |
| 407 | if (div1_idx == 4) { |
| 408 | pr_debug("%s: lowest clock %ld, need %d\n", |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 409 | dev_name(&spi->dev), rate / 10 / 8, hz); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 410 | status = -EDOM; |
| 411 | goto done; |
| 412 | } |
| 413 | |
| 414 | /* we have to cache this and reset in uwire_chipselect as this is a |
| 415 | * global parameter and another uwire device can change it under |
| 416 | * us */ |
| 417 | ust->div1_idx = div1_idx; |
| 418 | uwire_set_clk1_div(div1_idx); |
| 419 | |
| 420 | rate /= div1; |
| 421 | |
| 422 | switch (div2) { |
| 423 | case 0: |
| 424 | case 1: |
| 425 | case 2: |
| 426 | flags |= UWIRE_FREQ_DIV_2; |
| 427 | rate /= 2; |
| 428 | break; |
| 429 | case 3: |
| 430 | case 4: |
| 431 | flags |= UWIRE_FREQ_DIV_4; |
| 432 | rate /= 4; |
| 433 | break; |
| 434 | case 5: |
| 435 | case 6: |
| 436 | case 7: |
| 437 | case 8: |
| 438 | flags |= UWIRE_FREQ_DIV_8; |
| 439 | rate /= 8; |
| 440 | break; |
| 441 | } |
| 442 | omap_uwire_configure_mode(spi->chip_select, flags); |
| 443 | pr_debug("%s: uwire flags %02x, armxor %lu KHz, SCK %lu KHz\n", |
Harvey Harrison | b687d2a | 2008-04-28 02:14:19 -0700 | [diff] [blame] | 444 | __func__, flags, |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 445 | clk_get_rate(uwire->ck) / 1000, |
| 446 | rate / 1000); |
| 447 | status = 0; |
| 448 | done: |
| 449 | return status; |
| 450 | } |
| 451 | |
| 452 | static int uwire_setup(struct spi_device *spi) |
| 453 | { |
| 454 | struct uwire_state *ust = spi->controller_state; |
| 455 | |
| 456 | if (ust == NULL) { |
| 457 | ust = kzalloc(sizeof(*ust), GFP_KERNEL); |
| 458 | if (ust == NULL) |
| 459 | return -ENOMEM; |
| 460 | spi->controller_state = ust; |
| 461 | } |
| 462 | |
| 463 | return uwire_setup_transfer(spi, NULL); |
| 464 | } |
| 465 | |
David Brownell | bb2d1c3 | 2007-02-20 13:58:19 -0800 | [diff] [blame] | 466 | static void uwire_cleanup(struct spi_device *spi) |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 467 | { |
| 468 | kfree(spi->controller_state); |
| 469 | } |
| 470 | |
| 471 | static void uwire_off(struct uwire_spi *uwire) |
| 472 | { |
| 473 | uwire_write_reg(UWIRE_SR3, 0); |
| 474 | clk_disable(uwire->ck); |
| 475 | clk_put(uwire->ck); |
| 476 | spi_master_put(uwire->bitbang.master); |
| 477 | } |
| 478 | |
Grant Likely | 2deff8d | 2013-02-05 13:27:35 +0000 | [diff] [blame] | 479 | static int uwire_probe(struct platform_device *pdev) |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 480 | { |
| 481 | struct spi_master *master; |
| 482 | struct uwire_spi *uwire; |
| 483 | int status; |
| 484 | |
| 485 | master = spi_alloc_master(&pdev->dev, sizeof *uwire); |
| 486 | if (!master) |
| 487 | return -ENODEV; |
| 488 | |
| 489 | uwire = spi_master_get_devdata(master); |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 490 | |
| 491 | uwire_base = ioremap(UWIRE_BASE_PHYS, UWIRE_IO_SIZE); |
| 492 | if (!uwire_base) { |
| 493 | dev_dbg(&pdev->dev, "can't ioremap UWIRE\n"); |
| 494 | spi_master_put(master); |
| 495 | return -ENOMEM; |
| 496 | } |
| 497 | |
Jingoo Han | 24b5a82 | 2013-05-23 19:20:40 +0900 | [diff] [blame] | 498 | platform_set_drvdata(pdev, uwire); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 499 | |
Russell King | b1ad379 | 2009-01-22 19:41:20 +0000 | [diff] [blame] | 500 | uwire->ck = clk_get(&pdev->dev, "fck"); |
| 501 | if (IS_ERR(uwire->ck)) { |
| 502 | status = PTR_ERR(uwire->ck); |
| 503 | dev_dbg(&pdev->dev, "no functional clock?\n"); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 504 | spi_master_put(master); |
Russell King | b1ad379 | 2009-01-22 19:41:20 +0000 | [diff] [blame] | 505 | return status; |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 506 | } |
| 507 | clk_enable(uwire->ck); |
| 508 | |
Alistair Buxton | 7a8f48f | 2009-09-22 10:04:51 +0100 | [diff] [blame] | 509 | if (cpu_is_omap7xx()) |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 510 | uwire_idx_shift = 1; |
| 511 | else |
| 512 | uwire_idx_shift = 2; |
| 513 | |
| 514 | uwire_write_reg(UWIRE_SR3, 1); |
| 515 | |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 516 | /* the spi->mode bits understood by this driver: */ |
| 517 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH; |
| 518 | |
David Brownell | 70d6027 | 2009-06-30 11:41:27 -0700 | [diff] [blame] | 519 | master->flags = SPI_MASTER_HALF_DUPLEX; |
| 520 | |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 521 | master->bus_num = 2; /* "official" */ |
| 522 | master->num_chipselect = 4; |
| 523 | master->setup = uwire_setup; |
| 524 | master->cleanup = uwire_cleanup; |
| 525 | |
| 526 | uwire->bitbang.master = master; |
| 527 | uwire->bitbang.chipselect = uwire_chipselect; |
| 528 | uwire->bitbang.setup_transfer = uwire_setup_transfer; |
| 529 | uwire->bitbang.txrx_bufs = uwire_txrx; |
| 530 | |
| 531 | status = spi_bitbang_start(&uwire->bitbang); |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 532 | if (status < 0) { |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 533 | uwire_off(uwire); |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 534 | iounmap(uwire_base); |
| 535 | } |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 536 | return status; |
| 537 | } |
| 538 | |
Grant Likely | 2deff8d | 2013-02-05 13:27:35 +0000 | [diff] [blame] | 539 | static int uwire_remove(struct platform_device *pdev) |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 540 | { |
Jingoo Han | 24b5a82 | 2013-05-23 19:20:40 +0900 | [diff] [blame] | 541 | struct uwire_spi *uwire = platform_get_drvdata(pdev); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 542 | int status; |
| 543 | |
| 544 | // FIXME remove all child devices, somewhere ... |
| 545 | |
| 546 | status = spi_bitbang_stop(&uwire->bitbang); |
| 547 | uwire_off(uwire); |
Russell King | 55c381e | 2008-09-04 14:07:22 +0100 | [diff] [blame] | 548 | iounmap(uwire_base); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 549 | return status; |
| 550 | } |
| 551 | |
Kay Sievers | 7e38c3c | 2008-04-10 21:29:20 -0700 | [diff] [blame] | 552 | /* work with hotplug and coldplug */ |
| 553 | MODULE_ALIAS("platform:omap_uwire"); |
| 554 | |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 555 | static struct platform_driver uwire_driver = { |
| 556 | .driver = { |
| 557 | .name = "omap_uwire", |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 558 | .owner = THIS_MODULE, |
| 559 | }, |
Grant Likely | 2deff8d | 2013-02-05 13:27:35 +0000 | [diff] [blame] | 560 | .remove = uwire_remove, |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 561 | // suspend ... unuse ck |
| 562 | // resume ... use ck |
| 563 | }; |
| 564 | |
| 565 | static int __init omap_uwire_init(void) |
| 566 | { |
| 567 | /* FIXME move these into the relevant board init code. also, include |
| 568 | * H3 support; it uses tsc2101 like H2 (on a different chipselect). |
| 569 | */ |
| 570 | |
| 571 | if (machine_is_omap_h2()) { |
| 572 | /* defaults: W21 SDO, U18 SDI, V19 SCL */ |
| 573 | omap_cfg_reg(N14_1610_UWIRE_CS0); |
| 574 | omap_cfg_reg(N15_1610_UWIRE_CS1); |
| 575 | } |
| 576 | if (machine_is_omap_perseus2()) { |
| 577 | /* configure pins: MPU_UW_nSCS1, MPU_UW_SDO, MPU_UW_SCLK */ |
Alistair Buxton | 7a8f48f | 2009-09-22 10:04:51 +0100 | [diff] [blame] | 578 | int val = omap_readl(OMAP7XX_IO_CONF_9) & ~0x00EEE000; |
| 579 | omap_writel(val | 0x00AAA000, OMAP7XX_IO_CONF_9); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 580 | } |
| 581 | |
David Brownell | d1e44d9 | 2007-10-16 01:27:46 -0700 | [diff] [blame] | 582 | return platform_driver_probe(&uwire_driver, uwire_probe); |
David Brownell | fdb3c18 | 2007-02-12 00:52:37 -0800 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | static void __exit omap_uwire_exit(void) |
| 586 | { |
| 587 | platform_driver_unregister(&uwire_driver); |
| 588 | } |
| 589 | |
| 590 | subsys_initcall(omap_uwire_init); |
| 591 | module_exit(omap_uwire_exit); |
| 592 | |
| 593 | MODULE_LICENSE("GPL"); |
| 594 | |