Skip to content

Commit

Permalink
net: macb: add support for sama7g5 emac
Browse files Browse the repository at this point in the history
Add support for SAMA7G5 EMAC.

Signed-off-by: Claudiu Beznea <[email protected]>
  • Loading branch information
claudiubeznea authored and ehristev committed Jan 22, 2021
1 parent 8c0483e commit 3d3475c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/net/macb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1482,12 +1482,21 @@ static const struct macb_config sama7g5_gmac_config = {
.usrio = &sama7g5_usrio,
};

static const struct macb_config sama7g5_emac_config = {
.caps = MACB_CAPS_USRIO_HAS_CLKEN,
.dma_burst_length = 16,
.hw_dma_cap = HW_DMA_CAP_32B,
.usrio = &sama7g5_usrio,
};

static const struct udevice_id macb_eth_ids[] = {
{ .compatible = "cdns,macb" },
{ .compatible = "cdns,at91sam9260-macb" },
{ .compatible = "cdns,sam9x60-macb" },
{ .compatible = "cdns,sama7g5-gem",
.data = (ulong)&sama7g5_gmac_config },
{ .compatible = "cdns,sama7g5-emac",
.data = (ulong)&sama7g5_emac_config },
{ .compatible = "atmel,sama5d2-gem" },
{ .compatible = "atmel,sama5d3-gem" },
{ .compatible = "atmel,sama5d4-gem", .data = (ulong)&sama5d4_config },
Expand Down

0 comments on commit 3d3475c

Please sign in to comment.