[PATCH v3 0/6] drm/vc4: Allow for more boot-time configuration
Maxime Ripard
maxime.ripard at bootlin.com
Thu Apr 18 12:41:53 UTC 2019
Hi,
The proprietary stack for the RaspberryPi allows for a number of video
parameters widely used by their users, but yet don't have any equivalents
in the mainline kernel.
Those options are detailed here:
https://www.raspberrypi.org/documentation/configuration/config-txt/video.md
While not all of them are desirable to have in the mainline kernel, some of
them still have value, such as properties to initialise the overscan or
rotation parameters.
This series is an attempt to support those, and is based on a rewrite of
the command line parser I did a couple of years ago that never reached
upstream (due to a lack of time on my side). While this parser was
initially made to deal with named modes (in order to support TV modes), it
also allowed to extend it more easily, which is why it's resurrected.
Let me know what you think,
Maxime
Changes from v2:
- Fixed some sparse warnings
- Rebased on top of next and Noralf series
- Moved the property initialisation to vc4 reset hook
- Added documentation for the new drm_cmdline_mode
- Renamed overscan to tv_margins to be consistent with the APIs
Changes from v1:
- Dropped the patches to deal with EDID
- Added the unit test as selftest
- Rebased on next
Maxime Ripard (6):
drm/modes: Rewrite the command line parser
drm/modes: Support modes names on the command line
drm/modes: Allow to specify rotation and reflection on the commandline
drm/modes: Parse overscan properties
drm/selftests: Add command line parser selftests
drm/vc4: hdmi: Set default state margin at reset
drivers/gpu/drm/drm_client_modeset.c | 14 +-
drivers/gpu/drm/drm_connector.c | 3 +-
drivers/gpu/drm/drm_modes.c | 441 +++++--
drivers/gpu/drm/selftests/Makefile | 2 +-
drivers/gpu/drm/selftests/drm_cmdline_selftests.h | 49 +-
drivers/gpu/drm/selftests/test-drm_cmdline_parser.c | 846 +++++++++++++-
drivers/gpu/drm/vc4/vc4_hdmi.c | 16 +-
include/drm/drm_connector.h | 24 +-
8 files changed, 1277 insertions(+), 118 deletions(-)
create mode 100644 drivers/gpu/drm/selftests/drm_cmdline_selftests.h
create mode 100644 drivers/gpu/drm/selftests/test-drm_cmdline_parser.c
base-commit: ea2c44e9e7b523296ff8e26943bfdd0758d60104
--
git-series 0.9.1
More information about the dri-devel
mailing list