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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * Sony Programmable I/O Control Device driver for VAIO
  3.  *
  4.  * Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alc魐e
  5.  *
  6.  * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
  7.  *
  8.  * Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
  9.  *
  10.  * Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
  11.  *
  12.  * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
  13.  *
  14.  * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
  15.  * 
  16.  * This program is free software; you can redistribute it and/or modify
  17.  * it under the terms of the GNU General Public License as published by
  18.  * the Free Software Foundation; either version 2 of the License, or
  19.  * (at your option) any later version.
  20.  * 
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  * 
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29.  *
  30.  */
  31. #ifndef _SONYPI_PRIV_H_ 
  32. #define _SONYPI_PRIV_H_
  33. #ifdef __KERNEL__
  34. #define SONYPI_DRIVER_MAJORVERSION  1
  35. #define SONYPI_DRIVER_MINORVERSION 10
  36. #include <linux/types.h>
  37. #include <linux/pci.h>
  38. #include "linux/sonypi.h"
  39. /* type1 models use those */
  40. #define SONYPI_IRQ_PORT 0x8034
  41. #define SONYPI_IRQ_SHIFT 22
  42. #define SONYPI_BASE 0x50
  43. #define SONYPI_G10A (SONYPI_BASE+0x14)
  44. #define SONYPI_TYPE1_REGION_SIZE 0x08
  45. /* type2 series specifics */
  46. #define SONYPI_SIRQ 0x9b
  47. #define SONYPI_SLOB 0x9c
  48. #define SONYPI_SHIB 0x9d
  49. #define SONYPI_TYPE2_REGION_SIZE 0x20
  50. /* ioports used for brightness and type2 events */
  51. #define SONYPI_DATA_IOPORT 0x62
  52. #define SONYPI_CST_IOPORT 0x66
  53. /* The set of possible ioports */
  54. struct sonypi_ioport_list {
  55. u16 port1;
  56. u16 port2;
  57. };
  58. static struct sonypi_ioport_list sonypi_type1_ioport_list[] = {
  59. { 0x10c0, 0x10c4 }, /* looks like the default on C1Vx */
  60. { 0x1080, 0x1084 },
  61. { 0x1090, 0x1094 },
  62. { 0x10a0, 0x10a4 },
  63. { 0x10b0, 0x10b4 },
  64. { 0x0, 0x0 }
  65. };
  66. static struct sonypi_ioport_list sonypi_type2_ioport_list[] = {
  67. { 0x1080, 0x1084 },
  68. { 0x10a0, 0x10a4 },
  69. { 0x10c0, 0x10c4 },
  70. { 0x10e0, 0x10e4 },
  71. { 0x0, 0x0 }
  72. };
  73. /* The set of possible interrupts */
  74. struct sonypi_irq_list {
  75. u16 irq;
  76. u16 bits;
  77. };
  78. static struct sonypi_irq_list sonypi_type1_irq_list[] = {
  79. { 11, 0x2 }, /* IRQ 11, GO22=0,GO23=1 in AML */
  80. { 10, 0x1 }, /* IRQ 10, GO22=1,GO23=0 in AML */
  81. {  5, 0x0 }, /* IRQ  5, GO22=0,GO23=0 in AML */
  82. {  0, 0x3 } /* no IRQ, GO22=1,GO23=1 in AML */
  83. };
  84. static struct sonypi_irq_list sonypi_type2_irq_list[] = {
  85. { 11, 0x80 }, /* IRQ 11, 0x80 in SIRQ in AML */
  86. { 10, 0x40 }, /* IRQ 10, 0x40 in SIRQ in AML */
  87. {  9, 0x20 }, /* IRQ  9, 0x20 in SIRQ in AML */
  88. {  6, 0x10 }, /* IRQ  6, 0x10 in SIRQ in AML */
  89. {  0, 0x00 } /* no IRQ, 0x00 in SIRQ in AML */
  90. };
  91. #define SONYPI_CAMERA_BRIGHTNESS 0
  92. #define SONYPI_CAMERA_CONTRAST 1
  93. #define SONYPI_CAMERA_HUE 2
  94. #define SONYPI_CAMERA_COLOR 3
  95. #define SONYPI_CAMERA_SHARPNESS 4
  96. #define SONYPI_CAMERA_PICTURE 5
  97. #define SONYPI_CAMERA_EXPOSURE_MASK 0xC
  98. #define SONYPI_CAMERA_WHITE_BALANCE_MASK 0x3
  99. #define SONYPI_CAMERA_PICTURE_MODE_MASK 0x30
  100. #define SONYPI_CAMERA_MUTE_MASK 0x40
  101. /* the rest don't need a loop until not 0xff */
  102. #define SONYPI_CAMERA_AGC 6
  103. #define SONYPI_CAMERA_AGC_MASK 0x30
  104. #define SONYPI_CAMERA_SHUTTER_MASK  0x7
  105. #define SONYPI_CAMERA_SHUTDOWN_REQUEST 7
  106. #define SONYPI_CAMERA_CONTROL 0x10
  107. #define SONYPI_CAMERA_STATUS  7
  108. #define SONYPI_CAMERA_STATUS_READY  0x2
  109. #define SONYPI_CAMERA_STATUS_POSITION 0x4
  110. #define SONYPI_DIRECTION_BACKWARDS  0x4
  111. #define SONYPI_CAMERA_REVISION  8
  112. #define SONYPI_CAMERA_ROMVERSION  9
  113. /* key press event data (ioport2) */
  114. #define SONYPI_TYPE1_JOGGER_EV 0x10
  115. #define SONYPI_TYPE2_JOGGER_EV 0x08
  116. #define SONYPI_TYPE1_CAPTURE_EV 0x60
  117. #define SONYPI_TYPE2_CAPTURE_EV 0x08
  118. #define SONYPI_TYPE1_FNKEY_EV 0x20
  119. #define SONYPI_TYPE2_FNKEY_EV 0x08
  120. #define SONYPI_TYPE1_BLUETOOTH_EV 0x30
  121. #define SONYPI_TYPE2_BLUETOOTH_EV 0x08
  122. #define SONYPI_TYPE1_PKEY_EV 0x40
  123. #define SONYPI_BACK_EV 0x08
  124. #define SONYPI_LID_EV 0x38
  125. struct sonypi_event {
  126. u8 data;
  127. u8 event;
  128. };
  129. /* The set of possible jogger events  */
  130. static struct sonypi_event sonypi_joggerev[] = {
  131. { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
  132. { 0x01, SONYPI_EVENT_JOGDIAL_DOWN },
  133. { 0x5f, SONYPI_EVENT_JOGDIAL_UP_PRESSED },
  134. { 0x41, SONYPI_EVENT_JOGDIAL_DOWN_PRESSED },
  135. { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
  136. { 0x00, SONYPI_EVENT_JOGDIAL_RELEASED },
  137. { 0x00, 0x00 }
  138. };
  139. /* The set of possible capture button events */
  140. static struct sonypi_event sonypi_captureev[] = {
  141. { 0x05, SONYPI_EVENT_CAPTURE_PARTIALPRESSED },
  142. { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
  143. { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
  144. { 0x00, SONYPI_EVENT_CAPTURE_RELEASED },
  145. { 0x00, 0x00 }
  146. };
  147. /* The set of possible fnkeys events */
  148. static struct sonypi_event sonypi_fnkeyev[] = {
  149. { 0x10, SONYPI_EVENT_FNKEY_ESC },
  150. { 0x11, SONYPI_EVENT_FNKEY_F1 },
  151. { 0x12, SONYPI_EVENT_FNKEY_F2 },
  152. { 0x13, SONYPI_EVENT_FNKEY_F3 },
  153. { 0x14, SONYPI_EVENT_FNKEY_F4 },
  154. { 0x15, SONYPI_EVENT_FNKEY_F5 },
  155. { 0x16, SONYPI_EVENT_FNKEY_F6 },
  156. { 0x17, SONYPI_EVENT_FNKEY_F7 },
  157. { 0x18, SONYPI_EVENT_FNKEY_F8 },
  158. { 0x19, SONYPI_EVENT_FNKEY_F9 },
  159. { 0x1a, SONYPI_EVENT_FNKEY_F10 },
  160. { 0x1b, SONYPI_EVENT_FNKEY_F11 },
  161. { 0x1c, SONYPI_EVENT_FNKEY_F12 },
  162. { 0x21, SONYPI_EVENT_FNKEY_1 },
  163. { 0x22, SONYPI_EVENT_FNKEY_2 },
  164. { 0x31, SONYPI_EVENT_FNKEY_D },
  165. { 0x32, SONYPI_EVENT_FNKEY_E },
  166. { 0x33, SONYPI_EVENT_FNKEY_F },
  167. { 0x34, SONYPI_EVENT_FNKEY_S },
  168. { 0x35, SONYPI_EVENT_FNKEY_B },
  169. { 0x00, 0x00 }
  170. };
  171. /* The set of possible program key events */
  172. static struct sonypi_event sonypi_pkeyev[] = {
  173. { 0x01, SONYPI_EVENT_PKEY_P1 },
  174. { 0x02, SONYPI_EVENT_PKEY_P2 },
  175. { 0x04, SONYPI_EVENT_PKEY_P3 },
  176. { 0x00, 0x00 }
  177. };
  178. /* The set of possible bluetooth events */
  179. static struct sonypi_event sonypi_blueev[] = {
  180. { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
  181. { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
  182. { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
  183. { 0x00, 0x00 }
  184. };
  185. /* The set of possible back button events */
  186. static struct sonypi_event sonypi_backev[] = {
  187. { 0x20, SONYPI_EVENT_BACK_PRESSED },
  188. { 0x00, 0x00 }
  189. };
  190. /* The set of possible lid events */
  191. static struct sonypi_event sonypi_lidev[] = {
  192. { 0x51, SONYPI_EVENT_LID_CLOSED },
  193. { 0x50, SONYPI_EVENT_LID_OPENED },
  194. { 0x00, 0x00 }
  195. };
  196. #define SONYPI_BUF_SIZE 128
  197. struct sonypi_queue {
  198. unsigned long head;
  199. unsigned long tail;
  200. unsigned long len;
  201. spinlock_t s_lock;
  202. wait_queue_head_t proc_list;
  203. struct fasync_struct *fasync;
  204. unsigned char buf[SONYPI_BUF_SIZE];
  205. };
  206. #define SONYPI_DEVICE_MODEL_TYPE1 1
  207. #define SONYPI_DEVICE_MODEL_TYPE2 2
  208. struct sonypi_device {
  209. struct pci_dev *dev;
  210. u16 irq;
  211. u16 bits;
  212. u16 ioport1;
  213. u16 ioport2;
  214. u16 region_size;
  215. int camera_power;
  216. int bluetooth_power;
  217. struct semaphore lock;
  218. struct sonypi_queue queue;
  219. int open_count;
  220. int model;
  221. };
  222. #define wait_on_command(quiet, command) { 
  223. unsigned int n = 10000; 
  224. while (--n && (command)) 
  225. udelay(1); 
  226. if (!n && (verbose || !quiet)) 
  227. printk(KERN_WARNING "sonypi command failed at " __FILE__ " : " __FUNCTION__ "(line %d)n", __LINE__); 
  228. }
  229. #endif /* __KERNEL__ */
  230. #endif /* _SONYPI_PRIV_H_ */