blob: 80085fd4132cfb72954ad031f5db8adbd028db1f [file] [log] [blame]
Antti Palosaari355b4b22012-08-01 21:38:46 -03001/* cypress_firmware.h is part of the DVB USB library.
Antti Palosaarib00a9012012-06-11 23:35:09 -03002 *
3 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@desy.de)
4 * see dvb-usb-init.c for copyright information.
5 *
6 * This file contains functions for downloading the firmware to Cypress FX 1
7 * and 2 based devices.
8 *
9 */
10
Antti Palosaari355b4b22012-08-01 21:38:46 -030011#ifndef CYPRESS_FIRMWARE_H
12#define CYPRESS_FIRMWARE_H
Antti Palosaarib00a9012012-06-11 23:35:09 -030013
14#define CYPRESS_AN2135 0
15#define CYPRESS_AN2235 1
16#define CYPRESS_FX2 2
17
18/* commonly used firmware download types and function */
19struct hexline {
20 u8 len;
21 u32 addr;
22 u8 type;
23 u8 data[255];
24 u8 chk;
25};
26extern int usbv2_cypress_load_firmware(struct usb_device *,
27 const struct firmware *, int);
28extern int dvb_usbv2_get_hexline(const struct firmware *,
29 struct hexline *, int *);
30
31#endif