arc_uart.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. /*
  2. * ARC On-Chip(fpga) UART Driver
  3. *
  4. * Copyright (C) 2010-2012 Synopsys, Inc. (www.synopsys.com)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * vineetg: July 10th 2012
  11. * -Decoupled the driver from arch/arc
  12. * +Using platform_get_resource() for irq/membase (thx to bfin_uart.c)
  13. * +Using early_platform_xxx() for early console (thx to mach-shmobile/xxx)
  14. *
  15. * Vineetg: Aug 21st 2010
  16. * -Is uart_tx_stopped() not done in tty write path as it has already been
  17. * taken care of, in serial core
  18. *
  19. * Vineetg: Aug 18th 2010
  20. * -New Serial Core based ARC UART driver
  21. * -Derived largely from blackfin driver albiet with some major tweaks
  22. *
  23. * TODO:
  24. * -check if sysreq works
  25. */
  26. #if defined(CONFIG_SERIAL_ARC_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
  27. #define SUPPORT_SYSRQ
  28. #endif
  29. #include <linux/module.h>
  30. #include <linux/serial.h>
  31. #include <linux/console.h>
  32. #include <linux/sysrq.h>
  33. #include <linux/platform_device.h>
  34. #include <linux/tty.h>
  35. #include <linux/tty_flip.h>
  36. #include <linux/serial_core.h>
  37. #include <linux/io.h>
  38. #include <linux/of.h>
  39. #include <linux/of_platform.h>
  40. /*************************************
  41. * ARC UART Hardware Specs
  42. ************************************/
  43. #define ARC_UART_TX_FIFO_SIZE 1
  44. /*
  45. * UART Register set (this is not a Standards Compliant IP)
  46. * Also each reg is Word aligned, but only 8 bits wide
  47. */
  48. #define R_ID0 0
  49. #define R_ID1 4
  50. #define R_ID2 8
  51. #define R_ID3 12
  52. #define R_DATA 16
  53. #define R_STS 20
  54. #define R_BAUDL 24
  55. #define R_BAUDH 28
  56. /* Bits for UART Status Reg (R/W) */
  57. #define RXIENB 0x04 /* Receive Interrupt Enable */
  58. #define TXIENB 0x40 /* Transmit Interrupt Enable */
  59. #define RXEMPTY 0x20 /* Receive FIFO Empty: No char receivede */
  60. #define TXEMPTY 0x80 /* Transmit FIFO Empty, thus char can be written into */
  61. #define RXFULL 0x08 /* Receive FIFO full */
  62. #define RXFULL1 0x10 /* Receive FIFO has space for 1 char (tot space=4) */
  63. #define RXFERR 0x01 /* Frame Error: Stop Bit not detected */
  64. #define RXOERR 0x02 /* OverFlow Err: Char recv but RXFULL still set */
  65. /* Uart bit fiddling helpers: lowest level */
  66. #define RBASE(uart, reg) (uart->port.membase + reg)
  67. #define UART_REG_SET(u, r, v) writeb((v), RBASE(u, r))
  68. #define UART_REG_GET(u, r) readb(RBASE(u, r))
  69. #define UART_REG_OR(u, r, v) UART_REG_SET(u, r, UART_REG_GET(u, r) | (v))
  70. #define UART_REG_CLR(u, r, v) UART_REG_SET(u, r, UART_REG_GET(u, r) & ~(v))
  71. /* Uart bit fiddling helpers: API level */
  72. #define UART_SET_DATA(uart, val) UART_REG_SET(uart, R_DATA, val)
  73. #define UART_GET_DATA(uart) UART_REG_GET(uart, R_DATA)
  74. #define UART_SET_BAUDH(uart, val) UART_REG_SET(uart, R_BAUDH, val)
  75. #define UART_SET_BAUDL(uart, val) UART_REG_SET(uart, R_BAUDL, val)
  76. #define UART_CLR_STATUS(uart, val) UART_REG_CLR(uart, R_STS, val)
  77. #define UART_GET_STATUS(uart) UART_REG_GET(uart, R_STS)
  78. #define UART_ALL_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, RXIENB|TXIENB)
  79. #define UART_RX_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, RXIENB)
  80. #define UART_TX_IRQ_DISABLE(uart) UART_REG_CLR(uart, R_STS, TXIENB)
  81. #define UART_ALL_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, RXIENB|TXIENB)
  82. #define UART_RX_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, RXIENB)
  83. #define UART_TX_IRQ_ENABLE(uart) UART_REG_OR(uart, R_STS, TXIENB)
  84. #define ARC_SERIAL_DEV_NAME "ttyARC"
  85. struct arc_uart_port {
  86. struct uart_port port;
  87. unsigned long baud;
  88. int is_emulated; /* H/w vs. Instruction Set Simulator */
  89. };
  90. #define to_arc_port(uport) container_of(uport, struct arc_uart_port, port)
  91. static struct arc_uart_port arc_uart_ports[CONFIG_SERIAL_ARC_NR_PORTS];
  92. #ifdef CONFIG_SERIAL_ARC_CONSOLE
  93. static struct console arc_console;
  94. #endif
  95. #define DRIVER_NAME "arc-uart"
  96. static struct uart_driver arc_uart_driver = {
  97. .owner = THIS_MODULE,
  98. .driver_name = DRIVER_NAME,
  99. .dev_name = ARC_SERIAL_DEV_NAME,
  100. .major = 0,
  101. .minor = 0,
  102. .nr = CONFIG_SERIAL_ARC_NR_PORTS,
  103. #ifdef CONFIG_SERIAL_ARC_CONSOLE
  104. .cons = &arc_console,
  105. #endif
  106. };
  107. static void arc_serial_stop_rx(struct uart_port *port)
  108. {
  109. struct arc_uart_port *uart = to_arc_port(port);
  110. UART_RX_IRQ_DISABLE(uart);
  111. }
  112. static void arc_serial_stop_tx(struct uart_port *port)
  113. {
  114. struct arc_uart_port *uart = to_arc_port(port);
  115. while (!(UART_GET_STATUS(uart) & TXEMPTY))
  116. cpu_relax();
  117. UART_TX_IRQ_DISABLE(uart);
  118. }
  119. /*
  120. * Return TIOCSER_TEMT when transmitter is not busy.
  121. */
  122. static unsigned int arc_serial_tx_empty(struct uart_port *port)
  123. {
  124. struct arc_uart_port *uart = to_arc_port(port);
  125. unsigned int stat;
  126. stat = UART_GET_STATUS(uart);
  127. if (stat & TXEMPTY)
  128. return TIOCSER_TEMT;
  129. return 0;
  130. }
  131. /*
  132. * Driver internal routine, used by both tty(serial core) as well as tx-isr
  133. * -Called under spinlock in either cases
  134. * -also tty->stopped / tty->hw_stopped has already been checked
  135. * = by uart_start( ) before calling us
  136. * = tx_ist checks that too before calling
  137. */
  138. static void arc_serial_tx_chars(struct arc_uart_port *uart)
  139. {
  140. struct circ_buf *xmit = &uart->port.state->xmit;
  141. int sent = 0;
  142. unsigned char ch;
  143. if (unlikely(uart->port.x_char)) {
  144. UART_SET_DATA(uart, uart->port.x_char);
  145. uart->port.icount.tx++;
  146. uart->port.x_char = 0;
  147. sent = 1;
  148. } else if (xmit->tail != xmit->head) { /* TODO: uart_circ_empty */
  149. ch = xmit->buf[xmit->tail];
  150. xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
  151. uart->port.icount.tx++;
  152. while (!(UART_GET_STATUS(uart) & TXEMPTY))
  153. cpu_relax();
  154. UART_SET_DATA(uart, ch);
  155. sent = 1;
  156. }
  157. /*
  158. * If num chars in xmit buffer are too few, ask tty layer for more.
  159. * By Hard ISR to schedule processing in software interrupt part
  160. */
  161. if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
  162. uart_write_wakeup(&uart->port);
  163. if (sent)
  164. UART_TX_IRQ_ENABLE(uart);
  165. }
  166. /*
  167. * port is locked and interrupts are disabled
  168. * uart_start( ) calls us under the port spinlock irqsave
  169. */
  170. static void arc_serial_start_tx(struct uart_port *port)
  171. {
  172. struct arc_uart_port *uart = to_arc_port(port);
  173. arc_serial_tx_chars(uart);
  174. }
  175. static void arc_serial_rx_chars(struct arc_uart_port *uart)
  176. {
  177. unsigned int status, ch, flg = 0;
  178. /*
  179. * UART has 4 deep RX-FIFO. Driver's recongnition of this fact
  180. * is very subtle. Here's how ...
  181. * Upon getting a RX-Intr, such that RX-EMPTY=0, meaning data available,
  182. * driver reads the DATA Reg and keeps doing that in a loop, until
  183. * RX-EMPTY=1. Multiple chars being avail, with a single Interrupt,
  184. * before RX-EMPTY=0, implies some sort of buffering going on in the
  185. * controller, which is indeed the Rx-FIFO.
  186. */
  187. while (!((status = UART_GET_STATUS(uart)) & RXEMPTY)) {
  188. ch = UART_GET_DATA(uart);
  189. uart->port.icount.rx++;
  190. if (unlikely(status & (RXOERR | RXFERR))) {
  191. if (status & RXOERR) {
  192. uart->port.icount.overrun++;
  193. flg = TTY_OVERRUN;
  194. UART_CLR_STATUS(uart, RXOERR);
  195. }
  196. if (status & RXFERR) {
  197. uart->port.icount.frame++;
  198. flg = TTY_FRAME;
  199. UART_CLR_STATUS(uart, RXFERR);
  200. }
  201. } else
  202. flg = TTY_NORMAL;
  203. if (unlikely(uart_handle_sysrq_char(&uart->port, ch)))
  204. goto done;
  205. uart_insert_char(&uart->port, status, RXOERR, ch, flg);
  206. done:
  207. tty_flip_buffer_push(&uart->port.state->port);
  208. }
  209. }
  210. /*
  211. * A note on the Interrupt handling state machine of this driver
  212. *
  213. * kernel printk writes funnel thru the console driver framework and in order
  214. * to keep things simple as well as efficient, it writes to UART in polled
  215. * mode, in one shot, and exits.
  216. *
  217. * OTOH, Userland output (via tty layer), uses interrupt based writes as there
  218. * can be undeterministic delay between char writes.
  219. *
  220. * Thus Rx-interrupts are always enabled, while tx-interrupts are by default
  221. * disabled.
  222. *
  223. * When tty has some data to send out, serial core calls driver's start_tx
  224. * which
  225. * -checks-if-tty-buffer-has-char-to-send
  226. * -writes-data-to-uart
  227. * -enable-tx-intr
  228. *
  229. * Once data bits are pushed out, controller raises the Tx-room-avail-Interrupt.
  230. * The first thing Tx ISR does is disable further Tx interrupts (as this could
  231. * be the last char to send, before settling down into the quiet polled mode).
  232. * It then calls the exact routine used by tty layer write to send out any
  233. * more char in tty buffer. In case of sending, it re-enables Tx-intr. In case
  234. * of no data, it remains disabled.
  235. * This is how the transmit state machine is dynamically switched on/off
  236. */
  237. static irqreturn_t arc_serial_isr(int irq, void *dev_id)
  238. {
  239. struct arc_uart_port *uart = dev_id;
  240. unsigned int status;
  241. status = UART_GET_STATUS(uart);
  242. /*
  243. * Single IRQ for both Rx (data available) Tx (room available) Interrupt
  244. * notifications from the UART Controller.
  245. * To demultiplex between the two, we check the relevant bits
  246. */
  247. if ((status & RXIENB) && !(status & RXEMPTY)) {
  248. /* already in ISR, no need of xx_irqsave */
  249. spin_lock(&uart->port.lock);
  250. arc_serial_rx_chars(uart);
  251. spin_unlock(&uart->port.lock);
  252. }
  253. if ((status & TXIENB) && (status & TXEMPTY)) {
  254. /* Unconditionally disable further Tx-Interrupts.
  255. * will be enabled by tx_chars() if needed.
  256. */
  257. UART_TX_IRQ_DISABLE(uart);
  258. spin_lock(&uart->port.lock);
  259. if (!uart_tx_stopped(&uart->port))
  260. arc_serial_tx_chars(uart);
  261. spin_unlock(&uart->port.lock);
  262. }
  263. return IRQ_HANDLED;
  264. }
  265. static unsigned int arc_serial_get_mctrl(struct uart_port *port)
  266. {
  267. /*
  268. * Pretend we have a Modem status reg and following bits are
  269. * always set, to satify the serial core state machine
  270. * (DSR) Data Set Ready
  271. * (CTS) Clear To Send
  272. * (CAR) Carrier Detect
  273. */
  274. return TIOCM_CTS | TIOCM_DSR | TIOCM_CAR;
  275. }
  276. static void arc_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
  277. {
  278. /* MCR not present */
  279. }
  280. /* Enable Modem Status Interrupts */
  281. static void arc_serial_enable_ms(struct uart_port *port)
  282. {
  283. /* MSR not present */
  284. }
  285. static void arc_serial_break_ctl(struct uart_port *port, int break_state)
  286. {
  287. /* ARC UART doesn't support sending Break signal */
  288. }
  289. static int arc_serial_startup(struct uart_port *port)
  290. {
  291. struct arc_uart_port *uart = to_arc_port(port);
  292. /* Before we hook up the ISR, Disable all UART Interrupts */
  293. UART_ALL_IRQ_DISABLE(uart);
  294. if (request_irq(uart->port.irq, arc_serial_isr, 0, "arc uart rx-tx",
  295. uart)) {
  296. dev_warn(uart->port.dev, "Unable to attach ARC UART intr\n");
  297. return -EBUSY;
  298. }
  299. UART_RX_IRQ_ENABLE(uart); /* Only Rx IRQ enabled to begin with */
  300. return 0;
  301. }
  302. /* This is not really needed */
  303. static void arc_serial_shutdown(struct uart_port *port)
  304. {
  305. struct arc_uart_port *uart = to_arc_port(port);
  306. free_irq(uart->port.irq, uart);
  307. }
  308. static void
  309. arc_serial_set_termios(struct uart_port *port, struct ktermios *new,
  310. struct ktermios *old)
  311. {
  312. struct arc_uart_port *uart = to_arc_port(port);
  313. unsigned int baud, uartl, uarth, hw_val;
  314. unsigned long flags;
  315. /*
  316. * Use the generic handler so that any specially encoded baud rates
  317. * such as SPD_xx flags or "%B0" can be handled
  318. * Max Baud I suppose will not be more than current 115K * 4
  319. * Formula for ARC UART is: hw-val = ((CLK/(BAUD*4)) -1)
  320. * spread over two 8-bit registers
  321. */
  322. baud = uart_get_baud_rate(port, new, old, 0, 460800);
  323. hw_val = port->uartclk / (uart->baud * 4) - 1;
  324. uartl = hw_val & 0xFF;
  325. uarth = (hw_val >> 8) & 0xFF;
  326. /*
  327. * UART ISS(Instruction Set simulator) emulation has a subtle bug:
  328. * A existing value of Baudh = 0 is used as a indication to startup
  329. * it's internal state machine.
  330. * Thus if baudh is set to 0, 2 times, it chokes.
  331. * This happens with BAUD=115200 and the formaula above
  332. * Until that is fixed, when running on ISS, we will set baudh to !0
  333. */
  334. if (uart->is_emulated)
  335. uarth = 1;
  336. spin_lock_irqsave(&port->lock, flags);
  337. UART_ALL_IRQ_DISABLE(uart);
  338. UART_SET_BAUDL(uart, uartl);
  339. UART_SET_BAUDH(uart, uarth);
  340. UART_RX_IRQ_ENABLE(uart);
  341. /*
  342. * UART doesn't support Parity/Hardware Flow Control;
  343. * Only supports 8N1 character size
  344. */
  345. new->c_cflag &= ~(CMSPAR|CRTSCTS|CSIZE);
  346. new->c_cflag |= CS8;
  347. if (old)
  348. tty_termios_copy_hw(new, old);
  349. /* Don't rewrite B0 */
  350. if (tty_termios_baud_rate(new))
  351. tty_termios_encode_baud_rate(new, baud, baud);
  352. uart_update_timeout(port, new->c_cflag, baud);
  353. spin_unlock_irqrestore(&port->lock, flags);
  354. }
  355. static const char *arc_serial_type(struct uart_port *port)
  356. {
  357. struct arc_uart_port *uart = to_arc_port(port);
  358. return uart->port.type == PORT_ARC ? DRIVER_NAME : NULL;
  359. }
  360. static void arc_serial_release_port(struct uart_port *port)
  361. {
  362. }
  363. static int arc_serial_request_port(struct uart_port *port)
  364. {
  365. return 0;
  366. }
  367. /*
  368. * Verify the new serial_struct (for TIOCSSERIAL).
  369. */
  370. static int
  371. arc_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
  372. {
  373. if (port->type != PORT_UNKNOWN && ser->type != PORT_ARC)
  374. return -EINVAL;
  375. return 0;
  376. }
  377. /*
  378. * Configure/autoconfigure the port.
  379. */
  380. static void arc_serial_config_port(struct uart_port *port, int flags)
  381. {
  382. struct arc_uart_port *uart = to_arc_port(port);
  383. if (flags & UART_CONFIG_TYPE)
  384. uart->port.type = PORT_ARC;
  385. }
  386. #if defined(CONFIG_CONSOLE_POLL) || defined(CONFIG_SERIAL_ARC_CONSOLE)
  387. static void arc_serial_poll_putchar(struct uart_port *port, unsigned char chr)
  388. {
  389. struct arc_uart_port *uart = to_arc_port(port);
  390. while (!(UART_GET_STATUS(uart) & TXEMPTY))
  391. cpu_relax();
  392. UART_SET_DATA(uart, chr);
  393. }
  394. #endif
  395. #ifdef CONFIG_CONSOLE_POLL
  396. static int arc_serial_poll_getchar(struct uart_port *port)
  397. {
  398. struct arc_uart_port *uart = to_arc_port(port);
  399. unsigned char chr;
  400. while (!(UART_GET_STATUS(uart) & RXEMPTY))
  401. cpu_relax();
  402. chr = UART_GET_DATA(uart);
  403. return chr;
  404. }
  405. #endif
  406. static struct uart_ops arc_serial_pops = {
  407. .tx_empty = arc_serial_tx_empty,
  408. .set_mctrl = arc_serial_set_mctrl,
  409. .get_mctrl = arc_serial_get_mctrl,
  410. .stop_tx = arc_serial_stop_tx,
  411. .start_tx = arc_serial_start_tx,
  412. .stop_rx = arc_serial_stop_rx,
  413. .enable_ms = arc_serial_enable_ms,
  414. .break_ctl = arc_serial_break_ctl,
  415. .startup = arc_serial_startup,
  416. .shutdown = arc_serial_shutdown,
  417. .set_termios = arc_serial_set_termios,
  418. .type = arc_serial_type,
  419. .release_port = arc_serial_release_port,
  420. .request_port = arc_serial_request_port,
  421. .config_port = arc_serial_config_port,
  422. .verify_port = arc_serial_verify_port,
  423. #ifdef CONFIG_CONSOLE_POLL
  424. .poll_put_char = arc_serial_poll_putchar,
  425. .poll_get_char = arc_serial_poll_getchar,
  426. #endif
  427. };
  428. static int
  429. arc_uart_init_one(struct platform_device *pdev, int dev_id)
  430. {
  431. struct resource *res, *res2;
  432. unsigned long *plat_data;
  433. struct arc_uart_port *uart = &arc_uart_ports[dev_id];
  434. plat_data = ((unsigned long *)(pdev->dev.platform_data));
  435. if (!plat_data)
  436. return -ENODEV;
  437. uart->is_emulated = !!plat_data[0]; /* workaround ISS bug */
  438. if (is_early_platform_device(pdev)) {
  439. uart->port.uartclk = plat_data[1];
  440. uart->baud = plat_data[2];
  441. } else {
  442. struct device_node *np = pdev->dev.of_node;
  443. u32 val;
  444. if (of_property_read_u32(np, "clock-frequency", &val)) {
  445. dev_err(&pdev->dev, "clock-frequency property NOTset\n");
  446. return -EINVAL;
  447. }
  448. uart->port.uartclk = val;
  449. if (of_property_read_u32(np, "current-speed", &val)) {
  450. dev_err(&pdev->dev, "current-speed property NOT set\n");
  451. return -EINVAL;
  452. }
  453. uart->baud = val;
  454. }
  455. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  456. if (!res)
  457. return -ENODEV;
  458. res2 = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
  459. if (!res2)
  460. return -ENODEV;
  461. uart->port.mapbase = res->start;
  462. uart->port.membase = ioremap_nocache(res->start, resource_size(res));
  463. if (!uart->port.membase)
  464. /* No point of dev_err since UART itself is hosed here */
  465. return -ENXIO;
  466. uart->port.irq = res2->start;
  467. uart->port.dev = &pdev->dev;
  468. uart->port.iotype = UPIO_MEM;
  469. uart->port.flags = UPF_BOOT_AUTOCONF;
  470. uart->port.line = dev_id;
  471. uart->port.ops = &arc_serial_pops;
  472. uart->port.fifosize = ARC_UART_TX_FIFO_SIZE;
  473. /*
  474. * uart_insert_char( ) uses it in decideding whether to ignore a
  475. * char or not. Explicitly setting it here, removes the subtelty
  476. */
  477. uart->port.ignore_status_mask = 0;
  478. return 0;
  479. }
  480. #ifdef CONFIG_SERIAL_ARC_CONSOLE
  481. static int arc_serial_console_setup(struct console *co, char *options)
  482. {
  483. struct uart_port *port;
  484. int baud = 115200;
  485. int bits = 8;
  486. int parity = 'n';
  487. int flow = 'n';
  488. if (co->index < 0 || co->index >= CONFIG_SERIAL_ARC_NR_PORTS)
  489. return -ENODEV;
  490. /*
  491. * The uart port backing the console (e.g. ttyARC1) might not have been
  492. * init yet. If so, defer the console setup to after the port.
  493. */
  494. port = &arc_uart_ports[co->index].port;
  495. if (!port->membase)
  496. return -ENODEV;
  497. if (options)
  498. uart_parse_options(options, &baud, &parity, &bits, &flow);
  499. /*
  500. * Serial core will call port->ops->set_termios( )
  501. * which will set the baud reg
  502. */
  503. return uart_set_options(port, co, baud, parity, bits, flow);
  504. }
  505. static void arc_serial_console_putchar(struct uart_port *port, int ch)
  506. {
  507. arc_serial_poll_putchar(port, (unsigned char)ch);
  508. }
  509. /*
  510. * Interrupts are disabled on entering
  511. */
  512. static void arc_serial_console_write(struct console *co, const char *s,
  513. unsigned int count)
  514. {
  515. struct uart_port *port = &arc_uart_ports[co->index].port;
  516. unsigned long flags;
  517. spin_lock_irqsave(&port->lock, flags);
  518. uart_console_write(port, s, count, arc_serial_console_putchar);
  519. spin_unlock_irqrestore(&port->lock, flags);
  520. }
  521. static struct console arc_console = {
  522. .name = ARC_SERIAL_DEV_NAME,
  523. .write = arc_serial_console_write,
  524. .device = uart_console_device,
  525. .setup = arc_serial_console_setup,
  526. .flags = CON_PRINTBUFFER,
  527. .index = -1,
  528. .data = &arc_uart_driver
  529. };
  530. static __init void early_serial_write(struct console *con, const char *s,
  531. unsigned int n)
  532. {
  533. struct uart_port *port = &arc_uart_ports[con->index].port;
  534. unsigned int i;
  535. for (i = 0; i < n; i++, s++) {
  536. if (*s == '\n')
  537. arc_serial_poll_putchar(port, '\r');
  538. arc_serial_poll_putchar(port, *s);
  539. }
  540. }
  541. static struct console arc_early_serial_console __initdata = {
  542. .name = "early_ARCuart",
  543. .write = early_serial_write,
  544. .flags = CON_PRINTBUFFER | CON_BOOT,
  545. .index = -1
  546. };
  547. static int __init arc_serial_probe_earlyprintk(struct platform_device *pdev)
  548. {
  549. int dev_id = pdev->id < 0 ? 0 : pdev->id;
  550. int rc;
  551. arc_early_serial_console.index = dev_id;
  552. rc = arc_uart_init_one(pdev, dev_id);
  553. if (rc)
  554. panic("early console init failed\n");
  555. arc_serial_console_setup(&arc_early_serial_console, NULL);
  556. register_console(&arc_early_serial_console);
  557. return 0;
  558. }
  559. #endif /* CONFIG_SERIAL_ARC_CONSOLE */
  560. static int arc_serial_probe(struct platform_device *pdev)
  561. {
  562. int rc, dev_id;
  563. struct device_node *np = pdev->dev.of_node;
  564. /* no device tree device */
  565. if (!np)
  566. return -ENODEV;
  567. dev_id = of_alias_get_id(np, "serial");
  568. if (dev_id < 0)
  569. dev_id = 0;
  570. rc = arc_uart_init_one(pdev, dev_id);
  571. if (rc)
  572. return rc;
  573. rc = uart_add_one_port(&arc_uart_driver, &arc_uart_ports[dev_id].port);
  574. return rc;
  575. }
  576. static int arc_serial_remove(struct platform_device *pdev)
  577. {
  578. /* This will never be called */
  579. return 0;
  580. }
  581. static const struct of_device_id arc_uart_dt_ids[] = {
  582. { .compatible = "snps,arc-uart" },
  583. { /* Sentinel */ }
  584. };
  585. MODULE_DEVICE_TABLE(of, arc_uart_dt_ids);
  586. static struct platform_driver arc_platform_driver = {
  587. .probe = arc_serial_probe,
  588. .remove = arc_serial_remove,
  589. .driver = {
  590. .name = DRIVER_NAME,
  591. .owner = THIS_MODULE,
  592. .of_match_table = arc_uart_dt_ids,
  593. },
  594. };
  595. #ifdef CONFIG_SERIAL_ARC_CONSOLE
  596. static struct platform_driver early_arc_platform_driver __initdata = {
  597. .probe = arc_serial_probe_earlyprintk,
  598. .remove = arc_serial_remove,
  599. .driver = {
  600. .name = DRIVER_NAME,
  601. .owner = THIS_MODULE,
  602. },
  603. };
  604. /*
  605. * Register an early platform driver of "earlyprintk" class.
  606. * ARCH platform code installs the driver and probes the early devices
  607. * The installation could rely on user specifying earlyprintk=xyx in cmd line
  608. * or it could be done independently, for all "earlyprintk" class drivers.
  609. * [see arch/arc/plat-arcfpga/platform.c]
  610. */
  611. early_platform_init("earlyprintk", &early_arc_platform_driver);
  612. #endif /* CONFIG_SERIAL_ARC_CONSOLE */
  613. static int __init arc_serial_init(void)
  614. {
  615. int ret;
  616. ret = uart_register_driver(&arc_uart_driver);
  617. if (ret)
  618. return ret;
  619. ret = platform_driver_register(&arc_platform_driver);
  620. if (ret)
  621. uart_unregister_driver(&arc_uart_driver);
  622. return ret;
  623. }
  624. static void __exit arc_serial_exit(void)
  625. {
  626. platform_driver_unregister(&arc_platform_driver);
  627. uart_unregister_driver(&arc_uart_driver);
  628. }
  629. module_init(arc_serial_init);
  630. module_exit(arc_serial_exit);
  631. MODULE_LICENSE("GPL");
  632. MODULE_ALIAS("plat-arcfpga/uart");
  633. MODULE_AUTHOR("Vineet Gupta");
  634. MODULE_DESCRIPTION("ARC(Synopsys) On-Chip(fpga) serial driver");