Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 2fcf8acc | 2025-08-01 20:39:26 | replace ieee80211_chan2mode() with ieee80211_node_abg_mode() chan2mode() did not detect 11g APs properly. This can be fixed now that we are setting the ERP flag in client mode, not only in hostap mode. In 11g mode chan2mode() was wrongly selecting 11g mode for 11b-only peers. The CHAN_ANYC case of chan2mode() was irrelevant for all callers. Replace chan2mode() with node_abg_mode() which does not have these issues. ok phessler@, mpi@ | ||
| da1838fe | 2025-08-01 14:41:03 | virtio: Allow DMA mem above 4G Allow to use memory above 4G on amd64 for virtio rings and descriptors. This may reduce pressure on dma-able memory a bit. For the virtio ring address, virtio 0.9 has a 2^44 limit. Use bus_dmamem_alloc_range there. With input from kettenis@ ok mlarkin@ | ||
| cb633255 | 2025-08-01 14:37:06 | Remove a double space | ||
| 70f22647 | 2025-08-01 09:13:11 | replace ieee80211_iserp_sta() with a check for the 11g xrates info element ok phessler@ | ||
| 06704040 | 2025-08-01 08:55:09 | Fix typo in comment. Some jokes from job@ and deraadt@ indicates that they are ok | ||
| 3b565b65 | 2025-07-31 19:19:25 | vioscsi: Get max_luns from host Get the max_luns value from the host. Take care not to overflow the uint8_t saa_luns With input from krw@ | ||
| 6e8c2ffc | 2025-07-31 15:39:51 | If loadfirmware(9) can't find a file, print the correct filename of the missing file. ok kettenis@, miod@ | ||
| 5b6ddc98 | 2025-07-31 15:07:59 | Fix sleeping race in dt(4) ioctl(2). Functions dt_ioctl_record_start() and dt_ioctl_record_stop() are protected by kernel lock. This means there should be no sleeps as they release the kernel lock. rw_enter_write() may sleep which breaks the locking assumptions. Enlarge the critical section within sleeping lock to the beginning. This gives the benefit that more variables are protected by dt_lock. Reported-by: syzbot+34f860f29dc941cfb548@syzkaller.appspotmail.com OK sashan@ | ||
| 9af86e4b | 2025-07-31 11:03:37 | use correct variable for malloc size ok kettenis@ | ||
| 512b151a | 2025-07-31 10:23:20 | Hook up scmi perf protocol to cpu_setperf and cpu_clockspeed hooks. This makes apm and hw.cpuspeed work on Snapdragon X Elite machines. tested by landry@ ok kettenis@ | ||
| ac3ffa85 | 2025-07-31 10:00:01 | Add background scan and roaming support to qwx(4). tests + ok phessler, landry, kevlo | ||
| c9146829 | 2025-07-31 09:56:00 | Do not blindly dereference pointers via an MSDU ID provided by qwx firmware. Check Tx data mbuf and node pointers for NULL before using them, just in case firmware ever sends us multiple events for the same MSDU. | ||
| b280da72 | 2025-07-31 09:30:17 | plug a node reference leak in qwx_dp_tx_free_txbuf() ok phessler, kevlo | ||
| 863e5367 | 2025-07-28 13:24:26 | drm/amd/display: Free memory allocation From Clayton King 084eb54b820f737652a0f35ccae67a579b69b0c8 in linux-6.12.y/6.12.40 b2ee9fa0fe6416e16c532f61b909c79b5d4ed282 in mainline linux | ||
| 0baf6140 | 2025-07-28 13:22:03 | drm/amd/display: Disable CRTC degamma LUT for DCN401 From Melissa Wen 74162dda80e7dacffa9642d113fbfdecac01fe79 in linux-6.12.y/6.12.40 97a0f2b5f4d4afcec34376e4428e157ce95efa71 in mainline linux | ||
| 665b03b0 | 2025-07-28 13:19:55 | drm/amdgpu: Increase reset counter only on success From Lijo Lazar 62f2a58a4cb087f7e06472ae915826485b2dd596 in linux-6.12.y/6.12.40 86790e300d8b7bbadaad5024e308c52f1222128f in mainline linux | ||
| d92452c3 | 2025-07-28 13:17:53 | drm/amdgpu/gfx8: reset compute ring wptr on the GPU on resume From Eeli Haapalainen 228ad2ab5b333596ec58bdf925c0bdc8f68365e1 in linux-6.12.y/6.12.40 83261934015c434fabb980a3e613b01d9976e877 in mainline linux | ||
| 83db19b6 | 2025-07-25 05:18:05 | correct size argument to free(9) in an error path ok bluhm@ | ||
| d0e000a4 | 2025-07-24 13:41:12 | Prevent qwx from generating an invalid firmware command when roaming. When roaming between 2GHz and 5GHz bands, ic_curmode may still be set to a mode based on the previous AP's channel. Avoid generating an invalid firwmare command in this case by setting the command's mode flags based on the target AP's channel characteristics instead of our currently configured media mode. Prevents a fatal firmware error while roaming between bands. ok phessler@ | ||
| 24bd9380 | 2025-07-24 13:26:54 | avoid use of stale scan results in qwx after RUN->SCAN transitions Also, use a better condition check for aborting a currently running scan. ok phessler@ | ||
| 909bf2a8 | 2025-07-24 13:24:58 | store qwx ath11k peer structures on a dedicated list rather than in nodes This is a prequisite for roaming, because ic_bss will be overwritten with our next AP's information when we are going to roam. Tearing down the old connection in firmware requires information about our previous AP, which now remains available in the peer data structure. ok phessler@ | ||
| 197a5f0d | 2025-07-24 10:52:35 | fix build with QWX_DEBUG defined | ||
| d89f19b3 | 2025-07-23 01:14:54 | test malloc return against NULL not 0 | ||
| 7a953c5f | 2025-07-22 14:42:46 | correct type argument to free(9) in an error path ok kettenis@ | ||
| 39026f54 | 2025-07-21 21:46:40 | imt/umt(4): Fix the match() and attach() functions. The way imt(4) and umt(4) search for HID report IDs is broken; hid_is_collection() is not suitable for that task. Add a better helper function to hid.c and adapt hidmt, imt, and umt to make use of it. Thanks to Thomas Dettbarn for reporting the problem. "makes (some) sense" to kettenis@ | ||
| cb8c08e5 | 2025-07-21 20:36:41 | Add dt(4) trace points to rwlock(9). To analyze lock contention, add tracepoints ro read/write lock implementation. This is done similar to reference count tracing. The trace points have arguments that allow filtering by read/write and immediately/spinning/sleeping/failed lock. For now, net lock and socket lock are enhanced. To activate the feature for additional locks, use the initializer with _trace suffix. OK mvs@ | ||
| 0f6c6b0b | 2025-07-21 11:35:41 | Linux changed the debug categories into an enum of bit positions some time ago. Adapt our DRMDEBUG code to follow that convention. ok jsg@ | ||
| df9e6335 | 2025-07-20 23:13:21 | match on Lunar Lake SMBus; ok jsg@ | ||
| 09661d5a | 2025-07-18 17:34:29 | Wipe out WSEVENT_MPSAFE logic. All wsevent_filtops are mp-safe for a long time. We don't need it anymore. ok bluhm | ||
| 1c3415b2 | 2025-07-18 16:09:28 | load the correct iwx(4) firmware on QuZ devices which use RF JF1/JF2 problem reported by Prateek Kumar | ||
| f7689e02 | 2025-07-18 00:15:45 | drm/framebuffer: Acquire internal references on GEM handles From Thomas Zimmermann 065bd940ee0a0033ea9a7dbb1a9110baef9415a4 in linux-6.12.y/6.12.39 f6bfc9afc7510cb5e6fbe0a17c507917b0120280 in mainline linux | ||
| 8367bbdb | 2025-07-18 00:12:49 | drm/gem: Fix race in drm_gem_handle_create_tail() From Simona Vetter 2d2f07a9948756acdcd8aed14b4596482f51ac0f in linux-6.12.y/6.12.39 bd46cece51a36ef088f22ef0416ac13b0a46d5b0 in mainline linux | ||
| 922ea2e7 | 2025-07-18 00:09:22 | drm/ttm: fix error handling in ttm_buffer_object_transfer From Christian Koenig 38df1a5053bc8b2a1ba3aae562187304819a5ad0 in linux-6.12.y/6.12.39 97e000acf2e20a86a50a0ec8c2739f0846f37509 in mainline linux | ||
| f4ac7157 | 2025-07-18 00:07:17 | drm/sched: Increment job count before swapping tail spsc queue From Matthew Brost e2d6547dc8b9b332f9bc00875197287a6a4db65a in linux-6.12.y/6.12.39 8af39ec5cf2be522c8eb43a3d8005ed59e4daaee in mainline linux | ||
| 7ff7c4dd | 2025-07-18 00:04:27 | drm/gem: Acquire references on GEM handles for framebuffers From Thomas Zimmermann 08480e285c6a82ce689008d643e4a51db0aaef8b in linux-6.12.y/6.12.39 5307dce878d4126e1b375587318955bd019c3741 in mainline linux | ||
| 03d0e628 | 2025-07-18 00:00:45 | drm/amdkfd: Don't call mmput from MMU notifier callback From Philip Yang e90ee15ce28c61f6d83a0511c3e02e2662478350 in linux-6.12.y/6.12.39 cf234231fcbc7d391e2135b9518613218cc5347f in mainline linux | ||
| 121f1399 | 2025-07-17 23:58:24 | drm/amdgpu: Replace Mutex with Spinlock for RLCG register access to avoid Priority Inversion in SRIOV From Srinivasan Shanmugam 07ed75bfa7ede8bfcfa303fd6efc85db1c8684c7 in linux-6.12.y/6.12.39 dc0297f3198bd60108ccbd167ee5d9fa4af31ed0 in mainline linux | ||
| 7a1bc565 | 2025-07-17 23:53:31 | drm/amdgpu/ip_discovery: add missing ip_discovery fw From Flora Cui 04513cf1581bfcd1f87fa50f9f96b601c8b536b9 in linux-6.12.y/6.12.39 2f6dd741cdcdadb9e125cc66d4fcfbe5ab92d36a in mainline linux | ||
| 0f03abdd | 2025-07-17 23:51:46 | drm/amdgpu/discovery: use specific ip_discovery.bin for legacy asics From Flora Cui 39d6a607d531b05840cd095eaf0d93a0026406dc in linux-6.12.y/6.12.39 25f602fbbcc8271f6e72211b54808ba21e677762 in mainline linux | ||
| c67e5956 | 2025-07-17 15:52:10 | Add initial support for the MSM Mobile Display Subsystem. This initial support brings us support for the AUX channel of the DisplayPort controllers. This in turn fives us support for backlight control on eDP panels. ok tobhe@ | ||
| 5146e8bb | 2025-07-17 09:19:21 | make ice(4) match on E823-L devices tested by me on E823-L with a 10G RJ45 transceiver | ||
| 8d468653 | 2025-07-17 09:17:15 | set MAC type to "generic" for E823-L ice(4) devices | ||
| 6898454a | 2025-07-16 11:50:45 | regen | ||
| f63ef3c0 | 2025-07-16 11:50:21 | add E823-L PCI device IDs | ||
| 9cd3d795 | 2025-07-15 20:27:59 | hidmt: separate contact inputs correctly When processing input reports, hidmt_input identifies groups of contact- level items by checking for the repetition of an item type - the first type it has encountered in the report. This fails for reports starting with report-level items, which only occur once. The 'firstu' value must not be set to a report-level type. Thanks to Thomas Dettbarn for analyzing and reporting the problem. ok stsp@ | ||
| 86f69b9e | 2025-07-15 13:40:02 | spelling | ||
| ed03f77d | 2025-07-14 23:49:48 | regen | ||
| 3dad5630 | 2025-07-14 23:49:08 | spelling | ||
| f27f1407 | 2025-07-14 23:22:44 | spelling; ok stsp@ | ||
| 5df3a38c | 2025-07-14 12:00:12 | add missing malloc return value checks and plug minor memory leaks in hidmt ok bru@ | ||
| 554dd12e | 2025-07-14 11:52:43 | Reorder checks for I210/I350 chips so that we don't remove the last 4 bytes of the packet if they happen to be split across an mbuf boundary, as these always strip the CRC before the driver sees it. all the hard work figuring out what was happening done by dtucker@ tested on I210 by dtucker@ and kevlo@, on I350 by me and hrvoje ok kevlo@ stsp@ | ||
| 40f5da33 | 2025-07-14 10:13:54 | Monochome -> Monochrome | ||
| 9c5d53a6 | 2025-07-14 03:19:04 | drm/amdgpu/mes: add missing locking in helper functions From Alex Deucher 7ccaa5fa5d25d53c66fb740964b23d9f98f72d32 in linux-6.12.y/6.12.37 40f970ba7a4ab77be2ffe6d50a70416c8876496a in mainline linux | ||
| 109e819b | 2025-07-14 03:17:09 | drm/amd/display: Add more checks for DSC / HUBP ONO guarantees From Nicholas Kazlauskas 646442758910d13f9afc57f38bc0a537c3575390 in linux-6.12.y/6.12.37 0d57dd1765d311111d9885346108c4deeae1deb4 in mainline linux | ||
| 4e04da6c | 2025-07-14 03:14:35 | drm/amdgpu: add kicker fws loading for gfx11/smu13/psp13 From Frank Min 81ebb8d755d9781ffba0c0a4dbdcfac31d421c23 in linux-6.12.y/6.12.37 854171405e7f093532b33d8ed0875b9e34fc55b4 in mainline linux | ||
| 23836647 | 2025-07-14 03:11:59 | drm/i915/dp_mst: Work around Thunderbolt sink disconnect after SINK_COUNT_ESI read From Imre Deak 710deaff6aebd5c23e307f03e62bb02e23989ab7 in linux-6.12.y/6.12.37 9cb15478916e849d62a6ec44b10c593b9663328c in mainline linux | ||
| 40f26cfb | 2025-07-14 03:08:52 | drm/amdgpu: VCN v5_0_1 to prevent FW checking RB during DPG pause From Sonny Jiang b47a1f9323c2085940599fb292902f27cf2247a1 in linux-6.12.y/6.12.37 46e15197b513e60786a44107759d6ca293d6288c in mainline linux | ||
| 110fb03b | 2025-07-14 03:05:43 | drm/i915/gsc: mei interrupt top half should be in irq disabled context From Junxiao Chang 6a17e0d27fbe0dd6f3061aa627e61b4ac7afbb95 in linux-6.12.y/6.12.37 8cadce97bf264ed478669c6f32d5603b34608335 in mainline linux | ||
| 29628dfb | 2025-07-14 03:03:22 | drm/i915/gt: Fix timeline left held on VMA alloc error From Janusz Krzysztofik 5a7ae7bebdc4c2ecd48a2c061319956f65c09473 in linux-6.12.y/6.12.37 a5aa7bc1fca78c7fa127d9e33aa94a0c9066c1d6 in mainline linux | ||
| 741a85db | 2025-07-14 03:01:16 | drm/i915/selftests: Change mock_request() to return error pointers From Dan Carpenter 9d4064787d8d11f69b01fd9d08bb7fd248041a56 in linux-6.12.y/6.12.37 caa7c7a76b78ce41d347003f84975125383e6b59 in mainline linux | ||
| 7674e898 | 2025-07-11 01:17:42 | avoid unused variable warning on gcc4 | ||
| 8ba5287a | 2025-07-11 00:55:08 | drm/amdkfd: Fix instruction hazard in gfx12 trap handler From Jay Cornwall 725a59d29adb517cc197763edbe91606fc564d6f in linux-6.12.y/6.12.36 424648c3838133f93a34fdfe4f9d5597551e7b3b in mainline linux | ||
| 55ed7455 | 2025-07-11 00:53:27 | drm/amdkfd: remove gfx 12 trap handler page size cap From Jonathan Kim 6c7dc7ad867c14638cadfe9c0a2e93d2507002c7 in linux-6.12.y/6.12.36 cd82f29ec51b2e616289db7b258a936127c16efa in mainline linux | ||
| 41ecc0f3 | 2025-07-11 00:51:33 | drm/fbdev-dma: Add shadow buffering for deferred I/O From Thomas Zimmermann 0d087de947babf7ed70029d042abcc6ed06ff415 in linux-6.12.y/6.12.36 3603996432997f7c88da37a97062a46cda01ac9d in mainline linux | ||
| 068991ae | 2025-07-11 00:49:27 | drm/amd/display: Fix mpv playback corruption on weston From Alex Hung 8cd7ee9cd7decf195a4fa0098a1a0308d85f9ad9 in linux-6.12.y/6.12.36 8724a5380c4390eed81e271d22f34ff06453ded9 in mainline linux | ||
| 7a6e2c31 | 2025-07-11 00:47:02 | drm/amdgpu: switch job hw_fence to amdgpu_fence From Alex Deucher 5f2e040f19c4d73496ac8c32f2c441a6146430c9 in linux-6.12.y/6.12.36 ebe43542702c3d15d1a1d95e8e13b1b54076f05a in mainline linux | ||
| 5199a02a | 2025-07-11 00:43:54 | drm/amdgpu: Fix SDMA UTC_L1 handling during start/stop sequences From Jesse Zhang 9cfa2fea2566fc488aa59e80ea00422c3e441e47 in linux-6.12.y/6.12.36 7f3b16f3f229e37cc3e02e9e4e7106c523b119e9 in mainline linux | ||
| d036958b | 2025-07-11 00:41:56 | drm/i915/dsi: Fix off by one in BXT_MIPI_TRANS_VTOTAL From Ville Syrjala cc0a3fd781bf83d631d988568871808d06046e75 in linux-6.12.y/6.12.36 c464ce6af332e7c802c36cd337cacf81db05400c in mainline linux | ||
| acae1e28 | 2025-07-11 00:40:02 | drm/amd/display: Check dce_hwseq before dereferencing it From Alex Hung e881b82f5d3d8d54d168cd276169f0fee01bf0e7 in linux-6.12.y/6.12.36 b669507b637eb6b1aaecf347f193efccc65d756e in mainline linux | ||
| 6eb0554e | 2025-07-11 00:38:18 | drm/amdgpu: Add kicker device detection From Frank Min 593517e5561cb8f7f03503de3d75169b855b1d00 in linux-6.12.y/6.12.36 0bbf5fd86c585d437b75003f11365b324360a5d6 in mainline linux | ||
| 52e73eb7 | 2025-07-11 00:35:50 | drm/amd/display: Fix RMCM programming seq errors From Yihan Zhu ba1ffc32bda798613999916c60a03462233ae067 in linux-6.12.y/6.12.36 158f9944ac05dafd2d3a23d0688e6cf40ef68b90 in mainline linux | ||
| 2b8682ba | 2025-07-11 00:33:49 | drm/amd/display: Correct non-OLED pre_T11_delay. From Zhongwei Zhang ca8efc6a89716245408eb00a6a83dfa13dea7a2f in linux-6.12.y/6.12.36 893f07452bca56ff146a6be02b3294a9ea23d18a in mainline linux | ||
| 68ceec27 | 2025-07-11 00:30:48 | drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram From John Olender e2c3133ff4d594f68d3bae82b2637e96b509e063 in linux-6.12.y/6.12.36 4d2f6b4e4c7ed32e7fa39fcea37344a9eab99094 in mainline linux | ||
| f447154d | 2025-07-11 00:29:06 | drm/amd/display: Add null pointer check for get_first_active_display() From Wentao Liang 4ce9f2dc9ff7cc410e8c5d936ec551e26b9599a9 in linux-6.12.y/6.12.36 c3e9826a22027a21d998d3e64882fa377b613006 in mainline linux | ||
| 184c5cc3 | 2025-07-11 00:27:18 | drm/amdkfd: Fix race in GWS queue scheduling From Jay Cornwall b681e2a8a7595431479a3743ef2e148f79cbe4b5 in linux-6.12.y/6.12.36 cfb05257ae168a0496c7637e1d9e3ab8a25cbffe in mainline linux | ||
| 9d63b3f6 | 2025-07-11 00:25:40 | drm/i915: fix build error some more From Arnd Bergmann 18ec560e3e9b476e63c671514dcb8b9163a578a2 in linux-6.12.y/6.12.36 d02b2103a08b6d6908f1d3d8e8783d3f342555ac in mainline linux | ||
| e542b685 | 2025-07-11 00:24:02 | drm/amd: Adjust output for discovery error handling From Mario Limonciello 23116bf9a3d046fb0057cb6a121f97219dce4607 in linux-6.12.y/6.12.36 73eab78721f7b85216f1ca8c7b732f13213b5b32 in mainline linux | ||
| a69ebe02 | 2025-07-11 00:22:14 | drm/amdgpu/discovery: optionally use fw based ip discovery From Alex Deucher 840fe792a17069d99becbdd927822f175470cb3c in linux-6.12.y/6.12.36 80a0e828293389358f7db56adcdcb22b28df5e11 in mainline linux | ||
| cb82209c | 2025-07-11 00:19:30 | drm/scheduler: signal scheduled fence when kill job From Lin.Cao aefd0a935625165a6ca36d0258d2d053901555df in linux-6.12.y/6.12.36 471db2c2d4f80ee94225a1ef246e4f5011733e50 in mainline linux | ||
| f833c357 | 2025-07-11 00:16:58 | drm/amdgpu: seq64 memory unmap uses uninterruptible lock From Philip Yang 777580609d57861b8db3860c74142735d4c611e4 in linux-6.12.y/6.12.36 a359288ccb4dd8edb086e7de8fdf6e36f544c922 in mainline linux | ||
| 88198963 | 2025-07-11 00:14:49 | amd/amdkfd: fix a kfd_process ref leak From Yifan Zhang 861204dce6ed0ff2ac1c1225129c11afe38aacfd in linux-6.12.y/6.12.36 90237b16ec1d7afa16e2173cc9a664377214cdd9 in mainline linux | ||
| b42f7b38 | 2025-07-10 22:46:17 | Block interrupts while executing a command over the I2C bus as thei interrupt handler executes a command as well. This may result in a deadlock if an interrupt happens while executing a command. ok miod@ | ||
| 50c04e37 | 2025-07-10 14:27:43 | Some devices report a larger NCM sizes than wMaxSegmentSize. Rather limit them to UINT16_MAX than to wMaxSegmentSize. Found and OK by claudio@ | ||
| 37d47b61 | 2025-07-07 00:55:15 | remove prototypes for removed functions | ||
| 4ad47e7c | 2025-07-06 11:07:09 | Someone had the bright idea to number pins starting from 1. Account for this issue by subtracting 1 from the pin number to find the correct registers. Make the sub-type per-pin, as on some of the PMICs it can vary. Add support for the PMIC variants found in x1e systems. ok patrick@ | ||
| ff609f0a | 2025-07-06 10:50:17 | Catch up with device tree binding changes. ok stsp@, phessler@ | ||
| 94a7e27d | 2025-07-06 02:11:58 | regen | ||
| b7dc1768 | 2025-07-06 02:10:13 | add another Lunar Lake id for an SMBus device ok jsg@ | ||
| 54bc7180 | 2025-07-06 01:54:12 | remove duplicate defines | ||
| 340de5d3 | 2025-07-05 23:44:49 | remove duplicate include of drm_drv.h | ||
| b05c08e8 | 2025-07-04 04:36:25 | regen | ||
| 81dc28f4 | 2025-07-04 04:35:58 | Actually add PCI Id for NetMos 9912 (previous had a copy/paste error) From Geoff Steckel, tweak/ok sthen | ||
| 7b1b10eb | 2025-07-04 04:34:06 | Add PCI Id for NetMos 9912 From Geoff Steckel, tweak/ok sthen | ||
| 3e6d8869 | 2025-07-04 04:31:48 | Teach puc(4) about my Nm9900 which attaches as puc0 at pci3 dev 0 function 0 "NetMos Nm9900" rev 0x00: ports: 16 com com4 at puc0 port 0 apic 2 int 16: st16650, 32 byte fifo ok deraadt kettenis sthen | ||
| f17b1aa7 | 2025-07-04 04:29:36 | regen | ||
| 5397ce27 | 2025-07-04 04:29:15 | Add PCI Id for NetMos 9900 on my Dell Presicion's serial card ok deraadt kettenis sthen | ||
| 13b36e8a | 2025-07-03 21:06:51 | On Apple variants, enter DDB when a BREAK is detected. ok patrick@, jsg@, jca@ | ||
| d4ed460f | 2025-07-03 01:51:03 | drm/i915/pmu: Fix build error with GCOV and AutoFDO enabled From Tzung-Bi Shih fcc95344aa1c419d54f46c19011219363f05c593 in linux-6.12.y/6.12.35 a7137b1825b535eb7258b25beeb0d5425e0037d2 in mainline linux | ||
| ba1f95f8 | 2025-07-03 01:46:11 | drm/amdgpu: read back register after written for VCN v4.0.5 From David (Ming Qiang) Wu cef081c8231b52b4a652bbd022e03d80441118be in linux-6.12.y/6.12.35 ee7360fc27d6045510f8fe459b5649b2af27811a in mainline linux | ||
| 2327f17d | 2025-07-02 12:19:26 | run drm_managed cleanup from drm detach avoids a 'pool busy: still out' panic seen when radeondrm firmware is missing on non-efi installs reported by landry@ |