tools/intel_bios_reader: Add MIPI device type

Decode the MIPI [sic] device type.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
Ville Syrjälä 2015-09-11 15:27:32 +03:00
parent d8313c3002
commit 2155d1eb54
2 changed files with 2 additions and 0 deletions

View File

@ -197,6 +197,7 @@ struct bdb_general_features {
#define DEVICE_TYPE_HDMI_DVI 0x60d2 #define DEVICE_TYPE_HDMI_DVI 0x60d2
#define DEVICE_TYPE_DVI 0x68d2 #define DEVICE_TYPE_DVI 0x68d2
#define DEVICE_TYPE_eDP 0x78C6 #define DEVICE_TYPE_eDP 0x78C6
#define DEVICE_TYPE_MIPI 0x7cc2
#define DEVICE_CFG_NONE 0x00 #define DEVICE_CFG_NONE 0x00
#define DEVICE_CFG_12BIT_DVOB 0x01 #define DEVICE_CFG_12BIT_DVOB 0x01

View File

@ -239,6 +239,7 @@ static const struct {
{ DEVICE_TYPE_HDMI_DVI, "HDMI/DVI" }, { DEVICE_TYPE_HDMI_DVI, "HDMI/DVI" },
{ DEVICE_TYPE_DVI, "DVI" }, { DEVICE_TYPE_DVI, "DVI" },
{ DEVICE_TYPE_eDP, "eDP" }, { DEVICE_TYPE_eDP, "eDP" },
{ DEVICE_TYPE_MIPI, "MIPI" },
}; };
static const int num_child_device_types = static const int num_child_device_types =
sizeof(child_device_types) / sizeof(child_device_types[0]); sizeof(child_device_types) / sizeof(child_device_types[0]);