On 1/29/19 5:24 PM, [email protected] wrote:
> From: Bjørn Mork <[email protected]>
>
> The Mediatek MT7621 SoC contains the same ethernet hardware module as
> used on a number of other MediaTek SoC parts. There are some minor
> differences to deal with but we can use the same driver to support
> them all.
>
> This patch is based on work by Bjørn Mork <[email protected]>, and his
> original patch is at:
>
> https://github.com/bmork/LEDE/commit/3293bc63f5461ca1eb0bbc4ed90145335e7e3404
>
> There is an additional compatible devicetree type added, and the primary
> change to the code required is to support a single interrupt (for both
> RX and TX interrupts).
>
> Signed-off-by: Bjørn Mork <[email protected]>
> [[email protected]: rebase to mainline and irq handler fix]
> Signed-off-by: Greg Ungerer <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
> ---
> drivers/net/ethernet/mediatek/Kconfig | 2 +-
> drivers/net/ethernet/mediatek/mtk_eth_soc.c | 48 ++++++++++++++++++---
> drivers/net/ethernet/mediatek/mtk_eth_soc.h | 4 ++
> 3 files changed, 46 insertions(+), 8 deletions(-)
>
> v2: first in series for this change
> v3: rebase onto 5.0-rc3
> v4: rebase onto 5.0-rc4
>
> diff --git a/drivers/net/ethernet/mediatek/Kconfig
> b/drivers/net/ethernet/mediatek/Kconfig
> index f9149d2a4694..43656f961891 100644
> --- a/drivers/net/ethernet/mediatek/Kconfig
> +++ b/drivers/net/ethernet/mediatek/Kconfig
> @@ -1,6 +1,6 @@
> config NET_VENDOR_MEDIATEK
> bool "MediaTek ethernet driver"
> - depends on ARCH_MEDIATEK
> + depends on ARCH_MEDIATEK || SOC_MT7621
Would be nice to add COMPILE_TEST there as well at some point so someone
can easily build test changes to the driver.
--
Florian