drm/i915: Add VBT DVO ports H and I
VBT has ports H and I since version 217. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200630215601.28557-5-ville.syrjala@linux.intel.com Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
This commit is contained in:
parent
244f2e9ce3
commit
176430cc13
|
@ -1656,6 +1656,8 @@ static enum port dvo_port_to_port(struct drm_i915_private *dev_priv,
|
|||
[PORT_E] = { DVO_PORT_HDMIE, DVO_PORT_DPE, DVO_PORT_CRT },
|
||||
[PORT_F] = { DVO_PORT_HDMIF, DVO_PORT_DPF, -1 },
|
||||
[PORT_G] = { DVO_PORT_HDMIG, DVO_PORT_DPG, -1 },
|
||||
[PORT_H] = { DVO_PORT_HDMIH, DVO_PORT_DPH, -1 },
|
||||
[PORT_I] = { DVO_PORT_HDMII, DVO_PORT_DPI, -1 },
|
||||
};
|
||||
/*
|
||||
* Bspec lists the ports as A, B, C, D - however internally in our
|
||||
|
|
|
@ -293,8 +293,12 @@ struct bdb_general_features {
|
|||
#define DVO_PORT_HDMIE 12 /* 193 */
|
||||
#define DVO_PORT_DPF 13 /* N/A */
|
||||
#define DVO_PORT_HDMIF 14 /* N/A */
|
||||
#define DVO_PORT_DPG 15
|
||||
#define DVO_PORT_HDMIG 16
|
||||
#define DVO_PORT_DPG 15 /* 217 */
|
||||
#define DVO_PORT_HDMIG 16 /* 217 */
|
||||
#define DVO_PORT_DPH 17 /* 217 */
|
||||
#define DVO_PORT_HDMIH 18 /* 217 */
|
||||
#define DVO_PORT_DPI 19 /* 217 */
|
||||
#define DVO_PORT_HDMII 20 /* 217 */
|
||||
#define DVO_PORT_MIPIA 21 /* 171 */
|
||||
#define DVO_PORT_MIPIB 22 /* 171 */
|
||||
#define DVO_PORT_MIPIC 23 /* 171 */
|
||||
|
|
Loading…
Reference in New Issue