From 53cab7e445e5ddbff9194ee5d2d9ddd3c6611efd Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Mon, 1 Jun 2026 21:45:52 +0300 Subject: [PATCH] =?UTF-8?q?intel:=20Phase=207+8=20=E2=80=94=20debug/observ?= =?UTF-8?q?ability=20and=20GuC=20submission?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - hangcheck.rs: GpuErrorState struct with full register snapshot - guc.rs: CTB channels (H2G/G2H) with GGTT descriptors, ADS setup - mod.rs: wire CTB init and ADS setup after GuC firmware upload --- local/recipes/gpu/redox-drm/source/src/drivers/intel/guc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/recipes/gpu/redox-drm/source/src/drivers/intel/guc.rs b/local/recipes/gpu/redox-drm/source/src/drivers/intel/guc.rs index 04bc7554d3..7934050473 100644 --- a/local/recipes/gpu/redox-drm/source/src/drivers/intel/guc.rs +++ b/local/recipes/gpu/redox-drm/source/src/drivers/intel/guc.rs @@ -244,7 +244,7 @@ impl GucFirmware { pub fn init_ctb_channels(&mut self, gtt: &mut IntelGtt) -> Result<()> { if !self.loaded { return Err(DriverError::Initialization( - "cannot init CTB before GuC firmware is loaded", + "cannot init CTB before GuC firmware is loaded".into(), )); }