mmc: mmci: add validate_data callback
authorLudovic Barre <ludovic.barre@st.com>
Mon, 8 Oct 2018 12:08:41 +0000 (14:08 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Tue, 9 Oct 2018 07:13:04 +0000 (09:13 +0200)
This patch adds validate_data callback at mmci_host_ops
to check specific constraints of variant.
Move mmci_validate_data function to regroup mmci_host_ops interfaces.

Signed-off-by: Ludovic Barre <ludovic.barre@st.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/mmci.c
drivers/mmc/host/mmci.h

index 3d4431b..91ef2ed 100644 (file)
@@ -239,24 +239,6 @@ static int mmci_card_busy(struct mmc_host *mmc)
        return busy;
 }
 
-/*
- * Validate mmc prerequisites
- */
-static int mmci_validate_data(struct mmci_host *host,
-                             struct mmc_data *data)
-{
-       if (!data)
-               return 0;
-
-       if (!is_power_of_2(data->blksz)) {
-               dev_err(mmc_dev(host->mmc),
-                       "unsupported block size (%d bytes)\n", data->blksz);
-               return -EINVAL;
-       }
-
-       return 0;
-}
-
 static void mmci_reg_delay(struct mmci_host *host)
 {
        /*
@@ -392,6 +374,27 @@ void mmci_dma_setup(struct mmci_host *host)
        host->use_dma = true;
 }
 
+/*
+ * Validate mmc prerequisites
+ */
+static int mmci_validate_data(struct mmci_host *host,
+                             struct mmc_data *data)
+{
+       if (!data)
+               return 0;
+
+       if (!is_power_of_2(data->blksz)) {
+               dev_err(mmc_dev(host->mmc),
+                       "unsupported block size (%d bytes)\n", data->blksz);
+               return -EINVAL;
+       }
+
+       if (host->ops && host->ops->validate_data)
+               return host->ops->validate_data(host, data);
+
+       return 0;
+}
+
 int mmci_prep_data(struct mmci_host *host, struct mmc_data *data, bool next)
 {
        int err;
index bcf3e8b..ed59baf 100644 (file)
@@ -273,6 +273,7 @@ struct variant_data {
 
 /* mmci variant callbacks */
 struct mmci_host_ops {
+       int (*validate_data)(struct mmci_host *host, struct mmc_data *data);
        int (*prep_data)(struct mmci_host *host, struct mmc_data *data,
                         bool next);
        void (*unprep_data)(struct mmci_host *host, struct mmc_data *data,