2 * Platform information definitions for the
3 * universal Freescale Ethernet driver.
5 * Copyright (c) 2003 Intracom S.A.
6 * by Pantelis Antoniou <panto@intracom.gr>
8 * 2005 (c) MontaVista Software, Inc.
9 * Vitaly Bordug <vbordug@ru.mvista.com>
11 * This file is licensed under the terms of the GNU General Public License
12 * version 2. This program is licensed "as is" without any warranty of any
13 * kind, whether express or implied.
19 #include <asm/types.h>
21 #define FS_ENET_NAME "fs_enet"
35 #define FS_MAX_INDEX 9
37 static inline int fs_get_fec_index(enum fs_id id)
39 if (id >= fsid_fec1 && id <= fsid_fec2)
40 return id - fsid_fec1;
44 static inline int fs_get_fcc_index(enum fs_id id)
46 if (id >= fsid_fcc1 && id <= fsid_fcc3)
47 return id - fsid_fcc1;
51 static inline int fs_get_scc_index(enum fs_id id)
53 if (id >= fsid_scc1 && id <= fsid_scc4)
54 return id - fsid_scc1;
72 struct fs_mii_bus_info {
73 int method; /* mii method */
74 int id; /* the id of the mii_bus */
75 int disable_aneg; /* if the controller needs to negothiate speed & duplex */
76 int lpa; /* the default board-specific vallues will be applied otherwise */
93 int mdio_port; /* port & bit for MDIO */
95 int mdc_port; /* port & bit for MDC */
97 int delay; /* delay in us */
102 struct fs_platform_info {
104 void(*init_ioports)(void);
105 /* device specific information */
106 int fs_no; /* controller index */
108 u32 cp_page; /* CPM page */
109 u32 cp_block; /* CPM sblock */
111 u32 clk_trx; /* some stuff for pins & mux configuration*/
121 int phy_addr; /* the phy address (-1 no phy) */
122 int phy_irq; /* the phy irq (if it exists) */
124 const struct fs_mii_bus_info *bus_info;
126 int rx_ring, tx_ring; /* number of buffers on rx */
127 __u8 macaddr[6]; /* mac address */
128 int rx_copybreak; /* limit we copy small frames */
129 int use_napi; /* use NAPI */
130 int napi_weight; /* NAPI weight */
132 int use_rmii; /* use RMII mode */