summaryrefslogtreecommitdiff
path: root/tools/proxyclient/experiments/agx_boot.py
blob: b5d668c8425fee35be06bfe94205ee8c88420577 (plain)
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
#!/usr/bin/env python3
# SPDX-License-Identifier: MIT

import sys, pathlib
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))

from m1n1.setup import *
from m1n1.constructutils import Ver
from m1n1.utils import *

Ver.set_version(u)

from m1n1.shell import run_shell

from m1n1.fw.agx import Agx

p.pmgr_adt_clocks_enable("/arm-io/gfx-asc")
p.pmgr_adt_clocks_enable("/arm-io/sgx")

agx = Agx(u)
agx.verbose = 10

#agx.uat.dump(0)

agx.build_initdata()

run_shell(globals(), msg="Have fun!")