mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
Because quick-dump was only selecting a few files in lib/ and we move stuff around and/or add new dependencies we were failing to provide the necessary symbols to the shim library providing python bindings. And so we had a run-time error: Traceback (most recent call last): File "./tools/quick_dump/quick_dump.py", line 17, in <module> import chipset File "/home/damien/gfx/sources/intel-gpu-tools/tools/quick_dump/chipset.py", line 28, in <module> _chipset = swig_import_helper() File "/home/damien/gfx/sources/intel-gpu-tools/tools/quick_dump/chipset.py", line 24, in swig_import_helper _mod = imp.load_module('_chipset', fp, pathname, description) File "/usr/lib64/python3.3/imp.py", line 183, in load_module return load_dynamic(name, filename, file) ImportError: /home/damien/gfx/sources/intel-gpu-tools/tools/quick_dump/_chipset.so: undefined symbol: kmstest_pipe_name So, let's simplify maintainance and just link against the library we're building and using elsewhere. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
41 lines
680 B
C
41 lines
680 B
C
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <pciaccess.h>
|
|
#include "intel_chipset.h"
|
|
|
|
int is_sandybridge(unsigned short pciid)
|
|
{
|
|
return IS_GEN6(pciid);
|
|
}
|
|
|
|
int is_ivybridge(unsigned short pciid)
|
|
{
|
|
return IS_IVYBRIDGE(pciid);
|
|
}
|
|
|
|
int is_valleyview(unsigned short pciid)
|
|
{
|
|
return IS_VALLEYVIEW(pciid);
|
|
}
|
|
|
|
int is_cherryview(unsigned short pciid)
|
|
{
|
|
return IS_CHERRYVIEW(pciid);
|
|
}
|
|
|
|
int is_haswell(unsigned short pciid)
|
|
{
|
|
return IS_HASWELL(pciid);
|
|
}
|
|
|
|
int is_broadwell(unsigned short pciid)
|
|
{
|
|
return IS_BROADWELL(pciid);
|
|
}
|
|
|
|
/* Simple helper because I couldn't make this work in the script */
|
|
unsigned short pcidev_to_devid(struct pci_device *pdev)
|
|
{
|
|
return pdev->device_id;
|
|
}
|