blob: be1208cfbdf1f279e50cc0776f3a0081cd81f35b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassd3b7ff12015-03-05 12:25:34 -07002/*
3 * Copyright (C) 2015 Google, Inc
Simon Glassd3b7ff12015-03-05 12:25:34 -07004 */
5
6#include <common.h>
7#include <dm.h>
8#include <asm/io.h>
9#include <dm/test.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050010#include <test/ut.h>
Simon Glassd3b7ff12015-03-05 12:25:34 -070011
12/* Test that sandbox PCI works correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -050013static int dm_test_pci_base(struct unit_test_state *uts)
Simon Glassd3b7ff12015-03-05 12:25:34 -070014{
15 struct udevice *bus;
16
17 ut_assertok(uclass_get_device(UCLASS_PCI, 0, &bus));
18
19 return 0;
20}
21DM_TEST(dm_test_pci_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
22
Simon Glass2bb02e42015-05-10 21:08:06 -060023/* Test that sandbox PCI bus numbering works correctly */
24static int dm_test_pci_busnum(struct unit_test_state *uts)
25{
26 struct udevice *bus;
27
28 ut_assertok(uclass_get_device_by_seq(UCLASS_PCI, 0, &bus));
29
30 return 0;
31}
32DM_TEST(dm_test_pci_busnum, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
33
Simon Glassd3b7ff12015-03-05 12:25:34 -070034/* Test that we can use the swapcase device correctly */
Joe Hershbergere721b882015-05-20 14:27:27 -050035static int dm_test_pci_swapcase(struct unit_test_state *uts)
Simon Glassd3b7ff12015-03-05 12:25:34 -070036{
Bin Mengdd4808f2018-08-03 01:14:38 -070037 struct udevice *swap;
Simon Glassd3b7ff12015-03-05 12:25:34 -070038 ulong io_addr, mem_addr;
39 char *ptr;
40
41 /* Check that asking for the device automatically fires up PCI */
Simon Glassc0322412015-11-29 13:18:02 -070042 ut_assertok(dm_pci_bus_find_bdf(PCI_BDF(0, 0x1f, 0), &swap));
Simon Glassd3b7ff12015-03-05 12:25:34 -070043
44 /* First test I/O */
Simon Glassc0322412015-11-29 13:18:02 -070045 io_addr = dm_pci_read_bar32(swap, 0);
Simon Glassd3b7ff12015-03-05 12:25:34 -070046 outb(2, io_addr);
47 ut_asserteq(2, inb(io_addr));
48
49 /*
50 * Now test memory mapping - note we must unmap and remap to cause
51 * the swapcase emulation to see our data and response.
52 */
Simon Glassc0322412015-11-29 13:18:02 -070053 mem_addr = dm_pci_read_bar32(swap, 1);
Simon Glassd3b7ff12015-03-05 12:25:34 -070054 ptr = map_sysmem(mem_addr, 20);
55 strcpy(ptr, "This is a TesT");
56 unmap_sysmem(ptr);
57
58 ptr = map_sysmem(mem_addr, 20);
59 ut_asserteq_str("tHIS IS A tESt", ptr);
60 unmap_sysmem(ptr);
61
62 return 0;
63}
64DM_TEST(dm_test_pci_swapcase, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);