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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _GAMEPORT_H
  2. #define _GAMEPORT_H
  3. /*
  4.  * $Id: gameport.h,v 1.11 2001/04/26 10:24:46 vojtech Exp $
  5.  *
  6.  *  Copyright (c) 1999-2000 Vojtech Pavlik
  7.  *
  8.  *  Sponsored by SuSE
  9.  */
  10. /*
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24.  *
  25.  * Should you need to contact me, the author, you can do so either by
  26.  * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  27.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  28.  */
  29. #include <linux/sched.h>
  30. #include <linux/delay.h>
  31. #include <asm/io.h>
  32. struct gameport;
  33. struct gameport {
  34. void *private;
  35. int number;
  36. int io;
  37. int speed;
  38. int fuzz;
  39. void (*trigger)(struct gameport *);
  40. unsigned char (*read)(struct gameport *);
  41. int (*cooked_read)(struct gameport *, int *, int *);
  42. int (*calibrate)(struct gameport *, int *, int *);
  43. int (*open)(struct gameport *, int);
  44. void (*close)(struct gameport *);
  45. struct gameport_dev *dev;
  46. struct gameport *next;
  47. };
  48. struct gameport_dev {
  49. void *private;
  50. void (*connect)(struct gameport *, struct gameport_dev *dev);
  51. void (*disconnect)(struct gameport *);
  52. struct gameport_dev *next;
  53. };
  54. int gameport_open(struct gameport *gameport, struct gameport_dev *dev, int mode);
  55. void gameport_close(struct gameport *gameport);
  56. void gameport_rescan(struct gameport *gameport);
  57. #if defined(CONFIG_INPUT_GAMEPORT) || defined(CONFIG_INPUT_GAMEPORT_MODULE)
  58. void gameport_register_port(struct gameport *gameport);
  59. void gameport_unregister_port(struct gameport *gameport);
  60. #else
  61. static void __inline__ gameport_register_port(struct gameport *gameport) { return; }
  62. static void __inline__ gameport_unregister_port(struct gameport *gameport) { return; }
  63. #endif
  64. void gameport_register_device(struct gameport_dev *dev);
  65. void gameport_unregister_device(struct gameport_dev *dev);
  66. #define GAMEPORT_MODE_DISABLED 0
  67. #define GAMEPORT_MODE_RAW 1
  68. #define GAMEPORT_MODE_COOKED 2
  69. #define GAMEPORT_ID_VENDOR_ANALOG 0x0001
  70. #define GAMEPORT_ID_VENDOR_MADCATZ 0x0002
  71. #define GAMEPORT_ID_VENDOR_LOGITECH 0x0003
  72. #define GAMEPORT_ID_VENDOR_CREATIVE 0x0004
  73. #define GAMEPORT_ID_VENDOR_GENIUS 0x0005
  74. #define GAMEPORT_ID_VENDOR_INTERACT 0x0006
  75. #define GAMEPORT_ID_VENDOR_MICROSOFT 0x0007
  76. #define GAMEPORT_ID_VENDOR_THRUSTMASTER 0x0008
  77. #define GAMEPORT_ID_VENDOR_GRAVIS 0x0009
  78. static __inline__ void gameport_trigger(struct gameport *gameport)
  79. {
  80. if (gameport->trigger)
  81. gameport->trigger(gameport);
  82. else
  83. outb(0xff, gameport->io);
  84. }
  85. static __inline__ unsigned char gameport_read(struct gameport *gameport)
  86. {
  87. if (gameport->read)
  88. return gameport->read(gameport);
  89. else
  90. return inb(gameport->io);
  91. }
  92. static __inline__ int gameport_cooked_read(struct gameport *gameport, int *axes, int *buttons)
  93. {
  94. if (gameport->cooked_read)
  95. return gameport->cooked_read(gameport, axes, buttons);
  96. else
  97. return -1;
  98. }
  99. static __inline__ int gameport_calibrate(struct gameport *gameport, int *axes, int *max)
  100. {
  101. if (gameport->calibrate)
  102. return gameport->calibrate(gameport, axes, max);
  103. else
  104. return -1;
  105. }
  106. static __inline__ int gameport_time(struct gameport *gameport, int time)
  107. {
  108. return (time * gameport->speed) / 1000;
  109. }
  110. static __inline__ void wait_ms(unsigned int ms)
  111. {
  112. current->state = TASK_UNINTERRUPTIBLE;
  113. schedule_timeout(1 + ms * HZ / 1000);
  114. }
  115. #endif