blob: 795f6d5e403f2fc75303ec5d0df49e769a7dbac6 [file] [log] [blame]
Rajan Vajab3b2ddb2018-09-19 03:43:46 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018 Xilinx, Inc.
4 */
5
Rajan Vajab3b2ddb2018-09-19 03:43:46 -07006#include <dm.h>
7#include <syscon.h>
8#include <asm/test.h>
9#include <dm/test.h>
Simon Glass75c4d412020-07-19 10:15:37 -060010#include <test/test.h>
Rajan Vajab3b2ddb2018-09-19 03:43:46 -070011#include <test/ut.h>
12
13/* Base test of firmware probe */
14static int dm_test_firmware_probe(struct unit_test_state *uts)
15{
16 struct udevice *dev;
17
18 ut_assertok(uclass_get_device_by_name(UCLASS_FIRMWARE,
19 "sandbox-firmware", &dev));
20 return 0;
21}
Simon Glass1a92f832024-08-22 07:57:48 -060022DM_TEST(dm_test_firmware_probe, UTF_SCAN_FDT);