1 /* SPDX-License-Identifier: GPL-2.0 */
3 * MV-643XX ethernet platform device data definition file.
6 #ifndef __LINUX_MV643XX_ETH_H
7 #define __LINUX_MV643XX_ETH_H
9 #include <linux/mbus.h>
10 #include <linux/if_ether.h>
12 #define MV643XX_ETH_SHARED_NAME "mv643xx_eth"
13 #define MV643XX_ETH_NAME "mv643xx_eth_port"
14 #define MV643XX_ETH_SHARED_REGS 0x2000
15 #define MV643XX_ETH_SHARED_REGS_SIZE 0x2000
16 #define MV643XX_ETH_BAR_4 0x2220
17 #define MV643XX_ETH_SIZE_REG_4 0x2224
18 #define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290
20 #define MV643XX_TX_CSUM_DEFAULT_LIMIT 0
22 struct mv643xx_eth_shared_platform_data {
23 struct mbus_dram_target_info *dram;
25 * Max packet size for Tx IP/Layer 4 checksum, when set to 0, default
26 * limit of 9KiB will be used.
31 #define MV643XX_ETH_PHY_ADDR_DEFAULT 0
32 #define MV643XX_ETH_PHY_ADDR(x) (0x80 | (x))
33 #define MV643XX_ETH_PHY_NONE 0xff
36 struct mv643xx_eth_platform_data {
38 * Pointer back to our parent instance, and our port number.
40 struct platform_device *shared;
44 * Whether a PHY is present, and if yes, at which address.
47 struct device_node *phy_node;
50 * Use this MAC address if it is valid, overriding the
51 * address that is already in the hardware.
53 u8 mac_addr[ETH_ALEN];
56 * If speed is 0, autonegotiation is enabled.
57 * Valid values for speed: 0, SPEED_10, SPEED_100, SPEED_1000.
58 * Valid values for duplex: DUPLEX_HALF, DUPLEX_FULL.
64 * How many RX/TX queues to use.
70 * Override default RX/TX queue sizes if nonzero.
76 * Use on-chip SRAM for RX/TX descriptors if size is nonzero
77 * and sufficient to contain all descriptors for the requested
80 unsigned long rx_sram_addr;
82 unsigned long tx_sram_addr;