1 /* 2 * HID Sensors Driver 3 * Copyright (c) 2012, Intel Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 * You should have received a copy of the GNU General Public License along with 15 * this program; if not, write to the Free Software Foundation, Inc., 16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 17 * 18 */ 19 #ifndef _HID_SENSORS_IDS_H 20 #define _HID_SENSORS_IDS_H 21 22 #define HID_MAX_PHY_DEVICES 0xFF 23 24 /* Accel 3D (200073) */ 25 #define HID_USAGE_SENSOR_ACCEL_3D 0x200073 26 #define HID_USAGE_SENSOR_DATA_ACCELERATION 0x200452 27 #define HID_USAGE_SENSOR_ACCEL_X_AXIS 0x200453 28 #define HID_USAGE_SENSOR_ACCEL_Y_AXIS 0x200454 29 #define HID_USAGE_SENSOR_ACCEL_Z_AXIS 0x200455 30 31 /* ALS (200041) */ 32 #define HID_USAGE_SENSOR_ALS 0x200041 33 #define HID_USAGE_SENSOR_DATA_LIGHT 0x2004d0 34 #define HID_USAGE_SENSOR_LIGHT_ILLUM 0x2004d1 35 36 /* Gyro 3D: (200076) */ 37 #define HID_USAGE_SENSOR_GYRO_3D 0x200076 38 #define HID_USAGE_SENSOR_DATA_ANGL_VELOCITY 0x200456 39 #define HID_USAGE_SENSOR_ANGL_VELOCITY_X_AXIS 0x200457 40 #define HID_USAGE_SENSOR_ANGL_VELOCITY_Y_AXIS 0x200458 41 #define HID_USAGE_SENSOR_ANGL_VELOCITY_Z_AXIS 0x200459 42 43 /* ORIENTATION: Compass 3D: (200083) */ 44 #define HID_USAGE_SENSOR_COMPASS_3D 0x200083 45 #define HID_USAGE_SENSOR_DATA_ORIENTATION 0x200470 46 #define HID_USAGE_SENSOR_ORIENT_MAGN_HEADING 0x200471 47 #define HID_USAGE_SENSOR_ORIENT_MAGN_HEADING_X 0x200472 48 #define HID_USAGE_SENSOR_ORIENT_MAGN_HEADING_Y 0x200473 49 #define HID_USAGE_SENSOR_ORIENT_MAGN_HEADING_Z 0x200474 50 51 #define HID_USAGE_SENSOR_ORIENT_COMP_MAGN_NORTH 0x200475 52 #define HID_USAGE_SENSOR_ORIENT_COMP_TRUE_NORTH 0x200476 53 #define HID_USAGE_SENSOR_ORIENT_MAGN_NORTH 0x200477 54 #define HID_USAGE_SENSOR_ORIENT_TRUE_NORTH 0x200478 55 56 #define HID_USAGE_SENSOR_ORIENT_DISTANCE 0x200479 57 #define HID_USAGE_SENSOR_ORIENT_DISTANCE_X 0x20047A 58 #define HID_USAGE_SENSOR_ORIENT_DISTANCE_Y 0x20047B 59 #define HID_USAGE_SENSOR_ORIENT_DISTANCE_Z 0x20047C 60 #define HID_USAGE_SENSOR_ORIENT_DISTANCE_OUT_OF_RANGE 0x20047D 61 62 /* ORIENTATION: Inclinometer 3D: (200086) */ 63 #define HID_USAGE_SENSOR_INCLINOMETER_3D 0x200086 64 #define HID_USAGE_SENSOR_ORIENT_TILT 0x20047E 65 #define HID_USAGE_SENSOR_ORIENT_TILT_X 0x20047F 66 #define HID_USAGE_SENSOR_ORIENT_TILT_Y 0x200480 67 #define HID_USAGE_SENSOR_ORIENT_TILT_Z 0x200481 68 69 #define HID_USAGE_SENSOR_ORIENT_ROTATION_MATRIX 0x200482 70 #define HID_USAGE_SENSOR_ORIENT_QUATERNION 0x200483 71 #define HID_USAGE_SENSOR_ORIENT_MAGN_FLUX 0x200484 72 73 #define HID_USAGE_SENSOR_ORIENT_MAGN_FLUX_X_AXIS 0x200485 74 #define HID_USAGE_SENSOR_ORIENT_MAGN_FLUX_Y_AXIS 0x200486 75 #define HID_USAGE_SENSOR_ORIENT_MAGN_FLUX_Z_AXIS 0x200487 76 77 /* Time (2000a0) */ 78 #define HID_USAGE_SENSOR_TIME 0x2000a0 79 #define HID_USAGE_SENSOR_TIME_YEAR 0x200521 80 #define HID_USAGE_SENSOR_TIME_MONTH 0x200522 81 #define HID_USAGE_SENSOR_TIME_DAY 0x200523 82 #define HID_USAGE_SENSOR_TIME_HOUR 0x200525 83 #define HID_USAGE_SENSOR_TIME_MINUTE 0x200526 84 #define HID_USAGE_SENSOR_TIME_SECOND 0x200527 85 86 /* Units */ 87 #define HID_USAGE_SENSOR_UNITS_NOT_SPECIFIED 0x00 88 #define HID_USAGE_SENSOR_UNITS_LUX 0x01 89 #define HID_USAGE_SENSOR_UNITS_KELVIN 0x01000100 90 #define HID_USAGE_SENSOR_UNITS_FAHRENHEIT 0x03000100 91 #define HID_USAGE_SENSOR_UNITS_PASCAL 0xF1E1 92 #define HID_USAGE_SENSOR_UNITS_NEWTON 0x11E1 93 #define HID_USAGE_SENSOR_UNITS_METERS_PER_SECOND 0x11F0 94 #define HID_USAGE_SENSOR_UNITS_METERS_PER_SEC_SQRD 0x11E0 95 #define HID_USAGE_SENSOR_UNITS_FARAD 0xE14F2000 96 #define HID_USAGE_SENSOR_UNITS_AMPERE 0x01001000 97 #define HID_USAGE_SENSOR_UNITS_WATT 0x21d1 98 #define HID_USAGE_SENSOR_UNITS_HENRY 0x21E1E000 99 #define HID_USAGE_SENSOR_UNITS_OHM 0x21D1E000 100 #define HID_USAGE_SENSOR_UNITS_VOLT 0x21D1F000 101 #define HID_USAGE_SENSOR_UNITS_HERTZ 0x01F0 102 #define HID_USAGE_SENSOR_UNITS_DEGREES_PER_SEC_SQRD 0x14E0 103 #define HID_USAGE_SENSOR_UNITS_RADIANS 0x12 104 #define HID_USAGE_SENSOR_UNITS_RADIANS_PER_SECOND 0x12F0 105 #define HID_USAGE_SENSOR_UNITS_RADIANS_PER_SEC_SQRD 0x12E0 106 #define HID_USAGE_SENSOR_UNITS_SECOND 0x0110 107 #define HID_USAGE_SENSOR_UNITS_GAUSS 0x01E1F000 108 #define HID_USAGE_SENSOR_UNITS_GRAM 0x0101 109 #define HID_USAGE_SENSOR_UNITS_CENTIMETER 0x11 110 #define HID_USAGE_SENSOR_UNITS_G 0x1A 111 #define HID_USAGE_SENSOR_UNITS_MILLISECOND 0x19 112 #define HID_USAGE_SENSOR_UNITS_PERCENT 0x17 113 #define HID_USAGE_SENSOR_UNITS_DEGREES 0x14 114 #define HID_USAGE_SENSOR_UNITS_DEGREES_PER_SECOND 0x15 115 116 /* Common selectors */ 117 #define HID_USAGE_SENSOR_PROP_REPORT_INTERVAL 0x20030E 118 #define HID_USAGE_SENSOR_PROP_SENSITIVITY_ABS 0x20030F 119 #define HID_USAGE_SENSOR_PROP_SENSITIVITY_RANGE_PCT 0x200310 120 #define HID_USAGE_SENSOR_PROP_SENSITIVITY_REL_PCT 0x200311 121 #define HID_USAGE_SENSOR_PROP_ACCURACY 0x200312 122 #define HID_USAGE_SENSOR_PROP_RESOLUTION 0x200313 123 #define HID_USAGE_SENSOR_PROP_RANGE_MAXIMUM 0x200314 124 #define HID_USAGE_SENSOR_PROP_RANGE_MINIMUM 0x200315 125 #define HID_USAGE_SENSOR_PROP_REPORT_STATE 0x200316 126 #define HID_USAGE_SENSOR_PROY_POWER_STATE 0x200319 127 128 /* Per data field properties */ 129 #define HID_USAGE_SENSOR_DATA_MOD_NONE 0x00 130 #define HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS 0x1000 131 132 /* Power state enumerations */ 133 #define HID_USAGE_SENSOR_PROP_POWER_STATE_UNDEFINED_ENUM 0x00 134 #define HID_USAGE_SENSOR_PROP_POWER_STATE_D0_FULL_POWER_ENUM 0x01 135 #define HID_USAGE_SENSOR_PROP_POWER_STATE_D1_LOW_POWER_ENUM 0x02 136 #define HID_USAGE_SENSOR_PROP_POWER_STATE_D2_STANDBY_WITH_WAKE_ENUM 0x03 137 #define HID_USAGE_SENSOR_PROP_POWER_STATE_D3_SLEEP_WITH_WAKE_ENUM 0x04 138 #define HID_USAGE_SENSOR_PROP_POWER_STATE_D4_POWER_OFF_ENUM 0x05 139 140 /* Report State enumerations */ 141 #define HID_USAGE_SENSOR_PROP_REPORTING_STATE_NO_EVENTS_ENUM 0x00 142 #define HID_USAGE_SENSOR_PROP_REPORTING_STATE_ALL_EVENTS_ENUM 0x01 143 144 #endif 145