mesa/src/util/cache_ops_null.c
Faith Ekstrand 555881e574 util/cache_ops: Add some cache flush helpers
The x86 implementation was shamelessly stolen from intel_mem.c and the
aarch64 implementaiton was based on the code in Turnip.

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Tested-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Danylo Piliaiev <dpiliaiev@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37803>
2025-10-16 01:19:44 +00:00

70 lines
2 KiB
C

/*
* Copyright © 2025 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 "cache_ops.h"
#include "util/macros.h"
size_t
util_cache_granularity()
{
return 0;
}
void
util_flush_range(void *start, size_t size)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void
util_flush_inval_range(void *start, size_t size)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void
util_flush_range_no_fence(void *start, size_t size)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void
util_flush_inval_range_no_fence(void *start, size_t size)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void util_pre_flush_fence(void)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void util_post_flush_fence(void)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}
void util_post_flush_inval_fence(void)
{
UNREACHABLE("Cache ops are not implemented on this platform");
}