irq_sandbox_test.c 438 B

12345678910111213141516171819202122
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Sandbox driver for testing interrupts with of-platdata
  4. *
  5. * Copyright 2021 Google LLC
  6. */
  7. #include <common.h>
  8. #include <dm.h>
  9. #include <irq.h>
  10. #include <asm/irq.h>
  11. static const struct udevice_id sandbox_irq_test_ids[] = {
  12. { .compatible = "sandbox,irq-test" },
  13. { }
  14. };
  15. U_BOOT_DRIVER(sandbox_irq_test) = {
  16. .name = "sandbox_irq_test",
  17. .id = UCLASS_MISC,
  18. .of_match = sandbox_irq_test_ids,
  19. };