2 * MV-643XX ethernet platform device data definition file.
5 #ifndef __LINUX_MV643XX_ETH_H
6 #define __LINUX_MV643XX_ETH_H
8 #include <linux/mbus.h>
10 #define MV643XX_ETH_SHARED_NAME "mv643xx_eth"
11 #define MV643XX_ETH_NAME "mv643xx_eth_port"
12 #define MV643XX_ETH_SHARED_REGS 0x2000
13 #define MV643XX_ETH_SHARED_REGS_SIZE 0x2000
14 #define MV643XX_ETH_BAR_4 0x2220
15 #define MV643XX_ETH_SIZE_REG_4 0x2224
16 #define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290
18 struct mv643xx_eth_shared_platform_data
{
19 struct mbus_dram_target_info
*dram
;
23 struct mv643xx_eth_platform_data
{
25 * Pointer back to our parent instance, and our port number.
27 struct platform_device
*shared
;
31 * Whether a PHY is present, and if yes, at which address.
33 struct platform_device
*shared_smi
;
38 * Use this MAC address if it is valid, overriding the
39 * address that is already in the hardware.
44 * If speed is 0, autonegotiation is enabled.
45 * Valid values for speed: 0, SPEED_10, SPEED_100, SPEED_1000.
46 * Valid values for duplex: DUPLEX_HALF, DUPLEX_FULL.
52 * Which RX/TX queues to use.
58 * Override default RX/TX queue sizes if nonzero.
64 * Use on-chip SRAM for RX/TX descriptors if size is nonzero
65 * and sufficient to contain all descriptors for the requested
68 unsigned long rx_sram_addr
;
70 unsigned long tx_sram_addr
;