mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-11 10:07:05 +00:00
m1n1.fw.agx.initdata: Updates for 13.0b4 support
Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
parent
6a99f397de
commit
e8ce458dd5
2 changed files with 405 additions and 125 deletions
|
@ -40,6 +40,8 @@ def build_initdata(agx):
|
||||||
|
|
||||||
initdata = agx.kshared.new(InitData)
|
initdata = agx.kshared.new(InitData)
|
||||||
|
|
||||||
|
initdata.ver_info = (1, 1, 16, 1)
|
||||||
|
|
||||||
initdata.regionA = agx.kshared.new_buf(0x4000, "InitData_RegionA").push()
|
initdata.regionA = agx.kshared.new_buf(0x4000, "InitData_RegionA").push()
|
||||||
|
|
||||||
regionB = agx.kobj.new(InitData_RegionB)
|
regionB = agx.kobj.new(InitData_RegionB)
|
||||||
|
@ -50,7 +52,9 @@ def build_initdata(agx):
|
||||||
regionB.stats_3d = agx.kobj.new(InitData_GPUGlobalStats3D).push()
|
regionB.stats_3d = agx.kobj.new(InitData_GPUGlobalStats3D).push()
|
||||||
|
|
||||||
# size: 0x180, Empty
|
# size: 0x180, Empty
|
||||||
regionB.stats_cp = agx.kobj.new_buf(0x180, "RegionB.unkptr_180").push()
|
# 13.0: grew
|
||||||
|
#regionB.stats_cp = agx.kobj.new_buf(0x180, "RegionB.unkptr_180").push()
|
||||||
|
regionB.stats_cp = agx.kobj.new_buf(0x980, "RegionB.unkptr_180").push()
|
||||||
|
|
||||||
# size: 0x3b80, few floats, few ints, needed for init
|
# size: 0x3b80, few floats, few ints, needed for init
|
||||||
regionB.hwdata_a = agx.kobj.new(AGXHWDataA, track=False).push()
|
regionB.hwdata_a = agx.kobj.new(AGXHWDataA, track=False).push()
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue