public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Macpaul Lin <macpaul.lin@mediatek.com>
To: Biao Huang <biao.huang@mediatek.com>,
	David Miller <davem@davemloft.net>,
	Rob Herring <robh+dt@kernel.org>,
	Bartosz Golaszewski <brgl@bgdev.pl>,
	"Fabien Parent" <fparent@baylibre.com>
Cc: Jakub Kicinski <kuba@kernel.org>, Felix Fietkau <nbd@nbd.name>,
	"John Crispin" <john@phrozen.org>,
	Sean Wang <sean.wang@mediatek.com>,
	Mark Lee <Mark-MC.Lee@mediatek.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	<netdev@vger.kernel.org>, <devicetree@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-mediatek@lists.infradead.org>,
	Yinghua Pan <ot_yinghua.pan@mediatek.com>,
	<srv_heupstream@mediatek.com>
Subject: Re: [PATCH net-next v2 1/9] net: ethernet: mtk-star-emac: store bit_clk_div in compat structure
Date: Thu, 27 Jan 2022 10:23:35 +0800	[thread overview]
Message-ID: <7a544fae-e7ff-d2a2-0ee5-1dca2f855be0@mediatek.com> (raw)
In-Reply-To: <20220127015857.9868-2-biao.huang@mediatek.com>

On 1/27/22 9:58 AM, Biao Huang wrote:
> From: Fabien Parent <fparent@baylibre.com>
> 
> Not all the SoC are using the same clock divider. Move the divider into
> a compat structure specific to the SoCs.
> 
> Signed-off-by: Biao Huang <biao.huang@mediatek.com>
> Signed-off-by: Fabien Parent <fparent@baylibre.com>
> ---
>   drivers/net/ethernet/mediatek/mtk_star_emac.c | 23 +++++++++++++++----
>   1 file changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ethernet/mediatek/mtk_star_emac.c b/drivers/net/ethernet/mediatek/mtk_star_emac.c
> index 1d5dd2015453..7fd8ec0fc636 100644
> --- a/drivers/net/ethernet/mediatek/mtk_star_emac.c
> +++ b/drivers/net/ethernet/mediatek/mtk_star_emac.c
> @@ -17,6 +17,7 @@
>   #include <linux/module.h>
>   #include <linux/netdevice.h>
>   #include <linux/of.h>
> +#include <linux/of_device.h>
>   #include <linux/of_mdio.h>
>   #include <linux/of_net.h>
>   #include <linux/platform_device.h>
> @@ -232,6 +233,10 @@ struct mtk_star_ring {
>   	unsigned int tail;
>   };
>   
> +struct mtk_star_compat {
> +	unsigned char bit_clk_div;
> +};
> +
>   struct mtk_star_priv {
>   	struct net_device *ndev;
>   
> @@ -257,6 +262,8 @@ struct mtk_star_priv {
>   	int duplex;
>   	int pause;
>   
> +	const struct mtk_star_compat *compat_data;
> +
>   	/* Protects against concurrent descriptor access. */
>   	spinlock_t lock;
>   
> @@ -899,7 +906,7 @@ static void mtk_star_init_config(struct mtk_star_priv *priv)
>   	regmap_write(priv->regs, MTK_STAR_REG_SYS_CONF, val);
>   	regmap_update_bits(priv->regs, MTK_STAR_REG_MAC_CLK_CONF,
>   			   MTK_STAR_MSK_MAC_CLK_CONF,
> -			   MTK_STAR_BIT_CLK_DIV_10);
> +			   priv->compat_data->bit_clk_div);
>   }
>   
>   static void mtk_star_set_mode_rmii(struct mtk_star_priv *priv)
> @@ -1461,6 +1468,7 @@ static int mtk_star_probe(struct platform_device *pdev)
>   
>   	priv = netdev_priv(ndev);
>   	priv->ndev = ndev;
> +	priv->compat_data = of_device_get_match_data(&pdev->dev);
>   	SET_NETDEV_DEV(ndev, dev);
>   	platform_set_drvdata(pdev, ndev);
>   
> @@ -1556,10 +1564,17 @@ static int mtk_star_probe(struct platform_device *pdev)
>   	return devm_register_netdev(dev, ndev);
>   }
>   
> +static const struct mtk_star_compat mtk_star_mt8516_compat = {
> +	.bit_clk_div = MTK_STAR_BIT_CLK_DIV_10,
> +};
> +
>   static const struct of_device_id mtk_star_of_match[] = {
> -	{ .compatible = "mediatek,mt8516-eth", },
> -	{ .compatible = "mediatek,mt8518-eth", },
> -	{ .compatible = "mediatek,mt8175-eth", },
> +	{ .compatible = "mediatek,mt8516-eth",
> +	  .data = &mtk_star_mt8516_compat },
> +	{ .compatible = "mediatek,mt8518-eth",
> +	  .data = &mtk_star_mt8516_compat },
> +	{ .compatible = "mediatek,mt8175-eth",
> +	  .data = &mtk_star_mt8516_compat },
>   	{ }
>   };
>   MODULE_DEVICE_TABLE(of, mtk_star_of_match);
> 

Reviewed-by: Macpaul Lin <macpaul.lin@mediatek.com>

Regards,
Macpaul Lin

  reply	other threads:[~2022-01-27  2:23 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-27  1:58 [PATCH net-next v2 0/9] add more features for mtk-star-emac Biao Huang
2022-01-27  1:58 ` [PATCH net-next v2 1/9] net: ethernet: mtk-star-emac: store bit_clk_div in compat structure Biao Huang
2022-01-27  2:23   ` Macpaul Lin [this message]
2022-01-27  1:58 ` [PATCH net-next v2 2/9] net: ethernet: mtk-star-emac: modify IRQ trigger flags Biao Huang
2022-01-27  1:58 ` [PATCH net-next v2 3/9] net: ethernet: mtk-star-emac: add support for MT8365 SoC Biao Huang
2022-01-27  2:22   ` Macpaul Lin
2022-01-27  1:58 ` [PATCH net-next v2 4/9] dt-bindings: net: mtk-star-emac: add support for MT8365 Biao Huang
2022-02-09  3:35   ` Rob Herring
2022-01-27  1:58 ` [PATCH net-next v2 5/9] net: ethernet: mtk-star-emac: add clock pad selection for RMII Biao Huang
2022-01-27  2:26   ` Macpaul Lin
2022-01-27  1:58 ` [PATCH net-next v2 6/9] net: ethernet: mtk-star-emac: add timing adjustment support Biao Huang
2022-01-27  2:20   ` Macpaul Lin
2022-01-27  1:58 ` [PATCH net-next v2 7/9] dt-bindings: net: mtk-star-emac: add description for new properties Biao Huang
2022-02-09  3:36   ` Rob Herring
2022-01-27  1:58 ` [PATCH net-next v2 8/9] net: ethernet: mtk-star-emac: add support for MII interface Biao Huang
2022-01-27  2:17   ` Macpaul Lin
2022-01-27  1:58 ` [PATCH net-next v2 9/9] net: ethernet: mtk-star-emac: separate tx/rx handling with two NAPIs Biao Huang
2022-01-28  3:43   ` Jakub Kicinski
2022-01-28  7:05     ` Biao Huang
2022-01-28 15:44       ` Jakub Kicinski
2022-03-14  7:01         ` Biao Huang
2022-03-14 15:57           ` Jakub Kicinski
2022-03-15  0:59             ` Biao Huang

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=7a544fae-e7ff-d2a2-0ee5-1dca2f855be0@mediatek.com \
    --to=macpaul.lin@mediatek.com \
    --cc=Mark-MC.Lee@mediatek.com \
    --cc=biao.huang@mediatek.com \
    --cc=brgl@bgdev.pl \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=fparent@baylibre.com \
    --cc=john@phrozen.org \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=nbd@nbd.name \
    --cc=netdev@vger.kernel.org \
    --cc=ot_yinghua.pan@mediatek.com \
    --cc=robh+dt@kernel.org \
    --cc=sean.wang@mediatek.com \
    --cc=srv_heupstream@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