blob: c4722615689571136631b6cc21c58ef0610ab457 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Joe Hershberger3ea143a2015-03-22 17:09:13 -05002/*
3 * Copyright (c) 2015 National Instruments
4 *
5 * (C) Copyright 2015
6 * Joe Hershberger <joe.hershberger@ni.com>
Joe Hershberger3ea143a2015-03-22 17:09:13 -05007 */
8
9#include <common.h>
10#include <dm.h>
11#include <malloc.h>
12#include <net.h>
Joe Hershberger6f2707c2015-04-21 13:57:19 -050013#include <asm/test.h>
Joe Hershberger3ea143a2015-03-22 17:09:13 -050014
15DECLARE_GLOBAL_DATA_PTR;
16
Joe Hershbergerd87a4572015-03-22 17:09:14 -050017/**
18 * struct eth_sandbox_priv - memory for sandbox mock driver
19 *
20 * fake_host_hwaddr: MAC address of mocked machine
21 * fake_host_ipaddr: IP address of mocked machine
Joe Hershbergere4ab9a62018-09-26 16:48:53 -050022 * disabled: Will not respond
Joe Hershbergerd87a4572015-03-22 17:09:14 -050023 * recv_packet_buffer: buffer of the packet returned as received
24 * recv_packet_length: length of the packet returned as received
25 */
26struct eth_sandbox_priv {
27 uchar fake_host_hwaddr[ARP_HLEN];
Joe Hershberger049a95a2015-04-08 01:41:01 -050028 struct in_addr fake_host_ipaddr;
Joe Hershbergere4ab9a62018-09-26 16:48:53 -050029 bool disabled;
Joe Hershbergerd87a4572015-03-22 17:09:14 -050030 uchar *recv_packet_buffer;
31 int recv_packet_length;
32};
33
Joe Hershberger6f2707c2015-04-21 13:57:19 -050034static bool skip_timeout;
Joe Hershberger2eede1f2015-03-22 17:09:19 -050035
36/*
37 * sandbox_eth_disable_response()
38 *
39 * index - The alias index (also DM seq number)
40 * disable - If non-zero, ignore sent packets and don't send mock response
41 */
42void sandbox_eth_disable_response(int index, bool disable)
43{
Joe Hershbergere4ab9a62018-09-26 16:48:53 -050044 struct udevice *dev;
45 struct eth_sandbox_priv *priv;
46 int ret;
47
48 ret = uclass_get_device(UCLASS_ETH, index, &dev);
49 if (ret)
50 return;
51
52 priv = dev_get_priv(dev);
53 priv->disabled = disable;
Joe Hershberger2eede1f2015-03-22 17:09:19 -050054}
55
Joe Hershberger6f2707c2015-04-21 13:57:19 -050056/*
57 * sandbox_eth_skip_timeout()
58 *
59 * When the first packet read is attempted, fast-forward time
60 */
61void sandbox_eth_skip_timeout(void)
62{
63 skip_timeout = true;
64}
65
Joe Hershbergere95bb162018-09-26 16:48:54 -050066/*
67 * sandbox_eth_arp_req_to_reply()
68 *
69 * Check for an arp request to be sent. If so, inject a reply
70 *
71 * returns 0 if injected, -EAGAIN if not
72 */
73int sandbox_eth_arp_req_to_reply(struct udevice *dev, void *packet,
74 unsigned int len)
75{
76 struct eth_sandbox_priv *priv = dev_get_priv(dev);
77 struct ethernet_hdr *eth = packet;
78 struct arp_hdr *arp;
79 struct ethernet_hdr *eth_recv;
80 struct arp_hdr *arp_recv;
81
82 if (ntohs(eth->et_protlen) != PROT_ARP)
83 return -EAGAIN;
84
85 arp = packet + ETHER_HDR_SIZE;
86
87 if (ntohs(arp->ar_op) != ARPOP_REQUEST)
88 return -EAGAIN;
89
90 /* store this as the assumed IP of the fake host */
91 priv->fake_host_ipaddr = net_read_ip(&arp->ar_tpa);
92
93 /* Formulate a fake response */
94 eth_recv = (void *)priv->recv_packet_buffer;
95 memcpy(eth_recv->et_dest, eth->et_src, ARP_HLEN);
96 memcpy(eth_recv->et_src, priv->fake_host_hwaddr, ARP_HLEN);
97 eth_recv->et_protlen = htons(PROT_ARP);
98
99 arp_recv = (void *)eth_recv + ETHER_HDR_SIZE;
100 arp_recv->ar_hrd = htons(ARP_ETHER);
101 arp_recv->ar_pro = htons(PROT_IP);
102 arp_recv->ar_hln = ARP_HLEN;
103 arp_recv->ar_pln = ARP_PLEN;
104 arp_recv->ar_op = htons(ARPOP_REPLY);
105 memcpy(&arp_recv->ar_sha, priv->fake_host_hwaddr, ARP_HLEN);
106 net_write_ip(&arp_recv->ar_spa, priv->fake_host_ipaddr);
107 memcpy(&arp_recv->ar_tha, &arp->ar_sha, ARP_HLEN);
108 net_copy_ip(&arp_recv->ar_tpa, &arp->ar_spa);
109
110 priv->recv_packet_length = ETHER_HDR_SIZE + ARP_HDR_SIZE;
111
112 return 0;
113}
114
115/*
116 * sandbox_eth_ping_req_to_reply()
117 *
118 * Check for a ping request to be sent. If so, inject a reply
119 *
120 * returns 0 if injected, -EAGAIN if not
121 */
122int sandbox_eth_ping_req_to_reply(struct udevice *dev, void *packet,
123 unsigned int len)
124{
125 struct eth_sandbox_priv *priv = dev_get_priv(dev);
126 struct ethernet_hdr *eth = packet;
127 struct ip_udp_hdr *ip;
128 struct icmp_hdr *icmp;
129 struct ethernet_hdr *eth_recv;
130 struct ip_udp_hdr *ipr;
131 struct icmp_hdr *icmpr;
132
133 if (ntohs(eth->et_protlen) != PROT_IP)
134 return -EAGAIN;
135
136 ip = packet + ETHER_HDR_SIZE;
137
138 if (ip->ip_p != IPPROTO_ICMP)
139 return -EAGAIN;
140
141 icmp = (struct icmp_hdr *)&ip->udp_src;
142
143 if (icmp->type != ICMP_ECHO_REQUEST)
144 return -EAGAIN;
145
146 /* reply to the ping */
147 eth_recv = (void *)priv->recv_packet_buffer;
148 memcpy(eth_recv, packet, len);
149 ipr = (void *)eth_recv + ETHER_HDR_SIZE;
150 icmpr = (struct icmp_hdr *)&ipr->udp_src;
151 memcpy(eth_recv->et_dest, eth->et_src, ARP_HLEN);
152 memcpy(eth_recv->et_src, priv->fake_host_hwaddr, ARP_HLEN);
153 ipr->ip_sum = 0;
154 ipr->ip_off = 0;
155 net_copy_ip((void *)&ipr->ip_dst, &ip->ip_src);
156 net_write_ip((void *)&ipr->ip_src, priv->fake_host_ipaddr);
157 ipr->ip_sum = compute_ip_checksum(ipr, IP_HDR_SIZE);
158
159 icmpr->type = ICMP_ECHO_REPLY;
160 icmpr->checksum = 0;
161 icmpr->checksum = compute_ip_checksum(icmpr, ICMP_HDR_SIZE);
162
163 priv->recv_packet_length = len;
164
165 return 0;
166}
167
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500168static int sb_eth_start(struct udevice *dev)
169{
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500170 struct eth_sandbox_priv *priv = dev_get_priv(dev);
171
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500172 debug("eth_sandbox: Start\n");
173
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500174 priv->recv_packet_buffer = net_rx_packets[0];
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500175
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500176 return 0;
177}
178
179static int sb_eth_send(struct udevice *dev, void *packet, int length)
180{
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500181 struct eth_sandbox_priv *priv = dev_get_priv(dev);
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500182
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500183 debug("eth_sandbox: Send packet %d\n", length);
184
Joe Hershbergere4ab9a62018-09-26 16:48:53 -0500185 if (priv->disabled)
Joe Hershberger2eede1f2015-03-22 17:09:19 -0500186 return 0;
187
Joe Hershbergere95bb162018-09-26 16:48:54 -0500188 if (!sandbox_eth_arp_req_to_reply(dev, packet, length))
189 return 0;
190 if (!sandbox_eth_ping_req_to_reply(dev, packet, length))
191 return 0;
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500192}
193
Simon Glassa1ca92e2015-07-06 16:47:49 -0600194static int sb_eth_recv(struct udevice *dev, int flags, uchar **packetp)
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500195{
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500196 struct eth_sandbox_priv *priv = dev_get_priv(dev);
197
Joe Hershberger6f2707c2015-04-21 13:57:19 -0500198 if (skip_timeout) {
Joe Hershbergerc5a75332015-12-21 16:31:35 -0600199 sandbox_timer_add_offset(11000UL);
Joe Hershberger6f2707c2015-04-21 13:57:19 -0500200 skip_timeout = false;
201 }
202
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500203 if (priv->recv_packet_length) {
204 int lcl_recv_packet_length = priv->recv_packet_length;
205
206 debug("eth_sandbox: received packet %d\n",
207 priv->recv_packet_length);
208 priv->recv_packet_length = 0;
209 *packetp = priv->recv_packet_buffer;
210 return lcl_recv_packet_length;
211 }
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500212 return 0;
213}
214
215static void sb_eth_stop(struct udevice *dev)
216{
217 debug("eth_sandbox: Stop\n");
218}
219
220static int sb_eth_write_hwaddr(struct udevice *dev)
221{
222 struct eth_pdata *pdata = dev_get_platdata(dev);
223
224 debug("eth_sandbox %s: Write HW ADDR - %pM\n", dev->name,
225 pdata->enetaddr);
226 return 0;
227}
228
229static const struct eth_ops sb_eth_ops = {
230 .start = sb_eth_start,
231 .send = sb_eth_send,
232 .recv = sb_eth_recv,
233 .stop = sb_eth_stop,
234 .write_hwaddr = sb_eth_write_hwaddr,
235};
236
237static int sb_eth_remove(struct udevice *dev)
238{
239 return 0;
240}
241
242static int sb_eth_ofdata_to_platdata(struct udevice *dev)
243{
244 struct eth_pdata *pdata = dev_get_platdata(dev);
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500245 struct eth_sandbox_priv *priv = dev_get_priv(dev);
246 const u8 *mac;
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500247
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500248 pdata->iobase = dev_read_addr(dev);
249
250 mac = dev_read_u8_array_ptr(dev, "fake-host-hwaddr", ARP_HLEN);
251 if (!mac) {
252 printf("'fake-host-hwaddr' is missing from the DT\n");
253 return -EINVAL;
254 }
255 memcpy(priv->fake_host_hwaddr, mac, ARP_HLEN);
Joe Hershbergere4ab9a62018-09-26 16:48:53 -0500256 priv->disabled = false;
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500257
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500258 return 0;
259}
260
261static const struct udevice_id sb_eth_ids[] = {
262 { .compatible = "sandbox,eth" },
263 { }
264};
265
266U_BOOT_DRIVER(eth_sandbox) = {
267 .name = "eth_sandbox",
268 .id = UCLASS_ETH,
269 .of_match = sb_eth_ids,
270 .ofdata_to_platdata = sb_eth_ofdata_to_platdata,
271 .remove = sb_eth_remove,
272 .ops = &sb_eth_ops,
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500273 .priv_auto_alloc_size = sizeof(struct eth_sandbox_priv),
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500274 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
275};