blob: 4801b02b444e9092941d8f248ebfb565c996f953 [file] [log] [blame]
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +02001/*
2 * MV-643XX ethernet platform device data definition file.
3 */
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02004
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +02005#ifndef __LINUX_MV643XX_ETH_H
6#define __LINUX_MV643XX_ETH_H
7
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02008#include <linux/mbus.h>
9
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020010#define MV643XX_ETH_SHARED_NAME "mv643xx_eth_shared"
11#define MV643XX_ETH_NAME "mv643xx_eth"
12#define MV643XX_ETH_SHARED_REGS 0x2000
13#define MV643XX_ETH_SHARED_REGS_SIZE 0x2000
Dale Farnsworth3077d782007-10-29 15:39:01 -070014#define MV643XX_ETH_BAR_4 0x2220
15#define MV643XX_ETH_SIZE_REG_4 0x2224
16#define MV643XX_ETH_BASE_ADDR_ENABLE_REG 0x2290
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020017
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +020018struct mv643xx_eth_shared_platform_data {
19 struct mbus_dram_target_info *dram;
20};
21
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020022struct mv643xx_eth_platform_data {
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020023 struct platform_device *shared;
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020024 int port_number;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020025
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020026 u16 force_phy_addr; /* force override if phy_addr == 0 */
27 u16 phy_addr;
28
29 /* If speed is 0, then speed and duplex are autonegotiated. */
30 int speed; /* 0, SPEED_10, SPEED_100, SPEED_1000 */
31 int duplex; /* DUPLEX_HALF or DUPLEX_FULL */
32
33 /* non-zero values of the following fields override defaults */
34 u32 tx_queue_size;
35 u32 rx_queue_size;
36 u32 tx_sram_addr;
37 u32 tx_sram_size;
38 u32 rx_sram_addr;
39 u32 rx_sram_size;
40 u8 mac_addr[6]; /* mac address if non-zero*/
41};
42
43#endif /* __LINUX_MV643XX_ETH_H */