eth.c 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (c) 2015 National Instruments
 *
 * (C) Copyright 2015
 * Joe Hershberger <joe.hershberger@ni.com>
 *
 * SPDX-License-Identifier:	GPL-2.0
 */

#include <common.h>
#include <dm.h>
#include <fdtdec.h>
#include <malloc.h>
#include <net.h>
15
#include <dm/test.h>
16 17
#include <dm/device-internal.h>
#include <dm/uclass-internal.h>
18
#include <asm/eth.h>
19
#include <test/ut.h>
20 21 22

DECLARE_GLOBAL_DATA_PTR;

23 24
#define DM_TEST_ETH_NUM		4

25
static int dm_test_eth(struct unit_test_state *uts)
26
{
27
	net_ping_ip = string_to_ip("1.1.2.2");
28 29

	setenv("ethact", "eth@10002000");
30
	ut_assertok(net_loop(PING));
31 32 33
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	setenv("ethact", "eth@10003000");
34
	ut_assertok(net_loop(PING));
35 36 37
	ut_asserteq_str("eth@10003000", getenv("ethact"));

	setenv("ethact", "eth@10004000");
38
	ut_assertok(net_loop(PING));
39 40 41 42 43
	ut_asserteq_str("eth@10004000", getenv("ethact"));

	return 0;
}
DM_TEST(dm_test_eth, DM_TESTF_SCAN_FDT);
44

45
static int dm_test_eth_alias(struct unit_test_state *uts)
46
{
47
	net_ping_ip = string_to_ip("1.1.2.2");
48
	setenv("ethact", "eth0");
49
	ut_assertok(net_loop(PING));
50 51 52
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	setenv("ethact", "eth1");
53
	ut_assertok(net_loop(PING));
54 55 56 57
	ut_asserteq_str("eth@10004000", getenv("ethact"));

	/* Expected to fail since eth2 is not defined in the device tree */
	setenv("ethact", "eth2");
58
	ut_assertok(net_loop(PING));
59 60 61
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	setenv("ethact", "eth5");
62
	ut_assertok(net_loop(PING));
63 64 65 66 67
	ut_asserteq_str("eth@10003000", getenv("ethact"));

	return 0;
}
DM_TEST(dm_test_eth_alias, DM_TESTF_SCAN_FDT);
68

69
static int dm_test_eth_prime(struct unit_test_state *uts)
70
{
71
	net_ping_ip = string_to_ip("1.1.2.2");
72 73 74 75

	/* Expected to be "eth@10003000" because of ethprime variable */
	setenv("ethact", NULL);
	setenv("ethprime", "eth5");
76
	ut_assertok(net_loop(PING));
77 78 79 80 81
	ut_asserteq_str("eth@10003000", getenv("ethact"));

	/* Expected to be "eth@10002000" because it is first */
	setenv("ethact", NULL);
	setenv("ethprime", NULL);
82
	ut_assertok(net_loop(PING));
83 84 85 86 87
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	return 0;
}
DM_TEST(dm_test_eth_prime, DM_TESTF_SCAN_FDT);
88

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
/**
 * This test case is trying to test the following scenario:
 *	- All ethernet devices are not probed
 *	- "ethaddr" for all ethernet devices are not set
 *	- "ethact" is set to a valid ethernet device name
 *
 * With Sandbox default test configuration, all ethernet devices are
 * probed after power-up, so we have to manually create such scenario:
 *	- Remove all ethernet devices
 *	- Remove all "ethaddr" environment variables
 *	- Set "ethact" to the first ethernet device
 *
 * Do a ping test to see if anything goes wrong.
 */
static int dm_test_eth_act(struct unit_test_state *uts)
{
	struct udevice *dev[DM_TEST_ETH_NUM];
	const char *ethname[DM_TEST_ETH_NUM] = {"eth@10002000", "eth@10003000",
						"sbe5", "eth@10004000"};
	const char *addrname[DM_TEST_ETH_NUM] = {"ethaddr", "eth5addr",
						 "eth3addr", "eth1addr"};
	char ethaddr[DM_TEST_ETH_NUM][18];
	int i;

	net_ping_ip = string_to_ip("1.1.2.2");

	/* Prepare the test scenario */
	for (i = 0; i < DM_TEST_ETH_NUM; i++) {
		ut_assertok(uclass_find_device_by_name(UCLASS_ETH,
						       ethname[i], &dev[i]));
		ut_assertok(device_remove(dev[i]));

		/* Invalidate MAC address */
		strcpy(ethaddr[i], getenv(addrname[i]));
		/* Must disable access protection for ethaddr before clearing */
		setenv(".flags", addrname[i]);
		setenv(addrname[i], NULL);
	}

	/* Set ethact to "eth@10002000" */
	setenv("ethact", ethname[0]);

	/* Segment fault might happen if something is wrong */
	ut_asserteq(-ENODEV, net_loop(PING));

	for (i = 0; i < DM_TEST_ETH_NUM; i++) {
		/* Restore the env */
		setenv(".flags", addrname[i]);
		setenv(addrname[i], ethaddr[i]);

		/* Probe the device again */
		ut_assertok(device_probe(dev[i]));
	}
	setenv(".flags", NULL);
	setenv("ethact", NULL);

	return 0;
}
DM_TEST(dm_test_eth_act, DM_TESTF_SCAN_FDT);

149 150
/* The asserts include a return on fail; cleanup in the caller */
static int _dm_test_eth_rotate1(struct unit_test_state *uts)
151 152 153
{
	/* Make sure that the default is to rotate to the next interface */
	setenv("ethact", "eth@10004000");
154
	ut_assertok(net_loop(PING));
155 156 157 158 159
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	/* If ethrotate is no, then we should fail on a bad MAC */
	setenv("ethact", "eth@10004000");
	setenv("ethrotate", "no");
160
	ut_asserteq(-EINVAL, net_loop(PING));
161 162
	ut_asserteq_str("eth@10004000", getenv("ethact"));

163 164
	return 0;
}
165

166 167
static int _dm_test_eth_rotate2(struct unit_test_state *uts)
{
168 169
	/* Make sure we can skip invalid devices */
	setenv("ethact", "eth@10004000");
170
	ut_assertok(net_loop(PING));
171 172
	ut_asserteq_str("eth@10004000", getenv("ethact"));

173 174 175 176 177
	/* Make sure we can handle device name which is not eth# */
	setenv("ethact", "sbe5");
	ut_assertok(net_loop(PING));
	ut_asserteq_str("sbe5", getenv("ethact"));

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
	return 0;
}

static int dm_test_eth_rotate(struct unit_test_state *uts)
{
	char ethaddr[18];
	int retval;

	/* Set target IP to mock ping */
	net_ping_ip = string_to_ip("1.1.2.2");

	/* Invalidate eth1's MAC address */
	strcpy(ethaddr, getenv("eth1addr"));
	/* Must disable access protection for eth1addr before clearing */
	setenv(".flags", "eth1addr");
	setenv("eth1addr", NULL);

	retval = _dm_test_eth_rotate1(uts);

	/* Restore the env */
	setenv("eth1addr", ethaddr);
	setenv("ethrotate", NULL);

	if (!retval) {
		/* Invalidate eth0's MAC address */
		strcpy(ethaddr, getenv("ethaddr"));
		/* Must disable access protection for ethaddr before clearing */
		setenv(".flags", "ethaddr");
		setenv("ethaddr", NULL);

		retval = _dm_test_eth_rotate2(uts);

		/* Restore the env */
		setenv("ethaddr", ethaddr);
	}
213 214 215
	/* Restore the env */
	setenv(".flags", NULL);

216
	return retval;
217 218
}
DM_TEST(dm_test_eth_rotate, DM_TESTF_SCAN_FDT);
219

220 221
/* The asserts include a return on fail; cleanup in the caller */
static int _dm_test_net_retry(struct unit_test_state *uts)
222 223 224 225 226 227 228 229
{
	/*
	 * eth1 is disabled and netretry is yes, so the ping should succeed and
	 * the active device should be eth0
	 */
	sandbox_eth_disable_response(1, true);
	setenv("ethact", "eth@10004000");
	setenv("netretry", "yes");
230
	sandbox_eth_skip_timeout();
231
	ut_assertok(net_loop(PING));
232 233 234 235 236 237 238 239
	ut_asserteq_str("eth@10002000", getenv("ethact"));

	/*
	 * eth1 is disabled and netretry is no, so the ping should fail and the
	 * active device should be eth1
	 */
	setenv("ethact", "eth@10004000");
	setenv("netretry", "no");
240
	sandbox_eth_skip_timeout();
241
	ut_asserteq(-ETIMEDOUT, net_loop(PING));
242 243
	ut_asserteq_str("eth@10004000", getenv("ethact"));

244 245 246 247 248 249 250 251 252 253 254
	return 0;
}

static int dm_test_net_retry(struct unit_test_state *uts)
{
	int retval;

	net_ping_ip = string_to_ip("1.1.2.2");

	retval = _dm_test_net_retry(uts);

255 256 257 258
	/* Restore the env */
	setenv("netretry", NULL);
	sandbox_eth_disable_response(1, false);

259
	return retval;
260 261
}
DM_TEST(dm_test_net_retry, DM_TESTF_SCAN_FDT);