blob: a15cdd4a8e584ba94c7704cf185a30224d99d4e3 [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 Buytenhek240e44192008-04-24 01:27:44 +020010#define MV643XX_ETH_SHARED_NAME "mv643xx_eth"
11#define MV643XX_ETH_NAME "mv643xx_eth_port"
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020012#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;
Lennert Buytenhekc416a412008-04-24 01:27:32 +020020 unsigned int t_clk;
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +020021};
22
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020023struct mv643xx_eth_platform_data {
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020024 struct platform_device *shared;
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020025 int port_number;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020026
Lennert Buytenhekce4e2e42008-04-24 01:29:59 +020027 struct platform_device *shared_smi;
28
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020029 u16 force_phy_addr; /* force override if phy_addr == 0 */
30 u16 phy_addr;
31
32 /* If speed is 0, then speed and duplex are autonegotiated. */
33 int speed; /* 0, SPEED_10, SPEED_100, SPEED_1000 */
34 int duplex; /* DUPLEX_HALF or DUPLEX_FULL */
35
36 /* non-zero values of the following fields override defaults */
37 u32 tx_queue_size;
38 u32 rx_queue_size;
39 u32 tx_sram_addr;
40 u32 tx_sram_size;
41 u32 rx_sram_addr;
42 u32 rx_sram_size;
43 u8 mac_addr[6]; /* mac address if non-zero*/
44};
45
46#endif /* __LINUX_MV643XX_ETH_H */