blob: e103529156986bf3814ca35b156dc10917bd34ae [file] [log] [blame]
Giuseppe CAVALLARO3c9732c2010-01-06 23:07:13 +00001/*******************************************************************************
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;
Giuseppe CAVALLAROdfb8fb92010-09-17 03:23:39 +000035 int clk_csr;
Giuseppe CAVALLARO3c9732c2010-01-06 23:07:13 +000036 int has_gmac;
Giuseppe CAVALLAROe326e852010-04-13 20:21:14 +000037 int enh_desc;
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +000038 int tx_coe;
39 int bugged_jumbo;
Giuseppe Cavallaro543876c2010-09-24 21:27:41 -070040 int pmt;
Giuseppe CAVALLARO3c9732c2010-01-06 23:07:13 +000041 void (*fix_mac_speed)(void *priv, unsigned int speed);
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +000042 void (*bus_setup)(void __iomem *ioaddr);
Giuseppe CAVALLARO293bb1c2010-11-24 02:38:05 +000043 int (*init)(struct platform_device *pdev);
44 void (*exit)(struct platform_device *pdev);
45 void *custom_cfg;
Giuseppe CAVALLARO3c9732c2010-01-06 23:07:13 +000046 void *bsp_priv;
47};
48
49struct plat_stmmacphy_data {
50 int bus_id;
51 int phy_addr;
52 unsigned int phy_mask;
53 int interface;
54 int (*phy_reset)(void *priv);
55 void *priv;
56};
57#endif
58