File: gen-amdgpuids.py

package info (click to toggle)
fastfetch 2.55.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,692 kB
  • sloc: ansic: 65,950; cpp: 1,716; python: 274; sh: 123; makefile: 26; xml: 19
file content (43 lines) | stat: -rwxr-xr-x 1,070 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python3

import sys

def main(amdgpu_ids_path: str):
    with open(amdgpu_ids_path, 'r') as f:
        full_text = f.read()

    products = []
    for line in full_text.split('\n'):
        if not line or line[0] == '#' or not ',\t' in line:
            continue
        device, revision, name = line.split(',\t', maxsplit=2)
        products.append((device, revision, name))

    code = """\
// SPDX-License-Identifier: MIT
// https://opensource.org/license/mit
// Generated from https://gitlab.freedesktop.org/mesa/drm/-/raw/main/data/amdgpu.ids

#include <stdint.h>
#include <stddef.h>

typedef struct FFArmGpuProduct
{
    const uint32_t id; // device << 8 | revision
    const char* name;
} FFArmGpuProduct;

const FFArmGpuProduct ffAmdGpuProducts[] = {
"""

    for device, revision, name in products:
        code += f"    {{ 0x{device} << 8 | 0x{revision}, \"{name}\" }},\n"

    code += "};\n"

    print(code)

if __name__ == '__main__':
    len(sys.argv) == 2 or sys.exit('Usage: gen-amdgpuids.py </path/to/amdgpu.ids>')

    main(sys.argv[1])