blob: 155769601065303e463e94861fe49b5a08f4946b [file] [log] [blame]
Yoshinori Sato71557a32008-08-06 19:49:00 -04001#ifndef __ASM_SH_ETH_H__
2#define __ASM_SH_ETH_H__
3
4enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN};
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +00005enum {
6 SH_ETH_REG_GIGABIT,
7 SH_ETH_REG_FAST_SH4,
8 SH_ETH_REG_FAST_SH3_SH2
9};
Yoshinori Sato71557a32008-08-06 19:49:00 -040010
11struct sh_eth_plat_data {
12 int phy;
13 int edmac_endian;
Yoshihiro Shimoda4a555302011-03-07 21:59:26 +000014 int register_type;
Yoshihiro Shimoda49235762009-08-27 23:25:03 +000015
Magnus Damm748031f2009-10-09 00:17:14 +000016 unsigned char mac_addr[6];
Yoshihiro Shimoda49235762009-08-27 23:25:03 +000017 unsigned no_ether_link:1;
18 unsigned ether_link_active_low:1;
Yoshinori Sato71557a32008-08-06 19:49:00 -040019};
20
21#endif