blob: 45c46a1973920797a7c23b7fbbcfcc184dbfba2a [file] [log] [blame]
Mario Six16f57da2018-08-09 14:51:20 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2018
4 * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
5 */
6
Mario Six16f57da2018-08-09 14:51:20 +02007#include <axi.h>
8#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass75c4d412020-07-19 10:15:37 -060010#include <asm/axi.h>
Mario Six16f57da2018-08-09 14:51:20 +020011#include <dm/test.h>
Simon Glass75c4d412020-07-19 10:15:37 -060012#include <test/test.h>
Mario Six16f57da2018-08-09 14:51:20 +020013#include <test/ut.h>
Mario Six16f57da2018-08-09 14:51:20 +020014
15/* Test that sandbox AXI works correctly */
16static int dm_test_axi_base(struct unit_test_state *uts)
17{
18 struct udevice *bus;
19
20 ut_assertok(uclass_get_device(UCLASS_AXI, 0, &bus));
21
22 return 0;
23}
Simon Glass1a92f832024-08-22 07:57:48 -060024DM_TEST(dm_test_axi_base, UTF_SCAN_PDATA | UTF_SCAN_FDT);
Mario Six16f57da2018-08-09 14:51:20 +020025
26/* Test that sandbox PCI bus numbering works correctly */
27static int dm_test_axi_busnum(struct unit_test_state *uts)
28{
29 struct udevice *bus;
30
31 ut_assertok(uclass_get_device_by_seq(UCLASS_AXI, 0, &bus));
32
33 return 0;
34}
Simon Glass1a92f832024-08-22 07:57:48 -060035DM_TEST(dm_test_axi_busnum, UTF_SCAN_PDATA | UTF_SCAN_FDT);
Mario Six16f57da2018-08-09 14:51:20 +020036
37/* Test that we can use the store device correctly */
38static int dm_test_axi_store(struct unit_test_state *uts)
39{
40 struct udevice *store;
41 u8 tdata1[] = {0x55, 0x66, 0x77, 0x88};
42 u8 tdata2[] = {0xaa, 0xbb, 0xcc, 0xdd};
43 u32 val;
44 u8 *data;
45
46 /* Check that asking for the device automatically fires up AXI */
47 ut_assertok(uclass_get_device(UCLASS_AXI_EMUL, 0, &store));
48 ut_assert(device_active(store));
49
50 axi_get_store(store, &data);
51
52 /* Test reading */
53 memcpy(data, tdata1, ARRAY_SIZE(tdata1));
54 axi_read(store, 0, &val, AXI_SIZE_32);
55 ut_asserteq(0x55667788, val);
56
57 memcpy(data + 3, tdata2, ARRAY_SIZE(tdata2));
58 axi_read(store, 3, &val, AXI_SIZE_32);
59 ut_asserteq(0xaabbccdd, val);
60
61 /* Reset data store */
62 memset(data, 0, 16);
63
64 /* Test writing */
65 val = 0x55667788;
66 axi_write(store, 0, &val, AXI_SIZE_32);
Simon Glassa3186e62020-05-10 12:52:45 -060067 ut_asserteq_mem(data, tdata1, ARRAY_SIZE(tdata1));
Mario Six16f57da2018-08-09 14:51:20 +020068
69 val = 0xaabbccdd;
70 axi_write(store, 3, &val, AXI_SIZE_32);
Simon Glassa3186e62020-05-10 12:52:45 -060071 ut_asserteq_mem(data + 3, tdata2, ARRAY_SIZE(tdata1));
Mario Six16f57da2018-08-09 14:51:20 +020072
73 return 0;
74}
Simon Glass1a92f832024-08-22 07:57:48 -060075DM_TEST(dm_test_axi_store, UTF_SCAN_PDATA | UTF_SCAN_FDT);