serial.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Serial Device Initialisation for LASI/ASP/WAX/DINO
  3.  *
  4.  * (c) Copyright 2000 The Puffin Group Inc.
  5.  * (c) Copyright 2000-2001 Helge Deller <deller@gmx.de>
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  *      the Free Software Foundation; either version 2 of the License, or
  10.  *      (at your option) any later version.
  11.  *
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/errno.h>
  15. #include <linux/init.h>
  16. #include <linux/signal.h>
  17. #include <linux/types.h>
  18. #include <linux/sched.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/kernel_stat.h>
  21. #include <linux/ioport.h>
  22. #include <linux/timex.h>
  23. #include <linux/module.h>
  24. #include <linux/serial.h>
  25. #include <linux/slab.h>
  26. #include <asm/serial.h>
  27. #include <asm/io.h>
  28. #include <asm/hardware.h>
  29. #include <asm/gsc.h>
  30. #include "busdevice.h"
  31. static void setup_parisc_serial(struct serial_struct *serial,
  32. unsigned long address, int irq, int line)
  33. {
  34. memset(serial, 0, sizeof(struct serial_struct));
  35. /* autoconfig() sets state->type.  This sets info->type */
  36. serial->type = PORT_16550A;
  37. serial->line = line;
  38. serial->iomem_base = ioremap(address, 0x8);
  39. serial->irq = irq;
  40. serial->io_type = SERIAL_IO_MEM; /* define access method */
  41. serial->flags = 0;
  42. serial->xmit_fifo_size = 16;
  43. serial->custom_divisor = 0;
  44. serial->baud_base = LASI_BASE_BAUD;
  45. }
  46. static int __init 
  47. serial_init_chip(struct parisc_device *dev)
  48. {
  49. static int serial_line_nr;
  50. unsigned long address;
  51. struct serial_struct *serial;
  52. if (!dev->irq) {
  53. if (dev->parent->id.hw_type != HPHW_IOA) {
  54. printk(KERN_INFO "Serial: device 0x%lx not configured.n"
  55. "Enable support for Wax, Lasi, Asp or Dino.n", dev->hpa);
  56. }
  57. return -ENODEV;
  58. }
  59. serial = kmalloc(sizeof(*serial), GFP_KERNEL);
  60. if (!serial)
  61. return -ENOMEM;
  62. address = dev->hpa;
  63. if (dev->id.sversion != 0x8d) {
  64. address += 0x800;
  65. }
  66. setup_parisc_serial(serial, address, dev->irq, serial_line_nr++);
  67. if (register_serial(serial) < 0) {
  68. printk(KERN_WARNING "register_serial returned errorn");
  69. kfree(serial);
  70. return -ENODEV;
  71. }
  72. return 0;
  73. }
  74. static struct parisc_device_id serial_tbl[] = {
  75. { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x00075 },
  76. { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0008c },
  77. { HPHW_FIO, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0008d },
  78. { 0 }
  79. };
  80. /* Hack.  Dino's serial port will get listed first on some machines.
  81.  * So we register this driver first which knows about Lasi's serial port.
  82.  * This needs to get fixed properly somehow.
  83.  */
  84. static struct parisc_device_id serial1_tbl[] = {
  85. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03B, 0x0008C }, /* C1xx/C1xxL */
  86. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03C, 0x0008C }, /* B132L */
  87. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03D, 0x0008C }, /* B160L */
  88. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03E, 0x0008C }, /* B132L+ */
  89. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x03F, 0x0008C }, /* B180L+ */
  90. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x046, 0x0008C }, /* Rocky2 120 */
  91. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x047, 0x0008C }, /* Rocky2 150 */
  92. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x04E, 0x0008C }, /* Kiji L2 132 */
  93. { HPHW_FIO, HVERSION_REV_ANY_ID, 0x056, 0x0008C }, /* Raven+ */
  94. { 0 }
  95. };
  96. MODULE_DEVICE_TABLE(parisc, serial_tbl);
  97. static struct parisc_driver serial1_driver = {
  98. name: "Serial RS232",
  99. id_table: serial1_tbl,
  100. probe: serial_init_chip,
  101. };
  102. static struct parisc_driver serial_driver = {
  103. name: "Serial RS232",
  104. id_table: serial_tbl,
  105. probe: serial_init_chip,
  106. };
  107. void __init probe_serial_gsc(void)
  108. {
  109. register_parisc_driver(&serial1_driver);
  110. register_parisc_driver(&serial_driver);
  111. }