asahi: Split off macOS support into its own file

All the ifdef __APPLE__ is getting really silly. Let's split off the
macOS UAPI abstraction into its own file, so we can have parallel
implementations.

Signed-off-by: Asahi Lina <lina@asahilina.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21058>
This commit is contained in:
Asahi Lina 2023-01-11 20:48:29 +09:00 committed by Marge Bot
parent 2e51ccac82
commit ed6edc07e4
9 changed files with 430 additions and 291 deletions

View file

@ -34,82 +34,12 @@ uint64_t AGX_FAKE_HI = (1ull << 32);
void
agx_bo_free(struct agx_device *dev, struct agx_bo *bo)
{
#if __APPLE__
const uint64_t handle = bo->handle;
kern_return_t ret = IOConnectCallScalarMethod(dev->fd, AGX_SELECTOR_FREE_MEM,
&handle, 1, NULL, NULL);
if (ret)
fprintf(stderr, "error freeing BO mem: %u\n", ret);
#else
free(bo->ptr.cpu);
#endif
/* Reset the handle */
memset(bo, 0, sizeof(*bo));
}
void
agx_shmem_free(struct agx_device *dev, unsigned handle)
{
#if __APPLE__
const uint64_t input = handle;
kern_return_t ret = IOConnectCallScalarMethod(
dev->fd, AGX_SELECTOR_FREE_SHMEM, &input, 1, NULL, NULL);
if (ret)
fprintf(stderr, "error freeing shmem: %u\n", ret);
#else
#endif
}
struct agx_bo
agx_shmem_alloc(struct agx_device *dev, size_t size, bool cmdbuf)
{
struct agx_bo bo;
#if __APPLE__
struct agx_create_shmem_resp out = {};
size_t out_sz = sizeof(out);
uint64_t inputs[2] = {
size,
cmdbuf ? 1 : 0 // 2 - error reporting, 1 - no error reporting
};
kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_CREATE_SHMEM, inputs, 2, NULL,
0, NULL, NULL, &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
assert(out.size == size);
assert(out.map != 0);
bo = (struct agx_bo){
.type = cmdbuf ? AGX_ALLOC_CMDBUF : AGX_ALLOC_MEMMAP,
.handle = out.id,
.ptr.cpu = out.map,
.size = out.size,
.guid = 0, /* TODO? */
};
#else
bo = (struct agx_bo){
.type = cmdbuf ? AGX_ALLOC_CMDBUF : AGX_ALLOC_MEMMAP,
.handle = AGX_FAKE_HANDLE++,
.ptr.cpu = calloc(1, size),
.size = size,
.guid = 0, /* TODO? */
};
#endif
if (dev->debug & AGX_DBG_TRACE)
agxdecode_track_alloc(&bo);
return bo;
}
struct agx_bo *
agx_bo_alloc(struct agx_device *dev, size_t size, enum agx_bo_flags flags)
{
@ -119,31 +49,8 @@ agx_bo_alloc(struct agx_device *dev, size_t size, enum agx_bo_flags flags)
/* executable implies low va */
assert(!(flags & AGX_BO_EXEC) || (flags & AGX_BO_LOW_VA));
#if __APPLE__
uint32_t mode = 0x430; // shared, ?
uint32_t args_in[24] = {0};
args_in[4] = 0x4000101; // 0x1000101; // unk
args_in[5] = mode;
args_in[16] = size;
args_in[20] = flags & AGX_BO_EXEC ? AGX_MEMORY_TYPE_SHADER
: flags & AGX_BO_LOW_VA ? AGX_MEMORY_TYPE_CMDBUF_32
: AGX_MEMORY_TYPE_FRAMEBUFFER;
uint64_t out[10] = {0};
size_t out_sz = sizeof(out);
kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_ALLOCATE_MEM, NULL, 0, args_in,
sizeof(args_in), NULL, 0, out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
handle = (out[3] >> 32ull);
#else
/* Faked software path until we have a DRM driver */
handle = (++AGX_FAKE_HANDLE);
#endif
pthread_mutex_lock(&dev->bo_map_lock);
bo = agx_lookup_bo(dev, handle);
@ -160,11 +67,6 @@ agx_bo_alloc(struct agx_device *dev, size_t size, enum agx_bo_flags flags)
ASSERTED bool lo = (flags & AGX_BO_LOW_VA);
#if __APPLE__
bo->ptr.gpu = out[0];
bo->ptr.cpu = (void *)out[1];
bo->guid = out[5];
#else
if (lo) {
bo->ptr.gpu = AGX_FAKE_LO;
AGX_FAKE_LO += bo->size;
@ -175,7 +77,6 @@ agx_bo_alloc(struct agx_device *dev, size_t size, enum agx_bo_flags flags)
bo->ptr.gpu = (((uint64_t)bo->handle) << (lo ? 16 : 24));
bo->ptr.cpu = calloc(1, bo->size);
#endif
assert(bo->ptr.gpu < (1ull << (lo ? 32 : 40)));
@ -196,27 +97,11 @@ agx_bo_export(struct agx_bo *bo)
unreachable("Linux UAPI not yet upstream");
}
static void
agx_get_global_ids(struct agx_device *dev)
{
#if __APPLE__
uint64_t out[2] = {};
size_t out_sz = sizeof(out);
ASSERTED kern_return_t ret = IOConnectCallStructMethod(
dev->fd, AGX_SELECTOR_GET_GLOBAL_IDS, NULL, 0, &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
assert(out[1] > out[0]);
dev->next_global_id = out[0];
dev->last_global_id = out[1];
#else
dev->next_global_id = 0;
dev->last_global_id = 0x1000000;
#endif
}
uint64_t
@ -234,34 +119,6 @@ agx_get_global_id(struct agx_device *dev)
bool
agx_open_device(void *memctx, struct agx_device *dev)
{
#if __APPLE__
kern_return_t ret;
/* TODO: Support other models */
CFDictionaryRef matching = IOServiceNameMatching("AGXAcceleratorG13G_B0");
io_service_t service = IOServiceGetMatchingService(0, matching);
if (!service)
return false;
ret = IOServiceOpen(service, mach_task_self(), AGX_SERVICE_TYPE, &dev->fd);
if (ret)
return false;
const char *api = "Equestria";
char in[16] = {0};
assert(strlen(api) < sizeof(in));
memcpy(in, api, strlen(api));
ret = IOConnectCallStructMethod(dev->fd, AGX_SELECTOR_SET_API, in,
sizeof(in), NULL, NULL);
/* Oddly, the return codes are flipped for SET_API */
if (ret != 1)
return false;
#endif
dev->memctx = memctx;
util_sparse_array_init(&dev->bo_map, sizeof(struct agx_bo), 512);
@ -272,9 +129,6 @@ agx_open_device(void *memctx, struct agx_device *dev)
list_inithead(&dev->bo_cache.buckets[i]);
dev->queue = agx_create_command_queue(dev);
dev->cmdbuf = agx_shmem_alloc(dev, 0x4000,
true); // length becomes kernelCommandDataSize
dev->memmap = agx_shmem_alloc(dev, 0x10000, false);
agx_get_global_ids(dev);
return true;
@ -285,155 +139,21 @@ agx_close_device(struct agx_device *dev)
{
agx_bo_cache_evict_all(dev);
util_sparse_array_finish(&dev->bo_map);
#if __APPLE__
kern_return_t ret = IOServiceClose(dev->fd);
if (ret)
fprintf(stderr, "Error from IOServiceClose: %u\n", ret);
#endif
}
#if __APPLE__
static struct agx_notification_queue
agx_create_notification_queue(mach_port_t connection)
{
struct agx_create_notification_queue_resp resp;
size_t resp_size = sizeof(resp);
assert(resp_size == 0x10);
ASSERTED kern_return_t ret = IOConnectCallStructMethod(
connection, AGX_SELECTOR_CREATE_NOTIFICATION_QUEUE, NULL, 0, &resp,
&resp_size);
assert(resp_size == sizeof(resp));
assert(ret == 0);
mach_port_t notif_port = IODataQueueAllocateNotificationPort();
IOConnectSetNotificationPort(connection, 0, notif_port, resp.unk2);
return (struct agx_notification_queue){.port = notif_port,
.queue = resp.queue,
.id = resp.unk2};
}
#endif
struct agx_command_queue
agx_create_command_queue(struct agx_device *dev)
{
#if __APPLE__
struct agx_command_queue queue = {};
{
uint8_t buffer[1024 + 8] = {0};
const char *path = "/tmp/a.out";
assert(strlen(path) < 1022);
memcpy(buffer + 0, path, strlen(path));
/* Copy to the end */
unsigned END_LEN = MIN2(strlen(path), 1024 - strlen(path));
unsigned SKIP = strlen(path) - END_LEN;
unsigned OFFS = 1024 - END_LEN;
memcpy(buffer + OFFS, path + SKIP, END_LEN);
buffer[1024] = 0x2;
struct agx_create_command_queue_resp out = {};
size_t out_sz = sizeof(out);
ASSERTED kern_return_t ret =
IOConnectCallStructMethod(dev->fd, AGX_SELECTOR_CREATE_COMMAND_QUEUE,
buffer, sizeof(buffer), &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
queue.id = out.id;
assert(queue.id);
}
queue.notif = agx_create_notification_queue(dev->fd);
{
uint64_t scalars[2] = {queue.id, queue.notif.id};
ASSERTED kern_return_t ret =
IOConnectCallScalarMethod(dev->fd, 0x1D, scalars, 2, NULL, NULL);
assert(ret == 0);
}
{
uint64_t scalars[2] = {queue.id, 0x1ffffffffull};
ASSERTED kern_return_t ret =
IOConnectCallScalarMethod(dev->fd, 0x31, scalars, 2, NULL, NULL);
assert(ret == 0);
}
return queue;
#else
return (struct agx_command_queue){0};
#endif
return (struct agx_command_queue){};
}
void
agx_submit_cmdbuf(struct agx_device *dev, unsigned cmdbuf, unsigned mappings,
uint64_t scalar)
{
#if __APPLE__
struct agx_submit_cmdbuf_req req = {
.count = 1,
.command_buffer_shmem_id = cmdbuf,
.segment_list_shmem_id = mappings,
.notify_1 = 0xABCD,
.notify_2 = 0x1234,
};
ASSERTED kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_SUBMIT_COMMAND_BUFFERS, &scalar,
1, &req, sizeof(req), NULL, 0, NULL, 0);
assert(ret == 0);
return;
#endif
}
/*
* Wait for a frame to finish rendering.
*
* The macOS kernel indicates that rendering has finished using a notification
* queue. The kernel will send two messages on the notification queue. The
* second message indicates that rendering has completed. This simple routine
* waits for both messages. It's important that IODataQueueDequeue is used in a
* loop to flush the entire queue before calling
* IODataQueueWaitForAvailableData. Otherwise, we can race and get stuck in
* WaitForAvailabaleData.
*/
void
agx_wait_queue(struct agx_command_queue queue)
{
#if __APPLE__
uint64_t data[4];
unsigned sz = sizeof(data);
unsigned message_id = 0;
uint64_t magic_numbers[2] = {0xABCD, 0x1234};
while (message_id < 2) {
IOReturn ret =
IODataQueueWaitForAvailableData(queue.notif.queue, queue.notif.port);
if (ret) {
fprintf(stderr, "Error waiting for available data\n");
return;
}
while (IODataQueueDequeue(queue.notif.queue, data, &sz) ==
kIOReturnSuccess) {
assert(sz == sizeof(data));
assert(data[0] == magic_numbers[message_id]);
message_id++;
}
}
#endif
}

View file

@ -28,9 +28,10 @@
#include "util/sparse_array.h"
#include "agx_bo.h"
#include "agx_formats.h"
#include "io.h"
#include "agx_bo.h"
#if __APPLE__
#include "agx_iokit.h"
#include <IOKit/IOKitLib.h>
#include <mach/mach.h>
#endif
@ -54,19 +55,24 @@ enum agx_dbg {
/* Fencepost problem, hence the off-by-one */
#define NR_BO_CACHE_BUCKETS (MAX_BO_CACHE_BUCKET - MIN_BO_CACHE_BUCKET + 1)
#ifndef __APPLE__
struct agx_command_queue {
};
#endif
struct agx_device {
void *memctx;
uint32_t debug;
/* XXX What to bind to? I don't understand the IOGPU UABI */
struct agx_command_queue queue;
struct agx_bo cmdbuf, memmap;
uint64_t next_global_id, last_global_id;
struct agx_command_queue queue;
/* Device handle */
#if __APPLE__
io_connect_t fd;
struct agx_bo cmdbuf, memmap;
#else
/* Device handle */
int fd;
#endif
struct renderonly *ro;

View file

@ -0,0 +1,384 @@
/*
* Copyright (C) 2021 Alyssa Rosenzweig <alyssa@rosenzweig.io>
* Copyright 2019 Collabora, Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "agx_device.h"
#include <inttypes.h>
#include "agx_bo.h"
#include "decode.h"
unsigned AGX_FAKE_HANDLE = 0;
uint64_t AGX_FAKE_LO = 0;
uint64_t AGX_FAKE_HI = (1ull << 32);
void
agx_bo_free(struct agx_device *dev, struct agx_bo *bo)
{
const uint64_t handle = bo->handle;
kern_return_t ret = IOConnectCallScalarMethod(dev->fd, AGX_SELECTOR_FREE_MEM,
&handle, 1, NULL, NULL);
if (ret)
fprintf(stderr, "error freeing BO mem: %u\n", ret);
/* Reset the handle */
memset(bo, 0, sizeof(*bo));
}
void
agx_shmem_free(struct agx_device *dev, unsigned handle)
{
const uint64_t input = handle;
kern_return_t ret = IOConnectCallScalarMethod(
dev->fd, AGX_SELECTOR_FREE_SHMEM, &input, 1, NULL, NULL);
if (ret)
fprintf(stderr, "error freeing shmem: %u\n", ret);
}
struct agx_bo
agx_shmem_alloc(struct agx_device *dev, size_t size, bool cmdbuf)
{
struct agx_bo bo;
struct agx_create_shmem_resp out = {};
size_t out_sz = sizeof(out);
uint64_t inputs[2] = {
size,
cmdbuf ? 1 : 0 // 2 - error reporting, 1 - no error reporting
};
kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_CREATE_SHMEM, inputs, 2, NULL,
0, NULL, NULL, &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
assert(out.size == size);
assert(out.map != 0);
bo = (struct agx_bo){
.type = cmdbuf ? AGX_ALLOC_CMDBUF : AGX_ALLOC_MEMMAP,
.handle = out.id,
.ptr.cpu = out.map,
.size = out.size,
.guid = 0, /* TODO? */
};
if (dev->debug & AGX_DBG_TRACE)
agxdecode_track_alloc(&bo);
return bo;
}
struct agx_bo *
agx_bo_alloc(struct agx_device *dev, size_t size, enum agx_bo_flags flags)
{
struct agx_bo *bo;
unsigned handle = 0;
/* executable implies low va */
assert(!(flags & AGX_BO_EXEC) || (flags & AGX_BO_LOW_VA));
uint32_t mode = 0x430; // shared, ?
uint32_t args_in[24] = {0};
args_in[4] = 0x4000101; // 0x1000101; // unk
args_in[5] = mode;
args_in[16] = size;
args_in[20] = flags & AGX_BO_EXEC ? AGX_MEMORY_TYPE_SHADER
: flags & AGX_BO_LOW_VA ? AGX_MEMORY_TYPE_CMDBUF_32
: AGX_MEMORY_TYPE_FRAMEBUFFER;
uint64_t out[10] = {0};
size_t out_sz = sizeof(out);
kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_ALLOCATE_MEM, NULL, 0, args_in,
sizeof(args_in), NULL, 0, out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
handle = (out[3] >> 32ull);
pthread_mutex_lock(&dev->bo_map_lock);
bo = agx_lookup_bo(dev, handle);
pthread_mutex_unlock(&dev->bo_map_lock);
/* Fresh handle */
assert(!memcmp(bo, &((struct agx_bo){}), sizeof(*bo)));
bo->type = AGX_ALLOC_REGULAR;
bo->size = size;
bo->flags = flags;
bo->dev = dev;
bo->handle = handle;
ASSERTED bool lo = (flags & AGX_BO_LOW_VA);
bo->ptr.gpu = out[0];
bo->ptr.cpu = (void *)out[1];
bo->guid = out[5];
assert(bo->ptr.gpu < (1ull << (lo ? 32 : 40)));
return bo;
}
struct agx_bo *
agx_bo_import(struct agx_device *dev, int fd)
{
unreachable("Linux UAPI not yet upstream");
}
int
agx_bo_export(struct agx_bo *bo)
{
bo->flags |= AGX_BO_SHARED;
unreachable("Linux UAPI not yet upstream");
}
static void
agx_get_global_ids(struct agx_device *dev)
{
uint64_t out[2] = {};
size_t out_sz = sizeof(out);
ASSERTED kern_return_t ret = IOConnectCallStructMethod(
dev->fd, AGX_SELECTOR_GET_GLOBAL_IDS, NULL, 0, &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
assert(out[1] > out[0]);
dev->next_global_id = out[0];
dev->last_global_id = out[1];
}
uint64_t
agx_get_global_id(struct agx_device *dev)
{
if (unlikely(dev->next_global_id >= dev->last_global_id)) {
agx_get_global_ids(dev);
}
return dev->next_global_id++;
}
/* Tries to open an AGX device, returns true if successful */
bool
agx_open_device(void *memctx, struct agx_device *dev)
{
kern_return_t ret;
/* TODO: Support other models */
CFDictionaryRef matching = IOServiceNameMatching("AGXAcceleratorG13G_B0");
io_service_t service = IOServiceGetMatchingService(0, matching);
if (!service)
return false;
ret = IOServiceOpen(service, mach_task_self(), AGX_SERVICE_TYPE, &dev->fd);
if (ret)
return false;
const char *api = "Equestria";
char in[16] = {0};
assert(strlen(api) < sizeof(in));
memcpy(in, api, strlen(api));
ret = IOConnectCallStructMethod(dev->fd, AGX_SELECTOR_SET_API, in,
sizeof(in), NULL, NULL);
/* Oddly, the return codes are flipped for SET_API */
if (ret != 1)
return false;
dev->memctx = memctx;
util_sparse_array_init(&dev->bo_map, sizeof(struct agx_bo), 512);
simple_mtx_init(&dev->bo_cache.lock, mtx_plain);
list_inithead(&dev->bo_cache.lru);
for (unsigned i = 0; i < ARRAY_SIZE(dev->bo_cache.buckets); ++i)
list_inithead(&dev->bo_cache.buckets[i]);
dev->queue = agx_create_command_queue(dev);
dev->cmdbuf = agx_shmem_alloc(dev, 0x4000,
true); // length becomes kernelCommandDataSize
dev->memmap = agx_shmem_alloc(dev, 0x10000, false);
agx_get_global_ids(dev);
return true;
}
void
agx_close_device(struct agx_device *dev)
{
agx_bo_cache_evict_all(dev);
util_sparse_array_finish(&dev->bo_map);
kern_return_t ret = IOServiceClose(dev->fd);
if (ret)
fprintf(stderr, "Error from IOServiceClose: %u\n", ret);
}
static struct agx_notification_queue
agx_create_notification_queue(mach_port_t connection)
{
struct agx_create_notification_queue_resp resp;
size_t resp_size = sizeof(resp);
assert(resp_size == 0x10);
ASSERTED kern_return_t ret = IOConnectCallStructMethod(
connection, AGX_SELECTOR_CREATE_NOTIFICATION_QUEUE, NULL, 0, &resp,
&resp_size);
assert(resp_size == sizeof(resp));
assert(ret == 0);
mach_port_t notif_port = IODataQueueAllocateNotificationPort();
IOConnectSetNotificationPort(connection, 0, notif_port, resp.unk2);
return (struct agx_notification_queue){.port = notif_port,
.queue = resp.queue,
.id = resp.unk2};
}
struct agx_command_queue
agx_create_command_queue(struct agx_device *dev)
{
struct agx_command_queue queue = {};
{
uint8_t buffer[1024 + 8] = {0};
const char *path = "/tmp/a.out";
assert(strlen(path) < 1022);
memcpy(buffer + 0, path, strlen(path));
/* Copy to the end */
unsigned END_LEN = MIN2(strlen(path), 1024 - strlen(path));
unsigned SKIP = strlen(path) - END_LEN;
unsigned OFFS = 1024 - END_LEN;
memcpy(buffer + OFFS, path + SKIP, END_LEN);
buffer[1024] = 0x2;
struct agx_create_command_queue_resp out = {};
size_t out_sz = sizeof(out);
ASSERTED kern_return_t ret =
IOConnectCallStructMethod(dev->fd, AGX_SELECTOR_CREATE_COMMAND_QUEUE,
buffer, sizeof(buffer), &out, &out_sz);
assert(ret == 0);
assert(out_sz == sizeof(out));
queue.id = out.id;
assert(queue.id);
}
queue.notif = agx_create_notification_queue(dev->fd);
{
uint64_t scalars[2] = {queue.id, queue.notif.id};
ASSERTED kern_return_t ret =
IOConnectCallScalarMethod(dev->fd, 0x1D, scalars, 2, NULL, NULL);
assert(ret == 0);
}
{
uint64_t scalars[2] = {queue.id, 0x1ffffffffull};
ASSERTED kern_return_t ret =
IOConnectCallScalarMethod(dev->fd, 0x31, scalars, 2, NULL, NULL);
assert(ret == 0);
}
return queue;
}
void
agx_submit_cmdbuf(struct agx_device *dev, unsigned cmdbuf, unsigned mappings,
uint64_t scalar)
{
struct agx_submit_cmdbuf_req req = {
.count = 1,
.command_buffer_shmem_id = cmdbuf,
.segment_list_shmem_id = mappings,
.notify_1 = 0xABCD,
.notify_2 = 0x1234,
};
ASSERTED kern_return_t ret =
IOConnectCallMethod(dev->fd, AGX_SELECTOR_SUBMIT_COMMAND_BUFFERS, &scalar,
1, &req, sizeof(req), NULL, 0, NULL, 0);
assert(ret == 0);
return;
}
/*
* Wait for a frame to finish rendering.
*
* The macOS kernel indicates that rendering has finished using a notification
* queue. The kernel will send two messages on the notification queue. The
* second message indicates that rendering has completed. This simple routine
* waits for both messages. It's important that IODataQueueDequeue is used in a
* loop to flush the entire queue before calling
* IODataQueueWaitForAvailableData. Otherwise, we can race and get stuck in
* WaitForAvailabaleData.
*/
void
agx_wait_queue(struct agx_command_queue queue)
{
uint64_t data[4];
unsigned sz = sizeof(data);
unsigned message_id = 0;
uint64_t magic_numbers[2] = {0xABCD, 0x1234};
while (message_id < 2) {
IOReturn ret =
IODataQueueWaitForAvailableData(queue.notif.queue, queue.notif.port);
if (ret) {
fprintf(stderr, "Error waiting for available data\n");
return;
}
while (IODataQueueDequeue(queue.notif.queue, data, &sz) ==
kIOReturnSuccess) {
assert(sz == sizeof(data));
assert(data[0] == magic_numbers[message_id]);
message_id++;
}
}
}

View file

@ -34,9 +34,11 @@
#include "decode.h"
#include "hexdump.h"
#include "io.h"
#ifdef __APPLE__
#include "agx_iokit.h"
#endif
static const char *agx_alloc_types[AGX_NUM_ALLOC] = {"mem", "map", "cmd"};
UNUSED static const char *agx_alloc_types[AGX_NUM_ALLOC] = {"mem", "map", "cmd"};
static void
agx_disassemble(void *_code, size_t maxlen, FILE *fp)
@ -119,6 +121,8 @@ agxdecode_mark_mapped(unsigned handle)
bo->mapped = true;
}
#ifdef __APPLE__
static void
agxdecode_decode_segment_list(void *segment_list)
{
@ -211,6 +215,8 @@ agxdecode_decode_segment_list(void *segment_list)
}
}
#endif
static inline void *
__agxdecode_fetch_gpu_mem(const struct agx_bo *mem, uint64_t gpu_va,
size_t size, int line, const char *filename)
@ -658,6 +664,8 @@ agxdecode_gfx(uint32_t *cmdbuf, uint64_t encoder, bool verbose)
}
}
#ifdef __APPLE__
void
agxdecode_cmdstream(unsigned cmdbuf_handle, unsigned map_handle, bool verbose)
{
@ -723,6 +731,8 @@ agxdecode_dump_mappings(unsigned map_handle)
}
}
#endif
void
agxdecode_track_alloc(struct agx_bo *alloc)
{

View file

@ -21,9 +21,15 @@
dep_iokit = dependency('IOKit', required : false)
if host_machine.system() == 'darwin'
agx_device = 'agx_device_macos.c'
else
agx_device = 'agx_device.c'
endif
libasahi_lib_files = files(
'agx_bo.c',
'agx_device.c',
agx_device,
'agx_formats.c',
'agx_meta.c',
'agx_tilebuffer.c',

View file

@ -34,7 +34,7 @@
#include "decode.h"
#include "dyld_interpose.h"
#include "hexdump.h"
#include "io.h"
#include "agx_iokit.h"
#include "util.h"
/*

View file

@ -1029,6 +1029,7 @@ agx_flush_batch(struct agx_context *ctx, struct agx_batch *batch)
/* Size calculation should've been exact */
assert(handle_i == handle_count);
#ifdef __APPLE__
unsigned cmdbuf_id = agx_get_global_id(dev);
unsigned encoder_id = agx_get_global_id(dev);
@ -1051,6 +1052,16 @@ agx_flush_batch(struct agx_context *ctx, struct agx_batch *batch)
agxdecode_cmdstream(dev->cmdbuf.handle, dev->memmap.handle, true);
agxdecode_next_frame();
}
#else
/* TODO: Linux UAPI submission */
(void)dev;
(void)zbias;
(void)scissor;
(void)clear_pipeline_textures;
(void)pipeline_store;
(void)pipeline_background;
(void)pipeline_background_partial;
#endif
agx_batch_cleanup(ctx, batch);
}

View file

@ -26,8 +26,10 @@ files_asahi = files(
'agx_query.c',
'agx_state.c',
'agx_uniforms.c',
'magic.c',
)
if host_machine.system() == 'darwin'
files_asahi += files('magic.c')
endif
libasahi = static_library(
'asahi',