blob: 7df62ab4d167dd3435206efec87cf47f12749213 [file] [log] [blame]
Stephen Hemminger6fbef232018-10-15 12:52:30 -07001/*
2 * Copyright (c) 2018, Microsoft Corporation.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * vmbus.h: VMBus definitions.
17 */
18
19#ifndef included_vlib_vmbus_h
20#define included_vlib_vmbus_h
21
22#include <vlib/vlib.h>
23
Vladimir Ratnikov98227292020-11-11 08:00:48 -050024typedef union
Stephen Hemminger6fbef232018-10-15 12:52:30 -070025{
26 u8 guid[16];
Vladimir Ratnikov98227292020-11-11 08:00:48 -050027 u32 as_u32[4];
Stephen Hemminger6fbef232018-10-15 12:52:30 -070028} vlib_vmbus_addr_t;
Vladimir Ratnikov98227292020-11-11 08:00:48 -050029
Stephen Hemminger6fbef232018-10-15 12:52:30 -070030typedef u32 vlib_vmbus_dev_handle_t;
31
32vlib_vmbus_addr_t *vlib_vmbus_get_all_dev_addrs ();
33vlib_vmbus_addr_t *vlib_vmbus_get_addr (vlib_vmbus_dev_handle_t h);
34uword vlib_vmbus_get_private_data (vlib_vmbus_dev_handle_t h);
35void vlib_vmbus_set_private_data (vlib_vmbus_dev_handle_t h,
36 uword private_data);
37
Vladimir Ratnikov98227292020-11-11 08:00:48 -050038format_function_t format_vlib_vmbus_addr;
39unformat_function_t unformat_vlib_vmbus_addr;
Stephen Hemminger6fbef232018-10-15 12:52:30 -070040clib_error_t *vlib_vmbus_bind_to_uio (vlib_vmbus_addr_t * addr);
41#endif /* included_vlib_vmbus_h */
42
43/*
44 * fd.io coding-style-patch-verification: ON
45 *
46 * Local Variables:
47 * eval: (c-set-style "gnu")
48 * End:
49 */