[bf2063e9] | 1 | /*
|
---|
[2571089] | 2 | * Copyright (c) 2011 Matej Klonfar
|
---|
[bf2063e9] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[160b75e] | 29 | /** @addtogroup libusbhid
|
---|
[bf2063e9] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[5499a8b] | 33 | * USB HID report data parser implementation.
|
---|
[bf2063e9] | 34 | */
|
---|
[faa44e58] | 35 | #include <usb/hid/hidparser.h>
|
---|
[bf2063e9] | 36 | #include <errno.h>
|
---|
[976f546] | 37 | #include <stdio.h>
|
---|
[e24e7b1] | 38 | #include <malloc.h>
|
---|
| 39 | #include <mem.h>
|
---|
[b7d9606] | 40 | #include <usb/debug.h>
|
---|
[681f24b3] | 41 | #include <assert.h>
|
---|
[976f546] | 42 |
|
---|
[5499a8b] | 43 | /*---------------------------------------------------------------------------*/
|
---|
[57d9c05e] | 44 | /*
|
---|
| 45 | * Data translation private functions
|
---|
| 46 | */
|
---|
[1553cbf] | 47 | uint32_t usb_hid_report_tag_data_uint32(const uint8_t *data, size_t size);
|
---|
[5499a8b] | 48 |
|
---|
[cfbbe1d3] | 49 | int usb_hid_translate_data(usb_hid_report_field_t *item, const uint8_t *data);
|
---|
[5499a8b] | 50 |
|
---|
| 51 | uint32_t usb_hid_translate_data_reverse(usb_hid_report_field_t *item,
|
---|
| 52 | int32_t value);
|
---|
| 53 |
|
---|
[fad14d7] | 54 | int usb_pow(int a, int b);
|
---|
| 55 |
|
---|
[5499a8b] | 56 | /*---------------------------------------------------------------------------*/
|
---|
[2571089] | 57 |
|
---|
[57d9c05e] | 58 | // TODO: tohle ma bejt asi jinde
|
---|
[fad14d7] | 59 | int usb_pow(int a, int b)
|
---|
| 60 | {
|
---|
| 61 | switch(b) {
|
---|
[5499a8b] | 62 | case 0:
|
---|
| 63 | return 1;
|
---|
| 64 | break;
|
---|
| 65 | case 1:
|
---|
| 66 | return a;
|
---|
| 67 | break;
|
---|
| 68 | default:
|
---|
| 69 | return a * usb_pow(a, b-1);
|
---|
| 70 | break;
|
---|
[fad14d7] | 71 | }
|
---|
| 72 | }
|
---|
[5499a8b] | 73 | /*---------------------------------------------------------------------------*/
|
---|
[976f546] | 74 |
|
---|
[3a6e423] | 75 | /** Returns size of report of specified report id and type in items
|
---|
| 76 | *
|
---|
| 77 | * @param parser Opaque report parser structure
|
---|
| 78 | * @param report_id
|
---|
| 79 | * @param type
|
---|
| 80 | * @return Number of items in specified report
|
---|
| 81 | */
|
---|
| 82 | size_t usb_hid_report_size(usb_hid_report_t *report, uint8_t report_id,
|
---|
| 83 | usb_hid_report_type_t type)
|
---|
| 84 | {
|
---|
| 85 | usb_hid_report_description_t *report_des;
|
---|
| 86 |
|
---|
| 87 | if(report == NULL) {
|
---|
| 88 | return 0;
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | report_des = usb_hid_report_find_description (report, report_id, type);
|
---|
| 92 | if(report_des == NULL){
|
---|
| 93 | return 0;
|
---|
| 94 | }
|
---|
| 95 | else {
|
---|
| 96 | return report_des->item_length;
|
---|
| 97 | }
|
---|
| 98 | }
|
---|
[1eee99f2] | 99 |
|
---|
| 100 | /** Returns size of report of specified report id and type in bytes
|
---|
| 101 | *
|
---|
| 102 | * @param parser Opaque report parser structure
|
---|
| 103 | * @param report_id
|
---|
| 104 | * @param type
|
---|
| 105 | * @return Number of items in specified report
|
---|
| 106 | */
|
---|
| 107 | size_t usb_hid_report_byte_size(usb_hid_report_t *report, uint8_t report_id,
|
---|
| 108 | usb_hid_report_type_t type)
|
---|
| 109 | {
|
---|
| 110 | usb_hid_report_description_t *report_des;
|
---|
| 111 |
|
---|
| 112 | if(report == NULL) {
|
---|
| 113 | return 0;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | report_des = usb_hid_report_find_description (report, report_id, type);
|
---|
| 117 | if(report_des == NULL){
|
---|
| 118 | return 0;
|
---|
| 119 | }
|
---|
| 120 | else {
|
---|
[d861c22] | 121 | return ((report_des->bit_length + 7) / 8) ;
|
---|
[1eee99f2] | 122 | }
|
---|
| 123 | }
|
---|
[5499a8b] | 124 | /*---------------------------------------------------------------------------*/
|
---|
[c7a2e7e] | 125 |
|
---|
[fad14d7] | 126 | /** Parse and act upon a HID report.
|
---|
| 127 | *
|
---|
| 128 | * @see usb_hid_parse_report_descriptor
|
---|
| 129 | *
|
---|
| 130 | * @param parser Opaque HID report parser structure.
|
---|
| 131 | * @param data Data for the report.
|
---|
| 132 | * @return Error code.
|
---|
| 133 | */
|
---|
[5499a8b] | 134 | int usb_hid_parse_report(const usb_hid_report_t *report, const uint8_t *data,
|
---|
| 135 | size_t size, uint8_t *report_id)
|
---|
[fad14d7] | 136 | {
|
---|
| 137 | link_t *list_item;
|
---|
[175ad13e] | 138 | usb_hid_report_field_t *item;
|
---|
| 139 |
|
---|
| 140 | usb_hid_report_description_t *report_des;
|
---|
| 141 | usb_hid_report_type_t type = USB_HID_REPORT_TYPE_INPUT;
|
---|
[3a6e423] | 142 |
|
---|
[175ad13e] | 143 | if(report == NULL) {
|
---|
[55e388a1] | 144 | return EINVAL;
|
---|
| 145 | }
|
---|
[c156c2d] | 146 |
|
---|
[175ad13e] | 147 | if(report->use_report_ids != 0) {
|
---|
[cfbbe1d3] | 148 | *report_id = data[0];
|
---|
| 149 | }
|
---|
| 150 | else {
|
---|
| 151 | *report_id = 0;
|
---|
[c156c2d] | 152 | }
|
---|
| 153 |
|
---|
[cfbbe1d3] | 154 |
|
---|
[8242dd86] | 155 | report_des = usb_hid_report_find_description(report, *report_id,
|
---|
| 156 | type);
|
---|
| 157 |
|
---|
[14e1bcc] | 158 | if(report_des == NULL) {
|
---|
| 159 | return EINVAL;
|
---|
| 160 | }
|
---|
[c156c2d] | 161 |
|
---|
[175ad13e] | 162 | /* read data */
|
---|
| 163 | list_item = report_des->report_items.next;
|
---|
| 164 | while(list_item != &(report_des->report_items)) {
|
---|
[fad14d7] | 165 |
|
---|
[f3b39b4] | 166 | item = list_get_instance(list_item, usb_hid_report_field_t,
|
---|
| 167 | link);
|
---|
[fad14d7] | 168 |
|
---|
[cfbbe1d3] | 169 | if(USB_HID_ITEM_FLAG_CONSTANT(item->item_flags) == 0) {
|
---|
[175ad13e] | 170 |
|
---|
[8242dd86] | 171 | if(USB_HID_ITEM_FLAG_VARIABLE(item->item_flags) == 0){
|
---|
[175ad13e] | 172 |
|
---|
[cfbbe1d3] | 173 | // array
|
---|
[f3b39b4] | 174 | item->value =
|
---|
| 175 | usb_hid_translate_data(item, data);
|
---|
[3a6e423] | 176 |
|
---|
[5499a8b] | 177 | item->usage = USB_HID_EXTENDED_USAGE(
|
---|
[8242dd86] | 178 | item->usages[
|
---|
| 179 | item->value - item->physical_minimum]);
|
---|
[f3b39b4] | 180 |
|
---|
[8242dd86] | 181 | item->usage_page =
|
---|
| 182 | USB_HID_EXTENDED_USAGE_PAGE(
|
---|
| 183 | item->usages[
|
---|
| 184 | item->value - item->physical_minimum]);
|
---|
[3a6e423] | 185 |
|
---|
[8242dd86] | 186 | usb_hid_report_set_last_item (
|
---|
| 187 | item->collection_path,
|
---|
| 188 | USB_HID_TAG_CLASS_GLOBAL,
|
---|
| 189 | item->usage_page);
|
---|
[f3b39b4] | 190 |
|
---|
[8242dd86] | 191 | usb_hid_report_set_last_item (
|
---|
| 192 | item->collection_path,
|
---|
[5499a8b] | 193 | USB_HID_TAG_CLASS_LOCAL, item->usage);
|
---|
[3a6e423] | 194 |
|
---|
[fad14d7] | 195 | }
|
---|
[175ad13e] | 196 | else {
|
---|
[cfbbe1d3] | 197 | // variable item
|
---|
[8242dd86] | 198 | item->value = usb_hid_translate_data(item,
|
---|
| 199 | data);
|
---|
[0c904a3] | 200 | }
|
---|
[fad14d7] | 201 | }
|
---|
| 202 | list_item = list_item->next;
|
---|
| 203 | }
|
---|
[3a6e423] | 204 |
|
---|
[fad14d7] | 205 | return EOK;
|
---|
| 206 |
|
---|
| 207 | }
|
---|
| 208 |
|
---|
[5499a8b] | 209 | /*---------------------------------------------------------------------------*/
|
---|
[57d9c05e] | 210 | /**
|
---|
[c156c2d] | 211 | * Translate data from the report as specified in report descriptor item
|
---|
[57d9c05e] | 212 | *
|
---|
| 213 | * @param item Report descriptor item with definition of translation
|
---|
| 214 | * @param data Data to translate
|
---|
| 215 | * @return Translated data
|
---|
| 216 | */
|
---|
[cfbbe1d3] | 217 | int usb_hid_translate_data(usb_hid_report_field_t *item, const uint8_t *data)
|
---|
[c7a2e7e] | 218 | {
|
---|
[fad14d7] | 219 | int resolution;
|
---|
| 220 | int offset;
|
---|
| 221 | int part_size;
|
---|
| 222 |
|
---|
[175ad13e] | 223 | int32_t value=0;
|
---|
[8242dd86] | 224 | int32_t mask=0;
|
---|
| 225 | const uint8_t *foo=0;
|
---|
[bda06a3] | 226 |
|
---|
[c156c2d] | 227 | // now only shot tags are allowed
|
---|
[fad14d7] | 228 | if(item->size > 32) {
|
---|
| 229 | return 0;
|
---|
| 230 | }
|
---|
| 231 |
|
---|
[cfbbe1d3] | 232 | if((item->physical_minimum == 0) && (item->physical_maximum == 0)){
|
---|
[fad14d7] | 233 | item->physical_minimum = item->logical_minimum;
|
---|
[cfbbe1d3] | 234 | item->physical_maximum = item->logical_maximum;
|
---|
[fad14d7] | 235 | }
|
---|
[cfbbe1d3] | 236 |
|
---|
[fad14d7] | 237 |
|
---|
[60a228f] | 238 | if(item->physical_maximum == item->physical_minimum){
|
---|
| 239 | resolution = 1;
|
---|
| 240 | }
|
---|
| 241 | else {
|
---|
| 242 | resolution = (item->logical_maximum - item->logical_minimum) /
|
---|
| 243 | ((item->physical_maximum - item->physical_minimum) *
|
---|
| 244 | (usb_pow(10,(item->unit_exponent))));
|
---|
| 245 | }
|
---|
[bda06a3] | 246 |
|
---|
[cfbbe1d3] | 247 | offset = item->offset;
|
---|
[fad14d7] | 248 | // FIXME
|
---|
[175ad13e] | 249 | if((size_t)(offset/8) != (size_t)((offset+item->size-1)/8)) {
|
---|
[fad14d7] | 250 |
|
---|
[8242dd86] | 251 | part_size = 0;
|
---|
[fad14d7] | 252 |
|
---|
[175ad13e] | 253 | size_t i=0;
|
---|
| 254 | for(i=(size_t)(offset/8); i<=(size_t)(offset+item->size-1)/8; i++){
|
---|
| 255 | if(i == (size_t)(offset/8)) {
|
---|
| 256 | // the higher one
|
---|
[8242dd86] | 257 | part_size = 8 - (offset % 8);
|
---|
[175ad13e] | 258 | foo = data + i;
|
---|
| 259 | mask = ((1 << (item->size-part_size))-1);
|
---|
[574f276] | 260 | value = (*foo & mask);
|
---|
[175ad13e] | 261 | }
|
---|
| 262 | else if(i == ((offset+item->size-1)/8)){
|
---|
| 263 | // the lower one
|
---|
| 264 | foo = data + i;
|
---|
[574f276] | 265 | mask = ((1 << (item->size - part_size)) - 1)
|
---|
| 266 | << (8 - (item->size - part_size));
|
---|
| 267 |
|
---|
| 268 | value = (((*foo & mask) >> (8 -
|
---|
| 269 | (item->size - part_size))) << part_size )
|
---|
| 270 | + value;
|
---|
[175ad13e] | 271 | }
|
---|
| 272 | else {
|
---|
[574f276] | 273 | value = (*(data + 1) << (part_size + 8)) + value;
|
---|
[8242dd86] | 274 | part_size += 8;
|
---|
[175ad13e] | 275 | }
|
---|
| 276 | }
|
---|
[fad14d7] | 277 | }
|
---|
| 278 | else {
|
---|
| 279 | foo = data+(offset/8);
|
---|
| 280 | mask = ((1 << item->size)-1) << (8-((offset%8)+item->size));
|
---|
| 281 | value = (*foo & mask) >> (8-((offset%8)+item->size));
|
---|
[175ad13e] | 282 | }
|
---|
[fad14d7] | 283 |
|
---|
[1553cbf] | 284 | if((item->logical_minimum < 0) || (item->logical_maximum < 0)){
|
---|
| 285 | value = USB_HID_UINT32_TO_INT32(value, item->size);
|
---|
[fad14d7] | 286 | }
|
---|
| 287 |
|
---|
[f3b39b4] | 288 | return (int)(((value - item->logical_minimum) / resolution) +
|
---|
| 289 | item->physical_minimum);
|
---|
[fad14d7] | 290 |
|
---|
[c7a2e7e] | 291 | }
|
---|
[0bd4810c] | 292 |
|
---|
[5499a8b] | 293 | /*---------------------------------------------------------------------------*/
|
---|
| 294 | /* OUTPUT API */
|
---|
[57d9c05e] | 295 |
|
---|
[a694a58] | 296 | /**
|
---|
| 297 | * Allocates output report buffer for output report
|
---|
[57d9c05e] | 298 | *
|
---|
[a694a58] | 299 | * @param parser Report parsed structure
|
---|
| 300 | * @param size Size of returned buffer
|
---|
| 301 | * @param report_id Report id of created output report
|
---|
| 302 | * @return Returns allocated output buffer for specified output
|
---|
[57d9c05e] | 303 | */
|
---|
[5499a8b] | 304 | uint8_t *usb_hid_report_output(usb_hid_report_t *report, size_t *size,
|
---|
| 305 | uint8_t report_id)
|
---|
[57d9c05e] | 306 | {
|
---|
[175ad13e] | 307 | if(report == NULL) {
|
---|
[57d9c05e] | 308 | *size = 0;
|
---|
| 309 | return NULL;
|
---|
| 310 | }
|
---|
| 311 |
|
---|
[175ad13e] | 312 | link_t *report_it = report->reports.next;
|
---|
| 313 | usb_hid_report_description_t *report_des = NULL;
|
---|
| 314 | while(report_it != &report->reports) {
|
---|
[5499a8b] | 315 | report_des = list_get_instance(report_it,
|
---|
| 316 | usb_hid_report_description_t, link);
|
---|
| 317 |
|
---|
| 318 | if((report_des->report_id == report_id) &&
|
---|
| 319 | (report_des->type == USB_HID_REPORT_TYPE_OUTPUT)){
|
---|
[a694a58] | 320 | break;
|
---|
[c156c2d] | 321 | }
|
---|
| 322 |
|
---|
[175ad13e] | 323 | report_it = report_it->next;
|
---|
| 324 | }
|
---|
[841e6e5] | 325 |
|
---|
[175ad13e] | 326 | if(report_des == NULL){
|
---|
| 327 | *size = 0;
|
---|
| 328 | return NULL;
|
---|
[57d9c05e] | 329 | }
|
---|
| 330 | else {
|
---|
[175ad13e] | 331 | *size = (report_des->bit_length + (8 - 1))/8;
|
---|
| 332 | uint8_t *ret = malloc((*size) * sizeof(uint8_t));
|
---|
| 333 | memset(ret, 0, (*size) * sizeof(uint8_t));
|
---|
| 334 | return ret;
|
---|
[57d9c05e] | 335 | }
|
---|
| 336 | }
|
---|
| 337 |
|
---|
| 338 |
|
---|
| 339 | /** Frees output report buffer
|
---|
| 340 | *
|
---|
| 341 | * @param output Output report buffer
|
---|
[a694a58] | 342 | * @return void
|
---|
[57d9c05e] | 343 | */
|
---|
| 344 | void usb_hid_report_output_free(uint8_t *output)
|
---|
[841e6e5] | 345 |
|
---|
[57d9c05e] | 346 | {
|
---|
| 347 | if(output != NULL) {
|
---|
| 348 | free (output);
|
---|
| 349 | }
|
---|
| 350 | }
|
---|
| 351 |
|
---|
[175ad13e] | 352 | /** Makes the output report buffer for data given in the report structure
|
---|
[57d9c05e] | 353 | *
|
---|
[a694a58] | 354 | * @param parser Opaque report parser structure
|
---|
| 355 | * @param path Usage path specifing which parts of output will be set
|
---|
| 356 | * @param flags Usage path structure comparison flags
|
---|
| 357 | * @param buffer Output buffer
|
---|
| 358 | * @param size Size of output buffer
|
---|
| 359 | * @return Error code
|
---|
[57d9c05e] | 360 | */
|
---|
[5499a8b] | 361 | int usb_hid_report_output_translate(usb_hid_report_t *report,
|
---|
| 362 | uint8_t report_id, uint8_t *buffer, size_t size)
|
---|
[57d9c05e] | 363 | {
|
---|
| 364 | link_t *item;
|
---|
| 365 | int32_t value=0;
|
---|
[841e6e5] | 366 | int offset;
|
---|
| 367 | int length;
|
---|
| 368 | int32_t tmp_value;
|
---|
[57d9c05e] | 369 |
|
---|
[175ad13e] | 370 | if(report == NULL) {
|
---|
[57d9c05e] | 371 | return EINVAL;
|
---|
| 372 | }
|
---|
| 373 |
|
---|
[175ad13e] | 374 | if(report->use_report_ids != 0) {
|
---|
| 375 | buffer[0] = report_id;
|
---|
[bda06a3] | 376 | }
|
---|
| 377 |
|
---|
[175ad13e] | 378 | usb_hid_report_description_t *report_des;
|
---|
[5499a8b] | 379 | report_des = usb_hid_report_find_description (report, report_id,
|
---|
| 380 | USB_HID_REPORT_TYPE_OUTPUT);
|
---|
| 381 |
|
---|
[175ad13e] | 382 | if(report_des == NULL){
|
---|
| 383 | return EINVAL;
|
---|
| 384 | }
|
---|
[57d9c05e] | 385 |
|
---|
[175ad13e] | 386 | usb_hid_report_field_t *report_item;
|
---|
| 387 | item = report_des->report_items.next;
|
---|
| 388 | while(item != &report_des->report_items) {
|
---|
| 389 | report_item = list_get_instance(item, usb_hid_report_field_t, link);
|
---|
[841e6e5] | 390 |
|
---|
[574f276] | 391 | value = usb_hid_translate_data_reverse(report_item,
|
---|
| 392 | report_item->value);
|
---|
[841e6e5] | 393 |
|
---|
[574f276] | 394 | offset = report_des->bit_length - report_item->offset - 1;
|
---|
| 395 | length = report_item->size;
|
---|
| 396 |
|
---|
[9be8669] | 397 | usb_log_debug("\ttranslated value: %x\n", value);
|
---|
[841e6e5] | 398 |
|
---|
[9be8669] | 399 | if((offset/8) == ((offset+length-1)/8)) {
|
---|
| 400 | // je to v jednom bytu
|
---|
[5499a8b] | 401 | if(((size_t)(offset/8) >= size) ||
|
---|
| 402 | ((size_t)(offset+length-1)/8) >= size) {
|
---|
[9be8669] | 403 | break; // TODO ErrorCode
|
---|
[841e6e5] | 404 | }
|
---|
[9be8669] | 405 | size_t shift = 8 - offset%8 - length;
|
---|
| 406 | value = value << shift;
|
---|
| 407 | value = value & (((1 << length)-1) << shift);
|
---|
| 408 |
|
---|
| 409 | uint8_t mask = 0;
|
---|
| 410 | mask = 0xff - (((1 << length) - 1) << shift);
|
---|
| 411 | buffer[offset/8] = (buffer[offset/8] & mask) | value;
|
---|
| 412 | }
|
---|
| 413 | else {
|
---|
| 414 | int i = 0;
|
---|
| 415 | uint8_t mask = 0;
|
---|
| 416 | for(i = (offset/8); i <= ((offset+length-1)/8); i++) {
|
---|
| 417 | if(i == (offset/8)) {
|
---|
| 418 | tmp_value = value;
|
---|
[f3b39b4] | 419 | tmp_value = tmp_value &
|
---|
| 420 | ((1 << (8-(offset%8)))-1);
|
---|
| 421 |
|
---|
[9be8669] | 422 | tmp_value = tmp_value << (offset%8);
|
---|
[175ad13e] | 423 |
|
---|
[f3b39b4] | 424 | mask = ~(((1 << (8-(offset%8)))-1) <<
|
---|
| 425 | (offset%8));
|
---|
| 426 |
|
---|
| 427 | buffer[i] = (buffer[i] & mask) |
|
---|
| 428 | tmp_value;
|
---|
[9be8669] | 429 | }
|
---|
| 430 | else if (i == ((offset + length -1)/8)) {
|
---|
| 431 |
|
---|
[f3b39b4] | 432 | value = value >> (length -
|
---|
| 433 | ((offset + length) % 8));
|
---|
| 434 |
|
---|
| 435 | value = value & ((1 << (length -
|
---|
| 436 | ((offset + length) % 8))) - 1);
|
---|
[d012590] | 437 |
|
---|
[f3b39b4] | 438 | mask = (1 << (length -
|
---|
| 439 | ((offset + length) % 8))) - 1;
|
---|
| 440 |
|
---|
[9be8669] | 441 | buffer[i] = (buffer[i] & mask) | value;
|
---|
| 442 | }
|
---|
| 443 | else {
|
---|
| 444 | buffer[i] = value & (0xFF << i);
|
---|
[175ad13e] | 445 | }
|
---|
[841e6e5] | 446 | }
|
---|
[9be8669] | 447 | }
|
---|
[841e6e5] | 448 |
|
---|
[cfbbe1d3] | 449 | // reset value
|
---|
| 450 | report_item->value = 0;
|
---|
| 451 |
|
---|
[841e6e5] | 452 | item = item->next;
|
---|
[57d9c05e] | 453 | }
|
---|
[cfbbe1d3] | 454 |
|
---|
[57d9c05e] | 455 | return EOK;
|
---|
| 456 | }
|
---|
| 457 |
|
---|
[5499a8b] | 458 | /*---------------------------------------------------------------------------*/
|
---|
[841e6e5] | 459 | /**
|
---|
[a694a58] | 460 | * Translate given data for putting them into the outoput report
|
---|
| 461 | * @param item Report item structure
|
---|
| 462 | * @param value Value to translate
|
---|
| 463 | * @return ranslated value
|
---|
[841e6e5] | 464 | */
|
---|
[5499a8b] | 465 | uint32_t usb_hid_translate_data_reverse(usb_hid_report_field_t *item,
|
---|
| 466 | int value)
|
---|
[841e6e5] | 467 | {
|
---|
| 468 | int ret=0;
|
---|
| 469 | int resolution;
|
---|
| 470 |
|
---|
[70a71e5] | 471 | if(USB_HID_ITEM_FLAG_CONSTANT(item->item_flags)) {
|
---|
| 472 | ret = item->logical_minimum;
|
---|
| 473 | }
|
---|
| 474 |
|
---|
[cfbbe1d3] | 475 | if((item->physical_minimum == 0) && (item->physical_maximum == 0)){
|
---|
| 476 | item->physical_minimum = item->logical_minimum;
|
---|
| 477 | item->physical_maximum = item->logical_maximum;
|
---|
| 478 | }
|
---|
| 479 |
|
---|
[9be8669] | 480 | // variable item
|
---|
| 481 | if(item->physical_maximum == item->physical_minimum){
|
---|
| 482 | resolution = 1;
|
---|
[841e6e5] | 483 | }
|
---|
| 484 | else {
|
---|
[9be8669] | 485 | resolution = (item->logical_maximum - item->logical_minimum) /
|
---|
| 486 | ((item->physical_maximum - item->physical_minimum) *
|
---|
| 487 | (usb_pow(10,(item->unit_exponent))));
|
---|
[841e6e5] | 488 | }
|
---|
| 489 |
|
---|
[5499a8b] | 490 | ret = ((value - item->physical_minimum) * resolution) +
|
---|
| 491 | item->logical_minimum;
|
---|
| 492 |
|
---|
| 493 | usb_log_debug("\tvalue(%x), resolution(%x), phymin(%x) logmin(%x), \
|
---|
| 494 | ret(%x)\n", value, resolution, item->physical_minimum,
|
---|
| 495 | item->logical_minimum, ret);
|
---|
[9be8669] | 496 |
|
---|
[1553cbf] | 497 | if((item->logical_minimum < 0) || (item->logical_maximum < 0)){
|
---|
| 498 | return USB_HID_INT32_TO_UINT32(ret, item->size);
|
---|
| 499 | }
|
---|
[9be8669] | 500 | return (int32_t)0 + ret;
|
---|
[841e6e5] | 501 | }
|
---|
| 502 |
|
---|
[5499a8b] | 503 | /*---------------------------------------------------------------------------*/
|
---|
| 504 | /**
|
---|
| 505 | * Clones given state table
|
---|
| 506 | *
|
---|
| 507 | * @param item State table to clone
|
---|
| 508 | * @return Pointer to the cloned item
|
---|
| 509 | */
|
---|
| 510 | usb_hid_report_item_t *usb_hid_report_item_clone(
|
---|
| 511 | const usb_hid_report_item_t *item)
|
---|
[64dbc83] | 512 | {
|
---|
| 513 | usb_hid_report_item_t *new_report_item;
|
---|
| 514 |
|
---|
| 515 | if(!(new_report_item = malloc(sizeof(usb_hid_report_item_t)))) {
|
---|
| 516 | return NULL;
|
---|
| 517 | }
|
---|
| 518 | memcpy(new_report_item,item, sizeof(usb_hid_report_item_t));
|
---|
| 519 | link_initialize(&(new_report_item->link));
|
---|
| 520 |
|
---|
| 521 | return new_report_item;
|
---|
| 522 | }
|
---|
| 523 |
|
---|
[5499a8b] | 524 | /*---------------------------------------------------------------------------*/
|
---|
| 525 | /**
|
---|
| 526 | * Function for sequence walking through the report. Returns next field in the
|
---|
| 527 | * report or the first one when no field is given.
|
---|
| 528 | *
|
---|
| 529 | * @param report Searched report structure
|
---|
| 530 | * @param field Current field. If NULL is given, the first one in the report
|
---|
| 531 | * is returned. Otherwise the next one i nthe list is returned.
|
---|
| 532 | * @param path Usage path specifying which fields wa are interested in.
|
---|
| 533 | * @param flags Flags defining mode of usage paths comparison
|
---|
| 534 | * @param type Type of report we search.
|
---|
| 535 | * @retval NULL if no field is founded
|
---|
| 536 | * @retval Pointer to the founded report structure when founded
|
---|
| 537 | */
|
---|
[e50cd7f] | 538 | usb_hid_report_field_t *usb_hid_report_get_sibling(usb_hid_report_t *report,
|
---|
[5499a8b] | 539 | usb_hid_report_field_t *field, usb_hid_report_path_t *path, int flags,
|
---|
| 540 | usb_hid_report_type_t type)
|
---|
[e50cd7f] | 541 | {
|
---|
[f3b39b4] | 542 | usb_hid_report_description_t *report_des =
|
---|
| 543 | usb_hid_report_find_description(report, path->report_id, type);
|
---|
[5499a8b] | 544 |
|
---|
[e50cd7f] | 545 | link_t *field_it;
|
---|
| 546 |
|
---|
| 547 | if(report_des == NULL){
|
---|
| 548 | return NULL;
|
---|
| 549 | }
|
---|
| 550 |
|
---|
| 551 | if(field == NULL){
|
---|
| 552 | field_it = report_des->report_items.next;
|
---|
| 553 | }
|
---|
| 554 | else {
|
---|
| 555 | field_it = field->link.next;
|
---|
| 556 | }
|
---|
| 557 |
|
---|
| 558 | while(field_it != &report_des->report_items) {
|
---|
[f3b39b4] | 559 | field = list_get_instance(field_it, usb_hid_report_field_t,
|
---|
| 560 | link);
|
---|
[c7c0984a] | 561 |
|
---|
| 562 | if(USB_HID_ITEM_FLAG_CONSTANT(field->item_flags) == 0) {
|
---|
[f3b39b4] | 563 | usb_hid_report_path_append_item (
|
---|
| 564 | field->collection_path, field->usage_page,
|
---|
| 565 | field->usage);
|
---|
| 566 |
|
---|
| 567 | if(usb_hid_report_compare_usage_path(
|
---|
| 568 | field->collection_path, path, flags) == EOK){
|
---|
[5499a8b] | 569 |
|
---|
[f3b39b4] | 570 | usb_hid_report_remove_last_item(
|
---|
| 571 | field->collection_path);
|
---|
[5499a8b] | 572 |
|
---|
[c7c0984a] | 573 | return field;
|
---|
| 574 | }
|
---|
[f3b39b4] | 575 | usb_hid_report_remove_last_item (
|
---|
| 576 | field->collection_path);
|
---|
[e50cd7f] | 577 | }
|
---|
| 578 | field_it = field_it->next;
|
---|
| 579 | }
|
---|
| 580 |
|
---|
| 581 | return NULL;
|
---|
| 582 | }
|
---|
[cfbbe1d3] | 583 |
|
---|
[5499a8b] | 584 | /*---------------------------------------------------------------------------*/
|
---|
| 585 | /**
|
---|
[1d10ca1] | 586 | * Returns next report_id of report of specified type. If zero is given than
|
---|
| 587 | * first report_id of specified type is returned (0 is not legal value for
|
---|
| 588 | * repotr_id)
|
---|
[5499a8b] | 589 | *
|
---|
[1d10ca1] | 590 | * @param report_id Current report_id, 0 if there is no current report_id
|
---|
[5499a8b] | 591 | * @param type Type of searched report
|
---|
| 592 | * @param report Report structure inwhich we search
|
---|
| 593 | * @retval 0 if report structure is null or there is no specified report
|
---|
| 594 | * @retval report_id otherwise
|
---|
| 595 | */
|
---|
[5f9b81af] | 596 | uint8_t usb_hid_get_next_report_id(usb_hid_report_t *report,
|
---|
[5499a8b] | 597 | uint8_t report_id, usb_hid_report_type_t type)
|
---|
[cfbbe1d3] | 598 | {
|
---|
| 599 | if(report == NULL){
|
---|
| 600 | return 0;
|
---|
| 601 | }
|
---|
| 602 |
|
---|
| 603 | usb_hid_report_description_t *report_des;
|
---|
| 604 | link_t *report_it;
|
---|
| 605 |
|
---|
[1d10ca1] | 606 | if(report_id > 0) {
|
---|
[0dd3e49] | 607 | report_des = usb_hid_report_find_description(report, report_id,
|
---|
| 608 | type);
|
---|
| 609 | if(report_des == NULL) {
|
---|
| 610 | return 0;
|
---|
| 611 | }
|
---|
| 612 | else {
|
---|
| 613 | report_it = report_des->link.next;
|
---|
| 614 | }
|
---|
[cfbbe1d3] | 615 | }
|
---|
| 616 | else {
|
---|
| 617 | report_it = report->reports.next;
|
---|
| 618 | }
|
---|
| 619 |
|
---|
| 620 | while(report_it != &report->reports) {
|
---|
[1d10ca1] | 621 | report_des = list_get_instance(report_it,
|
---|
| 622 | usb_hid_report_description_t, link);
|
---|
[5499a8b] | 623 |
|
---|
[cfbbe1d3] | 624 | if(report_des->type == type){
|
---|
| 625 | return report_des->report_id;
|
---|
| 626 | }
|
---|
[0c904a3] | 627 |
|
---|
| 628 | report_it = report_it->next;
|
---|
[cfbbe1d3] | 629 | }
|
---|
| 630 |
|
---|
| 631 | return 0;
|
---|
| 632 | }
|
---|
| 633 |
|
---|
[5499a8b] | 634 | /*---------------------------------------------------------------------------*/
|
---|
| 635 | /**
|
---|
| 636 | * Reset all local items in given state table
|
---|
| 637 | *
|
---|
| 638 | * @param report_item State table containing current state of report
|
---|
| 639 | * descriptor parsing
|
---|
| 640 | *
|
---|
| 641 | * @return void
|
---|
| 642 | */
|
---|
[2020927] | 643 | void usb_hid_report_reset_local_items(usb_hid_report_item_t *report_item)
|
---|
| 644 | {
|
---|
| 645 | if(report_item == NULL) {
|
---|
| 646 | return;
|
---|
| 647 | }
|
---|
| 648 |
|
---|
| 649 | report_item->usages_count = 0;
|
---|
| 650 | memset(report_item->usages, 0, USB_HID_MAX_USAGES);
|
---|
| 651 |
|
---|
| 652 | report_item->extended_usage_page = 0;
|
---|
| 653 | report_item->usage_minimum = 0;
|
---|
| 654 | report_item->usage_maximum = 0;
|
---|
| 655 | report_item->designator_index = 0;
|
---|
| 656 | report_item->designator_minimum = 0;
|
---|
| 657 | report_item->designator_maximum = 0;
|
---|
| 658 | report_item->string_index = 0;
|
---|
| 659 | report_item->string_minimum = 0;
|
---|
| 660 | report_item->string_maximum = 0;
|
---|
[cfbbe1d3] | 661 |
|
---|
[2020927] | 662 | return;
|
---|
| 663 | }
|
---|
[976f546] | 664 | /**
|
---|
| 665 | * @}
|
---|
[c7a2e7e] | 666 | */
|
---|