2008-08-07 07:49:00 +08:00
|
|
|
#ifndef __ASM_SH_ETH_H__
|
|
|
|
#define __ASM_SH_ETH_H__
|
|
|
|
|
2011-03-08 05:59:45 +08:00
|
|
|
#include <linux/phy.h>
|
2013-08-02 07:17:48 +08:00
|
|
|
#include <linux/if_ether.h>
|
2011-03-08 05:59:45 +08:00
|
|
|
|
2015-12-28 07:07:08 +08:00
|
|
|
enum {EDMAC_LITTLE_ENDIAN};
|
2008-08-07 07:49:00 +08:00
|
|
|
|
|
|
|
struct sh_eth_plat_data {
|
|
|
|
int phy;
|
2013-12-20 06:39:52 +08:00
|
|
|
int phy_irq;
|
2008-08-07 07:49:00 +08:00
|
|
|
int edmac_endian;
|
2011-03-08 05:59:45 +08:00
|
|
|
phy_interface_t phy_interface;
|
2011-09-28 05:49:05 +08:00
|
|
|
void (*set_mdio_gate)(void *addr);
|
2009-08-28 07:25:03 +08:00
|
|
|
|
2013-08-02 07:17:48 +08:00
|
|
|
unsigned char mac_addr[ETH_ALEN];
|
2009-08-28 07:25:03 +08:00
|
|
|
unsigned no_ether_link:1;
|
|
|
|
unsigned ether_link_active_low:1;
|
2012-02-16 01:54:56 +08:00
|
|
|
unsigned needs_init:1;
|
2008-08-07 07:49:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|