firmware-sandbox.c 396 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * sandbox firmware driver
  4. *
  5. * Copyright (C) 2018 Xilinx, Inc.
  6. */
  7. #include <common.h>
  8. #include <dm.h>
  9. static const struct udevice_id generic_sandbox_firmware_ids[] = {
  10. { .compatible = "sandbox,firmware" },
  11. { }
  12. };
  13. U_BOOT_DRIVER(sandbox_firmware) = {
  14. .name = "sandbox_firmware",
  15. .id = UCLASS_FIRMWARE,
  16. .of_match = generic_sandbox_firmware_ids,
  17. };