blob: 6e8215b159982378847cc7aacd75747da9c604d6 [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
Arnaud Patard (Rtp)58569ae2012-07-26 12:15:46 +020018#define MV643XX_TX_CSUM_DEFAULT_LIMIT 0
19
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +020020struct mv643xx_eth_shared_platform_data {
21 struct mbus_dram_target_info *dram;
Saeed Bishara9b2c2ff2010-06-27 00:26:43 +000022 /*
23 * Max packet size for Tx IP/Layer 4 checksum, when set to 0, default
24 * limit of 9KiB will be used.
25 */
26 int tx_csum_limit;
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +020027};
28
Lennert Buytenhekac8406052008-08-26 14:06:47 +020029#define MV643XX_ETH_PHY_ADDR_DEFAULT 0
30#define MV643XX_ETH_PHY_ADDR(x) (0x80 | (x))
31#define MV643XX_ETH_PHY_NONE 0xff
32
Sebastian Hesselbarth5f292352013-05-29 09:32:45 +000033struct device_node;
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020034struct mv643xx_eth_platform_data {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020035 /*
36 * Pointer back to our parent instance, and our port number.
37 */
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020038 struct platform_device *shared;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020039 int port_number;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +020040
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020041 /*
42 * Whether a PHY is present, and if yes, at which address.
43 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020044 int phy_addr;
Sebastian Hesselbarth5f292352013-05-29 09:32:45 +000045 struct device_node *phy_node;
Lennert Buytenhekce4e2e42008-04-24 01:29:59 +020046
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020047 /*
48 * Use this MAC address if it is valid, overriding the
49 * address that is already in the hardware.
50 */
51 u8 mac_addr[6];
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020052
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020053 /*
54 * If speed is 0, autonegotiation is enabled.
55 * Valid values for speed: 0, SPEED_10, SPEED_100, SPEED_1000.
56 * Valid values for duplex: DUPLEX_HALF, DUPLEX_FULL.
57 */
58 int speed;
59 int duplex;
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020060
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020061 /*
Lennert Buytenhekf7981c12008-08-26 10:23:22 +020062 * How many RX/TX queues to use.
Lennert Buytenhek64da80a2008-06-02 01:01:26 +020063 */
Lennert Buytenhekf7981c12008-08-26 10:23:22 +020064 int rx_queue_count;
65 int tx_queue_count;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +020066
67 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020068 * Override default RX/TX queue sizes if nonzero.
69 */
70 int rx_queue_size;
71 int tx_queue_size;
72
73 /*
74 * Use on-chip SRAM for RX/TX descriptors if size is nonzero
75 * and sufficient to contain all descriptors for the requested
76 * ring sizes.
77 */
78 unsigned long rx_sram_addr;
79 int rx_sram_size;
80 unsigned long tx_sram_addr;
81 int tx_sram_size;
Lennert Buytenhekc4a6a2a2007-10-19 04:09:53 +020082};
83
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +020084
85#endif