/*1* pvdrivers.h: Register of PV drivers product numbers.2* Copyright (c) 2012, Citrix Systems Inc.3*4* Permission is hereby granted, free of charge, to any person obtaining a copy5* of this software and associated documentation files (the "Software"), to6* deal in the Software without restriction, including without limitation the7* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or8* sell copies of the Software, and to permit persons to whom the Software is9* furnished to do so, subject to the following conditions:10*11* The above copyright notice and this permission notice shall be included in12* all copies or substantial portions of the Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE17* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER18* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING19* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER20* DEALINGS IN THE SOFTWARE.21*/2223#ifndef _XEN_PUBLIC_PVDRIVERS_H_24#define _XEN_PUBLIC_PVDRIVERS_H_2526/*27* This is the master registry of product numbers for28* PV drivers.29* If you need a new product number allocating, please30* post to [email protected]. You should NOT use31* a product number without allocating one.32* If you maintain a separate versioning and distribution path33* for PV drivers you should have a separate product number so34* that your drivers can be separated from others.35*36* During development, you may use the product ID to37* indicate a driver which is yet to be released.38*/3940#define PVDRIVERS_PRODUCT_LIST(EACH) \41EACH("xensource-windows", 0x0001) /* Citrix */ \42EACH("gplpv-windows", 0x0002) /* James Harper */ \43EACH("linux", 0x0003) \44EACH("xenserver-windows-v7.0+", 0x0004) /* Citrix */ \45EACH("xenserver-windows-v7.2+", 0x0005) /* Citrix */ \46EACH("experimental", 0xffff)4748#endif /* _XEN_PUBLIC_PVDRIVERS_H_ */495051