u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: Weijie Gao <weijie.gao@mediatek.com>, u-boot@lists.denx.de
Cc: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>,
	Peng Fan <peng.fan@nxp.com>
Subject: Re: [PATCH v2 12/14] mmc: mediatek: add support for MediaTek MT7621 SoC
Date: Tue, 23 Nov 2021 08:41:00 +0900	[thread overview]
Message-ID: <d44d5367-4bf3-7038-a697-d91edb537ecb@samsung.com> (raw)
In-Reply-To: <a303a6557d7f1184a70d0b0b11d5e81d678ca55f.1637285375.git.weijie.gao@mediatek.com>

On 11/19/21 10:37 AM, Weijie Gao wrote:
> This patch adds SDXC support for MediaTek MT7621 SoC
> 
> Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>

Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>

Best Regards,
Jaehoon Chung

> ---
> v2 changes: none
> ---
>  drivers/mmc/mtk-sd.c | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/drivers/mmc/mtk-sd.c b/drivers/mmc/mtk-sd.c
> index 8599f095bc..1199052a89 100644
> --- a/drivers/mmc/mtk-sd.c
> +++ b/drivers/mmc/mtk-sd.c
> @@ -1746,6 +1746,18 @@ static const struct msdc_compatible mt7620_compat = {
>  	.default_pad_dly = true,
>  };
>  
> +static const struct msdc_compatible mt7621_compat = {
> +	.clk_div_bits = 8,
> +	.pad_tune0 = false,
> +	.async_fifo = true,
> +	.data_tune = true,
> +	.busy_check = false,
> +	.stop_clk_fix = false,
> +	.enhance_rx = false,
> +	.builtin_pad_ctrl = true,
> +	.default_pad_dly = true,
> +};
> +
>  static const struct msdc_compatible mt7622_compat = {
>  	.clk_div_bits = 12,
>  	.pad_tune0 = true,
> @@ -1794,6 +1806,7 @@ static const struct msdc_compatible mt8183_compat = {
>  
>  static const struct udevice_id msdc_ids[] = {
>  	{ .compatible = "mediatek,mt7620-mmc", .data = (ulong)&mt7620_compat },
> +	{ .compatible = "mediatek,mt7621-mmc", .data = (ulong)&mt7621_compat },
>  	{ .compatible = "mediatek,mt7622-mmc", .data = (ulong)&mt7622_compat },
>  	{ .compatible = "mediatek,mt7623-mmc", .data = (ulong)&mt7623_compat },
>  	{ .compatible = "mediatek,mt8512-mmc", .data = (ulong)&mt8512_compat },
> 


  reply	other threads:[~2021-11-22 23:40 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-19  1:35 [PATCH v2 00/14] Add support for MediaTek MT7621 SoC Weijie Gao
2021-11-19  1:35 ` [PATCH v2 01/14] mips: mtmips: add " Weijie Gao
2021-11-19  1:35 ` [PATCH v2 02/14] mips: mtmips: add two reference boards for mt7621 Weijie Gao
2021-11-19  1:35 ` [PATCH v2 03/14] clk: mtmips: add clock driver for MediaTek MT7621 SoC Weijie Gao
2021-11-26 17:44   ` Sean Anderson
2021-12-03 10:06     ` Weijie Gao
2021-12-15 16:11       ` Sean Anderson
2021-12-27  8:06         ` Weijie Gao
2021-12-31  2:30           ` Sean Anderson
2021-11-19  1:36 ` [PATCH v2 04/14] reset: mtmips: add reset controller support " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 05/14] pinctrl: mtmips: add " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 06/14] nand: raw: " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 07/14] usb: xhci-mtk: " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 08/14] phy: mtk-tphy: " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 09/14] spi: " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 10/14] gpio: " Weijie Gao
2021-11-19  1:36 ` [PATCH v2 11/14] watchdog: " Weijie Gao
2021-11-19  1:37 ` [PATCH v2 12/14] mmc: mediatek: " Weijie Gao
2021-11-22 23:41   ` Jaehoon Chung [this message]
2021-11-19  1:37 ` [PATCH v2 13/14] net: " Weijie Gao
2021-11-21 19:14   ` Ramon Fried
2021-11-22  8:09     ` Weijie Gao
2021-11-19  1:37 ` [PATCH v2 14/14] MAINTAINERS: update maintainer for MediaTek MIPS platform Weijie Gao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d44d5367-4bf3-7038-a697-d91edb537ecb@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=GSS_MTK_Uboot_upstream@mediatek.com \
    --cc=peng.fan@nxp.com \
    --cc=u-boot@lists.denx.de \
    --cc=weijie.gao@mediatek.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).