|
@@ -32,6 +32,12 @@ struct k3_priv {
|
|
|
struct regmap *reg;
|
|
|
};
|
|
|
|
|
|
+static unsigned long dw_mci_hi6220_caps[] = {
|
|
|
+ MMC_CAP_CMD23,
|
|
|
+ MMC_CAP_CMD23,
|
|
|
+ 0
|
|
|
+};
|
|
|
+
|
|
|
static void dw_mci_k3_set_ios(struct dw_mci *host, struct mmc_ios *ios)
|
|
|
{
|
|
|
int ret;
|
|
@@ -126,6 +132,7 @@ static void dw_mci_hi6220_set_ios(struct dw_mci *host, struct mmc_ios *ios)
|
|
|
}
|
|
|
|
|
|
static const struct dw_mci_drv_data hi6220_data = {
|
|
|
+ .caps = dw_mci_hi6220_caps,
|
|
|
.switch_voltage = dw_mci_hi6220_switch_voltage,
|
|
|
.set_ios = dw_mci_hi6220_set_ios,
|
|
|
.parse_dt = dw_mci_hi6220_parse_dt,
|