mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
2500cf171d
Moves everything ddb_regset / ddb_regmap / ddb_info related (which is used to gather all information required for every piece of supported hardware) out from ddbridge-main, ddbridge-core and octonet-core into ddbridge-hw, which then in turn only requires annotations on all ddb_info structs, and doesn't need to export regsets, regmaps et al., thus reducing clutter.
75 lines
2.4 KiB
C
75 lines
2.4 KiB
C
|
|
/*
|
|
* ddbridge-hw.h: Digital Devices bridge hardware maps
|
|
*
|
|
* Copyright (C) 2010-2017 Digital Devices GmbH
|
|
* Ralph Metzler <rjkm@metzlerbros.de>
|
|
* Marcus Metzler <mocm@metzlerbros.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 only, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef _DDBRIDGE_HW_H_
|
|
#define _DDBRIDGE_HW_H_
|
|
|
|
#include "ddbridge.h"
|
|
|
|
/******************************************************************************/
|
|
|
|
extern struct ddb_info ddb_none;
|
|
extern struct ddb_info ddb_octopus;
|
|
extern struct ddb_info ddb_octopusv3;
|
|
extern struct ddb_info ddb_octopus_le;
|
|
extern struct ddb_info ddb_octopus_oem;
|
|
extern struct ddb_info ddb_octopus_mini;
|
|
extern struct ddb_info ddb_v6;
|
|
extern struct ddb_info ddb_v6_5;
|
|
extern struct ddb_info ddb_v7;
|
|
extern struct ddb_info ddb_v7a;
|
|
extern struct ddb_info ddb_ctv7;
|
|
extern struct ddb_info ddb_satixS2v3;
|
|
extern struct ddb_info ddb_ci;
|
|
extern struct ddb_info ddb_cis;
|
|
extern struct ddb_info ddb_ci_s2_pro;
|
|
extern struct ddb_info ddb_ci_s2_pro_a;
|
|
extern struct ddb_info ddb_dvbct;
|
|
|
|
/****************************************************************************/
|
|
|
|
extern struct ddb_info ddb_mod;
|
|
extern struct ddb_info ddb_mod_fsm_24;
|
|
extern struct ddb_info ddb_mod_fsm_16;
|
|
extern struct ddb_info ddb_mod_fsm_8;
|
|
extern struct ddb_info ddb_sdr;
|
|
|
|
/****************************************************************************/
|
|
|
|
extern struct ddb_info ddb_octopro_hdin;
|
|
extern struct ddb_info ddb_octopro;
|
|
extern struct ddb_info ddb_octonet;
|
|
extern struct ddb_info ddb_octonet_jse;
|
|
extern struct ddb_info ddb_octonet_gtl;
|
|
extern struct ddb_info ddb_octonet_tbd;
|
|
|
|
/****************************************************************************/
|
|
|
|
extern struct ddb_info ddb_ct2_8;
|
|
extern struct ddb_info ddb_c2t2_8;
|
|
extern struct ddb_info ddb_isdbt_8;
|
|
extern struct ddb_info ddb_c2t2i_v0_8;
|
|
extern struct ddb_info ddb_c2t2i_8;
|
|
|
|
/****************************************************************************/
|
|
|
|
extern struct ddb_info ddb_s2_48;
|
|
|
|
#endif /* _DDBRIDGE_HW_H */
|