28 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Socionext MN88443x series demodulator driver for ISDB-S/ISDB-T.4 *5 * Copyright (c) 2018 Socionext Inc.6 */7 8#ifndef MN88443X_H9#define MN88443X_H10 11#include <media/dvb_frontend.h>12 13/* ISDB-T IF frequency */14#define DIRECT_IF_57MHZ 5700000015#define DIRECT_IF_44MHZ 4400000016#define LOW_IF_4MHZ 400000017 18struct mn88443x_config {19 struct clk *mclk;20 u32 if_freq;21 struct gpio_desc *reset_gpio;22 23 /* Everything after that is returned by the driver. */24 struct dvb_frontend **fe;25};26 27#endif /* MN88443X_H */28