aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHisashi Nakamura <hisashi.nakamura.ak@renesas.com>2014-08-01 11:03:00 -0400
committerDavid S. Miller <davem@davemloft.net>2014-08-02 19:38:32 -0400
commit0f76b9d83b2b010b63a094024b3cfd82e20af28d (patch)
treee12dff1e646e219a15d42c4711771eab43a97f98
parent58e70b59407a2407d7033588ebf0186fd65fa963 (diff)
net: sh_eth: Add r8a7794 support
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com> [uli: added bindings documentation] Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--Documentation/devicetree/bindings/net/sh_eth.txt1
-rw-r--r--drivers/net/ethernet/renesas/sh_eth.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/sh_eth.txt b/Documentation/devicetree/bindings/net/sh_eth.txt
index e7106b50dbdc..34d4db1a4e25 100644
--- a/Documentation/devicetree/bindings/net/sh_eth.txt
+++ b/Documentation/devicetree/bindings/net/sh_eth.txt
@@ -9,6 +9,7 @@ Required properties:
9 "renesas,ether-r8a7779" if the device is a part of R8A7779 SoC. 9 "renesas,ether-r8a7779" if the device is a part of R8A7779 SoC.
10 "renesas,ether-r8a7790" if the device is a part of R8A7790 SoC. 10 "renesas,ether-r8a7790" if the device is a part of R8A7790 SoC.
11 "renesas,ether-r8a7791" if the device is a part of R8A7791 SoC. 11 "renesas,ether-r8a7791" if the device is a part of R8A7791 SoC.
12 "renesas,ether-r8a7794" if the device is a part of R8A7794 SoC.
12 "renesas,ether-r7s72100" if the device is a part of R7S72100 SoC. 13 "renesas,ether-r7s72100" if the device is a part of R7S72100 SoC.
13- reg: offset and length of (1) the E-DMAC/feLic register block (required), 14- reg: offset and length of (1) the E-DMAC/feLic register block (required),
14 (2) the TSU register block (optional). 15 (2) the TSU register block (optional).
diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c
index 67b11c833870..60e9c2cd051e 100644
--- a/drivers/net/ethernet/renesas/sh_eth.c
+++ b/drivers/net/ethernet/renesas/sh_eth.c
@@ -2746,6 +2746,7 @@ static const struct of_device_id sh_eth_match_table[] = {
2746 { .compatible = "renesas,ether-r8a7779", .data = &r8a777x_data }, 2746 { .compatible = "renesas,ether-r8a7779", .data = &r8a777x_data },
2747 { .compatible = "renesas,ether-r8a7790", .data = &r8a779x_data }, 2747 { .compatible = "renesas,ether-r8a7790", .data = &r8a779x_data },
2748 { .compatible = "renesas,ether-r8a7791", .data = &r8a779x_data }, 2748 { .compatible = "renesas,ether-r8a7791", .data = &r8a779x_data },
2749 { .compatible = "renesas,ether-r8a7794", .data = &r8a779x_data },
2749 { .compatible = "renesas,ether-r7s72100", .data = &r7s72100_data }, 2750 { .compatible = "renesas,ether-r7s72100", .data = &r7s72100_data },
2750 { } 2751 { }
2751}; 2752};
@@ -2972,6 +2973,7 @@ static struct platform_device_id sh_eth_id_table[] = {
2972 { "r8a777x-ether", (kernel_ulong_t)&r8a777x_data }, 2973 { "r8a777x-ether", (kernel_ulong_t)&r8a777x_data },
2973 { "r8a7790-ether", (kernel_ulong_t)&r8a779x_data }, 2974 { "r8a7790-ether", (kernel_ulong_t)&r8a779x_data },
2974 { "r8a7791-ether", (kernel_ulong_t)&r8a779x_data }, 2975 { "r8a7791-ether", (kernel_ulong_t)&r8a779x_data },
2976 { "r8a7794-ether", (kernel_ulong_t)&r8a779x_data },
2975 { } 2977 { }
2976}; 2978};
2977MODULE_DEVICE_TABLE(platform, sh_eth_id_table); 2979MODULE_DEVICE_TABLE(platform, sh_eth_id_table);