cx25821-cards.c 696 B

123456789101112131415161718192021222324252627282930313233
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Driver for the Conexant CX25821 PCIe bridge
  4. *
  5. * Copyright (C) 2009 Conexant Systems Inc.
  6. * Authors <[email protected]>, <[email protected]>
  7. * Based on Steven Toth <[email protected]> cx23885 driver
  8. */
  9. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  10. #include <linux/init.h>
  11. #include <linux/module.h>
  12. #include <linux/pci.h>
  13. #include "cx25821.h"
  14. /* board config info */
  15. struct cx25821_board cx25821_boards[] = {
  16. [UNKNOWN_BOARD] = {
  17. .name = "UNKNOWN/GENERIC",
  18. /* Ensure safe default for unknown boards */
  19. .clk_freq = 0,
  20. },
  21. [CX25821_BOARD] = {
  22. .name = "CX25821",
  23. .portb = CX25821_RAW,
  24. .portc = CX25821_264,
  25. },
  26. };