blob: d970d75f781d6beabfd77d048e4c29e20e9e1361 [file] [log] [blame]
Rajan Vaja31b82172018-09-19 03:43:46 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * sandbox firmware driver
4 *
5 * Copyright (C) 2018 Xilinx, Inc.
6 */
7
8#include <common.h>
9#include <dm.h>
10
11static const struct udevice_id generic_sandbox_firmware_ids[] = {
12 { .compatible = "sandbox,firmware" },
13 { }
14};
15
16U_BOOT_DRIVER(sandbox_firmware) = {
17 .name = "sandbox_firmware",
18 .id = UCLASS_FIRMWARE,
19 .of_match = generic_sandbox_firmware_ids,
20};