MAINTAINERS: Make section QOM cover hw/core/*bus.c as well
[qemu/armbru.git] / include / hw / xen / interface / io / xenbus.h
blob2fbf2a7fdc50b3eef422ab6e8adba95dcb9eb75a
1 /*****************************************************************************
2 * xenbus.h
4 * Xenbus protocol details.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
24 * Copyright (C) 2005 XenSource Ltd.
27 #ifndef _XEN_PUBLIC_IO_XENBUS_H
28 #define _XEN_PUBLIC_IO_XENBUS_H
31 * The state of either end of the Xenbus, i.e. the current communication
32 * status of initialisation across the bus. States here imply nothing about
33 * the state of the connection between the driver and the kernel's device
34 * layers.
36 enum xenbus_state {
37 XenbusStateUnknown = 0,
39 XenbusStateInitialising = 1,
42 * InitWait: Finished early initialisation but waiting for information
43 * from the peer or hotplug scripts.
45 XenbusStateInitWait = 2,
48 * Initialised: Waiting for a connection from the peer.
50 XenbusStateInitialised = 3,
52 XenbusStateConnected = 4,
55 * Closing: The device is being closed due to an error or an unplug event.
57 XenbusStateClosing = 5,
59 XenbusStateClosed = 6,
62 * Reconfiguring: The device is being reconfigured.
64 XenbusStateReconfiguring = 7,
66 XenbusStateReconfigured = 8
68 typedef enum xenbus_state XenbusState;
70 #endif /* _XEN_PUBLIC_IO_XENBUS_H */