Lines Matching full:specs
188 u32 specs[4]; in etnaviv_hw_specs() local
191 specs[0] = gpu_read(gpu, VIVS_HI_CHIP_SPECS); in etnaviv_hw_specs()
192 specs[1] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_2); in etnaviv_hw_specs()
193 specs[2] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_3); in etnaviv_hw_specs()
194 specs[3] = gpu_read(gpu, VIVS_HI_CHIP_SPECS_4); in etnaviv_hw_specs()
196 gpu->identity.stream_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
198 gpu->identity.register_max = etnaviv_field(specs[0], in etnaviv_hw_specs()
200 gpu->identity.thread_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
202 gpu->identity.vertex_cache_size = etnaviv_field(specs[0], in etnaviv_hw_specs()
204 gpu->identity.shader_core_count = etnaviv_field(specs[0], in etnaviv_hw_specs()
206 gpu->identity.pixel_pipes = etnaviv_field(specs[0], in etnaviv_hw_specs()
209 etnaviv_field(specs[0], in etnaviv_hw_specs()
212 gpu->identity.buffer_size = etnaviv_field(specs[1], in etnaviv_hw_specs()
214 gpu->identity.instruction_count = etnaviv_field(specs[1], in etnaviv_hw_specs()
216 gpu->identity.num_constants = etnaviv_field(specs[1], in etnaviv_hw_specs()
219 gpu->identity.varyings_count = etnaviv_field(specs[2], in etnaviv_hw_specs()
223 streams = etnaviv_field(specs[3], in etnaviv_hw_specs()