| /* |
| * Copyright © 2020 Valve Corporation |
| * SPDX-License-Identifier: MIT |
| * |
| */ |
| |
| #include "freedreno_dev_info.h" |
| #include "util/macros.h" |
| |
| /** |
| * Table entry for a single GPU version |
| */ |
| struct fd_dev_rec { |
| struct fd_dev_id id; |
| const char *name; |
| const struct fd_dev_info *info; |
| }; |
| |
| #include "freedreno_devices.h" |
| |
| /** |
| * Compare device 'id' against reference id ('ref') from gpu table. |
| */ |
| static bool |
| dev_id_compare(const struct fd_dev_id *ref, const struct fd_dev_id *id) |
| { |
| if (ref->gpu_id && id->gpu_id) { |
| return ref->gpu_id == id->gpu_id; |
| } else { |
| if (!id->chip_id) |
| return false; |
| |
| /* Match on either: |
| * (a) exact match: |
| */ |
| if (ref->chip_id == id->chip_id) |
| return true; |
| /* (b) device table entry has 0xff wildcard patch_id and core/ |
| * major/minor match: |
| */ |
| if (((ref->chip_id & 0xff) == 0xff) && |
| ((ref->chip_id & UINT64_C(0xffffff00)) == |
| (id->chip_id & UINT64_C(0xffffff00)))) |
| return true; |
| #define WILDCARD_FUSE_ID UINT64_C(0x0000ffff00000000) |
| /* If the reference id has wildcard fuse-id value (ie. bits 47..32 |
| * are all ones, then try matching ignoring the device fuse-id: |
| */ |
| if ((ref->chip_id & WILDCARD_FUSE_ID) == WILDCARD_FUSE_ID) { |
| uint64_t chip_id = id->chip_id | WILDCARD_FUSE_ID; |
| /* (c) exact match (ignoring the fuse-id from kernel): |
| */ |
| if (ref->chip_id == chip_id) |
| return true; |
| /* (d) device table entry has 0xff wildcard patch_id and core/ |
| * major/minor match (ignoring fuse-id from kernel): |
| */ |
| if (((ref->chip_id & 0xff) == 0xff) && |
| ((ref->chip_id & UINT64_C(0xffffff00)) == |
| (chip_id & UINT64_C(0xffffff00)))) |
| return true; |
| } |
| return false; |
| } |
| } |
| |
| const struct fd_dev_info * |
| fd_dev_info_raw(const struct fd_dev_id *id) |
| { |
| for (int i = 0; i < ARRAY_SIZE(fd_dev_recs); i++) { |
| if (dev_id_compare(&fd_dev_recs[i].id, id)) { |
| return fd_dev_recs[i].info; |
| } |
| } |
| return NULL; |
| } |
| |
| const struct fd_dev_info |
| fd_dev_info(const struct fd_dev_id *id) |
| { |
| struct fd_dev_info modified = {}; |
| const struct fd_dev_info *orig = fd_dev_info_raw(id); |
| if (orig) { |
| modified = *orig; |
| fd_dev_info_apply_dbg_options(&modified); |
| } |
| |
| return modified; |
| } |
| |
| const struct fd_dev_info * |
| fd_dev_info_raw_by_name(const char *name) |
| { |
| for (int i = 0; i < ARRAY_SIZE(fd_dev_recs); i++) { |
| if (!strcmp(fd_dev_recs[i].name, name)) { |
| return fd_dev_recs[i].info; |
| } |
| } |
| |
| return NULL; |
| } |
| |
| const char * |
| fd_dev_name(const struct fd_dev_id *id) |
| { |
| for (int i = 0; i < ARRAY_SIZE(fd_dev_recs); i++) { |
| if (dev_id_compare(&fd_dev_recs[i].id, id)) { |
| return fd_dev_recs[i].name; |
| } |
| } |
| return NULL; |
| } |