Blame view

include/linux/stmmac.h 1.72 KB
3c9732c06   Giuseppe CAVALLARO   stmmac: add the n...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  /*******************************************************************************
  
    Header file for stmmac platform data
  
    Copyright (C) 2009  STMicroelectronics Ltd
  
    This program is free software; you can redistribute it and/or modify it
    under the terms and conditions of the GNU General Public License,
    version 2, as published by the Free Software Foundation.
  
    This program is distributed in the hope it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
    more details.
  
    You should have received a copy of the GNU General Public License along with
    this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  
    The full GNU General Public License is included in this distribution in
    the file called "COPYING".
  
    Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
  *******************************************************************************/
  
  #ifndef __STMMAC_PLATFORM_DATA
  #define __STMMAC_PLATFORM_DATA
  
  /* platfrom data for platfrom device structure's platfrom_data field */
  
  /* Private data for the STM on-board ethernet driver */
  struct plat_stmmacenet_data {
  	int bus_id;
  	int pbl;
dfb8fb96a   Giuseppe CAVALLARO   stmmac: add CSR C...
35
  	int clk_csr;
3c9732c06   Giuseppe CAVALLARO   stmmac: add the n...
36
  	int has_gmac;
e326e8503   Giuseppe CAVALLARO   stmmac: new descr...
37
  	int enh_desc;
ebbb293f8   Giuseppe CAVALLARO   stmmac: consolida...
38
39
  	int tx_coe;
  	int bugged_jumbo;
543876c92   Giuseppe Cavallaro   stmmac: review th...
40
  	int pmt;
3c9732c06   Giuseppe CAVALLARO   stmmac: add the n...
41
  	void (*fix_mac_speed)(void *priv, unsigned int speed);
ad01b7d48   Giuseppe CAVALLARO   stmmac: make ioad...
42
  	void (*bus_setup)(void __iomem *ioaddr);
293bb1c41   Giuseppe CAVALLARO   stmmac: add init/...
43
44
45
  	int (*init)(struct platform_device *pdev);
  	void (*exit)(struct platform_device *pdev);
  	void *custom_cfg;
3c9732c06   Giuseppe CAVALLARO   stmmac: add the n...
46
47
48
49
50
51
52
53
54
55
56
57
  	void *bsp_priv;
  };
  
  struct plat_stmmacphy_data {
  	int bus_id;
  	int phy_addr;
  	unsigned int phy_mask;
  	int interface;
  	int (*phy_reset)(void *priv);
  	void *priv;
  };
  #endif