Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 Red Hat Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Ben Skeggs |
| 23 | */ |
| 24 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 25 | #include <drm/drmP.h> |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 26 | #include "nouveau_drm.h" |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 27 | #include "nouveau_bios.h" |
| 28 | #include "nouveau_pm.h" |
| 29 | #include "nouveau_hw.h" |
| 30 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 31 | #include <subdev/bios/pll.h> |
| 32 | #include <subdev/clock.h> |
| 33 | #include <subdev/timer.h> |
| 34 | |
| 35 | #include <engine/fifo.h> |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 36 | |
| 37 | #define min2(a,b) ((a) < (b) ? (a) : (b)) |
| 38 | |
| 39 | static u32 |
| 40 | read_pll_1(struct drm_device *dev, u32 reg) |
| 41 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 42 | struct nouveau_device *device = nouveau_dev(dev); |
| 43 | u32 ctrl = nv_rd32(device, reg + 0x00); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 44 | int P = (ctrl & 0x00070000) >> 16; |
| 45 | int N = (ctrl & 0x0000ff00) >> 8; |
| 46 | int M = (ctrl & 0x000000ff) >> 0; |
| 47 | u32 ref = 27000, clk = 0; |
| 48 | |
| 49 | if (ctrl & 0x80000000) |
| 50 | clk = ref * N / M; |
| 51 | |
| 52 | return clk >> P; |
| 53 | } |
| 54 | |
| 55 | static u32 |
| 56 | read_pll_2(struct drm_device *dev, u32 reg) |
| 57 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 58 | struct nouveau_device *device = nouveau_dev(dev); |
| 59 | u32 ctrl = nv_rd32(device, reg + 0x00); |
| 60 | u32 coef = nv_rd32(device, reg + 0x04); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 61 | int N2 = (coef & 0xff000000) >> 24; |
| 62 | int M2 = (coef & 0x00ff0000) >> 16; |
| 63 | int N1 = (coef & 0x0000ff00) >> 8; |
| 64 | int M1 = (coef & 0x000000ff) >> 0; |
| 65 | int P = (ctrl & 0x00070000) >> 16; |
| 66 | u32 ref = 27000, clk = 0; |
| 67 | |
Ben Skeggs | 2bfa748 | 2011-10-19 14:06:59 +1000 | [diff] [blame] | 68 | if ((ctrl & 0x80000000) && M1) { |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 69 | clk = ref * N1 / M1; |
Ben Skeggs | 2bfa748 | 2011-10-19 14:06:59 +1000 | [diff] [blame] | 70 | if ((ctrl & 0x40000100) == 0x40000000) { |
| 71 | if (M2) |
| 72 | clk = clk * N2 / M2; |
| 73 | else |
| 74 | clk = 0; |
| 75 | } |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | return clk >> P; |
| 79 | } |
| 80 | |
| 81 | static u32 |
| 82 | read_clk(struct drm_device *dev, u32 src) |
| 83 | { |
| 84 | switch (src) { |
| 85 | case 3: |
| 86 | return read_pll_2(dev, 0x004000); |
| 87 | case 2: |
| 88 | return read_pll_1(dev, 0x004008); |
| 89 | default: |
| 90 | break; |
| 91 | } |
| 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | int |
| 97 | nv40_pm_clocks_get(struct drm_device *dev, struct nouveau_pm_level *perflvl) |
| 98 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 99 | struct nouveau_device *device = nouveau_dev(dev); |
| 100 | u32 ctrl = nv_rd32(device, 0x00c040); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 101 | |
| 102 | perflvl->core = read_clk(dev, (ctrl & 0x00000003) >> 0); |
| 103 | perflvl->shader = read_clk(dev, (ctrl & 0x00000030) >> 4); |
| 104 | perflvl->memory = read_pll_2(dev, 0x4020); |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | struct nv40_pm_state { |
| 109 | u32 ctrl; |
| 110 | u32 npll_ctrl; |
| 111 | u32 npll_coef; |
| 112 | u32 spll; |
| 113 | u32 mpll_ctrl; |
| 114 | u32 mpll_coef; |
| 115 | }; |
| 116 | |
| 117 | static int |
Ben Skeggs | 70790f4 | 2012-07-10 17:26:46 +1000 | [diff] [blame] | 118 | nv40_calc_pll(struct drm_device *dev, u32 reg, struct nvbios_pll *pll, |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 119 | u32 clk, int *N1, int *M1, int *N2, int *M2, int *log2P) |
| 120 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 121 | struct nouveau_device *device = nouveau_dev(dev); |
| 122 | struct nouveau_bios *bios = nouveau_bios(device); |
| 123 | struct nouveau_clock *pclk = nouveau_clock(device); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 124 | struct nouveau_pll_vals coef; |
| 125 | int ret; |
| 126 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 127 | ret = nvbios_pll_parse(bios, reg, pll); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 128 | if (ret) |
| 129 | return ret; |
| 130 | |
Ben Skeggs | 70790f4 | 2012-07-10 17:26:46 +1000 | [diff] [blame] | 131 | if (clk < pll->vco1.max_freq) |
| 132 | pll->vco2.max_freq = 0; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 133 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 134 | pclk->pll_calc(pclk, pll, clk, &coef); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 135 | if (ret == 0) |
| 136 | return -ERANGE; |
| 137 | |
| 138 | *N1 = coef.N1; |
| 139 | *M1 = coef.M1; |
| 140 | if (N2 && M2) { |
Ben Skeggs | 70790f4 | 2012-07-10 17:26:46 +1000 | [diff] [blame] | 141 | if (pll->vco2.max_freq) { |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 142 | *N2 = coef.N2; |
| 143 | *M2 = coef.M2; |
| 144 | } else { |
| 145 | *N2 = 1; |
| 146 | *M2 = 1; |
| 147 | } |
| 148 | } |
| 149 | *log2P = coef.log2P; |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | void * |
| 154 | nv40_pm_clocks_pre(struct drm_device *dev, struct nouveau_pm_level *perflvl) |
| 155 | { |
| 156 | struct nv40_pm_state *info; |
Ben Skeggs | 70790f4 | 2012-07-10 17:26:46 +1000 | [diff] [blame] | 157 | struct nvbios_pll pll; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 158 | int N1, N2, M1, M2, log2P; |
| 159 | int ret; |
| 160 | |
| 161 | info = kmalloc(sizeof(*info), GFP_KERNEL); |
| 162 | if (!info) |
| 163 | return ERR_PTR(-ENOMEM); |
| 164 | |
| 165 | /* core/geometric clock */ |
| 166 | ret = nv40_calc_pll(dev, 0x004000, &pll, perflvl->core, |
| 167 | &N1, &M1, &N2, &M2, &log2P); |
| 168 | if (ret < 0) |
| 169 | goto out; |
| 170 | |
| 171 | if (N2 == M2) { |
| 172 | info->npll_ctrl = 0x80000100 | (log2P << 16); |
| 173 | info->npll_coef = (N1 << 8) | M1; |
| 174 | } else { |
| 175 | info->npll_ctrl = 0xc0000000 | (log2P << 16); |
| 176 | info->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; |
| 177 | } |
| 178 | |
| 179 | /* use the second PLL for shader/rop clock, if it differs from core */ |
| 180 | if (perflvl->shader && perflvl->shader != perflvl->core) { |
| 181 | ret = nv40_calc_pll(dev, 0x004008, &pll, perflvl->shader, |
| 182 | &N1, &M1, NULL, NULL, &log2P); |
| 183 | if (ret < 0) |
| 184 | goto out; |
| 185 | |
| 186 | info->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1; |
| 187 | info->ctrl = 0x00000223; |
| 188 | } else { |
| 189 | info->spll = 0x00000000; |
| 190 | info->ctrl = 0x00000333; |
| 191 | } |
| 192 | |
| 193 | /* memory clock */ |
Ben Skeggs | 2bfa748 | 2011-10-19 14:06:59 +1000 | [diff] [blame] | 194 | if (!perflvl->memory) { |
| 195 | info->mpll_ctrl = 0x00000000; |
| 196 | goto out; |
| 197 | } |
| 198 | |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 199 | ret = nv40_calc_pll(dev, 0x004020, &pll, perflvl->memory, |
| 200 | &N1, &M1, &N2, &M2, &log2P); |
| 201 | if (ret < 0) |
| 202 | goto out; |
| 203 | |
| 204 | info->mpll_ctrl = 0x80000000 | (log2P << 16); |
Ben Skeggs | 70790f4 | 2012-07-10 17:26:46 +1000 | [diff] [blame] | 205 | info->mpll_ctrl |= min2(pll.bias_p + log2P, pll.max_p) << 20; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 206 | if (N2 == M2) { |
| 207 | info->mpll_ctrl |= 0x00000100; |
| 208 | info->mpll_coef = (N1 << 8) | M1; |
| 209 | } else { |
| 210 | info->mpll_ctrl |= 0x40000000; |
| 211 | info->mpll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; |
| 212 | } |
| 213 | |
| 214 | out: |
| 215 | if (ret < 0) { |
| 216 | kfree(info); |
| 217 | info = ERR_PTR(ret); |
| 218 | } |
| 219 | return info; |
| 220 | } |
| 221 | |
| 222 | static bool |
| 223 | nv40_pm_gr_idle(void *data) |
| 224 | { |
| 225 | struct drm_device *dev = data; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 226 | struct nouveau_device *device = nouveau_dev(dev); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 227 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 228 | if ((nv_rd32(device, 0x400760) & 0x000000f0) >> 4 != |
| 229 | (nv_rd32(device, 0x400760) & 0x0000000f)) |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 230 | return false; |
| 231 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 232 | if (nv_rd32(device, 0x400700)) |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 233 | return false; |
| 234 | |
| 235 | return true; |
| 236 | } |
| 237 | |
Martin Peres | dd1da8d | 2011-07-10 00:08:41 +0200 | [diff] [blame] | 238 | int |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 239 | nv40_pm_clocks_set(struct drm_device *dev, void *pre_state) |
| 240 | { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 241 | struct nouveau_device *device = nouveau_dev(dev); |
| 242 | struct nouveau_fifo *pfifo = nouveau_fifo(device); |
| 243 | struct nouveau_drm *drm = nouveau_drm(dev); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 244 | struct nv40_pm_state *info = pre_state; |
| 245 | unsigned long flags; |
Ben Skeggs | 59ef974 | 2011-08-12 10:05:43 +1000 | [diff] [blame] | 246 | struct bit_entry M; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 247 | u32 crtc_mask = 0; |
| 248 | u8 sr1[2]; |
Martin Peres | dd1da8d | 2011-07-10 00:08:41 +0200 | [diff] [blame] | 249 | int i, ret = -EAGAIN; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 250 | |
| 251 | /* determine which CRTCs are active, fetch VGA_SR1 for each */ |
| 252 | for (i = 0; i < 2; i++) { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 253 | u32 vbl = nv_rd32(device, 0x600808 + (i * 0x2000)); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 254 | u32 cnt = 0; |
| 255 | do { |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 256 | if (vbl != nv_rd32(device, 0x600808 + (i * 0x2000))) { |
| 257 | nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01); |
| 258 | sr1[i] = nv_rd08(device, 0x0c03c5 + (i * 0x2000)); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 259 | if (!(sr1[i] & 0x20)) |
| 260 | crtc_mask |= (1 << i); |
| 261 | break; |
| 262 | } |
| 263 | udelay(1); |
| 264 | } while (cnt++ < 32); |
| 265 | } |
| 266 | |
| 267 | /* halt and idle engines */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 268 | pfifo->pause(pfifo, &flags); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 269 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 270 | if (!nv_wait_cb(device, nv40_pm_gr_idle, dev)) |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 271 | goto resume; |
| 272 | |
Martin Peres | dd1da8d | 2011-07-10 00:08:41 +0200 | [diff] [blame] | 273 | ret = 0; |
| 274 | |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 275 | /* set engine clocks */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 276 | nv_mask(device, 0x00c040, 0x00000333, 0x00000000); |
| 277 | nv_wr32(device, 0x004004, info->npll_coef); |
| 278 | nv_mask(device, 0x004000, 0xc0070100, info->npll_ctrl); |
| 279 | nv_mask(device, 0x004008, 0xc007ffff, info->spll); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 280 | mdelay(5); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 281 | nv_mask(device, 0x00c040, 0x00000333, info->ctrl); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 282 | |
Ben Skeggs | 2bfa748 | 2011-10-19 14:06:59 +1000 | [diff] [blame] | 283 | if (!info->mpll_ctrl) |
| 284 | goto resume; |
| 285 | |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 286 | /* wait for vblank start on active crtcs, disable memory access */ |
| 287 | for (i = 0; i < 2; i++) { |
| 288 | if (!(crtc_mask & (1 << i))) |
| 289 | continue; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 290 | nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00000000); |
| 291 | nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00010000); |
| 292 | nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01); |
| 293 | nv_wr08(device, 0x0c03c5 + (i * 0x2000), sr1[i] | 0x20); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /* prepare ram for reclocking */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 297 | nv_wr32(device, 0x1002d4, 0x00000001); /* precharge */ |
| 298 | nv_wr32(device, 0x1002d0, 0x00000001); /* refresh */ |
| 299 | nv_wr32(device, 0x1002d0, 0x00000001); /* refresh */ |
| 300 | nv_mask(device, 0x100210, 0x80000000, 0x00000000); /* no auto refresh */ |
| 301 | nv_wr32(device, 0x1002dc, 0x00000001); /* enable self-refresh */ |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 302 | |
| 303 | /* change the PLL of each memory partition */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 304 | nv_mask(device, 0x00c040, 0x0000c000, 0x00000000); |
| 305 | switch (nv_device(drm->device)->chipset) { |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 306 | case 0x40: |
| 307 | case 0x45: |
| 308 | case 0x41: |
| 309 | case 0x42: |
| 310 | case 0x47: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 311 | nv_mask(device, 0x004044, 0xc0771100, info->mpll_ctrl); |
| 312 | nv_mask(device, 0x00402c, 0xc0771100, info->mpll_ctrl); |
| 313 | nv_wr32(device, 0x004048, info->mpll_coef); |
| 314 | nv_wr32(device, 0x004030, info->mpll_coef); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 315 | case 0x43: |
| 316 | case 0x49: |
| 317 | case 0x4b: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 318 | nv_mask(device, 0x004038, 0xc0771100, info->mpll_ctrl); |
| 319 | nv_wr32(device, 0x00403c, info->mpll_coef); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 320 | default: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 321 | nv_mask(device, 0x004020, 0xc0771100, info->mpll_ctrl); |
| 322 | nv_wr32(device, 0x004024, info->mpll_coef); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 323 | break; |
| 324 | } |
| 325 | udelay(100); |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 326 | nv_mask(device, 0x00c040, 0x0000c000, 0x0000c000); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 327 | |
| 328 | /* re-enable normal operation of memory controller */ |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 329 | nv_wr32(device, 0x1002dc, 0x00000000); |
| 330 | nv_mask(device, 0x100210, 0x80000000, 0x80000000); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 331 | udelay(100); |
| 332 | |
Ben Skeggs | 59ef974 | 2011-08-12 10:05:43 +1000 | [diff] [blame] | 333 | /* execute memory reset script from vbios */ |
| 334 | if (!bit_table(dev, 'M', &M)) |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 335 | nouveau_bios_run_init_table(dev, ROM16(M.data[0]), NULL, 0); |
Ben Skeggs | 59ef974 | 2011-08-12 10:05:43 +1000 | [diff] [blame] | 336 | |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 337 | /* make sure we're in vblank (hopefully the same one as before), and |
| 338 | * then re-enable crtc memory access |
| 339 | */ |
| 340 | for (i = 0; i < 2; i++) { |
| 341 | if (!(crtc_mask & (1 << i))) |
| 342 | continue; |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 343 | nv_wait(device, 0x600808 + (i * 0x2000), 0x00010000, 0x00010000); |
| 344 | nv_wr08(device, 0x0c03c4 + (i * 0x2000), 0x01); |
| 345 | nv_wr08(device, 0x0c03c5 + (i * 0x2000), sr1[i]); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | /* resume engines */ |
| 349 | resume: |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 350 | pfifo->start(pfifo, &flags); |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 351 | kfree(info); |
Martin Peres | dd1da8d | 2011-07-10 00:08:41 +0200 | [diff] [blame] | 352 | return ret; |
Ben Skeggs | 1262a20 | 2011-07-18 15:15:34 +1000 | [diff] [blame] | 353 | } |