mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-10 19:43:29 +00:00
mmc: mmci: add validate_data callback
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>
This commit is contained in:
parent
cfccc6ac00
commit
e0da172121
@ -239,24 +239,6 @@ static int mmci_card_busy(struct mmc_host *mmc)
|
|||||||
return busy;
|
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)
|
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;
|
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 mmci_prep_data(struct mmci_host *host, struct mmc_data *data, bool next)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
@ -273,6 +273,7 @@ struct variant_data {
|
|||||||
|
|
||||||
/* mmci variant callbacks */
|
/* mmci variant callbacks */
|
||||||
struct mmci_host_ops {
|
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,
|
int (*prep_data)(struct mmci_host *host, struct mmc_data *data,
|
||||||
bool next);
|
bool next);
|
||||||
void (*unprep_data)(struct mmci_host *host, struct mmc_data *data,
|
void (*unprep_data)(struct mmci_host *host, struct mmc_data *data,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user