con3215.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  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. tty_wakeup(tty);
  314. tty_kref_put(tty);
  315. }
  316. /*
  317. * Try to start the next IO and wake up processes waiting on the tty.
  318. */
  319. static void raw3215_next_io(struct raw3215_info *raw, struct tty_struct *tty)
  320. {
  321. raw3215_mk_write_req(raw);
  322. raw3215_try_io(raw);
  323. if (tty && RAW3215_BUFFER_SIZE - raw->count >= RAW3215_MIN_SPACE)
  324. tasklet_schedule(&raw->tlet);
  325. }
  326. /*
  327. * Interrupt routine, called from common io layer
  328. */
  329. static void raw3215_irq(struct ccw_device *cdev, unsigned long intparm,
  330. struct irb *irb)
  331. {
  332. struct raw3215_info *raw;
  333. struct raw3215_req *req;
  334. struct tty_struct *tty;
  335. int cstat, dstat;
  336. int count;
  337. raw = dev_get_drvdata(&cdev->dev);
  338. req = (struct raw3215_req *) intparm;
  339. tty = tty_port_tty_get(&raw->port);
  340. cstat = irb->scsw.cmd.cstat;
  341. dstat = irb->scsw.cmd.dstat;
  342. if (cstat != 0)
  343. raw3215_next_io(raw, tty);
  344. if (dstat & 0x01) { /* we got a unit exception */
  345. dstat &= ~0x01; /* we can ignore it */
  346. }
  347. switch (dstat) {
  348. case 0x80:
  349. if (cstat != 0)
  350. break;
  351. /* Attention interrupt, someone hit the enter key */
  352. raw3215_mk_read_req(raw);
  353. raw3215_next_io(raw, tty);
  354. break;
  355. case 0x08:
  356. case 0x0C:
  357. /* Channel end interrupt. */
  358. if ((raw = req->info) == NULL)
  359. goto put_tty; /* That shouldn't happen ... */
  360. if (req->type == RAW3215_READ) {
  361. /* store residual count, then wait for device end */
  362. req->residual = irb->scsw.cmd.count;
  363. }
  364. if (dstat == 0x08)
  365. break;
  366. case 0x04:
  367. /* Device end interrupt. */
  368. if ((raw = req->info) == NULL)
  369. goto put_tty; /* That shouldn't happen ... */
  370. if (req->type == RAW3215_READ && tty != NULL) {
  371. unsigned int cchar;
  372. count = 160 - req->residual;
  373. EBCASC(raw->inbuf, count);
  374. cchar = ctrlchar_handle(raw->inbuf, count, tty);
  375. switch (cchar & CTRLCHAR_MASK) {
  376. case CTRLCHAR_SYSRQ:
  377. break;
  378. case CTRLCHAR_CTRL:
  379. tty_insert_flip_char(tty, cchar, TTY_NORMAL);
  380. tty_flip_buffer_push(tty);
  381. break;
  382. case CTRLCHAR_NONE:
  383. if (count < 2 ||
  384. (strncmp(raw->inbuf+count-2, "\252n", 2) &&
  385. strncmp(raw->inbuf+count-2, "^n", 2)) ) {
  386. /* add the auto \n */
  387. raw->inbuf[count] = '\n';
  388. count++;
  389. } else
  390. count -= 2;
  391. tty_insert_flip_string(tty, raw->inbuf, count);
  392. tty_flip_buffer_push(tty);
  393. break;
  394. }
  395. } else if (req->type == RAW3215_WRITE) {
  396. raw->count -= req->len;
  397. raw->written -= req->len;
  398. }
  399. raw->flags &= ~RAW3215_WORKING;
  400. raw3215_free_req(req);
  401. /* check for empty wait */
  402. if (waitqueue_active(&raw->empty_wait) &&
  403. raw->queued_write == NULL &&
  404. raw->queued_read == NULL) {
  405. wake_up_interruptible(&raw->empty_wait);
  406. }
  407. raw3215_next_io(raw, tty);
  408. break;
  409. default:
  410. /* Strange interrupt, I'll do my best to clean up */
  411. if (req != NULL && req->type != RAW3215_FREE) {
  412. if (req->type == RAW3215_WRITE) {
  413. raw->count -= req->len;
  414. raw->written -= req->len;
  415. }
  416. raw->flags &= ~RAW3215_WORKING;
  417. raw3215_free_req(req);
  418. }
  419. raw3215_next_io(raw, tty);
  420. }
  421. put_tty:
  422. tty_kref_put(tty);
  423. }
  424. /*
  425. * Drop the oldest line from the output buffer.
  426. */
  427. static void raw3215_drop_line(struct raw3215_info *raw)
  428. {
  429. int ix;
  430. char ch;
  431. BUG_ON(raw->written != 0);
  432. ix = (raw->head - raw->count) & (RAW3215_BUFFER_SIZE - 1);
  433. while (raw->count > 0) {
  434. ch = raw->buffer[ix];
  435. ix = (ix + 1) & (RAW3215_BUFFER_SIZE - 1);
  436. raw->count--;
  437. if (ch == 0x15)
  438. break;
  439. }
  440. raw->head = ix;
  441. }
  442. /*
  443. * Wait until length bytes are available int the output buffer.
  444. * Has to be called with the s390irq lock held. Can be called
  445. * disabled.
  446. */
  447. static void raw3215_make_room(struct raw3215_info *raw, unsigned int length)
  448. {
  449. while (RAW3215_BUFFER_SIZE - raw->count < length) {
  450. /* While console is frozen for suspend we have no other
  451. * choice but to drop message from the buffer to make
  452. * room for even more messages. */
  453. if (raw->port.flags & ASYNC_SUSPENDED) {
  454. raw3215_drop_line(raw);
  455. continue;
  456. }
  457. /* there might be a request pending */
  458. raw->flags |= RAW3215_FLUSHING;
  459. raw3215_mk_write_req(raw);
  460. raw3215_try_io(raw);
  461. raw->flags &= ~RAW3215_FLUSHING;
  462. #ifdef CONFIG_TN3215_CONSOLE
  463. wait_cons_dev();
  464. #endif
  465. /* Enough room freed up ? */
  466. if (RAW3215_BUFFER_SIZE - raw->count >= length)
  467. break;
  468. /* there might be another cpu waiting for the lock */
  469. spin_unlock(get_ccwdev_lock(raw->cdev));
  470. udelay(100);
  471. spin_lock(get_ccwdev_lock(raw->cdev));
  472. }
  473. }
  474. /*
  475. * String write routine for 3215 devices
  476. */
  477. static void raw3215_write(struct raw3215_info *raw, const char *str,
  478. unsigned int length)
  479. {
  480. unsigned long flags;
  481. int c, count;
  482. while (length > 0) {
  483. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  484. count = (length > RAW3215_BUFFER_SIZE) ?
  485. RAW3215_BUFFER_SIZE : length;
  486. length -= count;
  487. raw3215_make_room(raw, count);
  488. /* copy string to output buffer and convert it to EBCDIC */
  489. while (1) {
  490. c = min_t(int, count,
  491. min(RAW3215_BUFFER_SIZE - raw->count,
  492. RAW3215_BUFFER_SIZE - raw->head));
  493. if (c <= 0)
  494. break;
  495. memcpy(raw->buffer + raw->head, str, c);
  496. ASCEBC(raw->buffer + raw->head, c);
  497. raw->head = (raw->head + c) & (RAW3215_BUFFER_SIZE - 1);
  498. raw->count += c;
  499. raw->line_pos += c;
  500. str += c;
  501. count -= c;
  502. }
  503. if (!(raw->flags & RAW3215_WORKING)) {
  504. raw3215_mk_write_req(raw);
  505. /* start or queue request */
  506. raw3215_try_io(raw);
  507. }
  508. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  509. }
  510. }
  511. /*
  512. * Put character routine for 3215 devices
  513. */
  514. static void raw3215_putchar(struct raw3215_info *raw, unsigned char ch)
  515. {
  516. unsigned long flags;
  517. unsigned int length, i;
  518. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  519. if (ch == '\t') {
  520. length = TAB_STOP_SIZE - (raw->line_pos%TAB_STOP_SIZE);
  521. raw->line_pos += length;
  522. ch = ' ';
  523. } else if (ch == '\n') {
  524. length = 1;
  525. raw->line_pos = 0;
  526. } else {
  527. length = 1;
  528. raw->line_pos++;
  529. }
  530. raw3215_make_room(raw, length);
  531. for (i = 0; i < length; i++) {
  532. raw->buffer[raw->head] = (char) _ascebc[(int) ch];
  533. raw->head = (raw->head + 1) & (RAW3215_BUFFER_SIZE - 1);
  534. raw->count++;
  535. }
  536. if (!(raw->flags & RAW3215_WORKING)) {
  537. raw3215_mk_write_req(raw);
  538. /* start or queue request */
  539. raw3215_try_io(raw);
  540. }
  541. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  542. }
  543. /*
  544. * Flush routine, it simply sets the flush flag and tries to start
  545. * pending IO.
  546. */
  547. static void raw3215_flush_buffer(struct raw3215_info *raw)
  548. {
  549. unsigned long flags;
  550. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  551. if (raw->count > 0) {
  552. raw->flags |= RAW3215_FLUSHING;
  553. raw3215_try_io(raw);
  554. raw->flags &= ~RAW3215_FLUSHING;
  555. }
  556. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  557. }
  558. /*
  559. * Fire up a 3215 device.
  560. */
  561. static int raw3215_startup(struct raw3215_info *raw)
  562. {
  563. unsigned long flags;
  564. if (raw->port.flags & ASYNC_INITIALIZED)
  565. return 0;
  566. raw->line_pos = 0;
  567. raw->port.flags |= ASYNC_INITIALIZED;
  568. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  569. raw3215_try_io(raw);
  570. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  571. return 0;
  572. }
  573. /*
  574. * Shutdown a 3215 device.
  575. */
  576. static void raw3215_shutdown(struct raw3215_info *raw)
  577. {
  578. DECLARE_WAITQUEUE(wait, current);
  579. unsigned long flags;
  580. if (!(raw->port.flags & ASYNC_INITIALIZED) ||
  581. (raw->flags & RAW3215_FIXED))
  582. return;
  583. /* Wait for outstanding requests, then free irq */
  584. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  585. if ((raw->flags & RAW3215_WORKING) ||
  586. raw->queued_write != NULL ||
  587. raw->queued_read != NULL) {
  588. raw->port.flags |= ASYNC_CLOSING;
  589. add_wait_queue(&raw->empty_wait, &wait);
  590. set_current_state(TASK_INTERRUPTIBLE);
  591. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  592. schedule();
  593. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  594. remove_wait_queue(&raw->empty_wait, &wait);
  595. set_current_state(TASK_RUNNING);
  596. raw->port.flags &= ~(ASYNC_INITIALIZED | ASYNC_CLOSING);
  597. }
  598. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  599. }
  600. static struct raw3215_info *raw3215_alloc_info(void)
  601. {
  602. struct raw3215_info *info;
  603. info = kzalloc(sizeof(struct raw3215_info), GFP_KERNEL | GFP_DMA);
  604. if (!info)
  605. return NULL;
  606. info->buffer = kzalloc(RAW3215_BUFFER_SIZE, GFP_KERNEL | GFP_DMA);
  607. info->inbuf = kzalloc(RAW3215_INBUF_SIZE, GFP_KERNEL | GFP_DMA);
  608. if (!info->buffer || !info->inbuf) {
  609. kfree(info);
  610. return NULL;
  611. }
  612. setup_timer(&info->timer, raw3215_timeout, (unsigned long)info);
  613. init_waitqueue_head(&info->empty_wait);
  614. tasklet_init(&info->tlet, raw3215_wakeup, (unsigned long)info);
  615. tty_port_init(&info->port);
  616. return info;
  617. }
  618. static void raw3215_free_info(struct raw3215_info *raw)
  619. {
  620. kfree(raw->inbuf);
  621. kfree(raw->buffer);
  622. kfree(raw);
  623. }
  624. static int raw3215_probe (struct ccw_device *cdev)
  625. {
  626. struct raw3215_info *raw;
  627. int line;
  628. /* Console is special. */
  629. if (raw3215[0] && (raw3215[0] == dev_get_drvdata(&cdev->dev)))
  630. return 0;
  631. raw = raw3215_alloc_info();
  632. if (raw == NULL)
  633. return -ENOMEM;
  634. raw->cdev = cdev;
  635. dev_set_drvdata(&cdev->dev, raw);
  636. cdev->handler = raw3215_irq;
  637. spin_lock(&raw3215_device_lock);
  638. for (line = 0; line < NR_3215; line++) {
  639. if (!raw3215[line]) {
  640. raw3215[line] = raw;
  641. break;
  642. }
  643. }
  644. spin_unlock(&raw3215_device_lock);
  645. if (line == NR_3215) {
  646. raw3215_free_info(raw);
  647. return -ENODEV;
  648. }
  649. return 0;
  650. }
  651. static void raw3215_remove (struct ccw_device *cdev)
  652. {
  653. struct raw3215_info *raw;
  654. ccw_device_set_offline(cdev);
  655. raw = dev_get_drvdata(&cdev->dev);
  656. if (raw) {
  657. dev_set_drvdata(&cdev->dev, NULL);
  658. raw3215_free_info(raw);
  659. }
  660. }
  661. static int raw3215_set_online (struct ccw_device *cdev)
  662. {
  663. struct raw3215_info *raw;
  664. raw = dev_get_drvdata(&cdev->dev);
  665. if (!raw)
  666. return -ENODEV;
  667. return raw3215_startup(raw);
  668. }
  669. static int raw3215_set_offline (struct ccw_device *cdev)
  670. {
  671. struct raw3215_info *raw;
  672. raw = dev_get_drvdata(&cdev->dev);
  673. if (!raw)
  674. return -ENODEV;
  675. raw3215_shutdown(raw);
  676. return 0;
  677. }
  678. static int raw3215_pm_stop(struct ccw_device *cdev)
  679. {
  680. struct raw3215_info *raw;
  681. unsigned long flags;
  682. /* Empty the output buffer, then prevent new I/O. */
  683. raw = dev_get_drvdata(&cdev->dev);
  684. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  685. raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
  686. raw->port.flags |= ASYNC_SUSPENDED;
  687. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  688. return 0;
  689. }
  690. static int raw3215_pm_start(struct ccw_device *cdev)
  691. {
  692. struct raw3215_info *raw;
  693. unsigned long flags;
  694. /* Allow I/O again and flush output buffer. */
  695. raw = dev_get_drvdata(&cdev->dev);
  696. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  697. raw->port.flags &= ~ASYNC_SUSPENDED;
  698. raw->flags |= RAW3215_FLUSHING;
  699. raw3215_try_io(raw);
  700. raw->flags &= ~RAW3215_FLUSHING;
  701. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  702. return 0;
  703. }
  704. static struct ccw_device_id raw3215_id[] = {
  705. { CCW_DEVICE(0x3215, 0) },
  706. { /* end of list */ },
  707. };
  708. static struct ccw_driver raw3215_ccw_driver = {
  709. .driver = {
  710. .name = "3215",
  711. .owner = THIS_MODULE,
  712. },
  713. .ids = raw3215_id,
  714. .probe = &raw3215_probe,
  715. .remove = &raw3215_remove,
  716. .set_online = &raw3215_set_online,
  717. .set_offline = &raw3215_set_offline,
  718. .freeze = &raw3215_pm_stop,
  719. .thaw = &raw3215_pm_start,
  720. .restore = &raw3215_pm_start,
  721. .int_class = IOINT_C15,
  722. };
  723. #ifdef CONFIG_TN3215_CONSOLE
  724. /*
  725. * Write a string to the 3215 console
  726. */
  727. static void con3215_write(struct console *co, const char *str,
  728. unsigned int count)
  729. {
  730. struct raw3215_info *raw;
  731. int i;
  732. if (count <= 0)
  733. return;
  734. raw = raw3215[0]; /* console 3215 is the first one */
  735. while (count > 0) {
  736. for (i = 0; i < count; i++)
  737. if (str[i] == '\t' || str[i] == '\n')
  738. break;
  739. raw3215_write(raw, str, i);
  740. count -= i;
  741. str += i;
  742. if (count > 0) {
  743. raw3215_putchar(raw, *str);
  744. count--;
  745. str++;
  746. }
  747. }
  748. }
  749. static struct tty_driver *con3215_device(struct console *c, int *index)
  750. {
  751. *index = c->index;
  752. return tty3215_driver;
  753. }
  754. /*
  755. * panic() calls con3215_flush through a panic_notifier
  756. * before the system enters a disabled, endless loop.
  757. */
  758. static void con3215_flush(void)
  759. {
  760. struct raw3215_info *raw;
  761. unsigned long flags;
  762. raw = raw3215[0]; /* console 3215 is the first one */
  763. if (raw->port.flags & ASYNC_SUSPENDED)
  764. /* The console is still frozen for suspend. */
  765. if (ccw_device_force_console())
  766. /* Forcing didn't work, no panic message .. */
  767. return;
  768. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  769. raw3215_make_room(raw, RAW3215_BUFFER_SIZE);
  770. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  771. }
  772. static int con3215_notify(struct notifier_block *self,
  773. unsigned long event, void *data)
  774. {
  775. con3215_flush();
  776. return NOTIFY_OK;
  777. }
  778. static struct notifier_block on_panic_nb = {
  779. .notifier_call = con3215_notify,
  780. .priority = 0,
  781. };
  782. static struct notifier_block on_reboot_nb = {
  783. .notifier_call = con3215_notify,
  784. .priority = 0,
  785. };
  786. /*
  787. * The console structure for the 3215 console
  788. */
  789. static struct console con3215 = {
  790. .name = "ttyS",
  791. .write = con3215_write,
  792. .device = con3215_device,
  793. .flags = CON_PRINTBUFFER,
  794. };
  795. /*
  796. * 3215 console initialization code called from console_init().
  797. */
  798. static int __init con3215_init(void)
  799. {
  800. struct ccw_device *cdev;
  801. struct raw3215_info *raw;
  802. struct raw3215_req *req;
  803. int i;
  804. /* Check if 3215 is to be the console */
  805. if (!CONSOLE_IS_3215)
  806. return -ENODEV;
  807. /* Set the console mode for VM */
  808. if (MACHINE_IS_VM) {
  809. cpcmd("TERM CONMODE 3215", NULL, 0, NULL);
  810. cpcmd("TERM AUTOCR OFF", NULL, 0, NULL);
  811. }
  812. /* allocate 3215 request structures */
  813. raw3215_freelist = NULL;
  814. spin_lock_init(&raw3215_freelist_lock);
  815. for (i = 0; i < NR_3215_REQ; i++) {
  816. req = kzalloc(sizeof(struct raw3215_req), GFP_KERNEL | GFP_DMA);
  817. req->next = raw3215_freelist;
  818. raw3215_freelist = req;
  819. }
  820. cdev = ccw_device_probe_console();
  821. if (IS_ERR(cdev))
  822. return -ENODEV;
  823. raw3215[0] = raw = raw3215_alloc_info();
  824. raw->cdev = cdev;
  825. dev_set_drvdata(&cdev->dev, raw);
  826. cdev->handler = raw3215_irq;
  827. raw->flags |= RAW3215_FIXED;
  828. /* Request the console irq */
  829. if (raw3215_startup(raw) != 0) {
  830. raw3215_free_info(raw);
  831. raw3215[0] = NULL;
  832. return -ENODEV;
  833. }
  834. atomic_notifier_chain_register(&panic_notifier_list, &on_panic_nb);
  835. register_reboot_notifier(&on_reboot_nb);
  836. register_console(&con3215);
  837. return 0;
  838. }
  839. console_initcall(con3215_init);
  840. #endif
  841. /*
  842. * tty3215_open
  843. *
  844. * This routine is called whenever a 3215 tty is opened.
  845. */
  846. static int tty3215_open(struct tty_struct *tty, struct file * filp)
  847. {
  848. struct raw3215_info *raw;
  849. int retval;
  850. raw = raw3215[tty->index];
  851. if (raw == NULL)
  852. return -ENODEV;
  853. tty->driver_data = raw;
  854. tty_port_tty_set(&raw->port, tty);
  855. tty->low_latency = 0; /* don't use bottom half for pushing chars */
  856. /*
  857. * Start up 3215 device
  858. */
  859. retval = raw3215_startup(raw);
  860. if (retval)
  861. return retval;
  862. return 0;
  863. }
  864. /*
  865. * tty3215_close()
  866. *
  867. * This routine is called when the 3215 tty is closed. We wait
  868. * for the remaining request to be completed. Then we clean up.
  869. */
  870. static void tty3215_close(struct tty_struct *tty, struct file * filp)
  871. {
  872. struct raw3215_info *raw;
  873. raw = (struct raw3215_info *) tty->driver_data;
  874. if (raw == NULL || tty->count > 1)
  875. return;
  876. tty->closing = 1;
  877. /* Shutdown the terminal */
  878. raw3215_shutdown(raw);
  879. tasklet_kill(&raw->tlet);
  880. tty->closing = 0;
  881. tty_port_tty_set(&raw->port, NULL);
  882. }
  883. /*
  884. * Returns the amount of free space in the output buffer.
  885. */
  886. static int tty3215_write_room(struct tty_struct *tty)
  887. {
  888. struct raw3215_info *raw;
  889. raw = (struct raw3215_info *) tty->driver_data;
  890. /* Subtract TAB_STOP_SIZE to allow for a tab, 8 <<< 64K */
  891. if ((RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE) >= 0)
  892. return RAW3215_BUFFER_SIZE - raw->count - TAB_STOP_SIZE;
  893. else
  894. return 0;
  895. }
  896. /*
  897. * String write routine for 3215 ttys
  898. */
  899. static int tty3215_write(struct tty_struct * tty,
  900. const unsigned char *buf, int count)
  901. {
  902. struct raw3215_info *raw;
  903. if (!tty)
  904. return 0;
  905. raw = (struct raw3215_info *) tty->driver_data;
  906. raw3215_write(raw, buf, count);
  907. return count;
  908. }
  909. /*
  910. * Put character routine for 3215 ttys
  911. */
  912. static int tty3215_put_char(struct tty_struct *tty, unsigned char ch)
  913. {
  914. struct raw3215_info *raw;
  915. if (!tty)
  916. return 0;
  917. raw = (struct raw3215_info *) tty->driver_data;
  918. raw3215_putchar(raw, ch);
  919. return 1;
  920. }
  921. static void tty3215_flush_chars(struct tty_struct *tty)
  922. {
  923. }
  924. /*
  925. * Returns the number of characters in the output buffer
  926. */
  927. static int tty3215_chars_in_buffer(struct tty_struct *tty)
  928. {
  929. struct raw3215_info *raw;
  930. raw = (struct raw3215_info *) tty->driver_data;
  931. return raw->count;
  932. }
  933. static void tty3215_flush_buffer(struct tty_struct *tty)
  934. {
  935. struct raw3215_info *raw;
  936. raw = (struct raw3215_info *) tty->driver_data;
  937. raw3215_flush_buffer(raw);
  938. tty_wakeup(tty);
  939. }
  940. /*
  941. * Disable reading from a 3215 tty
  942. */
  943. static void tty3215_throttle(struct tty_struct * tty)
  944. {
  945. struct raw3215_info *raw;
  946. raw = (struct raw3215_info *) tty->driver_data;
  947. raw->flags |= RAW3215_THROTTLED;
  948. }
  949. /*
  950. * Enable reading from a 3215 tty
  951. */
  952. static void tty3215_unthrottle(struct tty_struct * tty)
  953. {
  954. struct raw3215_info *raw;
  955. unsigned long flags;
  956. raw = (struct raw3215_info *) tty->driver_data;
  957. if (raw->flags & RAW3215_THROTTLED) {
  958. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  959. raw->flags &= ~RAW3215_THROTTLED;
  960. raw3215_try_io(raw);
  961. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  962. }
  963. }
  964. /*
  965. * Disable writing to a 3215 tty
  966. */
  967. static void tty3215_stop(struct tty_struct *tty)
  968. {
  969. struct raw3215_info *raw;
  970. raw = (struct raw3215_info *) tty->driver_data;
  971. raw->flags |= RAW3215_STOPPED;
  972. }
  973. /*
  974. * Enable writing to a 3215 tty
  975. */
  976. static void tty3215_start(struct tty_struct *tty)
  977. {
  978. struct raw3215_info *raw;
  979. unsigned long flags;
  980. raw = (struct raw3215_info *) tty->driver_data;
  981. if (raw->flags & RAW3215_STOPPED) {
  982. spin_lock_irqsave(get_ccwdev_lock(raw->cdev), flags);
  983. raw->flags &= ~RAW3215_STOPPED;
  984. raw3215_try_io(raw);
  985. spin_unlock_irqrestore(get_ccwdev_lock(raw->cdev), flags);
  986. }
  987. }
  988. static const struct tty_operations tty3215_ops = {
  989. .open = tty3215_open,
  990. .close = tty3215_close,
  991. .write = tty3215_write,
  992. .put_char = tty3215_put_char,
  993. .flush_chars = tty3215_flush_chars,
  994. .write_room = tty3215_write_room,
  995. .chars_in_buffer = tty3215_chars_in_buffer,
  996. .flush_buffer = tty3215_flush_buffer,
  997. .throttle = tty3215_throttle,
  998. .unthrottle = tty3215_unthrottle,
  999. .stop = tty3215_stop,
  1000. .start = tty3215_start,
  1001. };
  1002. /*
  1003. * 3215 tty registration code called from tty_init().
  1004. * Most kernel services (incl. kmalloc) are available at this poimt.
  1005. */
  1006. static int __init tty3215_init(void)
  1007. {
  1008. struct tty_driver *driver;
  1009. int ret;
  1010. if (!CONSOLE_IS_3215)
  1011. return 0;
  1012. driver = alloc_tty_driver(NR_3215);
  1013. if (!driver)
  1014. return -ENOMEM;
  1015. ret = ccw_driver_register(&raw3215_ccw_driver);
  1016. if (ret) {
  1017. put_tty_driver(driver);
  1018. return ret;
  1019. }
  1020. /*
  1021. * Initialize the tty_driver structure
  1022. * Entries in tty3215_driver that are NOT initialized:
  1023. * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc
  1024. */
  1025. driver->driver_name = "tty3215";
  1026. driver->name = "ttyS";
  1027. driver->major = TTY_MAJOR;
  1028. driver->minor_start = 64;
  1029. driver->type = TTY_DRIVER_TYPE_SYSTEM;
  1030. driver->subtype = SYSTEM_TYPE_TTY;
  1031. driver->init_termios = tty_std_termios;
  1032. driver->init_termios.c_iflag = IGNBRK | IGNPAR;
  1033. driver->init_termios.c_oflag = ONLCR | XTABS;
  1034. driver->init_termios.c_lflag = ISIG;
  1035. driver->flags = TTY_DRIVER_REAL_RAW;
  1036. tty_set_operations(driver, &tty3215_ops);
  1037. ret = tty_register_driver(driver);
  1038. if (ret) {
  1039. put_tty_driver(driver);
  1040. return ret;
  1041. }
  1042. tty3215_driver = driver;
  1043. return 0;
  1044. }
  1045. static void __exit tty3215_exit(void)
  1046. {
  1047. tty_unregister_driver(tty3215_driver);
  1048. put_tty_driver(tty3215_driver);
  1049. ccw_driver_unregister(&raw3215_ccw_driver);
  1050. }
  1051. module_init(tty3215_init);
  1052. module_exit(tty3215_exit);