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"
|
2017-06-28 17:50:19 +02:00
|
|
|
#include "util/xmlconfig.h"
|
2017-06-29 17:37:18 +02:00
|
|
|
#include "util/xmlpool.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
|
|
|
|
};
|
|
|
|
|
2017-06-29 17:37:18 +02:00
|
|
|
const char gallium_driinfo_xml[] =
|
2017-08-02 11:38:32 +02:00
|
|
|
DRI_CONF_BEGIN
|
2017-06-29 17:37:18 +02:00
|
|
|
#include "driinfo_gallium.h"
|
2017-08-02 11:38:32 +02:00
|
|
|
DRI_CONF_END
|
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;
|
|
|
|
}
|
|
|
|
|
2014-05-17 15:31:32 +01:00
|
|
|
const struct drm_conf_ret *
|
|
|
|
pipe_loader_configuration(struct pipe_loader_device *dev,
|
|
|
|
enum drm_conf conf)
|
|
|
|
{
|
|
|
|
return dev->ops->configuration(dev, conf);
|
|
|
|
}
|
|
|
|
|
2017-06-28 17:50:19 +02:00
|
|
|
void
|
|
|
|
pipe_loader_load_options(struct pipe_loader_device *dev)
|
|
|
|
{
|
|
|
|
if (dev->option_info.info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const char *xml_options = gallium_driinfo_xml;
|
|
|
|
const struct drm_conf_ret *xml_options_conf =
|
|
|
|
pipe_loader_configuration(dev, DRM_CONF_XML_OPTIONS);
|
|
|
|
|
|
|
|
if (xml_options_conf)
|
|
|
|
xml_options = xml_options_conf->val.val_pointer;
|
|
|
|
|
|
|
|
driParseOptionInfo(&dev->option_info, xml_options);
|
|
|
|
driParseConfigFiles(&dev->option_cache, &dev->option_info, 0,
|
|
|
|
dev->driver_name);
|
|
|
|
}
|
|
|
|
|
2017-06-30 11:06:06 +02:00
|
|
|
char *
|
|
|
|
pipe_loader_get_driinfo_xml(const char *driver_name)
|
|
|
|
{
|
|
|
|
char *xml = pipe_loader_drm_get_driinfo_xml(driver_name);
|
|
|
|
|
|
|
|
if (!xml)
|
|
|
|
xml = strdup(gallium_driinfo_xml);
|
|
|
|
|
|
|
|
return xml;
|
|
|
|
}
|
|
|
|
|
2012-04-25 22:16:00 +02:00
|
|
|
struct pipe_screen *
|
2017-08-03 15:02:09 +02:00
|
|
|
pipe_loader_create_screen(struct pipe_loader_device *dev)
|
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);
|
2017-08-03 15:02:09 +02:00
|
|
|
config.options = &dev->option_cache;
|
2017-06-30 09:58:46 +02:00
|
|
|
|
2017-08-03 15:02:09 +02:00
|
|
|
return dev->ops->create_screen(dev, &config);
|
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) {
|
|
|
|
next = util_strchrnul(library_paths, ':');
|
|
|
|
len = next - library_paths;
|
|
|
|
|
|
|
|
if (len)
|
|
|
|
ret = util_snprintf(path, sizeof(path), "%.*s/%s%s%s",
|
|
|
|
len, library_paths,
|
2017-06-30 10:30:14 +02:00
|
|
|
MODULE_PREFIX, driver_name, UTIL_DL_EXT);
|
2012-04-25 22:16:00 +02:00
|
|
|
else
|
|
|
|
ret = util_snprintf(path, sizeof(path), "%s%s%s",
|
2017-06-30 10:30:14 +02:00
|
|
|
MODULE_PREFIX, driver_name, UTIL_DL_EXT);
|
2012-04-25 22:16:00 +02:00
|
|
|
|
|
|
|
if (ret > 0 && ret < sizeof(path)) {
|
|
|
|
lib = util_dl_open(path);
|
|
|
|
if (lib) {
|
|
|
|
return lib;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|