|
|
@ -51,12 +51,13 @@ struct vtest_context { |
|
|
|
struct list_head head; |
|
|
|
struct list_head head; |
|
|
|
|
|
|
|
|
|
|
|
int ctx_id; |
|
|
|
int ctx_id; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned protocol_version; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
struct vtest_renderer { |
|
|
|
struct vtest_renderer { |
|
|
|
struct vtest_input *input; |
|
|
|
struct vtest_input *input; |
|
|
|
int out_fd; |
|
|
|
int out_fd; |
|
|
|
unsigned protocol_version; |
|
|
|
|
|
|
|
struct util_hash_table *iovec_hash; |
|
|
|
struct util_hash_table *iovec_hash; |
|
|
|
const char *rendernode_name; |
|
|
|
const char *rendernode_name; |
|
|
|
|
|
|
|
|
|
|
@ -247,9 +248,6 @@ int vtest_init_renderer(struct vtest_input *input, int out_fd, |
|
|
|
list_inithead(&renderer.active_contexts); |
|
|
|
list_inithead(&renderer.active_contexts); |
|
|
|
list_inithead(&renderer.free_contexts); |
|
|
|
list_inithead(&renderer.free_contexts); |
|
|
|
|
|
|
|
|
|
|
|
/* By default we support version 0 unless VCMD_PROTOCOL_VERSION is sent */ |
|
|
|
|
|
|
|
renderer.protocol_version = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ret = virgl_renderer_init(&renderer, |
|
|
|
ret = virgl_renderer_init(&renderer, |
|
|
|
ctx_flags | VIRGL_RENDERER_THREAD_SYNC, &renderer_cbs); |
|
|
|
ctx_flags | VIRGL_RENDERER_THREAD_SYNC, &renderer_cbs); |
|
|
|
if (ret) { |
|
|
|
if (ret) { |
|
|
@ -304,6 +302,9 @@ static struct vtest_context *vtest_new_context(void) |
|
|
|
list_del(&ctx->head); |
|
|
|
list_del(&ctx->head); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* By default we support version 0 unless VCMD_PROTOCOL_VERSION is sent */ |
|
|
|
|
|
|
|
ctx->protocol_version = 0; |
|
|
|
|
|
|
|
|
|
|
|
return ctx; |
|
|
|
return ctx; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -396,15 +397,17 @@ int vtest_ping_protocol_version(UNUSED uint32_t length_dw) |
|
|
|
|
|
|
|
|
|
|
|
int vtest_protocol_version(UNUSED uint32_t length_dw) |
|
|
|
int vtest_protocol_version(UNUSED uint32_t length_dw) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
struct vtest_context *ctx = vtest_get_current_context(); |
|
|
|
uint32_t hdr_buf[VTEST_HDR_SIZE]; |
|
|
|
uint32_t hdr_buf[VTEST_HDR_SIZE]; |
|
|
|
uint32_t version_buf[VCMD_PROTOCOL_VERSION_SIZE]; |
|
|
|
uint32_t version_buf[VCMD_PROTOCOL_VERSION_SIZE]; |
|
|
|
|
|
|
|
unsigned version; |
|
|
|
int ret; |
|
|
|
int ret; |
|
|
|
|
|
|
|
|
|
|
|
ret = renderer.input->read(renderer.input, &version_buf, sizeof(version_buf)); |
|
|
|
ret = renderer.input->read(renderer.input, &version_buf, sizeof(version_buf)); |
|
|
|
if (ret != sizeof(version_buf)) |
|
|
|
if (ret != sizeof(version_buf)) |
|
|
|
return -1; |
|
|
|
return -1; |
|
|
|
|
|
|
|
|
|
|
|
renderer.protocol_version = MIN2(version_buf[VCMD_PROTOCOL_VERSION_VERSION], |
|
|
|
version = MIN2(version_buf[VCMD_PROTOCOL_VERSION_VERSION], |
|
|
|
VTEST_PROTOCOL_VERSION); |
|
|
|
VTEST_PROTOCOL_VERSION); |
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
@ -412,21 +415,23 @@ int vtest_protocol_version(UNUSED uint32_t length_dw) |
|
|
|
* moved protocol version 2. If the server supports version 2 and the guest |
|
|
|
* moved protocol version 2. If the server supports version 2 and the guest |
|
|
|
* supports verison 1, fall back to version 0. |
|
|
|
* supports verison 1, fall back to version 0. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
if (renderer.protocol_version == 1) { |
|
|
|
if (version == 1) { |
|
|
|
printf("Older guest Mesa detected, fallbacking to protocol version 0\n"); |
|
|
|
printf("Older guest Mesa detected, fallbacking to protocol version 0\n"); |
|
|
|
renderer.protocol_version = 0; |
|
|
|
version = 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Protocol version 2 requires shm support. */ |
|
|
|
/* Protocol version 2 requires shm support. */ |
|
|
|
if (!vtest_shm_check()) { |
|
|
|
if (!vtest_shm_check()) { |
|
|
|
printf("Shared memory not supported, fallbacking to protocol version 0\n"); |
|
|
|
printf("Shared memory not supported, fallbacking to protocol version 0\n"); |
|
|
|
renderer.protocol_version = 0; |
|
|
|
version = 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ctx->protocol_version = version; |
|
|
|
|
|
|
|
|
|
|
|
hdr_buf[VTEST_CMD_LEN] = VCMD_PROTOCOL_VERSION_SIZE; |
|
|
|
hdr_buf[VTEST_CMD_LEN] = VCMD_PROTOCOL_VERSION_SIZE; |
|
|
|
hdr_buf[VTEST_CMD_ID] = VCMD_PROTOCOL_VERSION; |
|
|
|
hdr_buf[VTEST_CMD_ID] = VCMD_PROTOCOL_VERSION; |
|
|
|
|
|
|
|
|
|
|
|
version_buf[VCMD_PROTOCOL_VERSION_VERSION] = renderer.protocol_version; |
|
|
|
version_buf[VCMD_PROTOCOL_VERSION_VERSION] = ctx->protocol_version; |
|
|
|
|
|
|
|
|
|
|
|
ret = vtest_block_write(renderer.out_fd, hdr_buf, sizeof(hdr_buf)); |
|
|
|
ret = vtest_block_write(renderer.out_fd, hdr_buf, sizeof(hdr_buf)); |
|
|
|
if (ret < 0) { |
|
|
|
if (ret < 0) { |
|
|
|