blob: 2732b784216d6ef46cf65e9f24102f7722def233 [file] [log] [blame]
Pierrick Hascoet41b44e02011-10-31 12:24:39 -03001/*
2 * Abilis Systems Single DVB-T Receiver
3 * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030014 */
15#define MAX_FW_PKT_SIZE 64
16
17extern int dual_tuner;
18
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030019struct as10x_raw_fw_pkt {
20 unsigned char address[4];
21 unsigned char data[MAX_FW_PKT_SIZE - 6];
Sylwester Nawrockifa1a13f2011-11-06 16:31:42 -030022} __packed;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030023
24struct as10x_fw_pkt_t {
25 union {
26 unsigned char request[2];
27 unsigned char length[2];
Gianluca Gennariabf9d002012-03-06 09:47:45 -030028 } __packed u;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030029 struct as10x_raw_fw_pkt raw;
Sylwester Nawrockifa1a13f2011-11-06 16:31:42 -030030} __packed;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030031
32#ifdef __KERNEL__
Sylwester Nawrocki34490a02011-11-06 16:31:50 -030033int as102_fw_upload(struct as10x_bus_adapter_t *bus_adap);
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030034#endif