freebsd-dev/sys/dev/vmware/vmci/vmci_driver.h
Mark Peek 3eeb751122 Update VMCI license based on comments from core, the FreeBSD Foundation,
and VMware legal:
- Add a dual BSD-2 Clause/GPLv2 LICENSE file in the VMCI directory
- Remove the use of "All Rights Reserved"
- Per best practice, remove copyright/license info from Makefile

Reviewed by: imp, emaste, jhb, Vishnu Dasa <vdasa@vmware.com>
Approved by: VMware legal via Mark Peek <markpeek@vmware.com>
Differential Revision:  https://reviews.freebsd.org/D14979
2018-04-08 01:32:56 +00:00

46 lines
1.1 KiB
C

/*-
* Copyright (c) 2018 VMware, Inc.
*
* SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
*
* $FreeBSD$
*/
/* VMCI driver interface. */
#ifndef _VMCI_DRIVER_H_
#define _VMCI_DRIVER_H_
#include <sys/types.h>
#include <sys/syslog.h>
#include <sys/systm.h>
#include "vmci_call_defs.h"
#include "vmci_kernel_if.h"
#ifndef VMCI_DEBUG_LOGGING
#define VMCI_LOG_DEBUG(_args, ...)
#else /* VMCI_DEBUG_LOGGING */
#define VMCI_LOG_DEBUG(_args, ...) \
log(LOG_DEBUG, _args, ##__VA_ARGS__)
#endif /* !VMCI_DEBUG_LOGGING */
#define VMCI_LOG_INFO(_args, ...) \
log(LOG_INFO, _args, ##__VA_ARGS__)
#define VMCI_LOG_WARNING(_args, ...) \
log(LOG_WARNING, _args, ##__VA_ARGS__)
#define VMCI_LOG_ERROR(_args, ...) \
log(LOG_ERR, _args, ##__VA_ARGS__)
int vmci_components_init(void);
void vmci_components_cleanup(void);
int vmci_send_datagram(struct vmci_datagram *dg);
void vmci_util_init(void);
void vmci_util_exit(void);
bool vmci_check_host_capabilities(void);
void vmci_read_datagrams_from_port(vmci_io_handle io_handle,
vmci_io_port dg_in_port, uint8_t *dg_in_buffer,
size_t dg_in_buffer_size);
#endif /* !_VMCI_DRIVER_H_ */