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

嵌入式Linux

开发平台:

Unix_Linux

  1.   /* 
  2.    * This header tries to allow you to write 2.3-compatible drivers, 
  3.    * but (using this header) still allows you to run them on 2.2 and 
  4.    * 2.0 kernels. 
  5.    *
  6.    * Sometimes, a #define replaces a "construct" that older kernels
  7.    * had. For example, 
  8.    *
  9.    *       DECLARE_MUTEX(name);
  10.    *
  11.    * replaces the older 
  12.    *
  13.    *       struct semaphore name = MUTEX;
  14.    *
  15.    * This file then declares the DECLARE_MUTEX macro to compile into the 
  16.    * older version. 
  17.    * 
  18.    * In some cases, a macro or function changes the number of arguments.
  19.    * In that case, there is nothing we can do except define an access 
  20.    * macro that provides the same functionality on both versions of Linux. 
  21.    * 
  22.    * This is the case for example with the "get_user" macro 2.0 kernels use:
  23.    *
  24.    *          a = get_user (b);
  25.    *  
  26.    * while newer kernels use 
  27.    * 
  28.    *          get_user (a,b);
  29.    *
  30.    * This is unfortunate. We therefore define "Get_user (a,b)" which looks
  31.    * almost the same as the 2.2+ construct, and translates into the 
  32.    * appropriate sequence for earlier constructs. 
  33.    * 
  34.    * Supported by this file are the 2.0 kernels, 2.2 kernels, and the 
  35.    * most recent 2.3 kernel. 2.3 support will be dropped as soon when 2.4
  36.    * comes out. 2.0 support may someday be dropped. But then again, maybe 
  37.    * not. 
  38.    *
  39.    * I'll try to maintain this, provided that Linus agrees with the setup. 
  40.    * Feel free to mail updates or suggestions. 
  41.    *
  42.    * -- R.E.Wolff@BitWizard.nl
  43.    *
  44.    */
  45. #ifndef COMPATMAC_H
  46. #define COMPATMAC_H
  47. #include <linux/version.h>
  48. #if LINUX_VERSION_CODE < 0x020100    /* Less than 2.1.0 */
  49. #define TWO_ZERO
  50. #else
  51. #if LINUX_VERSION_CODE < 0x020200   /* less than 2.2.x */
  52. #warning "Please use a 2.2.x kernel. "
  53. #else
  54. #if LINUX_VERSION_CODE < 0x020300   /* less than 2.3.x */
  55. #define TWO_TWO
  56. #else
  57. #define TWO_THREE
  58. #endif
  59. #endif
  60. #endif
  61. #ifdef TWO_ZERO
  62. /* Here is the section that makes the 2.2 compatible driver source 
  63.    work for 2.0 too! We mostly try to adopt the "new thingies" from 2.2, 
  64.    and provide for compatibility stuff here if possible. */
  65. /* Some 200 days (on intel) */
  66. #define MAX_SCHEDULE_TIMEOUT     ((long)(~0UL>>1))
  67. #include <linux/bios32.h>
  68. #define Get_user(a,b)                a = get_user(b)
  69. #define Put_user(a,b)                0,put_user(a,b)
  70. #define copy_to_user(a,b,c)          memcpy_tofs(a,b,c)
  71. static inline int copy_from_user(void *to,const void *from, int c) 
  72. {
  73.   memcpy_fromfs(to, from, c);
  74.   return 0;
  75. }
  76. #define pci_present                  pcibios_present
  77. #define pci_read_config_word         pcibios_read_config_word
  78. #define pci_read_config_dword        pcibios_read_config_dword
  79. static inline unsigned char get_irq (unsigned char bus, unsigned char fn)
  80. {
  81. unsigned char t; 
  82. pcibios_read_config_byte (bus, fn, PCI_INTERRUPT_LINE, &t);
  83. return t;
  84. }
  85. static inline void *ioremap(unsigned long base, long length)
  86. {
  87. if (base < 0x100000) return (void *)base;
  88. return vremap (base, length);
  89. }
  90. #define my_iounmap(x, b)             (((long)x<0x100000)?0:vfree ((void*)x))
  91. #define capable(x)                   suser()
  92. #define tty_flip_buffer_push(tty)    queue_task(&tty->flip.tqueue, &tq_timer)
  93. #define signal_pending(current)      (current->signal & ~current->blocked)
  94. #define schedule_timeout(to)         do {current->timeout = jiffies + (to);schedule ();} while (0)
  95. #define time_after(t1,t2)            (((long)t1-t2) > 0)
  96. #define test_and_set_bit(nr, addr)   set_bit(nr, addr)
  97. #define test_and_clear_bit(nr, addr) clear_bit(nr, addr)
  98. /* Not yet implemented on 2.0 */
  99. #define ASYNC_SPD_SHI  -1
  100. #define ASYNC_SPD_WARP -1
  101. /* Ugly hack: the driver_name doesn't exist in 2.0.x . So we define it
  102.    to the "name" field that does exist. As long as the assignments are
  103.    done in the right order, there is nothing to worry about. */
  104. #define driver_name           name 
  105. /* Should be in a header somewhere. They are in tty.h on 2.2 */
  106. #define TTY_HW_COOK_OUT       14 /* Flag to tell ntty what we can handle */
  107. #define TTY_HW_COOK_IN        15 /* in hardware - output and input       */
  108. /* The return type of a "close" routine. */
  109. #define INT                   void
  110. #define NO_ERROR              /* Nothing */
  111. #else
  112. /* The 2.2.x compatibility section. */
  113. #include <asm/uaccess.h>
  114. #define Get_user(a,b)         get_user(a,b)
  115. #define Put_user(a,b)         put_user(a,b)
  116. #define get_irq(pdev)         pdev->irq
  117. #define INT                   int
  118. #define NO_ERROR              0
  119. #define my_iounmap(x,b)       (iounmap((char *)(b)))
  120. #endif
  121. #ifndef TWO_THREE
  122. /* These are new in 2.3. The source now uses 2.3 syntax, and here is 
  123.    the compatibility define... */
  124. #define wait_queue_head_t     struct wait_queue *
  125. #define DECLARE_MUTEX(name)   struct semaphore name = MUTEX
  126. #define DECLARE_WAITQUEUE(wait, current) 
  127.                               struct wait_queue wait = { current, NULL }
  128. #endif
  129. #endif