From 7e5d2c22fdded7ef283798c8b7df8e8e8f82361a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 27 Feb 2023 13:14:44 +0100 Subject: [PATCH] drmdoc: add analog TV connector protperties --- drmdoc/analog-tv-connector-properties.go | 7 +++++++ drmdoc/drmdoc.go | 1 + 2 files changed, 8 insertions(+) create mode 100644 drmdoc/analog-tv-connector-properties.go diff --git a/drmdoc/analog-tv-connector-properties.go b/drmdoc/analog-tv-connector-properties.go new file mode 100644 index 0000000..25bf24f --- /dev/null +++ b/drmdoc/analog-tv-connector-properties.go @@ -0,0 +1,7 @@ +// Code generated by running "go generate". DO NOT EDIT. + +package drmdoc + +var analogTVConnectorProperties = map[string]string{ + "TV Mode": "Indicates the TV Mode used on an analog TV connector. The value\nof this property can be one of the following:\n\nNTSC:\n\tTV Mode is CCIR System M (aka 525-lines) together with\n\tthe NTSC Color Encoding.\n\nNTSC-443:\n\n\tTV Mode is CCIR System M (aka 525-lines) together with\n\tthe NTSC Color Encoding, but with a color subcarrier\n\tfrequency of 4.43MHz\n\nNTSC-J:\n\n\tTV Mode is CCIR System M (aka 525-lines) together with\n\tthe NTSC Color Encoding, but with a black level equal to\n\tthe blanking level.\n\nPAL:\n\n\tTV Mode is CCIR System B (aka 625-lines) together with\n\tthe PAL Color Encoding.\n\nPAL-M:\n\n\tTV Mode is CCIR System M (aka 525-lines) together with\n\tthe PAL Color Encoding.\n\nPAL-N:\n\n\tTV Mode is CCIR System N together with the PAL Color\n\tEncoding, a color subcarrier frequency of 3.58MHz, the\n\tSECAM color space, and narrower channels than other PAL\n\tvariants.\n\nSECAM:\n\n\tTV Mode is CCIR System B (aka 625-lines) together with\n\tthe SECAM Color Encoding.\n\nDrivers can set up this property by calling\ndrm_mode_create_tv_properties().", +} diff --git a/drmdoc/drmdoc.go b/drmdoc/drmdoc.go index 44d31bc..cdcb1ae 100644 --- a/drmdoc/drmdoc.go +++ b/drmdoc/drmdoc.go @@ -2,6 +2,7 @@ package drmdoc //go:generate go run generate.go drivers/gpu/drm/drm_connector.c "standard connector properties" //go:generate go run generate.go drivers/gpu/drm/drm_connector.c "HDMI connector properties" +//go:generate go run generate.go drivers/gpu/drm/drm_connector.c "Analog TV Connector Properties" //go:generate go run generate.go drivers/gpu/drm/drm_crtc.c "standard CRTC properties" //go:generate go run generate.go drivers/gpu/drm/drm_plane.c "standard plane properties" //go:generate go run generate.go drivers/gpu/drm/drm_blend.c "overview" "plane blending properties" -- 2.38.5