1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2015 Google, Inc 4 */ 5 6 #include <common.h> 7 #include <dm.h> 8 #include <asm/io.h> 9 #include <dm/test.h> 10 #include <test/ut.h> 11 12 /* Test that sandbox PCI works correctly */ 13 static int dm_test_pci_base(struct unit_test_state *uts) 14 { 15 struct udevice *bus; 16 17 ut_assertok(uclass_get_device(UCLASS_PCI, 0, &bus)); 18 19 return 0; 20 } 21 DM_TEST(dm_test_pci_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT); 22 23 /* Test that sandbox PCI bus numbering works correctly */ 24 static 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 } 32 DM_TEST(dm_test_pci_busnum, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT); 33 34 /* Test that we can use the swapcase device correctly */ 35 static int dm_test_pci_swapcase(struct unit_test_state *uts) 36 { 37 struct udevice *swap; 38 ulong io_addr, mem_addr; 39 char *ptr; 40 41 /* Check that asking for the device automatically fires up PCI */ 42 ut_assertok(dm_pci_bus_find_bdf(PCI_BDF(0, 0x1f, 0), &swap)); 43 44 /* First test I/O */ 45 io_addr = dm_pci_read_bar32(swap, 0); 46 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 */ 53 mem_addr = dm_pci_read_bar32(swap, 1); 54 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 } 64 DM_TEST(dm_test_pci_swapcase, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT); 65