blob: b71c8f88d94f7abe7090e644a69b34486dfc1127 [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
22 * recv_packet_buffer: buffer of the packet returned as received
23 * recv_packet_length: length of the packet returned as received
24 */
25struct eth_sandbox_priv {
26 uchar fake_host_hwaddr[ARP_HLEN];
Joe Hershberger049a95a2015-04-08 01:41:01 -050027 struct in_addr fake_host_ipaddr;
Joe Hershbergerd87a4572015-03-22 17:09:14 -050028 uchar *recv_packet_buffer;
29 int recv_packet_length;
30};
31
Joe Hershberger2eede1f2015-03-22 17:09:19 -050032static bool disabled[8] = {false};
Joe Hershberger6f2707c2015-04-21 13:57:19 -050033static bool skip_timeout;
Joe Hershberger2eede1f2015-03-22 17:09:19 -050034
35/*
36 * sandbox_eth_disable_response()
37 *
38 * index - The alias index (also DM seq number)
39 * disable - If non-zero, ignore sent packets and don't send mock response
40 */
41void sandbox_eth_disable_response(int index, bool disable)
42{
43 disabled[index] = disable;
44}
45
Joe Hershberger6f2707c2015-04-21 13:57:19 -050046/*
47 * sandbox_eth_skip_timeout()
48 *
49 * When the first packet read is attempted, fast-forward time
50 */
51void sandbox_eth_skip_timeout(void)
52{
53 skip_timeout = true;
54}
55
Joe Hershberger3ea143a2015-03-22 17:09:13 -050056static int sb_eth_start(struct udevice *dev)
57{
Joe Hershbergerd87a4572015-03-22 17:09:14 -050058 struct eth_sandbox_priv *priv = dev_get_priv(dev);
59
Joe Hershberger3ea143a2015-03-22 17:09:13 -050060 debug("eth_sandbox: Start\n");
61
Joe Hershbergerd87a4572015-03-22 17:09:14 -050062 priv->recv_packet_buffer = net_rx_packets[0];
Joe Hershbergerb32dd182018-07-02 14:47:49 -050063
Joe Hershberger3ea143a2015-03-22 17:09:13 -050064 return 0;
65}
66
67static int sb_eth_send(struct udevice *dev, void *packet, int length)
68{
Joe Hershbergerd87a4572015-03-22 17:09:14 -050069 struct eth_sandbox_priv *priv = dev_get_priv(dev);
70 struct ethernet_hdr *eth = packet;
71
Joe Hershberger3ea143a2015-03-22 17:09:13 -050072 debug("eth_sandbox: Send packet %d\n", length);
73
Joe Hershberger2eede1f2015-03-22 17:09:19 -050074 if (dev->seq >= 0 && dev->seq < ARRAY_SIZE(disabled) &&
75 disabled[dev->seq])
76 return 0;
77
Joe Hershbergerd87a4572015-03-22 17:09:14 -050078 if (ntohs(eth->et_protlen) == PROT_ARP) {
79 struct arp_hdr *arp = packet + ETHER_HDR_SIZE;
80
81 if (ntohs(arp->ar_op) == ARPOP_REQUEST) {
82 struct ethernet_hdr *eth_recv;
83 struct arp_hdr *arp_recv;
84
85 /* store this as the assumed IP of the fake host */
Joe Hershberger049a95a2015-04-08 01:41:01 -050086 priv->fake_host_ipaddr = net_read_ip(&arp->ar_tpa);
Joe Hershbergerd87a4572015-03-22 17:09:14 -050087 /* Formulate a fake response */
88 eth_recv = (void *)priv->recv_packet_buffer;
89 memcpy(eth_recv->et_dest, eth->et_src, ARP_HLEN);
90 memcpy(eth_recv->et_src, priv->fake_host_hwaddr,
91 ARP_HLEN);
92 eth_recv->et_protlen = htons(PROT_ARP);
93
94 arp_recv = (void *)priv->recv_packet_buffer +
95 ETHER_HDR_SIZE;
96 arp_recv->ar_hrd = htons(ARP_ETHER);
97 arp_recv->ar_pro = htons(PROT_IP);
98 arp_recv->ar_hln = ARP_HLEN;
99 arp_recv->ar_pln = ARP_PLEN;
100 arp_recv->ar_op = htons(ARPOP_REPLY);
101 memcpy(&arp_recv->ar_sha, priv->fake_host_hwaddr,
102 ARP_HLEN);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500103 net_write_ip(&arp_recv->ar_spa, priv->fake_host_ipaddr);
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500104 memcpy(&arp_recv->ar_tha, &arp->ar_sha, ARP_HLEN);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500105 net_copy_ip(&arp_recv->ar_tpa, &arp->ar_spa);
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500106
107 priv->recv_packet_length = ETHER_HDR_SIZE +
108 ARP_HDR_SIZE;
109 }
110 } else if (ntohs(eth->et_protlen) == PROT_IP) {
111 struct ip_udp_hdr *ip = packet + ETHER_HDR_SIZE;
112
113 if (ip->ip_p == IPPROTO_ICMP) {
114 struct icmp_hdr *icmp = (struct icmp_hdr *)&ip->udp_src;
115
116 if (icmp->type == ICMP_ECHO_REQUEST) {
117 struct ethernet_hdr *eth_recv;
118 struct ip_udp_hdr *ipr;
119 struct icmp_hdr *icmpr;
120
121 /* reply to the ping */
122 memcpy(priv->recv_packet_buffer, packet,
123 length);
124 eth_recv = (void *)priv->recv_packet_buffer;
125 ipr = (void *)priv->recv_packet_buffer +
126 ETHER_HDR_SIZE;
127 icmpr = (struct icmp_hdr *)&ipr->udp_src;
128 memcpy(eth_recv->et_dest, eth->et_src,
129 ARP_HLEN);
130 memcpy(eth_recv->et_src, priv->fake_host_hwaddr,
131 ARP_HLEN);
132 ipr->ip_sum = 0;
133 ipr->ip_off = 0;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500134 net_copy_ip((void *)&ipr->ip_dst, &ip->ip_src);
135 net_write_ip((void *)&ipr->ip_src,
136 priv->fake_host_ipaddr);
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500137 ipr->ip_sum = compute_ip_checksum(ipr,
138 IP_HDR_SIZE);
139
140 icmpr->type = ICMP_ECHO_REPLY;
141 icmpr->checksum = 0;
142 icmpr->checksum = compute_ip_checksum(icmpr,
143 ICMP_HDR_SIZE);
144
145 priv->recv_packet_length = length;
146 }
147 }
148 }
149
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500150 return 0;
151}
152
Simon Glassa1ca92e2015-07-06 16:47:49 -0600153static int sb_eth_recv(struct udevice *dev, int flags, uchar **packetp)
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500154{
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500155 struct eth_sandbox_priv *priv = dev_get_priv(dev);
156
Joe Hershberger6f2707c2015-04-21 13:57:19 -0500157 if (skip_timeout) {
Joe Hershbergerc5a75332015-12-21 16:31:35 -0600158 sandbox_timer_add_offset(11000UL);
Joe Hershberger6f2707c2015-04-21 13:57:19 -0500159 skip_timeout = false;
160 }
161
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500162 if (priv->recv_packet_length) {
163 int lcl_recv_packet_length = priv->recv_packet_length;
164
165 debug("eth_sandbox: received packet %d\n",
166 priv->recv_packet_length);
167 priv->recv_packet_length = 0;
168 *packetp = priv->recv_packet_buffer;
169 return lcl_recv_packet_length;
170 }
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500171 return 0;
172}
173
174static void sb_eth_stop(struct udevice *dev)
175{
176 debug("eth_sandbox: Stop\n");
177}
178
179static int sb_eth_write_hwaddr(struct udevice *dev)
180{
181 struct eth_pdata *pdata = dev_get_platdata(dev);
182
183 debug("eth_sandbox %s: Write HW ADDR - %pM\n", dev->name,
184 pdata->enetaddr);
185 return 0;
186}
187
188static const struct eth_ops sb_eth_ops = {
189 .start = sb_eth_start,
190 .send = sb_eth_send,
191 .recv = sb_eth_recv,
192 .stop = sb_eth_stop,
193 .write_hwaddr = sb_eth_write_hwaddr,
194};
195
196static int sb_eth_remove(struct udevice *dev)
197{
198 return 0;
199}
200
201static int sb_eth_ofdata_to_platdata(struct udevice *dev)
202{
203 struct eth_pdata *pdata = dev_get_platdata(dev);
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500204 struct eth_sandbox_priv *priv = dev_get_priv(dev);
205 const u8 *mac;
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500206
Joe Hershbergerb32dd182018-07-02 14:47:49 -0500207 pdata->iobase = dev_read_addr(dev);
208
209 mac = dev_read_u8_array_ptr(dev, "fake-host-hwaddr", ARP_HLEN);
210 if (!mac) {
211 printf("'fake-host-hwaddr' is missing from the DT\n");
212 return -EINVAL;
213 }
214 memcpy(priv->fake_host_hwaddr, mac, ARP_HLEN);
215
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500216 return 0;
217}
218
219static const struct udevice_id sb_eth_ids[] = {
220 { .compatible = "sandbox,eth" },
221 { }
222};
223
224U_BOOT_DRIVER(eth_sandbox) = {
225 .name = "eth_sandbox",
226 .id = UCLASS_ETH,
227 .of_match = sb_eth_ids,
228 .ofdata_to_platdata = sb_eth_ofdata_to_platdata,
229 .remove = sb_eth_remove,
230 .ops = &sb_eth_ops,
Joe Hershbergerd87a4572015-03-22 17:09:14 -0500231 .priv_auto_alloc_size = sizeof(struct eth_sandbox_priv),
Joe Hershberger3ea143a2015-03-22 17:09:13 -0500232 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
233};