2012-04-25 22:16:00 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright 2012 Francisco Jerez
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* 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, sub license, 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 NON-INFRINGEMENT.
|
s/Tungsten Graphics/VMware/
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the
old copyright name is creating unnecessary confusion, hence this change.
This was the sed script I used:
$ cat tg2vmw.sed
# Run as:
#
# git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed
#
# Rename copyrights
s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g
/Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./
s/TUNGSTEN GRAPHICS/VMWARE/g
# Rename emails
s/alanh@tungstengraphics.com/alanh@vmware.com/
s/jens@tungstengraphics.com/jowen@vmware.com/g
s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/
s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g
s/keithw\?@tungstengraphics.com/keithw@vmware.com/g
s/michel@tungstengraphics.com/daenzer@vmware.com/g
s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/
s/zack@tungstengraphics.com/zackr@vmware.com/
# Remove dead links
s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g
# C string src/gallium/state_trackers/vega/api_misc.c
s/"Tungsten Graphics, Inc"/"VMware, Inc"/
Reviewed-by: Brian Paul <brianp@vmware.com>
2014-01-17 16:27:50 +00:00
|
|
|
* IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
|
2012-04-25 22:16:00 +02:00
|
|
|
* 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 "pipe_loader_priv.h"
|
|
|
|
|
|
|
|
#include "util/u_inlines.h"
|
|
|
|
#include "util/u_memory.h"
|
|
|
|
#include "util/u_string.h"
|
|
|
|
#include "util/u_dl.h"
|
2019-04-02 17:03:13 -04:00
|
|
|
#include "util/u_file.h"
|
2017-06-28 17:50:19 +02:00
|
|
|
#include "util/xmlconfig.h"
|
2020-06-12 11:42:32 +02:00
|
|
|
#include "util/driconf.h"
|
2012-04-25 22:16:00 +02:00
|
|
|
|
2017-06-30 11:06:06 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-11-21 23:03:20 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define PATH_MAX _MAX_PATH
|
|
|
|
#endif
|
|
|
|
|
2012-04-25 22:16:00 +02:00
|
|
|
#define MODULE_PREFIX "pipe_"
|
|
|
|
|
|
|
|
static int (*backends[])(struct pipe_loader_device **, int) = {
|
2015-10-14 16:26:53 +01:00
|
|
|
#ifdef HAVE_LIBDRM
|
2012-04-25 22:16:00 +02:00
|
|
|
&pipe_loader_drm_probe,
|
|
|
|
#endif
|
|
|
|
&pipe_loader_sw_probe
|
|
|
|
};
|
|
|
|
|
2020-09-25 12:56:22 -07:00
|
|
|
const driOptionDescription gallium_driconf[] = {
|
2017-06-29 17:37:18 +02:00
|
|
|
#include "driinfo_gallium.h"
|
2020-09-25 12:56:22 -07:00
|
|
|
};
|
2017-06-29 17:37:18 +02:00
|
|
|
|
2012-04-25 22:16:00 +02:00
|
|
|
int
|
|
|
|
pipe_loader_probe(struct pipe_loader_device **devs, int ndev)
|
|
|
|
{
|
|
|
|
int i, n = 0;
|
|
|
|
|
2016-05-17 09:25:44 -04:00
|
|
|
for (i = 0; i < ARRAY_SIZE(backends); i++)
|
2012-04-25 22:16:00 +02:00
|
|
|
n += backends[i](&devs[n], MAX2(0, ndev - n));
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pipe_loader_release(struct pipe_loader_device **devs, int ndev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ndev; i++)
|
|
|
|
devs[i]->ops->release(&devs[i]);
|
|
|
|
}
|
|
|
|
|
2017-06-28 17:50:19 +02:00
|
|
|
void
|
|
|
|
pipe_loader_base_release(struct pipe_loader_device **dev)
|
|
|
|
{
|
|
|
|
driDestroyOptionCache(&(*dev)->option_cache);
|
|
|
|
driDestroyOptionInfo(&(*dev)->option_info);
|
|
|
|
|
|
|
|
FREE(*dev);
|
|
|
|
*dev = NULL;
|
|
|
|
}
|
|
|
|
|
2020-09-25 12:56:22 -07:00
|
|
|
static driOptionDescription *
|
|
|
|
merge_driconf(const driOptionDescription *driver_driconf, unsigned driver_count,
|
|
|
|
unsigned *merged_count)
|
|
|
|
{
|
|
|
|
unsigned gallium_count = ARRAY_SIZE(gallium_driconf);
|
|
|
|
driOptionDescription *merged = malloc((driver_count + gallium_count) *
|
|
|
|
sizeof(*merged));
|
|
|
|
if (!merged) {
|
|
|
|
*merged_count = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(merged, gallium_driconf, sizeof(*merged) * gallium_count);
|
|
|
|
memcpy(&merged[gallium_count], driver_driconf, sizeof(*merged) * driver_count);
|
|
|
|
|
|
|
|
*merged_count = driver_count + gallium_count;
|
|
|
|
return merged;
|
|
|
|
}
|
|
|
|
|
2021-07-30 14:35:53 -07:00
|
|
|
/**
|
|
|
|
* Ensure that dev->option_cache is initialized appropriately for the driver.
|
|
|
|
*
|
|
|
|
* This function can be called multiple times.
|
|
|
|
*
|
|
|
|
* \param dev Device for which options should be loaded.
|
|
|
|
*/
|
|
|
|
static void
|
2017-06-28 17:50:19 +02:00
|
|
|
pipe_loader_load_options(struct pipe_loader_device *dev)
|
|
|
|
{
|
|
|
|
if (dev->option_info.info)
|
|
|
|
return;
|
|
|
|
|
2020-09-25 12:56:22 -07:00
|
|
|
unsigned driver_count, merged_count;
|
|
|
|
const driOptionDescription *driver_driconf =
|
|
|
|
dev->ops->get_driconf(dev, &driver_count);
|
|
|
|
|
|
|
|
const driOptionDescription *merged_driconf =
|
|
|
|
merge_driconf(driver_driconf, driver_count, &merged_count);
|
|
|
|
driParseOptionInfo(&dev->option_info, merged_driconf, merged_count);
|
2020-11-17 16:37:41 -08:00
|
|
|
free((void *)merged_driconf);
|
2017-06-28 17:50:19 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 14:47:33 -07:00
|
|
|
void
|
|
|
|
pipe_loader_config_options(struct pipe_loader_device *dev)
|
|
|
|
{
|
|
|
|
if (!dev->option_cache.info) {
|
|
|
|
driParseConfigFiles(&dev->option_cache, &dev->option_info, 0,
|
2021-07-28 18:17:42 -07:00
|
|
|
dev->driver_name, NULL, NULL, NULL, 0, NULL, 0);
|
2021-07-30 14:47:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-30 11:06:06 +02:00
|
|
|
char *
|
|
|
|
pipe_loader_get_driinfo_xml(const char *driver_name)
|
|
|
|
{
|
2020-09-25 12:56:22 -07:00
|
|
|
unsigned driver_count = 0;
|
|
|
|
const driOptionDescription *driver_driconf = NULL;
|
|
|
|
|
2017-08-17 22:10:52 +01:00
|
|
|
#ifdef HAVE_LIBDRM
|
2020-09-25 12:56:22 -07:00
|
|
|
driver_driconf = pipe_loader_drm_get_driconf_by_name(driver_name,
|
|
|
|
&driver_count);
|
2017-08-17 22:10:52 +01:00
|
|
|
#endif
|
2017-06-30 11:06:06 +02:00
|
|
|
|
2020-09-25 12:56:22 -07:00
|
|
|
unsigned merged_count;
|
|
|
|
const driOptionDescription *merged_driconf =
|
|
|
|
merge_driconf(driver_driconf, driver_count, &merged_count);
|
|
|
|
free((void *)driver_driconf);
|
|
|
|
|
|
|
|
char *xml = driGetOptionsXml(merged_driconf, merged_count);
|
|
|
|
|
|
|
|
free((void *)merged_driconf);
|
2017-06-30 11:06:06 +02:00
|
|
|
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
2012-04-25 22:16:00 +02:00
|
|
|
struct pipe_screen *
|
2021-06-30 05:22:58 +10:00
|
|
|
pipe_loader_create_screen_vk(struct pipe_loader_device *dev, bool sw_vk)
|
2012-04-25 22:16:00 +02:00
|
|
|
{
|
2017-08-03 15:02:09 +02:00
|
|
|
struct pipe_screen_config config;
|
|
|
|
|
2017-06-30 09:58:46 +02:00
|
|
|
pipe_loader_load_options(dev);
|
2021-07-30 14:47:33 -07:00
|
|
|
config.options_info = &dev->option_info;
|
2017-08-03 15:02:09 +02:00
|
|
|
config.options = &dev->option_cache;
|
2017-06-30 09:58:46 +02:00
|
|
|
|
2021-06-30 05:22:58 +10:00
|
|
|
return dev->ops->create_screen(dev, &config, sw_vk);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct pipe_screen *
|
|
|
|
pipe_loader_create_screen(struct pipe_loader_device *dev)
|
|
|
|
{
|
|
|
|
return pipe_loader_create_screen_vk(dev, false);
|
2012-04-25 22:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct util_dl_library *
|
2017-06-30 10:30:14 +02:00
|
|
|
pipe_loader_find_module(const char *driver_name,
|
2012-04-25 22:16:00 +02:00
|
|
|
const char *library_paths)
|
|
|
|
{
|
|
|
|
struct util_dl_library *lib;
|
|
|
|
const char *next;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
int len, ret;
|
|
|
|
|
|
|
|
for (next = library_paths; *next; library_paths = next + 1) {
|
2018-11-20 11:24:55 +00:00
|
|
|
next = strchrnul(library_paths, ':');
|
2012-04-25 22:16:00 +02:00
|
|
|
len = next - library_paths;
|
|
|
|
|
|
|
|
if (len)
|
2018-11-20 11:59:28 +00:00
|
|
|
ret = snprintf(path, sizeof(path), "%.*s/%s%s%s",
|
|
|
|
len, library_paths,
|
|
|
|
MODULE_PREFIX, driver_name, UTIL_DL_EXT);
|
2012-04-25 22:16:00 +02:00
|
|
|
else
|
2018-11-20 11:59:28 +00:00
|
|
|
ret = snprintf(path, sizeof(path), "%s%s%s",
|
|
|
|
MODULE_PREFIX, driver_name, UTIL_DL_EXT);
|
2012-04-25 22:16:00 +02:00
|
|
|
|
2019-04-02 17:03:13 -04:00
|
|
|
if (ret > 0 && ret < sizeof(path) && u_file_access(path, 0) != -1) {
|
2012-04-25 22:16:00 +02:00
|
|
|
lib = util_dl_open(path);
|
|
|
|
if (lib) {
|
|
|
|
return lib;
|
|
|
|
}
|
2019-04-02 17:03:13 -04:00
|
|
|
fprintf(stderr, "ERROR: Failed to load pipe driver at `%s': %s\n",
|
|
|
|
path, util_dl_error());
|
2012-04-25 22:16:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|