Kernel 6.12 (6.10, 6.11) with improved performance#33
Open
tiirwaa wants to merge 43 commits intorhgndf:kernel-6.10from
Open
Kernel 6.12 (6.10, 6.11) with improved performance#33tiirwaa wants to merge 43 commits intorhgndf:kernel-6.10from
tiirwaa wants to merge 43 commits intorhgndf:kernel-6.10from
Conversation
- Added DRIVER_RENDER to driver_features in drm_driver struct. - Fixed compilation errors and warnings. Verified driver loads correctly and detects HDMI display resolution.
…aximum 1920x1080 resolution - Allocate temp_buffer once per request with size 1920 * 4 bytes (max line width * bytes per pixel) - Avoid repeated dynamic allocations in ms912x_fb_xrgb8888_to_yuv422() - Improve performance and reduce memory fragmentation
…in ms912x_fb_send_rect - Removed wait_for_completion_timeout to avoid stalling workqueue and improve frame throughput. - Resulted in smoother video playback, especially noticeable with multi-monitor setups. - Ensured driver stability while reducing latency in USB requests.
tiirwaa
commented
Jul 27, 2025
Author
tiirwaa
left a comment
There was a problem hiding this comment.
Format code with clang-format and clean comments as requested
Missing space in comment. Should be '/* Same data reused here */'. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
added 7 commits
July 27, 2025 12:35
tiirwaa
commented
Jul 27, 2025
Author
tiirwaa
left a comment
There was a problem hiding this comment.
make fixes from 6.15(main) pull request
Enable runtime configuration of ms912x_mode_list[0].mode via module parameter
Enable runtime override of ms912x_mode_list[0].mode via module parameter This change removes the const qualifier from ms912x_mode_list and adds a write-only module parameter (mode_set) that allows setting the mode field of the first entry in the mode list at runtime. The feature is intended for debugging and testing purposes, enabling developers to quickly force a specific HDMI output mode without recompiling the driver. Notes: Only ms912x_mode_list[0].mode is affected. No validation or hardware reconfiguration is performed after changing the value; the updated mode will take effect only if/when the driver reads it again (e.g., during re-initialization). Parameter is restricted to root or members of the root group (S_IWUSR | S_IWGRP).
…arameter - spin877
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Kernel 6.12 with improved performance, i think this can be compiled for 6.10