2017-12-19 15:49:03 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
2014-11-25 16:18:07 +00:00
|
|
|
*/
|
|
|
|
#ifndef _GUEST_CHANNEL_H
|
|
|
|
#define _GUEST_CHANNEL_H
|
|
|
|
|
2020-06-19 10:53:54 +00:00
|
|
|
/**
|
|
|
|
* Check if any Virtio-Serial VM end-points exist in path.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The path to the serial device on the filesystem
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - 1 if at least one potential end-point found.
|
|
|
|
* - 0 if no end-points found.
|
|
|
|
*/
|
|
|
|
int guest_channel_host_check_exists(const char *path);
|
|
|
|
|
2014-11-25 16:18:07 +00:00
|
|
|
/**
|
|
|
|
* Connect to the Virtio-Serial VM end-point located in path. It is
|
|
|
|
* thread safe for unique lcore_ids. This function must be only called once from
|
|
|
|
* each lcore.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The path to the serial device on the filesystem
|
2019-09-27 12:15:58 +00:00
|
|
|
*
|
2014-11-25 16:18:07 +00:00
|
|
|
* @param lcore_id
|
|
|
|
* lcore_id.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - 0 on success.
|
|
|
|
* - Negative on error.
|
|
|
|
*/
|
2017-12-12 14:03:24 +00:00
|
|
|
int guest_channel_host_connect(const char *path, unsigned int lcore_id);
|
2014-11-25 16:18:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect from an already connected Virtio-Serial Endpoint.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param lcore_id
|
|
|
|
* lcore_id.
|
|
|
|
*
|
|
|
|
*/
|
2017-12-12 14:03:24 +00:00
|
|
|
void guest_channel_host_disconnect(unsigned int lcore_id);
|
2014-11-25 16:18:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a message contained in pkt over the Virtio-Serial to the host endpoint.
|
|
|
|
*
|
|
|
|
* @param pkt
|
|
|
|
* Pointer to a populated struct guest_agent_pkt
|
|
|
|
*
|
|
|
|
* @param lcore_id
|
|
|
|
* lcore_id.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - 0 on success.
|
|
|
|
* - Negative on channel not connected.
|
|
|
|
* - errno on write to channel error.
|
|
|
|
*/
|
2021-01-21 17:21:58 +00:00
|
|
|
int guest_channel_send_msg(struct rte_power_channel_packet *pkt,
|
|
|
|
unsigned int lcore_id);
|
2014-11-25 16:18:07 +00:00
|
|
|
|
2019-09-27 08:42:14 +00:00
|
|
|
/**
|
|
|
|
* Read a message contained in pkt over the Virtio-Serial
|
|
|
|
* from the host endpoint.
|
|
|
|
*
|
|
|
|
* @param pkt
|
2021-01-21 17:21:58 +00:00
|
|
|
* Pointer to rte_power_channel_packet or
|
|
|
|
* rte_power_channel_packet_freq_list struct.
|
2019-09-27 12:15:58 +00:00
|
|
|
*
|
|
|
|
* @param pkt_len
|
|
|
|
* Size of expected data packet.
|
2019-09-27 08:42:14 +00:00
|
|
|
*
|
|
|
|
* @param lcore_id
|
|
|
|
* lcore_id.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - 0 on success.
|
|
|
|
* - Negative on error.
|
|
|
|
*/
|
2019-09-27 12:15:58 +00:00
|
|
|
int power_guest_channel_read_msg(void *pkt,
|
|
|
|
size_t pkt_len,
|
2019-09-27 08:42:14 +00:00
|
|
|
unsigned int lcore_id);
|
|
|
|
|
2014-11-25 16:18:07 +00:00
|
|
|
#endif
|