drm: drm supports a new connector type framework [1/1]

PD#SWPL-166619

Problem:
DRM needs to support mode switching for lcd tablet

Solution:
1.drm extend private connector type for hdmitx
2.modify the found connector flow in the logo
3.add connector type property for hwc to get private type
4.remove old lcd rate hint flow

Verify:
t7c, t3x

Test:
DRM-OSD-44, DRM-OSD-5

Change-Id: I192c29c9f2c8c2936810103407cd7cd219a85401
Signed-off-by: congyang.huang <congyang.huang@amlogic.com>
diff --git a/drivers/drm/meson_drm_bind.c b/drivers/drm/meson_drm_bind.c
index 8d1b091..e17f1d5 100644
--- a/drivers/drm/meson_drm_bind.c
+++ b/drivers/drm/meson_drm_bind.c
@@ -26,6 +26,16 @@
 #endif
 	}
 
+	if (type > DRM_MODE_MESON_CONNECTOR_HDMI_START &&
+			type < DRM_MODE_MESON_CONNECTOR_HDMI_END) {
+#ifndef CONFIG_AMLOGIC_DRM_CUT_HDMI
+		return meson_hdmitx_dev_bind(drm, type, intf);
+#else
+	pr_err("hdmi connector is not supported!\n");
+			return -1;
+#endif
+	}
+
 	switch (type) {
 #ifndef CONFIG_AMLOGIC_DRM_CUT_HDMI
 	case DRM_MODE_CONNECTOR_HDMIA: