The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/usb/hid.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: hid.h,v 1.8 2002/07/11 21:14:25 augustss Exp $ */
    2 /*      $FreeBSD: src/sys/dev/usb/hid.h,v 1.7 1999/11/17 22:33:40 n_hibma Exp $ */
    3 
    4 /*
    5  * Copyright (c) 1998 The NetBSD Foundation, Inc.
    6  * All rights reserved.
    7  *
    8  * This code is derived from software contributed to The NetBSD Foundation
    9  * by Lennart Augustsson (lennart@augustsson.net) at
   10  * Carlstedt Research & Technology.
   11  *
   12  * Redistribution and use in source and binary forms, with or without
   13  * modification, are permitted provided that the following conditions
   14  * are met:
   15  * 1. Redistributions of source code must retain the above copyright
   16  *    notice, this list of conditions and the following disclaimer.
   17  * 2. Redistributions in binary form must reproduce the above copyright
   18  *    notice, this list of conditions and the following disclaimer in the
   19  *    documentation and/or other materials provided with the distribution.
   20  * 3. All advertising materials mentioning features or use of this software
   21  *    must display the following acknowledgement:
   22  *        This product includes software developed by the NetBSD
   23  *        Foundation, Inc. and its contributors.
   24  * 4. Neither the name of The NetBSD Foundation nor the names of its
   25  *    contributors may be used to endorse or promote products derived
   26  *    from this software without specific prior written permission.
   27  *
   28  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
   29  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
   30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
   31  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
   32  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
   33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
   34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
   35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
   36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   38  * POSSIBILITY OF SUCH DAMAGE.
   39  */
   40 
   41 enum hid_kind {
   42         hid_input,
   43         hid_output,
   44         hid_feature,
   45         hid_collection,
   46         hid_endcollection,
   47         hid_none
   48 };
   49 
   50 struct hid_location {
   51         u_int32_t size;
   52         u_int32_t count;
   53         u_int32_t pos;
   54 };
   55 
   56 struct hid_item {
   57         /* Global */
   58         int32_t _usage_page;
   59         int32_t logical_minimum;
   60         int32_t logical_maximum;
   61         int32_t physical_minimum;
   62         int32_t physical_maximum;
   63         int32_t unit_exponent;
   64         int32_t unit;
   65         int32_t report_ID;
   66         /* Local */
   67         int32_t usage;
   68         int32_t usage_minimum;
   69         int32_t usage_maximum;
   70         int32_t designator_index;
   71         int32_t designator_minimum;
   72         int32_t designator_maximum;
   73         int32_t string_index;
   74         int32_t string_minimum;
   75         int32_t string_maximum;
   76         int32_t set_delimiter;
   77         /* Misc */
   78         int32_t collection;
   79         int collevel;
   80         enum hid_kind kind;
   81         u_int32_t flags;
   82         /* Location */
   83         struct hid_location loc;
   84         /* */
   85         struct hid_item *next;
   86 };
   87 
   88 struct hid_data *hid_start_parse(void *d, int len, enum hid_kind kind);
   89 void hid_end_parse(struct hid_data *s);
   90 int hid_get_item(struct hid_data *s, struct hid_item *h);
   91 int hid_report_size(void *buf, int len, enum hid_kind k, u_int8_t id);
   92 int hid_locate(void *desc, int size, u_int32_t usage, u_int8_t id,
   93                enum hid_kind kind, struct hid_location *loc, u_int32_t *flags);
   94 u_long hid_get_data(u_char *buf, struct hid_location *loc);
   95 int hid_is_collection(void *desc, int size, u_int8_t id, u_int32_t usage);

Cache object: ebd5af1f00a743e251d8860d2ca65c38


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.