2019-05-27 08:55:06 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2011-08-01 00:52:11 -03:00
|
|
|
/*
|
|
|
|
* Allegro A8293 SEC driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef A8293_H
|
|
|
|
#define A8293_H
|
|
|
|
|
2017-12-28 13:03:51 -05:00
|
|
|
#include <media/dvb_frontend.h>
|
2013-03-21 16:11:54 -03:00
|
|
|
|
2015-04-16 13:28:39 -03:00
|
|
|
/*
|
|
|
|
* I2C address
|
|
|
|
* 0x08, 0x09, 0x0a, 0x0b
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct a8293_platform_data - Platform data for the a8293 driver
|
|
|
|
* @dvb_frontend: DVB frontend.
|
2021-12-31 03:53:27 +00:00
|
|
|
* @volt_slew_nanos_per_mv: Slew rate when increasing LNB voltage,
|
|
|
|
* in nanoseconds per millivolt.
|
2015-04-16 13:28:39 -03:00
|
|
|
*/
|
|
|
|
struct a8293_platform_data {
|
|
|
|
struct dvb_frontend *dvb_frontend;
|
2021-12-31 03:53:27 +00:00
|
|
|
int volt_slew_nanos_per_mv;
|
2015-04-16 13:28:39 -03:00
|
|
|
};
|
|
|
|
|
2011-08-01 00:52:11 -03:00
|
|
|
#endif /* A8293_H */
|