diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/include/asm/sh_eth.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/sh/include/asm/sh_eth.h b/arch/sh/include/asm/sh_eth.h index f739061e2ee4..0f325da0f923 100644 --- a/arch/sh/include/asm/sh_eth.h +++ b/arch/sh/include/asm/sh_eth.h | |||
@@ -1,11 +1,21 @@ | |||
1 | #ifndef __ASM_SH_ETH_H__ | 1 | #ifndef __ASM_SH_ETH_H__ |
2 | #define __ASM_SH_ETH_H__ | 2 | #define __ASM_SH_ETH_H__ |
3 | 3 | ||
4 | #include <linux/phy.h> | ||
5 | |||
4 | enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN}; | 6 | enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN}; |
7 | enum { | ||
8 | SH_ETH_REG_GIGABIT, | ||
9 | SH_ETH_REG_FAST_SH4, | ||
10 | SH_ETH_REG_FAST_SH3_SH2 | ||
11 | }; | ||
5 | 12 | ||
6 | struct sh_eth_plat_data { | 13 | struct sh_eth_plat_data { |
7 | int phy; | 14 | int phy; |
8 | int edmac_endian; | 15 | int edmac_endian; |
16 | int register_type; | ||
17 | phy_interface_t phy_interface; | ||
18 | void (*set_mdio_gate)(unsigned long addr); | ||
9 | 19 | ||
10 | unsigned char mac_addr[6]; | 20 | unsigned char mac_addr[6]; |
11 | unsigned no_ether_link:1; | 21 | unsigned no_ether_link:1; |