-
Notifications
You must be signed in to change notification settings - Fork 5
/
XboxHelper.py
421 lines (328 loc) · 13.2 KB
/
XboxHelper.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
"""Various helper methods"""
# pylint: disable=missing-function-docstring
# pylint: disable=consider-using-f-string
# pylint: disable=chained-comparison
import atexit
from collections import namedtuple
from typing import Optional
from typing import Tuple
import time
DMAState = namedtuple(
"DMAState", ["non_increasing", "method", "subchannel", "method_count", "error"]
)
Method = namedtuple(
"Method", ["method", "subchannel", "method_count", "non_increasing"]
)
# For general information on PFIFO, see
# https://envytools.readthedocs.io/en/latest/hw/fifo/intro.html
# mmio blocks
NV2A_MMIO_BASE = 0xFD000000
BLOCK_PMC = 0x000000
BLOCK_PBUS = 0x001000
BLOCK_PFIFO = 0x002000
BLOCK_PRMA = 0x007000
BLOCK_PVIDEO = 0x008000
BLOCK_PTIMER = 0x009000
BLOCK_PCOUNTER = 0x00A000
BLOCK_PVPE = 0x00B000
BLOCK_PTV = 0x00D000
BLOCK_PRMFB = 0x0A0000
BLOCK_PRMVIO = 0x0C0000
BLOCK_PFB = 0x100000
BLOCK_PSTRAPS = 0x101000
BLOCK_PGRAPH = 0x400000
BLOCK_PCRTC = 0x600000
BLOCK_PRMCIO = 0x601000
BLOCK_PRAMDAC = 0x680000
BLOCK_PRMDIO = 0x681000
BLOCK_PRAMIN = 0x700000
BLOCK_USER = 0x800000
def _PFIFO(addr):
return NV2A_MMIO_BASE + BLOCK_PFIFO + addr
def _PGRAPH(addr):
return NV2A_MMIO_BASE + BLOCK_PGRAPH + addr
# Pushbuffer state
NV_PFIFO_CACHE1_DMA_STATE = 0x00001228
DMA_STATE = _PFIFO(NV_PFIFO_CACHE1_DMA_STATE)
# Pushbuffer write address
NV_PFIFO_CACHE1_DMA_PUT = 0x00001240
DMA_PUSH_ADDR = _PFIFO(NV_PFIFO_CACHE1_DMA_PUT)
# Pushbuffer read address
NV_PFIFO_CACHE1_DMA_GET = 0x00001244
DMA_PULL_ADDR = _PFIFO(NV_PFIFO_CACHE1_DMA_GET)
NV_PFIFO_CACHE1_DMA_SUBROUTINE = 0x0000124C
DMA_SUBROUTINE = _PFIFO(NV_PFIFO_CACHE1_DMA_SUBROUTINE)
NV_PFIFO_CACHE1_PUSH0 = 0x00001200
CACHE_PUSH_MASTER_STATE = _PFIFO(NV_PFIFO_CACHE1_PUSH0)
# CACHE write state
NV_PFIFO_CACHE1_DMA_PUSH = 0x00001220
CACHE_PUSH_STATE = _PFIFO(NV_PFIFO_CACHE1_DMA_PUSH)
# CACHE read state
NV_PFIFO_CACHE1_PULL0 = 0x00001250
CACHE_PULL_STATE = _PFIFO(NV_PFIFO_CACHE1_PULL0)
# CACHE write address
NV_PFIFO_CACHE1_PUT = 0x00001210
CACHE_PUSH_ADDR = _PFIFO(NV_PFIFO_CACHE1_PUT)
# CACHE read address
NV_PFIFO_CACHE1_GET = 0x00001270
CACHE_PULL_ADDR = _PFIFO(NV_PFIFO_CACHE1_GET)
NV_PFIFO_CACHE1_METHOD = 0x00001800
CACHE1_METHOD = _PFIFO(NV_PFIFO_CACHE1_METHOD)
NV_PFIFO_CACHE1_DATA = 0xFD003804
CACHE1_DATA = _PFIFO(NV_PFIFO_CACHE1_DATA)
NV_PFIFO_RAMHT = 0x00000210
RAM_HASHTABLE = _PFIFO(NV_PFIFO_RAMHT)
NV_PGRAPH_CTX_SWITCH1 = 0x0000014C
CTX_SWITCH1 = _PGRAPH(NV_PGRAPH_CTX_SWITCH1)
NV_PGRAPH_FIFO = 0x00000720
PGRAPH_STATE = _PGRAPH(NV_PGRAPH_FIFO)
NV_PGRAPH_STATUS = 0x00000700
PGRAPH_STATUS = _PGRAPH(NV_PGRAPH_STATUS)
NV_PGRAPH_TEXOFFSET0 = 0x00001A24
PGRAPH_TEXOFFSET0 = _PGRAPH(NV_PGRAPH_TEXOFFSET0)
NV_PGRAPH_TEXCTL0_0 = 0x000019CC
PGRAPH_TEXCTL0_0 = _PGRAPH(NV_PGRAPH_TEXCTL0_0)
NV_PGRAPH_TEXCTL1_0 = 0x000019DC
PGRAPH_TEXCTL1_0 = _PGRAPH(NV_PGRAPH_TEXCTL1_0)
NV_PGRAPH_TEXFMT0 = 0x00001A04
PGRAPH_TEXFMT0 = _PGRAPH(NV_PGRAPH_TEXFMT0)
def _free_allocation(xbox, address):
print("_free_allocation: Free'ing 0x%08X" % address)
xbox.ke.MmFreeContiguousMemory(address)
# Sleep to ensure the call is fully processed.
time.sleep(0.1)
print("_free_allocation: Freed")
def load_binary(xbox, data):
"""Loads arbitrary data into a new contiguous memory block on the xbox."""
data_len = len(data)
code_addr = xbox.ke.MmAllocateContiguousMemory(data_len)
print("load_binary: Allocated %d bytes at 0x%08X" % (data_len, code_addr))
atexit.register(_free_allocation, xbox, code_addr)
xbox.write(code_addr, data)
return code_addr
def parse_command(addr, word, display=False) -> Tuple[int, Optional[Method]]:
prefix = "0x%08X: Opcode: 0x%08X" % (addr, word)
if (word & 0xE0000003) == 0x20000000:
# state->get_jmp_shadow = control->dma_get;
# NV2A_DPRINTF("pb OLD_JMP 0x%" HWADDR_PRIx "\n", control->dma_get);
addr = word & 0x1FFFFFFC
print(prefix + "; old jump 0x%08X" % addr)
return addr, None
if (word & 3) == 1:
addr = word & 0xFFFFFFFC
print(prefix + "; jump 0x%08X" % addr)
# state->get_jmp_shadow = control->dma_get;
return addr, None
if (word & 3) == 2:
print(prefix + "; unhandled opcode type: call")
# if (state->subroutine_active) {
# state->error = NV_PFIFO_CACHE1_DMA_STATE_ERROR_CALL;
# break;
# }
# state->subroutine_return = control->dma_get;
# state->subroutine_active = true;
# control->dma_get = word & 0xfffffffc;
return 0, None
if word == 0x00020000:
# return
print(prefix + "; unhandled opcode type: return")
return 0, None
masked = word & 0xE0030003
is_method_increasing = not masked
is_method_non_increasing = masked == 0x40000000
if is_method_increasing or is_method_non_increasing:
# Should method be (word >> 2) & 0x7ff?
# See https://envytools.readthedocs.io/en/latest/hw/fifo/dma-pusher.html#fifo-dma-pusher
info = Method(
method=word & 0x1FFF,
subchannel=(word >> 13) & 7,
method_count=(word >> 18) & 0x7FF,
non_increasing=is_method_non_increasing,
)
# state->dcount = 0;
if display:
print(
prefix
+ "; Method: 0x%04X (%d times)" % (info.method, info.method_count)
)
addr += 4 + info.method_count * 4
return addr, info
print(prefix + "; unknown opcode type")
return addr, None
class XboxHelper:
"""Provides various functions for interaction with XBOX"""
def __init__(self, xbox):
self.xbox = xbox
self.ramht_offset = 0
self.ramht_size = 0
def delay(self):
# FIXME: if this returns `True`, the functions below should have their own
# loops which check for command completion
# time.sleep(0.01)
return False
def disable_pgraph_fifo(self):
state = self.xbox.read_u32(PGRAPH_STATE)
self.xbox.write_u32(PGRAPH_STATE, state & 0xFFFFFFFE)
def wait_until_pgraph_idle(self):
while self.xbox.read_u32(PGRAPH_STATUS) & 0x00000001:
time.sleep(0.001)
def enable_pgraph_fifo(self):
state = self.xbox.read_u32(PGRAPH_STATE)
self.xbox.write_u32(PGRAPH_STATE, state | 0x00000001)
if self.delay():
pass
def pause_fifo_puller(self):
"""Disable the PFIFO puller"""
state_s1 = self.xbox.read_u32(CACHE_PULL_STATE)
self.xbox.write_u32(CACHE_PULL_STATE, state_s1 & 0xFFFFFFFE)
if self.delay():
pass
# print("Puller State was 0x" + format(state_s1, '08X'))
def resume_fifo_puller(self):
"""Enable the PFIFO puller"""
state_s2 = self.xbox.read_u32(CACHE_PULL_STATE)
self.xbox.write_u32(
CACHE_PULL_STATE, (state_s2 & 0xFFFFFFFE) | 1
) # Recover puller state
if self.delay():
pass
def wait_until_pusher_idle(self):
"""Busy wait until the PFIFO pusher stops being busy"""
while self.xbox.read_u32(CACHE_PUSH_STATE) & (1 << 4):
pass
def pause_fifo_pusher(self):
"""Disable the PFIFO pusher"""
# Must be kept in sync with method used in kick_fifo.asm
state = self.xbox.read_u32(CACHE_PUSH_STATE)
self.xbox.write_u32(CACHE_PUSH_STATE, state & 0xFFFFFFFE)
if self.delay():
pass
def resume_fifo_pusher(self):
"""Enable the PFIFO pusher"""
# Must be kept in sync with method used in kick_fifo.asm
state = self.xbox.read_u32(CACHE_PUSH_STATE)
self.xbox.write_u32(
CACHE_PUSH_STATE, (state & 0xFFFFFFFE) | 1
) # Recover pusher state
if self.delay():
pass
def allow_populate_fifo_cache(self):
"""Temporarily enable the PFIFO pusher to populate the CACHE
It is assumed that the pusher was previously paused, and it will be paused on
exit.
"""
self.resume_fifo_pusher()
time.sleep(0.05)
self.pause_fifo_pusher()
def _dump_pb(self, start, end):
offset = start
while offset != end:
word = self.xbox.read_u32(0x80000000 | offset)
offset, _method = parse_command(offset, word, True)
if offset == 0:
break
def print_enable_states(self):
"""Prints out the states of PGRAPH and the PFIFO push/pull registers."""
print("Enable states:")
print(f" PGRAPH: {self.is_pgraph_enabled()}")
print(f" Push: {self.is_cache_push_master_enabled()}")
print(
f" DMA_Push: {self.is_cache_push_dma_enabled()} (Busy: {self.is_cache_push_dma_busy()} Empty: {self.is_cache_push_dma_buffer_empty()})"
)
print(f" DMA_Pull: {self.is_cache_pull_dma_enabled()}")
# FIXME: This works poorly if the method count is not 0
def print_pb_state(self):
dma_pull_addr = self.xbox.read_u32(DMA_PULL_ADDR)
dma_push_addr = self.xbox.read_u32(DMA_PUSH_ADDR)
dma_subroutine = self.xbox.read_u32(DMA_SUBROUTINE)
print(
"PB-State: Pull: 0x%08X Push: 0x%08X Sub: 0x%08X"
% (dma_pull_addr, dma_push_addr, dma_subroutine)
)
self._dump_pb(dma_pull_addr, dma_push_addr)
print()
def print_cache_state(self, print_contents=False):
pull_addr = self.xbox.read_u32(CACHE_PULL_ADDR)
push_addr = self.xbox.read_u32(CACHE_PUSH_ADDR)
pull_state = self.xbox.read_u32(CACHE_PULL_STATE)
push_state = self.xbox.read_u32(CACHE_PUSH_STATE)
print("CACHE-State: PULL: 0x%X PUSH: 0x%X" % (pull_addr, push_addr))
print("Put / Pusher enabled: %s" % ("Yes" if (push_state & 1) else "No"))
print("Get / Puller enabled: %s" % ("Yes" if (pull_state & 1) else "No"))
if print_contents:
print("Cache:")
# JFR: This is intentionally read in a loop as behavior is dependent on the
# implementation of xboxpy's `read`.
for i in range(128):
cache1_method = self.xbox.read_u32(CACHE1_METHOD + i * 8)
cache1_data = self.xbox.read_u32(CACHE1_DATA + i * 8)
output = " [0x%02X] 0x%04X (0x%08X)" % (i, cache1_method, cache1_data)
pull_offset = i * 8 - pull_addr
if pull_offset >= 0 and pull_offset < 8:
output += " < get[%d]" % pull_offset
push_offset = i * 8 - push_addr
if push_offset >= 0 and push_offset < 8:
output += " < put[%d]" % push_offset
print(output)
print()
def print_dma_addresses(self):
push_addr = self.get_dma_push_address()
pull_addr = self.get_dma_pull_address()
print("DMA: PULL: 0x%X PUSH: 0x%X" % (pull_addr, push_addr))
def print_dma_state(self):
state = self.parse_dma_state()
print("dma_method: 0x%04X (count: %d)" % (state.method, state.method_count))
def is_cache_empty(self):
"""Returns True if the CACHE is currently empty."""
pull_addr = self.xbox.read_u32(CACHE_PULL_ADDR)
push_addr = self.xbox.read_u32(CACHE_PUSH_ADDR)
return pull_addr == push_addr
def fetch_ramht(self):
ht = self.xbox.read_u32(RAM_HASHTABLE)
NV_PFIFO_RAMHT_BASE_ADDRESS = 0x000001F0
NV_PFIFO_RAMHT_SIZE = 0x00030000
offset = (ht & NV_PFIFO_RAMHT_BASE_ADDRESS) << 12
size = 1 << (((ht & NV_PFIFO_RAMHT_SIZE) >> 16) + 12)
self.ramht_offset = offset
self.ramht_size = size
print("RAMHT: 0x%X - Base addr 0x%X size: %d" % (ht, offset, size))
def fetch_graphics_class(self):
"""Returns the target graphics class."""
ctx_switch_1 = self.xbox.read_u32(CTX_SWITCH1)
return ctx_switch_1 & 0xFF
def parse_dma_state(self):
dma_state = self.xbox.read_u32(DMA_STATE)
ret = DMAState(
non_increasing=dma_state & 0x01,
method=(dma_state >> 2) & 0x1FFF,
subchannel=(dma_state >> 13) & 0x07,
method_count=(dma_state >> 18) & 0x7FF,
error=(dma_state >> 29) & 0x07,
)
return ret
def is_cache_push_master_enabled(self):
return bool(self.xbox.read_u32(CACHE_PUSH_MASTER_STATE) & 0x01)
def is_cache_push_dma_enabled(self):
return bool(self.xbox.read_u32(CACHE_PUSH_STATE) & 0x01)
def is_cache_push_dma_busy(self):
return bool(self.xbox.read_u32(CACHE_PUSH_STATE) & 0x10)
def is_cache_push_dma_buffer_empty(self):
return bool(self.xbox.read_u32(CACHE_PUSH_STATE) & 0x100)
def is_cache_pull_dma_enabled(self):
return bool(self.xbox.read_u32(CACHE_PULL_STATE) & 0x01)
def is_pgraph_enabled(self):
return bool(self.xbox.read_u32(PGRAPH_STATE) & 0x01)
def get_dma_push_address(self):
return self.xbox.read_u32(DMA_PUSH_ADDR)
def get_dma_pull_address(self):
return self.xbox.read_u32(DMA_PULL_ADDR)
def set_dma_push_address(self, target):
self.xbox.write_u32(DMA_PUSH_ADDR, target)
def apply_anti_aliasing_factor(surface_anti_aliasing, x, y):
if surface_anti_aliasing == 0:
return x, y
if surface_anti_aliasing == 1:
return x * 2, y
if surface_anti_aliasing == 2:
return x * 2, y * 2
assert False