]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/stmmac.h
net: Add Gigabit Ethernet driver of Topcliff PCH
[net-next-2.6.git] / include / linux / stmmac.h
CommitLineData
3c9732c0
GC
1/*******************************************************************************
2
3 Header file for stmmac platform data
4
5 Copyright (C) 2009 STMicroelectronics Ltd
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms and conditions of the GNU General Public License,
9 version 2, as published by the Free Software Foundation.
10
11 This program is distributed in the hope it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19
20 The full GNU General Public License is included in this distribution in
21 the file called "COPYING".
22
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
24*******************************************************************************/
25
26#ifndef __STMMAC_PLATFORM_DATA
27#define __STMMAC_PLATFORM_DATA
28
29/* platfrom data for platfrom device structure's platfrom_data field */
30
31/* Private data for the STM on-board ethernet driver */
32struct plat_stmmacenet_data {
33 int bus_id;
34 int pbl;
dfb8fb96 35 int clk_csr;
3c9732c0 36 int has_gmac;
e326e850 37 int enh_desc;
ebbb293f
GC
38 int tx_coe;
39 int bugged_jumbo;
3c9732c0 40 void (*fix_mac_speed)(void *priv, unsigned int speed);
ad01b7d4 41 void (*bus_setup)(void __iomem *ioaddr);
3c9732c0
GC
42#ifdef CONFIG_STM_DRIVERS
43 struct stm_pad_config *pad_config;
44#endif
45 void *bsp_priv;
46};
47
48struct plat_stmmacphy_data {
49 int bus_id;
50 int phy_addr;
51 unsigned int phy_mask;
52 int interface;
53 int (*phy_reset)(void *priv);
54 void *priv;
55};
56#endif
57