Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 1 | /* |
| 2 | * cx18 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 modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (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., 59 Temple Place, Suite 330, Boston, MA |
| 19 | * 02111-1307 USA |
| 20 | */ |
| 21 | |
| 22 | #include "cx18-driver.h" |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 23 | #include "cx18-io.h" |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 24 | #include "cx18-scb.h" |
| 25 | #include "cx18-irq.h" |
| 26 | #include "cx18-firmware.h" |
| 27 | #include "cx18-cards.h" |
| 28 | #include <linux/firmware.h> |
| 29 | |
| 30 | #define CX18_PROC_SOFT_RESET 0xc70010 |
| 31 | #define CX18_DDR_SOFT_RESET 0xc70014 |
| 32 | #define CX18_CLOCK_SELECT1 0xc71000 |
| 33 | #define CX18_CLOCK_SELECT2 0xc71004 |
| 34 | #define CX18_HALF_CLOCK_SELECT1 0xc71008 |
| 35 | #define CX18_HALF_CLOCK_SELECT2 0xc7100C |
| 36 | #define CX18_CLOCK_POLARITY1 0xc71010 |
| 37 | #define CX18_CLOCK_POLARITY2 0xc71014 |
| 38 | #define CX18_ADD_DELAY_ENABLE1 0xc71018 |
| 39 | #define CX18_ADD_DELAY_ENABLE2 0xc7101C |
| 40 | #define CX18_CLOCK_ENABLE1 0xc71020 |
| 41 | #define CX18_CLOCK_ENABLE2 0xc71024 |
| 42 | |
| 43 | #define CX18_REG_BUS_TIMEOUT_EN 0xc72024 |
| 44 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 45 | #define CX18_FAST_CLOCK_PLL_INT 0xc78000 |
| 46 | #define CX18_FAST_CLOCK_PLL_FRAC 0xc78004 |
| 47 | #define CX18_FAST_CLOCK_PLL_POST 0xc78008 |
| 48 | #define CX18_FAST_CLOCK_PLL_PRESCALE 0xc7800C |
| 49 | #define CX18_FAST_CLOCK_PLL_ADJUST_BANDWIDTH 0xc78010 |
| 50 | |
| 51 | #define CX18_SLOW_CLOCK_PLL_INT 0xc78014 |
| 52 | #define CX18_SLOW_CLOCK_PLL_FRAC 0xc78018 |
| 53 | #define CX18_SLOW_CLOCK_PLL_POST 0xc7801C |
| 54 | #define CX18_MPEG_CLOCK_PLL_INT 0xc78040 |
| 55 | #define CX18_MPEG_CLOCK_PLL_FRAC 0xc78044 |
| 56 | #define CX18_MPEG_CLOCK_PLL_POST 0xc78048 |
| 57 | #define CX18_PLL_POWER_DOWN 0xc78088 |
| 58 | #define CX18_SW1_INT_STATUS 0xc73104 |
| 59 | #define CX18_SW1_INT_ENABLE_PCI 0xc7311C |
| 60 | #define CX18_SW2_INT_SET 0xc73140 |
| 61 | #define CX18_SW2_INT_STATUS 0xc73144 |
| 62 | #define CX18_ADEC_CONTROL 0xc78120 |
| 63 | |
| 64 | #define CX18_DDR_REQUEST_ENABLE 0xc80000 |
| 65 | #define CX18_DDR_CHIP_CONFIG 0xc80004 |
| 66 | #define CX18_DDR_REFRESH 0xc80008 |
| 67 | #define CX18_DDR_TIMING1 0xc8000C |
| 68 | #define CX18_DDR_TIMING2 0xc80010 |
| 69 | #define CX18_DDR_POWER_REG 0xc8001C |
| 70 | |
| 71 | #define CX18_DDR_TUNE_LANE 0xc80048 |
| 72 | #define CX18_DDR_INITIAL_EMRS 0xc80054 |
| 73 | #define CX18_DDR_MB_PER_ROW_7 0xc8009C |
| 74 | #define CX18_DDR_BASE_63_ADDR 0xc804FC |
| 75 | |
| 76 | #define CX18_WMB_CLIENT02 0xc90108 |
| 77 | #define CX18_WMB_CLIENT05 0xc90114 |
| 78 | #define CX18_WMB_CLIENT06 0xc90118 |
| 79 | #define CX18_WMB_CLIENT07 0xc9011C |
| 80 | #define CX18_WMB_CLIENT08 0xc90120 |
| 81 | #define CX18_WMB_CLIENT09 0xc90124 |
| 82 | #define CX18_WMB_CLIENT10 0xc90128 |
| 83 | #define CX18_WMB_CLIENT11 0xc9012C |
| 84 | #define CX18_WMB_CLIENT12 0xc90130 |
| 85 | #define CX18_WMB_CLIENT13 0xc90134 |
| 86 | #define CX18_WMB_CLIENT14 0xc90138 |
| 87 | |
| 88 | #define CX18_DSP0_INTERRUPT_MASK 0xd0004C |
| 89 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 90 | #define APU_ROM_SYNC1 0x6D676553 /* "mgeS" */ |
| 91 | #define APU_ROM_SYNC2 0x72646548 /* "rdeH" */ |
| 92 | |
| 93 | struct cx18_apu_rom_seghdr { |
| 94 | u32 sync1; |
| 95 | u32 sync2; |
| 96 | u32 addr; |
| 97 | u32 size; |
| 98 | }; |
| 99 | |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 100 | static int load_cpu_fw_direct(const char *fn, u8 __iomem *mem, struct cx18 *cx) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 101 | { |
| 102 | const struct firmware *fw = NULL; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 103 | int i, j; |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 104 | unsigned size; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 105 | u32 __iomem *dst = (u32 __iomem *)mem; |
| 106 | const u32 *src; |
| 107 | |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 108 | if (request_firmware(&fw, fn, &cx->dev->dev)) { |
| 109 | CX18_ERR("Unable to open firmware %s\n", fn); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 110 | CX18_ERR("Did you put the firmware in the hotplug firmware directory?\n"); |
| 111 | return -ENOMEM; |
| 112 | } |
| 113 | |
| 114 | src = (const u32 *)fw->data; |
| 115 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 116 | for (i = 0; i < fw->size; i += 4096) { |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 117 | cx18_setup_page(cx, i); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 118 | for (j = i; j < fw->size && j < i + 4096; j += 4) { |
| 119 | /* no need for endianness conversion on the ppc */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 120 | cx18_raw_writel(cx, *src, dst); |
| 121 | if (cx18_raw_readl(cx, dst) != *src) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 122 | CX18_ERR("Mismatch at offset %x\n", i); |
| 123 | release_firmware(fw); |
| 124 | return -EIO; |
| 125 | } |
| 126 | dst++; |
| 127 | src++; |
| 128 | } |
| 129 | } |
| 130 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) |
| 131 | CX18_INFO("loaded %s firmware (%zd bytes)\n", fn, fw->size); |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 132 | size = fw->size; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 133 | release_firmware(fw); |
| 134 | return size; |
| 135 | } |
| 136 | |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 137 | static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 138 | { |
| 139 | const struct firmware *fw = NULL; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 140 | int i, j; |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 141 | unsigned size; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 142 | const u32 *src; |
| 143 | struct cx18_apu_rom_seghdr seghdr; |
| 144 | const u8 *vers; |
| 145 | u32 offset = 0; |
| 146 | u32 apu_version = 0; |
| 147 | int sz; |
| 148 | |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 149 | if (request_firmware(&fw, fn, &cx->dev->dev)) { |
| 150 | CX18_ERR("unable to open firmware %s\n", fn); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 151 | CX18_ERR("did you put the firmware in the hotplug firmware directory?\n"); |
| 152 | return -ENOMEM; |
| 153 | } |
| 154 | |
| 155 | src = (const u32 *)fw->data; |
| 156 | vers = fw->data + sizeof(seghdr); |
| 157 | sz = fw->size; |
| 158 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 159 | apu_version = (vers[0] << 24) | (vers[4] << 16) | vers[32]; |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 160 | while (offset + sizeof(seghdr) < fw->size) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 161 | /* TODO: byteswapping */ |
| 162 | memcpy(&seghdr, src + offset / 4, sizeof(seghdr)); |
| 163 | offset += sizeof(seghdr); |
| 164 | if (seghdr.sync1 != APU_ROM_SYNC1 || |
| 165 | seghdr.sync2 != APU_ROM_SYNC2) { |
| 166 | offset += seghdr.size; |
| 167 | continue; |
| 168 | } |
| 169 | CX18_DEBUG_INFO("load segment %x-%x\n", seghdr.addr, |
| 170 | seghdr.addr + seghdr.size - 1); |
| 171 | if (offset + seghdr.size > sz) |
| 172 | break; |
| 173 | for (i = 0; i < seghdr.size; i += 4096) { |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 174 | cx18_setup_page(cx, offset + i); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 175 | for (j = i; j < seghdr.size && j < i + 4096; j += 4) { |
| 176 | /* no need for endianness conversion on the ppc */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 177 | cx18_raw_writel(cx, src[(offset + j) / 4], |
| 178 | dst + seghdr.addr + j); |
| 179 | if (cx18_raw_readl(cx, dst + seghdr.addr + j) |
| 180 | != src[(offset + j) / 4]) { |
| 181 | CX18_ERR("Mismatch at offset %x\n", |
| 182 | offset + j); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 183 | release_firmware(fw); |
| 184 | return -EIO; |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | offset += seghdr.size; |
| 189 | } |
| 190 | if (!test_bit(CX18_F_I_LOADED_FW, &cx->i_flags)) |
| 191 | CX18_INFO("loaded %s firmware V%08x (%zd bytes)\n", |
| 192 | fn, apu_version, fw->size); |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 193 | size = fw->size; |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 194 | release_firmware(fw); |
| 195 | /* Clear bit0 for APU to start from 0 */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 196 | cx18_write_reg(cx, cx18_read_reg(cx, 0xc72030) & ~1, 0xc72030); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 197 | return size; |
| 198 | } |
| 199 | |
| 200 | void cx18_halt_firmware(struct cx18 *cx) |
| 201 | { |
| 202 | CX18_DEBUG_INFO("Preparing for firmware halt.\n"); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 203 | cx18_write_reg(cx, 0x000F000F, CX18_PROC_SOFT_RESET); /* stop the fw */ |
| 204 | cx18_write_reg(cx, 0x00020002, CX18_ADEC_CONTROL); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | void cx18_init_power(struct cx18 *cx, int lowpwr) |
| 208 | { |
| 209 | /* power-down Spare and AOM PLLs */ |
| 210 | /* power-up fast, slow and mpeg PLLs */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 211 | cx18_write_reg(cx, 0x00000008, CX18_PLL_POWER_DOWN); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 212 | |
| 213 | /* ADEC out of sleep */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 214 | cx18_write_reg(cx, 0x00020000, CX18_ADEC_CONTROL); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 215 | |
| 216 | /* The fast clock is at 200/245 MHz */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 217 | cx18_write_reg(cx, lowpwr ? 0xD : 0x11, CX18_FAST_CLOCK_PLL_INT); |
| 218 | cx18_write_reg(cx, lowpwr ? 0x1EFBF37 : 0x038E3D7, |
| 219 | CX18_FAST_CLOCK_PLL_FRAC); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 220 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 221 | cx18_write_reg(cx, 2, CX18_FAST_CLOCK_PLL_POST); |
| 222 | cx18_write_reg(cx, 1, CX18_FAST_CLOCK_PLL_PRESCALE); |
| 223 | cx18_write_reg(cx, 4, CX18_FAST_CLOCK_PLL_ADJUST_BANDWIDTH); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 224 | |
| 225 | /* set slow clock to 125/120 MHz */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 226 | cx18_write_reg(cx, lowpwr ? 0x11 : 0x10, CX18_SLOW_CLOCK_PLL_INT); |
| 227 | cx18_write_reg(cx, lowpwr ? 0xEBAF05 : 0x18618A8, |
| 228 | CX18_SLOW_CLOCK_PLL_FRAC); |
| 229 | cx18_write_reg(cx, 4, CX18_SLOW_CLOCK_PLL_POST); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 230 | |
| 231 | /* mpeg clock pll 54MHz */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 232 | cx18_write_reg(cx, 0xF, CX18_MPEG_CLOCK_PLL_INT); |
| 233 | cx18_write_reg(cx, 0x2BCFEF, CX18_MPEG_CLOCK_PLL_FRAC); |
| 234 | cx18_write_reg(cx, 8, CX18_MPEG_CLOCK_PLL_POST); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 235 | |
| 236 | /* Defaults */ |
| 237 | /* APU = SC or SC/2 = 125/62.5 */ |
| 238 | /* EPU = SC = 125 */ |
| 239 | /* DDR = FC = 180 */ |
| 240 | /* ENC = SC = 125 */ |
| 241 | /* AI1 = SC = 125 */ |
| 242 | /* VIM2 = disabled */ |
| 243 | /* PCI = FC/2 = 90 */ |
| 244 | /* AI2 = disabled */ |
| 245 | /* DEMUX = disabled */ |
| 246 | /* AO = SC/2 = 62.5 */ |
| 247 | /* SER = 54MHz */ |
| 248 | /* VFC = disabled */ |
| 249 | /* USB = disabled */ |
| 250 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 251 | cx18_write_reg(cx, lowpwr ? 0xFFFF0020 : 0x00060004, |
| 252 | CX18_CLOCK_SELECT1); |
| 253 | cx18_write_reg(cx, lowpwr ? 0xFFFF0004 : 0x00060006, |
| 254 | CX18_CLOCK_SELECT2); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 255 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 256 | cx18_write_reg(cx, 0xFFFF0002, CX18_HALF_CLOCK_SELECT1); |
| 257 | cx18_write_reg(cx, 0xFFFF0104, CX18_HALF_CLOCK_SELECT2); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 258 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 259 | cx18_write_reg(cx, 0xFFFF9026, CX18_CLOCK_ENABLE1); |
| 260 | cx18_write_reg(cx, 0xFFFF3105, CX18_CLOCK_ENABLE2); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | void cx18_init_memory(struct cx18 *cx) |
| 264 | { |
| 265 | cx18_msleep_timeout(10, 0); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 266 | cx18_write_reg(cx, 0x10000, CX18_DDR_SOFT_RESET); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 267 | cx18_msleep_timeout(10, 0); |
| 268 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 269 | cx18_write_reg(cx, cx->card->ddr.chip_config, CX18_DDR_CHIP_CONFIG); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 270 | |
| 271 | cx18_msleep_timeout(10, 0); |
| 272 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 273 | cx18_write_reg(cx, cx->card->ddr.refresh, CX18_DDR_REFRESH); |
| 274 | cx18_write_reg(cx, cx->card->ddr.timing1, CX18_DDR_TIMING1); |
| 275 | cx18_write_reg(cx, cx->card->ddr.timing2, CX18_DDR_TIMING2); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 276 | |
| 277 | cx18_msleep_timeout(10, 0); |
| 278 | |
| 279 | /* Initialize DQS pad time */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 280 | cx18_write_reg(cx, cx->card->ddr.tune_lane, CX18_DDR_TUNE_LANE); |
| 281 | cx18_write_reg(cx, cx->card->ddr.initial_emrs, CX18_DDR_INITIAL_EMRS); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 282 | |
| 283 | cx18_msleep_timeout(10, 0); |
| 284 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 285 | cx18_write_reg(cx, 0x20000, CX18_DDR_SOFT_RESET); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 286 | cx18_msleep_timeout(10, 0); |
| 287 | |
| 288 | /* use power-down mode when idle */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 289 | cx18_write_reg(cx, 0x00000010, CX18_DDR_POWER_REG); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 290 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 291 | cx18_write_reg(cx, 0x10001, CX18_REG_BUS_TIMEOUT_EN); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 292 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 293 | cx18_write_reg(cx, 0x48, CX18_DDR_MB_PER_ROW_7); |
| 294 | cx18_write_reg(cx, 0xE0000, CX18_DDR_BASE_63_ADDR); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 295 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 296 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT02); /* AO */ |
| 297 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT09); /* AI2 */ |
| 298 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT05); /* VIM1 */ |
| 299 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT06); /* AI1 */ |
| 300 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT07); /* 3D comb */ |
| 301 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT10); /* ME */ |
| 302 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT12); /* ENC */ |
| 303 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT13); /* PK */ |
| 304 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT11); /* RC */ |
| 305 | cx18_write_reg(cx, 0x00000101, CX18_WMB_CLIENT14); /* AVO */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | int cx18_firmware_init(struct cx18 *cx) |
| 309 | { |
| 310 | /* Allow chip to control CLKRUN */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 311 | cx18_write_reg(cx, 0x5, CX18_DSP0_INTERRUPT_MASK); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 312 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 313 | cx18_write_reg(cx, 0x000F000F, CX18_PROC_SOFT_RESET); /* stop the fw */ |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 314 | |
| 315 | cx18_msleep_timeout(1, 0); |
| 316 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 317 | cx18_sw1_irq_enable(cx, IRQ_CPU_TO_EPU | IRQ_APU_TO_EPU); |
| 318 | cx18_sw2_irq_enable(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 319 | |
| 320 | /* Only if the processor is not running */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 321 | if (cx18_read_reg(cx, CX18_PROC_SOFT_RESET) & 8) { |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 322 | int sz = load_apu_fw_direct("v4l-cx23418-apu.fw", |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 323 | cx->enc_mem, cx); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 324 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 325 | cx18_write_enc(cx, 0xE51FF004, 0); |
| 326 | cx18_write_enc(cx, 0xa00000, 4); /* todo: not hardcoded */ |
| 327 | /* Start APU */ |
| 328 | cx18_write_reg(cx, 0x00010000, CX18_PROC_SOFT_RESET); |
Hans Verkuil | f24648e | 2008-06-22 12:11:13 -0300 | [diff] [blame] | 329 | cx18_msleep_timeout(500, 0); |
| 330 | |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 331 | sz = sz <= 0 ? sz : load_cpu_fw_direct("v4l-cx23418-cpu.fw", |
Hans Verkuil | 82fc52a | 2008-07-19 08:34:12 -0300 | [diff] [blame] | 332 | cx->enc_mem, cx); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 333 | |
| 334 | if (sz > 0) { |
| 335 | int retries = 0; |
| 336 | |
| 337 | /* start the CPU */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 338 | cx18_write_reg(cx, 0x00080000, CX18_PROC_SOFT_RESET); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 339 | while (retries++ < 50) { /* Loop for max 500mS */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 340 | if ((cx18_read_reg(cx, CX18_PROC_SOFT_RESET) |
| 341 | & 1) == 0) |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 342 | break; |
| 343 | cx18_msleep_timeout(10, 0); |
| 344 | } |
| 345 | cx18_msleep_timeout(200, 0); |
| 346 | if (retries == 51) { |
| 347 | CX18_ERR("Could not start the CPU\n"); |
| 348 | return -EIO; |
| 349 | } |
| 350 | } |
| 351 | if (sz <= 0) |
| 352 | return -EIO; |
| 353 | } |
| 354 | /* initialize GPIO */ |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame^] | 355 | cx18_write_reg(cx, 0x14001400, 0xC78110); |
Hans Verkuil | 1c1e45d | 2008-04-28 20:24:33 -0300 | [diff] [blame] | 356 | return 0; |
| 357 | } |