Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  *  Driver for the Conexant CX25821 PCIe bridge
0004  *
0005  *  Copyright (C) 2009 Conexant Systems Inc.
0006  *  Authors  <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
0007  *  Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
0008  */
0009 
0010 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
0011 
0012 #include <linux/init.h>
0013 #include <linux/module.h>
0014 #include <linux/pci.h>
0015 
0016 #include "cx25821.h"
0017 
0018 /* board config info */
0019 
0020 struct cx25821_board cx25821_boards[] = {
0021     [UNKNOWN_BOARD] = {
0022         .name = "UNKNOWN/GENERIC",
0023         /* Ensure safe default for unknown boards */
0024         .clk_freq = 0,
0025     },
0026 
0027     [CX25821_BOARD] = {
0028         .name = "CX25821",
0029         .portb = CX25821_RAW,
0030         .portc = CX25821_264,
0031     },
0032 
0033 };