/* SPDX-License-Identifier: GPL-2.0 */ /* * Maxim Integrated MAX2175 RF to Bits tuner driver * * This driver & most of the hard coded values are based on the reference * application delivered by Maxim for this device. * * Copyright (C) 2016 Maxim Integrated Products * Copyright (C) 2017 Renesas Electronics Corporation */ #ifndef __MAX2175_H__ #define __MAX2175_H__ #define MAX2175_EU_XTAL_FREQ … #define MAX2175_NA_XTAL_FREQ … enum max2175_region { … }; enum max2175_band { … }; enum max2175_eu_mode { … }; enum max2175_na_mode { … }; /* Supported I2S modes */ enum { … }; /* Coefficient table groups */ enum { … }; /* HSLS LO injection polarity */ enum { … }; /* Channel FSM modes */ enum max2175_csm_mode { … }; #endif /* __MAX2175_H__ */