blob: ab86dc71bf8d595fcfce043d06d4ee9019c144d5 [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 ADEC firmware functions
3 *
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301, USA.
20 */
21
22#include "cx18-driver.h"
23#include <linux/firmware.h>
24
25#define FWFILE "v4l-cx23418-dig.fw"
26
27int cx18_av_loadfw(struct cx18 *cx)
28{
29 const struct firmware *fw = NULL;
30 u32 size;
31 u32 v;
David Howells9b8a3e42008-07-08 17:38:56 +010032 const u8 *ptr;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030033 int i;
Hans Verkuilf313da12008-06-28 08:03:02 -030034 int retries = 0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030035
36 if (request_firmware(&fw, FWFILE, &cx->dev->dev) != 0) {
37 CX18_ERR("unable to open firmware %s\n", FWFILE);
38 return -EINVAL;
39 }
40
Hans Verkuilf313da12008-06-28 08:03:02 -030041 /* The firmware load often has byte errors, so allow for several
42 retries, both at byte level and at the firmware load level. */
43 while (retries < 5) {
44 cx18_av_write4(cx, CXADEC_CHIP_CTRL, 0x00010000);
45 cx18_av_write(cx, CXADEC_STD_DET_CTL, 0xf6);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030046
Hans Verkuilf313da12008-06-28 08:03:02 -030047 /* Reset the Mako core (Register is undocumented.) */
48 cx18_av_write4(cx, 0x8100, 0x00010000);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030049
Hans Verkuilf313da12008-06-28 08:03:02 -030050 /* Put the 8051 in reset and enable firmware upload */
51 cx18_av_write4(cx, CXADEC_DL_CTL, 0x0F000000);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030052
Hans Verkuilf313da12008-06-28 08:03:02 -030053 ptr = fw->data;
54 size = fw->size;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030055
Hans Verkuilf313da12008-06-28 08:03:02 -030056 for (i = 0; i < size; i++) {
57 u32 dl_control = 0x0F000000 | i | ((u32)ptr[i] << 16);
58 u32 value = 0;
59 int retries;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030060
Hans Verkuilf313da12008-06-28 08:03:02 -030061 for (retries = 0; retries < 5; retries++) {
62 cx18_av_write4(cx, CXADEC_DL_CTL, dl_control);
63 udelay(10);
64 value = cx18_av_read4(cx, CXADEC_DL_CTL);
65 if (value == dl_control)
66 break;
67 /* Check if we can correct the byte by changing
68 the address. We can only write the lower
69 address byte of the address. */
70 if ((value & 0x3F00) != (dl_control & 0x3F00)) {
71 retries = 5;
72 break;
73 }
74 }
75 if (retries >= 5)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030076 break;
77 }
Hans Verkuilf313da12008-06-28 08:03:02 -030078 if (i == size)
79 break;
80 retries++;
81 }
82 if (retries >= 5) {
83 CX18_ERR("unable to load firmware %s\n", FWFILE);
84 release_firmware(fw);
85 return -EIO;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030086 }
87
88 cx18_av_write4(cx, CXADEC_DL_CTL, 0x13000000 | fw->size);
89
90 /* Output to the 416 */
91 cx18_av_and_or4(cx, CXADEC_PIN_CTRL1, ~0, 0x78000);
92
93 /* Audio input control 1 set to Sony mode */
94 /* Audio output input 2 is 0 for slave operation input */
95 /* 0xC4000914[5]: 0 = left sample on WS=0, 1 = left sample on WS=1 */
96 /* 0xC4000914[7]: 0 = Philips mode, 1 = Sony mode (1st SCK rising edge
97 after WS transition for first bit of audio word. */
98 cx18_av_write4(cx, CXADEC_I2S_IN_CTL, 0x000000A0);
99
100 /* Audio output control 1 is set to Sony mode */
101 /* Audio output control 2 is set to 1 for master mode */
102 /* 0xC4000918[5]: 0 = left sample on WS=0, 1 = left sample on WS=1 */
103 /* 0xC4000918[7]: 0 = Philips mode, 1 = Sony mode (1st SCK rising edge
104 after WS transition for first bit of audio word. */
105 /* 0xC4000918[8]: 0 = slave operation, 1 = master (SCK_OUT and WS_OUT
106 are generated) */
107 cx18_av_write4(cx, CXADEC_I2S_OUT_CTL, 0x000001A0);
108
109 /* set alt I2s master clock to /16 and enable alt divider i2s
110 passthrough */
111 cx18_av_write4(cx, CXADEC_PIN_CFG3, 0x5000B687);
112
113 cx18_av_write4(cx, CXADEC_STD_DET_CTL, 0x000000F6);
114 /* CxDevWrReg(CXADEC_STD_DET_CTL, 0x000000FF); */
115
116 /* Set bit 0 in register 0x9CC to signify that this is MiniMe. */
117 /* Register 0x09CC is defined by the Merlin firmware, and doesn't
118 have a name in the spec. */
119 cx18_av_write4(cx, 0x09CC, 1);
120
121#define CX18_AUDIO_ENABLE 0xc72014
122 v = read_reg(CX18_AUDIO_ENABLE);
123 /* If bit 11 is 1 */
124 if (v & 0x800)
125 write_reg(v & 0xFFFFFBFF, CX18_AUDIO_ENABLE); /* Clear bit 10 */
126
127 /* Enable WW auto audio standard detection */
128 v = cx18_av_read4(cx, CXADEC_STD_DET_CTL);
129 v |= 0xFF; /* Auto by default */
130 v |= 0x400; /* Stereo by default */
131 v |= 0x14000000;
132 cx18_av_write4(cx, CXADEC_STD_DET_CTL, v);
133
134 release_firmware(fw);
135
136 CX18_INFO("loaded %s firmware (%d bytes)\n", FWFILE, size);
137 return 0;
138}