]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/mv643xx_eth.h
mv643xx_eth: get rid of static variables, allow multiple instances
[mirror_ubuntu-zesty-kernel.git] / include / linux / mv643xx_eth.h
CommitLineData
c4a6a2ab
LB
1/*
2 * MV-643XX ethernet platform device data definition file.
3 */
fa3959f4 4
c4a6a2ab
LB
5#ifndef __LINUX_MV643XX_ETH_H
6#define __LINUX_MV643XX_ETH_H
7
8#define MV643XX_ETH_SHARED_NAME "mv643xx_eth_shared"
9#define MV643XX_ETH_NAME "mv643xx_eth"
10#define MV643XX_ETH_SHARED_REGS 0x2000
11#define MV643XX_ETH_SHARED_REGS_SIZE 0x2000
3077d78a
DF
12#define MV643XX_ETH_BAR_4 0x2220
13#define MV643XX_ETH_SIZE_REG_4 0x2224
14#define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290
c4a6a2ab
LB
15
16struct mv643xx_eth_platform_data {
fa3959f4 17 struct platform_device *shared;
c4a6a2ab 18 int port_number;
fa3959f4 19
c4a6a2ab
LB
20 u16 force_phy_addr; /* force override if phy_addr == 0 */
21 u16 phy_addr;
22
23 /* If speed is 0, then speed and duplex are autonegotiated. */
24 int speed; /* 0, SPEED_10, SPEED_100, SPEED_1000 */
25 int duplex; /* DUPLEX_HALF or DUPLEX_FULL */
26
27 /* non-zero values of the following fields override defaults */
28 u32 tx_queue_size;
29 u32 rx_queue_size;
30 u32 tx_sram_addr;
31 u32 tx_sram_size;
32 u32 rx_sram_addr;
33 u32 rx_sram_size;
34 u8 mac_addr[6]; /* mac address if non-zero*/
35};
36
37#endif /* __LINUX_MV643XX_ETH_H */