pci.c 532 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. * (C) Copyright 2008,2009
  4. * Graeme Russ, <graeme.russ@gmail.com>
  5. *
  6. * (C) Copyright 2002
  7. * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #include <common.h>
  12. #include <dm.h>
  13. #include <pci.h>
  14. static const struct udevice_id generic_pch_ids[] = {
  15. { .compatible = "intel,pch7" },
  16. { .compatible = "intel,pch9" },
  17. { }
  18. };
  19. U_BOOT_DRIVER(generic_pch_drv) = {
  20. .name = "pch",
  21. .id = UCLASS_PCH,
  22. .of_match = generic_pch_ids,
  23. };