net: sandbox-raw: Convert raw eth driver to livetree
[oweals/u-boot.git] / arch / sandbox / include / asm / eth-raw-os.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2015 National Instruments
4  *
5  * (C) Copyright 2015
6  * Joe Hershberger <joe.hershberger@ni.com>
7  */
8
9 #ifndef __ETH_RAW_OS_H
10 #define __ETH_RAW_OS_H
11
12 #define IFNAMSIZ        16
13
14 /**
15  * struct eth_sandbox_raw_priv - raw socket session
16  *
17  * sd: socket descriptor - the open socket during a session
18  * host_ifname: interface name on the host to use for sending our packets
19  * host_ifindex: interface index number on the host
20  * device: struct sockaddr_ll - the host interface packets move to/from
21  * local: 1 or 0 to select the local interface ('lo') or not
22  * local_bindsd: socket descriptor to prevent the kernel from sending
23  *               a message to the server claiming the port is
24  *               unreachable
25  * local_bind_udp_port: The UDP port number that we bound to
26  */
27 struct eth_sandbox_raw_priv {
28         int sd;
29         char host_ifname[IFNAMSIZ];
30         unsigned int host_ifindex;
31         void *device;
32         int local;
33         int local_bind_sd;
34         unsigned short local_bind_udp_port;
35 };
36
37 int sandbox_eth_raw_os_start(struct eth_sandbox_raw_priv *priv,
38                              unsigned char *ethmac);
39 int sandbox_eth_raw_os_send(void *packet, int length,
40                             struct eth_sandbox_raw_priv *priv);
41 int sandbox_eth_raw_os_recv(void *packet, int *length,
42                             const struct eth_sandbox_raw_priv *priv);
43 void sandbox_eth_raw_os_stop(struct eth_sandbox_raw_priv *priv);
44
45 #endif /* __ETH_RAW_OS_H */