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

嵌入式Linux

开发平台:

Unix_Linux

  1. // ip2.c
  2. // This is a dummy module to make the firmware available when needed
  3. // and allows it to be unloaded when not. Rumor is the __initdata 
  4. // macro doesn't always works on all platforms so we use this kludge.
  5. // If not compiled as a module it just makes fip_firm avaliable then
  6. //  __initdata should work as advertized
  7. //
  8. #include <linux/module.h>
  9. #include <linux/version.h>
  10. #include <linux/init.h>
  11. #include <linux/wait.h>
  12. #ifndef __init
  13. #define __init
  14. #endif
  15. #ifndef __initfunc
  16. #define __initfunc(a) a
  17. #endif
  18. #ifndef __initdata
  19. #define __initdata
  20. #endif
  21. #include "./ip2/ip2types.h"
  22. #include "./ip2/fip_firm.h" // the meat
  23. int
  24. ip2_loadmain(int *, int  *, unsigned char *, int ); // ref into ip2main.c
  25. /* Note: Add compiled in defaults to these arrays, not to the structure
  26. in ip2/ip2.h any longer.  That structure WILL get overridden
  27. by these values, or command line values, or insmod values!!!  =mhw=
  28. */
  29. static int io[IP2_MAX_BOARDS]= { 0, 0, 0, 0 };
  30. static int irq[IP2_MAX_BOARDS] = { -1, -1, -1, -1 }; 
  31. #ifdef MODULE
  32. static int poll_only = 0;
  33. # if LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0)
  34. MODULE_AUTHOR("Doug McNash");
  35. MODULE_DESCRIPTION("Computone IntelliPort Plus Driver");
  36. MODULE_PARM(irq,"1-"__MODULE_STRING(IP2_MAX_BOARDS) "i");
  37. MODULE_PARM_DESC(irq,"Interrupts for IntelliPort Cards");
  38. MODULE_PARM(io,"1-"__MODULE_STRING(IP2_MAX_BOARDS) "i");
  39. MODULE_PARM_DESC(io,"I/O ports for IntelliPort Cards");
  40. MODULE_PARM(poll_only,"1i");
  41. MODULE_PARM_DESC(poll_only,"Do not use card interrupts");
  42. # endif /* LINUX_VERSION */
  43. //======================================================================
  44. int
  45. init_module(void)
  46. {
  47. int rc;
  48. MOD_INC_USE_COUNT; // hold till done 
  49. if( poll_only ) {
  50. /* Hard lock the interrupts to zero */
  51. irq[0] = irq[1] = irq[2] = irq[3] = 0;
  52. }
  53. rc = ip2_loadmain(io,irq,(unsigned char *)fip_firm,sizeof(fip_firm));
  54. // The call to lock and load main, create dep 
  55. MOD_DEC_USE_COUNT; //done - kerneld now can unload us
  56. return rc;
  57. }
  58. //======================================================================
  59. int
  60. ip2_init(void)
  61. {
  62. // call to this is in tty_io.c so we need this
  63. return 0;
  64. }
  65. //======================================================================
  66. void
  67. cleanup_module(void) 
  68. {
  69. }
  70. MODULE_LICENSE("GPL");
  71. #else // !MODULE 
  72. #ifndef NULL
  73. # define NULL ((void *) 0)
  74. #endif
  75. /******************************************************************************
  76.  * ip2_setup:
  77.  * str: kernel command line string
  78.  *
  79.  * Can't autoprobe the boards so user must specify configuration on
  80.  * kernel command line.  Sane people build it modular but the others
  81.  * come here.
  82.  *
  83.  * Alternating pairs of io,irq for up to 4 boards.
  84.  * ip2=io0,irq0,io1,irq1,io2,irq2,io3,irq3
  85.  *
  86.  * io=0 => No board
  87.  * io=1 => PCI
  88.  * io=2 => EISA
  89.  * else => ISA I/O address
  90.  *
  91.  * irq=0 or invalid for ISA will revert to polling mode
  92.  *
  93.  * Any value = -1, do not overwrite compiled in value.
  94.  *
  95.  ******************************************************************************/
  96. static int __init ip2_setup(char *str)
  97. {
  98. int ints[10]; /* 4 boards, 2 parameters + 2 */
  99. int i, j;
  100. str = get_options (str, ARRAY_SIZE(ints), ints);
  101. for( i = 0, j = 1; i < 4; i++ ) {
  102. if( j > ints[0] ) {
  103. break;
  104. }
  105. if( ints[j] >= 0 ) {
  106. io[i] = ints[j];
  107. }
  108. j++;
  109. if( j > ints[0] ) {
  110. break;
  111. }
  112. if( ints[j] >= 0 ) {
  113. irq[i] = ints[j];
  114. }
  115. j++;
  116. }
  117. return 1;
  118. }
  119. int
  120. ip2_init(void) {
  121. return ip2_loadmain(io,irq,(unsigned char *)fip_firm,sizeof(fip_firm));
  122. }
  123. #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,13))
  124. __setup("ip2=", ip2_setup);
  125. __initcall(ip2_init);
  126. #endif
  127. #endif /* !MODULE */