|
@@ -886,25 +886,36 @@ struct hdmi4_features {
|
|
|
bool audio_use_mclk;
|
|
|
};
|
|
|
|
|
|
-static const struct hdmi4_features hdmi4_es1_features = {
|
|
|
+static const struct hdmi4_features hdmi4430_es1_features = {
|
|
|
.cts_swmode = false,
|
|
|
.audio_use_mclk = false,
|
|
|
};
|
|
|
|
|
|
-static const struct hdmi4_features hdmi4_es2_features = {
|
|
|
+static const struct hdmi4_features hdmi4430_es2_features = {
|
|
|
.cts_swmode = true,
|
|
|
.audio_use_mclk = false,
|
|
|
};
|
|
|
|
|
|
-static const struct hdmi4_features hdmi4_es3_features = {
|
|
|
+static const struct hdmi4_features hdmi4_features = {
|
|
|
.cts_swmode = true,
|
|
|
.audio_use_mclk = true,
|
|
|
};
|
|
|
|
|
|
static const struct soc_device_attribute hdmi4_soc_devices[] = {
|
|
|
- { .family = "OMAP4", .revision = "ES1.?", .data = &hdmi4_es1_features },
|
|
|
- { .family = "OMAP4", .revision = "ES2.?", .data = &hdmi4_es2_features },
|
|
|
- { .family = "OMAP4", .data = &hdmi4_es3_features },
|
|
|
+ {
|
|
|
+ .machine = "OMAP4430",
|
|
|
+ .revision = "ES1.?",
|
|
|
+ .data = &hdmi4430_es1_features,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .machine = "OMAP4430",
|
|
|
+ .revision = "ES2.?",
|
|
|
+ .data = &hdmi4430_es2_features,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .family = "OMAP4",
|
|
|
+ .data = &hdmi4_features,
|
|
|
+ },
|
|
|
{ /* sentinel */ }
|
|
|
};
|
|
|
|