blob: 876b96c11290180b39249747195839272ef1a32a [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03002/*
3 * cx18 firmware functions
4 *
5 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls6afdeaf2010-05-23 18:53:35 -03006 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03007 */
8
9#include "cx18-driver.h"
Andy Wallsb1526422008-08-30 16:03:44 -030010#include "cx18-io.h"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030011#include "cx18-scb.h"
12#include "cx18-irq.h"
13#include "cx18-firmware.h"
14#include "cx18-cards.h"
15#include <linux/firmware.h>
16
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050017#define CX18_PROC_SOFT_RESET 0xc70010
18#define CX18_DDR_SOFT_RESET 0xc70014
19#define CX18_CLOCK_SELECT1 0xc71000
20#define CX18_CLOCK_SELECT2 0xc71004
21#define CX18_HALF_CLOCK_SELECT1 0xc71008
22#define CX18_HALF_CLOCK_SELECT2 0xc7100C
23#define CX18_CLOCK_POLARITY1 0xc71010
24#define CX18_CLOCK_POLARITY2 0xc71014
25#define CX18_ADD_DELAY_ENABLE1 0xc71018
26#define CX18_ADD_DELAY_ENABLE2 0xc7101C
27#define CX18_CLOCK_ENABLE1 0xc71020
28#define CX18_CLOCK_ENABLE2 0xc71024
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030029
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050030#define CX18_REG_BUS_TIMEOUT_EN 0xc72024
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030031
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050032#define CX18_FAST_CLOCK_PLL_INT 0xc78000
33#define CX18_FAST_CLOCK_PLL_FRAC 0xc78004
34#define CX18_FAST_CLOCK_PLL_POST 0xc78008
35#define CX18_FAST_CLOCK_PLL_PRESCALE 0xc7800C
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030036#define CX18_FAST_CLOCK_PLL_ADJUST_BANDWIDTH 0xc78010
37
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050038#define CX18_SLOW_CLOCK_PLL_INT 0xc78014
39#define CX18_SLOW_CLOCK_PLL_FRAC 0xc78018
40#define CX18_SLOW_CLOCK_PLL_POST 0xc7801C
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030041#define CX18_MPEG_CLOCK_PLL_INT 0xc78040
42#define CX18_MPEG_CLOCK_PLL_FRAC 0xc78044
43#define CX18_MPEG_CLOCK_PLL_POST 0xc78048
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050044#define CX18_PLL_POWER_DOWN 0xc78088
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030045#define CX18_SW1_INT_STATUS 0xc73104
46#define CX18_SW1_INT_ENABLE_PCI 0xc7311C
47#define CX18_SW2_INT_SET 0xc73140
48#define CX18_SW2_INT_STATUS 0xc73144
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050049#define CX18_ADEC_CONTROL 0xc78120
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030050
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050051#define CX18_DDR_REQUEST_ENABLE 0xc80000
52#define CX18_DDR_CHIP_CONFIG 0xc80004
53#define CX18_DDR_REFRESH 0xc80008
54#define CX18_DDR_TIMING1 0xc8000C
55#define CX18_DDR_TIMING2 0xc80010
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030056#define CX18_DDR_POWER_REG 0xc8001C
57
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050058#define CX18_DDR_TUNE_LANE 0xc80048
59#define CX18_DDR_INITIAL_EMRS 0xc80054
60#define CX18_DDR_MB_PER_ROW_7 0xc8009C
61#define CX18_DDR_BASE_63_ADDR 0xc804FC
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030062
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050063#define CX18_WMB_CLIENT02 0xc90108
64#define CX18_WMB_CLIENT05 0xc90114
65#define CX18_WMB_CLIENT06 0xc90118
66#define CX18_WMB_CLIENT07 0xc9011C
67#define CX18_WMB_CLIENT08 0xc90120
68#define CX18_WMB_CLIENT09 0xc90124
69#define CX18_WMB_CLIENT10 0xc90128
70#define CX18_WMB_CLIENT11 0xc9012C
71#define CX18_WMB_CLIENT12 0xc90130
72#define CX18_WMB_CLIENT13 0xc90134
73#define CX18_WMB_CLIENT14 0xc90138
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030074
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -050075#define CX18_DSP0_INTERRUPT_MASK 0xd0004C
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030076
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030077#define APU_ROM_SYNC1 0x6D676553 /* "mgeS" */
78#define APU_ROM_SYNC2 0x72646548 /* "rdeH" */
79
80struct cx18_apu_rom_seghdr {
81 u32 sync1;
82 u32 sync2;
83 u32 addr;
84 u32 size;
85};
86
Hans Verkuil82fc52a2008-07-19 08:34:12 -030087static int load_cpu_fw_direct(const char *fn, u8 __iomem *mem, struct cx18 *cx)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030088{
89 const struct firmware *fw = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030090 int i, j;
Hans Verkuil82fc52a2008-07-19 08:34:12 -030091 unsigned size;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030092 u32 __iomem *dst = (u32 __iomem *)mem;
93 const u32 *src;
94
Andy Walls3d059132009-01-10 21:54:39 -030095 if (request_firmware(&fw, fn, &cx->pci_dev->dev)) {
Hans Verkuil82fc52a2008-07-19 08:34:12 -030096 CX18_ERR("Unable to open firmware %s\n", fn);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030097 CX18_ERR("Did you put the firmware in the hotplug firmware directory?\n");
98 return -ENOMEM;
99 }
100
101 src = (const u32 *)fw->data;
102
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300103 for (i = 0; i < fw->size; i += 4096) {
Andy Wallsb1526422008-08-30 16:03:44 -0300104 cx18_setup_page(cx, i);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300105 for (j = i; j < fw->size && j < i + 4096; j += 4) {
106 /* no need for endianness conversion on the ppc */
Andy Wallsb1526422008-08-30 16:03:44 -0300107 cx18_raw_writel(cx, *src, dst);
108 if (cx18_raw_readl(cx, dst) != *src) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300109 CX18_ERR("Mismatch at offset %x\n", i);
110 release_firmware(fw);
Andy Wallsee2d64f2008-11-16 01:38:19 -0300111 cx18_setup_page(cx, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300112 return -EIO;
113 }
114 dst++;
115 src++;
116 }
117 }
118 if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags))
Mauro Carvalho Chehab339f06c2014-09-24 20:35:48 -0300119 CX18_INFO("loaded %s firmware (%zu bytes)\n", fn, fw->size);
Hans Verkuil82fc52a2008-07-19 08:34:12 -0300120 size = fw->size;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300121 release_firmware(fw);
Andy Wallsee2d64f2008-11-16 01:38:19 -0300122 cx18_setup_page(cx, SCB_OFFSET);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300123 return size;
124}
125
Andy Walls2d1a1b02008-11-08 17:14:22 -0300126static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx,
127 u32 *entry_addr)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300128{
129 const struct firmware *fw = NULL;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300130 int i, j;
Hans Verkuil82fc52a2008-07-19 08:34:12 -0300131 unsigned size;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300132 const u32 *src;
133 struct cx18_apu_rom_seghdr seghdr;
134 const u8 *vers;
135 u32 offset = 0;
136 u32 apu_version = 0;
137 int sz;
138
Andy Walls3d059132009-01-10 21:54:39 -0300139 if (request_firmware(&fw, fn, &cx->pci_dev->dev)) {
Hans Verkuil82fc52a2008-07-19 08:34:12 -0300140 CX18_ERR("unable to open firmware %s\n", fn);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300141 CX18_ERR("did you put the firmware in the hotplug firmware directory?\n");
Andy Wallsee2d64f2008-11-16 01:38:19 -0300142 cx18_setup_page(cx, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300143 return -ENOMEM;
144 }
145
Andy Wallsc7abfb42008-11-09 19:51:44 -0300146 *entry_addr = 0;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300147 src = (const u32 *)fw->data;
148 vers = fw->data + sizeof(seghdr);
149 sz = fw->size;
150
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300151 apu_version = (vers[0] << 24) | (vers[4] << 16) | vers[32];
Hans Verkuil82fc52a2008-07-19 08:34:12 -0300152 while (offset + sizeof(seghdr) < fw->size) {
Hans Verkuil39fd4462014-08-21 16:38:04 -0300153 const __le32 *shptr = (__force __le32 *)src + offset / 4;
Hans Verkuil42d0c3a2012-05-26 08:07:03 -0300154
155 seghdr.sync1 = le32_to_cpu(shptr[0]);
156 seghdr.sync2 = le32_to_cpu(shptr[1]);
157 seghdr.addr = le32_to_cpu(shptr[2]);
158 seghdr.size = le32_to_cpu(shptr[3]);
159
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300160 offset += sizeof(seghdr);
161 if (seghdr.sync1 != APU_ROM_SYNC1 ||
162 seghdr.sync2 != APU_ROM_SYNC2) {
163 offset += seghdr.size;
164 continue;
165 }
166 CX18_DEBUG_INFO("load segment %x-%x\n", seghdr.addr,
167 seghdr.addr + seghdr.size - 1);
Andy Wallsc7abfb42008-11-09 19:51:44 -0300168 if (*entry_addr == 0)
Andy Walls2d1a1b02008-11-08 17:14:22 -0300169 *entry_addr = seghdr.addr;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300170 if (offset + seghdr.size > sz)
171 break;
172 for (i = 0; i < seghdr.size; i += 4096) {
Andy Walls2d1a1b02008-11-08 17:14:22 -0300173 cx18_setup_page(cx, seghdr.addr + i);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300174 for (j = i; j < seghdr.size && j < i + 4096; j += 4) {
175 /* no need for endianness conversion on the ppc */
Andy Wallsb1526422008-08-30 16:03:44 -0300176 cx18_raw_writel(cx, src[(offset + j) / 4],
177 dst + seghdr.addr + j);
178 if (cx18_raw_readl(cx, dst + seghdr.addr + j)
179 != src[(offset + j) / 4]) {
180 CX18_ERR("Mismatch at offset %x\n",
181 offset + j);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300182 release_firmware(fw);
Andy Wallsee2d64f2008-11-16 01:38:19 -0300183 cx18_setup_page(cx, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300184 return -EIO;
185 }
186 }
187 }
188 offset += seghdr.size;
189 }
190 if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags))
Mauro Carvalho Chehab339f06c2014-09-24 20:35:48 -0300191 CX18_INFO("loaded %s firmware V%08x (%zu bytes)\n",
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300192 fn, apu_version, fw->size);
Hans Verkuil82fc52a2008-07-19 08:34:12 -0300193 size = fw->size;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300194 release_firmware(fw);
Andy Wallsee2d64f2008-11-16 01:38:19 -0300195 cx18_setup_page(cx, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300196 return size;
197}
198
199void cx18_halt_firmware(struct cx18 *cx)
200{
201 CX18_DEBUG_INFO("Preparing for firmware halt.\n");
Andy Wallsced07372008-11-02 10:59:04 -0300202 cx18_write_reg_expect(cx, 0x000F000F, CX18_PROC_SOFT_RESET,
203 0x0000000F, 0x000F000F);
204 cx18_write_reg_expect(cx, 0x00020002, CX18_ADEC_CONTROL,
205 0x00000002, 0x00020002);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300206}
207
208void cx18_init_power(struct cx18 *cx, int lowpwr)
209{
210 /* power-down Spare and AOM PLLs */
211 /* power-up fast, slow and mpeg PLLs */
Andy Wallsb1526422008-08-30 16:03:44 -0300212 cx18_write_reg(cx, 0x00000008, CX18_PLL_POWER_DOWN);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300213
214 /* ADEC out of sleep */
Andy Wallsced07372008-11-02 10:59:04 -0300215 cx18_write_reg_expect(cx, 0x00020000, CX18_ADEC_CONTROL,
216 0x00000000, 0x00020002);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300217
Andy Walls55d81aa2008-12-20 23:48:57 -0300218 /*
219 * The PLL parameters are based on the external crystal frequency that
220 * would ideally be:
221 *
222 * NTSC Color subcarrier freq * 8 =
Mauro Carvalho Chehab6e6a8b52018-01-04 13:08:56 -0500223 * 4.5 MHz/286 * 455/2 * 8 = 28.63636363... MHz
Andy Walls55d81aa2008-12-20 23:48:57 -0300224 *
225 * The accidents of history and rationale that explain from where this
226 * combination of magic numbers originate can be found in:
227 *
228 * [1] Abrahams, I. C., "Choice of Chrominance Subcarrier Frequency in
229 * the NTSC Standards", Proceedings of the I-R-E, January 1954, pp 79-80
230 *
231 * [2] Abrahams, I. C., "The 'Frequency Interleaving' Principle in the
232 * NTSC Standards", Proceedings of the I-R-E, January 1954, pp 81-83
233 *
234 * As Mike Bradley has rightly pointed out, it's not the exact crystal
235 * frequency that matters, only that all parts of the driver and
236 * firmware are using the same value (close to the ideal value).
237 *
238 * Since I have a strong suspicion that, if the firmware ever assumes a
239 * crystal value at all, it will assume 28.636360 MHz, the crystal
240 * freq used in calculations in this driver will be:
241 *
242 * xtal_freq = 28.636360 MHz
243 *
244 * an error of less than 0.13 ppm which is way, way better than any off
245 * the shelf crystal will have for accuracy anyway.
246 *
247 * Below I aim to run the PLLs' VCOs near 400 MHz to minimze errors.
248 *
249 * Many thanks to Jeff Campbell and Mike Bradley for their extensive
250 * investigation, experimentation, testing, and suggested solutions of
251 * of audio/video sync problems with SVideo and CVBS captures.
252 */
253
254 /* the fast clock is at 200/245 MHz */
255 /* 1 * xtal_freq * 0x0d.f7df9b8 / 2 = 200 MHz: 400 MHz pre post-divide*/
256 /* 1 * xtal_freq * 0x11.1c71eb8 / 2 = 245 MHz: 490 MHz pre post-divide*/
Andy Wallsb1526422008-08-30 16:03:44 -0300257 cx18_write_reg(cx, lowpwr ? 0xD : 0x11, CX18_FAST_CLOCK_PLL_INT);
258 cx18_write_reg(cx, lowpwr ? 0x1EFBF37 : 0x038E3D7,
259 CX18_FAST_CLOCK_PLL_FRAC);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300260
Andy Wallsb1526422008-08-30 16:03:44 -0300261 cx18_write_reg(cx, 2, CX18_FAST_CLOCK_PLL_POST);
262 cx18_write_reg(cx, 1, CX18_FAST_CLOCK_PLL_PRESCALE);
263 cx18_write_reg(cx, 4, CX18_FAST_CLOCK_PLL_ADJUST_BANDWIDTH);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300264
265 /* set slow clock to 125/120 MHz */
Andy Walls55d81aa2008-12-20 23:48:57 -0300266 /* xtal_freq * 0x0d.1861a20 / 3 = 125 MHz: 375 MHz before post-divide */
267 /* xtal_freq * 0x0c.92493f8 / 3 = 120 MHz: 360 MHz before post-divide */
268 cx18_write_reg(cx, lowpwr ? 0xD : 0xC, CX18_SLOW_CLOCK_PLL_INT);
269 cx18_write_reg(cx, lowpwr ? 0x30C344 : 0x124927F,
Andy Wallsb1526422008-08-30 16:03:44 -0300270 CX18_SLOW_CLOCK_PLL_FRAC);
Andy Walls55d81aa2008-12-20 23:48:57 -0300271 cx18_write_reg(cx, 3, CX18_SLOW_CLOCK_PLL_POST);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300272
273 /* mpeg clock pll 54MHz */
Andy Walls55d81aa2008-12-20 23:48:57 -0300274 /* xtal_freq * 0xf.15f17f0 / 8 = 54 MHz: 432 MHz before post-divide */
Andy Wallsb1526422008-08-30 16:03:44 -0300275 cx18_write_reg(cx, 0xF, CX18_MPEG_CLOCK_PLL_INT);
Andy Walls55d81aa2008-12-20 23:48:57 -0300276 cx18_write_reg(cx, 0x2BE2FE, CX18_MPEG_CLOCK_PLL_FRAC);
Andy Wallsb1526422008-08-30 16:03:44 -0300277 cx18_write_reg(cx, 8, CX18_MPEG_CLOCK_PLL_POST);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300278
279 /* Defaults */
280 /* APU = SC or SC/2 = 125/62.5 */
281 /* EPU = SC = 125 */
282 /* DDR = FC = 180 */
283 /* ENC = SC = 125 */
284 /* AI1 = SC = 125 */
285 /* VIM2 = disabled */
286 /* PCI = FC/2 = 90 */
287 /* AI2 = disabled */
288 /* DEMUX = disabled */
289 /* AO = SC/2 = 62.5 */
290 /* SER = 54MHz */
291 /* VFC = disabled */
292 /* USB = disabled */
293
Andy Wallsced07372008-11-02 10:59:04 -0300294 if (lowpwr) {
295 cx18_write_reg_expect(cx, 0xFFFF0020, CX18_CLOCK_SELECT1,
296 0x00000020, 0xFFFFFFFF);
297 cx18_write_reg_expect(cx, 0xFFFF0004, CX18_CLOCK_SELECT2,
298 0x00000004, 0xFFFFFFFF);
299 } else {
300 /* This doesn't explicitly set every clock select */
301 cx18_write_reg_expect(cx, 0x00060004, CX18_CLOCK_SELECT1,
302 0x00000004, 0x00060006);
303 cx18_write_reg_expect(cx, 0x00060006, CX18_CLOCK_SELECT2,
304 0x00000006, 0x00060006);
305 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300306
Andy Wallsced07372008-11-02 10:59:04 -0300307 cx18_write_reg_expect(cx, 0xFFFF0002, CX18_HALF_CLOCK_SELECT1,
308 0x00000002, 0xFFFFFFFF);
309 cx18_write_reg_expect(cx, 0xFFFF0104, CX18_HALF_CLOCK_SELECT2,
310 0x00000104, 0xFFFFFFFF);
311 cx18_write_reg_expect(cx, 0xFFFF9026, CX18_CLOCK_ENABLE1,
312 0x00009026, 0xFFFFFFFF);
313 cx18_write_reg_expect(cx, 0xFFFF3105, CX18_CLOCK_ENABLE2,
314 0x00003105, 0xFFFFFFFF);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300315}
316
317void cx18_init_memory(struct cx18 *cx)
318{
319 cx18_msleep_timeout(10, 0);
Andy Wallsced07372008-11-02 10:59:04 -0300320 cx18_write_reg_expect(cx, 0x00010000, CX18_DDR_SOFT_RESET,
321 0x00000000, 0x00010001);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300322 cx18_msleep_timeout(10, 0);
323
Andy Wallsb1526422008-08-30 16:03:44 -0300324 cx18_write_reg(cx, cx->card->ddr.chip_config, CX18_DDR_CHIP_CONFIG);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300325
326 cx18_msleep_timeout(10, 0);
327
Andy Wallsb1526422008-08-30 16:03:44 -0300328 cx18_write_reg(cx, cx->card->ddr.refresh, CX18_DDR_REFRESH);
329 cx18_write_reg(cx, cx->card->ddr.timing1, CX18_DDR_TIMING1);
330 cx18_write_reg(cx, cx->card->ddr.timing2, CX18_DDR_TIMING2);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300331
332 cx18_msleep_timeout(10, 0);
333
334 /* Initialize DQS pad time */
Andy Wallsb1526422008-08-30 16:03:44 -0300335 cx18_write_reg(cx, cx->card->ddr.tune_lane, CX18_DDR_TUNE_LANE);
336 cx18_write_reg(cx, cx->card->ddr.initial_emrs, CX18_DDR_INITIAL_EMRS);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300337
338 cx18_msleep_timeout(10, 0);
339
Andy Wallsced07372008-11-02 10:59:04 -0300340 cx18_write_reg_expect(cx, 0x00020000, CX18_DDR_SOFT_RESET,
341 0x00000000, 0x00020002);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300342 cx18_msleep_timeout(10, 0);
343
344 /* use power-down mode when idle */
Andy Wallsb1526422008-08-30 16:03:44 -0300345 cx18_write_reg(cx, 0x00000010, CX18_DDR_POWER_REG);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300346
Andy Wallsced07372008-11-02 10:59:04 -0300347 cx18_write_reg_expect(cx, 0x00010001, CX18_REG_BUS_TIMEOUT_EN,
348 0x00000001, 0x00010001);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300349
Andy Wallsb1526422008-08-30 16:03:44 -0300350 cx18_write_reg(cx, 0x48, CX18_DDR_MB_PER_ROW_7);
351 cx18_write_reg(cx, 0xE0000, CX18_DDR_BASE_63_ADDR);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300352
Andy Wallsb1526422008-08-30 16:03:44 -0300353 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT02); /* AO */
354 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT09); /* AI2 */
355 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT05); /* VIM1 */
356 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT06); /* AI1 */
357 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT07); /* 3D comb */
358 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT10); /* ME */
359 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT12); /* ENC */
360 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT13); /* PK */
361 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT11); /* RC */
362 cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT14); /* AVO */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300363}
364
Tim Gardner8a7bf1d2012-07-27 12:45:21 -0300365#define CX18_CPU_FIRMWARE "v4l-cx23418-cpu.fw"
366#define CX18_APU_FIRMWARE "v4l-cx23418-apu.fw"
367
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300368int cx18_firmware_init(struct cx18 *cx)
369{
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300370 u32 fw_entry_addr;
371 int sz, retries;
372 u32 api_args[MAX_MB_ARGUMENTS];
373
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300374 /* Allow chip to control CLKRUN */
Andy Wallsb1526422008-08-30 16:03:44 -0300375 cx18_write_reg(cx, 0x5, CX18_DSP0_INTERRUPT_MASK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300376
Andy Wallsced07372008-11-02 10:59:04 -0300377 /* Stop the firmware */
378 cx18_write_reg_expect(cx, 0x000F000F, CX18_PROC_SOFT_RESET,
379 0x0000000F, 0x000F000F);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300380
381 cx18_msleep_timeout(1, 0);
382
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300383 /* If the CPU is still running */
384 if ((cx18_read_reg(cx, CX18_PROC_SOFT_RESET) & 8) == 0) {
385 CX18_ERR("%s: couldn't stop CPU to load firmware\n", __func__);
386 return -EIO;
387 }
388
Andy Wallsb1526422008-08-30 16:03:44 -0300389 cx18_sw1_irq_enable(cx, IRQ_CPU_TO_EPU | IRQ_APU_TO_EPU);
390 cx18_sw2_irq_enable(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300391
Tim Gardner8a7bf1d2012-07-27 12:45:21 -0300392 sz = load_cpu_fw_direct(CX18_CPU_FIRMWARE, cx->enc_mem, cx);
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300393 if (sz <= 0)
394 return sz;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300395
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300396 /* The SCB & IPC area *must* be correct before starting the firmwares */
397 cx18_init_scb(cx);
Andy Wallsc7abfb42008-11-09 19:51:44 -0300398
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300399 fw_entry_addr = 0;
Tim Gardner8a7bf1d2012-07-27 12:45:21 -0300400 sz = load_apu_fw_direct(CX18_APU_FIRMWARE, cx->enc_mem, cx,
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300401 &fw_entry_addr);
402 if (sz <= 0)
403 return sz;
Andy Walls2d1a1b02008-11-08 17:14:22 -0300404
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300405 /* Start the CPU. The CPU will take care of the APU for us. */
406 cx18_write_reg_expect(cx, 0x00080000, CX18_PROC_SOFT_RESET,
407 0x00000000, 0x00080008);
Andy Walls2d1a1b02008-11-08 17:14:22 -0300408
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300409 /* Wait up to 500 ms for the APU to come out of reset */
410 for (retries = 0;
411 retries < 50 && (cx18_read_reg(cx, CX18_PROC_SOFT_RESET) & 1) == 1;
412 retries++)
413 cx18_msleep_timeout(10, 0);
Hans Verkuilf24648e2008-06-22 12:11:13 -0300414
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300415 cx18_msleep_timeout(200, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300416
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300417 if (retries == 50 &&
418 (cx18_read_reg(cx, CX18_PROC_SOFT_RESET) & 1) == 1) {
419 CX18_ERR("Could not start the CPU\n");
420 return -EIO;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300421 }
Andy Wallsd20ceec2008-11-09 18:14:07 -0300422
423 /*
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300424 * The CPU had once before set up to receive an interrupt for it's
425 * outgoing IRQ_CPU_TO_EPU_ACK to us. If it ever does this, we get an
426 * interrupt when it sends us an ack, but by the time we process it,
427 * that flag in the SW2 status register has been cleared by the CPU
428 * firmware. We'll prevent that not so useful condition from happening
429 * by clearing the CPU's interrupt enables for Ack IRQ's we want to
430 * process.
Andy Wallsd20ceec2008-11-09 18:14:07 -0300431 */
432 cx18_sw2_irq_disable_cpu(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK);
433
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300434 /* Try a benign command to see if the CPU is alive and well */
435 sz = cx18_vapi_result(cx, api_args, CX18_CPU_DEBUG_PEEK32, 1, 0);
436 if (sz < 0)
437 return sz;
438
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300439 /* initialize GPIO */
Andy Wallsced07372008-11-02 10:59:04 -0300440 cx18_write_reg_expect(cx, 0x14001400, 0xc78110, 0x00001400, 0x14001400);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300441 return 0;
442}
Tim Gardner8a7bf1d2012-07-27 12:45:21 -0300443
444MODULE_FIRMWARE(CX18_CPU_FIRMWARE);
445MODULE_FIRMWARE(CX18_APU_FIRMWARE);