jsm_driver.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. /************************************************************************
  2. * Copyright 2003 Digi International (www.digi.com)
  3. *
  4. * Copyright (C) 2004 IBM Corporation. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
  13. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  14. * PURPOSE. See the GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 * Temple Place - Suite 330, Boston,
  19. * MA 02111-1307, USA.
  20. *
  21. * Contact Information:
  22. * Scott H Kilau <Scott_Kilau@digi.com>
  23. * Wendy Xiong <wendyx@us.ibm.com>
  24. *
  25. *
  26. ***********************************************************************/
  27. #include <linux/moduleparam.h>
  28. #include <linux/pci.h>
  29. #include "jsm.h"
  30. MODULE_AUTHOR("Digi International, http://www.digi.com");
  31. MODULE_DESCRIPTION("Driver for the Digi International "
  32. "Neo PCI based product line");
  33. MODULE_LICENSE("GPL");
  34. MODULE_SUPPORTED_DEVICE("jsm");
  35. #define JSM_DRIVER_NAME "jsm"
  36. #define NR_PORTS 32
  37. #define JSM_MINOR_START 0
  38. struct uart_driver jsm_uart_driver = {
  39. .owner = THIS_MODULE,
  40. .driver_name = JSM_DRIVER_NAME,
  41. .dev_name = "ttyn",
  42. .major = 0,
  43. .minor = JSM_MINOR_START,
  44. .nr = NR_PORTS,
  45. };
  46. static pci_ers_result_t jsm_io_error_detected(struct pci_dev *pdev,
  47. pci_channel_state_t state);
  48. static pci_ers_result_t jsm_io_slot_reset(struct pci_dev *pdev);
  49. static void jsm_io_resume(struct pci_dev *pdev);
  50. static struct pci_error_handlers jsm_err_handler = {
  51. .error_detected = jsm_io_error_detected,
  52. .slot_reset = jsm_io_slot_reset,
  53. .resume = jsm_io_resume,
  54. };
  55. int jsm_debug;
  56. module_param(jsm_debug, int, 0);
  57. MODULE_PARM_DESC(jsm_debug, "Driver debugging level");
  58. static int __devinit jsm_probe_one(struct pci_dev *pdev, const struct pci_device_id *ent)
  59. {
  60. int rc = 0;
  61. struct jsm_board *brd;
  62. static int adapter_count = 0;
  63. rc = pci_enable_device(pdev);
  64. if (rc) {
  65. dev_err(&pdev->dev, "Device enable FAILED\n");
  66. goto out;
  67. }
  68. rc = pci_request_regions(pdev, "jsm");
  69. if (rc) {
  70. dev_err(&pdev->dev, "pci_request_region FAILED\n");
  71. goto out_disable_device;
  72. }
  73. brd = kzalloc(sizeof(struct jsm_board), GFP_KERNEL);
  74. if (!brd) {
  75. dev_err(&pdev->dev,
  76. "memory allocation for board structure failed\n");
  77. rc = -ENOMEM;
  78. goto out_release_regions;
  79. }
  80. /* store the info for the board we've found */
  81. brd->boardnum = adapter_count++;
  82. brd->pci_dev = pdev;
  83. if (pdev->device == PCIE_DEVICE_ID_NEO_4_IBM)
  84. brd->maxports = 4;
  85. else if (pdev->device == PCI_DEVICE_ID_DIGI_NEO_8)
  86. brd->maxports = 8;
  87. else
  88. brd->maxports = 2;
  89. spin_lock_init(&brd->bd_intr_lock);
  90. /* store which revision we have */
  91. brd->rev = pdev->revision;
  92. brd->irq = pdev->irq;
  93. jsm_printk(INIT, INFO, &brd->pci_dev,
  94. "jsm_found_board - NEO adapter\n");
  95. /* get the PCI Base Address Registers */
  96. brd->membase = pci_resource_start(pdev, 0);
  97. brd->membase_end = pci_resource_end(pdev, 0);
  98. if (brd->membase & 1)
  99. brd->membase &= ~3;
  100. else
  101. brd->membase &= ~15;
  102. /* Assign the board_ops struct */
  103. brd->bd_ops = &jsm_neo_ops;
  104. brd->bd_uart_offset = 0x200;
  105. brd->bd_dividend = 921600;
  106. brd->re_map_membase = ioremap(brd->membase, 0x1000);
  107. if (!brd->re_map_membase) {
  108. dev_err(&pdev->dev,
  109. "card has no PCI Memory resources, "
  110. "failing board.\n");
  111. rc = -ENOMEM;
  112. goto out_kfree_brd;
  113. }
  114. rc = request_irq(brd->irq, brd->bd_ops->intr,
  115. IRQF_SHARED, "JSM", brd);
  116. if (rc) {
  117. printk(KERN_WARNING "Failed to hook IRQ %d\n",brd->irq);
  118. goto out_iounmap;
  119. }
  120. rc = jsm_tty_init(brd);
  121. if (rc < 0) {
  122. dev_err(&pdev->dev, "Can't init tty devices (%d)\n", rc);
  123. rc = -ENXIO;
  124. goto out_free_irq;
  125. }
  126. rc = jsm_uart_port_init(brd);
  127. if (rc < 0) {
  128. /* XXX: leaking all resources from jsm_tty_init here! */
  129. dev_err(&pdev->dev, "Can't init uart port (%d)\n", rc);
  130. rc = -ENXIO;
  131. goto out_free_irq;
  132. }
  133. /* Log the information about the board */
  134. dev_info(&pdev->dev, "board %d: Digi Neo (rev %d), irq %d\n",
  135. adapter_count, brd->rev, brd->irq);
  136. /*
  137. * allocate flip buffer for board.
  138. *
  139. * Okay to malloc with GFP_KERNEL, we are not at interrupt
  140. * context, and there are no locks held.
  141. */
  142. brd->flipbuf = kzalloc(MYFLIPLEN, GFP_KERNEL);
  143. if (!brd->flipbuf) {
  144. /* XXX: leaking all resources from jsm_tty_init and
  145. jsm_uart_port_init here! */
  146. dev_err(&pdev->dev, "memory allocation for flipbuf failed\n");
  147. rc = -ENOMEM;
  148. goto out_free_irq;
  149. }
  150. pci_set_drvdata(pdev, brd);
  151. pci_save_state(pdev);
  152. return 0;
  153. out_free_irq:
  154. free_irq(brd->irq, brd);
  155. out_iounmap:
  156. iounmap(brd->re_map_membase);
  157. out_kfree_brd:
  158. kfree(brd);
  159. out_release_regions:
  160. pci_release_regions(pdev);
  161. out_disable_device:
  162. pci_disable_device(pdev);
  163. out:
  164. return rc;
  165. }
  166. static void __devexit jsm_remove_one(struct pci_dev *pdev)
  167. {
  168. struct jsm_board *brd = pci_get_drvdata(pdev);
  169. int i = 0;
  170. jsm_remove_uart_port(brd);
  171. free_irq(brd->irq, brd);
  172. iounmap(brd->re_map_membase);
  173. /* Free all allocated channels structs */
  174. for (i = 0; i < brd->maxports; i++) {
  175. if (brd->channels[i]) {
  176. kfree(brd->channels[i]->ch_rqueue);
  177. kfree(brd->channels[i]->ch_equeue);
  178. kfree(brd->channels[i]->ch_wqueue);
  179. kfree(brd->channels[i]);
  180. }
  181. }
  182. pci_release_regions(pdev);
  183. pci_disable_device(pdev);
  184. kfree(brd->flipbuf);
  185. kfree(brd);
  186. }
  187. static struct pci_device_id jsm_pci_tbl[] = {
  188. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9), 0, 0, 0 },
  189. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2DB9PRI), 0, 0, 1 },
  190. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45), 0, 0, 2 },
  191. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_NEO_2RJ45PRI), 0, 0, 3 },
  192. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCIE_DEVICE_ID_NEO_4_IBM), 0, 0, 4 },
  193. { PCI_DEVICE(PCI_VENDOR_ID_DIGI, PCI_DEVICE_ID_DIGI_NEO_8), 0, 0, 5 },
  194. { 0, }
  195. };
  196. MODULE_DEVICE_TABLE(pci, jsm_pci_tbl);
  197. static struct pci_driver jsm_driver = {
  198. .name = "jsm",
  199. .id_table = jsm_pci_tbl,
  200. .probe = jsm_probe_one,
  201. .remove = __devexit_p(jsm_remove_one),
  202. .err_handler = &jsm_err_handler,
  203. };
  204. static pci_ers_result_t jsm_io_error_detected(struct pci_dev *pdev,
  205. pci_channel_state_t state)
  206. {
  207. struct jsm_board *brd = pci_get_drvdata(pdev);
  208. jsm_remove_uart_port(brd);
  209. return PCI_ERS_RESULT_NEED_RESET;
  210. }
  211. static pci_ers_result_t jsm_io_slot_reset(struct pci_dev *pdev)
  212. {
  213. int rc;
  214. rc = pci_enable_device(pdev);
  215. if (rc)
  216. return PCI_ERS_RESULT_DISCONNECT;
  217. pci_set_master(pdev);
  218. return PCI_ERS_RESULT_RECOVERED;
  219. }
  220. static void jsm_io_resume(struct pci_dev *pdev)
  221. {
  222. struct jsm_board *brd = pci_get_drvdata(pdev);
  223. pci_restore_state(pdev);
  224. jsm_uart_port_init(brd);
  225. }
  226. static int __init jsm_init_module(void)
  227. {
  228. int rc;
  229. rc = uart_register_driver(&jsm_uart_driver);
  230. if (!rc) {
  231. rc = pci_register_driver(&jsm_driver);
  232. if (rc)
  233. uart_unregister_driver(&jsm_uart_driver);
  234. }
  235. return rc;
  236. }
  237. static void __exit jsm_exit_module(void)
  238. {
  239. pci_unregister_driver(&jsm_driver);
  240. uart_unregister_driver(&jsm_uart_driver);
  241. }
  242. module_init(jsm_init_module);
  243. module_exit(jsm_exit_module);