]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/usb_ether.h
arc: hard-code CONFIG_SYS_GENERIC_BOARD into asm/config.h
[people/ms/u-boot.git] / include / usb_ether.h
CommitLineData
89d48367
SG
1/*
2 * Copyright (c) 2011 The Chromium OS Authors.
89d48367 3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
89d48367
SG
5 */
6
7#ifndef __USB_ETHER_H__
8#define __USB_ETHER_H__
9
10#include <net.h>
11
12/*
13 * IEEE 802.3 Ethernet magic constants. The frame sizes omit the preamble
14 * and FCS/CRC (frame check sequence).
15 */
16#define ETH_ALEN 6 /* Octets in one ethernet addr */
17#define ETH_HLEN 14 /* Total octets in header. */
18#define ETH_ZLEN 60 /* Min. octets in frame sans FCS */
19#define ETH_DATA_LEN 1500 /* Max. octets in payload */
20#define ETH_FRAME_LEN PKTSIZE_ALIGN /* Max. octets in frame sans FCS */
21#define ETH_FCS_LEN 4 /* Octets in the FCS */
22
23struct ueth_data {
24 /* eth info */
25 struct eth_device eth_dev; /* used with eth_register */
26 int phy_id; /* mii phy id */
27
28 /* usb info */
29 struct usb_device *pusb_dev; /* this usb_device */
30 unsigned char ifnum; /* interface number */
31 unsigned char ep_in; /* in endpoint */
32 unsigned char ep_out; /* out ....... */
33 unsigned char ep_int; /* interrupt . */
34 unsigned char subclass; /* as in overview */
35 unsigned char protocol; /* .............. */
36 unsigned char irqinterval; /* Intervall for IRQ Pipe */
37
e1dbdf91
LS
38 /* driver private */
39 void *dev_priv;
89d48367
SG
40};
41
42/*
440a5742
GS
43 * Function definitions for each USB ethernet driver go here
44 * (declaration is unconditional, compilation is conditional)
89d48367 45 */
9b70e007
SG
46void asix_eth_before_probe(void);
47int asix_eth_probe(struct usb_device *dev, unsigned int ifnum,
48 struct ueth_data *ss);
49int asix_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
50 struct eth_device *eth);
89d48367 51
e9954b86
RG
52void ax88179_eth_before_probe(void);
53int ax88179_eth_probe(struct usb_device *dev, unsigned int ifnum,
54 struct ueth_data *ss);
55int ax88179_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
56 struct eth_device *eth);
57
df4fb1c3
GS
58void mcs7830_eth_before_probe(void);
59int mcs7830_eth_probe(struct usb_device *dev, unsigned int ifnum,
60 struct ueth_data *ss);
61int mcs7830_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
62 struct eth_device *eth);
63
291391be
SG
64void smsc95xx_eth_before_probe(void);
65int smsc95xx_eth_probe(struct usb_device *dev, unsigned int ifnum,
66 struct ueth_data *ss);
67int smsc95xx_eth_get_info(struct usb_device *dev, struct ueth_data *ss,
68 struct eth_device *eth);
291391be 69
89d48367 70#endif /* __USB_ETHER_H__ */