Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / media / dvb-frontends / mn88443x.h
blobb19aaf6a1ea3edbb7dbd98727edb0f4a2ecba03b
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Socionext MN88443x series demodulator driver for ISDB-S/ISDB-T.
5 * Copyright (c) 2018 Socionext Inc.
6 */
8 #ifndef MN88443X_H
9 #define MN88443X_H
11 #include <media/dvb_frontend.h>
13 /* ISDB-T IF frequency */
14 #define DIRECT_IF_57MHZ 57000000
15 #define DIRECT_IF_44MHZ 44000000
16 #define LOW_IF_4MHZ 4000000
18 struct mn88443x_config {
19 struct clk *mclk;
20 u32 if_freq;
21 struct gpio_desc *reset_gpio;
23 /* Everything after that is returned by the driver. */
24 struct dvb_frontend **fe;
27 #endif /* MN88443X_H */