Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1411166 > unrolled thread
| Started by | Jerome Forissier <jerome.forissier@linaro.org> |
|---|---|
| First post | 2016-06-01 14:50 +0200 |
| Last post | 2016-06-01 14:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] mmc: dw_mmc: k3: add MMC_CAP_CMD23 Jerome Forissier <jerome.forissier@linaro.org> - 2016-06-01 14:50 +0200
Re: [PATCH] mmc: dw_mmc: k3: add MMC_CAP_CMD23 Jaehoon Chung <jh80.chung@samsung.com> - 2016-06-01 14:50 +0200
| From | Jerome Forissier <jerome.forissier@linaro.org> |
|---|---|
| Date | 2016-06-01 14:50 +0200 |
| Subject | [PATCH] mmc: dw_mmc: k3: add MMC_CAP_CMD23 |
| Message-ID | <rFdKW-8sS-9@gated-at.bofh.it> |
Enables RPMB support for the on-board eMMC of the HiKey board as well
as for eMMC modules connected to the microSD slot.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
---
drivers/mmc/host/dw_mmc-k3.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/mmc/host/dw_mmc-k3.c b/drivers/mmc/host/dw_mmc-k3.c
index 63c2e2e..8e9d886 100644
--- a/drivers/mmc/host/dw_mmc-k3.c
+++ b/drivers/mmc/host/dw_mmc-k3.c
@@ -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,
--
2.7.4
[toc] | [next] | [standalone]
| From | Jaehoon Chung <jh80.chung@samsung.com> |
|---|---|
| Date | 2016-06-01 14:50 +0200 |
| Message-ID | <rFdKX-8sS-35@gated-at.bofh.it> |
| In reply to | #1411166 |
Hi Jerome,
On 06/01/2016 09:39 PM, Jerome Forissier wrote:
> Enables RPMB support for the on-board eMMC of the HiKey board as well
> as for eMMC modules connected to the microSD slot.
Thanks! I will pick on my repository.
If we needs to use the MMC_CAP_CMD23, i will consider for using by default.
Best Regards,
Jaehoon Chung
>
> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
> ---
> drivers/mmc/host/dw_mmc-k3.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/mmc/host/dw_mmc-k3.c b/drivers/mmc/host/dw_mmc-k3.c
> index 63c2e2e..8e9d886 100644
> --- a/drivers/mmc/host/dw_mmc-k3.c
> +++ b/drivers/mmc/host/dw_mmc-k3.c
> @@ -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,
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web