tuball.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  IBM/3270 Driver -- Copyright (C) 2000 UTS Global LLC
  3.  *
  4.  *  tuball.c -- Initialization, termination, irq lookup
  5.  *
  6.  *
  7.  *
  8.  *
  9.  *
  10.  *  Author:  Richard Hitt
  11.  */
  12. #include <linux/config.h>
  13. #include "tubio.h"
  14. #ifndef MODULE
  15. #include <linux/init.h>
  16. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0))
  17. #include <asm/cpcmd.h>
  18. #include <linux/bootmem.h>
  19. #else
  20. #include "../../../../arch/s390/kernel/cpcmd.h"
  21. #endif
  22. #endif
  23. /* Module parameters */
  24. int tubdebug;
  25. int tubscrolltime = -1;
  26. int tubxcorrect = 1;            /* Do correct ebc<->asc tables */
  27. #ifdef MODULE
  28. MODULE_PARM(tubdebug, "i");
  29. MODULE_PARM(tubscrolltime, "i");
  30. MODULE_PARM(tubxcorrect, "i");
  31. #endif
  32. /*
  33.  * Values for tubdebug and their effects:
  34.  * 1 - print in hex on console the first 16 bytes received
  35.  * 2 - print address at which array tubminors is allocated
  36.  * 4 - attempt to register tty3270_driver
  37.  */
  38. int tubnummins;
  39. tub_t *(*tubminors)[TUBMAXMINS];
  40. tub_t *(*(*tubirqs)[256])[256];
  41. unsigned char tub_ascebc[256];
  42. unsigned char tub_ebcasc[256];
  43. int tubinitminors(void);
  44. void tubfiniminors(void);
  45. void tubint(int, void *, struct pt_regs *);
  46. /* Lookup-by-irq functions */
  47. int tubaddbyirq(tub_t *, int);
  48. tub_t *tubfindbyirq(int);
  49. void tubdelbyirq(tub_t *, int);
  50. void tubfiniirqs(void);
  51. extern int fs3270_init(void);
  52. extern void fs3270_fini(void);
  53. extern int tty3270_init(void);
  54. extern void tty3270_fini(void);
  55. unsigned char tub_ebcgraf[64] =
  56. { 0x40, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
  57.   0xc8, 0xc9, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
  58.   0x50, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
  59.   0xd8, 0xd9, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
  60.   0x60, 0x61, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
  61.   0xe8, 0xe9, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
  62.   0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
  63.   0xf8, 0xf9, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f };
  64. int tub3270_init(void);
  65. #ifndef MODULE
  66. /*
  67.  * Can't have this driver a module & support console at the same time
  68.  */
  69. #ifdef CONFIG_TN3270_CONSOLE
  70. static kdev_t tub3270_con_device(struct console *);
  71. static void tub3270_con_unblank(void);
  72. static void tub3270_con_write(struct console *, const char *,
  73. unsigned int);
  74. static struct console tub3270_con = {
  75. "tub3270", /* name */
  76. tub3270_con_write, /* write */
  77. NULL, /* read */
  78. tub3270_con_device, /* device */
  79. NULL, /* wait_key */
  80. tub3270_con_unblank, /* unblank */
  81. NULL, /* setup */
  82. CON_PRINTBUFFER, /* flags */
  83. 0, /* index */
  84. 0, /* cflag */
  85. NULL /* next */
  86. };
  87. static bcb_t tub3270_con_bcb; /* Buffer that receives con writes */
  88. static spinlock_t tub3270_con_bcblock; /* Lock for the buffer */
  89. int tub3270_con_irq = -1; /* set nonneg by _activate() */
  90. tub_t *tub3270_con_tubp; /* set nonzero by _activate() */
  91. struct tty_driver tty3270_con_driver; /* for /dev/console at 4, 64 */
  92. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0))
  93. int tub3270_con_devno = -1; /* set by tub3270_con_setup() */
  94. __initfunc(void tub3270_con_setup(char *str, int *ints))
  95. {
  96. int vdev;
  97. vdev = simple_strtoul(str, 0, 16);
  98. if (vdev >= 0 && vdev < 65536)
  99. tub3270_con_devno = vdev;
  100. return;
  101. }
  102. __initfunc (long tub3270_con_init(long kmem_start, long kmem_end))
  103. {
  104. tub3270_con_bcb.bc_len = 65536;
  105. if (!MACHINE_IS_VM && !MACHINE_IS_P390)
  106. return kmem_start;
  107. tub3270_con_bcb.bc_buf = (void *)kmem_start;
  108. kmem_start += tub3270_con_bcb.bc_len;
  109. register_console(&tub3270_con);
  110. return kmem_start;
  111. }
  112. #else
  113. #define tub3270_con_devno console_device
  114. void __init tub3270_con_init(void)
  115. {
  116. tub3270_con_bcb.bc_len = 65536;
  117. if (!CONSOLE_IS_3270)
  118. return;
  119. tub3270_con_bcb.bc_buf = (void *)alloc_bootmem_low(
  120. tub3270_con_bcb.bc_len);
  121. register_console(&tub3270_con);
  122. }
  123. #endif
  124. static kdev_t
  125. tub3270_con_device(struct console *conp)
  126. {
  127. return MKDEV(IBM_TTY3270_MAJOR, conp->index + 1);
  128. }
  129. static void
  130. tub3270_con_unblank(void)
  131. {
  132. /* flush everything:  panic has occurred */
  133. }
  134. int tub3270_con_write_deadlock_ct;
  135. int tub3270_con_write_deadlock_bytes;
  136. static void
  137. tub3270_con_write(struct console *conp,
  138. const char *buf, unsigned int count)
  139. {
  140. long flags;
  141. tub_t *tubp = tub3270_con_tubp;
  142. void tty3270_sched_bh(tub_t *);
  143. int rc;
  144. bcb_t obcb;
  145. obcb.bc_buf = (char *)buf;
  146. obcb.bc_len = obcb.bc_cnt = obcb.bc_wr =
  147. MIN(count, tub3270_con_bcb.bc_len);
  148. obcb.bc_rd = 0;
  149. spin_lock_irqsave(&tub3270_con_bcblock, flags);
  150. rc = tub3270_movedata(&obcb, &tub3270_con_bcb, 0);
  151. spin_unlock_irqrestore(&tub3270_con_bcblock, flags);
  152. if (tubp && rc && TUBTRYLOCK(tubp->irq, flags)) {
  153. tty3270_sched_bh(tubp);
  154. TUBUNLOCK(tubp->irq, flags);
  155. }
  156. }
  157. int tub3270_con_copy(tub_t *tubp)
  158. {
  159. long flags;
  160. int rc;
  161. spin_lock_irqsave(&tub3270_con_bcblock, flags);
  162. rc = tub3270_movedata(&tub3270_con_bcb, &tubp->tty_bcb, 0);
  163. spin_unlock_irqrestore(&tub3270_con_bcblock, flags);
  164. return rc;
  165. }
  166. #endif /* CONFIG_TN3270_CONSOLE */
  167. #else /* If generated as a MODULE */
  168. /*
  169.  * module init:  find tubes; get a major nbr
  170.  */
  171. int
  172. init_module(void)
  173. {
  174. if (tubnummins != 0) {
  175. printk(KERN_ERR "EEEK!!  Tube driver cobbigling!!n");
  176. return -1;
  177. }
  178. return tub3270_init();
  179. }
  180. /*
  181.  * remove driver:  unregister the major number
  182.  */
  183. void
  184. cleanup_module(void)
  185. {
  186. fs3270_fini();
  187. tty3270_fini();
  188. tubfiniminors();
  189. }
  190. #endif /* Not a MODULE or a MODULE */
  191. void
  192. tub_inc_use_count(void)
  193. {
  194. MOD_INC_USE_COUNT;
  195. }
  196. void
  197. tub_dec_use_count(void)
  198. {
  199. MOD_DEC_USE_COUNT;
  200. }
  201. /*
  202.  * tub3270_init() called by kernel or module initialization
  203.  */
  204. int
  205. tub3270_init(void)
  206. {
  207. s390_dev_info_t d;
  208. int i, rc;
  209. /*
  210.  * Copy and correct ebcdic - ascii translate tables
  211.  */
  212. memcpy(tub_ascebc, _ascebc, sizeof tub_ascebc);
  213. memcpy(tub_ebcasc, _ebcasc, sizeof tub_ebcasc);
  214. if (tubxcorrect) {
  215. /* correct brackets and circumflex */
  216. tub_ascebc['['] = 0xad;
  217. tub_ascebc[']'] = 0xbd;
  218. tub_ebcasc[0xad] = '[';
  219. tub_ebcasc[0xbd] = ']';
  220. tub_ascebc['^'] = 0xb0;
  221. tub_ebcasc[0x5f] = '^';
  222. }
  223. rc = tubinitminors();
  224. if (rc != 0)
  225. return rc;
  226. if (fs3270_init() || tty3270_init()) {
  227. printk(KERN_ERR "fs3270_init() or tty3270_init() failedn");
  228. fs3270_fini();
  229. tty3270_fini();
  230. tubfiniminors();
  231. return -1;
  232. }
  233. for (i = get_irq_first(); i >= 0; i = get_irq_next(i)) {
  234. if ((rc = get_dev_info_by_irq(i, &d)))
  235. continue;
  236. if (d.status)
  237. continue;
  238. #ifdef CONFIG_TN3270_CONSOLE
  239. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0))
  240. if (d.sid_data.cu_type == 0x3215 && MACHINE_IS_VM) {
  241. cpcmd("TERM CONMODE 3270", NULL, 0);
  242. d.sid_data.cu_type = 0x3270;
  243. }
  244. #else
  245. if (d.sid_data.cu_type == 0x3215 && CONSOLE_IS_3270) {
  246. cpcmd("TERM CONMODE 3270", NULL, 0);
  247. d.sid_data.cu_type = 0x3270;
  248. }
  249. #endif /* LINUX_VERSION_CODE */
  250. #endif /* CONFIG_TN3270_CONSOLE */
  251. if ((d.sid_data.cu_type & 0xfff0) != 0x3270)
  252. continue;
  253. rc = tubmakemin(i, &d);
  254. if (rc < 0) {
  255. printk(KERN_WARNING 
  256.        "3270 tube registration ran out of memory"
  257.        " after %d devicesn", tubnummins - 1);
  258. break;
  259. } else {
  260. printk(KERN_INFO "3270: %.4x on sch %d, minor %dn",
  261. d.devno, d.irq, rc);
  262. }
  263. }
  264. return 0;
  265. }
  266. /*
  267.  * tub3270_movedata(bcb_t *, bcb_t *) -- Move data stream
  268.  */
  269. int
  270. tub3270_movedata(bcb_t *ib, bcb_t *ob, int fromuser)
  271. {
  272. int count; /* Total move length */
  273. int rc;
  274. rc = count = MIN(ib->bc_cnt, ob->bc_len - ob->bc_cnt);
  275. while (count > 0) {
  276. int len1; /* Contig bytes avail in ib */
  277. if (ib->bc_wr > ib->bc_rd)
  278. len1 = ib->bc_wr - ib->bc_rd;
  279. else
  280. len1 = ib->bc_len - ib->bc_rd;
  281. if (len1 > count)
  282. len1 = count;
  283. while (len1 > 0) {
  284. int len2; /* Contig space avail in ob */
  285. if (ob->bc_rd > ob->bc_wr)
  286. len2 = ob->bc_rd - ob->bc_wr;
  287. else
  288. len2 = ob->bc_len - ob->bc_wr;
  289. if (len2 > len1)
  290. len2 = len1;
  291. if (fromuser) {
  292. len2 -= copy_from_user(ob->bc_buf + ob->bc_wr,
  293.        ib->bc_buf + ib->bc_rd,
  294.        len2);
  295. if (len2 == 0) {
  296. if (!rc)
  297. rc = -EFAULT;
  298. break;
  299. }
  300. } else
  301. memcpy(ob->bc_buf + ob->bc_wr,
  302.        ib->bc_buf + ib->bc_rd,
  303.        len2);
  304. ib->bc_rd += len2;
  305. if (ib->bc_rd == ib->bc_len)
  306. ib->bc_rd = 0;
  307. ib->bc_cnt -= len2;
  308. ob->bc_wr += len2;
  309. if (ob->bc_wr == ob->bc_len)
  310. ob->bc_wr = 0;
  311. ob->bc_cnt += len2;
  312. len1 -= len2;
  313. count -= len2;
  314. }
  315. }
  316. return rc;
  317. }
  318. /*
  319.  * receive an interrupt
  320.  */
  321. void
  322. tubint(int irq, void *ipp, struct pt_regs *prp)
  323. {
  324. devstat_t *dsp = ipp;
  325. tub_t *tubp;
  326. if ((tubp = IRQ2TUB(irq)) && (tubp->intv))
  327. (tubp->intv)(tubp, dsp);
  328. }
  329. /*
  330.  * Initialize array of pointers to minor structures tub_t.
  331.  * Returns 0 or -ENOMEM.
  332.  */
  333. int
  334. tubinitminors(void)
  335. {
  336. tubminors = (tub_t *(*)[TUBMAXMINS])kmalloc(sizeof *tubminors,
  337. GFP_KERNEL);
  338. if (tubminors == NULL)
  339. return -ENOMEM;
  340. memset(tubminors, 0, sizeof *tubminors);
  341. return 0;
  342. }
  343. /*
  344.  * Add a minor 327x device.  Argument is an irq value.
  345.  *
  346.  * Point elements of two arrays to the newly created tub_t:
  347.  * 1. (*tubminors)[minor]
  348.  * 2. (*(*tubirqs)[irqhi])[irqlo]
  349.  * The first looks up from minor number at context time; the second
  350.  * looks up from irq at interrupt time.
  351.  */
  352. int
  353. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0))
  354. tubmakemin(int irq, dev_info_t *dp)
  355. #else
  356. tubmakemin(int irq, s390_dev_info_t *dp)
  357. #endif
  358. {
  359. tub_t *tubp;
  360. int minor;
  361. long flags;
  362. if ((minor = ++tubnummins) == TUBMAXMINS)
  363. return -ENODEV;
  364. tubp = kmalloc(sizeof(tub_t), GFP_KERNEL);
  365. if (tubp == NULL) {
  366. return -ENOMEM;
  367. }
  368. if (tubaddbyirq(tubp, irq) != 0) {
  369. kfree(tubp);
  370. return -ENOMEM;
  371. }
  372. memset(tubp, 0, sizeof(tub_t));
  373. tubp->minor = minor;
  374. tubp->irq = irq;
  375. TUBLOCK(tubp->irq, flags);
  376. tubp->devno = dp->devno;
  377. tubp->geom_rows = _GEOM_ROWS;
  378. tubp->geom_cols = _GEOM_COLS;
  379. init_waitqueue_head(&tubp->waitq);
  380. tubp->tty_bcb.bc_len = TTY_OUTPUT_SIZE;
  381. tubp->tty_bcb.bc_buf = (void *)kmalloc(tubp->tty_bcb.bc_len,
  382. GFP_KERNEL|GFP_DMA);
  383. if (tubp->tty_bcb.bc_buf == NULL) {
  384. TUBUNLOCK(tubp->irq, flags);
  385. tubdelbyirq(tubp, irq);
  386. kfree(tubp);
  387. return -ENOMEM;
  388. }
  389. tubp->tty_bcb.bc_cnt = 0;
  390. tubp->tty_bcb.bc_wr = 0;
  391. tubp->tty_bcb.bc_rd = 0;
  392. (*tubminors)[minor] = tubp;
  393. #ifdef CONFIG_TN3270_CONSOLE
  394. if (CONSOLE_IS_3270) {
  395. if (tub3270_con_tubp == NULL && 
  396.     tub3270_con_bcb.bc_buf != NULL &&
  397.     (tub3270_con_devno == -1 ||
  398.      tub3270_con_devno == dp->devno)) {
  399. extern void tty3270_int(tub_t *, devstat_t *);
  400. tub3270_con_devno = dp->devno;
  401. tubp->cmd = TBC_CONOPEN;
  402. tubp->flags |= TUB_OPEN_STET | TUB_INPUT_HACK;
  403. tty3270_size(tubp, &flags);
  404. tty3270_aid_init(tubp);
  405. tty3270_scl_init(tubp);
  406. tub3270_con_irq = tubp->irq;
  407. tub3270_con_tubp = tubp;
  408. tubp->intv = tty3270_int;
  409. tubp->cmd = TBC_UPDSTAT;
  410. tty3270_build(tubp);
  411. }
  412. }
  413. #endif /* CONFIG_TN3270_CONSOLE */
  414. #ifdef CONFIG_DEVFS_FS
  415. fs3270_devfs_register(tubp);
  416. #endif
  417. TUBUNLOCK(tubp->irq, flags);
  418. return minor;
  419. }
  420. /*
  421.  * Release array of pointers to minor structures tub_t, but first
  422.  * release any storage pointed to by them.
  423.  */
  424. void
  425. tubfiniminors(void)
  426. {
  427. int i;
  428. tub_t **tubpp, *tubp;
  429. if (tubminors == NULL)
  430. return;
  431. for (i = 0; i < TUBMAXMINS; i++) {
  432. tubpp = &(*tubminors)[i];
  433. if ((tubp = *tubpp)) {
  434. #ifdef CONFIG_DEVFS_FS
  435. fs3270_devfs_unregister(tubp);
  436. #endif
  437. tubdelbyirq(tubp, tubp->irq);
  438. tty3270_rcl_fini(tubp);
  439. kfree(tubp->tty_bcb.bc_buf);
  440. tubp->tty_bcb.bc_buf = NULL;
  441. tubp->ttyscreen = NULL;
  442. kfree(tubp);
  443. *tubpp = NULL;
  444. }
  445. }
  446. kfree(tubminors);
  447. tubminors = NULL;
  448. tubfiniirqs();
  449. }
  450. /*
  451.  * tubaddbyirq() -- Add tub_t for irq lookup in tubint()
  452.  */
  453. int
  454. tubaddbyirq(tub_t *tubp, int irq)
  455. {
  456. int irqhi = (irq >> 8) & 255;
  457. int irqlo = irq & 255;
  458. tub_t *(*itubpp)[256];
  459. /* Allocate array (*tubirqs)[] if first time */
  460. if (tubirqs == NULL) {
  461. tubirqs = (tub_t *(*(*)[256])[256])
  462. kmalloc(sizeof *tubirqs, GFP_KERNEL);
  463. if (tubirqs == NULL)
  464. return -ENOMEM;
  465. memset(tubirqs, 0, sizeof *tubirqs);
  466. }
  467. /* Allocate subarray (*(*tubirqs)[])[] if first use */
  468. if ((itubpp = (*tubirqs)[irqhi]) == NULL) {
  469. itubpp = (tub_t *(*)[256])
  470. kmalloc(sizeof(*itubpp), GFP_KERNEL);
  471. if (itubpp == NULL) {
  472. if (tubnummins == 1) {  /* if first time */
  473. kfree(tubirqs);
  474. tubirqs = NULL;
  475. }
  476. return -ENOMEM;
  477. } else {
  478. memset(itubpp, 0, sizeof(*itubpp));
  479. (*tubirqs)[irqhi] = itubpp;
  480. }
  481. }
  482. /* Request interrupt service */
  483. if ((tubp->irqrc = request_irq(irq, tubint, SA_INTERRUPT,
  484.     "3270 tube driver", &tubp->devstat)) != 0)
  485. return tubp->irqrc;
  486. /* Fill in the proper subarray element */
  487. (*itubpp)[irqlo] = tubp;
  488. return 0;
  489. }
  490. /*
  491.  * tubfindbyirq(irq)
  492.  */
  493. tub_t *
  494. tubfindbyirq(int irq)
  495. {
  496. int irqhi = (irq >> 8) & 255;
  497. int irqlo = irq & 255;
  498. tub_t *tubp;
  499. if (tubirqs == NULL)
  500. return NULL;
  501. if ((*tubirqs)[irqhi] == NULL)
  502. return NULL;
  503. tubp = (*(*tubirqs)[irqhi])[irqlo];
  504. if (tubp->irq == irq)
  505. return tubp;
  506. return NULL;
  507. }
  508. /*
  509.  * tubdelbyirq(tub_t*, irq)
  510.  */
  511. void
  512. tubdelbyirq(tub_t *tubp, int irq)
  513. {
  514. int irqhi = (irq >> 8) & 255;
  515. int irqlo = irq & 255;
  516. tub_t *(*itubpp)[256], *itubp;
  517. if (tubirqs == NULL) {
  518. printk(KERN_ERR "tubirqs is NULLn");
  519. return;
  520. }
  521. itubpp = (*tubirqs)[irqhi];
  522. if (itubpp == NULL) {
  523. printk(KERN_ERR "tubirqs[%d] is NULLn", irqhi);
  524. return;
  525. }
  526. itubp = (*itubpp)[irqlo];
  527. if (itubp == NULL) {
  528. printk(KERN_ERR "tubirqs[%d][%d] is NULLn", irqhi, irqlo);
  529. return;
  530. }
  531. if (itubp->irqrc == 0)
  532. free_irq(irq, &itubp->devstat);
  533. (*itubpp)[irqlo] = NULL;
  534. }
  535. /*
  536.  * tubfiniirqs() -- clean up storage in tub_t *(*(*tubirqs)[256])[256]
  537.  */
  538. void
  539. tubfiniirqs(void)
  540. {
  541. int i;
  542. tub_t *(*itubpp)[256];
  543. if (tubirqs != NULL) {
  544. for (i = 0; i < 256; i++) {
  545. if ((itubpp = (*tubirqs)[i])) {
  546. kfree(itubpp);
  547. (*tubirqs)[i] = NULL;
  548. }
  549. }
  550. kfree(tubirqs);
  551. tubirqs = NULL;
  552. }
  553. }