con3215.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204
  1. /*
  2. * 3215 line mode terminal driver.
  3. *
  4. * Copyright IBM Corp. 1999, 2009
  5. * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
  6. *
  7. * Updated:
  8. * Aug-2000: Added tab support
  9. * Dan Morrison, IBM Corporation <dmorriso@cse.buffalo.edu>
  10. */
  11. #include <linux/module.h>
  12. #include <linux/types.h>
  13. #include <linux/kdev_t.h>
  14. #include <linux/tty.h>
  15. #include <linux/tty_flip.h>
  16. #include <linux/vt_kern.h>
  17. #include <linux/init.h>
  18. #include <linux/console.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/err.h>
  21. #include <linux/reboot.h>
  22. #include <linux/serial.h> /* ASYNC_* flags */
  23. #include <linux/slab.h>
  24. #include <asm/ccwdev.h>
  25. #include <asm/cio.h>
  26. #include <asm/io.h>
  27. #include <asm/ebcdic.h>
  28. #include <asm/uaccess.h>
  29. #include <asm/delay.h>
  30. #include <asm/cpcmd.h>
  31. #include <asm/setup.h>
  32. #include "ctrlchar.h"
  33. #define NR_3215 1
  34. #define NR_3215_REQ (4*NR_3215)
  35. #define RAW3215_BUFFER_SIZE 65536 /* output buffer size */
  36. #define RAW3215_INBUF_SIZE 256 /* input buffer size */
  37. #define RAW3215_MIN_SPACE 128 /* minimum free space for wakeup */
  38. #define RAW3215_MIN_WRITE 1024 /* min. length for immediate output */
  39. #define RAW3215_MAX_BYTES 3968 /* max. bytes to write with one ssch */
  40. #define RAW3215_MAX_NEWLINE 50 /* max. lines to write with one ssch */
  41. #define RAW3215_NR_CCWS 3
  42. #define RAW3215_TIMEOUT HZ/10 /* time for delayed output */
  43. #define RAW3215_FIXED 1 /* 3215 console device is not be freed */
  44. #define RAW3215_WORKING 4 /* set if a request is being worked on */
  45. #define RAW3215_THROTTLED 8 /* set if reading is disabled */
  46. #define RAW3215_STOPPED 16 /* set if writing is disabled */
  47. #define RAW3215_TIMER_RUNS 64 /* set if the output delay timer is on */
  48. #define RAW3215_FLUSHING 128 /* set to flush buffer (no delay) */
  49. #define TAB_STOP_SIZE 8 /* tab stop size */
  50. /*
  51. * Request types for a 3215 device
  52. */
  53. enum raw3215_type {
  54. RAW3215_FREE, RAW3215_READ, RAW3215_WRITE
  55. };
  56. /*
  57. * Request structure for a 3215 device
  58. */
  59. struct raw3215_req {
  60. enum raw3215_type type; /* type of the request */
  61. int start, len; /* start index & len in output buffer */
  62. int delayable; /* indication to wait for more data */
  63. int residual; /* residual count for read request */
  64. struct ccw1 ccws[RAW3215_NR_CCWS]; /* space for the channel program */
  65. struct raw3215_info *info; /* pointer to main structure */
  66. struct raw3215_req *next; /* pointer to next request */
  67. } __attribute__ ((aligned(8)));
  68. struct raw3215_info {
  69. struct tty_port port;
  70. struct ccw_device *cdev; /* device for tty driver */
  71. spinlock_t *lock; /* pointer to irq lock */
  72. int flags; /* state flags */
  73. char *buffer; /* pointer to output buffer */
  74. char *inbuf; /* pointer to input buffer */
  75. int head; /* first free byte in output buffer */
  76. int count; /* number of bytes in output buffer */
  77. int written; /* number of bytes in write requests */
  78. struct raw3215_req *queued_read; /* pointer to queued read requests */
  79. struct raw3215_req *queued_write;/* pointer to queued write requests */
  80. struct tasklet_struct tlet; /* tasklet to invoke tty_wakeup */
  81. wait_queue_head_t empty_wait; /* wait queue for flushing */
  82. struct timer_list timer; /* timer for delayed output */
  83. int line_pos; /* position on the line (for tabs) */
  84. char ubuffer[80]; /* copy_from_user buffer */
  85. };
  86. /* array of 3215 devices structures */
  87. static struct raw3215_info *raw3215[NR_3215];
  88. /* spinlock to protect the raw3215 array */
  89. static DEFINE_SPINLOCK(raw3215_device_lock);
  90. /* list of free request structures */
  91. static struct raw3215_req *raw3215_freelist;
  92. /* spinlock to protect free list */
  93. static spinlock_t raw3215_freelist_lock;
  94. static struct tty_driver *tty3215_driver;
  95. /*
  96. * Get a request structure from the free list
  97. */
  98. static inline struct raw3215_req *raw3215_alloc_req(void)
  99. {
  100. struct raw3215_req *req;
  101. unsigned long flags;
  102. spin_lock_irqsave(&raw3215_freelist_lock, flags);
  103. req = raw3215_freelist;
  104. raw3215_freelist = req->next;
  105. spin_unlock_irqrestore(&raw3215_freelist_lock, flags);
  106. return req;
  107. }
  108. /*
  109. * Put a request structure back to the free list
  110. */
  111. static inline void raw3215_free_req(struct raw3215_req *req)
  112. {
  113. unsigned long flags;
  114. if (req->type == RAW3215_FREE)
  115. return; /* don't free a free request */
  116. req->type = RAW3215_FREE;
  117. spin_lock_irqsave(&raw3215_freelist_lock, flags);
  118. req->next = raw3215_freelist;
  119. raw3215_freelist = req;
  120. spin_unlock_irqrestore(&raw3215_freelist_lock, flags);
  121. }
  122. /*
  123. * Set up a read request that reads up to 160 byte from the 3215 device.
  124. * If there is a queued read request it is used, but that shouldn't happen
  125. * because a 3215 terminal won't accept a new read before the old one is
  126. * completed.
  127. */
  128. static void raw3215_mk_read_req(struct raw3215_info *raw)
  129. {
  130. struct raw3215_req *req;
  131. struct ccw1 *ccw;
  132. /* there can only be ONE read request at a time */
  133. req = raw->queued_read;
  134. if (req == NULL) {
  135. /* no queued read request, use new req structure */
  136. req = raw3215_alloc_req();
  137. req->type = RAW3215_READ;
  138. req->info = raw;
  139. raw->queued_read = req;
  140. }
  141. ccw = req->ccws;
  142. ccw->cmd_code = 0x0A; /* read inquiry */
  143. ccw->flags = 0x20; /* ignore incorrect length */
  144. ccw->count = 160;
  145. ccw->cda = (__u32) __pa(raw->inbuf);
  146. }
  147. /*
  148. * Set up a write request with the information from the main structure.
  149. * A ccw chain is created that writes as much as possible from the output
  150. * buffer to the 3215 device. If a queued write exists it is replaced by
  151. * the new, probably lengthened request.
  152. */
  153. static void raw3215_mk_write_req(struct raw3215_info *raw)
  154. {
  155. struct raw3215_req *req;
  156. struct ccw1 *ccw;
  157. int len, count, ix, lines;
  158. if (raw->count <= raw->written)
  159. return;
  160. /* check if there is a queued write request */
  161. req = raw->queued_write;
  162. if (req == NULL) {
  163. /* no queued write request, use new req structure */
  164. req = raw3215_alloc_req();
  165. req->type = RAW3215_WRITE;
  166. req->info = raw;
  167. raw->queued_write = req;
  168. } else {
  169. raw->written -= req->len;
  170. }
  171. ccw = req->ccws;
  172. req->start = (raw->head - raw->count + raw->written) &
  173. (RAW3215_BUFFER_SIZE - 1);
  174. /*
  175. * now we have to count newlines. We can at max accept
  176. * RAW3215_MAX_NEWLINE newlines in a single ssch due to
  177. * a restriction in VM
  178. */
  179. lines = 0;
  180. ix = req->start;
  181. while (lines < RAW3215_MAX_NEWLINE && ix != raw->head) {
  182. if (raw->buffer[ix] == 0x15)
  183. lines++;
  184. ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
  185. }
  186. len = ((ix - 1 - req->start) & (RAW3215_BUFFER_SIZE - 1)) + 1;
  187. if (len > RAW3215_MAX_BYTES)
  188. len = RAW3215_MAX_BYTES;
  189. req->len = len;
  190. raw->written += len;
  191. /* set the indication if we should try to enlarge this request */
  192. req->delayable = (ix == raw->head) && (len < RAW3215_MIN_WRITE);
  193. ix = req->start;
  194. while (len > 0) {
  195. if (ccw > req->ccws)
  196. ccw[-1].flags |= 0x40; /* use command chaining */
  197. ccw->cmd_code = 0x01; /* write, auto carrier return */
  198. ccw->flags = 0x20; /* ignore incorrect length ind. */
  199. ccw->cda =
  200. (__u32) __pa(raw->buffer + ix);
  201. count = len;
  202. if (ix + count > RAW3215_BUFFER_SIZE)
  203. count = RAW3215_BUFFER_SIZE - ix;
  204. ccw->count = count;
  205. len -= count;
  206. ix = (ix + count) & (RAW3215_BUFFER_SIZE - 1);
  207. ccw++;
  208. }
  209. /*
  210. * Add a NOP to the channel program. 3215 devices are purely
  211. * emulated and its much better to avoid the channel end
  212. * interrupt in this case.
  213. */
  214. if (ccw > req->ccws)
  215. ccw[-1].flags |= 0x40; /* use command chaining */
  216. ccw->cmd_code = 0x03; /* NOP */
  217. ccw->flags = 0;
  218. ccw->cda = 0;
  219. ccw->count = 1;
  220. }
  221. /*
  222. * Start a read or a write request
  223. */
  224. static void raw3215_start_io(struct raw3215_info *raw)
  225. {
  226. struct raw3215_req *req;
  227. int res;
  228. req = raw->queued_read;
  229. if (req != NULL &&
  230. !(raw->flags & (RAW3215_WORKING | RAW3215_THROTTLED))) {
  231. /* dequeue request */
  232. raw->queued_read = NULL;
  233. res = ccw_device_start(raw->cdev, req->ccws,
  234. (unsigned long) req, 0, 0);
  235. if (res != 0) {
  236. /* do_IO failed, put request back to queue */
  237. raw->queued_read = req;
  238. } else {
  239. raw->flags |= RAW3215_WORKING;
  240. }
  241. }
  242. req = raw->queued_write;
  243. if (req != NULL &&
  244. !(raw->flags & (RAW3215_WORKING | RAW3215_STOPPED))) {
  245. /* dequeue request */
  246. raw->queued_write = NULL;
  247. res = ccw_device_start(raw->cdev, req->ccws,
  248. (unsigned long) req, 0, 0);
  249. if (res != 0) {
  250. /* do_IO failed, put request back to queue */
  251. raw->queued_write = req;
  252. } else {
  253. raw->flags |= RAW3215_WORKING;
  254. }
  255. }
  256. }
  257. /*
  258. * Function to start a delayed output after RAW3215_TIMEOUT seconds
  259. */
  260. static void raw3215_timeout(unsigned long __data)
  261. {
  262. struct raw3215_info *raw = (struct raw3215_info *) __data;
  263. unsigned long flags;
  264. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  265. if (raw->flags & RAW3215_TIMER_RUNS) {
  266. del_timer(&raw->timer);
  267. raw->flags &= ~RAW3215_TIMER_RUNS;
  268. if (!(raw->port.flags & ASYNC_SUSPENDED)) {
  269. raw3215_mk_write_req(raw);
  270. raw3215_start_io(raw);
  271. }
  272. }
  273. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  274. }
  275. /*
  276. * Function to conditionally start an IO. A read is started immediately,
  277. * a write is only started immediately if the flush flag is on or the
  278. * amount of data is bigger than RAW3215_MIN_WRITE. If a write is not
  279. * done immediately a timer is started with a delay of RAW3215_TIMEOUT.
  280. */
  281. static inline void raw3215_try_io(struct raw3215_info *raw)
  282. {
  283. if (!(raw->port.flags & ASYNC_INITIALIZED) ||
  284. (raw->port.flags & ASYNC_SUSPENDED))
  285. return;
  286. if (raw->queued_read != NULL)
  287. raw3215_start_io(raw);
  288. else if (raw->queued_write != NULL) {
  289. if ((raw->queued_write->delayable == 0) ||
  290. (raw->flags & RAW3215_FLUSHING)) {
  291. /* execute write requests bigger than minimum size */
  292. raw3215_start_io(raw);
  293. if (raw->flags & RAW3215_TIMER_RUNS) {
  294. del_timer(&raw->timer);
  295. raw->flags &= ~RAW3215_TIMER_RUNS;
  296. }
  297. } else if (!(raw->flags & RAW3215_TIMER_RUNS)) {
  298. /* delay small writes */
  299. raw->timer.expires = RAW3215_TIMEOUT + jiffies;
  300. add_timer(&raw->timer);
  301. raw->flags |= RAW3215_TIMER_RUNS;
  302. }
  303. }
  304. }
  305. /*
  306. * Call tty_wakeup from tasklet context
  307. */
  308. static void raw3215_wakeup(unsigned long data)
  309. {
  310. struct raw3215_info *raw = (struct raw3215_info *) data;
  311. struct tty_struct *tty;
  312. tty = tty_port_tty_get(&raw->port);
  313. if (tty) {
  314. tty_wakeup(tty);
  315. tty_kref_put(tty);
  316. }
  317. }
  318. /*
  319. * Try to start the next IO and wake up processes waiting on the tty.
  320. */
  321. static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty)
  322. {
  323. raw3215_mk_write_req(raw);
  324. raw3215_try_io(raw);
  325. if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE)
  326. tasklet_schedule(&raw->tlet);
  327. }
  328. /*
  329. * Interrupt routine, called from common io layer
  330. */
  331. static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm,
  332. struct irb *irb)
  333. {
  334. struct raw3215_info *raw;
  335. struct raw3215_req *req;
  336. struct tty_struct *tty;
  337. int cstat, dstat;
  338. int count;
  339. raw = dev_get_drvdata(&cdev->dev);
  340. req = (struct raw3215_req *) intparm;
  341. tty = tty_port_tty_get(&raw->port);
  342. cstat = irb->scsw.cmd.cstat;
  343. dstat = irb->scsw.cmd.dstat;
  344. if (cstat != 0)
  345. raw3215_next_io(raw, tty);
  346. if (dstat & 0x01) { /* we got a unit exception */
  347. dstat &= ~0x01; /* we can ignore it */
  348. }
  349. switch (dstat) {
  350. case 0x80:
  351. if (cstat != 0)
  352. break;
  353. /* Attention interrupt, someone hit the enter key */
  354. raw3215_mk_read_req(raw);
  355. raw3215_next_io(raw, tty);
  356. break;
  357. case 0x08:
  358. case 0x0C:
  359. /* Channel end interrupt. */
  360. if ((raw = req->info) == NULL)
  361. goto put_tty; /* That shouldn't happen ... */
  362. if (req->type == RAW3215_READ) {
  363. /* store residual count, then wait for device end */
  364. req->residual = irb->scsw.cmd.count;
  365. }
  366. if (dstat == 0x08)
  367. break;
  368. case 0x04:
  369. /* Device end interrupt. */
  370. if ((raw = req->info) == NULL)
  371. goto put_tty; /* That shouldn't happen ... */
  372. if (req->type == RAW3215_READ && tty != NULL) {
  373. unsigned int cchar;
  374. count = 160 - req->residual;
  375. EBCASC(raw->inbuf, count);
  376. cchar = ctrlchar_handle(raw->inbuf, count, tty);
  377. switch (cchar & CTRLCHAR_MASK) {
  378. case CTRLCHAR_SYSRQ:
  379. break;
  380. case CTRLCHAR_CTRL:
  381. tty_insert_flip_char(&raw->port, cchar,
  382. TTY_NORMAL);
  383. tty_flip_buffer_push(&raw->port);
  384. break;
  385. case CTRLCHAR_NONE:
  386. if (count < 2 ||
  387. (strncmp(raw->inbuf+count-2, "\252n", 2) &&
  388. strncmp(raw->inbuf+count-2, "^n", 2)) ) {
  389. /* add the auto \n */
  390. raw->inbuf[count] = '\n';
  391. count++;
  392. } else
  393. count -= 2;
  394. tty_insert_flip_string(&raw->port, raw->inbuf,
  395. count);
  396. tty_flip_buffer_push(&raw->port);
  397. break;
  398. }
  399. } else if (req->type == RAW3215_WRITE) {
  400. raw->count -= req->len;
  401. raw->written -= req->len;
  402. }
  403. raw->flags &= ~RAW3215_WORKING;
  404. raw3215_free_req(req);
  405. /* check for empty wait */
  406. if (waitqueue_active(&raw->empty_wait) &&
  407. raw->queued_write == NULL &&
  408. raw->queued_read == NULL) {
  409. wake_up_interruptible(&raw->empty_wait);
  410. }
  411. raw3215_next_io(raw, tty);
  412. break;
  413. default:
  414. /* Strange interrupt, I'll do my best to clean up */
  415. if (req != NULL && req->type != RAW3215_FREE) {
  416. if (req->type == RAW3215_WRITE) {
  417. raw->count -= req->len;
  418. raw->written -= req->len;
  419. }
  420. raw->flags &= ~RAW3215_WORKING;
  421. raw3215_free_req(req);
  422. }
  423. raw3215_next_io(raw, tty);
  424. }
  425. put_tty:
  426. tty_kref_put(tty);
  427. }
  428. /*
  429. * Drop the oldest line from the output buffer.
  430. */
  431. static void raw3215_drop_line(struct raw3215_info *raw)
  432. {
  433. int ix;
  434. char ch;
  435. BUG_ON(raw->written != 0);
  436. ix = (raw->head - raw->count) & (RAW3215_BUFFER_SIZE - 1);
  437. while (raw->count > 0) {
  438. ch = raw->buffer[ix];
  439. ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
  440. raw->count--;
  441. if (ch == 0x15)
  442. break;
  443. }
  444. raw->head = ix;
  445. }
  446. /*
  447. * Wait until length bytes are available int the output buffer.
  448. * Has to be called with the s390irq lock held. Can be called
  449. * disabled.
  450. */
  451. static void raw3215_make_room(struct raw3215_info *raw, unsigned int length)
  452. {
  453. while (RAW3215_BUFFER_SIZE - raw->count < length) {
  454. /* While console is frozen for suspend we have no other
  455. * choice but to drop message from the buffer to make
  456. * room for even more messages. */
  457. if (raw->port.flags & ASYNC_SUSPENDED) {
  458. raw3215_drop_line(raw);
  459. continue;
  460. }
  461. /* there might be a request pending */
  462. raw->flags |= RAW3215_FLUSHING;
  463. raw3215_mk_write_req(raw);
  464. raw3215_try_io(raw);
  465. raw->flags &= ~RAW3215_FLUSHING;
  466. #ifdef CONFIG_TN3215_CONSOLE
  467. wait_cons_dev();
  468. #endif
  469. /* Enough room freed up ? */
  470. if (RAW3215_BUFFER_SIZE - raw->count >= length)
  471. break;
  472. /* there might be another cpu waiting for the lock */
  473. spin_unlock(get_ccwdev_lock(raw->cdev));
  474. udelay(100);
  475. spin_lock(get_ccwdev_lock(raw->cdev));
  476. }
  477. }
  478. /*
  479. * String write routine for 3215 devices
  480. */
  481. static void raw3215_write(struct raw3215_info *raw, const char *str,
  482. unsigned int length)
  483. {
  484. unsigned long flags;
  485. int c, count;
  486. while (length > 0) {
  487. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  488. count = (length > RAW3215_BUFFER_SIZE) ?
  489. RAW3215_BUFFER_SIZE : length;
  490. length -= count;
  491. raw3215_make_room(raw, count);
  492. /* copy string to output buffer and convert it to EBCDIC */
  493. while (1) {
  494. c = min_t(int, count,
  495. min(RAW3215_BUFFER_SIZE - raw->count,
  496. RAW3215_BUFFER_SIZE - raw->head));
  497. if (c <= 0)
  498. break;
  499. memcpy(raw->buffer + raw->head, str, c);
  500. ASCEBC(raw->buffer + raw->head, c);
  501. raw->head = (raw->head + c) & (RAW3215_BUFFER_SIZE - 1);
  502. raw->count += c;
  503. raw->line_pos += c;
  504. str += c;
  505. count -= c;
  506. }
  507. if (!(raw->flags & RAW3215_WORKING)) {
  508. raw3215_mk_write_req(raw);
  509. /* start or queue request */
  510. raw3215_try_io(raw);
  511. }
  512. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  513. }
  514. }
  515. /*
  516. * Put character routine for 3215 devices
  517. */
  518. static void raw3215_putchar(struct raw3215_info *raw, unsigned char ch)
  519. {
  520. unsigned long flags;
  521. unsigned int length, i;
  522. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  523. if (ch == '\t') {
  524. length = TAB_STOP_SIZE - (raw->line_pos%TAB_STOP_SIZE);
  525. raw->line_pos += length;
  526. ch = ' ';
  527. } else if (ch == '\n') {
  528. length = 1;
  529. raw->line_pos = 0;
  530. } else {
  531. length = 1;
  532. raw->line_pos++;
  533. }
  534. raw3215_make_room(raw, length);
  535. for (i = 0; i < length; i++) {
  536. raw->buffer[raw->head] = (char) _ascebc[(int) ch];
  537. raw->head = (raw->head + 1) & (RAW3215_BUFFER_SIZE - 1);
  538. raw->count++;
  539. }
  540. if (!(raw->flags & RAW3215_WORKING)) {
  541. raw3215_mk_write_req(raw);
  542. /* start or queue request */
  543. raw3215_try_io(raw);
  544. }
  545. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  546. }
  547. /*
  548. * Flush routine, it simply sets the flush flag and tries to start
  549. * pending IO.
  550. */
  551. static void raw3215_flush_buffer(struct raw3215_info *raw)
  552. {
  553. unsigned long flags;
  554. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  555. if (raw->count > 0) {
  556. raw->flags |= RAW3215_FLUSHING;
  557. raw3215_try_io(raw);
  558. raw->flags &= ~RAW3215_FLUSHING;
  559. }
  560. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  561. }
  562. /*
  563. * Fire up a 3215 device.
  564. */
  565. static int raw3215_startup(struct raw3215_info *raw)
  566. {
  567. unsigned long flags;
  568. if (raw->port.flags & ASYNC_INITIALIZED)
  569. return 0;
  570. raw->line_pos = 0;
  571. raw->port.flags |= ASYNC_INITIALIZED;
  572. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  573. raw3215_try_io(raw);
  574. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  575. return 0;
  576. }
  577. /*
  578. * Shutdown a 3215 device.
  579. */
  580. static void raw3215_shutdown(struct raw3215_info *raw)
  581. {
  582. DECLARE_WAITQUEUE(wait, current);
  583. unsigned long flags;
  584. if (!(raw->port.flags & ASYNC_INITIALIZED) ||
  585. (raw->flags & RAW3215_FIXED))
  586. return;
  587. /* Wait for outstanding requests, then free irq */
  588. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  589. if ((raw->flags & RAW3215_WORKING) ||
  590. raw->queued_write != NULL ||
  591. raw->queued_read != NULL) {
  592. raw->port.flags |= ASYNC_CLOSING;
  593. add_wait_queue(&raw->empty_wait, &wait);
  594. set_current_state(TASK_INTERRUPTIBLE);
  595. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  596. schedule();
  597. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  598. remove_wait_queue(&raw->empty_wait, &wait);
  599. set_current_state(TASK_RUNNING);
  600. raw->port.flags &= ~(ASYNC_INITIALIZED | ASYNC_CLOSING);
  601. }
  602. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  603. }
  604. static struct raw3215_info *raw3215_alloc_info(void)
  605. {
  606. struct raw3215_info *info;
  607. info = kzalloc(sizeof(struct raw3215_info), GFP_KERNEL | GFP_DMA);
  608. if (!info)
  609. return NULL;
  610. info->buffer = kzalloc(RAW3215_BUFFER_SIZE, GFP_KERNEL | GFP_DMA);
  611. info->inbuf = kzalloc(RAW3215_INBUF_SIZE, GFP_KERNEL | GFP_DMA);
  612. if (!info->buffer || !info->inbuf) {
  613. kfree(info);
  614. return NULL;
  615. }
  616. setup_timer(&info->timer, raw3215_timeout, (unsigned long)info);
  617. init_waitqueue_head(&info->empty_wait);
  618. tasklet_init(&info->tlet, raw3215_wakeup, (unsigned long)info);
  619. tty_port_init(&info->port);
  620. return info;
  621. }
  622. static void raw3215_free_info(struct raw3215_info *raw)
  623. {
  624. kfree(raw->inbuf);
  625. kfree(raw->buffer);
  626. tty_port_destroy(&raw->port);
  627. kfree(raw);
  628. }
  629. static int raw3215_probe (struct ccw_device *cdev)
  630. {
  631. struct raw3215_info *raw;
  632. int line;
  633. /* Console is special. */
  634. if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev)))
  635. return 0;
  636. raw = raw3215_alloc_info();
  637. if (raw == NULL)
  638. return -ENOMEM;
  639. raw->cdev = cdev;
  640. dev_set_drvdata(&cdev->dev, raw);
  641. cdev->handler = raw3215_irq;
  642. spin_lock(&raw3215_device_lock);
  643. for (line = 0; line < NR_3215; line++) {
  644. if (!raw3215[line]) {
  645. raw3215[line] = raw;
  646. break;
  647. }
  648. }
  649. spin_unlock(&raw3215_device_lock);
  650. if (line == NR_3215) {
  651. raw3215_free_info(raw);
  652. return -ENODEV;
  653. }
  654. return 0;
  655. }
  656. static void raw3215_remove (struct ccw_device *cdev)
  657. {
  658. struct raw3215_info *raw;
  659. unsigned int line;
  660. ccw_device_set_offline(cdev);
  661. raw = dev_get_drvdata(&cdev->dev);
  662. if (raw) {
  663. spin_lock(&raw3215_device_lock);
  664. for (line = 0; line < NR_3215; line++)
  665. if (raw3215[line] == raw)
  666. break;
  667. raw3215[line] = NULL;
  668. spin_unlock(&raw3215_device_lock);
  669. dev_set_drvdata(&cdev->dev, NULL);
  670. raw3215_free_info(raw);
  671. }
  672. }
  673. static int raw3215_set_online (struct ccw_device *cdev)
  674. {
  675. struct raw3215_info *raw;
  676. raw = dev_get_drvdata(&cdev->dev);
  677. if (!raw)
  678. return -ENODEV;
  679. return raw3215_startup(raw);
  680. }
  681. static int raw3215_set_offline (struct ccw_device *cdev)
  682. {
  683. struct raw3215_info *raw;
  684. raw = dev_get_drvdata(&cdev->dev);
  685. if (!raw)
  686. return -ENODEV;
  687. raw3215_shutdown(raw);
  688. return 0;
  689. }
  690. static int raw3215_pm_stop(struct ccw_device *cdev)
  691. {
  692. struct raw3215_info *raw;
  693. unsigned long flags;
  694. /* Empty the output buffer, then prevent new I/O. */
  695. raw = dev_get_drvdata(&cdev->dev);
  696. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  697. raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
  698. raw->port.flags |= ASYNC_SUSPENDED;
  699. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  700. return 0;
  701. }
  702. static int raw3215_pm_start(struct ccw_device *cdev)
  703. {
  704. struct raw3215_info *raw;
  705. unsigned long flags;
  706. /* Allow I/O again and flush output buffer. */
  707. raw = dev_get_drvdata(&cdev->dev);
  708. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  709. raw->port.flags &= ~ASYNC_SUSPENDED;
  710. raw->flags |= RAW3215_FLUSHING;
  711. raw3215_try_io(raw);
  712. raw->flags &= ~RAW3215_FLUSHING;
  713. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  714. return 0;
  715. }
  716. static struct ccw_device_id raw3215_id[] = {
  717. { CCW_DEVICE(0x3215, 0) },
  718. { /* end of list */ },
  719. };
  720. static struct ccw_driver raw3215_ccw_driver = {
  721. .driver = {
  722. .name = "3215",
  723. .owner = THIS_MODULE,
  724. },
  725. .ids = raw3215_id,
  726. .probe = &raw3215_probe,
  727. .remove = &raw3215_remove,
  728. .set_online = &raw3215_set_online,
  729. .set_offline = &raw3215_set_offline,
  730. .freeze = &raw3215_pm_stop,
  731. .thaw = &raw3215_pm_start,
  732. .restore = &raw3215_pm_start,
  733. .int_class = IRQIO_C15,
  734. };
  735. #ifdef CONFIG_TN3215_CONSOLE
  736. /*
  737. * Write a string to the 3215 console
  738. */
  739. static void con3215_write(struct console *co, const char *str,
  740. unsigned int count)
  741. {
  742. struct raw3215_info *raw;
  743. int i;
  744. if (count <= 0)
  745. return;
  746. raw = raw3215[0]; /* console 3215 is the first one */
  747. while (count > 0) {
  748. for (i = 0; i < count; i++)
  749. if (str[i] == '\t' || str[i] == '\n')
  750. break;
  751. raw3215_write(raw, str, i);
  752. count -= i;
  753. str += i;
  754. if (count > 0) {
  755. raw3215_putchar(raw, *str);
  756. count--;
  757. str++;
  758. }
  759. }
  760. }
  761. static struct tty_driver *con3215_device(struct console *c, int *index)
  762. {
  763. *index = c->index;
  764. return tty3215_driver;
  765. }
  766. /*
  767. * panic() calls con3215_flush through a panic_notifier
  768. * before the system enters a disabled, endless loop.
  769. */
  770. static void con3215_flush(void)
  771. {
  772. struct raw3215_info *raw;
  773. unsigned long flags;
  774. raw = raw3215[0]; /* console 3215 is the first one */
  775. if (raw->port.flags & ASYNC_SUSPENDED)
  776. /* The console is still frozen for suspend. */
  777. if (ccw_device_force_console())
  778. /* Forcing didn't work, no panic message .. */
  779. return;
  780. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  781. raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
  782. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  783. }
  784. static int con3215_notify(struct notifier_block *self,
  785. unsigned long event, void *data)
  786. {
  787. con3215_flush();
  788. return NOTIFY_OK;
  789. }
  790. static struct notifier_block on_panic_nb = {
  791. .notifier_call = con3215_notify,
  792. .priority = 0,
  793. };
  794. static struct notifier_block on_reboot_nb = {
  795. .notifier_call = con3215_notify,
  796. .priority = 0,
  797. };
  798. /*
  799. * The console structure for the 3215 console
  800. */
  801. static struct console con3215 = {
  802. .name = "ttyS",
  803. .write = con3215_write,
  804. .device = con3215_device,
  805. .flags = CON_PRINTBUFFER,
  806. };
  807. /*
  808. * 3215 console initialization code called from console_init().
  809. */
  810. static int __init con3215_init(void)
  811. {
  812. struct ccw_device *cdev;
  813. struct raw3215_info *raw;
  814. struct raw3215_req *req;
  815. int i;
  816. /* Check if 3215 is to be the console */
  817. if (!CONSOLE_IS_3215)
  818. return -ENODEV;
  819. /* Set the console mode for VM */
  820. if (MACHINE_IS_VM) {
  821. cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
  822. cpcmd("TERM AUTOCR OFF", NULL, 0, NULL);
  823. }
  824. /* allocate 3215 request structures */
  825. raw3215_freelist = NULL;
  826. spin_lock_init(&raw3215_freelist_lock);
  827. for (i = 0; i < NR_3215_REQ; i++) {
  828. req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA);
  829. req->next = raw3215_freelist;
  830. raw3215_freelist = req;
  831. }
  832. cdev = ccw_device_probe_console();
  833. if (IS_ERR(cdev))
  834. return -ENODEV;
  835. raw3215[0] = raw = raw3215_alloc_info();
  836. raw->cdev = cdev;
  837. dev_set_drvdata(&cdev->dev, raw);
  838. cdev->handler = raw3215_irq;
  839. raw->flags |= RAW3215_FIXED;
  840. /* Request the console irq */
  841. if (raw3215_startup(raw) != 0) {
  842. raw3215_free_info(raw);
  843. raw3215[0] = NULL;
  844. return -ENODEV;
  845. }
  846. atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb);
  847. register_reboot_notifier(&on_reboot_nb);
  848. register_console(&con3215);
  849. return 0;
  850. }
  851. console_initcall(con3215_init);
  852. #endif
  853. static int tty3215_install(struct tty_driver *driver, struct tty_struct *tty)
  854. {
  855. struct raw3215_info *raw;
  856. raw = raw3215[tty->index];
  857. if (raw == NULL)
  858. return -ENODEV;
  859. tty->driver_data = raw;
  860. return tty_port_install(&raw->port, driver, tty);
  861. }
  862. /*
  863. * tty3215_open
  864. *
  865. * This routine is called whenever a 3215 tty is opened.
  866. */
  867. static int tty3215_open(struct tty_struct *tty, struct file * filp)
  868. {
  869. struct raw3215_info *raw = tty->driver_data;
  870. int retval;
  871. tty_port_tty_set(&raw->port, tty);
  872. raw->port.low_latency = 0; /* don't use bottom half for pushing chars */
  873. /*
  874. * Start up 3215 device
  875. */
  876. retval = raw3215_startup(raw);
  877. if (retval)
  878. return retval;
  879. return 0;
  880. }
  881. /*
  882. * tty3215_close()
  883. *
  884. * This routine is called when the 3215 tty is closed. We wait
  885. * for the remaining request to be completed. Then we clean up.
  886. */
  887. static void tty3215_close(struct tty_struct *tty, struct file * filp)
  888. {
  889. struct raw3215_info *raw;
  890. raw = (struct raw3215_info *) tty->driver_data;
  891. if (raw == NULL || tty->count > 1)
  892. return;
  893. tty->closing = 1;
  894. /* Shutdown the terminal */
  895. raw3215_shutdown(raw);
  896. tasklet_kill(&raw->tlet);
  897. tty->closing = 0;
  898. tty_port_tty_set(&raw->port, NULL);
  899. }
  900. /*
  901. * Returns the amount of free space in the output buffer.
  902. */
  903. static int tty3215_write_room(struct tty_struct *tty)
  904. {
  905. struct raw3215_info *raw;
  906. raw = (struct raw3215_info *) tty->driver_data;
  907. /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
  908. if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0)
  909. return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE;
  910. else
  911. return 0;
  912. }
  913. /*
  914. * String write routine for 3215 ttys
  915. */
  916. static int tty3215_write(struct tty_struct * tty,
  917. const unsigned char *buf, int count)
  918. {
  919. struct raw3215_info *raw;
  920. if (!tty)
  921. return 0;
  922. raw = (struct raw3215_info *) tty->driver_data;
  923. raw3215_write(raw, buf, count);
  924. return count;
  925. }
  926. /*
  927. * Put character routine for 3215 ttys
  928. */
  929. static int tty3215_put_char(struct tty_struct *tty, unsigned char ch)
  930. {
  931. struct raw3215_info *raw;
  932. if (!tty)
  933. return 0;
  934. raw = (struct raw3215_info *) tty->driver_data;
  935. raw3215_putchar(raw, ch);
  936. return 1;
  937. }
  938. static void tty3215_flush_chars(struct tty_struct *tty)
  939. {
  940. }
  941. /*
  942. * Returns the number of characters in the output buffer
  943. */
  944. static int tty3215_chars_in_buffer(struct tty_struct *tty)
  945. {
  946. struct raw3215_info *raw;
  947. raw = (struct raw3215_info *) tty->driver_data;
  948. return raw->count;
  949. }
  950. static void tty3215_flush_buffer(struct tty_struct *tty)
  951. {
  952. struct raw3215_info *raw;
  953. raw = (struct raw3215_info *) tty->driver_data;
  954. raw3215_flush_buffer(raw);
  955. tty_wakeup(tty);
  956. }
  957. /*
  958. * Disable reading from a 3215 tty
  959. */
  960. static void tty3215_throttle(struct tty_struct * tty)
  961. {
  962. struct raw3215_info *raw;
  963. raw = (struct raw3215_info *) tty->driver_data;
  964. raw->flags |= RAW3215_THROTTLED;
  965. }
  966. /*
  967. * Enable reading from a 3215 tty
  968. */
  969. static void tty3215_unthrottle(struct tty_struct * tty)
  970. {
  971. struct raw3215_info *raw;
  972. unsigned long flags;
  973. raw = (struct raw3215_info *) tty->driver_data;
  974. if (raw->flags & RAW3215_THROTTLED) {
  975. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  976. raw->flags &= ~RAW3215_THROTTLED;
  977. raw3215_try_io(raw);
  978. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  979. }
  980. }
  981. /*
  982. * Disable writing to a 3215 tty
  983. */
  984. static void tty3215_stop(struct tty_struct *tty)
  985. {
  986. struct raw3215_info *raw;
  987. raw = (struct raw3215_info *) tty->driver_data;
  988. raw->flags |= RAW3215_STOPPED;
  989. }
  990. /*
  991. * Enable writing to a 3215 tty
  992. */
  993. static void tty3215_start(struct tty_struct *tty)
  994. {
  995. struct raw3215_info *raw;
  996. unsigned long flags;
  997. raw = (struct raw3215_info *) tty->driver_data;
  998. if (raw->flags & RAW3215_STOPPED) {
  999. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  1000. raw->flags &= ~RAW3215_STOPPED;
  1001. raw3215_try_io(raw);
  1002. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  1003. }
  1004. }
  1005. static const struct tty_operations tty3215_ops = {
  1006. .install = tty3215_install,
  1007. .open = tty3215_open,
  1008. .close = tty3215_close,
  1009. .write = tty3215_write,
  1010. .put_char = tty3215_put_char,
  1011. .flush_chars = tty3215_flush_chars,
  1012. .write_room = tty3215_write_room,
  1013. .chars_in_buffer = tty3215_chars_in_buffer,
  1014. .flush_buffer = tty3215_flush_buffer,
  1015. .throttle = tty3215_throttle,
  1016. .unthrottle = tty3215_unthrottle,
  1017. .stop = tty3215_stop,
  1018. .start = tty3215_start,
  1019. };
  1020. /*
  1021. * 3215 tty registration code called from tty_init().
  1022. * Most kernel services (incl. kmalloc) are available at this poimt.
  1023. */
  1024. static int __init tty3215_init(void)
  1025. {
  1026. struct tty_driver *driver;
  1027. int ret;
  1028. if (!CONSOLE_IS_3215)
  1029. return 0;
  1030. driver = alloc_tty_driver(NR_3215);
  1031. if (!driver)
  1032. return -ENOMEM;
  1033. ret = ccw_driver_register(&raw3215_ccw_driver);
  1034. if (ret) {
  1035. put_tty_driver(driver);
  1036. return ret;
  1037. }
  1038. /*
  1039. * Initialize the tty_driver structure
  1040. * Entries in tty3215_driver that are NOT initialized:
  1041. * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
  1042. */
  1043. driver->driver_name = "tty3215";
  1044. driver->name = "ttyS";
  1045. driver->major = TTY_MAJOR;
  1046. driver->minor_start = 64;
  1047. driver->type = TTY_DRIVER_TYPE_SYSTEM;
  1048. driver->subtype = SYSTEM_TYPE_TTY;
  1049. driver->init_termios = tty_std_termios;
  1050. driver->init_termios.c_iflag = IGNBRK | IGNPAR;
  1051. driver->init_termios.c_oflag = ONLCR | XTABS;
  1052. driver->init_termios.c_lflag = ISIG;
  1053. driver->flags = TTY_DRIVER_REAL_RAW;
  1054. tty_set_operations(driver, &tty3215_ops);
  1055. ret = tty_register_driver(driver);
  1056. if (ret) {
  1057. put_tty_driver(driver);
  1058. return ret;
  1059. }
  1060. tty3215_driver = driver;
  1061. return 0;
  1062. }
  1063. static void __exit tty3215_exit(void)
  1064. {
  1065. tty_unregister_driver(tty3215_driver);
  1066. put_tty_driver(tty3215_driver);
  1067. ccw_driver_unregister(&raw3215_ccw_driver);
  1068. }
  1069. module_init(tty3215_init);
  1070. module_exit(tty3215_exit);