18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * NXP TDA18218HN silicon tuner driver
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright (C) 2010 Antti Palosaari <crope@iki.fi>
68c2ecf20Sopenharmony_ci */
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci#ifndef TDA18218_PRIV_H
98c2ecf20Sopenharmony_ci#define TDA18218_PRIV_H
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ci#include "tda18218.h"
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci#define R00_ID         0x00	/* ID byte */
148c2ecf20Sopenharmony_ci#define R01_R1         0x01	/* Read byte 1 */
158c2ecf20Sopenharmony_ci#define R02_R2         0x02	/* Read byte 2 */
168c2ecf20Sopenharmony_ci#define R03_R3         0x03	/* Read byte 3 */
178c2ecf20Sopenharmony_ci#define R04_R4         0x04	/* Read byte 4 */
188c2ecf20Sopenharmony_ci#define R05_R5         0x05	/* Read byte 5 */
198c2ecf20Sopenharmony_ci#define R06_R6         0x06	/* Read byte 6 */
208c2ecf20Sopenharmony_ci#define R07_MD1        0x07	/* Main divider byte 1 */
218c2ecf20Sopenharmony_ci#define R08_PSM1       0x08	/* PSM byte 1 */
228c2ecf20Sopenharmony_ci#define R09_MD2        0x09	/* Main divider byte 2 */
238c2ecf20Sopenharmony_ci#define R0A_MD3        0x0a	/* Main divider byte 1 */
248c2ecf20Sopenharmony_ci#define R0B_MD4        0x0b	/* Main divider byte 4 */
258c2ecf20Sopenharmony_ci#define R0C_MD5        0x0c	/* Main divider byte 5 */
268c2ecf20Sopenharmony_ci#define R0D_MD6        0x0d	/* Main divider byte 6 */
278c2ecf20Sopenharmony_ci#define R0E_MD7        0x0e	/* Main divider byte 7 */
288c2ecf20Sopenharmony_ci#define R0F_MD8        0x0f	/* Main divider byte 8 */
298c2ecf20Sopenharmony_ci#define R10_CD1        0x10	/* Call divider byte 1 */
308c2ecf20Sopenharmony_ci#define R11_CD2        0x11	/* Call divider byte 2 */
318c2ecf20Sopenharmony_ci#define R12_CD3        0x12	/* Call divider byte 3 */
328c2ecf20Sopenharmony_ci#define R13_CD4        0x13	/* Call divider byte 4 */
338c2ecf20Sopenharmony_ci#define R14_CD5        0x14	/* Call divider byte 5 */
348c2ecf20Sopenharmony_ci#define R15_CD6        0x15	/* Call divider byte 6 */
358c2ecf20Sopenharmony_ci#define R16_CD7        0x16	/* Call divider byte 7 */
368c2ecf20Sopenharmony_ci#define R17_PD1        0x17	/* Power-down byte 1 */
378c2ecf20Sopenharmony_ci#define R18_PD2        0x18	/* Power-down byte 2 */
388c2ecf20Sopenharmony_ci#define R19_XTOUT      0x19	/* XTOUT byte */
398c2ecf20Sopenharmony_ci#define R1A_IF1        0x1a	/* IF byte 1 */
408c2ecf20Sopenharmony_ci#define R1B_IF2        0x1b	/* IF byte 2 */
418c2ecf20Sopenharmony_ci#define R1C_AGC2B      0x1c	/* AGC2b byte */
428c2ecf20Sopenharmony_ci#define R1D_PSM2       0x1d	/* PSM byte 2 */
438c2ecf20Sopenharmony_ci#define R1E_PSM3       0x1e	/* PSM byte 3 */
448c2ecf20Sopenharmony_ci#define R1F_PSM4       0x1f	/* PSM byte 4 */
458c2ecf20Sopenharmony_ci#define R20_AGC11      0x20	/* AGC1 byte 1 */
468c2ecf20Sopenharmony_ci#define R21_AGC12      0x21	/* AGC1 byte 2 */
478c2ecf20Sopenharmony_ci#define R22_AGC13      0x22	/* AGC1 byte 3 */
488c2ecf20Sopenharmony_ci#define R23_AGC21      0x23	/* AGC2 byte 1 */
498c2ecf20Sopenharmony_ci#define R24_AGC22      0x24	/* AGC2 byte 2 */
508c2ecf20Sopenharmony_ci#define R25_AAGC       0x25	/* Analog AGC byte */
518c2ecf20Sopenharmony_ci#define R26_RC         0x26	/* RC byte */
528c2ecf20Sopenharmony_ci#define R27_RSSI       0x27	/* RSSI byte */
538c2ecf20Sopenharmony_ci#define R28_IRCAL1     0x28	/* IR CAL byte 1 */
548c2ecf20Sopenharmony_ci#define R29_IRCAL2     0x29	/* IR CAL byte 2 */
558c2ecf20Sopenharmony_ci#define R2A_IRCAL3     0x2a	/* IR CAL byte 3 */
568c2ecf20Sopenharmony_ci#define R2B_IRCAL4     0x2b	/* IR CAL byte 4 */
578c2ecf20Sopenharmony_ci#define R2C_RFCAL1     0x2c	/* RF CAL byte 1 */
588c2ecf20Sopenharmony_ci#define R2D_RFCAL2     0x2d	/* RF CAL byte 2 */
598c2ecf20Sopenharmony_ci#define R2E_RFCAL3     0x2e	/* RF CAL byte 3 */
608c2ecf20Sopenharmony_ci#define R2F_RFCAL4     0x2f	/* RF CAL byte 4 */
618c2ecf20Sopenharmony_ci#define R30_RFCAL5     0x30	/* RF CAL byte 5 */
628c2ecf20Sopenharmony_ci#define R31_RFCAL6     0x31	/* RF CAL byte 6 */
638c2ecf20Sopenharmony_ci#define R32_RFCAL7     0x32	/* RF CAL byte 7 */
648c2ecf20Sopenharmony_ci#define R33_RFCAL8     0x33	/* RF CAL byte 8 */
658c2ecf20Sopenharmony_ci#define R34_RFCAL9     0x34	/* RF CAL byte 9 */
668c2ecf20Sopenharmony_ci#define R35_RFCAL10    0x35	/* RF CAL byte 10 */
678c2ecf20Sopenharmony_ci#define R36_RFCALRAM1  0x36	/* RF CAL RAM byte 1 */
688c2ecf20Sopenharmony_ci#define R37_RFCALRAM2  0x37	/* RF CAL RAM byte 2 */
698c2ecf20Sopenharmony_ci#define R38_MARGIN     0x38	/* Margin byte */
708c2ecf20Sopenharmony_ci#define R39_FMAX1      0x39	/* Fmax byte 1 */
718c2ecf20Sopenharmony_ci#define R3A_FMAX2      0x3a	/* Fmax byte 2 */
728c2ecf20Sopenharmony_ci
738c2ecf20Sopenharmony_ci#define TDA18218_NUM_REGS 59
748c2ecf20Sopenharmony_ci
758c2ecf20Sopenharmony_cistruct tda18218_priv {
768c2ecf20Sopenharmony_ci	struct tda18218_config *cfg;
778c2ecf20Sopenharmony_ci	struct i2c_adapter *i2c;
788c2ecf20Sopenharmony_ci
798c2ecf20Sopenharmony_ci	u32 if_frequency;
808c2ecf20Sopenharmony_ci
818c2ecf20Sopenharmony_ci	u8 regs[TDA18218_NUM_REGS];
828c2ecf20Sopenharmony_ci};
838c2ecf20Sopenharmony_ci
848c2ecf20Sopenharmony_ci#endif
85