From d9d090e52082635a24aeaefdc6bfe61ab97f38bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Tue, 7 Feb 2017 22:30:59 +0100 Subject: brcm2708: remove linux 4.4 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- ...n-encoder-and-connector-type-enum-for-DPI.patch | 64 ---------------------- 1 file changed, 64 deletions(-) delete mode 100644 target/linux/brcm2708/patches-4.4/0329-drm-Add-an-encoder-and-connector-type-enum-for-DPI.patch (limited to 'target/linux/brcm2708/patches-4.4/0329-drm-Add-an-encoder-and-connector-type-enum-for-DPI.patch') diff --git a/target/linux/brcm2708/patches-4.4/0329-drm-Add-an-encoder-and-connector-type-enum-for-DPI.patch b/target/linux/brcm2708/patches-4.4/0329-drm-Add-an-encoder-and-connector-type-enum-for-DPI.patch deleted file mode 100644 index e9cec59be3..0000000000 --- a/target/linux/brcm2708/patches-4.4/0329-drm-Add-an-encoder-and-connector-type-enum-for-DPI.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 99dcc59ce1c684c1138a70e0a02dd9a40512f29a Mon Sep 17 00:00:00 2001 -From: Eric Anholt -Date: Fri, 18 Mar 2016 12:34:59 -0700 -Subject: [PATCH] drm: Add an encoder and connector type enum for DPI. - -Right now exynos is exposing DPI as a TMDS encoder and VGA connector, -which seems rather misleading. This isn't just an internal detail, -since xrandr actually exposes "VGA" as the output name. Define some -new enums so that vc4's DPI can have a more informative name. - -I considered other names for the connector as well. For VC4, the -Adafruit DPI kippah takes the 28 GPIO pins and routes them to a -standard-ish 40-pin FPC connector, but "40-pin FPC" doesn't uniquely -identify an ordering of pins (apparently some other orderings exist), -doesn't explain things as well for the user (who, if anything, knows -their product is a DPI kippah/panel combo), and actually doesn't have -to exist (one could connect the 28 GPIOs directly to something else). -Simply "DPI" seems like a good compromise name to distinguish from the -HDMI, DSI, and TV connectors . - -Signed-off-by: Eric Anholt -Reviewed-by: Daniel Vetter -(cherry picked from commit 0b27c02a7f1c697694f2ad6d6517e7dbf9ecfa39) ---- - drivers/gpu/drm/drm_crtc.c | 2 ++ - include/uapi/drm/drm_mode.h | 2 ++ - 2 files changed, 4 insertions(+) - ---- a/drivers/gpu/drm/drm_crtc.c -+++ b/drivers/gpu/drm/drm_crtc.c -@@ -168,6 +168,7 @@ static struct drm_conn_prop_enum_list dr - { DRM_MODE_CONNECTOR_eDP, "eDP" }, - { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" }, - { DRM_MODE_CONNECTOR_DSI, "DSI" }, -+ { DRM_MODE_CONNECTOR_DPI, "DPI" }, - }; - - static const struct drm_prop_enum_list drm_encoder_enum_list[] = { -@@ -179,6 +180,7 @@ static const struct drm_prop_enum_list d - { DRM_MODE_ENCODER_VIRTUAL, "Virtual" }, - { DRM_MODE_ENCODER_DSI, "DSI" }, - { DRM_MODE_ENCODER_DPMST, "DP MST" }, -+ { DRM_MODE_ENCODER_DPI, "DPI" }, - }; - - static const struct drm_prop_enum_list drm_subpixel_enum_list[] = { ---- a/include/uapi/drm/drm_mode.h -+++ b/include/uapi/drm/drm_mode.h -@@ -202,6 +202,7 @@ struct drm_mode_get_plane_res { - #define DRM_MODE_ENCODER_VIRTUAL 5 - #define DRM_MODE_ENCODER_DSI 6 - #define DRM_MODE_ENCODER_DPMST 7 -+#define DRM_MODE_ENCODER_DPI 8 - - struct drm_mode_get_encoder { - __u32 encoder_id; -@@ -241,6 +242,7 @@ struct drm_mode_get_encoder { - #define DRM_MODE_CONNECTOR_eDP 14 - #define DRM_MODE_CONNECTOR_VIRTUAL 15 - #define DRM_MODE_CONNECTOR_DSI 16 -+#define DRM_MODE_CONNECTOR_DPI 17 - - struct drm_mode_get_connector { - -- cgit v1.2.3