brintos

brintos / linux-shallow public Read only

0
0
Text · 794 B · e030f45 Raw
39 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * cxd2841er_priv.h4 *5 * Sony CXD2441ER digital demodulator driver internal definitions6 *7 * Copyright 2012 Sony Corporation8 * Copyright (C) 2014 NetUP Inc.9 * Copyright (C) 2014 Sergey Kozlov <serjk@netup.ru>10 * Copyright (C) 2014 Abylay Ospan <aospan@netup.ru>11 */12 13#ifndef CXD2841ER_PRIV_H14#define CXD2841ER_PRIV_H15 16#define I2C_SLVX			017#define I2C_SLVT			118 19#define CXD2837ER_CHIP_ID		0xb120#define CXD2838ER_CHIP_ID		0xb021#define CXD2841ER_CHIP_ID		0xa722#define CXD2843ER_CHIP_ID		0xa423#define CXD2854ER_CHIP_ID		0xc124 25#define CXD2841ER_DVBS_POLLING_INVL	1026 27struct cxd2841er_cnr_data {28	u32 value;29	int cnr_x1000;30};31 32enum cxd2841er_dvbt2_profile_t {33	DVBT2_PROFILE_ANY = 0,34	DVBT2_PROFILE_BASE = 1,35	DVBT2_PROFILE_LITE = 236};37 38#endif39