Home | History | Annotate | Line # | Download | only in hvm
      1  1.1  cherry /*
      2  1.1  cherry  * pvdrivers.h: Register of PV drivers product numbers.
      3  1.1  cherry  * Copyright (c) 2012, Citrix Systems Inc.
      4  1.1  cherry  *
      5  1.1  cherry  * Permission is hereby granted, free of charge, to any person obtaining a copy
      6  1.1  cherry  * of this software and associated documentation files (the "Software"), to
      7  1.1  cherry  * deal in the Software without restriction, including without limitation the
      8  1.1  cherry  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
      9  1.1  cherry  * sell copies of the Software, and to permit persons to whom the Software is
     10  1.1  cherry  * furnished to do so, subject to the following conditions:
     11  1.1  cherry  *
     12  1.1  cherry  * The above copyright notice and this permission notice shall be included in
     13  1.1  cherry  * all copies or substantial portions of the Software.
     14  1.1  cherry  *
     15  1.1  cherry  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     16  1.1  cherry  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     17  1.1  cherry  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     18  1.1  cherry  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     19  1.1  cherry  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     20  1.1  cherry  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     21  1.1  cherry  * DEALINGS IN THE SOFTWARE.
     22  1.1  cherry  */
     23  1.1  cherry 
     24  1.1  cherry #ifndef _XEN_PUBLIC_PVDRIVERS_H_
     25  1.1  cherry #define _XEN_PUBLIC_PVDRIVERS_H_
     26  1.1  cherry 
     27  1.1  cherry /*
     28  1.1  cherry  * This is the master registry of product numbers for
     29  1.1  cherry  * PV drivers.
     30  1.1  cherry  * If you need a new product number allocating, please
     31  1.1  cherry  * post to xen-devel (at) lists.xenproject.org.  You should NOT use
     32  1.1  cherry  * a product number without allocating one.
     33  1.1  cherry  * If you maintain a separate versioning and distribution path
     34  1.1  cherry  * for PV drivers you should have a separate product number so
     35  1.1  cherry  * that your drivers can be separated from others.
     36  1.1  cherry  *
     37  1.1  cherry  * During development, you may use the product ID to
     38  1.1  cherry  * indicate a driver which is yet to be released.
     39  1.1  cherry  */
     40  1.1  cherry 
     41  1.1  cherry #define PVDRIVERS_PRODUCT_LIST(EACH)                               \
     42  1.1  cherry         EACH("xensource-windows",       0x0001) /* Citrix */       \
     43  1.1  cherry         EACH("gplpv-windows",           0x0002) /* James Harper */ \
     44  1.1  cherry         EACH("linux",                   0x0003)                    \
     45  1.1  cherry         EACH("xenserver-windows-v7.0+", 0x0004) /* Citrix */       \
     46  1.1  cherry         EACH("xenserver-windows-v7.2+", 0x0005) /* Citrix */       \
     47  1.1  cherry         EACH("experimental",            0xffff)
     48  1.1  cherry 
     49  1.1  cherry #endif /* _XEN_PUBLIC_PVDRIVERS_H_ */
     50