The DVB frontend API was designed to support three types of delivery systems: Terrestrial systems: DVB-T, DVB-T2, ATSC, ATSC M/H, ISDB-T, DVB-H, DTMB, CMMB Cable systems: DVB-C Annex A/C, ClearQAM (DVB-C Annex B), ISDB-C Satellite systems: DVB-S, DVB-S2, DVB Turbo, ISDB-S, DSS The DVB frontend controls several sub-devices including: Tuner Digital TV demodulator Low noise amplifier (LNA) Satellite Equipment Control (SEC) hardware (only for Satellite). The frontend can be accessed through /dev/dvb/adapter?/frontend?. Data types and ioctl definitions can be accessed by including linux/dvb/frontend.h in your application. NOTE: Transmission via the internet (DVB-IP) is not yet handled by this API but a future extension is possible. On Satellite systems, the API support for the Satellite Equipment Control (SEC) allows to power control and to send/receive signals to control the antenna subsystem, selecting the polarization and choosing the Intermediate Frequency IF) of the Low Noise Block Converter Feed Horn (LNBf). It supports the DiSEqC and V-SEC protocols. The DiSEqC (digital SEC) specification is available at Eutelsat.
Querying frontend information Usually, the first thing to do when the frontend is opened is to check the frontend capabilities. This is done using FE_GET_INFO. This ioctl will enumerate the DVB API version and other characteristics about the frontend, and can be opened either in read only or read/write mode.
Querying frontend status and statistics Once FE_SET_PROPERTY is called, the frontend will run a kernel thread that will periodically check for the tuner lock status and provide statistics about the quality of the signal. The information about the frontend tuner locking status can be queried using FE_READ_STATUS. Signal statistics are provided via FE_GET_PROPERTY. Please note that several statistics require the demodulator to be fully locked (e. g. with FE_HAS_LOCK bit set). See Frontend statistics indicators for more details.
&sub-dvbproperty;
Frontend Function Calls DVB frontend open() &manvol; fe-open Open a frontend device #include <fcntl.h> int open const char *device_name int flags Arguments device_name Device to be opened. flags Open flags. Access can either be O_RDWR or O_RDONLY. Multiple opens are allowed with O_RDONLY. In this mode, only query and read ioctls are allowed. Only one open is allowed in O_RDWR. In this mode, all ioctls are allowed. When the O_NONBLOCK flag is given, the system calls may return &EAGAIN; when no data is available or when the device driver is temporarily busy. Other flags have no effect. Description This system call opens a named frontend device (/dev/dvb/adapter?/frontend?) for subsequent use. Usually the first thing to do after a successful open is to find out the frontend type with FE_GET_INFO. The device can be opened in read-only mode, which only allows monitoring of device status and statistics, or read/write mode, which allows any kind of use (e.g. performing tuning operations.) In a system with multiple front-ends, it is usually the case that multiple devices cannot be open in read/write mode simultaneously. As long as a front-end device is opened in read/write mode, other open() calls in read/write mode will either fail or block, depending on whether non-blocking or blocking mode was specified. A front-end device opened in blocking mode can later be put into non-blocking mode (and vice versa) using the F_SETFL command of the fcntl system call. This is a standard system call, documented in the Linux manual page for fcntl. When an open() call has succeeded, the device will be ready for use in the specified mode. This implies that the corresponding hardware is powered up, and that other front-ends may have been powered down to make that possible. Return Value On success open returns the new file descriptor. On error -1 is returned, and the errno variable is set appropriately. Possible error codes are: EACCES The caller has no permission to access the device. EBUSY The the device driver is already in use. ENXIO No device corresponding to this device special file exists. ENOMEM Not enough kernel memory was available to complete the request. EMFILE The process already has the maximum number of files open. ENFILE The limit on the total number of files open on the system has been reached. ENODEV The device got removed. DVB frontend close() &manvol; fe-close Close a frontend device #include <unistd.h> int close int fd Arguments fd &fd; Description This system call closes a previously opened front-end device. After closing a front-end device, its corresponding hardware might be powered down automatically. Return Value The function returns 0 on success, -1 on failure and the errno is set appropriately. Possible error codes: EBADF fd is not a valid open file descriptor. &sub-fe-get-info; &sub-fe-read-status; &sub-fe-get-property; &sub-fe-diseqc-reset-overload; &sub-fe-diseqc-send-master-cmd; &sub-fe-diseqc-recv-slave-reply; &sub-fe-diseqc-send-burst; &sub-fe-set-tone; &sub-fe-set-voltage; &sub-fe-enable-high-lnb-voltage; &sub-fe-set-frontend-tune-mode;
DVB Frontend legacy API (a. k. a. DVBv3) The usage of this API is deprecated, as it doesn't support all digital TV standards, doesn't provide good statistics measurements and provides incomplete information. This is kept only to support legacy applications. &sub-frontend_legacy_api;