2019-05-27 13:55:06 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-09-13 21:30:11 +07:00
|
|
|
/*
|
|
|
|
* Driver for the Conexant CX25821 PCIe bridge
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Conexant Systems Inc.
|
|
|
|
* Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
|
|
|
|
* Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
|
|
|
|
*/
|
|
|
|
|
2010-11-08 03:48:21 +07:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2009-09-15 21:33:54 +07:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
|
|
|
|
#include "cx25821.h"
|
|
|
|
|
2010-03-23 09:29:25 +07:00
|
|
|
/* board config info */
|
2009-09-15 21:33:54 +07:00
|
|
|
|
|
|
|
struct cx25821_board cx25821_boards[] = {
|
|
|
|
[UNKNOWN_BOARD] = {
|
2011-09-02 10:55:34 +07:00
|
|
|
.name = "UNKNOWN/GENERIC",
|
|
|
|
/* Ensure safe default for unknown boards */
|
|
|
|
.clk_freq = 0,
|
|
|
|
},
|
2009-09-15 21:33:54 +07:00
|
|
|
|
|
|
|
[CX25821_BOARD] = {
|
2011-09-02 10:55:34 +07:00
|
|
|
.name = "CX25821",
|
|
|
|
.portb = CX25821_RAW,
|
|
|
|
.portc = CX25821_264,
|
|
|
|
},
|
2009-09-15 21:33:54 +07:00
|
|
|
|
|
|
|
};
|