samsung.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770
  1. /*
  2. * Driver core for Samsung SoC onboard UARTs.
  3. *
  4. * Ben Dooks, Copyright (c) 2003-2008 Simtec Electronics
  5. * http://armlinux.simtec.co.uk/
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. /* Hote on 2410 error handling
  12. *
  13. * The s3c2410 manual has a love/hate affair with the contents of the
  14. * UERSTAT register in the UART blocks, and keeps marking some of the
  15. * error bits as reserved. Having checked with the s3c2410x01,
  16. * it copes with BREAKs properly, so I am happy to ignore the RESERVED
  17. * feature from the latter versions of the manual.
  18. *
  19. * If it becomes aparrent that latter versions of the 2410 remove these
  20. * bits, then action will have to be taken to differentiate the versions
  21. * and change the policy on BREAK
  22. *
  23. * BJD, 04-Nov-2004
  24. */
  25. #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
  26. #define SUPPORT_SYSRQ
  27. #endif
  28. #include <linux/module.h>
  29. #include <linux/ioport.h>
  30. #include <linux/io.h>
  31. #include <linux/platform_device.h>
  32. #include <linux/init.h>
  33. #include <linux/sysrq.h>
  34. #include <linux/console.h>
  35. #include <linux/tty.h>
  36. #include <linux/tty_flip.h>
  37. #include <linux/serial_core.h>
  38. #include <linux/serial.h>
  39. #include <linux/delay.h>
  40. #include <linux/clk.h>
  41. #include <linux/cpufreq.h>
  42. #include <linux/of.h>
  43. #include <asm/irq.h>
  44. #include <mach/hardware.h>
  45. #include <plat/regs-serial.h>
  46. #include <plat/clock.h>
  47. #include "samsung.h"
  48. /* UART name and device definitions */
  49. #define S3C24XX_SERIAL_NAME "ttySAC"
  50. #define S3C24XX_SERIAL_MAJOR 204
  51. #define S3C24XX_SERIAL_MINOR 64
  52. /* macros to change one thing to another */
  53. #define tx_enabled(port) ((port)->unused[0])
  54. #define rx_enabled(port) ((port)->unused[1])
  55. /* flag to ignore all characters coming in */
  56. #define RXSTAT_DUMMY_READ (0x10000000)
  57. static inline struct s3c24xx_uart_port *to_ourport(struct uart_port *port)
  58. {
  59. return container_of(port, struct s3c24xx_uart_port, port);
  60. }
  61. /* translate a port to the device name */
  62. static inline const char *s3c24xx_serial_portname(struct uart_port *port)
  63. {
  64. return to_platform_device(port->dev)->name;
  65. }
  66. static int s3c24xx_serial_txempty_nofifo(struct uart_port *port)
  67. {
  68. return rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE;
  69. }
  70. /*
  71. * s3c64xx and later SoC's include the interrupt mask and status registers in
  72. * the controller itself, unlike the s3c24xx SoC's which have these registers
  73. * in the interrupt controller. Check if the port type is s3c64xx or higher.
  74. */
  75. static int s3c24xx_serial_has_interrupt_mask(struct uart_port *port)
  76. {
  77. return to_ourport(port)->info->type == PORT_S3C6400;
  78. }
  79. static void s3c24xx_serial_rx_enable(struct uart_port *port)
  80. {
  81. unsigned long flags;
  82. unsigned int ucon, ufcon;
  83. int count = 10000;
  84. spin_lock_irqsave(&port->lock, flags);
  85. while (--count && !s3c24xx_serial_txempty_nofifo(port))
  86. udelay(100);
  87. ufcon = rd_regl(port, S3C2410_UFCON);
  88. ufcon |= S3C2410_UFCON_RESETRX;
  89. wr_regl(port, S3C2410_UFCON, ufcon);
  90. ucon = rd_regl(port, S3C2410_UCON);
  91. ucon |= S3C2410_UCON_RXIRQMODE;
  92. wr_regl(port, S3C2410_UCON, ucon);
  93. rx_enabled(port) = 1;
  94. spin_unlock_irqrestore(&port->lock, flags);
  95. }
  96. static void s3c24xx_serial_rx_disable(struct uart_port *port)
  97. {
  98. unsigned long flags;
  99. unsigned int ucon;
  100. spin_lock_irqsave(&port->lock, flags);
  101. ucon = rd_regl(port, S3C2410_UCON);
  102. ucon &= ~S3C2410_UCON_RXIRQMODE;
  103. wr_regl(port, S3C2410_UCON, ucon);
  104. rx_enabled(port) = 0;
  105. spin_unlock_irqrestore(&port->lock, flags);
  106. }
  107. static void s3c24xx_serial_stop_tx(struct uart_port *port)
  108. {
  109. struct s3c24xx_uart_port *ourport = to_ourport(port);
  110. if (tx_enabled(port)) {
  111. if (s3c24xx_serial_has_interrupt_mask(port))
  112. __set_bit(S3C64XX_UINTM_TXD,
  113. portaddrl(port, S3C64XX_UINTM));
  114. else
  115. disable_irq_nosync(ourport->tx_irq);
  116. tx_enabled(port) = 0;
  117. if (port->flags & UPF_CONS_FLOW)
  118. s3c24xx_serial_rx_enable(port);
  119. }
  120. }
  121. static void s3c24xx_serial_start_tx(struct uart_port *port)
  122. {
  123. struct s3c24xx_uart_port *ourport = to_ourport(port);
  124. if (!tx_enabled(port)) {
  125. if (port->flags & UPF_CONS_FLOW)
  126. s3c24xx_serial_rx_disable(port);
  127. if (s3c24xx_serial_has_interrupt_mask(port))
  128. __clear_bit(S3C64XX_UINTM_TXD,
  129. portaddrl(port, S3C64XX_UINTM));
  130. else
  131. enable_irq(ourport->tx_irq);
  132. tx_enabled(port) = 1;
  133. }
  134. }
  135. static void s3c24xx_serial_stop_rx(struct uart_port *port)
  136. {
  137. struct s3c24xx_uart_port *ourport = to_ourport(port);
  138. if (rx_enabled(port)) {
  139. dbg("s3c24xx_serial_stop_rx: port=%p\n", port);
  140. if (s3c24xx_serial_has_interrupt_mask(port))
  141. __set_bit(S3C64XX_UINTM_RXD,
  142. portaddrl(port, S3C64XX_UINTM));
  143. else
  144. disable_irq_nosync(ourport->rx_irq);
  145. rx_enabled(port) = 0;
  146. }
  147. }
  148. static void s3c24xx_serial_enable_ms(struct uart_port *port)
  149. {
  150. }
  151. static inline struct s3c24xx_uart_info *s3c24xx_port_to_info(struct uart_port *port)
  152. {
  153. return to_ourport(port)->info;
  154. }
  155. static inline struct s3c2410_uartcfg *s3c24xx_port_to_cfg(struct uart_port *port)
  156. {
  157. struct s3c24xx_uart_port *ourport;
  158. if (port->dev == NULL)
  159. return NULL;
  160. ourport = container_of(port, struct s3c24xx_uart_port, port);
  161. return ourport->cfg;
  162. }
  163. static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port *ourport,
  164. unsigned long ufstat)
  165. {
  166. struct s3c24xx_uart_info *info = ourport->info;
  167. if (ufstat & info->rx_fifofull)
  168. return ourport->port.fifosize;
  169. return (ufstat & info->rx_fifomask) >> info->rx_fifoshift;
  170. }
  171. /* ? - where has parity gone?? */
  172. #define S3C2410_UERSTAT_PARITY (0x1000)
  173. static irqreturn_t
  174. s3c24xx_serial_rx_chars(int irq, void *dev_id)
  175. {
  176. struct s3c24xx_uart_port *ourport = dev_id;
  177. struct uart_port *port = &ourport->port;
  178. unsigned int ufcon, ch, flag, ufstat, uerstat;
  179. unsigned long flags;
  180. int max_count = 64;
  181. spin_lock_irqsave(&port->lock, flags);
  182. while (max_count-- > 0) {
  183. ufcon = rd_regl(port, S3C2410_UFCON);
  184. ufstat = rd_regl(port, S3C2410_UFSTAT);
  185. if (s3c24xx_serial_rx_fifocnt(ourport, ufstat) == 0)
  186. break;
  187. uerstat = rd_regl(port, S3C2410_UERSTAT);
  188. ch = rd_regb(port, S3C2410_URXH);
  189. if (port->flags & UPF_CONS_FLOW) {
  190. int txe = s3c24xx_serial_txempty_nofifo(port);
  191. if (rx_enabled(port)) {
  192. if (!txe) {
  193. rx_enabled(port) = 0;
  194. continue;
  195. }
  196. } else {
  197. if (txe) {
  198. ufcon |= S3C2410_UFCON_RESETRX;
  199. wr_regl(port, S3C2410_UFCON, ufcon);
  200. rx_enabled(port) = 1;
  201. goto out;
  202. }
  203. continue;
  204. }
  205. }
  206. /* insert the character into the buffer */
  207. flag = TTY_NORMAL;
  208. port->icount.rx++;
  209. if (unlikely(uerstat & S3C2410_UERSTAT_ANY)) {
  210. dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
  211. ch, uerstat);
  212. /* check for break */
  213. if (uerstat & S3C2410_UERSTAT_BREAK) {
  214. dbg("break!\n");
  215. port->icount.brk++;
  216. if (uart_handle_break(port))
  217. goto ignore_char;
  218. }
  219. if (uerstat & S3C2410_UERSTAT_FRAME)
  220. port->icount.frame++;
  221. if (uerstat & S3C2410_UERSTAT_OVERRUN)
  222. port->icount.overrun++;
  223. uerstat &= port->read_status_mask;
  224. if (uerstat & S3C2410_UERSTAT_BREAK)
  225. flag = TTY_BREAK;
  226. else if (uerstat & S3C2410_UERSTAT_PARITY)
  227. flag = TTY_PARITY;
  228. else if (uerstat & (S3C2410_UERSTAT_FRAME |
  229. S3C2410_UERSTAT_OVERRUN))
  230. flag = TTY_FRAME;
  231. }
  232. if (uart_handle_sysrq_char(port, ch))
  233. goto ignore_char;
  234. uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN,
  235. ch, flag);
  236. ignore_char:
  237. continue;
  238. }
  239. tty_flip_buffer_push(&port->state->port);
  240. out:
  241. spin_unlock_irqrestore(&port->lock, flags);
  242. return IRQ_HANDLED;
  243. }
  244. static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id)
  245. {
  246. struct s3c24xx_uart_port *ourport = id;
  247. struct uart_port *port = &ourport->port;
  248. struct circ_buf *xmit = &port->state->xmit;
  249. unsigned long flags;
  250. int count = 256;
  251. spin_lock_irqsave(&port->lock, flags);
  252. if (port->x_char) {
  253. wr_regb(port, S3C2410_UTXH, port->x_char);
  254. port->icount.tx++;
  255. port->x_char = 0;
  256. goto out;
  257. }
  258. /* if there isn't anything more to transmit, or the uart is now
  259. * stopped, disable the uart and exit
  260. */
  261. if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
  262. s3c24xx_serial_stop_tx(port);
  263. goto out;
  264. }
  265. /* try and drain the buffer... */
  266. while (!uart_circ_empty(xmit) && count-- > 0) {
  267. if (rd_regl(port, S3C2410_UFSTAT) & ourport->info->tx_fifofull)
  268. break;
  269. wr_regb(port, S3C2410_UTXH, xmit->buf[xmit->tail]);
  270. xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
  271. port->icount.tx++;
  272. }
  273. if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) {
  274. spin_unlock(&port->lock);
  275. uart_write_wakeup(port);
  276. spin_lock(&port->lock);
  277. }
  278. if (uart_circ_empty(xmit))
  279. s3c24xx_serial_stop_tx(port);
  280. out:
  281. spin_unlock_irqrestore(&port->lock, flags);
  282. return IRQ_HANDLED;
  283. }
  284. /* interrupt handler for s3c64xx and later SoC's.*/
  285. static irqreturn_t s3c64xx_serial_handle_irq(int irq, void *id)
  286. {
  287. struct s3c24xx_uart_port *ourport = id;
  288. struct uart_port *port = &ourport->port;
  289. unsigned int pend = rd_regl(port, S3C64XX_UINTP);
  290. irqreturn_t ret = IRQ_HANDLED;
  291. if (pend & S3C64XX_UINTM_RXD_MSK) {
  292. ret = s3c24xx_serial_rx_chars(irq, id);
  293. wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_RXD_MSK);
  294. }
  295. if (pend & S3C64XX_UINTM_TXD_MSK) {
  296. ret = s3c24xx_serial_tx_chars(irq, id);
  297. wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_TXD_MSK);
  298. }
  299. return ret;
  300. }
  301. static unsigned int s3c24xx_serial_tx_empty(struct uart_port *port)
  302. {
  303. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  304. unsigned long ufstat = rd_regl(port, S3C2410_UFSTAT);
  305. unsigned long ufcon = rd_regl(port, S3C2410_UFCON);
  306. if (ufcon & S3C2410_UFCON_FIFOMODE) {
  307. if ((ufstat & info->tx_fifomask) != 0 ||
  308. (ufstat & info->tx_fifofull))
  309. return 0;
  310. return 1;
  311. }
  312. return s3c24xx_serial_txempty_nofifo(port);
  313. }
  314. /* no modem control lines */
  315. static unsigned int s3c24xx_serial_get_mctrl(struct uart_port *port)
  316. {
  317. unsigned int umstat = rd_regb(port, S3C2410_UMSTAT);
  318. if (umstat & S3C2410_UMSTAT_CTS)
  319. return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
  320. else
  321. return TIOCM_CAR | TIOCM_DSR;
  322. }
  323. static void s3c24xx_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
  324. {
  325. /* todo - possibly remove AFC and do manual CTS */
  326. }
  327. static void s3c24xx_serial_break_ctl(struct uart_port *port, int break_state)
  328. {
  329. unsigned long flags;
  330. unsigned int ucon;
  331. spin_lock_irqsave(&port->lock, flags);
  332. ucon = rd_regl(port, S3C2410_UCON);
  333. if (break_state)
  334. ucon |= S3C2410_UCON_SBREAK;
  335. else
  336. ucon &= ~S3C2410_UCON_SBREAK;
  337. wr_regl(port, S3C2410_UCON, ucon);
  338. spin_unlock_irqrestore(&port->lock, flags);
  339. }
  340. static void s3c24xx_serial_shutdown(struct uart_port *port)
  341. {
  342. struct s3c24xx_uart_port *ourport = to_ourport(port);
  343. if (ourport->tx_claimed) {
  344. if (!s3c24xx_serial_has_interrupt_mask(port))
  345. free_irq(ourport->tx_irq, ourport);
  346. tx_enabled(port) = 0;
  347. ourport->tx_claimed = 0;
  348. }
  349. if (ourport->rx_claimed) {
  350. if (!s3c24xx_serial_has_interrupt_mask(port))
  351. free_irq(ourport->rx_irq, ourport);
  352. ourport->rx_claimed = 0;
  353. rx_enabled(port) = 0;
  354. }
  355. /* Clear pending interrupts and mask all interrupts */
  356. if (s3c24xx_serial_has_interrupt_mask(port)) {
  357. wr_regl(port, S3C64XX_UINTP, 0xf);
  358. wr_regl(port, S3C64XX_UINTM, 0xf);
  359. }
  360. }
  361. static int s3c24xx_serial_startup(struct uart_port *port)
  362. {
  363. struct s3c24xx_uart_port *ourport = to_ourport(port);
  364. int ret;
  365. dbg("s3c24xx_serial_startup: port=%p (%08lx,%p)\n",
  366. port->mapbase, port->membase);
  367. rx_enabled(port) = 1;
  368. ret = request_irq(ourport->rx_irq, s3c24xx_serial_rx_chars, 0,
  369. s3c24xx_serial_portname(port), ourport);
  370. if (ret != 0) {
  371. dev_err(port->dev, "cannot get irq %d\n", ourport->rx_irq);
  372. return ret;
  373. }
  374. ourport->rx_claimed = 1;
  375. dbg("requesting tx irq...\n");
  376. tx_enabled(port) = 1;
  377. ret = request_irq(ourport->tx_irq, s3c24xx_serial_tx_chars, 0,
  378. s3c24xx_serial_portname(port), ourport);
  379. if (ret) {
  380. dev_err(port->dev, "cannot get irq %d\n", ourport->tx_irq);
  381. goto err;
  382. }
  383. ourport->tx_claimed = 1;
  384. dbg("s3c24xx_serial_startup ok\n");
  385. /* the port reset code should have done the correct
  386. * register setup for the port controls */
  387. return ret;
  388. err:
  389. s3c24xx_serial_shutdown(port);
  390. return ret;
  391. }
  392. static int s3c64xx_serial_startup(struct uart_port *port)
  393. {
  394. struct s3c24xx_uart_port *ourport = to_ourport(port);
  395. int ret;
  396. dbg("s3c64xx_serial_startup: port=%p (%08lx,%p)\n",
  397. port->mapbase, port->membase);
  398. ret = request_irq(port->irq, s3c64xx_serial_handle_irq, IRQF_SHARED,
  399. s3c24xx_serial_portname(port), ourport);
  400. if (ret) {
  401. dev_err(port->dev, "cannot get irq %d\n", port->irq);
  402. return ret;
  403. }
  404. /* For compatibility with s3c24xx Soc's */
  405. rx_enabled(port) = 1;
  406. ourport->rx_claimed = 1;
  407. tx_enabled(port) = 0;
  408. ourport->tx_claimed = 1;
  409. /* Enable Rx Interrupt */
  410. __clear_bit(S3C64XX_UINTM_RXD, portaddrl(port, S3C64XX_UINTM));
  411. dbg("s3c64xx_serial_startup ok\n");
  412. return ret;
  413. }
  414. /* power power management control */
  415. static void s3c24xx_serial_pm(struct uart_port *port, unsigned int level,
  416. unsigned int old)
  417. {
  418. struct s3c24xx_uart_port *ourport = to_ourport(port);
  419. ourport->pm_level = level;
  420. switch (level) {
  421. case 3:
  422. if (!IS_ERR(ourport->baudclk))
  423. clk_disable_unprepare(ourport->baudclk);
  424. clk_disable_unprepare(ourport->clk);
  425. break;
  426. case 0:
  427. clk_prepare_enable(ourport->clk);
  428. if (!IS_ERR(ourport->baudclk))
  429. clk_prepare_enable(ourport->baudclk);
  430. break;
  431. default:
  432. dev_err(port->dev, "s3c24xx_serial: unknown pm %d\n", level);
  433. }
  434. }
  435. /* baud rate calculation
  436. *
  437. * The UARTs on the S3C2410/S3C2440 can take their clocks from a number
  438. * of different sources, including the peripheral clock ("pclk") and an
  439. * external clock ("uclk"). The S3C2440 also adds the core clock ("fclk")
  440. * with a programmable extra divisor.
  441. *
  442. * The following code goes through the clock sources, and calculates the
  443. * baud clocks (and the resultant actual baud rates) and then tries to
  444. * pick the closest one and select that.
  445. *
  446. */
  447. #define MAX_CLK_NAME_LENGTH 15
  448. static inline int s3c24xx_serial_getsource(struct uart_port *port)
  449. {
  450. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  451. unsigned int ucon;
  452. if (info->num_clks == 1)
  453. return 0;
  454. ucon = rd_regl(port, S3C2410_UCON);
  455. ucon &= info->clksel_mask;
  456. return ucon >> info->clksel_shift;
  457. }
  458. static void s3c24xx_serial_setsource(struct uart_port *port,
  459. unsigned int clk_sel)
  460. {
  461. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  462. unsigned int ucon;
  463. if (info->num_clks == 1)
  464. return;
  465. ucon = rd_regl(port, S3C2410_UCON);
  466. if ((ucon & info->clksel_mask) >> info->clksel_shift == clk_sel)
  467. return;
  468. ucon &= ~info->clksel_mask;
  469. ucon |= clk_sel << info->clksel_shift;
  470. wr_regl(port, S3C2410_UCON, ucon);
  471. }
  472. static unsigned int s3c24xx_serial_getclk(struct s3c24xx_uart_port *ourport,
  473. unsigned int req_baud, struct clk **best_clk,
  474. unsigned int *clk_num)
  475. {
  476. struct s3c24xx_uart_info *info = ourport->info;
  477. struct clk *clk;
  478. unsigned long rate;
  479. unsigned int cnt, baud, quot, clk_sel, best_quot = 0;
  480. char clkname[MAX_CLK_NAME_LENGTH];
  481. int calc_deviation, deviation = (1 << 30) - 1;
  482. clk_sel = (ourport->cfg->clk_sel) ? ourport->cfg->clk_sel :
  483. ourport->info->def_clk_sel;
  484. for (cnt = 0; cnt < info->num_clks; cnt++) {
  485. if (!(clk_sel & (1 << cnt)))
  486. continue;
  487. sprintf(clkname, "clk_uart_baud%d", cnt);
  488. clk = clk_get(ourport->port.dev, clkname);
  489. if (IS_ERR(clk))
  490. continue;
  491. rate = clk_get_rate(clk);
  492. if (!rate)
  493. continue;
  494. if (ourport->info->has_divslot) {
  495. unsigned long div = rate / req_baud;
  496. /* The UDIVSLOT register on the newer UARTs allows us to
  497. * get a divisor adjustment of 1/16th on the baud clock.
  498. *
  499. * We don't keep the UDIVSLOT value (the 16ths we
  500. * calculated by not multiplying the baud by 16) as it
  501. * is easy enough to recalculate.
  502. */
  503. quot = div / 16;
  504. baud = rate / div;
  505. } else {
  506. quot = (rate + (8 * req_baud)) / (16 * req_baud);
  507. baud = rate / (quot * 16);
  508. }
  509. quot--;
  510. calc_deviation = req_baud - baud;
  511. if (calc_deviation < 0)
  512. calc_deviation = -calc_deviation;
  513. if (calc_deviation < deviation) {
  514. *best_clk = clk;
  515. best_quot = quot;
  516. *clk_num = cnt;
  517. deviation = calc_deviation;
  518. }
  519. }
  520. return best_quot;
  521. }
  522. /* udivslot_table[]
  523. *
  524. * This table takes the fractional value of the baud divisor and gives
  525. * the recommended setting for the UDIVSLOT register.
  526. */
  527. static u16 udivslot_table[16] = {
  528. [0] = 0x0000,
  529. [1] = 0x0080,
  530. [2] = 0x0808,
  531. [3] = 0x0888,
  532. [4] = 0x2222,
  533. [5] = 0x4924,
  534. [6] = 0x4A52,
  535. [7] = 0x54AA,
  536. [8] = 0x5555,
  537. [9] = 0xD555,
  538. [10] = 0xD5D5,
  539. [11] = 0xDDD5,
  540. [12] = 0xDDDD,
  541. [13] = 0xDFDD,
  542. [14] = 0xDFDF,
  543. [15] = 0xFFDF,
  544. };
  545. static void s3c24xx_serial_set_termios(struct uart_port *port,
  546. struct ktermios *termios,
  547. struct ktermios *old)
  548. {
  549. struct s3c2410_uartcfg *cfg = s3c24xx_port_to_cfg(port);
  550. struct s3c24xx_uart_port *ourport = to_ourport(port);
  551. struct clk *clk = ERR_PTR(-EINVAL);
  552. unsigned long flags;
  553. unsigned int baud, quot, clk_sel = 0;
  554. unsigned int ulcon;
  555. unsigned int umcon;
  556. unsigned int udivslot = 0;
  557. /*
  558. * We don't support modem control lines.
  559. */
  560. termios->c_cflag &= ~(HUPCL | CMSPAR);
  561. termios->c_cflag |= CLOCAL;
  562. /*
  563. * Ask the core to calculate the divisor for us.
  564. */
  565. baud = uart_get_baud_rate(port, termios, old, 0, 115200*8);
  566. quot = s3c24xx_serial_getclk(ourport, baud, &clk, &clk_sel);
  567. if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
  568. quot = port->custom_divisor;
  569. if (IS_ERR(clk))
  570. return;
  571. /* check to see if we need to change clock source */
  572. if (ourport->baudclk != clk) {
  573. s3c24xx_serial_setsource(port, clk_sel);
  574. if (!IS_ERR(ourport->baudclk)) {
  575. clk_disable_unprepare(ourport->baudclk);
  576. ourport->baudclk = ERR_PTR(-EINVAL);
  577. }
  578. clk_prepare_enable(clk);
  579. ourport->baudclk = clk;
  580. ourport->baudclk_rate = clk ? clk_get_rate(clk) : 0;
  581. }
  582. if (ourport->info->has_divslot) {
  583. unsigned int div = ourport->baudclk_rate / baud;
  584. if (cfg->has_fracval) {
  585. udivslot = (div & 15);
  586. dbg("fracval = %04x\n", udivslot);
  587. } else {
  588. udivslot = udivslot_table[div & 15];
  589. dbg("udivslot = %04x (div %d)\n", udivslot, div & 15);
  590. }
  591. }
  592. switch (termios->c_cflag & CSIZE) {
  593. case CS5:
  594. dbg("config: 5bits/char\n");
  595. ulcon = S3C2410_LCON_CS5;
  596. break;
  597. case CS6:
  598. dbg("config: 6bits/char\n");
  599. ulcon = S3C2410_LCON_CS6;
  600. break;
  601. case CS7:
  602. dbg("config: 7bits/char\n");
  603. ulcon = S3C2410_LCON_CS7;
  604. break;
  605. case CS8:
  606. default:
  607. dbg("config: 8bits/char\n");
  608. ulcon = S3C2410_LCON_CS8;
  609. break;
  610. }
  611. /* preserve original lcon IR settings */
  612. ulcon |= (cfg->ulcon & S3C2410_LCON_IRM);
  613. if (termios->c_cflag & CSTOPB)
  614. ulcon |= S3C2410_LCON_STOPB;
  615. umcon = (termios->c_cflag & CRTSCTS) ? S3C2410_UMCOM_AFC : 0;
  616. if (termios->c_cflag & PARENB) {
  617. if (termios->c_cflag & PARODD)
  618. ulcon |= S3C2410_LCON_PODD;
  619. else
  620. ulcon |= S3C2410_LCON_PEVEN;
  621. } else {
  622. ulcon |= S3C2410_LCON_PNONE;
  623. }
  624. spin_lock_irqsave(&port->lock, flags);
  625. dbg("setting ulcon to %08x, brddiv to %d, udivslot %08x\n",
  626. ulcon, quot, udivslot);
  627. wr_regl(port, S3C2410_ULCON, ulcon);
  628. wr_regl(port, S3C2410_UBRDIV, quot);
  629. wr_regl(port, S3C2410_UMCON, umcon);
  630. if (ourport->info->has_divslot)
  631. wr_regl(port, S3C2443_DIVSLOT, udivslot);
  632. dbg("uart: ulcon = 0x%08x, ucon = 0x%08x, ufcon = 0x%08x\n",
  633. rd_regl(port, S3C2410_ULCON),
  634. rd_regl(port, S3C2410_UCON),
  635. rd_regl(port, S3C2410_UFCON));
  636. /*
  637. * Update the per-port timeout.
  638. */
  639. uart_update_timeout(port, termios->c_cflag, baud);
  640. /*
  641. * Which character status flags are we interested in?
  642. */
  643. port->read_status_mask = S3C2410_UERSTAT_OVERRUN;
  644. if (termios->c_iflag & INPCK)
  645. port->read_status_mask |= S3C2410_UERSTAT_FRAME | S3C2410_UERSTAT_PARITY;
  646. /*
  647. * Which character status flags should we ignore?
  648. */
  649. port->ignore_status_mask = 0;
  650. if (termios->c_iflag & IGNPAR)
  651. port->ignore_status_mask |= S3C2410_UERSTAT_OVERRUN;
  652. if (termios->c_iflag & IGNBRK && termios->c_iflag & IGNPAR)
  653. port->ignore_status_mask |= S3C2410_UERSTAT_FRAME;
  654. /*
  655. * Ignore all characters if CREAD is not set.
  656. */
  657. if ((termios->c_cflag & CREAD) == 0)
  658. port->ignore_status_mask |= RXSTAT_DUMMY_READ;
  659. spin_unlock_irqrestore(&port->lock, flags);
  660. }
  661. static const char *s3c24xx_serial_type(struct uart_port *port)
  662. {
  663. switch (port->type) {
  664. case PORT_S3C2410:
  665. return "S3C2410";
  666. case PORT_S3C2440:
  667. return "S3C2440";
  668. case PORT_S3C2412:
  669. return "S3C2412";
  670. case PORT_S3C6400:
  671. return "S3C6400/10";
  672. default:
  673. return NULL;
  674. }
  675. }
  676. #define MAP_SIZE (0x100)
  677. static void s3c24xx_serial_release_port(struct uart_port *port)
  678. {
  679. release_mem_region(port->mapbase, MAP_SIZE);
  680. }
  681. static int s3c24xx_serial_request_port(struct uart_port *port)
  682. {
  683. const char *name = s3c24xx_serial_portname(port);
  684. return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY;
  685. }
  686. static void s3c24xx_serial_config_port(struct uart_port *port, int flags)
  687. {
  688. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  689. if (flags & UART_CONFIG_TYPE &&
  690. s3c24xx_serial_request_port(port) == 0)
  691. port->type = info->type;
  692. }
  693. /*
  694. * verify the new serial_struct (for TIOCSSERIAL).
  695. */
  696. static int
  697. s3c24xx_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
  698. {
  699. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  700. if (ser->type != PORT_UNKNOWN && ser->type != info->type)
  701. return -EINVAL;
  702. return 0;
  703. }
  704. #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
  705. static struct console s3c24xx_serial_console;
  706. static int __init s3c24xx_serial_console_init(void)
  707. {
  708. register_console(&s3c24xx_serial_console);
  709. return 0;
  710. }
  711. console_initcall(s3c24xx_serial_console_init);
  712. #define S3C24XX_SERIAL_CONSOLE &s3c24xx_serial_console
  713. #else
  714. #define S3C24XX_SERIAL_CONSOLE NULL
  715. #endif
  716. #ifdef CONFIG_CONSOLE_POLL
  717. static int s3c24xx_serial_get_poll_char(struct uart_port *port);
  718. static void s3c24xx_serial_put_poll_char(struct uart_port *port,
  719. unsigned char c);
  720. #endif
  721. static struct uart_ops s3c24xx_serial_ops = {
  722. .pm = s3c24xx_serial_pm,
  723. .tx_empty = s3c24xx_serial_tx_empty,
  724. .get_mctrl = s3c24xx_serial_get_mctrl,
  725. .set_mctrl = s3c24xx_serial_set_mctrl,
  726. .stop_tx = s3c24xx_serial_stop_tx,
  727. .start_tx = s3c24xx_serial_start_tx,
  728. .stop_rx = s3c24xx_serial_stop_rx,
  729. .enable_ms = s3c24xx_serial_enable_ms,
  730. .break_ctl = s3c24xx_serial_break_ctl,
  731. .startup = s3c24xx_serial_startup,
  732. .shutdown = s3c24xx_serial_shutdown,
  733. .set_termios = s3c24xx_serial_set_termios,
  734. .type = s3c24xx_serial_type,
  735. .release_port = s3c24xx_serial_release_port,
  736. .request_port = s3c24xx_serial_request_port,
  737. .config_port = s3c24xx_serial_config_port,
  738. .verify_port = s3c24xx_serial_verify_port,
  739. #ifdef CONFIG_CONSOLE_POLL
  740. .poll_get_char = s3c24xx_serial_get_poll_char,
  741. .poll_put_char = s3c24xx_serial_put_poll_char,
  742. #endif
  743. };
  744. static struct uart_driver s3c24xx_uart_drv = {
  745. .owner = THIS_MODULE,
  746. .driver_name = "s3c2410_serial",
  747. .nr = CONFIG_SERIAL_SAMSUNG_UARTS,
  748. .cons = S3C24XX_SERIAL_CONSOLE,
  749. .dev_name = S3C24XX_SERIAL_NAME,
  750. .major = S3C24XX_SERIAL_MAJOR,
  751. .minor = S3C24XX_SERIAL_MINOR,
  752. };
  753. static struct s3c24xx_uart_port s3c24xx_serial_ports[CONFIG_SERIAL_SAMSUNG_UARTS] = {
  754. [0] = {
  755. .port = {
  756. .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[0].port.lock),
  757. .iotype = UPIO_MEM,
  758. .uartclk = 0,
  759. .fifosize = 16,
  760. .ops = &s3c24xx_serial_ops,
  761. .flags = UPF_BOOT_AUTOCONF,
  762. .line = 0,
  763. }
  764. },
  765. [1] = {
  766. .port = {
  767. .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[1].port.lock),
  768. .iotype = UPIO_MEM,
  769. .uartclk = 0,
  770. .fifosize = 16,
  771. .ops = &s3c24xx_serial_ops,
  772. .flags = UPF_BOOT_AUTOCONF,
  773. .line = 1,
  774. }
  775. },
  776. #if CONFIG_SERIAL_SAMSUNG_UARTS > 2
  777. [2] = {
  778. .port = {
  779. .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[2].port.lock),
  780. .iotype = UPIO_MEM,
  781. .uartclk = 0,
  782. .fifosize = 16,
  783. .ops = &s3c24xx_serial_ops,
  784. .flags = UPF_BOOT_AUTOCONF,
  785. .line = 2,
  786. }
  787. },
  788. #endif
  789. #if CONFIG_SERIAL_SAMSUNG_UARTS > 3
  790. [3] = {
  791. .port = {
  792. .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[3].port.lock),
  793. .iotype = UPIO_MEM,
  794. .uartclk = 0,
  795. .fifosize = 16,
  796. .ops = &s3c24xx_serial_ops,
  797. .flags = UPF_BOOT_AUTOCONF,
  798. .line = 3,
  799. }
  800. }
  801. #endif
  802. };
  803. /* s3c24xx_serial_resetport
  804. *
  805. * reset the fifos and other the settings.
  806. */
  807. static void s3c24xx_serial_resetport(struct uart_port *port,
  808. struct s3c2410_uartcfg *cfg)
  809. {
  810. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  811. unsigned long ucon = rd_regl(port, S3C2410_UCON);
  812. unsigned int ucon_mask;
  813. ucon_mask = info->clksel_mask;
  814. if (info->type == PORT_S3C2440)
  815. ucon_mask |= S3C2440_UCON0_DIVMASK;
  816. ucon &= ucon_mask;
  817. wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
  818. /* reset both fifos */
  819. wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
  820. wr_regl(port, S3C2410_UFCON, cfg->ufcon);
  821. /* some delay is required after fifo reset */
  822. udelay(1);
  823. }
  824. #ifdef CONFIG_CPU_FREQ
  825. static int s3c24xx_serial_cpufreq_transition(struct notifier_block *nb,
  826. unsigned long val, void *data)
  827. {
  828. struct s3c24xx_uart_port *port;
  829. struct uart_port *uport;
  830. port = container_of(nb, struct s3c24xx_uart_port, freq_transition);
  831. uport = &port->port;
  832. /* check to see if port is enabled */
  833. if (port->pm_level != 0)
  834. return 0;
  835. /* try and work out if the baudrate is changing, we can detect
  836. * a change in rate, but we do not have support for detecting
  837. * a disturbance in the clock-rate over the change.
  838. */
  839. if (IS_ERR(port->baudclk))
  840. goto exit;
  841. if (port->baudclk_rate == clk_get_rate(port->baudclk))
  842. goto exit;
  843. if (val == CPUFREQ_PRECHANGE) {
  844. /* we should really shut the port down whilst the
  845. * frequency change is in progress. */
  846. } else if (val == CPUFREQ_POSTCHANGE) {
  847. struct ktermios *termios;
  848. struct tty_struct *tty;
  849. if (uport->state == NULL)
  850. goto exit;
  851. tty = uport->state->port.tty;
  852. if (tty == NULL)
  853. goto exit;
  854. termios = &tty->termios;
  855. if (termios == NULL) {
  856. dev_warn(uport->dev, "%s: no termios?\n", __func__);
  857. goto exit;
  858. }
  859. s3c24xx_serial_set_termios(uport, termios, NULL);
  860. }
  861. exit:
  862. return 0;
  863. }
  864. static inline int s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
  865. {
  866. port->freq_transition.notifier_call = s3c24xx_serial_cpufreq_transition;
  867. return cpufreq_register_notifier(&port->freq_transition,
  868. CPUFREQ_TRANSITION_NOTIFIER);
  869. }
  870. static inline void s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
  871. {
  872. cpufreq_unregister_notifier(&port->freq_transition,
  873. CPUFREQ_TRANSITION_NOTIFIER);
  874. }
  875. #else
  876. static inline int s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
  877. {
  878. return 0;
  879. }
  880. static inline void s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
  881. {
  882. }
  883. #endif
  884. /* s3c24xx_serial_init_port
  885. *
  886. * initialise a single serial port from the platform device given
  887. */
  888. static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport,
  889. struct platform_device *platdev)
  890. {
  891. struct uart_port *port = &ourport->port;
  892. struct s3c2410_uartcfg *cfg = ourport->cfg;
  893. struct resource *res;
  894. int ret;
  895. dbg("s3c24xx_serial_init_port: port=%p, platdev=%p\n", port, platdev);
  896. if (platdev == NULL)
  897. return -ENODEV;
  898. if (port->mapbase != 0)
  899. return 0;
  900. /* setup info for port */
  901. port->dev = &platdev->dev;
  902. /* Startup sequence is different for s3c64xx and higher SoC's */
  903. if (s3c24xx_serial_has_interrupt_mask(port))
  904. s3c24xx_serial_ops.startup = s3c64xx_serial_startup;
  905. port->uartclk = 1;
  906. if (cfg->uart_flags & UPF_CONS_FLOW) {
  907. dbg("s3c24xx_serial_init_port: enabling flow control\n");
  908. port->flags |= UPF_CONS_FLOW;
  909. }
  910. /* sort our the physical and virtual addresses for each UART */
  911. res = platform_get_resource(platdev, IORESOURCE_MEM, 0);
  912. if (res == NULL) {
  913. dev_err(port->dev, "failed to find memory resource for uart\n");
  914. return -EINVAL;
  915. }
  916. dbg("resource %p (%lx..%lx)\n", res, res->start, res->end);
  917. port->membase = devm_ioremap(port->dev, res->start, resource_size(res));
  918. if (!port->membase) {
  919. dev_err(port->dev, "failed to remap controller address\n");
  920. return -EBUSY;
  921. }
  922. port->mapbase = res->start;
  923. ret = platform_get_irq(platdev, 0);
  924. if (ret < 0)
  925. port->irq = 0;
  926. else {
  927. port->irq = ret;
  928. ourport->rx_irq = ret;
  929. ourport->tx_irq = ret + 1;
  930. }
  931. ret = platform_get_irq(platdev, 1);
  932. if (ret > 0)
  933. ourport->tx_irq = ret;
  934. ourport->clk = clk_get(&platdev->dev, "uart");
  935. /* Keep all interrupts masked and cleared */
  936. if (s3c24xx_serial_has_interrupt_mask(port)) {
  937. wr_regl(port, S3C64XX_UINTM, 0xf);
  938. wr_regl(port, S3C64XX_UINTP, 0xf);
  939. wr_regl(port, S3C64XX_UINTSP, 0xf);
  940. }
  941. dbg("port: map=%08x, mem=%08x, irq=%d (%d,%d), clock=%ld\n",
  942. port->mapbase, port->membase, port->irq,
  943. ourport->rx_irq, ourport->tx_irq, port->uartclk);
  944. /* reset the fifos (and setup the uart) */
  945. s3c24xx_serial_resetport(port, cfg);
  946. return 0;
  947. }
  948. static ssize_t s3c24xx_serial_show_clksrc(struct device *dev,
  949. struct device_attribute *attr,
  950. char *buf)
  951. {
  952. struct uart_port *port = s3c24xx_dev_to_port(dev);
  953. struct s3c24xx_uart_port *ourport = to_ourport(port);
  954. if (IS_ERR(ourport->baudclk))
  955. return -EINVAL;
  956. return snprintf(buf, PAGE_SIZE, "* %s\n",
  957. ourport->baudclk->name ?: "(null)");
  958. }
  959. static DEVICE_ATTR(clock_source, S_IRUGO, s3c24xx_serial_show_clksrc, NULL);
  960. /* Device driver serial port probe */
  961. static const struct of_device_id s3c24xx_uart_dt_match[];
  962. static int probe_index;
  963. static inline struct s3c24xx_serial_drv_data *s3c24xx_get_driver_data(
  964. struct platform_device *pdev)
  965. {
  966. #ifdef CONFIG_OF
  967. if (pdev->dev.of_node) {
  968. const struct of_device_id *match;
  969. match = of_match_node(s3c24xx_uart_dt_match, pdev->dev.of_node);
  970. return (struct s3c24xx_serial_drv_data *)match->data;
  971. }
  972. #endif
  973. return (struct s3c24xx_serial_drv_data *)
  974. platform_get_device_id(pdev)->driver_data;
  975. }
  976. static int s3c24xx_serial_probe(struct platform_device *pdev)
  977. {
  978. struct s3c24xx_uart_port *ourport;
  979. int ret;
  980. dbg("s3c24xx_serial_probe(%p) %d\n", pdev, probe_index);
  981. ourport = &s3c24xx_serial_ports[probe_index];
  982. ourport->drv_data = s3c24xx_get_driver_data(pdev);
  983. if (!ourport->drv_data) {
  984. dev_err(&pdev->dev, "could not find driver data\n");
  985. return -ENODEV;
  986. }
  987. ourport->baudclk = ERR_PTR(-EINVAL);
  988. ourport->info = ourport->drv_data->info;
  989. ourport->cfg = (pdev->dev.platform_data) ?
  990. (struct s3c2410_uartcfg *)pdev->dev.platform_data :
  991. ourport->drv_data->def_cfg;
  992. ourport->port.fifosize = (ourport->info->fifosize) ?
  993. ourport->info->fifosize :
  994. ourport->drv_data->fifosize[probe_index];
  995. probe_index++;
  996. dbg("%s: initialising port %p...\n", __func__, ourport);
  997. ret = s3c24xx_serial_init_port(ourport, pdev);
  998. if (ret < 0)
  999. goto probe_err;
  1000. dbg("%s: adding port\n", __func__);
  1001. uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
  1002. platform_set_drvdata(pdev, &ourport->port);
  1003. ret = device_create_file(&pdev->dev, &dev_attr_clock_source);
  1004. if (ret < 0)
  1005. dev_err(&pdev->dev, "failed to add clock source attr.\n");
  1006. ret = s3c24xx_serial_cpufreq_register(ourport);
  1007. if (ret < 0)
  1008. dev_err(&pdev->dev, "failed to add cpufreq notifier\n");
  1009. return 0;
  1010. probe_err:
  1011. return ret;
  1012. }
  1013. static int s3c24xx_serial_remove(struct platform_device *dev)
  1014. {
  1015. struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
  1016. if (port) {
  1017. s3c24xx_serial_cpufreq_deregister(to_ourport(port));
  1018. device_remove_file(&dev->dev, &dev_attr_clock_source);
  1019. uart_remove_one_port(&s3c24xx_uart_drv, port);
  1020. }
  1021. return 0;
  1022. }
  1023. /* UART power management code */
  1024. #ifdef CONFIG_PM_SLEEP
  1025. static int s3c24xx_serial_suspend(struct device *dev)
  1026. {
  1027. struct uart_port *port = s3c24xx_dev_to_port(dev);
  1028. if (port)
  1029. uart_suspend_port(&s3c24xx_uart_drv, port);
  1030. return 0;
  1031. }
  1032. static int s3c24xx_serial_resume(struct device *dev)
  1033. {
  1034. struct uart_port *port = s3c24xx_dev_to_port(dev);
  1035. struct s3c24xx_uart_port *ourport = to_ourport(port);
  1036. if (port) {
  1037. clk_prepare_enable(ourport->clk);
  1038. s3c24xx_serial_resetport(port, s3c24xx_port_to_cfg(port));
  1039. clk_disable_unprepare(ourport->clk);
  1040. uart_resume_port(&s3c24xx_uart_drv, port);
  1041. }
  1042. return 0;
  1043. }
  1044. static const struct dev_pm_ops s3c24xx_serial_pm_ops = {
  1045. .suspend = s3c24xx_serial_suspend,
  1046. .resume = s3c24xx_serial_resume,
  1047. };
  1048. #define SERIAL_SAMSUNG_PM_OPS (&s3c24xx_serial_pm_ops)
  1049. #else /* !CONFIG_PM_SLEEP */
  1050. #define SERIAL_SAMSUNG_PM_OPS NULL
  1051. #endif /* CONFIG_PM_SLEEP */
  1052. /* Console code */
  1053. #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
  1054. static struct uart_port *cons_uart;
  1055. static int
  1056. s3c24xx_serial_console_txrdy(struct uart_port *port, unsigned int ufcon)
  1057. {
  1058. struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
  1059. unsigned long ufstat, utrstat;
  1060. if (ufcon & S3C2410_UFCON_FIFOMODE) {
  1061. /* fifo mode - check amount of data in fifo registers... */
  1062. ufstat = rd_regl(port, S3C2410_UFSTAT);
  1063. return (ufstat & info->tx_fifofull) ? 0 : 1;
  1064. }
  1065. /* in non-fifo mode, we go and use the tx buffer empty */
  1066. utrstat = rd_regl(port, S3C2410_UTRSTAT);
  1067. return (utrstat & S3C2410_UTRSTAT_TXE) ? 1 : 0;
  1068. }
  1069. #ifdef CONFIG_CONSOLE_POLL
  1070. /*
  1071. * Console polling routines for writing and reading from the uart while
  1072. * in an interrupt or debug context.
  1073. */
  1074. static int s3c24xx_serial_get_poll_char(struct uart_port *port)
  1075. {
  1076. struct s3c24xx_uart_port *ourport = to_ourport(port);
  1077. unsigned int ufstat;
  1078. ufstat = rd_regl(port, S3C2410_UFSTAT);
  1079. if (s3c24xx_serial_rx_fifocnt(ourport, ufstat) == 0)
  1080. return NO_POLL_CHAR;
  1081. return rd_regb(port, S3C2410_URXH);
  1082. }
  1083. static void s3c24xx_serial_put_poll_char(struct uart_port *port,
  1084. unsigned char c)
  1085. {
  1086. unsigned int ufcon = rd_regl(cons_uart, S3C2410_UFCON);
  1087. while (!s3c24xx_serial_console_txrdy(port, ufcon))
  1088. cpu_relax();
  1089. wr_regb(cons_uart, S3C2410_UTXH, c);
  1090. }
  1091. #endif /* CONFIG_CONSOLE_POLL */
  1092. static void
  1093. s3c24xx_serial_console_putchar(struct uart_port *port, int ch)
  1094. {
  1095. unsigned int ufcon = rd_regl(cons_uart, S3C2410_UFCON);
  1096. while (!s3c24xx_serial_console_txrdy(port, ufcon))
  1097. barrier();
  1098. wr_regb(cons_uart, S3C2410_UTXH, ch);
  1099. }
  1100. static void
  1101. s3c24xx_serial_console_write(struct console *co, const char *s,
  1102. unsigned int count)
  1103. {
  1104. uart_console_write(cons_uart, s, count, s3c24xx_serial_console_putchar);
  1105. }
  1106. static void __init
  1107. s3c24xx_serial_get_options(struct uart_port *port, int *baud,
  1108. int *parity, int *bits)
  1109. {
  1110. struct clk *clk;
  1111. unsigned int ulcon;
  1112. unsigned int ucon;
  1113. unsigned int ubrdiv;
  1114. unsigned long rate;
  1115. unsigned int clk_sel;
  1116. char clk_name[MAX_CLK_NAME_LENGTH];
  1117. ulcon = rd_regl(port, S3C2410_ULCON);
  1118. ucon = rd_regl(port, S3C2410_UCON);
  1119. ubrdiv = rd_regl(port, S3C2410_UBRDIV);
  1120. dbg("s3c24xx_serial_get_options: port=%p\n"
  1121. "registers: ulcon=%08x, ucon=%08x, ubdriv=%08x\n",
  1122. port, ulcon, ucon, ubrdiv);
  1123. if ((ucon & 0xf) != 0) {
  1124. /* consider the serial port configured if the tx/rx mode set */
  1125. switch (ulcon & S3C2410_LCON_CSMASK) {
  1126. case S3C2410_LCON_CS5:
  1127. *bits = 5;
  1128. break;
  1129. case S3C2410_LCON_CS6:
  1130. *bits = 6;
  1131. break;
  1132. case S3C2410_LCON_CS7:
  1133. *bits = 7;
  1134. break;
  1135. default:
  1136. case S3C2410_LCON_CS8:
  1137. *bits = 8;
  1138. break;
  1139. }
  1140. switch (ulcon & S3C2410_LCON_PMASK) {
  1141. case S3C2410_LCON_PEVEN:
  1142. *parity = 'e';
  1143. break;
  1144. case S3C2410_LCON_PODD:
  1145. *parity = 'o';
  1146. break;
  1147. case S3C2410_LCON_PNONE:
  1148. default:
  1149. *parity = 'n';
  1150. }
  1151. /* now calculate the baud rate */
  1152. clk_sel = s3c24xx_serial_getsource(port);
  1153. sprintf(clk_name, "clk_uart_baud%d", clk_sel);
  1154. clk = clk_get(port->dev, clk_name);
  1155. if (!IS_ERR(clk))
  1156. rate = clk_get_rate(clk);
  1157. else
  1158. rate = 1;
  1159. *baud = rate / (16 * (ubrdiv + 1));
  1160. dbg("calculated baud %d\n", *baud);
  1161. }
  1162. }
  1163. static int __init
  1164. s3c24xx_serial_console_setup(struct console *co, char *options)
  1165. {
  1166. struct uart_port *port;
  1167. int baud = 9600;
  1168. int bits = 8;
  1169. int parity = 'n';
  1170. int flow = 'n';
  1171. dbg("s3c24xx_serial_console_setup: co=%p (%d), %s\n",
  1172. co, co->index, options);
  1173. /* is this a valid port */
  1174. if (co->index == -1 || co->index >= CONFIG_SERIAL_SAMSUNG_UARTS)
  1175. co->index = 0;
  1176. port = &s3c24xx_serial_ports[co->index].port;
  1177. /* is the port configured? */
  1178. if (port->mapbase == 0x0)
  1179. return -ENODEV;
  1180. cons_uart = port;
  1181. dbg("s3c24xx_serial_console_setup: port=%p (%d)\n", port, co->index);
  1182. /*
  1183. * Check whether an invalid uart number has been specified, and
  1184. * if so, search for the first available port that does have
  1185. * console support.
  1186. */
  1187. if (options)
  1188. uart_parse_options(options, &baud, &parity, &bits, &flow);
  1189. else
  1190. s3c24xx_serial_get_options(port, &baud, &parity, &bits);
  1191. dbg("s3c24xx_serial_console_setup: baud %d\n", baud);
  1192. return uart_set_options(port, co, baud, parity, bits, flow);
  1193. }
  1194. static struct console s3c24xx_serial_console = {
  1195. .name = S3C24XX_SERIAL_NAME,
  1196. .device = uart_console_device,
  1197. .flags = CON_PRINTBUFFER,
  1198. .index = -1,
  1199. .write = s3c24xx_serial_console_write,
  1200. .setup = s3c24xx_serial_console_setup,
  1201. .data = &s3c24xx_uart_drv,
  1202. };
  1203. #endif /* CONFIG_SERIAL_SAMSUNG_CONSOLE */
  1204. #ifdef CONFIG_CPU_S3C2410
  1205. static struct s3c24xx_serial_drv_data s3c2410_serial_drv_data = {
  1206. .info = &(struct s3c24xx_uart_info) {
  1207. .name = "Samsung S3C2410 UART",
  1208. .type = PORT_S3C2410,
  1209. .fifosize = 16,
  1210. .rx_fifomask = S3C2410_UFSTAT_RXMASK,
  1211. .rx_fifoshift = S3C2410_UFSTAT_RXSHIFT,
  1212. .rx_fifofull = S3C2410_UFSTAT_RXFULL,
  1213. .tx_fifofull = S3C2410_UFSTAT_TXFULL,
  1214. .tx_fifomask = S3C2410_UFSTAT_TXMASK,
  1215. .tx_fifoshift = S3C2410_UFSTAT_TXSHIFT,
  1216. .def_clk_sel = S3C2410_UCON_CLKSEL0,
  1217. .num_clks = 2,
  1218. .clksel_mask = S3C2410_UCON_CLKMASK,
  1219. .clksel_shift = S3C2410_UCON_CLKSHIFT,
  1220. },
  1221. .def_cfg = &(struct s3c2410_uartcfg) {
  1222. .ucon = S3C2410_UCON_DEFAULT,
  1223. .ufcon = S3C2410_UFCON_DEFAULT,
  1224. },
  1225. };
  1226. #define S3C2410_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2410_serial_drv_data)
  1227. #else
  1228. #define S3C2410_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1229. #endif
  1230. #ifdef CONFIG_CPU_S3C2412
  1231. static struct s3c24xx_serial_drv_data s3c2412_serial_drv_data = {
  1232. .info = &(struct s3c24xx_uart_info) {
  1233. .name = "Samsung S3C2412 UART",
  1234. .type = PORT_S3C2412,
  1235. .fifosize = 64,
  1236. .has_divslot = 1,
  1237. .rx_fifomask = S3C2440_UFSTAT_RXMASK,
  1238. .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
  1239. .rx_fifofull = S3C2440_UFSTAT_RXFULL,
  1240. .tx_fifofull = S3C2440_UFSTAT_TXFULL,
  1241. .tx_fifomask = S3C2440_UFSTAT_TXMASK,
  1242. .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
  1243. .def_clk_sel = S3C2410_UCON_CLKSEL2,
  1244. .num_clks = 4,
  1245. .clksel_mask = S3C2412_UCON_CLKMASK,
  1246. .clksel_shift = S3C2412_UCON_CLKSHIFT,
  1247. },
  1248. .def_cfg = &(struct s3c2410_uartcfg) {
  1249. .ucon = S3C2410_UCON_DEFAULT,
  1250. .ufcon = S3C2410_UFCON_DEFAULT,
  1251. },
  1252. };
  1253. #define S3C2412_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2412_serial_drv_data)
  1254. #else
  1255. #define S3C2412_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1256. #endif
  1257. #if defined(CONFIG_CPU_S3C2440) || defined(CONFIG_CPU_S3C2416) || \
  1258. defined(CONFIG_CPU_S3C2443) || defined(CONFIG_CPU_S3C2442)
  1259. static struct s3c24xx_serial_drv_data s3c2440_serial_drv_data = {
  1260. .info = &(struct s3c24xx_uart_info) {
  1261. .name = "Samsung S3C2440 UART",
  1262. .type = PORT_S3C2440,
  1263. .fifosize = 64,
  1264. .has_divslot = 1,
  1265. .rx_fifomask = S3C2440_UFSTAT_RXMASK,
  1266. .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
  1267. .rx_fifofull = S3C2440_UFSTAT_RXFULL,
  1268. .tx_fifofull = S3C2440_UFSTAT_TXFULL,
  1269. .tx_fifomask = S3C2440_UFSTAT_TXMASK,
  1270. .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
  1271. .def_clk_sel = S3C2410_UCON_CLKSEL2,
  1272. .num_clks = 4,
  1273. .clksel_mask = S3C2412_UCON_CLKMASK,
  1274. .clksel_shift = S3C2412_UCON_CLKSHIFT,
  1275. },
  1276. .def_cfg = &(struct s3c2410_uartcfg) {
  1277. .ucon = S3C2410_UCON_DEFAULT,
  1278. .ufcon = S3C2410_UFCON_DEFAULT,
  1279. },
  1280. };
  1281. #define S3C2440_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2440_serial_drv_data)
  1282. #else
  1283. #define S3C2440_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1284. #endif
  1285. #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410) || \
  1286. defined(CONFIG_CPU_S5P6440) || defined(CONFIG_CPU_S5P6450) || \
  1287. defined(CONFIG_CPU_S5PC100)
  1288. static struct s3c24xx_serial_drv_data s3c6400_serial_drv_data = {
  1289. .info = &(struct s3c24xx_uart_info) {
  1290. .name = "Samsung S3C6400 UART",
  1291. .type = PORT_S3C6400,
  1292. .fifosize = 64,
  1293. .has_divslot = 1,
  1294. .rx_fifomask = S3C2440_UFSTAT_RXMASK,
  1295. .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
  1296. .rx_fifofull = S3C2440_UFSTAT_RXFULL,
  1297. .tx_fifofull = S3C2440_UFSTAT_TXFULL,
  1298. .tx_fifomask = S3C2440_UFSTAT_TXMASK,
  1299. .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
  1300. .def_clk_sel = S3C2410_UCON_CLKSEL2,
  1301. .num_clks = 4,
  1302. .clksel_mask = S3C6400_UCON_CLKMASK,
  1303. .clksel_shift = S3C6400_UCON_CLKSHIFT,
  1304. },
  1305. .def_cfg = &(struct s3c2410_uartcfg) {
  1306. .ucon = S3C2410_UCON_DEFAULT,
  1307. .ufcon = S3C2410_UFCON_DEFAULT,
  1308. },
  1309. };
  1310. #define S3C6400_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c6400_serial_drv_data)
  1311. #else
  1312. #define S3C6400_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1313. #endif
  1314. #ifdef CONFIG_CPU_S5PV210
  1315. static struct s3c24xx_serial_drv_data s5pv210_serial_drv_data = {
  1316. .info = &(struct s3c24xx_uart_info) {
  1317. .name = "Samsung S5PV210 UART",
  1318. .type = PORT_S3C6400,
  1319. .has_divslot = 1,
  1320. .rx_fifomask = S5PV210_UFSTAT_RXMASK,
  1321. .rx_fifoshift = S5PV210_UFSTAT_RXSHIFT,
  1322. .rx_fifofull = S5PV210_UFSTAT_RXFULL,
  1323. .tx_fifofull = S5PV210_UFSTAT_TXFULL,
  1324. .tx_fifomask = S5PV210_UFSTAT_TXMASK,
  1325. .tx_fifoshift = S5PV210_UFSTAT_TXSHIFT,
  1326. .def_clk_sel = S3C2410_UCON_CLKSEL0,
  1327. .num_clks = 2,
  1328. .clksel_mask = S5PV210_UCON_CLKMASK,
  1329. .clksel_shift = S5PV210_UCON_CLKSHIFT,
  1330. },
  1331. .def_cfg = &(struct s3c2410_uartcfg) {
  1332. .ucon = S5PV210_UCON_DEFAULT,
  1333. .ufcon = S5PV210_UFCON_DEFAULT,
  1334. },
  1335. .fifosize = { 256, 64, 16, 16 },
  1336. };
  1337. #define S5PV210_SERIAL_DRV_DATA ((kernel_ulong_t)&s5pv210_serial_drv_data)
  1338. #else
  1339. #define S5PV210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1340. #endif
  1341. #if defined(CONFIG_CPU_EXYNOS4210) || defined(CONFIG_SOC_EXYNOS4212) || \
  1342. defined(CONFIG_SOC_EXYNOS4412) || defined(CONFIG_SOC_EXYNOS5250) || \
  1343. defined(CONFIG_SOC_EXYNOS5440)
  1344. static struct s3c24xx_serial_drv_data exynos4210_serial_drv_data = {
  1345. .info = &(struct s3c24xx_uart_info) {
  1346. .name = "Samsung Exynos4 UART",
  1347. .type = PORT_S3C6400,
  1348. .has_divslot = 1,
  1349. .rx_fifomask = S5PV210_UFSTAT_RXMASK,
  1350. .rx_fifoshift = S5PV210_UFSTAT_RXSHIFT,
  1351. .rx_fifofull = S5PV210_UFSTAT_RXFULL,
  1352. .tx_fifofull = S5PV210_UFSTAT_TXFULL,
  1353. .tx_fifomask = S5PV210_UFSTAT_TXMASK,
  1354. .tx_fifoshift = S5PV210_UFSTAT_TXSHIFT,
  1355. .def_clk_sel = S3C2410_UCON_CLKSEL0,
  1356. .num_clks = 1,
  1357. .clksel_mask = 0,
  1358. .clksel_shift = 0,
  1359. },
  1360. .def_cfg = &(struct s3c2410_uartcfg) {
  1361. .ucon = S5PV210_UCON_DEFAULT,
  1362. .ufcon = S5PV210_UFCON_DEFAULT,
  1363. .has_fracval = 1,
  1364. },
  1365. .fifosize = { 256, 64, 16, 16 },
  1366. };
  1367. #define EXYNOS4210_SERIAL_DRV_DATA ((kernel_ulong_t)&exynos4210_serial_drv_data)
  1368. #else
  1369. #define EXYNOS4210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
  1370. #endif
  1371. static struct platform_device_id s3c24xx_serial_driver_ids[] = {
  1372. {
  1373. .name = "s3c2410-uart",
  1374. .driver_data = S3C2410_SERIAL_DRV_DATA,
  1375. }, {
  1376. .name = "s3c2412-uart",
  1377. .driver_data = S3C2412_SERIAL_DRV_DATA,
  1378. }, {
  1379. .name = "s3c2440-uart",
  1380. .driver_data = S3C2440_SERIAL_DRV_DATA,
  1381. }, {
  1382. .name = "s3c6400-uart",
  1383. .driver_data = S3C6400_SERIAL_DRV_DATA,
  1384. }, {
  1385. .name = "s5pv210-uart",
  1386. .driver_data = S5PV210_SERIAL_DRV_DATA,
  1387. }, {
  1388. .name = "exynos4210-uart",
  1389. .driver_data = EXYNOS4210_SERIAL_DRV_DATA,
  1390. },
  1391. { },
  1392. };
  1393. MODULE_DEVICE_TABLE(platform, s3c24xx_serial_driver_ids);
  1394. #ifdef CONFIG_OF
  1395. static const struct of_device_id s3c24xx_uart_dt_match[] = {
  1396. { .compatible = "samsung,s3c2410-uart",
  1397. .data = (void *)S3C2410_SERIAL_DRV_DATA },
  1398. { .compatible = "samsung,s3c2412-uart",
  1399. .data = (void *)S3C2412_SERIAL_DRV_DATA },
  1400. { .compatible = "samsung,s3c2440-uart",
  1401. .data = (void *)S3C2440_SERIAL_DRV_DATA },
  1402. { .compatible = "samsung,s3c6400-uart",
  1403. .data = (void *)S3C6400_SERIAL_DRV_DATA },
  1404. { .compatible = "samsung,s5pv210-uart",
  1405. .data = (void *)S5PV210_SERIAL_DRV_DATA },
  1406. { .compatible = "samsung,exynos4210-uart",
  1407. .data = (void *)EXYNOS4210_SERIAL_DRV_DATA },
  1408. {},
  1409. };
  1410. MODULE_DEVICE_TABLE(of, s3c24xx_uart_dt_match);
  1411. #endif
  1412. static struct platform_driver samsung_serial_driver = {
  1413. .probe = s3c24xx_serial_probe,
  1414. .remove = s3c24xx_serial_remove,
  1415. .id_table = s3c24xx_serial_driver_ids,
  1416. .driver = {
  1417. .name = "samsung-uart",
  1418. .owner = THIS_MODULE,
  1419. .pm = SERIAL_SAMSUNG_PM_OPS,
  1420. .of_match_table = of_match_ptr(s3c24xx_uart_dt_match),
  1421. },
  1422. };
  1423. /* module initialisation code */
  1424. static int __init s3c24xx_serial_modinit(void)
  1425. {
  1426. int ret;
  1427. ret = uart_register_driver(&s3c24xx_uart_drv);
  1428. if (ret < 0) {
  1429. pr_err("Failed to register Samsung UART driver\n");
  1430. return ret;
  1431. }
  1432. return platform_driver_register(&samsung_serial_driver);
  1433. }
  1434. static void __exit s3c24xx_serial_modexit(void)
  1435. {
  1436. uart_unregister_driver(&s3c24xx_uart_drv);
  1437. }
  1438. module_init(s3c24xx_serial_modinit);
  1439. module_exit(s3c24xx_serial_modexit);
  1440. MODULE_ALIAS("platform:samsung-uart");
  1441. MODULE_DESCRIPTION("Samsung SoC Serial port driver");
  1442. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  1443. MODULE_LICENSE("GPL v2");