jianwei.yang | 44318fe | 2010-06-30 17:57:12 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * max3107.c - spi uart protocol driver for Maxim 3107 |
| 3 | * Based on max3100.c |
| 4 | * by Christian Pellegrin <chripell@evolware.org> |
| 5 | * and max3110.c |
| 6 | * by Feng Tang <feng.tang@intel.com> |
| 7 | * |
| 8 | * Copyright (C) Aavamobile 2009 |
| 9 | * |
| 10 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by |
| 14 | * the Free Software Foundation; either version 2 of the License, or |
| 15 | * (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 25 | * |
| 26 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 27 | * |
| 28 | */ |
| 29 | |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/device.h> |
| 32 | #include <linux/serial_core.h> |
| 33 | #include <linux/serial.h> |
| 34 | #include <linux/spi/spi.h> |
| 35 | #include <linux/freezer.h> |
| 36 | #include <linux/platform_device.h> |
| 37 | #include <linux/gpio.h> |
| 38 | #include <linux/sfi.h> |
| 39 | #include <asm/mrst.h> |
| 40 | #include "max3107.h" |
| 41 | |
| 42 | struct baud_table { |
| 43 | int baud; |
| 44 | u32 new_brg; |
| 45 | }; |
| 46 | |
| 47 | struct max3107_port { |
| 48 | /* UART port structure */ |
| 49 | struct uart_port port; |
| 50 | |
| 51 | /* SPI device structure */ |
| 52 | struct spi_device *spi; |
| 53 | |
| 54 | /* GPIO chip stucture */ |
| 55 | struct gpio_chip chip; |
| 56 | |
| 57 | /* Workqueue that does all the magic */ |
| 58 | struct workqueue_struct *workqueue; |
| 59 | struct work_struct work; |
| 60 | |
| 61 | /* Lock for shared data */ |
| 62 | spinlock_t data_lock; |
| 63 | |
| 64 | /* Device configuration */ |
| 65 | int ext_clk; /* 1 if external clock used */ |
| 66 | int loopback; /* Current loopback mode state */ |
| 67 | int baud; /* Current baud rate */ |
| 68 | |
| 69 | /* State flags */ |
| 70 | int suspended; /* Indicates suspend mode */ |
| 71 | int tx_fifo_empty; /* Flag for TX FIFO state */ |
| 72 | int rx_enabled; /* Flag for receiver state */ |
| 73 | int tx_enabled; /* Flag for transmitter state */ |
| 74 | |
| 75 | u16 irqen_reg; /* Current IRQ enable register value */ |
| 76 | /* Shared data */ |
| 77 | u16 mode1_reg; /* Current mode1 register value*/ |
| 78 | int mode1_commit; /* Flag for setting new mode1 register value */ |
| 79 | u16 lcr_reg; /* Current LCR register value */ |
| 80 | int lcr_commit; /* Flag for setting new LCR register value */ |
| 81 | u32 brg_cfg; /* Current Baud rate generator config */ |
| 82 | int brg_commit; /* Flag for setting new baud rate generator |
| 83 | * config |
| 84 | */ |
| 85 | struct baud_table *baud_tbl; |
| 86 | int handle_irq; /* Indicates that IRQ should be handled */ |
| 87 | |
| 88 | /* Rx buffer and str*/ |
| 89 | u16 *rxbuf; |
| 90 | u8 *rxstr; |
| 91 | /* Tx buffer*/ |
| 92 | u16 *txbuf; |
| 93 | }; |
| 94 | |
| 95 | /* Platform data structure */ |
| 96 | struct max3107_plat { |
| 97 | /* Loopback mode enable */ |
| 98 | int loopback; |
| 99 | /* External clock enable */ |
| 100 | int ext_clk; |
| 101 | /* HW suspend function */ |
| 102 | void (*max3107_hw_suspend) (struct max3107_port *s, int suspend); |
| 103 | /* Polling mode enable */ |
| 104 | int polled_mode; |
| 105 | /* Polling period if polling mode enabled */ |
| 106 | int poll_time; |
| 107 | }; |
| 108 | |
| 109 | static struct baud_table brg13_ext[] = { |
| 110 | { 300, MAX3107_BRG13_B300 }, |
| 111 | { 600, MAX3107_BRG13_B600 }, |
| 112 | { 1200, MAX3107_BRG13_B1200 }, |
| 113 | { 2400, MAX3107_BRG13_B2400 }, |
| 114 | { 4800, MAX3107_BRG13_B4800 }, |
| 115 | { 9600, MAX3107_BRG13_B9600 }, |
| 116 | { 19200, MAX3107_BRG13_B19200 }, |
| 117 | { 57600, MAX3107_BRG13_B57600 }, |
| 118 | { 115200, MAX3107_BRG13_B115200 }, |
| 119 | { 230400, MAX3107_BRG13_B230400 }, |
| 120 | { 460800, MAX3107_BRG13_B460800 }, |
| 121 | { 921600, MAX3107_BRG13_B921600 }, |
| 122 | { 0, 0 } |
| 123 | }; |
| 124 | |
| 125 | static struct baud_table brg26_ext[] = { |
| 126 | { 300, MAX3107_BRG26_B300 }, |
| 127 | { 600, MAX3107_BRG26_B600 }, |
| 128 | { 1200, MAX3107_BRG26_B1200 }, |
| 129 | { 2400, MAX3107_BRG26_B2400 }, |
| 130 | { 4800, MAX3107_BRG26_B4800 }, |
| 131 | { 9600, MAX3107_BRG26_B9600 }, |
| 132 | { 19200, MAX3107_BRG26_B19200 }, |
| 133 | { 57600, MAX3107_BRG26_B57600 }, |
| 134 | { 115200, MAX3107_BRG26_B115200 }, |
| 135 | { 230400, MAX3107_BRG26_B230400 }, |
| 136 | { 460800, MAX3107_BRG26_B460800 }, |
| 137 | { 921600, MAX3107_BRG26_B921600 }, |
| 138 | { 0, 0 } |
| 139 | }; |
| 140 | |
| 141 | static struct baud_table brg13_int[] = { |
| 142 | { 300, MAX3107_BRG13_IB300 }, |
| 143 | { 600, MAX3107_BRG13_IB600 }, |
| 144 | { 1200, MAX3107_BRG13_IB1200 }, |
| 145 | { 2400, MAX3107_BRG13_IB2400 }, |
| 146 | { 4800, MAX3107_BRG13_IB4800 }, |
| 147 | { 9600, MAX3107_BRG13_IB9600 }, |
| 148 | { 19200, MAX3107_BRG13_IB19200 }, |
| 149 | { 57600, MAX3107_BRG13_IB57600 }, |
| 150 | { 115200, MAX3107_BRG13_IB115200 }, |
| 151 | { 230400, MAX3107_BRG13_IB230400 }, |
| 152 | { 460800, MAX3107_BRG13_IB460800 }, |
| 153 | { 921600, MAX3107_BRG13_IB921600 }, |
| 154 | { 0, 0 } |
| 155 | }; |
| 156 | |
| 157 | static u32 get_new_brg(int baud, struct max3107_port *s) |
| 158 | { |
| 159 | int i; |
| 160 | struct baud_table *baud_tbl = s->baud_tbl; |
| 161 | |
| 162 | for (i = 0; i < 13; i++) { |
| 163 | if (baud == baud_tbl[i].baud) |
| 164 | return baud_tbl[i].new_brg; |
| 165 | } |
| 166 | |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | /* Perform SPI transfer for write/read of device register(s) */ |
| 171 | static int max3107_rw(struct max3107_port *s, u8 *tx, u8 *rx, int len) |
| 172 | { |
| 173 | struct spi_message spi_msg; |
| 174 | struct spi_transfer spi_xfer; |
| 175 | |
| 176 | /* Initialize SPI ,message */ |
| 177 | spi_message_init(&spi_msg); |
| 178 | |
| 179 | /* Initialize SPI transfer */ |
| 180 | memset(&spi_xfer, 0, sizeof spi_xfer); |
| 181 | spi_xfer.len = len; |
| 182 | spi_xfer.tx_buf = tx; |
| 183 | spi_xfer.rx_buf = rx; |
| 184 | spi_xfer.speed_hz = MAX3107_SPI_SPEED; |
| 185 | |
| 186 | /* Add SPI transfer to SPI message */ |
| 187 | spi_message_add_tail(&spi_xfer, &spi_msg); |
| 188 | |
| 189 | #ifdef DBG_TRACE_SPI_DATA |
| 190 | { |
| 191 | int i; |
| 192 | pr_info("tx len %d:\n", spi_xfer.len); |
| 193 | for (i = 0 ; i < spi_xfer.len && i < 32 ; i++) |
| 194 | pr_info(" %x", ((u8 *)spi_xfer.tx_buf)[i]); |
| 195 | pr_info("\n"); |
| 196 | } |
| 197 | #endif |
| 198 | |
| 199 | /* Perform synchronous SPI transfer */ |
| 200 | if (spi_sync(s->spi, &spi_msg)) { |
| 201 | dev_err(&s->spi->dev, "spi_sync failure\n"); |
| 202 | return -EIO; |
| 203 | } |
| 204 | |
| 205 | #ifdef DBG_TRACE_SPI_DATA |
| 206 | if (spi_xfer.rx_buf) { |
| 207 | int i; |
| 208 | pr_info("rx len %d:\n", spi_xfer.len); |
| 209 | for (i = 0 ; i < spi_xfer.len && i < 32 ; i++) |
| 210 | pr_info(" %x", ((u8 *)spi_xfer.rx_buf)[i]); |
| 211 | pr_info("\n"); |
| 212 | } |
| 213 | #endif |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | /* Puts received data to circular buffer */ |
| 218 | static void put_data_to_circ_buf(struct max3107_port *s, unsigned char *data, |
| 219 | int len) |
| 220 | { |
| 221 | struct uart_port *port = &s->port; |
| 222 | struct tty_struct *tty; |
| 223 | |
| 224 | if (!port->state) |
| 225 | return; |
| 226 | |
| 227 | tty = port->state->port.tty; |
| 228 | if (!tty) |
| 229 | return; |
| 230 | |
| 231 | /* Insert received data */ |
| 232 | tty_insert_flip_string(tty, data, len); |
| 233 | /* Update RX counter */ |
| 234 | port->icount.rx += len; |
| 235 | } |
| 236 | |
| 237 | /* Handle data receiving */ |
| 238 | static void max3107_handlerx(struct max3107_port *s, u16 rxlvl) |
| 239 | { |
| 240 | int i; |
| 241 | int j; |
| 242 | int len; /* SPI transfer buffer length */ |
| 243 | u16 *buf; |
| 244 | u8 *valid_str; |
| 245 | |
| 246 | if (!s->rx_enabled) |
| 247 | /* RX is disabled */ |
| 248 | return; |
| 249 | |
| 250 | if (rxlvl == 0) { |
| 251 | /* RX fifo is empty */ |
| 252 | return; |
| 253 | } else if (rxlvl >= MAX3107_RX_FIFO_SIZE) { |
| 254 | dev_warn(&s->spi->dev, "Possible RX FIFO overrun %d\n", rxlvl); |
| 255 | /* Ensure sanity of RX level */ |
| 256 | rxlvl = MAX3107_RX_FIFO_SIZE; |
| 257 | } |
| 258 | if ((s->rxbuf == 0) || (s->rxstr == 0)) { |
| 259 | dev_warn(&s->spi->dev, "Rx buffer/str isn't ready\n"); |
| 260 | return; |
| 261 | } |
| 262 | buf = s->rxbuf; |
| 263 | valid_str = s->rxstr; |
| 264 | while (rxlvl) { |
| 265 | pr_debug("rxlvl %d\n", rxlvl); |
| 266 | /* Clear buffer */ |
| 267 | memset(buf, 0, sizeof(u16) * (MAX3107_RX_FIFO_SIZE + 2)); |
| 268 | len = 0; |
| 269 | if (s->irqen_reg & MAX3107_IRQ_RXFIFO_BIT) { |
| 270 | /* First disable RX FIFO interrupt */ |
| 271 | pr_debug("Disabling RX INT\n"); |
| 272 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG); |
| 273 | s->irqen_reg &= ~MAX3107_IRQ_RXFIFO_BIT; |
| 274 | buf[0] |= s->irqen_reg; |
| 275 | len++; |
| 276 | } |
| 277 | /* Just increase the length by amount of words in FIFO since |
| 278 | * buffer was zeroed and SPI transfer of 0x0000 means reading |
| 279 | * from RX FIFO |
| 280 | */ |
| 281 | len += rxlvl; |
| 282 | /* Append RX level query */ |
| 283 | buf[len] = MAX3107_RXFIFOLVL_REG; |
| 284 | len++; |
| 285 | |
| 286 | /* Perform the SPI transfer */ |
| 287 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, len * 2)) { |
| 288 | dev_err(&s->spi->dev, "SPI transfer for RX h failed\n"); |
| 289 | return; |
| 290 | } |
| 291 | |
| 292 | /* Skip RX FIFO interrupt disabling word if it was added */ |
| 293 | j = ((len - 1) - rxlvl); |
| 294 | /* Read received words */ |
| 295 | for (i = 0; i < rxlvl; i++, j++) |
| 296 | valid_str[i] = (u8)buf[j]; |
| 297 | put_data_to_circ_buf(s, valid_str, rxlvl); |
| 298 | /* Get new RX level */ |
| 299 | rxlvl = (buf[len - 1] & MAX3107_SPI_RX_DATA_MASK); |
| 300 | } |
| 301 | |
| 302 | if (s->rx_enabled) { |
| 303 | /* RX still enabled, re-enable RX FIFO interrupt */ |
| 304 | pr_debug("Enabling RX INT\n"); |
| 305 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG); |
| 306 | s->irqen_reg |= MAX3107_IRQ_RXFIFO_BIT; |
| 307 | buf[0] |= s->irqen_reg; |
| 308 | if (max3107_rw(s, (u8 *)buf, NULL, 2)) |
| 309 | dev_err(&s->spi->dev, "RX FIFO INT enabling failed\n"); |
| 310 | } |
| 311 | |
| 312 | /* Push the received data to receivers */ |
| 313 | if (s->port.state->port.tty) |
| 314 | tty_flip_buffer_push(s->port.state->port.tty); |
| 315 | } |
| 316 | |
| 317 | |
| 318 | /* Handle data sending */ |
| 319 | static void max3107_handletx(struct max3107_port *s) |
| 320 | { |
| 321 | struct circ_buf *xmit = &s->port.state->xmit; |
| 322 | int i; |
| 323 | unsigned long flags; |
| 324 | int len; /* SPI transfer buffer length */ |
| 325 | u16 *buf; |
| 326 | |
| 327 | if (!s->tx_fifo_empty) |
| 328 | /* Don't send more data before previous data is sent */ |
| 329 | return; |
| 330 | |
| 331 | if (uart_circ_empty(xmit) || uart_tx_stopped(&s->port)) |
| 332 | /* No data to send or TX is stopped */ |
| 333 | return; |
| 334 | |
| 335 | if (!s->txbuf) { |
| 336 | dev_warn(&s->spi->dev, "Txbuf isn't ready\n"); |
| 337 | return; |
| 338 | } |
| 339 | buf = s->txbuf; |
| 340 | /* Get length of data pending in circular buffer */ |
| 341 | len = uart_circ_chars_pending(xmit); |
| 342 | if (len) { |
| 343 | /* Limit to size of TX FIFO */ |
| 344 | if (len > MAX3107_TX_FIFO_SIZE) |
| 345 | len = MAX3107_TX_FIFO_SIZE; |
| 346 | |
| 347 | pr_debug("txlen %d\n", len); |
| 348 | |
| 349 | /* Update TX counter */ |
| 350 | s->port.icount.tx += len; |
| 351 | |
| 352 | /* TX FIFO will no longer be empty */ |
| 353 | s->tx_fifo_empty = 0; |
| 354 | |
| 355 | i = 0; |
| 356 | if (s->irqen_reg & MAX3107_IRQ_TXEMPTY_BIT) { |
| 357 | /* First disable TX empty interrupt */ |
| 358 | pr_debug("Disabling TE INT\n"); |
| 359 | buf[i] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG); |
| 360 | s->irqen_reg &= ~MAX3107_IRQ_TXEMPTY_BIT; |
| 361 | buf[i] |= s->irqen_reg; |
| 362 | i++; |
| 363 | len++; |
| 364 | } |
| 365 | /* Add data to send */ |
| 366 | spin_lock_irqsave(&s->port.lock, flags); |
| 367 | for ( ; i < len ; i++) { |
| 368 | buf[i] = (MAX3107_WRITE_BIT | MAX3107_THR_REG); |
| 369 | buf[i] |= ((u16)xmit->buf[xmit->tail] & |
| 370 | MAX3107_SPI_TX_DATA_MASK); |
| 371 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); |
| 372 | } |
| 373 | spin_unlock_irqrestore(&s->port.lock, flags); |
| 374 | if (!(s->irqen_reg & MAX3107_IRQ_TXEMPTY_BIT)) { |
| 375 | /* Enable TX empty interrupt */ |
| 376 | pr_debug("Enabling TE INT\n"); |
| 377 | buf[i] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG); |
| 378 | s->irqen_reg |= MAX3107_IRQ_TXEMPTY_BIT; |
| 379 | buf[i] |= s->irqen_reg; |
| 380 | i++; |
| 381 | len++; |
| 382 | } |
| 383 | if (!s->tx_enabled) { |
| 384 | /* Enable TX */ |
| 385 | pr_debug("Enable TX\n"); |
| 386 | buf[i] = (MAX3107_WRITE_BIT | MAX3107_MODE1_REG); |
| 387 | spin_lock_irqsave(&s->data_lock, flags); |
| 388 | s->mode1_reg &= ~MAX3107_MODE1_TXDIS_BIT; |
| 389 | buf[i] |= s->mode1_reg; |
| 390 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 391 | s->tx_enabled = 1; |
| 392 | i++; |
| 393 | len++; |
| 394 | } |
| 395 | |
| 396 | /* Perform the SPI transfer */ |
| 397 | if (max3107_rw(s, (u8 *)buf, NULL, len*2)) { |
| 398 | dev_err(&s->spi->dev, |
| 399 | "SPI transfer TX handling failed\n"); |
| 400 | return; |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | /* Indicate wake up if circular buffer is getting low on data */ |
| 405 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) |
| 406 | uart_write_wakeup(&s->port); |
| 407 | |
| 408 | } |
| 409 | |
| 410 | /* Handle interrupts |
| 411 | * Also reads and returns current RX FIFO level |
| 412 | */ |
| 413 | static u16 handle_interrupt(struct max3107_port *s) |
| 414 | { |
| 415 | u16 buf[4]; /* Buffer for SPI transfers */ |
| 416 | u8 irq_status; |
| 417 | u16 rx_level; |
| 418 | unsigned long flags; |
| 419 | |
| 420 | /* Read IRQ status register */ |
| 421 | buf[0] = MAX3107_IRQSTS_REG; |
| 422 | /* Read status IRQ status register */ |
| 423 | buf[1] = MAX3107_STS_IRQSTS_REG; |
| 424 | /* Read LSR IRQ status register */ |
| 425 | buf[2] = MAX3107_LSR_IRQSTS_REG; |
| 426 | /* Query RX level */ |
| 427 | buf[3] = MAX3107_RXFIFOLVL_REG; |
| 428 | |
| 429 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 8)) { |
| 430 | dev_err(&s->spi->dev, |
| 431 | "SPI transfer for INTR handling failed\n"); |
| 432 | return 0; |
| 433 | } |
| 434 | |
| 435 | irq_status = (u8)buf[0]; |
| 436 | pr_debug("IRQSTS %x\n", irq_status); |
| 437 | rx_level = (buf[3] & MAX3107_SPI_RX_DATA_MASK); |
| 438 | |
| 439 | if (irq_status & MAX3107_IRQ_LSR_BIT) { |
| 440 | /* LSR interrupt */ |
| 441 | if (buf[2] & MAX3107_LSR_RXTO_BIT) |
| 442 | /* RX timeout interrupt, |
| 443 | * handled by normal RX handling |
| 444 | */ |
| 445 | pr_debug("RX TO INT\n"); |
| 446 | } |
| 447 | |
| 448 | if (irq_status & MAX3107_IRQ_TXEMPTY_BIT) { |
| 449 | /* Tx empty interrupt, |
| 450 | * disable TX and set tx_fifo_empty flag |
| 451 | */ |
| 452 | pr_debug("TE INT, disabling TX\n"); |
| 453 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_MODE1_REG); |
| 454 | spin_lock_irqsave(&s->data_lock, flags); |
| 455 | s->mode1_reg |= MAX3107_MODE1_TXDIS_BIT; |
| 456 | buf[0] |= s->mode1_reg; |
| 457 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 458 | if (max3107_rw(s, (u8 *)buf, NULL, 2)) |
| 459 | dev_err(&s->spi->dev, "SPI transfer TX dis failed\n"); |
| 460 | s->tx_enabled = 0; |
| 461 | s->tx_fifo_empty = 1; |
| 462 | } |
| 463 | |
| 464 | if (irq_status & MAX3107_IRQ_RXFIFO_BIT) |
| 465 | /* RX FIFO interrupt, |
| 466 | * handled by normal RX handling |
| 467 | */ |
| 468 | pr_debug("RFIFO INT\n"); |
| 469 | |
| 470 | /* Return RX level */ |
| 471 | return rx_level; |
| 472 | } |
| 473 | |
| 474 | /* Trigger work thread*/ |
| 475 | static void max3107_dowork(struct max3107_port *s) |
| 476 | { |
| 477 | if (!work_pending(&s->work) && !freezing(current) && !s->suspended) |
| 478 | queue_work(s->workqueue, &s->work); |
| 479 | else |
| 480 | dev_warn(&s->spi->dev, "interrup isn't serviced normally!\n"); |
| 481 | } |
| 482 | |
| 483 | /* Work thread */ |
| 484 | static void max3107_work(struct work_struct *w) |
| 485 | { |
| 486 | struct max3107_port *s = container_of(w, struct max3107_port, work); |
| 487 | u16 rxlvl = 0; |
| 488 | int len; /* SPI transfer buffer length */ |
| 489 | u16 buf[5]; /* Buffer for SPI transfers */ |
| 490 | unsigned long flags; |
| 491 | |
| 492 | /* Start by reading current RX FIFO level */ |
| 493 | buf[0] = MAX3107_RXFIFOLVL_REG; |
| 494 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 2)) { |
| 495 | dev_err(&s->spi->dev, "SPI transfer RX lev failed\n"); |
| 496 | rxlvl = 0; |
| 497 | } else { |
| 498 | rxlvl = (buf[0] & MAX3107_SPI_RX_DATA_MASK); |
| 499 | } |
| 500 | |
| 501 | do { |
| 502 | pr_debug("rxlvl %d\n", rxlvl); |
| 503 | |
| 504 | /* Handle RX */ |
| 505 | max3107_handlerx(s, rxlvl); |
| 506 | rxlvl = 0; |
| 507 | |
| 508 | if (s->handle_irq) { |
| 509 | /* Handle pending interrupts |
| 510 | * We also get new RX FIFO level since new data may |
| 511 | * have been received while pushing received data to |
| 512 | * receivers |
| 513 | */ |
| 514 | s->handle_irq = 0; |
| 515 | rxlvl = handle_interrupt(s); |
| 516 | } |
| 517 | |
| 518 | /* Handle TX */ |
| 519 | max3107_handletx(s); |
| 520 | |
| 521 | /* Handle configuration changes */ |
| 522 | len = 0; |
| 523 | spin_lock_irqsave(&s->data_lock, flags); |
| 524 | if (s->mode1_commit) { |
| 525 | pr_debug("mode1_commit\n"); |
| 526 | buf[len] = (MAX3107_WRITE_BIT | MAX3107_MODE1_REG); |
| 527 | buf[len++] |= s->mode1_reg; |
| 528 | s->mode1_commit = 0; |
| 529 | } |
| 530 | if (s->lcr_commit) { |
| 531 | pr_debug("lcr_commit\n"); |
| 532 | buf[len] = (MAX3107_WRITE_BIT | MAX3107_LCR_REG); |
| 533 | buf[len++] |= s->lcr_reg; |
| 534 | s->lcr_commit = 0; |
| 535 | } |
| 536 | if (s->brg_commit) { |
| 537 | pr_debug("brg_commit\n"); |
| 538 | buf[len] = (MAX3107_WRITE_BIT | MAX3107_BRGDIVMSB_REG); |
| 539 | buf[len++] |= ((s->brg_cfg >> 16) & |
| 540 | MAX3107_SPI_TX_DATA_MASK); |
| 541 | buf[len] = (MAX3107_WRITE_BIT | MAX3107_BRGDIVLSB_REG); |
| 542 | buf[len++] |= ((s->brg_cfg >> 8) & |
| 543 | MAX3107_SPI_TX_DATA_MASK); |
| 544 | buf[len] = (MAX3107_WRITE_BIT | MAX3107_BRGCFG_REG); |
| 545 | buf[len++] |= ((s->brg_cfg) & 0xff); |
| 546 | s->brg_commit = 0; |
| 547 | } |
| 548 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 549 | |
| 550 | if (len > 0) { |
| 551 | if (max3107_rw(s, (u8 *)buf, NULL, len * 2)) |
| 552 | dev_err(&s->spi->dev, |
| 553 | "SPI transfer config failed\n"); |
| 554 | } |
| 555 | |
| 556 | /* Reloop if interrupt handling indicated data in RX FIFO */ |
| 557 | } while (rxlvl); |
| 558 | |
| 559 | } |
| 560 | |
| 561 | /* Set sleep mode */ |
| 562 | static void max3107_set_sleep(struct max3107_port *s, int mode) |
| 563 | { |
| 564 | u16 buf[1]; /* Buffer for SPI transfer */ |
| 565 | unsigned long flags; |
| 566 | pr_debug("enter, mode %d\n", mode); |
| 567 | |
| 568 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_MODE1_REG); |
| 569 | spin_lock_irqsave(&s->data_lock, flags); |
| 570 | switch (mode) { |
| 571 | case MAX3107_DISABLE_FORCED_SLEEP: |
| 572 | s->mode1_reg &= ~MAX3107_MODE1_FORCESLEEP_BIT; |
| 573 | break; |
| 574 | case MAX3107_ENABLE_FORCED_SLEEP: |
| 575 | s->mode1_reg |= MAX3107_MODE1_FORCESLEEP_BIT; |
| 576 | break; |
| 577 | case MAX3107_DISABLE_AUTOSLEEP: |
| 578 | s->mode1_reg &= ~MAX3107_MODE1_AUTOSLEEP_BIT; |
| 579 | break; |
| 580 | case MAX3107_ENABLE_AUTOSLEEP: |
| 581 | s->mode1_reg |= MAX3107_MODE1_AUTOSLEEP_BIT; |
| 582 | break; |
| 583 | default: |
| 584 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 585 | dev_warn(&s->spi->dev, "invalid sleep mode\n"); |
| 586 | return; |
| 587 | } |
| 588 | buf[0] |= s->mode1_reg; |
| 589 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 590 | |
| 591 | if (max3107_rw(s, (u8 *)buf, NULL, 2)) |
| 592 | dev_err(&s->spi->dev, "SPI transfer sleep mode failed\n"); |
| 593 | |
| 594 | if (mode == MAX3107_DISABLE_AUTOSLEEP || |
| 595 | mode == MAX3107_DISABLE_FORCED_SLEEP) |
| 596 | msleep(MAX3107_WAKEUP_DELAY); |
| 597 | } |
| 598 | |
| 599 | /* Perform full register initialization */ |
| 600 | static void max3107_register_init(struct max3107_port *s) |
| 601 | { |
| 602 | u16 buf[11]; /* Buffer for SPI transfers */ |
| 603 | |
| 604 | /* 1. Configure baud rate, 9600 as default */ |
| 605 | s->baud = 9600; |
| 606 | /* the below is default*/ |
| 607 | if (s->ext_clk) { |
| 608 | s->brg_cfg = MAX3107_BRG26_B9600; |
| 609 | s->baud_tbl = (struct baud_table *)brg26_ext; |
| 610 | } else { |
| 611 | s->brg_cfg = MAX3107_BRG13_IB9600; |
| 612 | s->baud_tbl = (struct baud_table *)brg13_int; |
| 613 | } |
| 614 | #if 0 |
| 615 | /*override for AAVA SC specific*/ |
| 616 | if (mrst_platform_id() == MRST_PLATFORM_AAVA_SC) { |
| 617 | if (get_koski_build_id() <= KOSKI_EV2) |
| 618 | if (s->ext_clk) { |
| 619 | s->brg_cfg = MAX3107_BRG13_B9600; |
| 620 | s->baud_tbl = (struct baud_table *)brg13_ext; |
| 621 | } |
| 622 | } |
| 623 | #endif |
| 624 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_BRGDIVMSB_REG) |
| 625 | | ((s->brg_cfg >> 16) & MAX3107_SPI_TX_DATA_MASK); |
| 626 | buf[1] = (MAX3107_WRITE_BIT | MAX3107_BRGDIVLSB_REG) |
| 627 | | ((s->brg_cfg >> 8) & MAX3107_SPI_TX_DATA_MASK); |
| 628 | buf[2] = (MAX3107_WRITE_BIT | MAX3107_BRGCFG_REG) |
| 629 | | ((s->brg_cfg) & 0xff); |
| 630 | |
| 631 | /* 2. Configure LCR register, 8N1 mode by default */ |
| 632 | s->lcr_reg = MAX3107_LCR_WORD_LEN_8; |
| 633 | buf[3] = (MAX3107_WRITE_BIT | MAX3107_LCR_REG) |
| 634 | | s->lcr_reg; |
| 635 | |
| 636 | /* 3. Configure MODE 1 register */ |
| 637 | s->mode1_reg = 0; |
| 638 | /* Enable IRQ pin */ |
| 639 | s->mode1_reg |= MAX3107_MODE1_IRQSEL_BIT; |
| 640 | /* Disable TX */ |
| 641 | s->mode1_reg |= MAX3107_MODE1_TXDIS_BIT; |
| 642 | s->tx_enabled = 0; |
| 643 | /* RX is enabled */ |
| 644 | s->rx_enabled = 1; |
| 645 | buf[4] = (MAX3107_WRITE_BIT | MAX3107_MODE1_REG) |
| 646 | | s->mode1_reg; |
| 647 | |
| 648 | /* 4. Configure MODE 2 register */ |
| 649 | buf[5] = (MAX3107_WRITE_BIT | MAX3107_MODE2_REG); |
| 650 | if (s->loopback) { |
| 651 | /* Enable loopback */ |
| 652 | buf[5] |= MAX3107_MODE2_LOOPBACK_BIT; |
| 653 | } |
| 654 | /* Reset FIFOs */ |
| 655 | buf[5] |= MAX3107_MODE2_FIFORST_BIT; |
| 656 | s->tx_fifo_empty = 1; |
| 657 | |
| 658 | /* 5. Configure FIFO trigger level register */ |
| 659 | buf[6] = (MAX3107_WRITE_BIT | MAX3107_FIFOTRIGLVL_REG); |
| 660 | /* RX FIFO trigger for 16 words, TX FIFO trigger not used */ |
| 661 | buf[6] |= (MAX3107_FIFOTRIGLVL_RX(16) | MAX3107_FIFOTRIGLVL_TX(0)); |
| 662 | |
| 663 | /* 6. Configure flow control levels */ |
| 664 | buf[7] = (MAX3107_WRITE_BIT | MAX3107_FLOWLVL_REG); |
| 665 | /* Flow control halt level 96, resume level 48 */ |
| 666 | buf[7] |= (MAX3107_FLOWLVL_RES(48) | MAX3107_FLOWLVL_HALT(96)); |
| 667 | |
| 668 | /* 7. Configure flow control */ |
| 669 | buf[8] = (MAX3107_WRITE_BIT | MAX3107_FLOWCTRL_REG); |
| 670 | /* Enable auto CTS and auto RTS flow control */ |
| 671 | buf[8] |= (MAX3107_FLOWCTRL_AUTOCTS_BIT | MAX3107_FLOWCTRL_AUTORTS_BIT); |
| 672 | |
| 673 | /* 8. Configure RX timeout register */ |
| 674 | buf[9] = (MAX3107_WRITE_BIT | MAX3107_RXTO_REG); |
| 675 | /* Timeout after 48 character intervals */ |
| 676 | buf[9] |= 0x0030; |
| 677 | |
| 678 | /* 9. Configure LSR interrupt enable register */ |
| 679 | buf[10] = (MAX3107_WRITE_BIT | MAX3107_LSR_IRQEN_REG); |
| 680 | /* Enable RX timeout interrupt */ |
| 681 | buf[10] |= MAX3107_LSR_RXTO_BIT; |
| 682 | |
| 683 | /* Perform SPI transfer */ |
| 684 | if (max3107_rw(s, (u8 *)buf, NULL, 22)) |
| 685 | dev_err(&s->spi->dev, "SPI transfer for init failed\n"); |
| 686 | |
| 687 | /* 10. Clear IRQ status register by reading it */ |
| 688 | buf[0] = MAX3107_IRQSTS_REG; |
| 689 | |
| 690 | /* 11. Configure interrupt enable register */ |
| 691 | /* Enable LSR interrupt */ |
| 692 | s->irqen_reg = MAX3107_IRQ_LSR_BIT; |
| 693 | /* Enable RX FIFO interrupt */ |
| 694 | s->irqen_reg |= MAX3107_IRQ_RXFIFO_BIT; |
| 695 | buf[1] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG) |
| 696 | | s->irqen_reg; |
| 697 | |
| 698 | /* 12. Clear FIFO reset that was set in step 6 */ |
| 699 | buf[2] = (MAX3107_WRITE_BIT | MAX3107_MODE2_REG); |
| 700 | if (s->loopback) { |
| 701 | /* Keep loopback enabled */ |
| 702 | buf[2] |= MAX3107_MODE2_LOOPBACK_BIT; |
| 703 | } |
| 704 | |
| 705 | /* Perform SPI transfer */ |
| 706 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 6)) |
| 707 | dev_err(&s->spi->dev, "SPI transfer for init failed\n"); |
| 708 | |
| 709 | } |
| 710 | |
| 711 | /* IRQ handler */ |
| 712 | static irqreturn_t max3107_irq(int irqno, void *dev_id) |
| 713 | { |
| 714 | struct max3107_port *s = dev_id; |
| 715 | |
| 716 | if (irqno != s->spi->irq) { |
| 717 | /* Unexpected IRQ */ |
| 718 | return IRQ_NONE; |
| 719 | } |
| 720 | |
| 721 | /* Indicate irq */ |
| 722 | s->handle_irq = 1; |
| 723 | |
| 724 | /* Trigger work thread */ |
| 725 | max3107_dowork(s); |
| 726 | |
| 727 | return IRQ_HANDLED; |
| 728 | } |
| 729 | |
| 730 | /* HW suspension function |
| 731 | * |
| 732 | * Currently autosleep is used to decrease current consumption, alternative |
| 733 | * approach would be to set the chip to reset mode if UART is not being |
| 734 | * used but that would mess the GPIOs |
| 735 | * |
| 736 | */ |
| 737 | static void max3107_hw_susp(struct max3107_port *s, int suspend) |
| 738 | { |
| 739 | pr_debug("enter, suspend %d\n", suspend); |
| 740 | |
| 741 | if (suspend) { |
| 742 | /* Suspend requested, |
| 743 | * enable autosleep to decrease current consumption |
| 744 | */ |
| 745 | s->suspended = 1; |
| 746 | max3107_set_sleep(s, MAX3107_ENABLE_AUTOSLEEP); |
| 747 | } else { |
| 748 | /* Resume requested, |
| 749 | * disable autosleep |
| 750 | */ |
| 751 | s->suspended = 0; |
| 752 | max3107_set_sleep(s, MAX3107_DISABLE_AUTOSLEEP); |
| 753 | } |
| 754 | } |
| 755 | |
| 756 | /* Modem status IRQ enabling */ |
| 757 | static void max3107_enable_ms(struct uart_port *port) |
| 758 | { |
| 759 | /* Modem status not supported */ |
| 760 | } |
| 761 | |
| 762 | /* Data send function */ |
| 763 | static void max3107_start_tx(struct uart_port *port) |
| 764 | { |
| 765 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 766 | |
| 767 | /* Trigger work thread for sending data */ |
| 768 | max3107_dowork(s); |
| 769 | } |
| 770 | |
| 771 | /* Function for checking that there is no pending transfers */ |
| 772 | static unsigned int max3107_tx_empty(struct uart_port *port) |
| 773 | { |
| 774 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 775 | |
| 776 | pr_debug("returning %d\n", |
| 777 | (s->tx_fifo_empty && uart_circ_empty(&s->port.state->xmit))); |
| 778 | return s->tx_fifo_empty && uart_circ_empty(&s->port.state->xmit); |
| 779 | } |
| 780 | |
| 781 | /* Function for stopping RX */ |
| 782 | static void max3107_stop_rx(struct uart_port *port) |
| 783 | { |
| 784 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 785 | unsigned long flags; |
| 786 | |
| 787 | /* Set RX disabled in MODE 1 register */ |
| 788 | spin_lock_irqsave(&s->data_lock, flags); |
| 789 | s->mode1_reg |= MAX3107_MODE1_RXDIS_BIT; |
| 790 | s->mode1_commit = 1; |
| 791 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 792 | /* Set RX disabled */ |
| 793 | s->rx_enabled = 0; |
| 794 | /* Trigger work thread for doing the actual configuration change */ |
| 795 | max3107_dowork(s); |
| 796 | } |
| 797 | |
| 798 | /* Function for returning control pin states */ |
| 799 | static unsigned int max3107_get_mctrl(struct uart_port *port) |
| 800 | { |
| 801 | /* DCD and DSR are not wired and CTS/RTS is handled automatically |
| 802 | * so just indicate DSR and CAR asserted |
| 803 | */ |
| 804 | return TIOCM_DSR | TIOCM_CAR; |
| 805 | } |
| 806 | |
| 807 | /* Function for setting control pin states */ |
| 808 | static void max3107_set_mctrl(struct uart_port *port, unsigned int mctrl) |
| 809 | { |
| 810 | /* DCD and DSR are not wired and CTS/RTS is hadnled automatically |
| 811 | * so do nothing |
| 812 | */ |
| 813 | } |
| 814 | |
| 815 | /* Function for configuring UART parameters */ |
| 816 | static void max3107_set_termios(struct uart_port *port, |
| 817 | struct ktermios *termios, |
| 818 | struct ktermios *old) |
| 819 | { |
| 820 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 821 | struct tty_struct *tty; |
| 822 | int baud; |
| 823 | u16 new_lcr = 0; |
| 824 | u32 new_brg = 0; |
| 825 | unsigned long flags; |
| 826 | |
| 827 | if (!port->state) |
| 828 | return; |
| 829 | |
| 830 | tty = port->state->port.tty; |
| 831 | if (!tty) |
| 832 | return; |
| 833 | |
| 834 | /* Get new LCR register values */ |
| 835 | /* Word size */ |
| 836 | if ((termios->c_cflag & CSIZE) == CS7) |
| 837 | new_lcr |= MAX3107_LCR_WORD_LEN_7; |
| 838 | else |
| 839 | new_lcr |= MAX3107_LCR_WORD_LEN_8; |
| 840 | |
| 841 | /* Parity */ |
| 842 | if (termios->c_cflag & PARENB) { |
| 843 | new_lcr |= MAX3107_LCR_PARITY_BIT; |
| 844 | if (!(termios->c_cflag & PARODD)) |
| 845 | new_lcr |= MAX3107_LCR_EVENPARITY_BIT; |
| 846 | } |
| 847 | |
| 848 | /* Stop bits */ |
| 849 | if (termios->c_cflag & CSTOPB) { |
| 850 | /* 2 stop bits */ |
| 851 | new_lcr |= MAX3107_LCR_STOPLEN_BIT; |
| 852 | } |
| 853 | |
| 854 | /* Mask termios capabilities we don't support */ |
| 855 | termios->c_cflag &= ~CMSPAR; |
| 856 | |
| 857 | /* Set status ignore mask */ |
| 858 | s->port.ignore_status_mask = 0; |
| 859 | if (termios->c_iflag & IGNPAR) |
| 860 | s->port.ignore_status_mask |= MAX3107_ALL_ERRORS; |
| 861 | |
| 862 | /* Set low latency to immediately handle pushed data */ |
| 863 | s->port.state->port.tty->low_latency = 1; |
| 864 | |
| 865 | /* Get new baud rate generator configuration */ |
| 866 | baud = tty_get_baud_rate(tty); |
| 867 | |
| 868 | spin_lock_irqsave(&s->data_lock, flags); |
| 869 | new_brg = get_new_brg(baud, s); |
| 870 | /* if can't find the corrent config, use previous */ |
| 871 | if (!new_brg) { |
| 872 | baud = s->baud; |
| 873 | new_brg = s->brg_cfg; |
| 874 | } |
| 875 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 876 | tty_termios_encode_baud_rate(termios, baud, baud); |
| 877 | s->baud = baud; |
| 878 | |
| 879 | /* Update timeout according to new baud rate */ |
| 880 | uart_update_timeout(port, termios->c_cflag, baud); |
| 881 | |
| 882 | spin_lock_irqsave(&s->data_lock, flags); |
| 883 | if (s->lcr_reg != new_lcr) { |
| 884 | s->lcr_reg = new_lcr; |
| 885 | s->lcr_commit = 1; |
| 886 | } |
| 887 | if (s->brg_cfg != new_brg) { |
| 888 | s->brg_cfg = new_brg; |
| 889 | s->brg_commit = 1; |
| 890 | } |
| 891 | spin_unlock_irqrestore(&s->data_lock, flags); |
| 892 | |
| 893 | /* Trigger work thread for doing the actual configuration change */ |
| 894 | max3107_dowork(s); |
| 895 | } |
| 896 | |
| 897 | /* Port shutdown function */ |
| 898 | static void max3107_shutdown(struct uart_port *port) |
| 899 | { |
| 900 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 901 | |
| 902 | if (s->suspended) { |
| 903 | /* Resume HW */ |
| 904 | max3107_hw_susp(s, 0); |
| 905 | } |
| 906 | |
| 907 | /* Free the interrupt */ |
| 908 | free_irq(s->spi->irq, s); |
| 909 | |
| 910 | if (s->workqueue) { |
| 911 | /* Flush and destroy work queue */ |
| 912 | flush_workqueue(s->workqueue); |
| 913 | destroy_workqueue(s->workqueue); |
| 914 | s->workqueue = NULL; |
| 915 | } |
| 916 | |
| 917 | /* Suspend HW */ |
| 918 | max3107_hw_susp(s, 1); |
| 919 | } |
| 920 | |
| 921 | /* Port startup function */ |
| 922 | static int max3107_startup(struct uart_port *port) |
| 923 | { |
| 924 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 925 | |
| 926 | /* Initialize work queue */ |
| 927 | s->workqueue = create_freezeable_workqueue("max3107"); |
| 928 | if (!s->workqueue) { |
| 929 | dev_err(&s->spi->dev, "Workqueue creation failed\n"); |
| 930 | return -EBUSY; |
| 931 | } |
| 932 | INIT_WORK(&s->work, max3107_work); |
| 933 | |
| 934 | /* Setup IRQ */ |
| 935 | if (request_irq(s->spi->irq, max3107_irq, IRQF_TRIGGER_FALLING, |
| 936 | "max3107", s)) { |
| 937 | dev_err(&s->spi->dev, "IRQ reguest failed\n"); |
| 938 | destroy_workqueue(s->workqueue); |
| 939 | s->workqueue = NULL; |
| 940 | return -EBUSY; |
| 941 | } |
| 942 | |
| 943 | /* Resume HW */ |
| 944 | max3107_hw_susp(s, 0); |
| 945 | |
| 946 | /* Init registers */ |
| 947 | max3107_register_init(s); |
| 948 | |
| 949 | return 0; |
| 950 | } |
| 951 | |
| 952 | /* Port type function */ |
| 953 | static const char *max3107_type(struct uart_port *port) |
| 954 | { |
| 955 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 956 | return s->spi->modalias; |
| 957 | } |
| 958 | |
| 959 | /* Port release function */ |
| 960 | static void max3107_release_port(struct uart_port *port) |
| 961 | { |
| 962 | /* Do nothing */ |
| 963 | } |
| 964 | |
| 965 | /* Port request function */ |
| 966 | static int max3107_request_port(struct uart_port *port) |
| 967 | { |
| 968 | /* Do nothing */ |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | /* Port config function */ |
| 973 | static void max3107_config_port(struct uart_port *port, int flags) |
| 974 | { |
| 975 | struct max3107_port *s = container_of(port, struct max3107_port, port); |
| 976 | |
| 977 | /* Use PORT_MAX3100 since we are at least int the same series */ |
| 978 | s->port.type = PORT_MAX3100; |
| 979 | } |
| 980 | |
| 981 | /* Port verify function */ |
| 982 | static int max3107_verify_port(struct uart_port *port, |
| 983 | struct serial_struct *ser) |
| 984 | { |
| 985 | if (ser->type == PORT_UNKNOWN || ser->type == PORT_MAX3100) |
| 986 | return 0; |
| 987 | |
| 988 | return -EINVAL; |
| 989 | } |
| 990 | |
| 991 | /* Port stop TX function */ |
| 992 | static void max3107_stop_tx(struct uart_port *port) |
| 993 | { |
| 994 | /* Do nothing */ |
| 995 | } |
| 996 | |
| 997 | /* Port break control function */ |
| 998 | static void max3107_break_ctl(struct uart_port *port, int break_state) |
| 999 | { |
| 1000 | /* We don't support break control, do nothing */ |
| 1001 | } |
| 1002 | |
| 1003 | /* GPIO direction to input function */ |
| 1004 | static int max3107_gpio_direction_in(struct gpio_chip *chip, unsigned offset) |
| 1005 | { |
| 1006 | struct max3107_port *s = container_of(chip, struct max3107_port, chip); |
| 1007 | u16 buf[1]; /* Buffer for SPI transfer */ |
| 1008 | |
| 1009 | if (offset >= MAX3107_GPIO_COUNT) { |
| 1010 | dev_err(&s->spi->dev, "Invalid GPIO\n"); |
| 1011 | return -EINVAL; |
| 1012 | } |
| 1013 | |
| 1014 | /* Read current GPIO configuration register */ |
| 1015 | buf[0] = MAX3107_GPIOCFG_REG; |
| 1016 | /* Perform SPI transfer */ |
| 1017 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 2)) { |
| 1018 | dev_err(&s->spi->dev, "SPI transfer GPIO read failed\n"); |
| 1019 | return -EIO; |
| 1020 | } |
| 1021 | buf[0] &= MAX3107_SPI_RX_DATA_MASK; |
| 1022 | |
| 1023 | /* Set GPIO to input */ |
| 1024 | buf[0] &= ~(0x0001 << offset); |
| 1025 | |
| 1026 | /* Write new GPIO configuration register value */ |
| 1027 | buf[0] |= (MAX3107_WRITE_BIT | MAX3107_GPIOCFG_REG); |
| 1028 | /* Perform SPI transfer */ |
| 1029 | if (max3107_rw(s, (u8 *)buf, NULL, 2)) { |
| 1030 | dev_err(&s->spi->dev, "SPI transfer GPIO write failed\n"); |
| 1031 | return -EIO; |
| 1032 | } |
| 1033 | return 0; |
| 1034 | } |
| 1035 | |
| 1036 | /* GPIO direction to output function */ |
| 1037 | static int max3107_gpio_direction_out(struct gpio_chip *chip, unsigned offset, |
| 1038 | int value) |
| 1039 | { |
| 1040 | struct max3107_port *s = container_of(chip, struct max3107_port, chip); |
| 1041 | u16 buf[2]; /* Buffer for SPI transfers */ |
| 1042 | |
| 1043 | if (offset >= MAX3107_GPIO_COUNT) { |
| 1044 | dev_err(&s->spi->dev, "Invalid GPIO\n"); |
| 1045 | return -EINVAL; |
| 1046 | } |
| 1047 | |
| 1048 | /* Read current GPIO configuration and data registers */ |
| 1049 | buf[0] = MAX3107_GPIOCFG_REG; |
| 1050 | buf[1] = MAX3107_GPIODATA_REG; |
| 1051 | /* Perform SPI transfer */ |
| 1052 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 4)) { |
| 1053 | dev_err(&s->spi->dev, "SPI transfer gpio failed\n"); |
| 1054 | return -EIO; |
| 1055 | } |
| 1056 | buf[0] &= MAX3107_SPI_RX_DATA_MASK; |
| 1057 | buf[1] &= MAX3107_SPI_RX_DATA_MASK; |
| 1058 | |
| 1059 | /* Set GPIO to output */ |
| 1060 | buf[0] |= (0x0001 << offset); |
| 1061 | /* Set value */ |
| 1062 | if (value) |
| 1063 | buf[1] |= (0x0001 << offset); |
| 1064 | else |
| 1065 | buf[1] &= ~(0x0001 << offset); |
| 1066 | |
| 1067 | /* Write new GPIO configuration and data register values */ |
| 1068 | buf[0] |= (MAX3107_WRITE_BIT | MAX3107_GPIOCFG_REG); |
| 1069 | buf[1] |= (MAX3107_WRITE_BIT | MAX3107_GPIODATA_REG); |
| 1070 | /* Perform SPI transfer */ |
| 1071 | if (max3107_rw(s, (u8 *)buf, NULL, 4)) { |
| 1072 | dev_err(&s->spi->dev, |
| 1073 | "SPI transfer for GPIO conf data w failed\n"); |
| 1074 | return -EIO; |
| 1075 | } |
| 1076 | return 0; |
| 1077 | } |
| 1078 | |
| 1079 | /* GPIO value query function */ |
| 1080 | static int max3107_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 1081 | { |
| 1082 | struct max3107_port *s = container_of(chip, struct max3107_port, chip); |
| 1083 | u16 buf[1]; /* Buffer for SPI transfer */ |
| 1084 | |
| 1085 | if (offset >= MAX3107_GPIO_COUNT) { |
| 1086 | dev_err(&s->spi->dev, "Invalid GPIO\n"); |
| 1087 | return -EINVAL; |
| 1088 | } |
| 1089 | |
| 1090 | /* Read current GPIO data register */ |
| 1091 | buf[0] = MAX3107_GPIODATA_REG; |
| 1092 | /* Perform SPI transfer */ |
| 1093 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 2)) { |
| 1094 | dev_err(&s->spi->dev, "SPI transfer GPIO data r failed\n"); |
| 1095 | return -EIO; |
| 1096 | } |
| 1097 | buf[0] &= MAX3107_SPI_RX_DATA_MASK; |
| 1098 | |
| 1099 | /* Return value */ |
| 1100 | return buf[0] & (0x0001 << offset); |
| 1101 | } |
| 1102 | |
| 1103 | /* GPIO value set function */ |
| 1104 | static void max3107_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 1105 | { |
| 1106 | struct max3107_port *s = container_of(chip, struct max3107_port, chip); |
| 1107 | u16 buf[2]; /* Buffer for SPI transfers */ |
| 1108 | |
| 1109 | if (offset >= MAX3107_GPIO_COUNT) { |
| 1110 | dev_err(&s->spi->dev, "Invalid GPIO\n"); |
| 1111 | return; |
| 1112 | } |
| 1113 | |
| 1114 | /* Read current GPIO configuration registers*/ |
| 1115 | buf[0] = MAX3107_GPIODATA_REG; |
| 1116 | buf[1] = MAX3107_GPIOCFG_REG; |
| 1117 | /* Perform SPI transfer */ |
| 1118 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 4)) { |
| 1119 | dev_err(&s->spi->dev, |
| 1120 | "SPI transfer for GPIO data and config read failed\n"); |
| 1121 | return; |
| 1122 | } |
| 1123 | buf[0] &= MAX3107_SPI_RX_DATA_MASK; |
| 1124 | buf[1] &= MAX3107_SPI_RX_DATA_MASK; |
| 1125 | |
| 1126 | if (!(buf[1] & (0x0001 << offset))) { |
| 1127 | /* Configured as input, can't set value */ |
| 1128 | dev_warn(&s->spi->dev, |
| 1129 | "Trying to set value for input GPIO\n"); |
| 1130 | return; |
| 1131 | } |
| 1132 | |
| 1133 | /* Set value */ |
| 1134 | if (value) |
| 1135 | buf[0] |= (0x0001 << offset); |
| 1136 | else |
| 1137 | buf[0] &= ~(0x0001 << offset); |
| 1138 | |
| 1139 | /* Write new GPIO data register value */ |
| 1140 | buf[0] |= (MAX3107_WRITE_BIT | MAX3107_GPIODATA_REG); |
| 1141 | /* Perform SPI transfer */ |
| 1142 | if (max3107_rw(s, (u8 *)buf, NULL, 2)) |
| 1143 | dev_err(&s->spi->dev, "SPI transfer GPIO data w failed\n"); |
| 1144 | } |
| 1145 | |
| 1146 | /* Platform data */ |
| 1147 | static struct max3107_plat max3107_plat_data = { |
| 1148 | .loopback = 0, |
| 1149 | .ext_clk = 1, |
| 1150 | .max3107_hw_suspend = &max3107_hw_susp, |
| 1151 | .polled_mode = 0, |
| 1152 | .poll_time = 0, |
| 1153 | }; |
| 1154 | |
| 1155 | /* Port functions */ |
| 1156 | static struct uart_ops max3107_ops = { |
| 1157 | .tx_empty = max3107_tx_empty, |
| 1158 | .set_mctrl = max3107_set_mctrl, |
| 1159 | .get_mctrl = max3107_get_mctrl, |
| 1160 | .stop_tx = max3107_stop_tx, |
| 1161 | .start_tx = max3107_start_tx, |
| 1162 | .stop_rx = max3107_stop_rx, |
| 1163 | .enable_ms = max3107_enable_ms, |
| 1164 | .break_ctl = max3107_break_ctl, |
| 1165 | .startup = max3107_startup, |
| 1166 | .shutdown = max3107_shutdown, |
| 1167 | .set_termios = max3107_set_termios, |
| 1168 | .type = max3107_type, |
| 1169 | .release_port = max3107_release_port, |
| 1170 | .request_port = max3107_request_port, |
| 1171 | .config_port = max3107_config_port, |
| 1172 | .verify_port = max3107_verify_port, |
| 1173 | }; |
| 1174 | |
| 1175 | /* UART driver data */ |
| 1176 | static struct uart_driver max3107_uart_driver = { |
| 1177 | .owner = THIS_MODULE, |
| 1178 | .driver_name = "ttyMAX", |
| 1179 | .dev_name = "ttyMAX", |
| 1180 | .nr = 1, |
| 1181 | }; |
| 1182 | |
| 1183 | /* GPIO chip data */ |
| 1184 | static struct gpio_chip max3107_gpio_chip = { |
| 1185 | .owner = THIS_MODULE, |
| 1186 | .direction_input = max3107_gpio_direction_in, |
| 1187 | .direction_output = max3107_gpio_direction_out, |
| 1188 | .get = max3107_gpio_get, |
| 1189 | .set = max3107_gpio_set, |
| 1190 | .can_sleep = 1, |
| 1191 | .base = MAX3107_GPIO_BASE, |
| 1192 | .ngpio = MAX3107_GPIO_COUNT, |
| 1193 | }; |
| 1194 | /* Device probe function */ |
| 1195 | static int __devinit max3107_probe(struct spi_device *spi) |
| 1196 | { |
| 1197 | struct max3107_port *s; |
| 1198 | struct max3107_plat *pdata = &max3107_plat_data; |
| 1199 | u16 buf[2]; /* Buffer for SPI transfers */ |
| 1200 | int retval; |
| 1201 | |
| 1202 | pr_info("enter max3107 probe\n"); |
| 1203 | |
| 1204 | /* Reset the chip */ |
| 1205 | if (gpio_request(MAX3107_RESET_GPIO, "max3107")) { |
| 1206 | pr_err("Requesting RESET GPIO failed\n"); |
| 1207 | return -EIO; |
| 1208 | } |
| 1209 | if (gpio_direction_output(MAX3107_RESET_GPIO, 0)) { |
| 1210 | pr_err("Setting RESET GPIO to 0 failed\n"); |
| 1211 | gpio_free(MAX3107_RESET_GPIO); |
| 1212 | return -EIO; |
| 1213 | } |
| 1214 | msleep(MAX3107_RESET_DELAY); |
| 1215 | if (gpio_direction_output(MAX3107_RESET_GPIO, 1)) { |
| 1216 | pr_err("Setting RESET GPIO to 1 failed\n"); |
| 1217 | gpio_free(MAX3107_RESET_GPIO); |
| 1218 | return -EIO; |
| 1219 | } |
| 1220 | gpio_free(MAX3107_RESET_GPIO); |
| 1221 | msleep(MAX3107_WAKEUP_DELAY); |
| 1222 | |
| 1223 | /* Allocate port structure */ |
| 1224 | s = kzalloc(sizeof(*s), GFP_KERNEL); |
| 1225 | if (!s) { |
| 1226 | pr_err("Allocating port structure failed\n"); |
| 1227 | return -ENOMEM; |
| 1228 | } |
| 1229 | /* SPI Rx buffer |
| 1230 | * +2 for RX FIFO interrupt |
| 1231 | * disabling and RX level query |
| 1232 | */ |
| 1233 | s->rxbuf = kzalloc(sizeof(u16) * (MAX3107_RX_FIFO_SIZE+2), GFP_KERNEL); |
| 1234 | if (!s->rxbuf) { |
| 1235 | pr_err("Allocating RX buffer failed\n"); |
| 1236 | return -ENOMEM; |
| 1237 | } |
| 1238 | s->rxstr = kzalloc(sizeof(u8) * MAX3107_RX_FIFO_SIZE, GFP_KERNEL); |
| 1239 | if (!s->rxstr) { |
| 1240 | pr_err("Allocating RX buffer failed\n"); |
| 1241 | return -ENOMEM; |
| 1242 | } |
| 1243 | /* SPI Tx buffer |
| 1244 | * SPI transfer buffer |
| 1245 | * +3 for TX FIFO empty |
| 1246 | * interrupt disabling and |
| 1247 | * enabling and TX enabling |
| 1248 | */ |
| 1249 | s->txbuf = kzalloc(sizeof(u16) * MAX3107_TX_FIFO_SIZE + 3, GFP_KERNEL); |
| 1250 | if (!s->txbuf) { |
| 1251 | pr_err("Allocating TX buffer failed\n"); |
| 1252 | return -ENOMEM; |
| 1253 | } |
| 1254 | /* Initialize shared data lock */ |
| 1255 | spin_lock_init(&s->data_lock); |
| 1256 | |
| 1257 | /* SPI intializations */ |
| 1258 | dev_set_drvdata(&spi->dev, s); |
| 1259 | spi->mode = SPI_MODE_0; |
| 1260 | spi->dev.platform_data = pdata; |
| 1261 | spi->bits_per_word = 16; |
| 1262 | s->ext_clk = pdata->ext_clk; |
| 1263 | s->loopback = pdata->loopback; |
| 1264 | spi_setup(spi); |
| 1265 | s->spi = spi; |
| 1266 | |
| 1267 | /* Check REV ID to ensure we are talking to what we expect */ |
| 1268 | buf[0] = MAX3107_REVID_REG; |
| 1269 | if (max3107_rw(s, (u8 *)buf, (u8 *)buf, 2)) { |
| 1270 | dev_err(&s->spi->dev, "SPI transfer for REVID read failed\n"); |
| 1271 | return -EIO; |
| 1272 | } |
| 1273 | if ((buf[0] & MAX3107_SPI_RX_DATA_MASK) != MAX3107_REVID1 && |
| 1274 | (buf[0] & MAX3107_SPI_RX_DATA_MASK) != MAX3107_REVID2) { |
| 1275 | dev_err(&s->spi->dev, "REVID %x does not match\n", |
| 1276 | (buf[0] & MAX3107_SPI_RX_DATA_MASK)); |
| 1277 | return -ENODEV; |
| 1278 | } |
| 1279 | |
| 1280 | /* Disable all interrupts */ |
| 1281 | buf[0] = (MAX3107_WRITE_BIT | MAX3107_IRQEN_REG | 0x0000); |
| 1282 | buf[0] |= 0x0000; |
| 1283 | |
| 1284 | /* Configure clock source */ |
| 1285 | buf[1] = (MAX3107_WRITE_BIT | MAX3107_CLKSRC_REG); |
| 1286 | if (s->ext_clk) { |
| 1287 | /* External clock */ |
| 1288 | buf[1] |= MAX3107_CLKSRC_EXTCLK_BIT; |
| 1289 | } |
| 1290 | |
| 1291 | /* PLL bypass ON */ |
| 1292 | buf[1] |= MAX3107_CLKSRC_PLLBYP_BIT; |
| 1293 | |
| 1294 | /* Perform SPI transfer */ |
| 1295 | if (max3107_rw(s, (u8 *)buf, NULL, 4)) { |
| 1296 | dev_err(&s->spi->dev, "SPI transfer for init failed\n"); |
| 1297 | return -EIO; |
| 1298 | } |
| 1299 | |
| 1300 | /* Register UART driver */ |
| 1301 | retval = uart_register_driver(&max3107_uart_driver); |
| 1302 | if (retval) { |
| 1303 | dev_err(&s->spi->dev, "Registering UART driver failed\n"); |
| 1304 | return retval; |
| 1305 | } |
| 1306 | |
| 1307 | /* Initialize UART port data */ |
| 1308 | s->port.fifosize = 128; |
| 1309 | s->port.ops = &max3107_ops; |
| 1310 | s->port.line = 0; |
| 1311 | s->port.dev = &spi->dev; |
| 1312 | s->port.uartclk = 9600; |
| 1313 | s->port.flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF; |
| 1314 | s->port.irq = s->spi->irq; |
| 1315 | /* Use PORT_MAX3100 since we are at least in the same series */ |
| 1316 | s->port.type = PORT_MAX3100; |
| 1317 | |
| 1318 | /* Add UART port */ |
| 1319 | retval = uart_add_one_port(&max3107_uart_driver, &s->port); |
| 1320 | if (retval < 0) { |
| 1321 | dev_err(&s->spi->dev, "Adding UART port failed\n"); |
| 1322 | return retval; |
| 1323 | } |
| 1324 | |
| 1325 | /* Initialize GPIO chip data */ |
| 1326 | s->chip = max3107_gpio_chip; |
| 1327 | s->chip.label = spi->modalias; |
| 1328 | s->chip.dev = &spi->dev; |
| 1329 | |
| 1330 | /* Add GPIO chip */ |
| 1331 | retval = gpiochip_add(&s->chip); |
| 1332 | if (retval) { |
| 1333 | dev_err(&s->spi->dev, "Adding GPIO chip failed\n"); |
| 1334 | return retval; |
| 1335 | } |
| 1336 | |
| 1337 | /* Temporary fix for EV2 boot problems, set modem reset to 0 */ |
| 1338 | max3107_gpio_direction_out(&s->chip, 3, 0); |
| 1339 | |
| 1340 | /* Go to suspend mode */ |
| 1341 | max3107_hw_susp(s, 1); |
| 1342 | |
| 1343 | return 0; |
| 1344 | } |
| 1345 | |
| 1346 | /* Driver remove function */ |
| 1347 | static int __devexit max3107_remove(struct spi_device *spi) |
| 1348 | { |
| 1349 | struct max3107_port *s = dev_get_drvdata(&spi->dev); |
| 1350 | |
| 1351 | pr_info("enter max3107 remove\n"); |
| 1352 | |
| 1353 | /* Remove GPIO chip */ |
| 1354 | if (gpiochip_remove(&s->chip)) |
| 1355 | dev_warn(&s->spi->dev, "Removing GPIO chip failed\n"); |
| 1356 | |
| 1357 | /* Remove port */ |
| 1358 | if (uart_remove_one_port(&max3107_uart_driver, &s->port)) |
| 1359 | dev_warn(&s->spi->dev, "Removing UART port failed\n"); |
| 1360 | |
| 1361 | /* Unregister UART driver */ |
| 1362 | uart_unregister_driver(&max3107_uart_driver); |
| 1363 | |
| 1364 | /* Free TxRx buffer */ |
| 1365 | kfree(s->rxbuf); |
| 1366 | kfree(s->rxstr); |
| 1367 | kfree(s->txbuf); |
| 1368 | |
| 1369 | /* Free port structure */ |
| 1370 | kfree(s); |
| 1371 | |
| 1372 | return 0; |
| 1373 | } |
| 1374 | |
| 1375 | /* Driver suspend function */ |
| 1376 | static int max3107_suspend(struct spi_device *spi, pm_message_t state) |
| 1377 | { |
| 1378 | #ifdef CONFIG_PM |
| 1379 | struct max3107_port *s = dev_get_drvdata(&spi->dev); |
| 1380 | |
| 1381 | pr_debug("enter suspend\n"); |
| 1382 | |
| 1383 | /* Suspend UART port */ |
| 1384 | uart_suspend_port(&max3107_uart_driver, &s->port); |
| 1385 | |
| 1386 | /* Go to suspend mode */ |
| 1387 | max3107_hw_susp(s, 1); |
| 1388 | #endif /* CONFIG_PM */ |
| 1389 | return 0; |
| 1390 | } |
| 1391 | |
| 1392 | /* Driver resume function */ |
| 1393 | static int max3107_resume(struct spi_device *spi) |
| 1394 | { |
| 1395 | #ifdef CONFIG_PM |
| 1396 | struct max3107_port *s = dev_get_drvdata(&spi->dev); |
| 1397 | |
| 1398 | pr_debug("enter resume\n"); |
| 1399 | |
| 1400 | /* Resume from suspend */ |
| 1401 | max3107_hw_susp(s, 0); |
| 1402 | |
| 1403 | /* Resume UART port */ |
| 1404 | uart_resume_port(&max3107_uart_driver, &s->port); |
| 1405 | #endif /* CONFIG_PM */ |
| 1406 | return 0; |
| 1407 | } |
| 1408 | |
| 1409 | /* Spi driver data */ |
| 1410 | static struct spi_driver max3107_driver = { |
| 1411 | .driver = { |
| 1412 | .name = "max3107", |
| 1413 | .bus = &spi_bus_type, |
| 1414 | .owner = THIS_MODULE, |
| 1415 | }, |
| 1416 | .probe = max3107_probe, |
| 1417 | .remove = __devexit_p(max3107_remove), |
| 1418 | .suspend = max3107_suspend, |
| 1419 | .resume = max3107_resume, |
| 1420 | }; |
| 1421 | |
| 1422 | /* Driver init function */ |
| 1423 | static int __init max3107_init(void) |
| 1424 | { |
| 1425 | pr_info("enter max3107 init\n"); |
| 1426 | return spi_register_driver(&max3107_driver); |
| 1427 | } |
| 1428 | |
| 1429 | /* Driver exit function */ |
| 1430 | static void __exit max3107_exit(void) |
| 1431 | { |
| 1432 | pr_info("enter max3107 exit\n"); |
| 1433 | spi_unregister_driver(&max3107_driver); |
| 1434 | } |
| 1435 | |
| 1436 | module_init(max3107_init); |
| 1437 | module_exit(max3107_exit); |
| 1438 | |
| 1439 | MODULE_DESCRIPTION("MAX3107 driver"); |
| 1440 | MODULE_AUTHOR("Aavamobile"); |
| 1441 | MODULE_ALIAS("max3107-spi-uart"); |
| 1442 | MODULE_LICENSE("GPLv2"); |