blob: 790cb5c3fa205f148ce12bbac01ed7bd7951c013 [file] [log] [blame]
/*
* Copyright © 2018 Google, LLC
*
* 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.
*/
#ifndef ANV_MAGMA_H
#define ANV_MAGMA_H
// Don't include anv_private.h here; this header is included by the
// c++ implementation anv_magma_connection.cc.
#include "drm-uapi/i915_drm.h"
#include "magma.h"
#include <stdio.h>
#if DEBUG
#define ANV_MAGMA_DRET(ret) (ret == 0 ? ret : anv_magma_dret(__FILE__, __LINE__, ret))
#else
#define ANV_MAGMA_DRET(ret) (ret)
#endif
struct anv_connection {
magma_connection_t connection;
};
struct anv_magma_buffer {
magma_buffer_t buffer;
};
#ifdef __cplusplus
extern "C" {
#endif
// Transfer ownership of the |connection|.
struct anv_connection* AnvMagmaCreateConnection(magma_connection_t connection);
void AnvMagmaReleaseConnection(struct anv_connection* connection);
magma_status_t AnvMagmaGetSysmemConnection(struct anv_connection* connection,
magma_sysmem_connection_t* sysmem_connection_out);
magma_status_t AnvMagmaConnectionWait(struct anv_connection* connection, uint64_t buffer_id,
int64_t* timeout_ns);
int AnvMagmaConnectionIsBusy(struct anv_connection* connection, uint64_t buffer_id);
int AnvMagmaConnectionExec(struct anv_connection* connection, uint32_t context_id,
struct drm_i915_gem_execbuffer2* execbuf);
// Transfers ownership of the |buffer|.
struct anv_magma_buffer* AnvMagmaCreateBuffer(struct anv_connection* connection,
magma_buffer_t buffer);
void AnvMagmaReleaseBuffer(struct anv_connection* connection, struct anv_magma_buffer* buffer);
static inline int anv_magma_dret(const char* file, const int line, const int64_t ret)
{
printf("%s:%d returning %ld\n", file, line, ret);
return ret;
}
#ifdef __cplusplus
} // extern "C"
#endif
#endif // ANV_MAGMA_H