0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <linux/circ_buf.h>
0012 #include <linux/tty.h>
0013 #include <linux/ioport.h>
0014 #include <linux/slab.h>
0015 #include <linux/init.h>
0016 #include <linux/serial.h>
0017 #include <linux/clk.h>
0018 #include <linux/console.h>
0019 #include <linux/sysrq.h>
0020 #include <linux/tty_flip.h>
0021 #include <linux/platform_device.h>
0022 #include <linux/of.h>
0023 #include <linux/of_device.h>
0024 #include <linux/dma-mapping.h>
0025 #include <linux/dmaengine.h>
0026 #include <linux/atmel_pdc.h>
0027 #include <linux/uaccess.h>
0028 #include <linux/platform_data/atmel.h>
0029 #include <linux/timer.h>
0030 #include <linux/err.h>
0031 #include <linux/irq.h>
0032 #include <linux/suspend.h>
0033 #include <linux/mm.h>
0034 #include <linux/io.h>
0035
0036 #include <asm/div64.h>
0037 #include <asm/ioctls.h>
0038
0039 #define PDC_BUFFER_SIZE 512
0040
0041 #define PDC_RX_TIMEOUT (3 * 10)
0042
0043
0044 #define ATMEL_MIN_FIFO_SIZE 8
0045
0046
0047
0048
0049 #define ATMEL_RTS_HIGH_OFFSET 16
0050 #define ATMEL_RTS_LOW_OFFSET 20
0051
0052 #include <linux/serial_core.h>
0053
0054 #include "serial_mctrl_gpio.h"
0055 #include "atmel_serial.h"
0056
0057 static void atmel_start_rx(struct uart_port *port);
0058 static void atmel_stop_rx(struct uart_port *port);
0059
0060 #ifdef CONFIG_SERIAL_ATMEL_TTYAT
0061
0062
0063
0064
0065 #define SERIAL_ATMEL_MAJOR 204
0066 #define MINOR_START 154
0067 #define ATMEL_DEVICENAME "ttyAT"
0068
0069 #else
0070
0071
0072
0073 #define SERIAL_ATMEL_MAJOR TTY_MAJOR
0074 #define MINOR_START 64
0075 #define ATMEL_DEVICENAME "ttyS"
0076
0077 #endif
0078
0079 #define ATMEL_ISR_PASS_LIMIT 256
0080
0081 struct atmel_dma_buffer {
0082 unsigned char *buf;
0083 dma_addr_t dma_addr;
0084 unsigned int dma_size;
0085 unsigned int ofs;
0086 };
0087
0088 struct atmel_uart_char {
0089 u16 status;
0090 u16 ch;
0091 };
0092
0093
0094
0095
0096
0097
0098
0099 #define ATMEL_SERIAL_RINGSIZE 1024
0100
0101
0102
0103
0104
0105 #define ATMEL_MAX_UART 8
0106
0107
0108
0109
0110 struct atmel_uart_port {
0111 struct uart_port uart;
0112 struct clk *clk;
0113 int may_wakeup;
0114 u32 backup_imr;
0115 int break_active;
0116
0117 bool use_dma_rx;
0118 bool use_pdc_rx;
0119 short pdc_rx_idx;
0120 struct atmel_dma_buffer pdc_rx[2];
0121
0122 bool use_dma_tx;
0123 bool use_pdc_tx;
0124 struct atmel_dma_buffer pdc_tx;
0125
0126 spinlock_t lock_tx;
0127 spinlock_t lock_rx;
0128 struct dma_chan *chan_tx;
0129 struct dma_chan *chan_rx;
0130 struct dma_async_tx_descriptor *desc_tx;
0131 struct dma_async_tx_descriptor *desc_rx;
0132 dma_cookie_t cookie_tx;
0133 dma_cookie_t cookie_rx;
0134 struct scatterlist sg_tx;
0135 struct scatterlist sg_rx;
0136 struct tasklet_struct tasklet_rx;
0137 struct tasklet_struct tasklet_tx;
0138 atomic_t tasklet_shutdown;
0139 unsigned int irq_status_prev;
0140 unsigned int tx_len;
0141
0142 struct circ_buf rx_ring;
0143
0144 struct mctrl_gpios *gpios;
0145 u32 backup_mode;
0146 u32 backup_brgr;
0147 unsigned int tx_done_mask;
0148 u32 fifo_size;
0149 u32 rts_high;
0150 u32 rts_low;
0151 bool ms_irq_enabled;
0152 u32 rtor;
0153 bool has_frac_baudrate;
0154 bool has_hw_timer;
0155 struct timer_list uart_timer;
0156
0157 bool tx_stopped;
0158 bool suspended;
0159 unsigned int pending;
0160 unsigned int pending_status;
0161 spinlock_t lock_suspended;
0162
0163 bool hd_start_rx;
0164
0165
0166 unsigned int fidi_min;
0167 unsigned int fidi_max;
0168
0169 struct {
0170 u32 cr;
0171 u32 mr;
0172 u32 imr;
0173 u32 brgr;
0174 u32 rtor;
0175 u32 ttgr;
0176 u32 fmr;
0177 u32 fimr;
0178 } cache;
0179
0180 int (*prepare_rx)(struct uart_port *port);
0181 int (*prepare_tx)(struct uart_port *port);
0182 void (*schedule_rx)(struct uart_port *port);
0183 void (*schedule_tx)(struct uart_port *port);
0184 void (*release_rx)(struct uart_port *port);
0185 void (*release_tx)(struct uart_port *port);
0186 };
0187
0188 static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
0189 static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
0190
0191 #if defined(CONFIG_OF)
0192 static const struct of_device_id atmel_serial_dt_ids[] = {
0193 { .compatible = "atmel,at91rm9200-usart-serial" },
0194 { }
0195 };
0196 #endif
0197
0198 static inline struct atmel_uart_port *
0199 to_atmel_uart_port(struct uart_port *uart)
0200 {
0201 return container_of(uart, struct atmel_uart_port, uart);
0202 }
0203
0204 static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg)
0205 {
0206 return __raw_readl(port->membase + reg);
0207 }
0208
0209 static inline void atmel_uart_writel(struct uart_port *port, u32 reg, u32 value)
0210 {
0211 __raw_writel(value, port->membase + reg);
0212 }
0213
0214 static inline u8 atmel_uart_read_char(struct uart_port *port)
0215 {
0216 return __raw_readb(port->membase + ATMEL_US_RHR);
0217 }
0218
0219 static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
0220 {
0221 __raw_writeb(value, port->membase + ATMEL_US_THR);
0222 }
0223
0224 static inline int atmel_uart_is_half_duplex(struct uart_port *port)
0225 {
0226 return ((port->rs485.flags & SER_RS485_ENABLED) &&
0227 !(port->rs485.flags & SER_RS485_RX_DURING_TX)) ||
0228 (port->iso7816.flags & SER_ISO7816_ENABLED);
0229 }
0230
0231 #ifdef CONFIG_SERIAL_ATMEL_PDC
0232 static bool atmel_use_pdc_rx(struct uart_port *port)
0233 {
0234 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0235
0236 return atmel_port->use_pdc_rx;
0237 }
0238
0239 static bool atmel_use_pdc_tx(struct uart_port *port)
0240 {
0241 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0242
0243 return atmel_port->use_pdc_tx;
0244 }
0245 #else
0246 static bool atmel_use_pdc_rx(struct uart_port *port)
0247 {
0248 return false;
0249 }
0250
0251 static bool atmel_use_pdc_tx(struct uart_port *port)
0252 {
0253 return false;
0254 }
0255 #endif
0256
0257 static bool atmel_use_dma_tx(struct uart_port *port)
0258 {
0259 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0260
0261 return atmel_port->use_dma_tx;
0262 }
0263
0264 static bool atmel_use_dma_rx(struct uart_port *port)
0265 {
0266 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0267
0268 return atmel_port->use_dma_rx;
0269 }
0270
0271 static bool atmel_use_fifo(struct uart_port *port)
0272 {
0273 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0274
0275 return atmel_port->fifo_size;
0276 }
0277
0278 static void atmel_tasklet_schedule(struct atmel_uart_port *atmel_port,
0279 struct tasklet_struct *t)
0280 {
0281 if (!atomic_read(&atmel_port->tasklet_shutdown))
0282 tasklet_schedule(t);
0283 }
0284
0285
0286 static int atmel_config_rs485(struct uart_port *port, struct ktermios *termios,
0287 struct serial_rs485 *rs485conf)
0288 {
0289 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0290 unsigned int mode;
0291
0292
0293 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
0294
0295 mode = atmel_uart_readl(port, ATMEL_US_MR);
0296
0297 if (rs485conf->flags & SER_RS485_ENABLED) {
0298 dev_dbg(port->dev, "Setting UART to RS485\n");
0299 if (rs485conf->flags & SER_RS485_RX_DURING_TX)
0300 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
0301 else
0302 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
0303
0304 atmel_uart_writel(port, ATMEL_US_TTGR,
0305 rs485conf->delay_rts_after_send);
0306 mode &= ~ATMEL_US_USMODE;
0307 mode |= ATMEL_US_USMODE_RS485;
0308 } else {
0309 dev_dbg(port->dev, "Setting UART to RS232\n");
0310 if (atmel_use_pdc_tx(port))
0311 atmel_port->tx_done_mask = ATMEL_US_ENDTX |
0312 ATMEL_US_TXBUFE;
0313 else
0314 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
0315 }
0316 atmel_uart_writel(port, ATMEL_US_MR, mode);
0317
0318
0319 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
0320
0321 return 0;
0322 }
0323
0324 static unsigned int atmel_calc_cd(struct uart_port *port,
0325 struct serial_iso7816 *iso7816conf)
0326 {
0327 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0328 unsigned int cd;
0329 u64 mck_rate;
0330
0331 mck_rate = (u64)clk_get_rate(atmel_port->clk);
0332 do_div(mck_rate, iso7816conf->clk);
0333 cd = mck_rate;
0334 return cd;
0335 }
0336
0337 static unsigned int atmel_calc_fidi(struct uart_port *port,
0338 struct serial_iso7816 *iso7816conf)
0339 {
0340 u64 fidi = 0;
0341
0342 if (iso7816conf->sc_fi && iso7816conf->sc_di) {
0343 fidi = (u64)iso7816conf->sc_fi;
0344 do_div(fidi, iso7816conf->sc_di);
0345 }
0346 return (u32)fidi;
0347 }
0348
0349
0350
0351 static int atmel_config_iso7816(struct uart_port *port,
0352 struct serial_iso7816 *iso7816conf)
0353 {
0354 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0355 unsigned int mode;
0356 unsigned int cd, fidi;
0357 int ret = 0;
0358
0359
0360 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
0361
0362 mode = atmel_uart_readl(port, ATMEL_US_MR);
0363
0364 if (iso7816conf->flags & SER_ISO7816_ENABLED) {
0365 mode &= ~ATMEL_US_USMODE;
0366
0367 if (iso7816conf->tg > 255) {
0368 dev_err(port->dev, "ISO7816: Timeguard exceeding 255\n");
0369 memset(iso7816conf, 0, sizeof(struct serial_iso7816));
0370 ret = -EINVAL;
0371 goto err_out;
0372 }
0373
0374 if ((iso7816conf->flags & SER_ISO7816_T_PARAM)
0375 == SER_ISO7816_T(0)) {
0376 mode |= ATMEL_US_USMODE_ISO7816_T0 | ATMEL_US_DSNACK;
0377 } else if ((iso7816conf->flags & SER_ISO7816_T_PARAM)
0378 == SER_ISO7816_T(1)) {
0379 mode |= ATMEL_US_USMODE_ISO7816_T1 | ATMEL_US_INACK;
0380 } else {
0381 dev_err(port->dev, "ISO7816: Type not supported\n");
0382 memset(iso7816conf, 0, sizeof(struct serial_iso7816));
0383 ret = -EINVAL;
0384 goto err_out;
0385 }
0386
0387 mode &= ~(ATMEL_US_USCLKS | ATMEL_US_NBSTOP | ATMEL_US_PAR);
0388
0389
0390 mode |= ATMEL_US_USCLKS_MCK | ATMEL_US_CLKO;
0391
0392 mode |= ATMEL_US_PAR_EVEN | ATMEL_US_NBSTOP_1 | ATMEL_US_MAX_ITER(3);
0393
0394 cd = atmel_calc_cd(port, iso7816conf);
0395 fidi = atmel_calc_fidi(port, iso7816conf);
0396 if (fidi == 0) {
0397 dev_warn(port->dev, "ISO7816 fidi = 0, Generator generates no signal\n");
0398 } else if (fidi < atmel_port->fidi_min
0399 || fidi > atmel_port->fidi_max) {
0400 dev_err(port->dev, "ISO7816 fidi = %u, value not supported\n", fidi);
0401 memset(iso7816conf, 0, sizeof(struct serial_iso7816));
0402 ret = -EINVAL;
0403 goto err_out;
0404 }
0405
0406 if (!(port->iso7816.flags & SER_ISO7816_ENABLED)) {
0407
0408 atmel_port->backup_mode = atmel_uart_readl(port, ATMEL_US_MR);
0409 atmel_port->backup_brgr = atmel_uart_readl(port, ATMEL_US_BRGR);
0410 }
0411
0412 atmel_uart_writel(port, ATMEL_US_TTGR, iso7816conf->tg);
0413 atmel_uart_writel(port, ATMEL_US_BRGR, cd);
0414 atmel_uart_writel(port, ATMEL_US_FIDI, fidi);
0415
0416 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXEN);
0417 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY | ATMEL_US_NACK | ATMEL_US_ITERATION;
0418 } else {
0419 dev_dbg(port->dev, "Setting UART back to RS232\n");
0420
0421 mode = atmel_port->backup_mode;
0422 memset(iso7816conf, 0, sizeof(struct serial_iso7816));
0423 atmel_uart_writel(port, ATMEL_US_TTGR, 0);
0424 atmel_uart_writel(port, ATMEL_US_BRGR, atmel_port->backup_brgr);
0425 atmel_uart_writel(port, ATMEL_US_FIDI, 0x174);
0426
0427 if (atmel_use_pdc_tx(port))
0428 atmel_port->tx_done_mask = ATMEL_US_ENDTX |
0429 ATMEL_US_TXBUFE;
0430 else
0431 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
0432 }
0433
0434 port->iso7816 = *iso7816conf;
0435
0436 atmel_uart_writel(port, ATMEL_US_MR, mode);
0437
0438 err_out:
0439
0440 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
0441
0442 return ret;
0443 }
0444
0445
0446
0447
0448 static u_int atmel_tx_empty(struct uart_port *port)
0449 {
0450 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0451
0452 if (atmel_port->tx_stopped)
0453 return TIOCSER_TEMT;
0454 return (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXEMPTY) ?
0455 TIOCSER_TEMT :
0456 0;
0457 }
0458
0459
0460
0461
0462 static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
0463 {
0464 unsigned int control = 0;
0465 unsigned int mode = atmel_uart_readl(port, ATMEL_US_MR);
0466 unsigned int rts_paused, rts_ready;
0467 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0468
0469
0470 if (port->rs485.flags & SER_RS485_ENABLED) {
0471 atmel_uart_writel(port, ATMEL_US_TTGR,
0472 port->rs485.delay_rts_after_send);
0473 mode &= ~ATMEL_US_USMODE;
0474 mode |= ATMEL_US_USMODE_RS485;
0475 }
0476
0477
0478 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
0479
0480 rts_paused = ATMEL_US_RTSEN;
0481
0482
0483 rts_ready = ATMEL_US_RTSDIS;
0484 } else {
0485
0486 rts_paused = ATMEL_US_RTSDIS;
0487
0488
0489 rts_ready = ATMEL_US_RTSEN;
0490 }
0491
0492 if (mctrl & TIOCM_RTS)
0493 control |= rts_ready;
0494 else
0495 control |= rts_paused;
0496
0497 if (mctrl & TIOCM_DTR)
0498 control |= ATMEL_US_DTREN;
0499 else
0500 control |= ATMEL_US_DTRDIS;
0501
0502 atmel_uart_writel(port, ATMEL_US_CR, control);
0503
0504 mctrl_gpio_set(atmel_port->gpios, mctrl);
0505
0506
0507 mode &= ~ATMEL_US_CHMODE;
0508 if (mctrl & TIOCM_LOOP)
0509 mode |= ATMEL_US_CHMODE_LOC_LOOP;
0510 else
0511 mode |= ATMEL_US_CHMODE_NORMAL;
0512
0513 atmel_uart_writel(port, ATMEL_US_MR, mode);
0514 }
0515
0516
0517
0518
0519 static u_int atmel_get_mctrl(struct uart_port *port)
0520 {
0521 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0522 unsigned int ret = 0, status;
0523
0524 status = atmel_uart_readl(port, ATMEL_US_CSR);
0525
0526
0527
0528
0529 if (!(status & ATMEL_US_DCD))
0530 ret |= TIOCM_CD;
0531 if (!(status & ATMEL_US_CTS))
0532 ret |= TIOCM_CTS;
0533 if (!(status & ATMEL_US_DSR))
0534 ret |= TIOCM_DSR;
0535 if (!(status & ATMEL_US_RI))
0536 ret |= TIOCM_RI;
0537
0538 return mctrl_gpio_get(atmel_port->gpios, &ret);
0539 }
0540
0541
0542
0543
0544 static void atmel_stop_tx(struct uart_port *port)
0545 {
0546 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0547
0548 if (atmel_use_pdc_tx(port)) {
0549
0550 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
0551 }
0552
0553
0554
0555
0556
0557
0558 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS);
0559 atmel_port->tx_stopped = true;
0560
0561
0562 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
0563
0564 if (atmel_uart_is_half_duplex(port))
0565 if (!atomic_read(&atmel_port->tasklet_shutdown))
0566 atmel_start_rx(port);
0567
0568 }
0569
0570
0571
0572
0573 static void atmel_start_tx(struct uart_port *port)
0574 {
0575 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0576
0577 if (atmel_use_pdc_tx(port) && (atmel_uart_readl(port, ATMEL_PDC_PTSR)
0578 & ATMEL_PDC_TXTEN))
0579
0580
0581 return;
0582
0583 if (atmel_use_pdc_tx(port) || atmel_use_dma_tx(port))
0584 if (atmel_uart_is_half_duplex(port))
0585 atmel_stop_rx(port);
0586
0587 if (atmel_use_pdc_tx(port))
0588
0589 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
0590
0591
0592 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
0593
0594
0595 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN);
0596 atmel_port->tx_stopped = false;
0597 }
0598
0599
0600
0601
0602 static void atmel_start_rx(struct uart_port *port)
0603 {
0604
0605 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
0606
0607 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXEN);
0608
0609 if (atmel_use_pdc_rx(port)) {
0610
0611 atmel_uart_writel(port, ATMEL_US_IER,
0612 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
0613 port->read_status_mask);
0614 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
0615 } else {
0616 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
0617 }
0618 }
0619
0620
0621
0622
0623 static void atmel_stop_rx(struct uart_port *port)
0624 {
0625 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXDIS);
0626
0627 if (atmel_use_pdc_rx(port)) {
0628
0629 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS);
0630 atmel_uart_writel(port, ATMEL_US_IDR,
0631 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
0632 port->read_status_mask);
0633 } else {
0634 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXRDY);
0635 }
0636 }
0637
0638
0639
0640
0641 static void atmel_enable_ms(struct uart_port *port)
0642 {
0643 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0644 uint32_t ier = 0;
0645
0646
0647
0648
0649 if (atmel_port->ms_irq_enabled)
0650 return;
0651
0652 atmel_port->ms_irq_enabled = true;
0653
0654 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
0655 ier |= ATMEL_US_CTSIC;
0656
0657 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
0658 ier |= ATMEL_US_DSRIC;
0659
0660 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
0661 ier |= ATMEL_US_RIIC;
0662
0663 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
0664 ier |= ATMEL_US_DCDIC;
0665
0666 atmel_uart_writel(port, ATMEL_US_IER, ier);
0667
0668 mctrl_gpio_enable_ms(atmel_port->gpios);
0669 }
0670
0671
0672
0673
0674 static void atmel_disable_ms(struct uart_port *port)
0675 {
0676 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0677 uint32_t idr = 0;
0678
0679
0680
0681
0682 if (!atmel_port->ms_irq_enabled)
0683 return;
0684
0685 atmel_port->ms_irq_enabled = false;
0686
0687 mctrl_gpio_disable_ms(atmel_port->gpios);
0688
0689 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
0690 idr |= ATMEL_US_CTSIC;
0691
0692 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
0693 idr |= ATMEL_US_DSRIC;
0694
0695 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
0696 idr |= ATMEL_US_RIIC;
0697
0698 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
0699 idr |= ATMEL_US_DCDIC;
0700
0701 atmel_uart_writel(port, ATMEL_US_IDR, idr);
0702 }
0703
0704
0705
0706
0707 static void atmel_break_ctl(struct uart_port *port, int break_state)
0708 {
0709 if (break_state != 0)
0710
0711 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTBRK);
0712 else
0713
0714 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STPBRK);
0715 }
0716
0717
0718
0719
0720 static void
0721 atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
0722 unsigned int ch)
0723 {
0724 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0725 struct circ_buf *ring = &atmel_port->rx_ring;
0726 struct atmel_uart_char *c;
0727
0728 if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
0729
0730 return;
0731
0732 c = &((struct atmel_uart_char *)ring->buf)[ring->head];
0733 c->status = status;
0734 c->ch = ch;
0735
0736
0737 smp_wmb();
0738
0739 ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
0740 }
0741
0742
0743
0744
0745 static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
0746 {
0747
0748 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
0749
0750 if (status & ATMEL_US_RXBRK) {
0751
0752 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
0753 port->icount.brk++;
0754 }
0755 if (status & ATMEL_US_PARE)
0756 port->icount.parity++;
0757 if (status & ATMEL_US_FRAME)
0758 port->icount.frame++;
0759 if (status & ATMEL_US_OVRE)
0760 port->icount.overrun++;
0761 }
0762
0763
0764
0765
0766 static void atmel_rx_chars(struct uart_port *port)
0767 {
0768 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0769 unsigned int status, ch;
0770
0771 status = atmel_uart_readl(port, ATMEL_US_CSR);
0772 while (status & ATMEL_US_RXRDY) {
0773 ch = atmel_uart_read_char(port);
0774
0775
0776
0777
0778
0779 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
0780 | ATMEL_US_OVRE | ATMEL_US_RXBRK)
0781 || atmel_port->break_active)) {
0782
0783
0784 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
0785
0786 if (status & ATMEL_US_RXBRK
0787 && !atmel_port->break_active) {
0788 atmel_port->break_active = 1;
0789 atmel_uart_writel(port, ATMEL_US_IER,
0790 ATMEL_US_RXBRK);
0791 } else {
0792
0793
0794
0795
0796
0797
0798
0799 atmel_uart_writel(port, ATMEL_US_IDR,
0800 ATMEL_US_RXBRK);
0801 status &= ~ATMEL_US_RXBRK;
0802 atmel_port->break_active = 0;
0803 }
0804 }
0805
0806 atmel_buffer_rx_char(port, status, ch);
0807 status = atmel_uart_readl(port, ATMEL_US_CSR);
0808 }
0809
0810 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
0811 }
0812
0813
0814
0815
0816
0817 static void atmel_tx_chars(struct uart_port *port)
0818 {
0819 struct circ_buf *xmit = &port->state->xmit;
0820 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0821
0822 if (port->x_char &&
0823 (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY)) {
0824 atmel_uart_write_char(port, port->x_char);
0825 port->icount.tx++;
0826 port->x_char = 0;
0827 }
0828 if (uart_circ_empty(xmit) || uart_tx_stopped(port))
0829 return;
0830
0831 while (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY) {
0832 atmel_uart_write_char(port, xmit->buf[xmit->tail]);
0833 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
0834 port->icount.tx++;
0835 if (uart_circ_empty(xmit))
0836 break;
0837 }
0838
0839 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
0840 uart_write_wakeup(port);
0841
0842 if (!uart_circ_empty(xmit)) {
0843
0844
0845
0846
0847 atmel_port->tx_done_mask |= ATMEL_US_TXRDY;
0848
0849
0850 atmel_uart_writel(port, ATMEL_US_IER,
0851 atmel_port->tx_done_mask);
0852 } else {
0853 if (atmel_uart_is_half_duplex(port))
0854 atmel_port->tx_done_mask &= ~ATMEL_US_TXRDY;
0855 }
0856 }
0857
0858 static void atmel_complete_tx_dma(void *arg)
0859 {
0860 struct atmel_uart_port *atmel_port = arg;
0861 struct uart_port *port = &atmel_port->uart;
0862 struct circ_buf *xmit = &port->state->xmit;
0863 struct dma_chan *chan = atmel_port->chan_tx;
0864 unsigned long flags;
0865
0866 spin_lock_irqsave(&port->lock, flags);
0867
0868 if (chan)
0869 dmaengine_terminate_all(chan);
0870 xmit->tail += atmel_port->tx_len;
0871 xmit->tail &= UART_XMIT_SIZE - 1;
0872
0873 port->icount.tx += atmel_port->tx_len;
0874
0875 spin_lock_irq(&atmel_port->lock_tx);
0876 async_tx_ack(atmel_port->desc_tx);
0877 atmel_port->cookie_tx = -EINVAL;
0878 atmel_port->desc_tx = NULL;
0879 spin_unlock_irq(&atmel_port->lock_tx);
0880
0881 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
0882 uart_write_wakeup(port);
0883
0884
0885
0886
0887
0888
0889 if (!uart_circ_empty(xmit))
0890 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
0891 else if (atmel_uart_is_half_duplex(port)) {
0892
0893
0894
0895
0896 atmel_port->hd_start_rx = true;
0897 atmel_uart_writel(port, ATMEL_US_IER,
0898 atmel_port->tx_done_mask);
0899 }
0900
0901 spin_unlock_irqrestore(&port->lock, flags);
0902 }
0903
0904 static void atmel_release_tx_dma(struct uart_port *port)
0905 {
0906 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0907 struct dma_chan *chan = atmel_port->chan_tx;
0908
0909 if (chan) {
0910 dmaengine_terminate_all(chan);
0911 dma_release_channel(chan);
0912 dma_unmap_sg(port->dev, &atmel_port->sg_tx, 1,
0913 DMA_TO_DEVICE);
0914 }
0915
0916 atmel_port->desc_tx = NULL;
0917 atmel_port->chan_tx = NULL;
0918 atmel_port->cookie_tx = -EINVAL;
0919 }
0920
0921
0922
0923
0924 static void atmel_tx_dma(struct uart_port *port)
0925 {
0926 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0927 struct circ_buf *xmit = &port->state->xmit;
0928 struct dma_chan *chan = atmel_port->chan_tx;
0929 struct dma_async_tx_descriptor *desc;
0930 struct scatterlist sgl[2], *sg, *sg_tx = &atmel_port->sg_tx;
0931 unsigned int tx_len, part1_len, part2_len, sg_len;
0932 dma_addr_t phys_addr;
0933
0934
0935 if (atmel_port->desc_tx != NULL)
0936 return;
0937
0938 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
0939
0940
0941
0942
0943
0944
0945
0946
0947
0948 tx_len = CIRC_CNT_TO_END(xmit->head,
0949 xmit->tail,
0950 UART_XMIT_SIZE);
0951
0952 if (atmel_port->fifo_size) {
0953
0954 part1_len = (tx_len & ~0x3);
0955 part2_len = (tx_len & 0x3);
0956 } else {
0957
0958 part1_len = 0;
0959 part2_len = tx_len;
0960 }
0961
0962 sg_init_table(sgl, 2);
0963 sg_len = 0;
0964 phys_addr = sg_dma_address(sg_tx) + xmit->tail;
0965 if (part1_len) {
0966 sg = &sgl[sg_len++];
0967 sg_dma_address(sg) = phys_addr;
0968 sg_dma_len(sg) = part1_len;
0969
0970 phys_addr += part1_len;
0971 }
0972
0973 if (part2_len) {
0974 sg = &sgl[sg_len++];
0975 sg_dma_address(sg) = phys_addr;
0976 sg_dma_len(sg) = part2_len;
0977 }
0978
0979
0980
0981
0982
0983 atmel_port->tx_len = tx_len;
0984
0985 desc = dmaengine_prep_slave_sg(chan,
0986 sgl,
0987 sg_len,
0988 DMA_MEM_TO_DEV,
0989 DMA_PREP_INTERRUPT |
0990 DMA_CTRL_ACK);
0991 if (!desc) {
0992 dev_err(port->dev, "Failed to send via dma!\n");
0993 return;
0994 }
0995
0996 dma_sync_sg_for_device(port->dev, sg_tx, 1, DMA_TO_DEVICE);
0997
0998 atmel_port->desc_tx = desc;
0999 desc->callback = atmel_complete_tx_dma;
1000 desc->callback_param = atmel_port;
1001 atmel_port->cookie_tx = dmaengine_submit(desc);
1002 if (dma_submit_error(atmel_port->cookie_tx)) {
1003 dev_err(port->dev, "dma_submit_error %d\n",
1004 atmel_port->cookie_tx);
1005 return;
1006 }
1007
1008 dma_async_issue_pending(chan);
1009 }
1010
1011 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1012 uart_write_wakeup(port);
1013 }
1014
1015 static int atmel_prepare_tx_dma(struct uart_port *port)
1016 {
1017 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1018 struct device *mfd_dev = port->dev->parent;
1019 dma_cap_mask_t mask;
1020 struct dma_slave_config config;
1021 int ret, nent;
1022
1023 dma_cap_zero(mask);
1024 dma_cap_set(DMA_SLAVE, mask);
1025
1026 atmel_port->chan_tx = dma_request_slave_channel(mfd_dev, "tx");
1027 if (atmel_port->chan_tx == NULL)
1028 goto chan_err;
1029 dev_info(port->dev, "using %s for tx DMA transfers\n",
1030 dma_chan_name(atmel_port->chan_tx));
1031
1032 spin_lock_init(&atmel_port->lock_tx);
1033 sg_init_table(&atmel_port->sg_tx, 1);
1034
1035 BUG_ON(!PAGE_ALIGNED(port->state->xmit.buf));
1036 sg_set_page(&atmel_port->sg_tx,
1037 virt_to_page(port->state->xmit.buf),
1038 UART_XMIT_SIZE,
1039 offset_in_page(port->state->xmit.buf));
1040 nent = dma_map_sg(port->dev,
1041 &atmel_port->sg_tx,
1042 1,
1043 DMA_TO_DEVICE);
1044
1045 if (!nent) {
1046 dev_dbg(port->dev, "need to release resource of dma\n");
1047 goto chan_err;
1048 } else {
1049 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
1050 sg_dma_len(&atmel_port->sg_tx),
1051 port->state->xmit.buf,
1052 &sg_dma_address(&atmel_port->sg_tx));
1053 }
1054
1055
1056 memset(&config, 0, sizeof(config));
1057 config.direction = DMA_MEM_TO_DEV;
1058 config.dst_addr_width = (atmel_port->fifo_size) ?
1059 DMA_SLAVE_BUSWIDTH_4_BYTES :
1060 DMA_SLAVE_BUSWIDTH_1_BYTE;
1061 config.dst_addr = port->mapbase + ATMEL_US_THR;
1062 config.dst_maxburst = 1;
1063
1064 ret = dmaengine_slave_config(atmel_port->chan_tx,
1065 &config);
1066 if (ret) {
1067 dev_err(port->dev, "DMA tx slave configuration failed\n");
1068 goto chan_err;
1069 }
1070
1071 return 0;
1072
1073 chan_err:
1074 dev_err(port->dev, "TX channel not available, switch to pio\n");
1075 atmel_port->use_dma_tx = false;
1076 if (atmel_port->chan_tx)
1077 atmel_release_tx_dma(port);
1078 return -EINVAL;
1079 }
1080
1081 static void atmel_complete_rx_dma(void *arg)
1082 {
1083 struct uart_port *port = arg;
1084 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1085
1086 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
1087 }
1088
1089 static void atmel_release_rx_dma(struct uart_port *port)
1090 {
1091 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1092 struct dma_chan *chan = atmel_port->chan_rx;
1093
1094 if (chan) {
1095 dmaengine_terminate_all(chan);
1096 dma_release_channel(chan);
1097 dma_unmap_sg(port->dev, &atmel_port->sg_rx, 1,
1098 DMA_FROM_DEVICE);
1099 }
1100
1101 atmel_port->desc_rx = NULL;
1102 atmel_port->chan_rx = NULL;
1103 atmel_port->cookie_rx = -EINVAL;
1104 }
1105
1106 static void atmel_rx_from_dma(struct uart_port *port)
1107 {
1108 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1109 struct tty_port *tport = &port->state->port;
1110 struct circ_buf *ring = &atmel_port->rx_ring;
1111 struct dma_chan *chan = atmel_port->chan_rx;
1112 struct dma_tx_state state;
1113 enum dma_status dmastat;
1114 size_t count;
1115
1116
1117
1118 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1119 dmastat = dmaengine_tx_status(chan,
1120 atmel_port->cookie_rx,
1121 &state);
1122
1123 if (dmastat == DMA_ERROR) {
1124 dev_dbg(port->dev, "Get residue error, restart tasklet\n");
1125 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
1126 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
1127 return;
1128 }
1129
1130
1131 dma_sync_sg_for_cpu(port->dev,
1132 &atmel_port->sg_rx,
1133 1,
1134 DMA_FROM_DEVICE);
1135
1136
1137
1138
1139
1140
1141
1142
1143 ring->head = sg_dma_len(&atmel_port->sg_rx) - state.residue;
1144 BUG_ON(ring->head > sg_dma_len(&atmel_port->sg_rx));
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157 if (ring->head < ring->tail) {
1158 count = sg_dma_len(&atmel_port->sg_rx) - ring->tail;
1159
1160 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1161 ring->tail = 0;
1162 port->icount.rx += count;
1163 }
1164
1165
1166 if (ring->tail < ring->head) {
1167 count = ring->head - ring->tail;
1168
1169 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1170
1171 if (ring->head >= sg_dma_len(&atmel_port->sg_rx))
1172 ring->head = 0;
1173 ring->tail = ring->head;
1174 port->icount.rx += count;
1175 }
1176
1177
1178 dma_sync_sg_for_device(port->dev,
1179 &atmel_port->sg_rx,
1180 1,
1181 DMA_FROM_DEVICE);
1182
1183 tty_flip_buffer_push(tport);
1184
1185 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
1186 }
1187
1188 static int atmel_prepare_rx_dma(struct uart_port *port)
1189 {
1190 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1191 struct device *mfd_dev = port->dev->parent;
1192 struct dma_async_tx_descriptor *desc;
1193 dma_cap_mask_t mask;
1194 struct dma_slave_config config;
1195 struct circ_buf *ring;
1196 int ret, nent;
1197
1198 ring = &atmel_port->rx_ring;
1199
1200 dma_cap_zero(mask);
1201 dma_cap_set(DMA_CYCLIC, mask);
1202
1203 atmel_port->chan_rx = dma_request_slave_channel(mfd_dev, "rx");
1204 if (atmel_port->chan_rx == NULL)
1205 goto chan_err;
1206 dev_info(port->dev, "using %s for rx DMA transfers\n",
1207 dma_chan_name(atmel_port->chan_rx));
1208
1209 spin_lock_init(&atmel_port->lock_rx);
1210 sg_init_table(&atmel_port->sg_rx, 1);
1211
1212 BUG_ON(!PAGE_ALIGNED(ring->buf));
1213 sg_set_page(&atmel_port->sg_rx,
1214 virt_to_page(ring->buf),
1215 sizeof(struct atmel_uart_char) * ATMEL_SERIAL_RINGSIZE,
1216 offset_in_page(ring->buf));
1217 nent = dma_map_sg(port->dev,
1218 &atmel_port->sg_rx,
1219 1,
1220 DMA_FROM_DEVICE);
1221
1222 if (!nent) {
1223 dev_dbg(port->dev, "need to release resource of dma\n");
1224 goto chan_err;
1225 } else {
1226 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
1227 sg_dma_len(&atmel_port->sg_rx),
1228 ring->buf,
1229 &sg_dma_address(&atmel_port->sg_rx));
1230 }
1231
1232
1233 memset(&config, 0, sizeof(config));
1234 config.direction = DMA_DEV_TO_MEM;
1235 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1236 config.src_addr = port->mapbase + ATMEL_US_RHR;
1237 config.src_maxburst = 1;
1238
1239 ret = dmaengine_slave_config(atmel_port->chan_rx,
1240 &config);
1241 if (ret) {
1242 dev_err(port->dev, "DMA rx slave configuration failed\n");
1243 goto chan_err;
1244 }
1245
1246
1247
1248
1249 desc = dmaengine_prep_dma_cyclic(atmel_port->chan_rx,
1250 sg_dma_address(&atmel_port->sg_rx),
1251 sg_dma_len(&atmel_port->sg_rx),
1252 sg_dma_len(&atmel_port->sg_rx)/2,
1253 DMA_DEV_TO_MEM,
1254 DMA_PREP_INTERRUPT);
1255 if (!desc) {
1256 dev_err(port->dev, "Preparing DMA cyclic failed\n");
1257 goto chan_err;
1258 }
1259 desc->callback = atmel_complete_rx_dma;
1260 desc->callback_param = port;
1261 atmel_port->desc_rx = desc;
1262 atmel_port->cookie_rx = dmaengine_submit(desc);
1263 if (dma_submit_error(atmel_port->cookie_rx)) {
1264 dev_err(port->dev, "dma_submit_error %d\n",
1265 atmel_port->cookie_rx);
1266 goto chan_err;
1267 }
1268
1269 dma_async_issue_pending(atmel_port->chan_rx);
1270
1271 return 0;
1272
1273 chan_err:
1274 dev_err(port->dev, "RX channel not available, switch to pio\n");
1275 atmel_port->use_dma_rx = false;
1276 if (atmel_port->chan_rx)
1277 atmel_release_rx_dma(port);
1278 return -EINVAL;
1279 }
1280
1281 static void atmel_uart_timer_callback(struct timer_list *t)
1282 {
1283 struct atmel_uart_port *atmel_port = from_timer(atmel_port, t,
1284 uart_timer);
1285 struct uart_port *port = &atmel_port->uart;
1286
1287 if (!atomic_read(&atmel_port->tasklet_shutdown)) {
1288 tasklet_schedule(&atmel_port->tasklet_rx);
1289 mod_timer(&atmel_port->uart_timer,
1290 jiffies + uart_poll_timeout(port));
1291 }
1292 }
1293
1294
1295
1296
1297 static void
1298 atmel_handle_receive(struct uart_port *port, unsigned int pending)
1299 {
1300 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1301
1302 if (atmel_use_pdc_rx(port)) {
1303
1304
1305
1306
1307
1308
1309
1310 if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
1311 atmel_uart_writel(port, ATMEL_US_IDR,
1312 (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT));
1313 atmel_tasklet_schedule(atmel_port,
1314 &atmel_port->tasklet_rx);
1315 }
1316
1317 if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
1318 ATMEL_US_FRAME | ATMEL_US_PARE))
1319 atmel_pdc_rxerr(port, pending);
1320 }
1321
1322 if (atmel_use_dma_rx(port)) {
1323 if (pending & ATMEL_US_TIMEOUT) {
1324 atmel_uart_writel(port, ATMEL_US_IDR,
1325 ATMEL_US_TIMEOUT);
1326 atmel_tasklet_schedule(atmel_port,
1327 &atmel_port->tasklet_rx);
1328 }
1329 }
1330
1331
1332 if (pending & ATMEL_US_RXRDY)
1333 atmel_rx_chars(port);
1334 else if (pending & ATMEL_US_RXBRK) {
1335
1336
1337
1338
1339 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1340 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXBRK);
1341 atmel_port->break_active = 0;
1342 }
1343 }
1344
1345
1346
1347
1348 static void
1349 atmel_handle_transmit(struct uart_port *port, unsigned int pending)
1350 {
1351 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1352
1353 if (pending & atmel_port->tx_done_mask) {
1354 atmel_uart_writel(port, ATMEL_US_IDR,
1355 atmel_port->tx_done_mask);
1356
1357
1358 if (atmel_port->hd_start_rx) {
1359 if (!(atmel_uart_readl(port, ATMEL_US_CSR)
1360 & ATMEL_US_TXEMPTY))
1361 dev_warn(port->dev, "Should start RX, but TX fifo is not empty\n");
1362
1363 atmel_port->hd_start_rx = false;
1364 atmel_start_rx(port);
1365 }
1366
1367 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
1368 }
1369 }
1370
1371
1372
1373
1374 static void
1375 atmel_handle_status(struct uart_port *port, unsigned int pending,
1376 unsigned int status)
1377 {
1378 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1379 unsigned int status_change;
1380
1381 if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
1382 | ATMEL_US_CTSIC)) {
1383 status_change = status ^ atmel_port->irq_status_prev;
1384 atmel_port->irq_status_prev = status;
1385
1386 if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
1387 | ATMEL_US_DCD | ATMEL_US_CTS)) {
1388
1389 if (status_change & ATMEL_US_RI)
1390 port->icount.rng++;
1391 if (status_change & ATMEL_US_DSR)
1392 port->icount.dsr++;
1393 if (status_change & ATMEL_US_DCD)
1394 uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
1395 if (status_change & ATMEL_US_CTS)
1396 uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
1397
1398 wake_up_interruptible(&port->state->port.delta_msr_wait);
1399 }
1400 }
1401
1402 if (pending & (ATMEL_US_NACK | ATMEL_US_ITERATION))
1403 dev_dbg(port->dev, "ISO7816 ERROR (0x%08x)\n", pending);
1404 }
1405
1406
1407
1408
1409 static irqreturn_t atmel_interrupt(int irq, void *dev_id)
1410 {
1411 struct uart_port *port = dev_id;
1412 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1413 unsigned int status, pending, mask, pass_counter = 0;
1414
1415 spin_lock(&atmel_port->lock_suspended);
1416
1417 do {
1418 status = atmel_uart_readl(port, ATMEL_US_CSR);
1419 mask = atmel_uart_readl(port, ATMEL_US_IMR);
1420 pending = status & mask;
1421 if (!pending)
1422 break;
1423
1424 if (atmel_port->suspended) {
1425 atmel_port->pending |= pending;
1426 atmel_port->pending_status = status;
1427 atmel_uart_writel(port, ATMEL_US_IDR, mask);
1428 pm_system_wakeup();
1429 break;
1430 }
1431
1432 atmel_handle_receive(port, pending);
1433 atmel_handle_status(port, pending, status);
1434 atmel_handle_transmit(port, pending);
1435 } while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
1436
1437 spin_unlock(&atmel_port->lock_suspended);
1438
1439 return pass_counter ? IRQ_HANDLED : IRQ_NONE;
1440 }
1441
1442 static void atmel_release_tx_pdc(struct uart_port *port)
1443 {
1444 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1445 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1446
1447 dma_unmap_single(port->dev,
1448 pdc->dma_addr,
1449 pdc->dma_size,
1450 DMA_TO_DEVICE);
1451 }
1452
1453
1454
1455
1456 static void atmel_tx_pdc(struct uart_port *port)
1457 {
1458 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1459 struct circ_buf *xmit = &port->state->xmit;
1460 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1461 int count;
1462
1463
1464 if (atmel_uart_readl(port, ATMEL_PDC_TCR))
1465 return;
1466
1467 xmit->tail += pdc->ofs;
1468 xmit->tail &= UART_XMIT_SIZE - 1;
1469
1470 port->icount.tx += pdc->ofs;
1471 pdc->ofs = 0;
1472
1473
1474
1475
1476 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
1477
1478 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
1479 dma_sync_single_for_device(port->dev,
1480 pdc->dma_addr,
1481 pdc->dma_size,
1482 DMA_TO_DEVICE);
1483
1484 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
1485 pdc->ofs = count;
1486
1487 atmel_uart_writel(port, ATMEL_PDC_TPR,
1488 pdc->dma_addr + xmit->tail);
1489 atmel_uart_writel(port, ATMEL_PDC_TCR, count);
1490
1491 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
1492
1493 atmel_uart_writel(port, ATMEL_US_IER,
1494 atmel_port->tx_done_mask);
1495 } else {
1496 if (atmel_uart_is_half_duplex(port)) {
1497
1498 atmel_start_rx(port);
1499 }
1500 }
1501
1502 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1503 uart_write_wakeup(port);
1504 }
1505
1506 static int atmel_prepare_tx_pdc(struct uart_port *port)
1507 {
1508 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1509 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1510 struct circ_buf *xmit = &port->state->xmit;
1511
1512 pdc->buf = xmit->buf;
1513 pdc->dma_addr = dma_map_single(port->dev,
1514 pdc->buf,
1515 UART_XMIT_SIZE,
1516 DMA_TO_DEVICE);
1517 pdc->dma_size = UART_XMIT_SIZE;
1518 pdc->ofs = 0;
1519
1520 return 0;
1521 }
1522
1523 static void atmel_rx_from_ring(struct uart_port *port)
1524 {
1525 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1526 struct circ_buf *ring = &atmel_port->rx_ring;
1527 unsigned int flg;
1528 unsigned int status;
1529
1530 while (ring->head != ring->tail) {
1531 struct atmel_uart_char c;
1532
1533
1534 smp_rmb();
1535
1536 c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
1537
1538 ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
1539
1540 port->icount.rx++;
1541 status = c.status;
1542 flg = TTY_NORMAL;
1543
1544
1545
1546
1547
1548 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
1549 | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
1550 if (status & ATMEL_US_RXBRK) {
1551
1552 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
1553
1554 port->icount.brk++;
1555 if (uart_handle_break(port))
1556 continue;
1557 }
1558 if (status & ATMEL_US_PARE)
1559 port->icount.parity++;
1560 if (status & ATMEL_US_FRAME)
1561 port->icount.frame++;
1562 if (status & ATMEL_US_OVRE)
1563 port->icount.overrun++;
1564
1565 status &= port->read_status_mask;
1566
1567 if (status & ATMEL_US_RXBRK)
1568 flg = TTY_BREAK;
1569 else if (status & ATMEL_US_PARE)
1570 flg = TTY_PARITY;
1571 else if (status & ATMEL_US_FRAME)
1572 flg = TTY_FRAME;
1573 }
1574
1575
1576 if (uart_handle_sysrq_char(port, c.ch))
1577 continue;
1578
1579 uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
1580 }
1581
1582 tty_flip_buffer_push(&port->state->port);
1583 }
1584
1585 static void atmel_release_rx_pdc(struct uart_port *port)
1586 {
1587 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1588 int i;
1589
1590 for (i = 0; i < 2; i++) {
1591 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1592
1593 dma_unmap_single(port->dev,
1594 pdc->dma_addr,
1595 pdc->dma_size,
1596 DMA_FROM_DEVICE);
1597 kfree(pdc->buf);
1598 }
1599 }
1600
1601 static void atmel_rx_from_pdc(struct uart_port *port)
1602 {
1603 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1604 struct tty_port *tport = &port->state->port;
1605 struct atmel_dma_buffer *pdc;
1606 int rx_idx = atmel_port->pdc_rx_idx;
1607 unsigned int head;
1608 unsigned int tail;
1609 unsigned int count;
1610
1611 do {
1612
1613 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1614
1615 pdc = &atmel_port->pdc_rx[rx_idx];
1616 head = atmel_uart_readl(port, ATMEL_PDC_RPR) - pdc->dma_addr;
1617 tail = pdc->ofs;
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629 head = min(head, pdc->dma_size);
1630
1631 if (likely(head != tail)) {
1632 dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
1633 pdc->dma_size, DMA_FROM_DEVICE);
1634
1635
1636
1637
1638
1639
1640
1641 count = head - tail;
1642
1643 tty_insert_flip_string(tport, pdc->buf + pdc->ofs,
1644 count);
1645
1646 dma_sync_single_for_device(port->dev, pdc->dma_addr,
1647 pdc->dma_size, DMA_FROM_DEVICE);
1648
1649 port->icount.rx += count;
1650 pdc->ofs = head;
1651 }
1652
1653
1654
1655
1656
1657 if (head >= pdc->dma_size) {
1658 pdc->ofs = 0;
1659 atmel_uart_writel(port, ATMEL_PDC_RNPR, pdc->dma_addr);
1660 atmel_uart_writel(port, ATMEL_PDC_RNCR, pdc->dma_size);
1661
1662 rx_idx = !rx_idx;
1663 atmel_port->pdc_rx_idx = rx_idx;
1664 }
1665 } while (head >= pdc->dma_size);
1666
1667 tty_flip_buffer_push(tport);
1668
1669 atmel_uart_writel(port, ATMEL_US_IER,
1670 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
1671 }
1672
1673 static int atmel_prepare_rx_pdc(struct uart_port *port)
1674 {
1675 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1676 int i;
1677
1678 for (i = 0; i < 2; i++) {
1679 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1680
1681 pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
1682 if (pdc->buf == NULL) {
1683 if (i != 0) {
1684 dma_unmap_single(port->dev,
1685 atmel_port->pdc_rx[0].dma_addr,
1686 PDC_BUFFER_SIZE,
1687 DMA_FROM_DEVICE);
1688 kfree(atmel_port->pdc_rx[0].buf);
1689 }
1690 atmel_port->use_pdc_rx = false;
1691 return -ENOMEM;
1692 }
1693 pdc->dma_addr = dma_map_single(port->dev,
1694 pdc->buf,
1695 PDC_BUFFER_SIZE,
1696 DMA_FROM_DEVICE);
1697 pdc->dma_size = PDC_BUFFER_SIZE;
1698 pdc->ofs = 0;
1699 }
1700
1701 atmel_port->pdc_rx_idx = 0;
1702
1703 atmel_uart_writel(port, ATMEL_PDC_RPR, atmel_port->pdc_rx[0].dma_addr);
1704 atmel_uart_writel(port, ATMEL_PDC_RCR, PDC_BUFFER_SIZE);
1705
1706 atmel_uart_writel(port, ATMEL_PDC_RNPR,
1707 atmel_port->pdc_rx[1].dma_addr);
1708 atmel_uart_writel(port, ATMEL_PDC_RNCR, PDC_BUFFER_SIZE);
1709
1710 return 0;
1711 }
1712
1713
1714
1715
1716 static void atmel_tasklet_rx_func(struct tasklet_struct *t)
1717 {
1718 struct atmel_uart_port *atmel_port = from_tasklet(atmel_port, t,
1719 tasklet_rx);
1720 struct uart_port *port = &atmel_port->uart;
1721
1722
1723 spin_lock(&port->lock);
1724 atmel_port->schedule_rx(port);
1725 spin_unlock(&port->lock);
1726 }
1727
1728 static void atmel_tasklet_tx_func(struct tasklet_struct *t)
1729 {
1730 struct atmel_uart_port *atmel_port = from_tasklet(atmel_port, t,
1731 tasklet_tx);
1732 struct uart_port *port = &atmel_port->uart;
1733
1734
1735 spin_lock(&port->lock);
1736 atmel_port->schedule_tx(port);
1737 spin_unlock(&port->lock);
1738 }
1739
1740 static void atmel_init_property(struct atmel_uart_port *atmel_port,
1741 struct platform_device *pdev)
1742 {
1743 struct device_node *np = pdev->dev.of_node;
1744
1745
1746 if (of_property_read_bool(np, "atmel,use-dma-rx")) {
1747 if (of_property_read_bool(np, "dmas")) {
1748 atmel_port->use_dma_rx = true;
1749 atmel_port->use_pdc_rx = false;
1750 } else {
1751 atmel_port->use_dma_rx = false;
1752 atmel_port->use_pdc_rx = true;
1753 }
1754 } else {
1755 atmel_port->use_dma_rx = false;
1756 atmel_port->use_pdc_rx = false;
1757 }
1758
1759 if (of_property_read_bool(np, "atmel,use-dma-tx")) {
1760 if (of_property_read_bool(np, "dmas")) {
1761 atmel_port->use_dma_tx = true;
1762 atmel_port->use_pdc_tx = false;
1763 } else {
1764 atmel_port->use_dma_tx = false;
1765 atmel_port->use_pdc_tx = true;
1766 }
1767 } else {
1768 atmel_port->use_dma_tx = false;
1769 atmel_port->use_pdc_tx = false;
1770 }
1771 }
1772
1773 static void atmel_set_ops(struct uart_port *port)
1774 {
1775 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1776
1777 if (atmel_use_dma_rx(port)) {
1778 atmel_port->prepare_rx = &atmel_prepare_rx_dma;
1779 atmel_port->schedule_rx = &atmel_rx_from_dma;
1780 atmel_port->release_rx = &atmel_release_rx_dma;
1781 } else if (atmel_use_pdc_rx(port)) {
1782 atmel_port->prepare_rx = &atmel_prepare_rx_pdc;
1783 atmel_port->schedule_rx = &atmel_rx_from_pdc;
1784 atmel_port->release_rx = &atmel_release_rx_pdc;
1785 } else {
1786 atmel_port->prepare_rx = NULL;
1787 atmel_port->schedule_rx = &atmel_rx_from_ring;
1788 atmel_port->release_rx = NULL;
1789 }
1790
1791 if (atmel_use_dma_tx(port)) {
1792 atmel_port->prepare_tx = &atmel_prepare_tx_dma;
1793 atmel_port->schedule_tx = &atmel_tx_dma;
1794 atmel_port->release_tx = &atmel_release_tx_dma;
1795 } else if (atmel_use_pdc_tx(port)) {
1796 atmel_port->prepare_tx = &atmel_prepare_tx_pdc;
1797 atmel_port->schedule_tx = &atmel_tx_pdc;
1798 atmel_port->release_tx = &atmel_release_tx_pdc;
1799 } else {
1800 atmel_port->prepare_tx = NULL;
1801 atmel_port->schedule_tx = &atmel_tx_chars;
1802 atmel_port->release_tx = NULL;
1803 }
1804 }
1805
1806
1807
1808
1809 static void atmel_get_ip_name(struct uart_port *port)
1810 {
1811 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1812 int name = atmel_uart_readl(port, ATMEL_US_NAME);
1813 u32 version;
1814 u32 usart, dbgu_uart, new_uart;
1815
1816 usart = 0x55534152;
1817 dbgu_uart = 0x44424755;
1818 new_uart = 0x55415254;
1819
1820
1821
1822
1823
1824
1825
1826 atmel_port->has_frac_baudrate = false;
1827 atmel_port->has_hw_timer = false;
1828
1829 if (name == new_uart) {
1830 dev_dbg(port->dev, "Uart with hw timer");
1831 atmel_port->has_hw_timer = true;
1832 atmel_port->rtor = ATMEL_UA_RTOR;
1833 } else if (name == usart) {
1834 dev_dbg(port->dev, "Usart\n");
1835 atmel_port->has_frac_baudrate = true;
1836 atmel_port->has_hw_timer = true;
1837 atmel_port->rtor = ATMEL_US_RTOR;
1838 version = atmel_uart_readl(port, ATMEL_US_VERSION);
1839 switch (version) {
1840 case 0x814:
1841 fallthrough;
1842 case 0x701:
1843 atmel_port->fidi_min = 3;
1844 atmel_port->fidi_max = 65535;
1845 break;
1846 case 0x502:
1847 atmel_port->fidi_min = 3;
1848 atmel_port->fidi_max = 2047;
1849 break;
1850 default:
1851 atmel_port->fidi_min = 1;
1852 atmel_port->fidi_max = 2047;
1853 }
1854 } else if (name == dbgu_uart) {
1855 dev_dbg(port->dev, "Dbgu or uart without hw timer\n");
1856 } else {
1857
1858 version = atmel_uart_readl(port, ATMEL_US_VERSION);
1859 switch (version) {
1860 case 0x302:
1861 case 0x10213:
1862 case 0x10302:
1863 dev_dbg(port->dev, "This version is usart\n");
1864 atmel_port->has_frac_baudrate = true;
1865 atmel_port->has_hw_timer = true;
1866 atmel_port->rtor = ATMEL_US_RTOR;
1867 break;
1868 case 0x203:
1869 case 0x10202:
1870 dev_dbg(port->dev, "This version is uart\n");
1871 break;
1872 default:
1873 dev_err(port->dev, "Not supported ip name nor version, set to uart\n");
1874 }
1875 }
1876 }
1877
1878
1879
1880
1881 static int atmel_startup(struct uart_port *port)
1882 {
1883 struct platform_device *pdev = to_platform_device(port->dev);
1884 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1885 int retval;
1886
1887
1888
1889
1890
1891
1892 atmel_uart_writel(port, ATMEL_US_IDR, -1);
1893 atmel_port->ms_irq_enabled = false;
1894
1895
1896
1897
1898 retval = request_irq(port->irq, atmel_interrupt,
1899 IRQF_SHARED | IRQF_COND_SUSPEND,
1900 dev_name(&pdev->dev), port);
1901 if (retval) {
1902 dev_err(port->dev, "atmel_startup - Can't get irq\n");
1903 return retval;
1904 }
1905
1906 atomic_set(&atmel_port->tasklet_shutdown, 0);
1907 tasklet_setup(&atmel_port->tasklet_rx, atmel_tasklet_rx_func);
1908 tasklet_setup(&atmel_port->tasklet_tx, atmel_tasklet_tx_func);
1909
1910
1911
1912
1913 atmel_init_property(atmel_port, pdev);
1914 atmel_set_ops(port);
1915
1916 if (atmel_port->prepare_rx) {
1917 retval = atmel_port->prepare_rx(port);
1918 if (retval < 0)
1919 atmel_set_ops(port);
1920 }
1921
1922 if (atmel_port->prepare_tx) {
1923 retval = atmel_port->prepare_tx(port);
1924 if (retval < 0)
1925 atmel_set_ops(port);
1926 }
1927
1928
1929
1930
1931 if (atmel_port->fifo_size) {
1932 unsigned int txrdym = ATMEL_US_ONE_DATA;
1933 unsigned int rxrdym = ATMEL_US_ONE_DATA;
1934 unsigned int fmr;
1935
1936 atmel_uart_writel(port, ATMEL_US_CR,
1937 ATMEL_US_FIFOEN |
1938 ATMEL_US_RXFCLR |
1939 ATMEL_US_TXFLCLR);
1940
1941 if (atmel_use_dma_tx(port))
1942 txrdym = ATMEL_US_FOUR_DATA;
1943
1944 fmr = ATMEL_US_TXRDYM(txrdym) | ATMEL_US_RXRDYM(rxrdym);
1945 if (atmel_port->rts_high &&
1946 atmel_port->rts_low)
1947 fmr |= ATMEL_US_FRTSC |
1948 ATMEL_US_RXFTHRES(atmel_port->rts_high) |
1949 ATMEL_US_RXFTHRES2(atmel_port->rts_low);
1950
1951 atmel_uart_writel(port, ATMEL_US_FMR, fmr);
1952 }
1953
1954
1955 atmel_port->irq_status_prev = atmel_uart_readl(port, ATMEL_US_CSR);
1956
1957
1958
1959
1960 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
1961
1962 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
1963 atmel_port->tx_stopped = false;
1964
1965 timer_setup(&atmel_port->uart_timer, atmel_uart_timer_callback, 0);
1966
1967 if (atmel_use_pdc_rx(port)) {
1968
1969 if (!atmel_port->has_hw_timer) {
1970 mod_timer(&atmel_port->uart_timer,
1971 jiffies + uart_poll_timeout(port));
1972
1973 } else {
1974 atmel_uart_writel(port, atmel_port->rtor,
1975 PDC_RX_TIMEOUT);
1976 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1977
1978 atmel_uart_writel(port, ATMEL_US_IER,
1979 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
1980 }
1981
1982 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
1983 } else if (atmel_use_dma_rx(port)) {
1984
1985 if (!atmel_port->has_hw_timer) {
1986 mod_timer(&atmel_port->uart_timer,
1987 jiffies + uart_poll_timeout(port));
1988
1989 } else {
1990 atmel_uart_writel(port, atmel_port->rtor,
1991 PDC_RX_TIMEOUT);
1992 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1993
1994 atmel_uart_writel(port, ATMEL_US_IER,
1995 ATMEL_US_TIMEOUT);
1996 }
1997 } else {
1998
1999 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
2000 }
2001
2002 return 0;
2003 }
2004
2005
2006
2007
2008
2009 static void atmel_flush_buffer(struct uart_port *port)
2010 {
2011 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2012
2013 if (atmel_use_pdc_tx(port)) {
2014 atmel_uart_writel(port, ATMEL_PDC_TCR, 0);
2015 atmel_port->pdc_tx.ofs = 0;
2016 }
2017
2018
2019
2020
2021 atmel_port->tx_len = 0;
2022 }
2023
2024
2025
2026
2027 static void atmel_shutdown(struct uart_port *port)
2028 {
2029 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2030
2031
2032 atmel_disable_ms(port);
2033
2034
2035 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2036
2037
2038 atomic_inc(&atmel_port->tasklet_shutdown);
2039
2040
2041
2042
2043
2044 del_timer_sync(&atmel_port->uart_timer);
2045
2046
2047 synchronize_irq(port->irq);
2048
2049
2050
2051
2052
2053 tasklet_kill(&atmel_port->tasklet_rx);
2054 tasklet_kill(&atmel_port->tasklet_tx);
2055
2056
2057
2058
2059
2060 atmel_stop_rx(port);
2061 atmel_stop_tx(port);
2062
2063 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
2064
2065
2066
2067
2068 if (atmel_port->release_rx)
2069 atmel_port->release_rx(port);
2070 if (atmel_port->release_tx)
2071 atmel_port->release_tx(port);
2072
2073
2074
2075
2076 atmel_port->rx_ring.head = 0;
2077 atmel_port->rx_ring.tail = 0;
2078
2079
2080
2081
2082 free_irq(port->irq, port);
2083
2084 atmel_flush_buffer(port);
2085 }
2086
2087
2088
2089
2090 static void atmel_serial_pm(struct uart_port *port, unsigned int state,
2091 unsigned int oldstate)
2092 {
2093 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2094
2095 switch (state) {
2096 case UART_PM_STATE_ON:
2097
2098
2099
2100
2101 clk_prepare_enable(atmel_port->clk);
2102
2103
2104 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->backup_imr);
2105 break;
2106 case UART_PM_STATE_OFF:
2107
2108 atmel_port->backup_imr = atmel_uart_readl(port, ATMEL_US_IMR);
2109 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2110
2111
2112
2113
2114
2115 clk_disable_unprepare(atmel_port->clk);
2116 break;
2117 default:
2118 dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
2119 }
2120 }
2121
2122
2123
2124
2125 static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
2126 struct ktermios *old)
2127 {
2128 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2129 unsigned long flags;
2130 unsigned int old_mode, mode, imr, quot, baud, div, cd, fp = 0;
2131
2132
2133 mode = old_mode = atmel_uart_readl(port, ATMEL_US_MR);
2134
2135
2136 mode &= ~(ATMEL_US_USCLKS | ATMEL_US_CHRL | ATMEL_US_NBSTOP |
2137 ATMEL_US_PAR | ATMEL_US_USMODE);
2138
2139 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
2140
2141
2142 switch (termios->c_cflag & CSIZE) {
2143 case CS5:
2144 mode |= ATMEL_US_CHRL_5;
2145 break;
2146 case CS6:
2147 mode |= ATMEL_US_CHRL_6;
2148 break;
2149 case CS7:
2150 mode |= ATMEL_US_CHRL_7;
2151 break;
2152 default:
2153 mode |= ATMEL_US_CHRL_8;
2154 break;
2155 }
2156
2157
2158 if (termios->c_cflag & CSTOPB)
2159 mode |= ATMEL_US_NBSTOP_2;
2160
2161
2162 if (termios->c_cflag & PARENB) {
2163
2164 if (termios->c_cflag & CMSPAR) {
2165 if (termios->c_cflag & PARODD)
2166 mode |= ATMEL_US_PAR_MARK;
2167 else
2168 mode |= ATMEL_US_PAR_SPACE;
2169 } else if (termios->c_cflag & PARODD)
2170 mode |= ATMEL_US_PAR_ODD;
2171 else
2172 mode |= ATMEL_US_PAR_EVEN;
2173 } else
2174 mode |= ATMEL_US_PAR_NONE;
2175
2176 spin_lock_irqsave(&port->lock, flags);
2177
2178 port->read_status_mask = ATMEL_US_OVRE;
2179 if (termios->c_iflag & INPCK)
2180 port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
2181 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
2182 port->read_status_mask |= ATMEL_US_RXBRK;
2183
2184 if (atmel_use_pdc_rx(port))
2185
2186 atmel_uart_writel(port, ATMEL_US_IER, port->read_status_mask);
2187
2188
2189
2190
2191 port->ignore_status_mask = 0;
2192 if (termios->c_iflag & IGNPAR)
2193 port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
2194 if (termios->c_iflag & IGNBRK) {
2195 port->ignore_status_mask |= ATMEL_US_RXBRK;
2196
2197
2198
2199
2200 if (termios->c_iflag & IGNPAR)
2201 port->ignore_status_mask |= ATMEL_US_OVRE;
2202 }
2203
2204
2205
2206 uart_update_timeout(port, termios->c_cflag, baud);
2207
2208
2209
2210
2211
2212
2213 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2214 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2215
2216
2217 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
2218 atmel_port->tx_stopped = true;
2219
2220
2221 if (port->rs485.flags & SER_RS485_ENABLED) {
2222 atmel_uart_writel(port, ATMEL_US_TTGR,
2223 port->rs485.delay_rts_after_send);
2224 mode |= ATMEL_US_USMODE_RS485;
2225 } else if (port->iso7816.flags & SER_ISO7816_ENABLED) {
2226 atmel_uart_writel(port, ATMEL_US_TTGR, port->iso7816.tg);
2227
2228 mode |= ATMEL_US_USCLKS_MCK | ATMEL_US_CLKO;
2229
2230 mode |= ATMEL_US_MAX_ITER(3);
2231 if ((port->iso7816.flags & SER_ISO7816_T_PARAM)
2232 == SER_ISO7816_T(0))
2233 mode |= ATMEL_US_USMODE_ISO7816_T0;
2234 else
2235 mode |= ATMEL_US_USMODE_ISO7816_T1;
2236 } else if (termios->c_cflag & CRTSCTS) {
2237
2238 if (atmel_use_fifo(port) &&
2239 !mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS)) {
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254 mode |= ATMEL_US_USMODE_HWHS;
2255 } else {
2256
2257
2258
2259
2260 mode |= ATMEL_US_USMODE_NORMAL;
2261 }
2262 } else {
2263
2264 mode |= ATMEL_US_USMODE_NORMAL;
2265 }
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277 if (atmel_port->has_frac_baudrate) {
2278 div = DIV_ROUND_CLOSEST(port->uartclk, baud * 2);
2279 cd = div >> 3;
2280 fp = div & ATMEL_US_FP_MASK;
2281 } else {
2282 cd = uart_get_divisor(port, baud);
2283 }
2284
2285 if (cd > 65535) {
2286 cd /= 8;
2287 mode |= ATMEL_US_USCLKS_MCK_DIV8;
2288 }
2289 quot = cd | fp << ATMEL_US_FP_OFFSET;
2290
2291 if (!(port->iso7816.flags & SER_ISO7816_ENABLED))
2292 atmel_uart_writel(port, ATMEL_US_BRGR, quot);
2293
2294
2295 atmel_uart_writel(port, ATMEL_US_MR, mode);
2296
2297
2298
2299
2300
2301 if ((old_mode & ATMEL_US_USMODE) != (mode & ATMEL_US_USMODE)) {
2302 unsigned int rts_state;
2303
2304 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
2305
2306 rts_state = ATMEL_US_RTSDIS;
2307 } else {
2308
2309 rts_state = ATMEL_US_RTSEN;
2310 }
2311
2312 atmel_uart_writel(port, ATMEL_US_CR, rts_state);
2313 }
2314
2315 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2316 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
2317 atmel_port->tx_stopped = false;
2318
2319
2320 atmel_uart_writel(port, ATMEL_US_IER, imr);
2321
2322
2323 if (UART_ENABLE_MS(port, termios->c_cflag))
2324 atmel_enable_ms(port);
2325 else
2326 atmel_disable_ms(port);
2327
2328 spin_unlock_irqrestore(&port->lock, flags);
2329 }
2330
2331 static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios)
2332 {
2333 if (termios->c_line == N_PPS) {
2334 port->flags |= UPF_HARDPPS_CD;
2335 spin_lock_irq(&port->lock);
2336 atmel_enable_ms(port);
2337 spin_unlock_irq(&port->lock);
2338 } else {
2339 port->flags &= ~UPF_HARDPPS_CD;
2340 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2341 spin_lock_irq(&port->lock);
2342 atmel_disable_ms(port);
2343 spin_unlock_irq(&port->lock);
2344 }
2345 }
2346 }
2347
2348
2349
2350
2351 static const char *atmel_type(struct uart_port *port)
2352 {
2353 return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
2354 }
2355
2356
2357
2358
2359 static void atmel_release_port(struct uart_port *port)
2360 {
2361 struct platform_device *mpdev = to_platform_device(port->dev->parent);
2362 int size = resource_size(mpdev->resource);
2363
2364 release_mem_region(port->mapbase, size);
2365
2366 if (port->flags & UPF_IOREMAP) {
2367 iounmap(port->membase);
2368 port->membase = NULL;
2369 }
2370 }
2371
2372
2373
2374
2375 static int atmel_request_port(struct uart_port *port)
2376 {
2377 struct platform_device *mpdev = to_platform_device(port->dev->parent);
2378 int size = resource_size(mpdev->resource);
2379
2380 if (!request_mem_region(port->mapbase, size, "atmel_serial"))
2381 return -EBUSY;
2382
2383 if (port->flags & UPF_IOREMAP) {
2384 port->membase = ioremap(port->mapbase, size);
2385 if (port->membase == NULL) {
2386 release_mem_region(port->mapbase, size);
2387 return -ENOMEM;
2388 }
2389 }
2390
2391 return 0;
2392 }
2393
2394
2395
2396
2397 static void atmel_config_port(struct uart_port *port, int flags)
2398 {
2399 if (flags & UART_CONFIG_TYPE) {
2400 port->type = PORT_ATMEL;
2401 atmel_request_port(port);
2402 }
2403 }
2404
2405
2406
2407
2408 static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
2409 {
2410 int ret = 0;
2411 if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
2412 ret = -EINVAL;
2413 if (port->irq != ser->irq)
2414 ret = -EINVAL;
2415 if (ser->io_type != SERIAL_IO_MEM)
2416 ret = -EINVAL;
2417 if (port->uartclk / 16 != ser->baud_base)
2418 ret = -EINVAL;
2419 if (port->mapbase != (unsigned long)ser->iomem_base)
2420 ret = -EINVAL;
2421 if (port->iobase != ser->port)
2422 ret = -EINVAL;
2423 if (ser->hub6 != 0)
2424 ret = -EINVAL;
2425 return ret;
2426 }
2427
2428 #ifdef CONFIG_CONSOLE_POLL
2429 static int atmel_poll_get_char(struct uart_port *port)
2430 {
2431 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_RXRDY))
2432 cpu_relax();
2433
2434 return atmel_uart_read_char(port);
2435 }
2436
2437 static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
2438 {
2439 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
2440 cpu_relax();
2441
2442 atmel_uart_write_char(port, ch);
2443 }
2444 #endif
2445
2446 static const struct uart_ops atmel_pops = {
2447 .tx_empty = atmel_tx_empty,
2448 .set_mctrl = atmel_set_mctrl,
2449 .get_mctrl = atmel_get_mctrl,
2450 .stop_tx = atmel_stop_tx,
2451 .start_tx = atmel_start_tx,
2452 .stop_rx = atmel_stop_rx,
2453 .enable_ms = atmel_enable_ms,
2454 .break_ctl = atmel_break_ctl,
2455 .startup = atmel_startup,
2456 .shutdown = atmel_shutdown,
2457 .flush_buffer = atmel_flush_buffer,
2458 .set_termios = atmel_set_termios,
2459 .set_ldisc = atmel_set_ldisc,
2460 .type = atmel_type,
2461 .release_port = atmel_release_port,
2462 .request_port = atmel_request_port,
2463 .config_port = atmel_config_port,
2464 .verify_port = atmel_verify_port,
2465 .pm = atmel_serial_pm,
2466 #ifdef CONFIG_CONSOLE_POLL
2467 .poll_get_char = atmel_poll_get_char,
2468 .poll_put_char = atmel_poll_put_char,
2469 #endif
2470 };
2471
2472 static const struct serial_rs485 atmel_rs485_supported = {
2473 .flags = SER_RS485_ENABLED | SER_RS485_RTS_AFTER_SEND | SER_RS485_RX_DURING_TX,
2474 .delay_rts_before_send = 1,
2475 .delay_rts_after_send = 1,
2476 };
2477
2478
2479
2480
2481 static int atmel_init_port(struct atmel_uart_port *atmel_port,
2482 struct platform_device *pdev)
2483 {
2484 int ret;
2485 struct uart_port *port = &atmel_port->uart;
2486 struct platform_device *mpdev = to_platform_device(pdev->dev.parent);
2487
2488 atmel_init_property(atmel_port, pdev);
2489 atmel_set_ops(port);
2490
2491 port->iotype = UPIO_MEM;
2492 port->flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP;
2493 port->ops = &atmel_pops;
2494 port->fifosize = 1;
2495 port->dev = &pdev->dev;
2496 port->mapbase = mpdev->resource[0].start;
2497 port->irq = platform_get_irq(mpdev, 0);
2498 port->rs485_config = atmel_config_rs485;
2499 port->rs485_supported = atmel_rs485_supported;
2500 port->iso7816_config = atmel_config_iso7816;
2501 port->membase = NULL;
2502
2503 memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
2504
2505 ret = uart_get_rs485_mode(port);
2506 if (ret)
2507 return ret;
2508
2509 port->uartclk = clk_get_rate(atmel_port->clk);
2510
2511
2512
2513
2514
2515 if (atmel_uart_is_half_duplex(port))
2516 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
2517 else if (atmel_use_pdc_tx(port)) {
2518 port->fifosize = PDC_BUFFER_SIZE;
2519 atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
2520 } else {
2521 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
2522 }
2523
2524 return 0;
2525 }
2526
2527 #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
2528 static void atmel_console_putchar(struct uart_port *port, unsigned char ch)
2529 {
2530 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
2531 cpu_relax();
2532 atmel_uart_write_char(port, ch);
2533 }
2534
2535
2536
2537
2538 static void atmel_console_write(struct console *co, const char *s, u_int count)
2539 {
2540 struct uart_port *port = &atmel_ports[co->index].uart;
2541 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2542 unsigned int status, imr;
2543 unsigned int pdc_tx;
2544
2545
2546
2547
2548 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2549 atmel_uart_writel(port, ATMEL_US_IDR,
2550 ATMEL_US_RXRDY | atmel_port->tx_done_mask);
2551
2552
2553 pdc_tx = atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN;
2554 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
2555
2556
2557 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN);
2558 atmel_port->tx_stopped = false;
2559
2560 uart_console_write(port, s, count, atmel_console_putchar);
2561
2562
2563
2564
2565
2566 do {
2567 status = atmel_uart_readl(port, ATMEL_US_CSR);
2568 } while (!(status & ATMEL_US_TXRDY));
2569
2570
2571 if (pdc_tx)
2572 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
2573
2574
2575 atmel_uart_writel(port, ATMEL_US_IER, imr);
2576 }
2577
2578
2579
2580
2581
2582 static void __init atmel_console_get_options(struct uart_port *port, int *baud,
2583 int *parity, int *bits)
2584 {
2585 unsigned int mr, quot;
2586
2587
2588
2589
2590
2591 quot = atmel_uart_readl(port, ATMEL_US_BRGR) & ATMEL_US_CD;
2592 if (!quot)
2593 return;
2594
2595 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_CHRL;
2596 if (mr == ATMEL_US_CHRL_8)
2597 *bits = 8;
2598 else
2599 *bits = 7;
2600
2601 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_PAR;
2602 if (mr == ATMEL_US_PAR_EVEN)
2603 *parity = 'e';
2604 else if (mr == ATMEL_US_PAR_ODD)
2605 *parity = 'o';
2606
2607
2608
2609
2610
2611
2612
2613 *baud = port->uartclk / (16 * (quot - 1));
2614 }
2615
2616 static int __init atmel_console_setup(struct console *co, char *options)
2617 {
2618 struct uart_port *port = &atmel_ports[co->index].uart;
2619 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2620 int baud = 115200;
2621 int bits = 8;
2622 int parity = 'n';
2623 int flow = 'n';
2624
2625 if (port->membase == NULL) {
2626
2627 return -ENODEV;
2628 }
2629
2630 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2631 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2632 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
2633 atmel_port->tx_stopped = false;
2634
2635 if (options)
2636 uart_parse_options(options, &baud, &parity, &bits, &flow);
2637 else
2638 atmel_console_get_options(port, &baud, &parity, &bits);
2639
2640 return uart_set_options(port, co, baud, parity, bits, flow);
2641 }
2642
2643 static struct uart_driver atmel_uart;
2644
2645 static struct console atmel_console = {
2646 .name = ATMEL_DEVICENAME,
2647 .write = atmel_console_write,
2648 .device = uart_console_device,
2649 .setup = atmel_console_setup,
2650 .flags = CON_PRINTBUFFER,
2651 .index = -1,
2652 .data = &atmel_uart,
2653 };
2654
2655 static void atmel_serial_early_write(struct console *con, const char *s,
2656 unsigned int n)
2657 {
2658 struct earlycon_device *dev = con->data;
2659
2660 uart_console_write(&dev->port, s, n, atmel_console_putchar);
2661 }
2662
2663 static int __init atmel_early_console_setup(struct earlycon_device *device,
2664 const char *options)
2665 {
2666 if (!device->port.membase)
2667 return -ENODEV;
2668
2669 device->con->write = atmel_serial_early_write;
2670
2671 return 0;
2672 }
2673
2674 OF_EARLYCON_DECLARE(atmel_serial, "atmel,at91rm9200-usart",
2675 atmel_early_console_setup);
2676 OF_EARLYCON_DECLARE(atmel_serial, "atmel,at91sam9260-usart",
2677 atmel_early_console_setup);
2678
2679 #define ATMEL_CONSOLE_DEVICE (&atmel_console)
2680
2681 #else
2682 #define ATMEL_CONSOLE_DEVICE NULL
2683 #endif
2684
2685 static struct uart_driver atmel_uart = {
2686 .owner = THIS_MODULE,
2687 .driver_name = "atmel_serial",
2688 .dev_name = ATMEL_DEVICENAME,
2689 .major = SERIAL_ATMEL_MAJOR,
2690 .minor = MINOR_START,
2691 .nr = ATMEL_MAX_UART,
2692 .cons = ATMEL_CONSOLE_DEVICE,
2693 };
2694
2695 static bool atmel_serial_clk_will_stop(void)
2696 {
2697 #ifdef CONFIG_ARCH_AT91
2698 return at91_suspend_entering_slow_clock();
2699 #else
2700 return false;
2701 #endif
2702 }
2703
2704 static int __maybe_unused atmel_serial_suspend(struct device *dev)
2705 {
2706 struct uart_port *port = dev_get_drvdata(dev);
2707 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2708
2709 if (uart_console(port) && console_suspend_enabled) {
2710
2711 while (!(atmel_uart_readl(port, ATMEL_US_CSR) &
2712 ATMEL_US_TXEMPTY))
2713 cpu_relax();
2714 }
2715
2716 if (uart_console(port) && !console_suspend_enabled) {
2717
2718
2719
2720 atmel_port->cache.mr = atmel_uart_readl(port, ATMEL_US_MR);
2721 atmel_port->cache.imr = atmel_uart_readl(port, ATMEL_US_IMR);
2722 atmel_port->cache.brgr = atmel_uart_readl(port, ATMEL_US_BRGR);
2723 atmel_port->cache.rtor = atmel_uart_readl(port,
2724 atmel_port->rtor);
2725 atmel_port->cache.ttgr = atmel_uart_readl(port, ATMEL_US_TTGR);
2726 atmel_port->cache.fmr = atmel_uart_readl(port, ATMEL_US_FMR);
2727 atmel_port->cache.fimr = atmel_uart_readl(port, ATMEL_US_FIMR);
2728 }
2729
2730
2731 atmel_port->may_wakeup = device_may_wakeup(dev);
2732 if (atmel_serial_clk_will_stop()) {
2733 unsigned long flags;
2734
2735 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2736 atmel_port->suspended = true;
2737 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
2738 device_set_wakeup_enable(dev, 0);
2739 }
2740
2741 uart_suspend_port(&atmel_uart, port);
2742
2743 return 0;
2744 }
2745
2746 static int __maybe_unused atmel_serial_resume(struct device *dev)
2747 {
2748 struct uart_port *port = dev_get_drvdata(dev);
2749 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2750 unsigned long flags;
2751
2752 if (uart_console(port) && !console_suspend_enabled) {
2753 atmel_uart_writel(port, ATMEL_US_MR, atmel_port->cache.mr);
2754 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->cache.imr);
2755 atmel_uart_writel(port, ATMEL_US_BRGR, atmel_port->cache.brgr);
2756 atmel_uart_writel(port, atmel_port->rtor,
2757 atmel_port->cache.rtor);
2758 atmel_uart_writel(port, ATMEL_US_TTGR, atmel_port->cache.ttgr);
2759
2760 if (atmel_port->fifo_size) {
2761 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_FIFOEN |
2762 ATMEL_US_RXFCLR | ATMEL_US_TXFLCLR);
2763 atmel_uart_writel(port, ATMEL_US_FMR,
2764 atmel_port->cache.fmr);
2765 atmel_uart_writel(port, ATMEL_US_FIER,
2766 atmel_port->cache.fimr);
2767 }
2768 atmel_start_rx(port);
2769 }
2770
2771 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2772 if (atmel_port->pending) {
2773 atmel_handle_receive(port, atmel_port->pending);
2774 atmel_handle_status(port, atmel_port->pending,
2775 atmel_port->pending_status);
2776 atmel_handle_transmit(port, atmel_port->pending);
2777 atmel_port->pending = 0;
2778 }
2779 atmel_port->suspended = false;
2780 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
2781
2782 uart_resume_port(&atmel_uart, port);
2783 device_set_wakeup_enable(dev, atmel_port->may_wakeup);
2784
2785 return 0;
2786 }
2787
2788 static void atmel_serial_probe_fifos(struct atmel_uart_port *atmel_port,
2789 struct platform_device *pdev)
2790 {
2791 atmel_port->fifo_size = 0;
2792 atmel_port->rts_low = 0;
2793 atmel_port->rts_high = 0;
2794
2795 if (of_property_read_u32(pdev->dev.of_node,
2796 "atmel,fifo-size",
2797 &atmel_port->fifo_size))
2798 return;
2799
2800 if (!atmel_port->fifo_size)
2801 return;
2802
2803 if (atmel_port->fifo_size < ATMEL_MIN_FIFO_SIZE) {
2804 atmel_port->fifo_size = 0;
2805 dev_err(&pdev->dev, "Invalid FIFO size\n");
2806 return;
2807 }
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817 atmel_port->rts_high = max_t(int, atmel_port->fifo_size >> 1,
2818 atmel_port->fifo_size - ATMEL_RTS_HIGH_OFFSET);
2819 atmel_port->rts_low = max_t(int, atmel_port->fifo_size >> 2,
2820 atmel_port->fifo_size - ATMEL_RTS_LOW_OFFSET);
2821
2822 dev_info(&pdev->dev, "Using FIFO (%u data)\n",
2823 atmel_port->fifo_size);
2824 dev_dbg(&pdev->dev, "RTS High Threshold : %2u data\n",
2825 atmel_port->rts_high);
2826 dev_dbg(&pdev->dev, "RTS Low Threshold : %2u data\n",
2827 atmel_port->rts_low);
2828 }
2829
2830 static int atmel_serial_probe(struct platform_device *pdev)
2831 {
2832 struct atmel_uart_port *atmel_port;
2833 struct device_node *np = pdev->dev.parent->of_node;
2834 void *data;
2835 int ret;
2836 bool rs485_enabled;
2837
2838 BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
2839
2840
2841
2842
2843
2844
2845
2846
2847 pdev->dev.of_node = np;
2848
2849 ret = of_alias_get_id(np, "serial");
2850 if (ret < 0)
2851
2852
2853 ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
2854
2855 if (ret >= ATMEL_MAX_UART) {
2856 ret = -ENODEV;
2857 goto err;
2858 }
2859
2860 if (test_and_set_bit(ret, atmel_ports_in_use)) {
2861
2862 ret = -EBUSY;
2863 goto err;
2864 }
2865
2866 atmel_port = &atmel_ports[ret];
2867 atmel_port->backup_imr = 0;
2868 atmel_port->uart.line = ret;
2869 atmel_port->uart.has_sysrq = IS_ENABLED(CONFIG_SERIAL_ATMEL_CONSOLE);
2870 atmel_serial_probe_fifos(atmel_port, pdev);
2871
2872 atomic_set(&atmel_port->tasklet_shutdown, 0);
2873 spin_lock_init(&atmel_port->lock_suspended);
2874
2875 atmel_port->clk = devm_clk_get(&pdev->dev, "usart");
2876 if (IS_ERR(atmel_port->clk)) {
2877 ret = PTR_ERR(atmel_port->clk);
2878 goto err;
2879 }
2880 ret = clk_prepare_enable(atmel_port->clk);
2881 if (ret)
2882 goto err;
2883
2884 ret = atmel_init_port(atmel_port, pdev);
2885 if (ret)
2886 goto err_clk_disable_unprepare;
2887
2888 atmel_port->gpios = mctrl_gpio_init(&atmel_port->uart, 0);
2889 if (IS_ERR(atmel_port->gpios)) {
2890 ret = PTR_ERR(atmel_port->gpios);
2891 goto err_clk_disable_unprepare;
2892 }
2893
2894 if (!atmel_use_pdc_rx(&atmel_port->uart)) {
2895 ret = -ENOMEM;
2896 data = kmalloc_array(ATMEL_SERIAL_RINGSIZE,
2897 sizeof(struct atmel_uart_char),
2898 GFP_KERNEL);
2899 if (!data)
2900 goto err_clk_disable_unprepare;
2901 atmel_port->rx_ring.buf = data;
2902 }
2903
2904 rs485_enabled = atmel_port->uart.rs485.flags & SER_RS485_ENABLED;
2905
2906 ret = uart_add_one_port(&atmel_uart, &atmel_port->uart);
2907 if (ret)
2908 goto err_add_port;
2909
2910 device_init_wakeup(&pdev->dev, 1);
2911 platform_set_drvdata(pdev, atmel_port);
2912
2913 if (rs485_enabled) {
2914 atmel_uart_writel(&atmel_port->uart, ATMEL_US_MR,
2915 ATMEL_US_USMODE_NORMAL);
2916 atmel_uart_writel(&atmel_port->uart, ATMEL_US_CR,
2917 ATMEL_US_RTSEN);
2918 }
2919
2920
2921
2922
2923 atmel_get_ip_name(&atmel_port->uart);
2924
2925
2926
2927
2928
2929 clk_disable_unprepare(atmel_port->clk);
2930
2931 return 0;
2932
2933 err_add_port:
2934 kfree(atmel_port->rx_ring.buf);
2935 atmel_port->rx_ring.buf = NULL;
2936 err_clk_disable_unprepare:
2937 clk_disable_unprepare(atmel_port->clk);
2938 clear_bit(atmel_port->uart.line, atmel_ports_in_use);
2939 err:
2940 return ret;
2941 }
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952 static int atmel_serial_remove(struct platform_device *pdev)
2953 {
2954 struct uart_port *port = platform_get_drvdata(pdev);
2955 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2956 int ret = 0;
2957
2958 tasklet_kill(&atmel_port->tasklet_rx);
2959 tasklet_kill(&atmel_port->tasklet_tx);
2960
2961 device_init_wakeup(&pdev->dev, 0);
2962
2963 ret = uart_remove_one_port(&atmel_uart, port);
2964
2965 kfree(atmel_port->rx_ring.buf);
2966
2967
2968
2969 clear_bit(port->line, atmel_ports_in_use);
2970
2971 pdev->dev.of_node = NULL;
2972
2973 return ret;
2974 }
2975
2976 static SIMPLE_DEV_PM_OPS(atmel_serial_pm_ops, atmel_serial_suspend,
2977 atmel_serial_resume);
2978
2979 static struct platform_driver atmel_serial_driver = {
2980 .probe = atmel_serial_probe,
2981 .remove = atmel_serial_remove,
2982 .driver = {
2983 .name = "atmel_usart_serial",
2984 .of_match_table = of_match_ptr(atmel_serial_dt_ids),
2985 .pm = pm_ptr(&atmel_serial_pm_ops),
2986 },
2987 };
2988
2989 static int __init atmel_serial_init(void)
2990 {
2991 int ret;
2992
2993 ret = uart_register_driver(&atmel_uart);
2994 if (ret)
2995 return ret;
2996
2997 ret = platform_driver_register(&atmel_serial_driver);
2998 if (ret)
2999 uart_unregister_driver(&atmel_uart);
3000
3001 return ret;
3002 }
3003 device_initcall(atmel_serial_init);