aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data/eth_ixp4xx.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2020-01-12 13:04:45 +0100
committerJakub Kicinski <kuba@kernel.org>2020-01-12 12:59:53 -0800
commita41a5b26d29fb0123cd3290dca453857cd8c0c66 (patch)
tree690a8e37be6e44f4c377bb5efb4cfeef6a0f4182 /include/linux/platform_data/eth_ixp4xx.h
parentptp: ixp46x: move adjacent to ethernet driver (diff)
downloadlinux-dev-a41a5b26d29fb0123cd3290dca453857cd8c0c66.tar.xz
linux-dev-a41a5b26d29fb0123cd3290dca453857cd8c0c66.zip
ixp4xx_eth: move platform_data definition
The platform data is needed to compile the driver as standalone, so move it to a global location along with similar files. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to '')
-rw-r--r--include/linux/platform_data/eth_ixp4xx.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/linux/platform_data/eth_ixp4xx.h b/include/linux/platform_data/eth_ixp4xx.h
new file mode 100644
index 000000000000..6f652ea0c6ae
--- /dev/null
+++ b/include/linux/platform_data/eth_ixp4xx.h
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef __PLATFORM_DATA_ETH_IXP4XX
+#define __PLATFORM_DATA_ETH_IXP4XX
+
+#include <linux/types.h>
+
+#define IXP4XX_ETH_NPEA 0x00
+#define IXP4XX_ETH_NPEB 0x10
+#define IXP4XX_ETH_NPEC 0x20
+
+/* Information about built-in Ethernet MAC interfaces */
+struct eth_plat_info {
+ u8 phy; /* MII PHY ID, 0 - 31 */
+ u8 rxq; /* configurable, currently 0 - 31 only */
+ u8 txreadyq;
+ u8 hwaddr[6];
+};
+
+#endif