Commit ed3ae724 authored by Igor Opaniuk's avatar Igor Opaniuk Committed by Ulf Hansson

mmc: dw_mmc: hi3798cv200: add MMC_CAP_CMD23 cap

Enable access to the RPMB on the on-board eMMC of the
Poplar board.
Signed-off-by: default avatarIgor Opaniuk <igor.opaniuk@linaro.org>
Acked-by: default avatarShawn Guo <shawn.guo@linaro.org>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 722c68a5
...@@ -23,6 +23,12 @@ struct hi3798cv200_priv { ...@@ -23,6 +23,12 @@ struct hi3798cv200_priv {
struct clk *drive_clk; struct clk *drive_clk;
}; };
static unsigned long dw_mci_hi3798cv200_caps[] = {
MMC_CAP_CMD23,
MMC_CAP_CMD23,
MMC_CAP_CMD23
};
static void dw_mci_hi3798cv200_set_ios(struct dw_mci *host, struct mmc_ios *ios) static void dw_mci_hi3798cv200_set_ios(struct dw_mci *host, struct mmc_ios *ios)
{ {
struct hi3798cv200_priv *priv = host->priv; struct hi3798cv200_priv *priv = host->priv;
...@@ -160,6 +166,8 @@ static int dw_mci_hi3798cv200_init(struct dw_mci *host) ...@@ -160,6 +166,8 @@ static int dw_mci_hi3798cv200_init(struct dw_mci *host)
} }
static const struct dw_mci_drv_data hi3798cv200_data = { static const struct dw_mci_drv_data hi3798cv200_data = {
.caps = dw_mci_hi3798cv200_caps,
.num_caps = ARRAY_SIZE(dw_mci_hi3798cv200_caps),
.init = dw_mci_hi3798cv200_init, .init = dw_mci_hi3798cv200_init,
.set_ios = dw_mci_hi3798cv200_set_ios, .set_ios = dw_mci_hi3798cv200_set_ios,
.execute_tuning = dw_mci_hi3798cv200_execute_tuning, .execute_tuning = dw_mci_hi3798cv200_execute_tuning,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment