blob: 8150200511daed0ce52918e0e9024a2aa762002c [file] [log] [blame]
Hans Verkuilbd985162005-11-13 16:07:56 -08001/* cx25840 firmware functions
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version 2
6 * of the License, or (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 */
17
Hans Verkuilbd985162005-11-13 16:07:56 -080018#include <linux/module.h>
19#include <linux/i2c.h>
Hans Verkuilbd985162005-11-13 16:07:56 -080020#include <linux/firmware.h>
21#include <media/v4l2-common.h>
Hans Verkuil31bc09b2006-03-25 10:26:09 -030022#include <media/cx25840.h>
Hans Verkuilbd985162005-11-13 16:07:56 -080023
Hans Verkuil31bc09b2006-03-25 10:26:09 -030024#include "cx25840-core.h"
Hans Verkuilbd985162005-11-13 16:07:56 -080025
Mike Isely4263fa82006-03-25 20:43:14 -030026/*
27 * Mike Isely <isely@pobox.com> - The FWSEND parameter controls the
28 * size of the firmware chunks sent down the I2C bus to the chip.
29 * Previously this had been set to 1024 but unfortunately some I2C
30 * implementations can't transfer data in such big gulps.
31 * Specifically, the pvrusb2 driver has a hard limit of around 60
32 * bytes, due to the encapsulation there of I2C traffic into USB
33 * messages. So we have to significantly reduce this parameter.
34 */
35#define FWSEND 48
Hans Verkuilbd985162005-11-13 16:07:56 -080036
Hans Verkuild55c7ae2007-02-15 03:40:34 -030037#define FWDEV(x) &((x)->dev)
Hans Verkuilbd985162005-11-13 16:07:56 -080038
Hans Verkuil8d81ae22009-08-31 17:57:52 -030039static char *firmware = "";
Hans Verkuilbd985162005-11-13 16:07:56 -080040
Hans Verkuilbd985162005-11-13 16:07:56 -080041module_param(firmware, charp, 0444);
42
Hans Verkuil8d81ae22009-08-31 17:57:52 -030043MODULE_PARM_DESC(firmware, "Firmware image to load");
Hans Verkuilbd985162005-11-13 16:07:56 -080044
Hans Verkuild92c20e2006-01-09 15:32:41 -020045static void start_fw_load(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -080046{
47 /* DL_ADDR_LB=0 DL_ADDR_HB=0 */
48 cx25840_write(client, 0x800, 0x00);
49 cx25840_write(client, 0x801, 0x00);
50 // DL_MAP=3 DL_AUTO_INC=0 DL_ENABLE=1
51 cx25840_write(client, 0x803, 0x0b);
52 /* AUTO_INC_DIS=1 */
53 cx25840_write(client, 0x000, 0x20);
Hans Verkuilbd985162005-11-13 16:07:56 -080054}
55
Hans Verkuild92c20e2006-01-09 15:32:41 -020056static void end_fw_load(struct i2c_client *client)
Hans Verkuilbd985162005-11-13 16:07:56 -080057{
Hans Verkuilbd985162005-11-13 16:07:56 -080058 /* AUTO_INC_DIS=0 */
59 cx25840_write(client, 0x000, 0x00);
60 /* DL_ENABLE=0 */
61 cx25840_write(client, 0x803, 0x03);
62}
63
Hans Verkuil8d81ae22009-08-31 17:57:52 -030064static const char *get_fw_name(struct i2c_client *client)
65{
66 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
67
68 if (firmware[0])
69 return firmware;
Andy Walls2a03f032009-09-26 23:47:21 -030070 if (is_cx2388x(state))
Hans Verkuil8d81ae22009-08-31 17:57:52 -030071 return "v4l-cx23885-avcore-01.fw";
Andy Walls2a03f032009-09-26 23:47:21 -030072 if (is_cx231xx(state))
Hans Verkuil8d81ae22009-08-31 17:57:52 -030073 return "v4l-cx231xx-avcore-01.fw";
74 return "v4l-cx25840.fw";
75}
76
Hans Verkuild92c20e2006-01-09 15:32:41 -020077static int check_fw_load(struct i2c_client *client, int size)
Hans Verkuilbd985162005-11-13 16:07:56 -080078{
79 /* DL_ADDR_HB DL_ADDR_LB */
80 int s = cx25840_read(client, 0x801) << 8;
81 s |= cx25840_read(client, 0x800);
82
83 if (size != s) {
Hans Verkuil8d81ae22009-08-31 17:57:52 -030084 v4l_err(client, "firmware %s load failed\n",
85 get_fw_name(client));
Hans Verkuilbd985162005-11-13 16:07:56 -080086 return -EINVAL;
87 }
88
Hans Verkuil8d81ae22009-08-31 17:57:52 -030089 v4l_info(client, "loaded %s firmware (%d bytes)\n",
90 get_fw_name(client), size);
Hans Verkuilbd985162005-11-13 16:07:56 -080091 return 0;
92}
93
David Woodhouse9ad46a62008-05-23 23:58:24 +010094static int fw_write(struct i2c_client *client, const u8 *data, int size)
Hans Verkuilbd985162005-11-13 16:07:56 -080095{
Tyler Trafford520ebe52008-04-22 14:42:14 -030096 if (i2c_master_send(client, data, size) < size) {
Hans Verkuil7d16eaa2006-04-23 05:54:56 -030097 v4l_err(client, "firmware load i2c failure\n");
98 return -ENOSYS;
Hans Verkuilbd985162005-11-13 16:07:56 -080099 }
100
101 return 0;
102}
103
104int cx25840_loadfw(struct i2c_client *client)
105{
Hans Verkuil9357b312008-11-29 12:50:06 -0300106 struct cx25840_state *state = to_state(i2c_get_clientdata(client));
Hans Verkuilbd985162005-11-13 16:07:56 -0800107 const struct firmware *fw = NULL;
David Woodhouse9ad46a62008-05-23 23:58:24 +0100108 u8 buffer[FWSEND];
109 const u8 *ptr;
Hans Verkuil8d81ae22009-08-31 17:57:52 -0300110 const char *fwname = get_fw_name(client);
Tyler Trafford520ebe52008-04-22 14:42:14 -0300111 int size, retval;
Mauro Carvalho Chehab95b14fb2009-03-03 14:36:55 -0300112 int MAX_BUF_SIZE = FWSEND;
Steven Tothf3d6f632009-07-23 12:18:54 -0300113 u32 gpio_oe = 0, gpio_da = 0;
Hans Verkuilbd985162005-11-13 16:07:56 -0800114
Andy Walls2a03f032009-09-26 23:47:21 -0300115 if (is_cx2388x(state)) {
Steven Tothf3d6f632009-07-23 12:18:54 -0300116 /* Preserve the GPIO OE and output bits */
117 gpio_oe = cx25840_read(client, 0x160);
118 gpio_da = cx25840_read(client, 0x164);
119 }
Sri Deevi149783b2009-03-03 06:07:42 -0300120
Andy Walls2a03f032009-09-26 23:47:21 -0300121 if (is_cx231xx(state) && MAX_BUF_SIZE > 16) {
Mauro Carvalho Chehab95b14fb2009-03-03 14:36:55 -0300122 v4l_err(client, " Firmware download size changed to 16 bytes max length\n");
123 MAX_BUF_SIZE = 16; /* cx231xx cannot accept more than 16 bytes at a time */
124 }
Steven Tothf2340812008-01-10 01:22:39 -0300125
Hans Verkuil8d81ae22009-08-31 17:57:52 -0300126 if (request_firmware(&fw, fwname, FWDEV(client)) != 0) {
127 v4l_err(client, "unable to open firmware %s\n", fwname);
Hans Verkuilbd985162005-11-13 16:07:56 -0800128 return -EINVAL;
129 }
130
131 start_fw_load(client);
132
133 buffer[0] = 0x08;
134 buffer[1] = 0x02;
Hans Verkuilbd985162005-11-13 16:07:56 -0800135
David Woodhouse9ad46a62008-05-23 23:58:24 +0100136 size = fw->size;
Hans Verkuilbd985162005-11-13 16:07:56 -0800137 ptr = fw->data;
138 while (size > 0) {
Sri Deevi149783b2009-03-03 06:07:42 -0300139 int len = min(MAX_BUF_SIZE - 2, size);
David Woodhouse9ad46a62008-05-23 23:58:24 +0100140
141 memcpy(buffer + 2, ptr, len);
142
143 retval = fw_write(client, buffer, len + 2);
Hans Verkuilbd985162005-11-13 16:07:56 -0800144
145 if (retval < 0) {
146 release_firmware(fw);
147 return retval;
148 }
149
David Woodhouse9ad46a62008-05-23 23:58:24 +0100150 size -= len;
151 ptr += len;
Hans Verkuilbd985162005-11-13 16:07:56 -0800152 }
153
154 end_fw_load(client);
155
156 size = fw->size;
157 release_firmware(fw);
158
Andy Walls2a03f032009-09-26 23:47:21 -0300159 if (is_cx2388x(state)) {
Steven Tothf3d6f632009-07-23 12:18:54 -0300160 /* Restore GPIO configuration after f/w load */
161 cx25840_write(client, 0x160, gpio_oe);
162 cx25840_write(client, 0x164, gpio_da);
163 }
164
Hans Verkuilbd985162005-11-13 16:07:56 -0800165 return check_fw_load(client, size);
166}