@@ -96,6 +96,11 @@ static int ahci_mvebu_armada_3700_config(struct ahci_host_priv *hpriv)
return 0;
}
+static int ahci_mvebu_armada_8k_config(struct ahci_host_priv *hpriv)
+{
+ return 0;
+}
+
/**
* ahci_mvebu_stop_engine
*
@@ -230,6 +235,10 @@ static const struct ahci_mvebu_plat_data ahci_mvebu_armada_3700_plat_data = {
.host_flags = AHCI_HFLAG_SUSPEND_PHYS | AHCI_HFLAG_IGN_NOTSUPP_POWER_ON,
};
+static const struct ahci_mvebu_plat_data ahci_mvebu_armada_8k_plat_data = {
+ .plat_config = ahci_mvebu_armada_8k_config,
+};
+
static const struct of_device_id ahci_mvebu_of_match[] = {
{
.compatible = "marvell,armada-380-ahci",
@@ -239,6 +248,10 @@ static const struct of_device_id ahci_mvebu_of_match[] = {
.compatible = "marvell,armada-3700-ahci",
.data = &ahci_mvebu_armada_3700_plat_data,
},
+ {
+ .compatible = "marvell,armada-8k-ahci",
+ .data = &ahci_mvebu_armada_8k_plat_data,
+ },
{ },
};
MODULE_DEVICE_TABLE(of, ahci_mvebu_of_match);