Skip to content

Commit b24ed83

Browse files
hoshinolinajannau
authored andcommitted
drm/asahi: debug: Add PgTable debug category
Signed-off-by: Asahi Lina <lina@asahilina.net>
1 parent 909ee1d commit b24ed83

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

drivers/gpu/drm/asahi/debug.rs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ static DEBUG_FLAGS: AtomicU64 = AtomicU64::new(0);
1212

1313
/// Debug flag bit indices
1414
pub(crate) enum DebugFlags {
15-
// 0-3: Memory-related debug
15+
// 0-4: Memory-related debug
1616
Mmu = 0,
17-
Alloc = 1,
18-
Gem = 2,
19-
Object = 3,
20-
21-
// 4-7: Firmware objects and resources
22-
Event = 4,
23-
Buffer = 5,
24-
WorkQueue = 6,
17+
PgTable = 1,
18+
Alloc = 2,
19+
Gem = 3,
20+
Object = 4,
21+
22+
// 5-7: Firmware objects and resources
23+
Event = 5,
24+
Buffer = 6,
25+
WorkQueue = 7,
2526

2627
// 8-13: DRM interface, rendering, compute, GPU globals
2728
Gpu = 8,

0 commit comments

Comments
 (0)