Searched refs:chip_id (Results 1 - 25 of 49) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/freedreno/common/
H A Dfreedreno_dev_info.c45 assert(a->chip_id && b->chip_id);
51 return (a->chip_id == b->chip_id) ||
52 (((a->chip_id & 0xff) == 0xff) &&
53 ((a->chip_id & UINT64_C(0xffffff00)) ==
54 (b->chip_id & UINT64_C(0xffffff00))));
H A Dfreedreno_dev_info.h136 uint64_t chip_id; member in struct:fd_dev_id
148 assert(id->gpu_id || id->chip_id);
150 return ((id->chip_id >> 24) & 0xff) * 100 +
151 ((id->chip_id >> 16) & 0xff) * 10 +
152 ((id->chip_id >> 8) & 0xff);
H A Dfreedreno_devices.py55 def __init__(self, gpu_id = None, chip_id = None, name=None):
56 if chip_id == None:
64 chip_id = (core << 24) | (major << 16) | (minor << 8) | 0xff
65 self.chip_id = chip_id
319 GPUId(chip_id=0x06030500, name="Adreno 7c Gen 3"),
373 { {${id.gpu_id}, ${hex(id.chip_id)}}, "${id.name}", &__info${s.info_index(info)} },
/xsrc/external/mit/MesaLib/dist/src/freedreno/drm-shim/
H A Dfreedreno_noop.c56 uint32_t chip_id; member in struct:msm_device_info
133 gp->value = device_info->chip_id;
187 .chip_id = CHIPID(6, 3, 0, 0xff),
192 .chip_id = CHIPID(2, 0, 0, 0),
197 .chip_id = CHIPID(2, 0, 0, 1),
202 .chip_id = CHIPID(2, 2, 0, 0xff),
207 .chip_id = CHIPID(3, 0, 5, 0xff),
212 .chip_id = CHIPID(3, 0, 6, 0),
217 .chip_id = CHIPID(3, 2, 0xff, 0xff),
222 .chip_id
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/loader/
H A Dloader.h47 loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id);
H A Dloader.c388 drm_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) argument
396 *chip_id = device->deviceinfo.pci->device_id;
416 loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) argument
419 if (drm_get_pci_id_for_fd(fd, vendor_id, chip_id))
440 int vendor_id, chip_id, i, j; local in function:loader_get_driver_for_fd
460 if (!loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
480 if (driver_map[i].chip_ids[j] == chip_id) {
489 fd, vendor_id, chip_id, driver);
/xsrc/external/mit/libdrm/dist/tests/amdgpu/
H A Dcs_tests.c43 static uint32_t chip_id; variable in typeref:typename:uint32_t
72 chip_id = device_handle->info.chip_external_rev;
80 asic_is_gfx_pipe_removed(family_id, chip_id, chip_rev)) {
110 chip_id = device_handle->info.chip_external_rev;
238 (chip_id == chip_rev+0x50 || chip_id == chip_rev+0x5A ||
239 chip_id == chip_rev+0x64)) {
320 (chip_id == chip_rev+0x50 || chip_id == chip_rev+0x5A ||
321 chip_id
[all...]
H A Dsyncobj_tests.c37 static uint32_t chip_id; variable in typeref:typename:uint32_t
114 chip_id = device_handle->info.chip_external_rev;
117 gc_ip_type = (asic_is_gfx_pipe_removed(family_id, chip_id, chip_rev)) ?
H A Dvm_tests.c34 static uint32_t chip_id; variable in typeref:typename:uint32_t
117 chip_id = device_handle->info.chip_external_rev;
120 gc_ip_type = (asic_is_gfx_pipe_removed(family_id, chip_id, chip_rev)) ?
/xsrc/external/mit/MesaLib/dist/src/loader/
H A Dloader.h47 loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id);
H A Dloader.c388 drm_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) argument
404 *chip_id = device->deviceinfo.pci->device_id;
412 loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id) argument
415 return drm_get_pci_id_for_fd(fd, vendor_id, chip_id);
435 int vendor_id, chip_id, i, j; local in function:loader_get_pci_driver
438 if (!loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id))
454 if (driver_map[i].chip_ids[j] == chip_id) {
463 fd, vendor_id, chip_id, driver);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h63 int chip_id; member in struct:pipe_loader_device::__anon83092445010a::__anon830924450208
H A Dpipe_loader_drm.c174 int vendor_id, chip_id; local in function:pipe_loader_drm_probe_fd_nodup
179 if (loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
182 ddev->base.u.pci.chip_id = chip_id;
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.h63 int chip_id; member in struct:pipe_loader_device::__anon4753a8b8010a::__anon4753a8b80208
H A Dpipe_loader_drm.c126 int vendor_id, chip_id; local in function:pipe_loader_drm_probe_fd_nodup
131 if (loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
134 ddev->base.u.pci.chip_id = chip_id;
/xsrc/external/mit/MesaLib/dist/src/nouveau/drm-shim/
H A Dnouveau_noop.c55 uint32_t chip_id; member in struct:nouveau_device_info
122 if (device_info.chip_id == 0x50 || device_info.chip_id >= 0x80)
148 gp->value = device_info.chip_id;
200 device_info.chip_id = 0xf0;
204 device_info.chip_id = strtol(env, NULL, 16);
/xsrc/external/mit/libdrm/dist/freedreno/kgsl/
H A Dkgsl_pipe.c47 *value = kgsl_pipe->devinfo.chip_id;
263 (kgsl_pipe->devinfo.chip_id >> 24) & 0xff,
264 (kgsl_pipe->devinfo.chip_id >> 16) & 0xff,
265 (kgsl_pipe->devinfo.chip_id >> 8) & 0xff,
266 (kgsl_pipe->devinfo.chip_id >> 0) & 0xff);
/xsrc/external/mit/libdrm/dist/freedreno/msm/
H A Dmsm_pipe.c64 *value = msm_pipe->chip_id;
194 msm_pipe->chip_id = get_param(pipe, MSM_PARAM_CHIP_ID);
201 INFO_MSG(" Chip-id: 0x%08x", msm_pipe->chip_id);
H A Dmsm_priv.h58 uint32_t chip_id; member in struct:msm_pipe
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_screen.h66 uint32_t chip_id; /* coreid:8 majorrev:8 minorrev:8 patch:8 */ member in struct:fd_screen
145 return (screen->chip_id & 0xff0000ff) == 0x03000000;
/xsrc/external/mit/MesaLib/dist/src/freedreno/drm/
H A Dmsm_pipe.c88 *value = msm_pipe->chip_id;
243 msm_pipe->chip_id = get_param(pipe, MSM_PARAM_CHIP_ID);
248 if (!(msm_pipe->gpu_id || msm_pipe->chip_id))
253 INFO_MSG(" Chip-id: 0x%016"PRIx64, msm_pipe->chip_id);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_screen.h87 uint64_t chip_id; /* coreid:8 majorrev:8 minorrev:8 patch:8 */ member in struct:fd_screen
215 return (screen->chip_id & 0xff0000ff) == 0x03000000;
/xsrc/external/mit/xf86-video-ati/xorg-server-copy/
H A Dmsp3430.h18 CARD16 chip_id; member in struct:__anonb10ee12b0108
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/i2c/
H A Dmsp3430.h18 CARD16 chip_id; member in struct:__anonddcb0b7b0108
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/drm/
H A Dmsm_pipe.c87 *value = msm_pipe->chip_id;
231 msm_pipe->chip_id = get_param(pipe, MSM_PARAM_CHIP_ID);
241 INFO_MSG(" Chip-id: 0x%08x", msm_pipe->chip_id);

Completed in 16 milliseconds

12