blob: ff3642d267f7f3311a063e2b1e2b2ebd946686e8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Yoshinori Sato71557a32008-08-06 19:49:00 -04002#ifndef __ASM_SH_ETH_H__
3#define __ASM_SH_ETH_H__
4
Yoshihiro Shimodae47c9052011-03-07 21:59:45 +00005#include <linux/phy.h>
Joe Perches574e2af2013-08-01 16:17:48 -07006#include <linux/if_ether.h>
Yoshihiro Shimodae47c9052011-03-07 21:59:45 +00007
Sergei Shtylyov888cc8c2015-12-28 02:07:08 +03008enum {EDMAC_LITTLE_ENDIAN};
Yoshinori Sato71557a32008-08-06 19:49:00 -04009
10struct sh_eth_plat_data {
11 int phy;
Sergei Shtylyov18be0992013-12-20 01:39:52 +030012 int phy_irq;
Yoshinori Sato71557a32008-08-06 19:49:00 -040013 int edmac_endian;
Yoshihiro Shimodae47c9052011-03-07 21:59:45 +000014 phy_interface_t phy_interface;
Yoshihiro Shimoda8eac3f62011-09-27 21:49:05 +000015 void (*set_mdio_gate)(void *addr);
Yoshihiro Shimoda49235762009-08-27 23:25:03 +000016
Joe Perches574e2af2013-08-01 16:17:48 -070017 unsigned char mac_addr[ETH_ALEN];
Yoshihiro Shimoda49235762009-08-27 23:25:03 +000018 unsigned no_ether_link:1;
19 unsigned ether_link_active_low:1;
Yoshihiro Shimoda150647f2012-02-15 17:54:56 +000020 unsigned needs_init:1;
Yoshinori Sato71557a32008-08-06 19:49:00 -040021};
22
23#endif