Searched refs:gpu_id (Results 1 - 25 of 120) sorted by relevance

12345

/xsrc/external/mit/MesaLib/dist/src/panfrost/lib/genxml/
H A Dgen_macros.h57 pan_arch(unsigned gpu_id) argument
59 switch (gpu_id) {
71 return gpu_id >> 12;
H A Ddecode_common.c230 pandecode_abort_on_fault(mali_ptr jc_gpu_va, unsigned gpu_id) argument
232 switch (pan_arch(gpu_id)) {
241 void pandecode_jc_v4(mali_ptr jc_gpu_va, unsigned gpu_id);
242 void pandecode_jc_v5(mali_ptr jc_gpu_va, unsigned gpu_id);
243 void pandecode_jc_v6(mali_ptr jc_gpu_va, unsigned gpu_id);
244 void pandecode_jc_v7(mali_ptr jc_gpu_va, unsigned gpu_id);
247 pandecode_jc(mali_ptr jc_gpu_va, unsigned gpu_id) argument
249 switch (pan_arch(gpu_id)) {
250 case 4: pandecode_jc_v4(jc_gpu_va, gpu_id); return;
251 case 5: pandecode_jc_v5(jc_gpu_va, gpu_id); retur
[all...]
H A Ddecode.c197 pandecode_sfbd(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id) argument
242 pandecode_render_target(uint64_t gpu_va, unsigned job_no, unsigned gpu_id, argument
284 char *suffix, unsigned gpu_id);
288 pandecode_mfbd_bfr(uint64_t gpu_va, int job_no, bool is_fragment, unsigned gpu_id) argument
308 pandecode_dcd(&draw, job_no, MALI_JOB_TYPE_FRAGMENT, "", gpu_id);
315 pandecode_dcd(&draw, job_no, MALI_JOB_TYPE_FRAGMENT, "", gpu_id);
322 pandecode_dcd(&draw, job_no, MALI_JOB_TYPE_FRAGMENT, "", gpu_id);
362 pandecode_render_target(gpu_va, job_no, gpu_id, &params);
561 unsigned gpu_id)
594 code, sz, gpu_id, tru
560 pandecode_shader_disassemble(mali_ptr shader_ptr,int shader_no,int type,unsigned gpu_id) argument
712 pandecode_blend_shader_disassemble(mali_ptr shader,int job_no,int job_type,unsigned gpu_id) argument
793 pandecode_dcd(const struct MALI_DRAW * p,int job_no,enum mali_job_type job_type,char * suffix,unsigned gpu_id) argument
951 pandecode_vertex_compute_geometry_job(const struct MALI_JOB_HEADER * h,const struct pandecode_mapped_memory * mem,mali_ptr job,int job_no,unsigned gpu_id) argument
998 pandecode_indexed_vertex_job(const struct MALI_JOB_HEADER * h,const struct pandecode_mapped_memory * mem,mali_ptr job,int job_no,unsigned gpu_id) argument
1030 pandecode_tiler_job_bfr(const struct MALI_JOB_HEADER * h,const struct pandecode_mapped_memory * mem,mali_ptr job,int job_no,unsigned gpu_id) argument
1055 pandecode_tiler_job_mdg(const struct MALI_JOB_HEADER * h,const struct pandecode_mapped_memory * mem,mali_ptr job,int job_no,unsigned gpu_id) argument
1078 pandecode_fragment_job(const struct pandecode_mapped_memory * mem,mali_ptr job,int job_no,unsigned gpu_id) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_quirks.h67 midgard_get_quirks(unsigned gpu_id) argument
69 switch (gpu_id) {
H A Ddisassemble.h26 disassemble_midgard(FILE *fp, uint8_t *code, size_t size, unsigned gpu_id, bool verbose);
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/
H A Dir3_compiler.c46 struct ir3_compiler * ir3_compiler_create(struct fd_device *dev, uint32_t gpu_id) argument
53 compiler->gpu_id = gpu_id;
56 if (compiler->gpu_id >= 600) {
60 if (compiler->gpu_id >= 400) {
H A Dir3_compiler.h36 uint32_t gpu_id; member in struct:ir3_compiler
72 struct ir3_compiler * ir3_compiler_create(struct fd_device *dev, uint32_t gpu_id);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/
H A Dfreedreno_screen.h65 uint32_t gpu_id; /* 220, 305, etc */ member in struct:fd_screen
131 return (screen->gpu_id >= 200) && (screen->gpu_id < 210);
137 return (screen->gpu_id >= 200) && (screen->gpu_id < 300);
151 return (screen->gpu_id >= 300) && (screen->gpu_id < 400);
157 return (screen->gpu_id >= 400) && (screen->gpu_id < 500);
163 return (screen->gpu_id >
[all...]
H A Ddisasm.h40 int disasm_a3xx(uint32_t *dwords, int sizedwords, int level, FILE *out, unsigned gpu_id);
/xsrc/external/mit/MesaLib/dist/src/freedreno/common/
H A Dfreedreno_dev_info.c42 if (a->gpu_id && b->gpu_id) {
43 return a->gpu_id == b->gpu_id;
H A Ddisasm.h59 unsigned gpu_id);
61 unsigned gpu_id, struct shader_stats *stats);
63 unsigned gpu_id);
H A Dfreedreno_dev_info.h135 uint32_t gpu_id; member in struct:fd_dev_id
148 assert(id->gpu_id || id->chip_id);
149 if (!id->gpu_id) {
155 return id->gpu_id;
H A Dfreedreno_devices.py55 def __init__(self, gpu_id = None, chip_id = None, name=None):
57 assert(gpu_id != None)
58 val = gpu_id
66 if gpu_id == None:
67 gpu_id = 0
68 self.gpu_id = gpu_id
70 assert(gpu_id != 0)
71 name = "FD%d" % gpu_id
373 { {${id.gpu_id},
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
H A Dwrap.h56 void pandecode_jc(uint64_t jc_gpu_va, unsigned gpu_id);
59 pandecode_abort_on_fault(uint64_t jc_gpu_va, unsigned gpu_id);
H A Dpan_props.c197 panfrost_model_name(unsigned gpu_id) argument
199 switch (gpu_id) {
235 dev->gpu_id = panfrost_query_gpu_version(fd);
236 dev->arch = pan_arch(dev->gpu_id);
241 dev->quirks = panfrost_get_quirks(dev->gpu_id, revision);
/xsrc/external/mit/MesaLib/dist/src/freedreno/drm-shim/
H A Dfreedreno_noop.c55 uint32_t gpu_id; member in struct:msm_device_info
124 gp->value = device_info->gpu_id;
186 .gpu_id = 630,
191 .gpu_id = 200,
196 .gpu_id = 201,
201 .gpu_id = 220,
206 .gpu_id = 305,
211 .gpu_id = 307,
216 .gpu_id = 320,
221 .gpu_id
272 int gpu_id = atoi(env); local in function:msm_driver_get_device_info
[all...]
/xsrc/external/mit/MesaLib/dist/src/freedreno/fdl/
H A Dfd_layout_test.h47 bool fdl_test_layout(const struct testcase *testcase, int gpu_id);
/xsrc/external/mit/MesaLib/dist/src/panfrost/include/
H A Dpanfrost-quirks.h82 panfrost_get_quirks(unsigned gpu_id, unsigned gpu_revision) argument
84 switch (gpu_id) {
/xsrc/external/mit/MesaLib/dist/src/panfrost/perf/
H A Dpan_perf.c51 get_perf_config(unsigned int gpu_id) argument
53 switch (gpu_id) {
82 perf->cfg = get_perf_config(dev->gpu_id);
/xsrc/external/mit/MesaLib/dist/src/freedreno/isa/
H A Disa.h45 uint32_t gpu_id; member in struct:isa_decode_options
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/
H A Dpan_assemble.c71 .gpu_id = dev->gpu_id,
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dcmdline.c40 unsigned gpu_id = 0x7212; variable in typeref:typename:unsigned
194 .gpu_id = gpu_id,
291 gpu_id = atoi(optarg);
293 if (!gpu_id) {
300 gpu_id = 0;
311 gpu_id = (major << 12) | (minor << 8);
315 if (!gpu_id) {
/xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/tests/
H A Ddisasm.c46 #define INSTR_5XX(i, d, ...) { .gpu_id = 540, .instr = #i, .expected = d, __VA_ARGS__ }
47 #define INSTR_6XX(i, d, ...) { .gpu_id = 630, .instr = #i, .expected = d, __VA_ARGS__ }
51 int gpu_id; member in struct:test
390 printf("Testing a%d %s: \"%s\"...\n", test->gpu_id, test->instr,
406 .gpu_id = test->gpu_id,
426 unsigned gen = test->gpu_id / 100;
428 dev_ids[gen].gpu_id = test->gpu_id;
/xsrc/external/mit/libdrm/dist/freedreno/msm/
H A Dmsm_pipe.c58 *value = msm_pipe->gpu_id;
192 msm_pipe->gpu_id = get_param(pipe, MSM_PARAM_GPU_ID);
196 if (! msm_pipe->gpu_id)
200 INFO_MSG(" GPU-id: %d", msm_pipe->gpu_id);
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/
H A Dcffdec.h45 unsigned gpu_id; member in struct:cffdec_options

Completed in 12 milliseconds

12345