Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Advanced Micro Devices, Inc. |
| 3 | * Copyright 2008 Red Hat Inc. |
| 4 | * Copyright 2009 Jerome Glisse. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 22 | * OTHER DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: Dave Airlie |
| 25 | * Alex Deucher |
| 26 | * Jerome Glisse |
| 27 | */ |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 28 | #include <linux/kthread.h> |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 29 | #include <linux/console.h> |
| 30 | #include <linux/slab.h> |
| 31 | #include <linux/debugfs.h> |
| 32 | #include <drm/drmP.h> |
| 33 | #include <drm/drm_crtc_helper.h> |
| 34 | #include <drm/amdgpu_drm.h> |
| 35 | #include <linux/vgaarb.h> |
| 36 | #include <linux/vga_switcheroo.h> |
| 37 | #include <linux/efi.h> |
| 38 | #include "amdgpu.h" |
Tom St Denis | f4b373f | 2016-05-31 08:02:27 -0400 | [diff] [blame] | 39 | #include "amdgpu_trace.h" |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 40 | #include "amdgpu_i2c.h" |
| 41 | #include "atom.h" |
| 42 | #include "amdgpu_atombios.h" |
Alex Deucher | a5bde2f | 2016-09-23 16:23:41 -0400 | [diff] [blame] | 43 | #include "amdgpu_atomfirmware.h" |
Alex Deucher | d0dd7f0 | 2015-11-11 19:45:06 -0500 | [diff] [blame] | 44 | #include "amd_pcie.h" |
Ken Wang | 33f3480 | 2016-01-21 17:29:41 +0800 | [diff] [blame] | 45 | #ifdef CONFIG_DRM_AMDGPU_SI |
| 46 | #include "si.h" |
| 47 | #endif |
Alex Deucher | a2e73f5 | 2015-04-20 17:09:27 -0400 | [diff] [blame] | 48 | #ifdef CONFIG_DRM_AMDGPU_CIK |
| 49 | #include "cik.h" |
| 50 | #endif |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 51 | #include "vi.h" |
Ken Wang | 460826e | 2017-03-06 14:53:16 -0500 | [diff] [blame] | 52 | #include "soc15.h" |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 53 | #include "bif/bif_4_1_d.h" |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 54 | #include <linux/pci.h> |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 55 | #include <linux/firmware.h> |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 56 | #include "amdgpu_vf_error.h" |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 57 | |
Yong Zhao | ba99770 | 2015-11-09 17:21:45 -0500 | [diff] [blame] | 58 | #include "amdgpu_amdkfd.h" |
| 59 | |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 60 | MODULE_FIRMWARE("amdgpu/vega10_gpu_info.bin"); |
Alex Deucher | 2d2e5e7 | 2017-05-09 12:27:35 -0400 | [diff] [blame] | 61 | MODULE_FIRMWARE("amdgpu/raven_gpu_info.bin"); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 62 | |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 63 | #define AMDGPU_RESUME_MS 2000 |
| 64 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 65 | static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev); |
| 66 | static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev); |
Huang Rui | 4f0955f | 2017-05-10 23:04:06 +0800 | [diff] [blame] | 67 | static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 68 | |
| 69 | static const char *amdgpu_asic_name[] = { |
Ken Wang | da69c161 | 2016-01-21 19:08:55 +0800 | [diff] [blame] | 70 | "TAHITI", |
| 71 | "PITCAIRN", |
| 72 | "VERDE", |
| 73 | "OLAND", |
| 74 | "HAINAN", |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 75 | "BONAIRE", |
| 76 | "KAVERI", |
| 77 | "KABINI", |
| 78 | "HAWAII", |
| 79 | "MULLINS", |
| 80 | "TOPAZ", |
| 81 | "TONGA", |
David Zhang | 48299f9 | 2015-07-08 01:05:16 +0800 | [diff] [blame] | 82 | "FIJI", |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 83 | "CARRIZO", |
Samuel Li | 139f491 | 2015-10-08 14:50:27 -0400 | [diff] [blame] | 84 | "STONEY", |
Flora Cui | 2cc0c0b | 2016-03-14 18:33:29 -0400 | [diff] [blame] | 85 | "POLARIS10", |
| 86 | "POLARIS11", |
Junwei Zhang | c4642a4 | 2016-12-14 15:32:28 -0500 | [diff] [blame] | 87 | "POLARIS12", |
Ken Wang | d4196f0 | 2016-03-09 09:28:32 +0800 | [diff] [blame] | 88 | "VEGA10", |
Chunming Zhou | 2ca8a5d | 2016-12-07 17:31:19 +0800 | [diff] [blame] | 89 | "RAVEN", |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 90 | "LAST", |
| 91 | }; |
| 92 | |
| 93 | bool amdgpu_device_is_px(struct drm_device *dev) |
| 94 | { |
| 95 | struct amdgpu_device *adev = dev->dev_private; |
| 96 | |
Jammy Zhou | 2f7d10b | 2015-07-22 11:29:01 +0800 | [diff] [blame] | 97 | if (adev->flags & AMD_IS_PX) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 98 | return true; |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | /* |
| 103 | * MMIO register access helper functions. |
| 104 | */ |
| 105 | uint32_t amdgpu_mm_rreg(struct amdgpu_device *adev, uint32_t reg, |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 106 | uint32_t acc_flags) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 107 | { |
Tom St Denis | f4b373f | 2016-05-31 08:02:27 -0400 | [diff] [blame] | 108 | uint32_t ret; |
| 109 | |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 110 | if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) { |
Xiangliang Yu | bc992ba | 2017-01-12 14:29:34 +0800 | [diff] [blame] | 111 | BUG_ON(in_interrupt()); |
| 112 | return amdgpu_virt_kiq_rreg(adev, reg); |
| 113 | } |
| 114 | |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 115 | if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX)) |
Tom St Denis | f4b373f | 2016-05-31 08:02:27 -0400 | [diff] [blame] | 116 | ret = readl(((void __iomem *)adev->rmmio) + (reg * 4)); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 117 | else { |
| 118 | unsigned long flags; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 119 | |
| 120 | spin_lock_irqsave(&adev->mmio_idx_lock, flags); |
| 121 | writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4)); |
| 122 | ret = readl(((void __iomem *)adev->rmmio) + (mmMM_DATA * 4)); |
| 123 | spin_unlock_irqrestore(&adev->mmio_idx_lock, flags); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 124 | } |
Tom St Denis | f4b373f | 2016-05-31 08:02:27 -0400 | [diff] [blame] | 125 | trace_amdgpu_mm_rreg(adev->pdev->device, reg, ret); |
| 126 | return ret; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | void amdgpu_mm_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v, |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 130 | uint32_t acc_flags) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 131 | { |
Tom St Denis | f4b373f | 2016-05-31 08:02:27 -0400 | [diff] [blame] | 132 | trace_amdgpu_mm_wreg(adev->pdev->device, reg, v); |
Monk Liu | 4e99a44 | 2016-03-31 13:26:59 +0800 | [diff] [blame] | 133 | |
Ken Wang | 47ed4e1 | 2017-07-04 13:11:52 +0800 | [diff] [blame] | 134 | if (adev->asic_type >= CHIP_VEGA10 && reg == 0) { |
| 135 | adev->last_mm_index = v; |
| 136 | } |
| 137 | |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 138 | if (!(acc_flags & AMDGPU_REGS_NO_KIQ) && amdgpu_sriov_runtime(adev)) { |
Xiangliang Yu | bc992ba | 2017-01-12 14:29:34 +0800 | [diff] [blame] | 139 | BUG_ON(in_interrupt()); |
| 140 | return amdgpu_virt_kiq_wreg(adev, reg, v); |
| 141 | } |
| 142 | |
Monk Liu | 15d72fd | 2017-01-25 15:07:40 +0800 | [diff] [blame] | 143 | if ((reg * 4) < adev->rmmio_size && !(acc_flags & AMDGPU_REGS_IDX)) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 144 | writel(v, ((void __iomem *)adev->rmmio) + (reg * 4)); |
| 145 | else { |
| 146 | unsigned long flags; |
| 147 | |
| 148 | spin_lock_irqsave(&adev->mmio_idx_lock, flags); |
| 149 | writel((reg * 4), ((void __iomem *)adev->rmmio) + (mmMM_INDEX * 4)); |
| 150 | writel(v, ((void __iomem *)adev->rmmio) + (mmMM_DATA * 4)); |
| 151 | spin_unlock_irqrestore(&adev->mmio_idx_lock, flags); |
| 152 | } |
Ken Wang | 47ed4e1 | 2017-07-04 13:11:52 +0800 | [diff] [blame] | 153 | |
| 154 | if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) { |
| 155 | udelay(500); |
| 156 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | u32 amdgpu_io_rreg(struct amdgpu_device *adev, u32 reg) |
| 160 | { |
| 161 | if ((reg * 4) < adev->rio_mem_size) |
| 162 | return ioread32(adev->rio_mem + (reg * 4)); |
| 163 | else { |
| 164 | iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4)); |
| 165 | return ioread32(adev->rio_mem + (mmMM_DATA * 4)); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | void amdgpu_io_wreg(struct amdgpu_device *adev, u32 reg, u32 v) |
| 170 | { |
Ken Wang | 47ed4e1 | 2017-07-04 13:11:52 +0800 | [diff] [blame] | 171 | if (adev->asic_type >= CHIP_VEGA10 && reg == 0) { |
| 172 | adev->last_mm_index = v; |
| 173 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 174 | |
| 175 | if ((reg * 4) < adev->rio_mem_size) |
| 176 | iowrite32(v, adev->rio_mem + (reg * 4)); |
| 177 | else { |
| 178 | iowrite32((reg * 4), adev->rio_mem + (mmMM_INDEX * 4)); |
| 179 | iowrite32(v, adev->rio_mem + (mmMM_DATA * 4)); |
| 180 | } |
Ken Wang | 47ed4e1 | 2017-07-04 13:11:52 +0800 | [diff] [blame] | 181 | |
| 182 | if (adev->asic_type >= CHIP_VEGA10 && reg == 1 && adev->last_mm_index == 0x5702C) { |
| 183 | udelay(500); |
| 184 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /** |
| 188 | * amdgpu_mm_rdoorbell - read a doorbell dword |
| 189 | * |
| 190 | * @adev: amdgpu_device pointer |
| 191 | * @index: doorbell index |
| 192 | * |
| 193 | * Returns the value in the doorbell aperture at the |
| 194 | * requested doorbell index (CIK). |
| 195 | */ |
| 196 | u32 amdgpu_mm_rdoorbell(struct amdgpu_device *adev, u32 index) |
| 197 | { |
| 198 | if (index < adev->doorbell.num_doorbells) { |
| 199 | return readl(adev->doorbell.ptr + index); |
| 200 | } else { |
| 201 | DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index); |
| 202 | return 0; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * amdgpu_mm_wdoorbell - write a doorbell dword |
| 208 | * |
| 209 | * @adev: amdgpu_device pointer |
| 210 | * @index: doorbell index |
| 211 | * @v: value to write |
| 212 | * |
| 213 | * Writes @v to the doorbell aperture at the |
| 214 | * requested doorbell index (CIK). |
| 215 | */ |
| 216 | void amdgpu_mm_wdoorbell(struct amdgpu_device *adev, u32 index, u32 v) |
| 217 | { |
| 218 | if (index < adev->doorbell.num_doorbells) { |
| 219 | writel(v, adev->doorbell.ptr + index); |
| 220 | } else { |
| 221 | DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | /** |
Ken Wang | 832be40 | 2016-03-18 15:23:08 +0800 | [diff] [blame] | 226 | * amdgpu_mm_rdoorbell64 - read a doorbell Qword |
| 227 | * |
| 228 | * @adev: amdgpu_device pointer |
| 229 | * @index: doorbell index |
| 230 | * |
| 231 | * Returns the value in the doorbell aperture at the |
| 232 | * requested doorbell index (VEGA10+). |
| 233 | */ |
| 234 | u64 amdgpu_mm_rdoorbell64(struct amdgpu_device *adev, u32 index) |
| 235 | { |
| 236 | if (index < adev->doorbell.num_doorbells) { |
| 237 | return atomic64_read((atomic64_t *)(adev->doorbell.ptr + index)); |
| 238 | } else { |
| 239 | DRM_ERROR("reading beyond doorbell aperture: 0x%08x!\n", index); |
| 240 | return 0; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * amdgpu_mm_wdoorbell64 - write a doorbell Qword |
| 246 | * |
| 247 | * @adev: amdgpu_device pointer |
| 248 | * @index: doorbell index |
| 249 | * @v: value to write |
| 250 | * |
| 251 | * Writes @v to the doorbell aperture at the |
| 252 | * requested doorbell index (VEGA10+). |
| 253 | */ |
| 254 | void amdgpu_mm_wdoorbell64(struct amdgpu_device *adev, u32 index, u64 v) |
| 255 | { |
| 256 | if (index < adev->doorbell.num_doorbells) { |
| 257 | atomic64_set((atomic64_t *)(adev->doorbell.ptr + index), v); |
| 258 | } else { |
| 259 | DRM_ERROR("writing beyond doorbell aperture: 0x%08x!\n", index); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 264 | * amdgpu_invalid_rreg - dummy reg read function |
| 265 | * |
| 266 | * @adev: amdgpu device pointer |
| 267 | * @reg: offset of register |
| 268 | * |
| 269 | * Dummy register read function. Used for register blocks |
| 270 | * that certain asics don't have (all asics). |
| 271 | * Returns the value in the register. |
| 272 | */ |
| 273 | static uint32_t amdgpu_invalid_rreg(struct amdgpu_device *adev, uint32_t reg) |
| 274 | { |
| 275 | DRM_ERROR("Invalid callback to read register 0x%04X\n", reg); |
| 276 | BUG(); |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * amdgpu_invalid_wreg - dummy reg write function |
| 282 | * |
| 283 | * @adev: amdgpu device pointer |
| 284 | * @reg: offset of register |
| 285 | * @v: value to write to the register |
| 286 | * |
| 287 | * Dummy register read function. Used for register blocks |
| 288 | * that certain asics don't have (all asics). |
| 289 | */ |
| 290 | static void amdgpu_invalid_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v) |
| 291 | { |
| 292 | DRM_ERROR("Invalid callback to write register 0x%04X with 0x%08X\n", |
| 293 | reg, v); |
| 294 | BUG(); |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * amdgpu_block_invalid_rreg - dummy reg read function |
| 299 | * |
| 300 | * @adev: amdgpu device pointer |
| 301 | * @block: offset of instance |
| 302 | * @reg: offset of register |
| 303 | * |
| 304 | * Dummy register read function. Used for register blocks |
| 305 | * that certain asics don't have (all asics). |
| 306 | * Returns the value in the register. |
| 307 | */ |
| 308 | static uint32_t amdgpu_block_invalid_rreg(struct amdgpu_device *adev, |
| 309 | uint32_t block, uint32_t reg) |
| 310 | { |
| 311 | DRM_ERROR("Invalid callback to read register 0x%04X in block 0x%04X\n", |
| 312 | reg, block); |
| 313 | BUG(); |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * amdgpu_block_invalid_wreg - dummy reg write function |
| 319 | * |
| 320 | * @adev: amdgpu device pointer |
| 321 | * @block: offset of instance |
| 322 | * @reg: offset of register |
| 323 | * @v: value to write to the register |
| 324 | * |
| 325 | * Dummy register read function. Used for register blocks |
| 326 | * that certain asics don't have (all asics). |
| 327 | */ |
| 328 | static void amdgpu_block_invalid_wreg(struct amdgpu_device *adev, |
| 329 | uint32_t block, |
| 330 | uint32_t reg, uint32_t v) |
| 331 | { |
| 332 | DRM_ERROR("Invalid block callback to write register 0x%04X in block 0x%04X with 0x%08X\n", |
| 333 | reg, block, v); |
| 334 | BUG(); |
| 335 | } |
| 336 | |
| 337 | static int amdgpu_vram_scratch_init(struct amdgpu_device *adev) |
| 338 | { |
| 339 | int r; |
| 340 | |
| 341 | if (adev->vram_scratch.robj == NULL) { |
| 342 | r = amdgpu_bo_create(adev, AMDGPU_GPU_PAGE_SIZE, |
Alex Deucher | 857d913 | 2015-08-27 00:14:16 -0400 | [diff] [blame] | 343 | PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_VRAM, |
Christian König | 03f48dd | 2016-08-15 17:00:22 +0200 | [diff] [blame] | 344 | AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED | |
| 345 | AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS, |
Christian König | 72d7668 | 2015-09-03 17:34:59 +0200 | [diff] [blame] | 346 | NULL, NULL, &adev->vram_scratch.robj); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 347 | if (r) { |
| 348 | return r; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | r = amdgpu_bo_reserve(adev->vram_scratch.robj, false); |
| 353 | if (unlikely(r != 0)) |
| 354 | return r; |
| 355 | r = amdgpu_bo_pin(adev->vram_scratch.robj, |
| 356 | AMDGPU_GEM_DOMAIN_VRAM, &adev->vram_scratch.gpu_addr); |
| 357 | if (r) { |
| 358 | amdgpu_bo_unreserve(adev->vram_scratch.robj); |
| 359 | return r; |
| 360 | } |
| 361 | r = amdgpu_bo_kmap(adev->vram_scratch.robj, |
| 362 | (void **)&adev->vram_scratch.ptr); |
| 363 | if (r) |
| 364 | amdgpu_bo_unpin(adev->vram_scratch.robj); |
| 365 | amdgpu_bo_unreserve(adev->vram_scratch.robj); |
| 366 | |
| 367 | return r; |
| 368 | } |
| 369 | |
| 370 | static void amdgpu_vram_scratch_fini(struct amdgpu_device *adev) |
| 371 | { |
| 372 | int r; |
| 373 | |
| 374 | if (adev->vram_scratch.robj == NULL) { |
| 375 | return; |
| 376 | } |
Alex Xie | 8ab25b4 | 2017-04-24 13:30:43 -0400 | [diff] [blame] | 377 | r = amdgpu_bo_reserve(adev->vram_scratch.robj, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 378 | if (likely(r == 0)) { |
| 379 | amdgpu_bo_kunmap(adev->vram_scratch.robj); |
| 380 | amdgpu_bo_unpin(adev->vram_scratch.robj); |
| 381 | amdgpu_bo_unreserve(adev->vram_scratch.robj); |
| 382 | } |
| 383 | amdgpu_bo_unref(&adev->vram_scratch.robj); |
| 384 | } |
| 385 | |
| 386 | /** |
| 387 | * amdgpu_program_register_sequence - program an array of registers. |
| 388 | * |
| 389 | * @adev: amdgpu_device pointer |
| 390 | * @registers: pointer to the register array |
| 391 | * @array_size: size of the register array |
| 392 | * |
| 393 | * Programs an array or registers with and and or masks. |
| 394 | * This is a helper for setting golden registers. |
| 395 | */ |
| 396 | void amdgpu_program_register_sequence(struct amdgpu_device *adev, |
| 397 | const u32 *registers, |
| 398 | const u32 array_size) |
| 399 | { |
| 400 | u32 tmp, reg, and_mask, or_mask; |
| 401 | int i; |
| 402 | |
| 403 | if (array_size % 3) |
| 404 | return; |
| 405 | |
| 406 | for (i = 0; i < array_size; i +=3) { |
| 407 | reg = registers[i + 0]; |
| 408 | and_mask = registers[i + 1]; |
| 409 | or_mask = registers[i + 2]; |
| 410 | |
| 411 | if (and_mask == 0xffffffff) { |
| 412 | tmp = or_mask; |
| 413 | } else { |
| 414 | tmp = RREG32(reg); |
| 415 | tmp &= ~and_mask; |
| 416 | tmp |= or_mask; |
| 417 | } |
| 418 | WREG32(reg, tmp); |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | void amdgpu_pci_config_reset(struct amdgpu_device *adev) |
| 423 | { |
| 424 | pci_write_config_dword(adev->pdev, 0x7c, AMDGPU_ASIC_RESET_DATA); |
| 425 | } |
| 426 | |
| 427 | /* |
| 428 | * GPU doorbell aperture helpers function. |
| 429 | */ |
| 430 | /** |
| 431 | * amdgpu_doorbell_init - Init doorbell driver information. |
| 432 | * |
| 433 | * @adev: amdgpu_device pointer |
| 434 | * |
| 435 | * Init doorbell driver information (CIK) |
| 436 | * Returns 0 on success, error on failure. |
| 437 | */ |
| 438 | static int amdgpu_doorbell_init(struct amdgpu_device *adev) |
| 439 | { |
| 440 | /* doorbell bar mapping */ |
| 441 | adev->doorbell.base = pci_resource_start(adev->pdev, 2); |
| 442 | adev->doorbell.size = pci_resource_len(adev->pdev, 2); |
| 443 | |
Christian König | edf600d | 2016-05-03 15:54:54 +0200 | [diff] [blame] | 444 | adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32), |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 445 | AMDGPU_DOORBELL_MAX_ASSIGNMENT+1); |
| 446 | if (adev->doorbell.num_doorbells == 0) |
| 447 | return -EINVAL; |
| 448 | |
Christian König | 8972e5d | 2017-03-06 13:34:57 +0100 | [diff] [blame] | 449 | adev->doorbell.ptr = ioremap(adev->doorbell.base, |
| 450 | adev->doorbell.num_doorbells * |
| 451 | sizeof(u32)); |
| 452 | if (adev->doorbell.ptr == NULL) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 453 | return -ENOMEM; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 454 | |
| 455 | return 0; |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * amdgpu_doorbell_fini - Tear down doorbell driver information. |
| 460 | * |
| 461 | * @adev: amdgpu_device pointer |
| 462 | * |
| 463 | * Tear down doorbell driver information (CIK) |
| 464 | */ |
| 465 | static void amdgpu_doorbell_fini(struct amdgpu_device *adev) |
| 466 | { |
| 467 | iounmap(adev->doorbell.ptr); |
| 468 | adev->doorbell.ptr = NULL; |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to |
| 473 | * setup amdkfd |
| 474 | * |
| 475 | * @adev: amdgpu_device pointer |
| 476 | * @aperture_base: output returning doorbell aperture base physical address |
| 477 | * @aperture_size: output returning doorbell aperture size in bytes |
| 478 | * @start_offset: output returning # of doorbell bytes reserved for amdgpu. |
| 479 | * |
| 480 | * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up, |
| 481 | * takes doorbells required for its own rings and reports the setup to amdkfd. |
| 482 | * amdgpu reserved doorbells are at the start of the doorbell aperture. |
| 483 | */ |
| 484 | void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev, |
| 485 | phys_addr_t *aperture_base, |
| 486 | size_t *aperture_size, |
| 487 | size_t *start_offset) |
| 488 | { |
| 489 | /* |
| 490 | * The first num_doorbells are used by amdgpu. |
| 491 | * amdkfd takes whatever's left in the aperture. |
| 492 | */ |
| 493 | if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) { |
| 494 | *aperture_base = adev->doorbell.base; |
| 495 | *aperture_size = adev->doorbell.size; |
| 496 | *start_offset = adev->doorbell.num_doorbells * sizeof(u32); |
| 497 | } else { |
| 498 | *aperture_base = 0; |
| 499 | *aperture_size = 0; |
| 500 | *start_offset = 0; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | /* |
| 505 | * amdgpu_wb_*() |
Alex Xie | 455a7bc | 2017-05-08 21:36:03 -0400 | [diff] [blame] | 506 | * Writeback is the method by which the GPU updates special pages in memory |
Alex Xie | ea81a17 | 2017-05-08 13:41:11 -0400 | [diff] [blame] | 507 | * with the status of certain GPU events (fences, ring pointers,etc.). |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 508 | */ |
| 509 | |
| 510 | /** |
| 511 | * amdgpu_wb_fini - Disable Writeback and free memory |
| 512 | * |
| 513 | * @adev: amdgpu_device pointer |
| 514 | * |
| 515 | * Disables Writeback and frees the Writeback memory (all asics). |
| 516 | * Used at driver shutdown. |
| 517 | */ |
| 518 | static void amdgpu_wb_fini(struct amdgpu_device *adev) |
| 519 | { |
| 520 | if (adev->wb.wb_obj) { |
Alex Deucher | a76ed48 | 2016-10-21 15:30:36 -0400 | [diff] [blame] | 521 | amdgpu_bo_free_kernel(&adev->wb.wb_obj, |
| 522 | &adev->wb.gpu_addr, |
| 523 | (void **)&adev->wb.wb); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 524 | adev->wb.wb_obj = NULL; |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * amdgpu_wb_init- Init Writeback driver info and allocate memory |
| 530 | * |
| 531 | * @adev: amdgpu_device pointer |
| 532 | * |
Alex Xie | 455a7bc | 2017-05-08 21:36:03 -0400 | [diff] [blame] | 533 | * Initializes writeback and allocates writeback memory (all asics). |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 534 | * Used at driver startup. |
| 535 | * Returns 0 on success or an -error on failure. |
| 536 | */ |
| 537 | static int amdgpu_wb_init(struct amdgpu_device *adev) |
| 538 | { |
| 539 | int r; |
| 540 | |
| 541 | if (adev->wb.wb_obj == NULL) { |
Huang Rui | 60a970a6 | 2017-03-15 10:13:32 +0800 | [diff] [blame] | 542 | r = amdgpu_bo_create_kernel(adev, AMDGPU_MAX_WB * sizeof(uint32_t), |
Alex Deucher | a76ed48 | 2016-10-21 15:30:36 -0400 | [diff] [blame] | 543 | PAGE_SIZE, AMDGPU_GEM_DOMAIN_GTT, |
| 544 | &adev->wb.wb_obj, &adev->wb.gpu_addr, |
| 545 | (void **)&adev->wb.wb); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 546 | if (r) { |
| 547 | dev_warn(adev->dev, "(%d) create WB bo failed\n", r); |
| 548 | return r; |
| 549 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 550 | |
| 551 | adev->wb.num_wb = AMDGPU_MAX_WB; |
| 552 | memset(&adev->wb.used, 0, sizeof(adev->wb.used)); |
| 553 | |
| 554 | /* clear wb memory */ |
Huang Rui | 60a970a6 | 2017-03-15 10:13:32 +0800 | [diff] [blame] | 555 | memset((char *)adev->wb.wb, 0, AMDGPU_MAX_WB * sizeof(uint32_t)); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | /** |
| 562 | * amdgpu_wb_get - Allocate a wb entry |
| 563 | * |
| 564 | * @adev: amdgpu_device pointer |
| 565 | * @wb: wb index |
| 566 | * |
| 567 | * Allocate a wb slot for use by the driver (all asics). |
| 568 | * Returns 0 on success or -EINVAL on failure. |
| 569 | */ |
| 570 | int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb) |
| 571 | { |
| 572 | unsigned long offset = find_first_zero_bit(adev->wb.used, adev->wb.num_wb); |
| 573 | if (offset < adev->wb.num_wb) { |
| 574 | __set_bit(offset, adev->wb.used); |
| 575 | *wb = offset; |
| 576 | return 0; |
| 577 | } else { |
| 578 | return -EINVAL; |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | /** |
Ken Wang | 7014285 | 2016-03-18 15:08:49 +0800 | [diff] [blame] | 583 | * amdgpu_wb_get_64bit - Allocate a wb entry |
| 584 | * |
| 585 | * @adev: amdgpu_device pointer |
| 586 | * @wb: wb index |
| 587 | * |
| 588 | * Allocate a wb slot for use by the driver (all asics). |
| 589 | * Returns 0 on success or -EINVAL on failure. |
| 590 | */ |
| 591 | int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb) |
| 592 | { |
| 593 | unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used, |
| 594 | adev->wb.num_wb, 0, 2, 7, 0); |
| 595 | if ((offset + 1) < adev->wb.num_wb) { |
| 596 | __set_bit(offset, adev->wb.used); |
| 597 | __set_bit(offset + 1, adev->wb.used); |
| 598 | *wb = offset; |
| 599 | return 0; |
| 600 | } else { |
| 601 | return -EINVAL; |
| 602 | } |
| 603 | } |
| 604 | |
Monk Liu | 0915fdb | 2017-06-19 10:19:41 -0400 | [diff] [blame^] | 605 | int amdgpu_wb_get_256Bit(struct amdgpu_device *adev, u32 *wb) |
| 606 | { |
| 607 | int i = 0; |
| 608 | unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used, |
| 609 | adev->wb.num_wb, 0, 8, 63, 0); |
| 610 | if ((offset + 7) < adev->wb.num_wb) { |
| 611 | for (i = 0; i < 8; i++) |
| 612 | __set_bit(offset + i, adev->wb.used); |
| 613 | *wb = offset; |
| 614 | return 0; |
| 615 | } else { |
| 616 | return -EINVAL; |
| 617 | } |
| 618 | } |
| 619 | |
Ken Wang | 7014285 | 2016-03-18 15:08:49 +0800 | [diff] [blame] | 620 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 621 | * amdgpu_wb_free - Free a wb entry |
| 622 | * |
| 623 | * @adev: amdgpu_device pointer |
| 624 | * @wb: wb index |
| 625 | * |
| 626 | * Free a wb slot allocated for use by the driver (all asics) |
| 627 | */ |
| 628 | void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb) |
| 629 | { |
| 630 | if (wb < adev->wb.num_wb) |
| 631 | __clear_bit(wb, adev->wb.used); |
| 632 | } |
| 633 | |
| 634 | /** |
Ken Wang | 7014285 | 2016-03-18 15:08:49 +0800 | [diff] [blame] | 635 | * amdgpu_wb_free_64bit - Free a wb entry |
| 636 | * |
| 637 | * @adev: amdgpu_device pointer |
| 638 | * @wb: wb index |
| 639 | * |
| 640 | * Free a wb slot allocated for use by the driver (all asics) |
| 641 | */ |
| 642 | void amdgpu_wb_free_64bit(struct amdgpu_device *adev, u32 wb) |
| 643 | { |
| 644 | if ((wb + 1) < adev->wb.num_wb) { |
| 645 | __clear_bit(wb, adev->wb.used); |
| 646 | __clear_bit(wb + 1, adev->wb.used); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | /** |
Monk Liu | 0915fdb | 2017-06-19 10:19:41 -0400 | [diff] [blame^] | 651 | * amdgpu_wb_free_256bit - Free a wb entry |
| 652 | * |
| 653 | * @adev: amdgpu_device pointer |
| 654 | * @wb: wb index |
| 655 | * |
| 656 | * Free a wb slot allocated for use by the driver (all asics) |
| 657 | */ |
| 658 | void amdgpu_wb_free_256bit(struct amdgpu_device *adev, u32 wb) |
| 659 | { |
| 660 | int i = 0; |
| 661 | |
| 662 | if ((wb + 7) < adev->wb.num_wb) |
| 663 | for (i = 0; i < 8; i++) |
| 664 | __clear_bit(wb + i, adev->wb.used); |
| 665 | } |
| 666 | |
| 667 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 668 | * amdgpu_vram_location - try to find VRAM location |
| 669 | * @adev: amdgpu device structure holding all necessary informations |
| 670 | * @mc: memory controller structure holding memory informations |
| 671 | * @base: base address at which to put VRAM |
| 672 | * |
Alex Xie | 455a7bc | 2017-05-08 21:36:03 -0400 | [diff] [blame] | 673 | * Function will try to place VRAM at base address provided |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 674 | * as parameter (which is so far either PCI aperture address or |
| 675 | * for IGP TOM base address). |
| 676 | * |
| 677 | * If there is not enough space to fit the unvisible VRAM in the 32bits |
| 678 | * address space then we limit the VRAM size to the aperture. |
| 679 | * |
| 680 | * Note: We don't explicitly enforce VRAM start to be aligned on VRAM size, |
| 681 | * this shouldn't be a problem as we are using the PCI aperture as a reference. |
| 682 | * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but |
| 683 | * not IGP. |
| 684 | * |
| 685 | * Note: we use mc_vram_size as on some board we need to program the mc to |
| 686 | * cover the whole aperture even if VRAM size is inferior to aperture size |
| 687 | * Novell bug 204882 + along with lots of ubuntu ones |
| 688 | * |
| 689 | * Note: when limiting vram it's safe to overwritte real_vram_size because |
| 690 | * we are not in case where real_vram_size is inferior to mc_vram_size (ie |
| 691 | * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu |
| 692 | * ones) |
| 693 | * |
| 694 | * Note: IGP TOM addr should be the same as the aperture addr, we don't |
Alex Xie | 455a7bc | 2017-05-08 21:36:03 -0400 | [diff] [blame] | 695 | * explicitly check for that though. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 696 | * |
| 697 | * FIXME: when reducing VRAM size align new size on power of 2. |
| 698 | */ |
| 699 | void amdgpu_vram_location(struct amdgpu_device *adev, struct amdgpu_mc *mc, u64 base) |
| 700 | { |
| 701 | uint64_t limit = (uint64_t)amdgpu_vram_limit << 20; |
| 702 | |
| 703 | mc->vram_start = base; |
| 704 | if (mc->mc_vram_size > (adev->mc.mc_mask - base + 1)) { |
| 705 | dev_warn(adev->dev, "limiting VRAM to PCI aperture size\n"); |
| 706 | mc->real_vram_size = mc->aper_size; |
| 707 | mc->mc_vram_size = mc->aper_size; |
| 708 | } |
| 709 | mc->vram_end = mc->vram_start + mc->mc_vram_size - 1; |
| 710 | if (limit && limit < mc->real_vram_size) |
| 711 | mc->real_vram_size = limit; |
| 712 | dev_info(adev->dev, "VRAM: %lluM 0x%016llX - 0x%016llX (%lluM used)\n", |
| 713 | mc->mc_vram_size >> 20, mc->vram_start, |
| 714 | mc->vram_end, mc->real_vram_size >> 20); |
| 715 | } |
| 716 | |
| 717 | /** |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 718 | * amdgpu_gart_location - try to find GTT location |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 719 | * @adev: amdgpu device structure holding all necessary informations |
| 720 | * @mc: memory controller structure holding memory informations |
| 721 | * |
| 722 | * Function will place try to place GTT before or after VRAM. |
| 723 | * |
| 724 | * If GTT size is bigger than space left then we ajust GTT size. |
| 725 | * Thus function will never fails. |
| 726 | * |
| 727 | * FIXME: when reducing GTT size align new size on power of 2. |
| 728 | */ |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 729 | void amdgpu_gart_location(struct amdgpu_device *adev, struct amdgpu_mc *mc) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 730 | { |
| 731 | u64 size_af, size_bf; |
| 732 | |
Christian König | ed21c04 | 2017-07-06 22:26:05 +0200 | [diff] [blame] | 733 | size_af = adev->mc.mc_mask - mc->vram_end; |
| 734 | size_bf = mc->vram_start; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 735 | if (size_bf > size_af) { |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 736 | if (mc->gart_size > size_bf) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 737 | dev_warn(adev->dev, "limiting GTT\n"); |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 738 | mc->gart_size = size_bf; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 739 | } |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 740 | mc->gart_start = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 741 | } else { |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 742 | if (mc->gart_size > size_af) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 743 | dev_warn(adev->dev, "limiting GTT\n"); |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 744 | mc->gart_size = size_af; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 745 | } |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 746 | mc->gart_start = mc->vram_end + 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 747 | } |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 748 | mc->gart_end = mc->gart_start + mc->gart_size - 1; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 749 | dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n", |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 750 | mc->gart_size >> 20, mc->gart_start, mc->gart_end); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 751 | } |
| 752 | |
| 753 | /* |
| 754 | * GPU helpers function. |
| 755 | */ |
| 756 | /** |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 757 | * amdgpu_need_post - check if the hw need post or not |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 758 | * |
| 759 | * @adev: amdgpu_device pointer |
| 760 | * |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 761 | * Check if the asic has been initialized (all asics) at driver startup |
| 762 | * or post is needed if hw reset is performed. |
| 763 | * Returns true if need or false if not. |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 764 | */ |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 765 | bool amdgpu_need_post(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 766 | { |
| 767 | uint32_t reg; |
| 768 | |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 769 | if (adev->has_hw_reset) { |
| 770 | adev->has_hw_reset = false; |
| 771 | return true; |
| 772 | } |
Alex Deucher | 70d17a2 | 2017-06-30 17:26:47 -0400 | [diff] [blame] | 773 | |
| 774 | /* bios scratch used on CIK+ */ |
| 775 | if (adev->asic_type >= CHIP_BONAIRE) |
| 776 | return amdgpu_atombios_scratch_need_asic_init(adev); |
| 777 | |
| 778 | /* check MEM_SIZE for older asics */ |
Alex Deucher | bbf282d | 2017-03-03 17:26:10 -0500 | [diff] [blame] | 779 | reg = amdgpu_asic_get_config_memsize(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 780 | |
Alex Deucher | f2713e8 | 2017-03-28 12:19:31 -0400 | [diff] [blame] | 781 | if ((reg != 0) && (reg != 0xffffffff)) |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 782 | return false; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 783 | |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 784 | return true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 785 | |
| 786 | } |
| 787 | |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 788 | static bool amdgpu_vpost_needed(struct amdgpu_device *adev) |
| 789 | { |
| 790 | if (amdgpu_sriov_vf(adev)) |
| 791 | return false; |
| 792 | |
| 793 | if (amdgpu_passthrough(adev)) { |
Monk Liu | 1da2c32 | 2016-11-11 11:24:29 +0800 | [diff] [blame] | 794 | /* for FIJI: In whole GPU pass-through virtualization case, after VM reboot |
| 795 | * some old smc fw still need driver do vPost otherwise gpu hang, while |
| 796 | * those smc fw version above 22.15 doesn't have this flaw, so we force |
| 797 | * vpost executed for smc version below 22.15 |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 798 | */ |
| 799 | if (adev->asic_type == CHIP_FIJI) { |
| 800 | int err; |
| 801 | uint32_t fw_ver; |
| 802 | err = request_firmware(&adev->pm.fw, "amdgpu/fiji_smc.bin", adev->dev); |
| 803 | /* force vPost if error occured */ |
| 804 | if (err) |
| 805 | return true; |
| 806 | |
| 807 | fw_ver = *((uint32_t *)adev->pm.fw->data + 69); |
Monk Liu | 1da2c32 | 2016-11-11 11:24:29 +0800 | [diff] [blame] | 808 | if (fw_ver < 0x00160e00) |
| 809 | return true; |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 810 | } |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 811 | } |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 812 | return amdgpu_need_post(adev); |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 813 | } |
| 814 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 815 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 816 | * amdgpu_dummy_page_init - init dummy page used by the driver |
| 817 | * |
| 818 | * @adev: amdgpu_device pointer |
| 819 | * |
| 820 | * Allocate the dummy page used by the driver (all asics). |
| 821 | * This dummy page is used by the driver as a filler for gart entries |
| 822 | * when pages are taken out of the GART |
| 823 | * Returns 0 on sucess, -ENOMEM on failure. |
| 824 | */ |
| 825 | int amdgpu_dummy_page_init(struct amdgpu_device *adev) |
| 826 | { |
| 827 | if (adev->dummy_page.page) |
| 828 | return 0; |
| 829 | adev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO); |
| 830 | if (adev->dummy_page.page == NULL) |
| 831 | return -ENOMEM; |
| 832 | adev->dummy_page.addr = pci_map_page(adev->pdev, adev->dummy_page.page, |
| 833 | 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); |
| 834 | if (pci_dma_mapping_error(adev->pdev, adev->dummy_page.addr)) { |
| 835 | dev_err(&adev->pdev->dev, "Failed to DMA MAP the dummy page\n"); |
| 836 | __free_page(adev->dummy_page.page); |
| 837 | adev->dummy_page.page = NULL; |
| 838 | return -ENOMEM; |
| 839 | } |
| 840 | return 0; |
| 841 | } |
| 842 | |
| 843 | /** |
| 844 | * amdgpu_dummy_page_fini - free dummy page used by the driver |
| 845 | * |
| 846 | * @adev: amdgpu_device pointer |
| 847 | * |
| 848 | * Frees the dummy page used by the driver (all asics). |
| 849 | */ |
| 850 | void amdgpu_dummy_page_fini(struct amdgpu_device *adev) |
| 851 | { |
| 852 | if (adev->dummy_page.page == NULL) |
| 853 | return; |
| 854 | pci_unmap_page(adev->pdev, adev->dummy_page.addr, |
| 855 | PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); |
| 856 | __free_page(adev->dummy_page.page); |
| 857 | adev->dummy_page.page = NULL; |
| 858 | } |
| 859 | |
| 860 | |
| 861 | /* ATOM accessor methods */ |
| 862 | /* |
| 863 | * ATOM is an interpreted byte code stored in tables in the vbios. The |
| 864 | * driver registers callbacks to access registers and the interpreter |
| 865 | * in the driver parses the tables and executes then to program specific |
| 866 | * actions (set display modes, asic init, etc.). See amdgpu_atombios.c, |
| 867 | * atombios.h, and atom.c |
| 868 | */ |
| 869 | |
| 870 | /** |
| 871 | * cail_pll_read - read PLL register |
| 872 | * |
| 873 | * @info: atom card_info pointer |
| 874 | * @reg: PLL register offset |
| 875 | * |
| 876 | * Provides a PLL register accessor for the atom interpreter (r4xx+). |
| 877 | * Returns the value of the PLL register. |
| 878 | */ |
| 879 | static uint32_t cail_pll_read(struct card_info *info, uint32_t reg) |
| 880 | { |
| 881 | return 0; |
| 882 | } |
| 883 | |
| 884 | /** |
| 885 | * cail_pll_write - write PLL register |
| 886 | * |
| 887 | * @info: atom card_info pointer |
| 888 | * @reg: PLL register offset |
| 889 | * @val: value to write to the pll register |
| 890 | * |
| 891 | * Provides a PLL register accessor for the atom interpreter (r4xx+). |
| 892 | */ |
| 893 | static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val) |
| 894 | { |
| 895 | |
| 896 | } |
| 897 | |
| 898 | /** |
| 899 | * cail_mc_read - read MC (Memory Controller) register |
| 900 | * |
| 901 | * @info: atom card_info pointer |
| 902 | * @reg: MC register offset |
| 903 | * |
| 904 | * Provides an MC register accessor for the atom interpreter (r4xx+). |
| 905 | * Returns the value of the MC register. |
| 906 | */ |
| 907 | static uint32_t cail_mc_read(struct card_info *info, uint32_t reg) |
| 908 | { |
| 909 | return 0; |
| 910 | } |
| 911 | |
| 912 | /** |
| 913 | * cail_mc_write - write MC (Memory Controller) register |
| 914 | * |
| 915 | * @info: atom card_info pointer |
| 916 | * @reg: MC register offset |
| 917 | * @val: value to write to the pll register |
| 918 | * |
| 919 | * Provides a MC register accessor for the atom interpreter (r4xx+). |
| 920 | */ |
| 921 | static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val) |
| 922 | { |
| 923 | |
| 924 | } |
| 925 | |
| 926 | /** |
| 927 | * cail_reg_write - write MMIO register |
| 928 | * |
| 929 | * @info: atom card_info pointer |
| 930 | * @reg: MMIO register offset |
| 931 | * @val: value to write to the pll register |
| 932 | * |
| 933 | * Provides a MMIO register accessor for the atom interpreter (r4xx+). |
| 934 | */ |
| 935 | static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val) |
| 936 | { |
| 937 | struct amdgpu_device *adev = info->dev->dev_private; |
| 938 | |
| 939 | WREG32(reg, val); |
| 940 | } |
| 941 | |
| 942 | /** |
| 943 | * cail_reg_read - read MMIO register |
| 944 | * |
| 945 | * @info: atom card_info pointer |
| 946 | * @reg: MMIO register offset |
| 947 | * |
| 948 | * Provides an MMIO register accessor for the atom interpreter (r4xx+). |
| 949 | * Returns the value of the MMIO register. |
| 950 | */ |
| 951 | static uint32_t cail_reg_read(struct card_info *info, uint32_t reg) |
| 952 | { |
| 953 | struct amdgpu_device *adev = info->dev->dev_private; |
| 954 | uint32_t r; |
| 955 | |
| 956 | r = RREG32(reg); |
| 957 | return r; |
| 958 | } |
| 959 | |
| 960 | /** |
| 961 | * cail_ioreg_write - write IO register |
| 962 | * |
| 963 | * @info: atom card_info pointer |
| 964 | * @reg: IO register offset |
| 965 | * @val: value to write to the pll register |
| 966 | * |
| 967 | * Provides a IO register accessor for the atom interpreter (r4xx+). |
| 968 | */ |
| 969 | static void cail_ioreg_write(struct card_info *info, uint32_t reg, uint32_t val) |
| 970 | { |
| 971 | struct amdgpu_device *adev = info->dev->dev_private; |
| 972 | |
| 973 | WREG32_IO(reg, val); |
| 974 | } |
| 975 | |
| 976 | /** |
| 977 | * cail_ioreg_read - read IO register |
| 978 | * |
| 979 | * @info: atom card_info pointer |
| 980 | * @reg: IO register offset |
| 981 | * |
| 982 | * Provides an IO register accessor for the atom interpreter (r4xx+). |
| 983 | * Returns the value of the IO register. |
| 984 | */ |
| 985 | static uint32_t cail_ioreg_read(struct card_info *info, uint32_t reg) |
| 986 | { |
| 987 | struct amdgpu_device *adev = info->dev->dev_private; |
| 988 | uint32_t r; |
| 989 | |
| 990 | r = RREG32_IO(reg); |
| 991 | return r; |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * amdgpu_atombios_fini - free the driver info and callbacks for atombios |
| 996 | * |
| 997 | * @adev: amdgpu_device pointer |
| 998 | * |
| 999 | * Frees the driver info and register access callbacks for the ATOM |
| 1000 | * interpreter (r4xx+). |
| 1001 | * Called at driver shutdown. |
| 1002 | */ |
| 1003 | static void amdgpu_atombios_fini(struct amdgpu_device *adev) |
| 1004 | { |
Monk Liu | 89e0ec9f | 2016-05-27 19:34:11 +0800 | [diff] [blame] | 1005 | if (adev->mode_info.atom_context) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1006 | kfree(adev->mode_info.atom_context->scratch); |
Monk Liu | 89e0ec9f | 2016-05-27 19:34:11 +0800 | [diff] [blame] | 1007 | kfree(adev->mode_info.atom_context->iio); |
| 1008 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1009 | kfree(adev->mode_info.atom_context); |
| 1010 | adev->mode_info.atom_context = NULL; |
| 1011 | kfree(adev->mode_info.atom_card_info); |
| 1012 | adev->mode_info.atom_card_info = NULL; |
| 1013 | } |
| 1014 | |
| 1015 | /** |
| 1016 | * amdgpu_atombios_init - init the driver info and callbacks for atombios |
| 1017 | * |
| 1018 | * @adev: amdgpu_device pointer |
| 1019 | * |
| 1020 | * Initializes the driver info and register access callbacks for the |
| 1021 | * ATOM interpreter (r4xx+). |
| 1022 | * Returns 0 on sucess, -ENOMEM on failure. |
| 1023 | * Called at driver startup. |
| 1024 | */ |
| 1025 | static int amdgpu_atombios_init(struct amdgpu_device *adev) |
| 1026 | { |
| 1027 | struct card_info *atom_card_info = |
| 1028 | kzalloc(sizeof(struct card_info), GFP_KERNEL); |
| 1029 | |
| 1030 | if (!atom_card_info) |
| 1031 | return -ENOMEM; |
| 1032 | |
| 1033 | adev->mode_info.atom_card_info = atom_card_info; |
| 1034 | atom_card_info->dev = adev->ddev; |
| 1035 | atom_card_info->reg_read = cail_reg_read; |
| 1036 | atom_card_info->reg_write = cail_reg_write; |
| 1037 | /* needed for iio ops */ |
| 1038 | if (adev->rio_mem) { |
| 1039 | atom_card_info->ioreg_read = cail_ioreg_read; |
| 1040 | atom_card_info->ioreg_write = cail_ioreg_write; |
| 1041 | } else { |
Amber Lin | b64a18c | 2017-01-04 08:06:58 -0500 | [diff] [blame] | 1042 | DRM_INFO("PCI I/O BAR is not found. Using MMIO to access ATOM BIOS\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1043 | atom_card_info->ioreg_read = cail_reg_read; |
| 1044 | atom_card_info->ioreg_write = cail_reg_write; |
| 1045 | } |
| 1046 | atom_card_info->mc_read = cail_mc_read; |
| 1047 | atom_card_info->mc_write = cail_mc_write; |
| 1048 | atom_card_info->pll_read = cail_pll_read; |
| 1049 | atom_card_info->pll_write = cail_pll_write; |
| 1050 | |
| 1051 | adev->mode_info.atom_context = amdgpu_atom_parse(atom_card_info, adev->bios); |
| 1052 | if (!adev->mode_info.atom_context) { |
| 1053 | amdgpu_atombios_fini(adev); |
| 1054 | return -ENOMEM; |
| 1055 | } |
| 1056 | |
| 1057 | mutex_init(&adev->mode_info.atom_context->mutex); |
Alex Deucher | a5bde2f | 2016-09-23 16:23:41 -0400 | [diff] [blame] | 1058 | if (adev->is_atom_fw) { |
| 1059 | amdgpu_atomfirmware_scratch_regs_init(adev); |
| 1060 | amdgpu_atomfirmware_allocate_fb_scratch(adev); |
| 1061 | } else { |
| 1062 | amdgpu_atombios_scratch_regs_init(adev); |
| 1063 | amdgpu_atombios_allocate_fb_scratch(adev); |
| 1064 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1065 | return 0; |
| 1066 | } |
| 1067 | |
| 1068 | /* if we get transitioned to only one device, take VGA back */ |
| 1069 | /** |
| 1070 | * amdgpu_vga_set_decode - enable/disable vga decode |
| 1071 | * |
| 1072 | * @cookie: amdgpu_device pointer |
| 1073 | * @state: enable/disable vga decode |
| 1074 | * |
| 1075 | * Enable/disable vga decode (all asics). |
| 1076 | * Returns VGA resource flags. |
| 1077 | */ |
| 1078 | static unsigned int amdgpu_vga_set_decode(void *cookie, bool state) |
| 1079 | { |
| 1080 | struct amdgpu_device *adev = cookie; |
| 1081 | amdgpu_asic_set_vga_state(adev, state); |
| 1082 | if (state) |
| 1083 | return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM | |
| 1084 | VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1085 | else |
| 1086 | return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM; |
| 1087 | } |
| 1088 | |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1089 | static void amdgpu_check_block_size(struct amdgpu_device *adev) |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1090 | { |
| 1091 | /* defines number of bits in page table versus page directory, |
| 1092 | * a page is 4KB so we have 12 bits offset, minimum 9 bits in the |
| 1093 | * page table and the remaining bits are in the page directory */ |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1094 | if (amdgpu_vm_block_size == -1) |
| 1095 | return; |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1096 | |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1097 | if (amdgpu_vm_block_size < 9) { |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1098 | dev_warn(adev->dev, "VM page table size (%d) too small\n", |
| 1099 | amdgpu_vm_block_size); |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1100 | goto def_value; |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1101 | } |
| 1102 | |
| 1103 | if (amdgpu_vm_block_size > 24 || |
| 1104 | (amdgpu_vm_size * 1024) < (1ull << amdgpu_vm_block_size)) { |
| 1105 | dev_warn(adev->dev, "VM page table size (%d) too large\n", |
| 1106 | amdgpu_vm_block_size); |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1107 | goto def_value; |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1108 | } |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1109 | |
| 1110 | return; |
| 1111 | |
| 1112 | def_value: |
| 1113 | amdgpu_vm_block_size = -1; |
Chunming Zhou | a1adf8b | 2017-03-27 11:36:57 +0800 | [diff] [blame] | 1114 | } |
| 1115 | |
Zhang, Jerry | 83ca145 | 2017-03-29 16:08:31 +0800 | [diff] [blame] | 1116 | static void amdgpu_check_vm_size(struct amdgpu_device *adev) |
| 1117 | { |
Alex Deucher | 64dab07 | 2017-06-15 18:20:09 -0400 | [diff] [blame] | 1118 | /* no need to check the default value */ |
| 1119 | if (amdgpu_vm_size == -1) |
| 1120 | return; |
| 1121 | |
Alex Deucher | 7611750 | 2017-06-21 12:31:41 -0400 | [diff] [blame] | 1122 | if (!is_power_of_2(amdgpu_vm_size)) { |
Zhang, Jerry | 83ca145 | 2017-03-29 16:08:31 +0800 | [diff] [blame] | 1123 | dev_warn(adev->dev, "VM size (%d) must be a power of 2\n", |
| 1124 | amdgpu_vm_size); |
| 1125 | goto def_value; |
| 1126 | } |
| 1127 | |
| 1128 | if (amdgpu_vm_size < 1) { |
| 1129 | dev_warn(adev->dev, "VM size (%d) too small, min is 1GB\n", |
| 1130 | amdgpu_vm_size); |
| 1131 | goto def_value; |
| 1132 | } |
| 1133 | |
| 1134 | /* |
| 1135 | * Max GPUVM size for Cayman, SI, CI VI are 40 bits. |
| 1136 | */ |
| 1137 | if (amdgpu_vm_size > 1024) { |
| 1138 | dev_warn(adev->dev, "VM size (%d) too large, max is 1TB\n", |
| 1139 | amdgpu_vm_size); |
| 1140 | goto def_value; |
| 1141 | } |
| 1142 | |
| 1143 | return; |
| 1144 | |
| 1145 | def_value: |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1146 | amdgpu_vm_size = -1; |
Zhang, Jerry | 83ca145 | 2017-03-29 16:08:31 +0800 | [diff] [blame] | 1147 | } |
| 1148 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1149 | /** |
| 1150 | * amdgpu_check_arguments - validate module params |
| 1151 | * |
| 1152 | * @adev: amdgpu_device pointer |
| 1153 | * |
| 1154 | * Validates certain module parameters and updates |
| 1155 | * the associated values used by the driver (all asics). |
| 1156 | */ |
| 1157 | static void amdgpu_check_arguments(struct amdgpu_device *adev) |
| 1158 | { |
Chunming Zhou | 5b01123 | 2015-12-10 17:34:33 +0800 | [diff] [blame] | 1159 | if (amdgpu_sched_jobs < 4) { |
| 1160 | dev_warn(adev->dev, "sched jobs (%d) must be at least 4\n", |
| 1161 | amdgpu_sched_jobs); |
| 1162 | amdgpu_sched_jobs = 4; |
Alex Deucher | 7611750 | 2017-06-21 12:31:41 -0400 | [diff] [blame] | 1163 | } else if (!is_power_of_2(amdgpu_sched_jobs)){ |
Chunming Zhou | 5b01123 | 2015-12-10 17:34:33 +0800 | [diff] [blame] | 1164 | dev_warn(adev->dev, "sched jobs (%d) must be a power of 2\n", |
| 1165 | amdgpu_sched_jobs); |
| 1166 | amdgpu_sched_jobs = roundup_pow_of_two(amdgpu_sched_jobs); |
| 1167 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1168 | |
Christian König | f9321cc | 2017-07-07 13:44:05 +0200 | [diff] [blame] | 1169 | if (amdgpu_gart_size < 32) { |
| 1170 | /* gart size must be greater or equal to 32M */ |
| 1171 | dev_warn(adev->dev, "gart size (%d) too small\n", |
| 1172 | amdgpu_gart_size); |
| 1173 | amdgpu_gart_size = 32; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1174 | } |
| 1175 | |
Christian König | 36d3837 | 2017-07-07 13:17:45 +0200 | [diff] [blame] | 1176 | if (amdgpu_gtt_size != -1 && amdgpu_gtt_size < 32) { |
| 1177 | /* gtt size must be greater or equal to 32M */ |
| 1178 | dev_warn(adev->dev, "gtt size (%d) too small\n", |
| 1179 | amdgpu_gtt_size); |
| 1180 | amdgpu_gtt_size = -1; |
| 1181 | } |
| 1182 | |
Zhang, Jerry | 83ca145 | 2017-03-29 16:08:31 +0800 | [diff] [blame] | 1183 | amdgpu_check_vm_size(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1184 | |
Junwei Zhang | bab4fee | 2017-04-05 13:54:56 +0800 | [diff] [blame] | 1185 | amdgpu_check_block_size(adev); |
Christian König | 6a7f76e | 2016-08-24 15:51:49 +0200 | [diff] [blame] | 1186 | |
jimqu | 526bae3 | 2016-11-07 09:53:10 +0800 | [diff] [blame] | 1187 | if (amdgpu_vram_page_split != -1 && (amdgpu_vram_page_split < 16 || |
Alex Deucher | 7611750 | 2017-06-21 12:31:41 -0400 | [diff] [blame] | 1188 | !is_power_of_2(amdgpu_vram_page_split))) { |
Christian König | 6a7f76e | 2016-08-24 15:51:49 +0200 | [diff] [blame] | 1189 | dev_warn(adev->dev, "invalid VRAM page split (%d)\n", |
| 1190 | amdgpu_vram_page_split); |
| 1191 | amdgpu_vram_page_split = 1024; |
| 1192 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1193 | } |
| 1194 | |
| 1195 | /** |
| 1196 | * amdgpu_switcheroo_set_state - set switcheroo state |
| 1197 | * |
| 1198 | * @pdev: pci dev pointer |
Lukas Wunner | 1694467 | 2015-09-05 11:17:35 +0200 | [diff] [blame] | 1199 | * @state: vga_switcheroo state |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1200 | * |
| 1201 | * Callback for the switcheroo driver. Suspends or resumes the |
| 1202 | * the asics before or after it is powered up using ACPI methods. |
| 1203 | */ |
| 1204 | static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state) |
| 1205 | { |
| 1206 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 1207 | |
| 1208 | if (amdgpu_device_is_px(dev) && state == VGA_SWITCHEROO_OFF) |
| 1209 | return; |
| 1210 | |
| 1211 | if (state == VGA_SWITCHEROO_ON) { |
| 1212 | unsigned d3_delay = dev->pdev->d3_delay; |
| 1213 | |
Joe Perches | 7ca8529 | 2017-02-28 04:55:52 -0800 | [diff] [blame] | 1214 | pr_info("amdgpu: switched on\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1215 | /* don't suspend or resume card normally */ |
| 1216 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
| 1217 | |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 1218 | amdgpu_device_resume(dev, true, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1219 | |
| 1220 | dev->pdev->d3_delay = d3_delay; |
| 1221 | |
| 1222 | dev->switch_power_state = DRM_SWITCH_POWER_ON; |
| 1223 | drm_kms_helper_poll_enable(dev); |
| 1224 | } else { |
Joe Perches | 7ca8529 | 2017-02-28 04:55:52 -0800 | [diff] [blame] | 1225 | pr_info("amdgpu: switched off\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1226 | drm_kms_helper_poll_disable(dev); |
| 1227 | dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 1228 | amdgpu_device_suspend(dev, true, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1229 | dev->switch_power_state = DRM_SWITCH_POWER_OFF; |
| 1230 | } |
| 1231 | } |
| 1232 | |
| 1233 | /** |
| 1234 | * amdgpu_switcheroo_can_switch - see if switcheroo state can change |
| 1235 | * |
| 1236 | * @pdev: pci dev pointer |
| 1237 | * |
| 1238 | * Callback for the switcheroo driver. Check of the switcheroo |
| 1239 | * state can be changed. |
| 1240 | * Returns true if the state can be changed, false if not. |
| 1241 | */ |
| 1242 | static bool amdgpu_switcheroo_can_switch(struct pci_dev *pdev) |
| 1243 | { |
| 1244 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 1245 | |
| 1246 | /* |
| 1247 | * FIXME: open_count is protected by drm_global_mutex but that would lead to |
| 1248 | * locking inversion with the driver load path. And the access here is |
| 1249 | * completely racy anyway. So don't bother with locking for now. |
| 1250 | */ |
| 1251 | return dev->open_count == 0; |
| 1252 | } |
| 1253 | |
| 1254 | static const struct vga_switcheroo_client_ops amdgpu_switcheroo_ops = { |
| 1255 | .set_gpu_state = amdgpu_switcheroo_set_state, |
| 1256 | .reprobe = NULL, |
| 1257 | .can_switch = amdgpu_switcheroo_can_switch, |
| 1258 | }; |
| 1259 | |
| 1260 | int amdgpu_set_clockgating_state(struct amdgpu_device *adev, |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 1261 | enum amd_ip_block_type block_type, |
| 1262 | enum amd_clockgating_state state) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1263 | { |
| 1264 | int i, r = 0; |
| 1265 | |
| 1266 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1267 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | 9ecbe7f | 2016-06-23 11:53:12 -0400 | [diff] [blame] | 1268 | continue; |
Rex Zhu | c722865 | 2017-02-22 15:33:46 +0800 | [diff] [blame] | 1269 | if (adev->ip_blocks[i].version->type != block_type) |
| 1270 | continue; |
| 1271 | if (!adev->ip_blocks[i].version->funcs->set_clockgating_state) |
| 1272 | continue; |
| 1273 | r = adev->ip_blocks[i].version->funcs->set_clockgating_state( |
| 1274 | (void *)adev, state); |
| 1275 | if (r) |
| 1276 | DRM_ERROR("set_clockgating_state of IP block <%s> failed %d\n", |
| 1277 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1278 | } |
| 1279 | return r; |
| 1280 | } |
| 1281 | |
| 1282 | int amdgpu_set_powergating_state(struct amdgpu_device *adev, |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 1283 | enum amd_ip_block_type block_type, |
| 1284 | enum amd_powergating_state state) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1285 | { |
| 1286 | int i, r = 0; |
| 1287 | |
| 1288 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1289 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | 9ecbe7f | 2016-06-23 11:53:12 -0400 | [diff] [blame] | 1290 | continue; |
Rex Zhu | c722865 | 2017-02-22 15:33:46 +0800 | [diff] [blame] | 1291 | if (adev->ip_blocks[i].version->type != block_type) |
| 1292 | continue; |
| 1293 | if (!adev->ip_blocks[i].version->funcs->set_powergating_state) |
| 1294 | continue; |
| 1295 | r = adev->ip_blocks[i].version->funcs->set_powergating_state( |
| 1296 | (void *)adev, state); |
| 1297 | if (r) |
| 1298 | DRM_ERROR("set_powergating_state of IP block <%s> failed %d\n", |
| 1299 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1300 | } |
| 1301 | return r; |
| 1302 | } |
| 1303 | |
Huang Rui | 6cb2d4e | 2017-01-05 18:44:41 +0800 | [diff] [blame] | 1304 | void amdgpu_get_clockgating_state(struct amdgpu_device *adev, u32 *flags) |
| 1305 | { |
| 1306 | int i; |
| 1307 | |
| 1308 | for (i = 0; i < adev->num_ip_blocks; i++) { |
| 1309 | if (!adev->ip_blocks[i].status.valid) |
| 1310 | continue; |
| 1311 | if (adev->ip_blocks[i].version->funcs->get_clockgating_state) |
| 1312 | adev->ip_blocks[i].version->funcs->get_clockgating_state((void *)adev, flags); |
| 1313 | } |
| 1314 | } |
| 1315 | |
Alex Deucher | 5dbbb60 | 2016-06-23 11:41:04 -0400 | [diff] [blame] | 1316 | int amdgpu_wait_for_idle(struct amdgpu_device *adev, |
| 1317 | enum amd_ip_block_type block_type) |
| 1318 | { |
| 1319 | int i, r; |
| 1320 | |
| 1321 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1322 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | 9ecbe7f | 2016-06-23 11:53:12 -0400 | [diff] [blame] | 1323 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1324 | if (adev->ip_blocks[i].version->type == block_type) { |
| 1325 | r = adev->ip_blocks[i].version->funcs->wait_for_idle((void *)adev); |
Alex Deucher | 5dbbb60 | 2016-06-23 11:41:04 -0400 | [diff] [blame] | 1326 | if (r) |
| 1327 | return r; |
| 1328 | break; |
| 1329 | } |
| 1330 | } |
| 1331 | return 0; |
| 1332 | |
| 1333 | } |
| 1334 | |
| 1335 | bool amdgpu_is_idle(struct amdgpu_device *adev, |
| 1336 | enum amd_ip_block_type block_type) |
| 1337 | { |
| 1338 | int i; |
| 1339 | |
| 1340 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1341 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | 9ecbe7f | 2016-06-23 11:53:12 -0400 | [diff] [blame] | 1342 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1343 | if (adev->ip_blocks[i].version->type == block_type) |
| 1344 | return adev->ip_blocks[i].version->funcs->is_idle((void *)adev); |
Alex Deucher | 5dbbb60 | 2016-06-23 11:41:04 -0400 | [diff] [blame] | 1345 | } |
| 1346 | return true; |
| 1347 | |
| 1348 | } |
| 1349 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1350 | struct amdgpu_ip_block * amdgpu_get_ip_block(struct amdgpu_device *adev, |
| 1351 | enum amd_ip_block_type type) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1352 | { |
| 1353 | int i; |
| 1354 | |
| 1355 | for (i = 0; i < adev->num_ip_blocks; i++) |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1356 | if (adev->ip_blocks[i].version->type == type) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1357 | return &adev->ip_blocks[i]; |
| 1358 | |
| 1359 | return NULL; |
| 1360 | } |
| 1361 | |
| 1362 | /** |
| 1363 | * amdgpu_ip_block_version_cmp |
| 1364 | * |
| 1365 | * @adev: amdgpu_device pointer |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 1366 | * @type: enum amd_ip_block_type |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1367 | * @major: major version |
| 1368 | * @minor: minor version |
| 1369 | * |
| 1370 | * return 0 if equal or greater |
| 1371 | * return 1 if smaller or the ip_block doesn't exist |
| 1372 | */ |
| 1373 | int amdgpu_ip_block_version_cmp(struct amdgpu_device *adev, |
yanyang1 | 5fc3aee | 2015-05-22 14:39:35 -0400 | [diff] [blame] | 1374 | enum amd_ip_block_type type, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1375 | u32 major, u32 minor) |
| 1376 | { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1377 | struct amdgpu_ip_block *ip_block = amdgpu_get_ip_block(adev, type); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1378 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1379 | if (ip_block && ((ip_block->version->major > major) || |
| 1380 | ((ip_block->version->major == major) && |
| 1381 | (ip_block->version->minor >= minor)))) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1382 | return 0; |
| 1383 | |
| 1384 | return 1; |
| 1385 | } |
| 1386 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1387 | /** |
| 1388 | * amdgpu_ip_block_add |
| 1389 | * |
| 1390 | * @adev: amdgpu_device pointer |
| 1391 | * @ip_block_version: pointer to the IP to add |
| 1392 | * |
| 1393 | * Adds the IP block driver information to the collection of IPs |
| 1394 | * on the asic. |
| 1395 | */ |
| 1396 | int amdgpu_ip_block_add(struct amdgpu_device *adev, |
| 1397 | const struct amdgpu_ip_block_version *ip_block_version) |
| 1398 | { |
| 1399 | if (!ip_block_version) |
| 1400 | return -EINVAL; |
| 1401 | |
Huang Rui | a0bae35 | 2017-05-03 09:52:06 +0800 | [diff] [blame] | 1402 | DRM_DEBUG("add ip block number %d <%s>\n", adev->num_ip_blocks, |
| 1403 | ip_block_version->funcs->name); |
| 1404 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1405 | adev->ip_blocks[adev->num_ip_blocks++].version = ip_block_version; |
| 1406 | |
| 1407 | return 0; |
| 1408 | } |
| 1409 | |
Alex Deucher | 483ef98 | 2016-09-30 12:43:04 -0400 | [diff] [blame] | 1410 | static void amdgpu_device_enable_virtual_display(struct amdgpu_device *adev) |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 1411 | { |
| 1412 | adev->enable_virtual_display = false; |
| 1413 | |
| 1414 | if (amdgpu_virtual_display) { |
| 1415 | struct drm_device *ddev = adev->ddev; |
| 1416 | const char *pci_address_name = pci_name(ddev->pdev); |
Emily Deng | 0f66356 | 2016-09-30 13:02:18 -0400 | [diff] [blame] | 1417 | char *pciaddstr, *pciaddstr_tmp, *pciaddname_tmp, *pciaddname; |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 1418 | |
| 1419 | pciaddstr = kstrdup(amdgpu_virtual_display, GFP_KERNEL); |
| 1420 | pciaddstr_tmp = pciaddstr; |
Emily Deng | 0f66356 | 2016-09-30 13:02:18 -0400 | [diff] [blame] | 1421 | while ((pciaddname_tmp = strsep(&pciaddstr_tmp, ";"))) { |
| 1422 | pciaddname = strsep(&pciaddname_tmp, ","); |
Yintian Tao | 967de2a | 2017-01-22 15:16:51 +0800 | [diff] [blame] | 1423 | if (!strcmp("all", pciaddname) |
| 1424 | || !strcmp(pci_address_name, pciaddname)) { |
Emily Deng | 0f66356 | 2016-09-30 13:02:18 -0400 | [diff] [blame] | 1425 | long num_crtc; |
| 1426 | int res = -1; |
| 1427 | |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 1428 | adev->enable_virtual_display = true; |
Emily Deng | 0f66356 | 2016-09-30 13:02:18 -0400 | [diff] [blame] | 1429 | |
| 1430 | if (pciaddname_tmp) |
| 1431 | res = kstrtol(pciaddname_tmp, 10, |
| 1432 | &num_crtc); |
| 1433 | |
| 1434 | if (!res) { |
| 1435 | if (num_crtc < 1) |
| 1436 | num_crtc = 1; |
| 1437 | if (num_crtc > 6) |
| 1438 | num_crtc = 6; |
| 1439 | adev->mode_info.num_crtc = num_crtc; |
| 1440 | } else { |
| 1441 | adev->mode_info.num_crtc = 1; |
| 1442 | } |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 1443 | break; |
| 1444 | } |
| 1445 | } |
| 1446 | |
Emily Deng | 0f66356 | 2016-09-30 13:02:18 -0400 | [diff] [blame] | 1447 | DRM_INFO("virtual display string:%s, %s:virtual_display:%d, num_crtc:%d\n", |
| 1448 | amdgpu_virtual_display, pci_address_name, |
| 1449 | adev->enable_virtual_display, adev->mode_info.num_crtc); |
Emily Deng | 9accf2f | 2016-08-10 16:01:25 +0800 | [diff] [blame] | 1450 | |
| 1451 | kfree(pciaddstr); |
| 1452 | } |
| 1453 | } |
| 1454 | |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1455 | static int amdgpu_device_parse_gpu_info_fw(struct amdgpu_device *adev) |
| 1456 | { |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1457 | const char *chip_name; |
| 1458 | char fw_name[30]; |
| 1459 | int err; |
| 1460 | const struct gpu_info_firmware_header_v1_0 *hdr; |
| 1461 | |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 1462 | adev->firmware.gpu_info_fw = NULL; |
| 1463 | |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1464 | switch (adev->asic_type) { |
| 1465 | case CHIP_TOPAZ: |
| 1466 | case CHIP_TONGA: |
| 1467 | case CHIP_FIJI: |
| 1468 | case CHIP_POLARIS11: |
| 1469 | case CHIP_POLARIS10: |
| 1470 | case CHIP_POLARIS12: |
| 1471 | case CHIP_CARRIZO: |
| 1472 | case CHIP_STONEY: |
| 1473 | #ifdef CONFIG_DRM_AMDGPU_SI |
| 1474 | case CHIP_VERDE: |
| 1475 | case CHIP_TAHITI: |
| 1476 | case CHIP_PITCAIRN: |
| 1477 | case CHIP_OLAND: |
| 1478 | case CHIP_HAINAN: |
| 1479 | #endif |
| 1480 | #ifdef CONFIG_DRM_AMDGPU_CIK |
| 1481 | case CHIP_BONAIRE: |
| 1482 | case CHIP_HAWAII: |
| 1483 | case CHIP_KAVERI: |
| 1484 | case CHIP_KABINI: |
| 1485 | case CHIP_MULLINS: |
| 1486 | #endif |
| 1487 | default: |
| 1488 | return 0; |
| 1489 | case CHIP_VEGA10: |
| 1490 | chip_name = "vega10"; |
| 1491 | break; |
Alex Deucher | 2d2e5e7 | 2017-05-09 12:27:35 -0400 | [diff] [blame] | 1492 | case CHIP_RAVEN: |
| 1493 | chip_name = "raven"; |
| 1494 | break; |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1495 | } |
| 1496 | |
| 1497 | snprintf(fw_name, sizeof(fw_name), "amdgpu/%s_gpu_info.bin", chip_name); |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 1498 | err = request_firmware(&adev->firmware.gpu_info_fw, fw_name, adev->dev); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1499 | if (err) { |
| 1500 | dev_err(adev->dev, |
| 1501 | "Failed to load gpu_info firmware \"%s\"\n", |
| 1502 | fw_name); |
| 1503 | goto out; |
| 1504 | } |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 1505 | err = amdgpu_ucode_validate(adev->firmware.gpu_info_fw); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1506 | if (err) { |
| 1507 | dev_err(adev->dev, |
| 1508 | "Failed to validate gpu_info firmware \"%s\"\n", |
| 1509 | fw_name); |
| 1510 | goto out; |
| 1511 | } |
| 1512 | |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 1513 | hdr = (const struct gpu_info_firmware_header_v1_0 *)adev->firmware.gpu_info_fw->data; |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1514 | amdgpu_ucode_print_gpu_info_hdr(&hdr->header); |
| 1515 | |
| 1516 | switch (hdr->version_major) { |
| 1517 | case 1: |
| 1518 | { |
| 1519 | const struct gpu_info_firmware_v1_0 *gpu_info_fw = |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 1520 | (const struct gpu_info_firmware_v1_0 *)(adev->firmware.gpu_info_fw->data + |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1521 | le32_to_cpu(hdr->header.ucode_array_offset_bytes)); |
| 1522 | |
Alex Deucher | b5ab16b | 2017-05-11 19:09:49 -0400 | [diff] [blame] | 1523 | adev->gfx.config.max_shader_engines = le32_to_cpu(gpu_info_fw->gc_num_se); |
| 1524 | adev->gfx.config.max_cu_per_sh = le32_to_cpu(gpu_info_fw->gc_num_cu_per_sh); |
| 1525 | adev->gfx.config.max_sh_per_se = le32_to_cpu(gpu_info_fw->gc_num_sh_per_se); |
| 1526 | adev->gfx.config.max_backends_per_se = le32_to_cpu(gpu_info_fw->gc_num_rb_per_se); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1527 | adev->gfx.config.max_texture_channel_caches = |
Alex Deucher | b5ab16b | 2017-05-11 19:09:49 -0400 | [diff] [blame] | 1528 | le32_to_cpu(gpu_info_fw->gc_num_tccs); |
| 1529 | adev->gfx.config.max_gprs = le32_to_cpu(gpu_info_fw->gc_num_gprs); |
| 1530 | adev->gfx.config.max_gs_threads = le32_to_cpu(gpu_info_fw->gc_num_max_gs_thds); |
| 1531 | adev->gfx.config.gs_vgt_table_depth = le32_to_cpu(gpu_info_fw->gc_gs_table_depth); |
| 1532 | adev->gfx.config.gs_prim_buffer_depth = le32_to_cpu(gpu_info_fw->gc_gsprim_buff_depth); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1533 | adev->gfx.config.double_offchip_lds_buf = |
Alex Deucher | b5ab16b | 2017-05-11 19:09:49 -0400 | [diff] [blame] | 1534 | le32_to_cpu(gpu_info_fw->gc_double_offchip_lds_buffer); |
| 1535 | adev->gfx.cu_info.wave_front_size = le32_to_cpu(gpu_info_fw->gc_wave_size); |
Hawking Zhang | 51fd037 | 2017-06-09 22:30:52 +0800 | [diff] [blame] | 1536 | adev->gfx.cu_info.max_waves_per_simd = |
| 1537 | le32_to_cpu(gpu_info_fw->gc_max_waves_per_simd); |
| 1538 | adev->gfx.cu_info.max_scratch_slots_per_cu = |
| 1539 | le32_to_cpu(gpu_info_fw->gc_max_scratch_slots_per_cu); |
| 1540 | adev->gfx.cu_info.lds_size = le32_to_cpu(gpu_info_fw->gc_lds_size); |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1541 | break; |
| 1542 | } |
| 1543 | default: |
| 1544 | dev_err(adev->dev, |
| 1545 | "Unsupported gpu_info table %d\n", hdr->header.ucode_version); |
| 1546 | err = -EINVAL; |
| 1547 | goto out; |
| 1548 | } |
| 1549 | out: |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1550 | return err; |
| 1551 | } |
| 1552 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1553 | static int amdgpu_early_init(struct amdgpu_device *adev) |
| 1554 | { |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 1555 | int i, r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1556 | |
Alex Deucher | 483ef98 | 2016-09-30 12:43:04 -0400 | [diff] [blame] | 1557 | amdgpu_device_enable_virtual_display(adev); |
Emily Deng | a6be757 | 2016-08-08 11:37:50 +0800 | [diff] [blame] | 1558 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1559 | switch (adev->asic_type) { |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 1560 | case CHIP_TOPAZ: |
| 1561 | case CHIP_TONGA: |
David Zhang | 48299f9 | 2015-07-08 01:05:16 +0800 | [diff] [blame] | 1562 | case CHIP_FIJI: |
Flora Cui | 2cc0c0b | 2016-03-14 18:33:29 -0400 | [diff] [blame] | 1563 | case CHIP_POLARIS11: |
| 1564 | case CHIP_POLARIS10: |
Junwei Zhang | c4642a4 | 2016-12-14 15:32:28 -0500 | [diff] [blame] | 1565 | case CHIP_POLARIS12: |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 1566 | case CHIP_CARRIZO: |
Samuel Li | 39bb0c9 | 2015-10-08 16:31:43 -0400 | [diff] [blame] | 1567 | case CHIP_STONEY: |
| 1568 | if (adev->asic_type == CHIP_CARRIZO || adev->asic_type == CHIP_STONEY) |
Alex Deucher | aaa36a9 | 2015-04-20 17:31:14 -0400 | [diff] [blame] | 1569 | adev->family = AMDGPU_FAMILY_CZ; |
| 1570 | else |
| 1571 | adev->family = AMDGPU_FAMILY_VI; |
| 1572 | |
| 1573 | r = vi_set_ip_blocks(adev); |
| 1574 | if (r) |
| 1575 | return r; |
| 1576 | break; |
Ken Wang | 33f3480 | 2016-01-21 17:29:41 +0800 | [diff] [blame] | 1577 | #ifdef CONFIG_DRM_AMDGPU_SI |
| 1578 | case CHIP_VERDE: |
| 1579 | case CHIP_TAHITI: |
| 1580 | case CHIP_PITCAIRN: |
| 1581 | case CHIP_OLAND: |
| 1582 | case CHIP_HAINAN: |
Ken Wang | 295d0da | 2016-05-24 21:02:53 +0800 | [diff] [blame] | 1583 | adev->family = AMDGPU_FAMILY_SI; |
Ken Wang | 33f3480 | 2016-01-21 17:29:41 +0800 | [diff] [blame] | 1584 | r = si_set_ip_blocks(adev); |
| 1585 | if (r) |
| 1586 | return r; |
| 1587 | break; |
| 1588 | #endif |
Alex Deucher | a2e73f5 | 2015-04-20 17:09:27 -0400 | [diff] [blame] | 1589 | #ifdef CONFIG_DRM_AMDGPU_CIK |
| 1590 | case CHIP_BONAIRE: |
| 1591 | case CHIP_HAWAII: |
| 1592 | case CHIP_KAVERI: |
| 1593 | case CHIP_KABINI: |
| 1594 | case CHIP_MULLINS: |
| 1595 | if ((adev->asic_type == CHIP_BONAIRE) || (adev->asic_type == CHIP_HAWAII)) |
| 1596 | adev->family = AMDGPU_FAMILY_CI; |
| 1597 | else |
| 1598 | adev->family = AMDGPU_FAMILY_KV; |
| 1599 | |
| 1600 | r = cik_set_ip_blocks(adev); |
| 1601 | if (r) |
| 1602 | return r; |
| 1603 | break; |
| 1604 | #endif |
Chunming Zhou | 2ca8a5d | 2016-12-07 17:31:19 +0800 | [diff] [blame] | 1605 | case CHIP_VEGA10: |
| 1606 | case CHIP_RAVEN: |
| 1607 | if (adev->asic_type == CHIP_RAVEN) |
| 1608 | adev->family = AMDGPU_FAMILY_RV; |
| 1609 | else |
| 1610 | adev->family = AMDGPU_FAMILY_AI; |
Ken Wang | 460826e | 2017-03-06 14:53:16 -0500 | [diff] [blame] | 1611 | |
| 1612 | r = soc15_set_ip_blocks(adev); |
| 1613 | if (r) |
| 1614 | return r; |
| 1615 | break; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1616 | default: |
| 1617 | /* FIXME: not supported yet */ |
| 1618 | return -EINVAL; |
| 1619 | } |
| 1620 | |
Alex Deucher | e2a75f8 | 2017-04-27 16:58:01 -0400 | [diff] [blame] | 1621 | r = amdgpu_device_parse_gpu_info_fw(adev); |
| 1622 | if (r) |
| 1623 | return r; |
| 1624 | |
Xiangliang Yu | 3149d9d | 2017-01-12 15:14:36 +0800 | [diff] [blame] | 1625 | if (amdgpu_sriov_vf(adev)) { |
| 1626 | r = amdgpu_virt_request_full_gpu(adev, true); |
| 1627 | if (r) |
| 1628 | return r; |
| 1629 | } |
| 1630 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1631 | for (i = 0; i < adev->num_ip_blocks; i++) { |
| 1632 | if ((amdgpu_ip_block_mask & (1 << i)) == 0) { |
Huang Rui | ed8cf00 | 2017-05-03 09:40:17 +0800 | [diff] [blame] | 1633 | DRM_ERROR("disabled ip block: %d <%s>\n", |
| 1634 | i, adev->ip_blocks[i].version->funcs->name); |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1635 | adev->ip_blocks[i].status.valid = false; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1636 | } else { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1637 | if (adev->ip_blocks[i].version->funcs->early_init) { |
| 1638 | r = adev->ip_blocks[i].version->funcs->early_init((void *)adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1639 | if (r == -ENOENT) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1640 | adev->ip_blocks[i].status.valid = false; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1641 | } else if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1642 | DRM_ERROR("early_init of IP block <%s> failed %d\n", |
| 1643 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1644 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1645 | } else { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1646 | adev->ip_blocks[i].status.valid = true; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1647 | } |
Alex Deucher | 974e6b6 | 2015-07-10 13:59:44 -0400 | [diff] [blame] | 1648 | } else { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1649 | adev->ip_blocks[i].status.valid = true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1650 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1651 | } |
| 1652 | } |
| 1653 | |
Nicolai Hähnle | 395d1fb | 2016-06-02 12:32:07 +0200 | [diff] [blame] | 1654 | adev->cg_flags &= amdgpu_cg_mask; |
| 1655 | adev->pg_flags &= amdgpu_pg_mask; |
| 1656 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1657 | return 0; |
| 1658 | } |
| 1659 | |
| 1660 | static int amdgpu_init(struct amdgpu_device *adev) |
| 1661 | { |
| 1662 | int i, r; |
| 1663 | |
| 1664 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1665 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1666 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1667 | r = adev->ip_blocks[i].version->funcs->sw_init((void *)adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1668 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1669 | DRM_ERROR("sw_init of IP block <%s> failed %d\n", |
| 1670 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1671 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1672 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1673 | adev->ip_blocks[i].status.sw = true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1674 | /* need to do gmc hw init early so we can allocate gpu mem */ |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1675 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1676 | r = amdgpu_vram_scratch_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1677 | if (r) { |
| 1678 | DRM_ERROR("amdgpu_vram_scratch_init failed %d\n", r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1679 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1680 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1681 | r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1682 | if (r) { |
| 1683 | DRM_ERROR("hw_init %d failed %d\n", i, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1684 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1685 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1686 | r = amdgpu_wb_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1687 | if (r) { |
| 1688 | DRM_ERROR("amdgpu_wb_init failed %d\n", r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1689 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1690 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1691 | adev->ip_blocks[i].status.hw = true; |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame] | 1692 | |
| 1693 | /* right after GMC hw init, we create CSA */ |
| 1694 | if (amdgpu_sriov_vf(adev)) { |
| 1695 | r = amdgpu_allocate_static_csa(adev); |
| 1696 | if (r) { |
| 1697 | DRM_ERROR("allocate CSA failed %d\n", r); |
| 1698 | return r; |
| 1699 | } |
| 1700 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1705 | if (!adev->ip_blocks[i].status.sw) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1706 | continue; |
| 1707 | /* gmc hw init is done early */ |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1708 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1709 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1710 | r = adev->ip_blocks[i].version->funcs->hw_init((void *)adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1711 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1712 | DRM_ERROR("hw_init of IP block <%s> failed %d\n", |
| 1713 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1714 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1715 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1716 | adev->ip_blocks[i].status.hw = true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1717 | } |
| 1718 | |
| 1719 | return 0; |
| 1720 | } |
| 1721 | |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 1722 | static void amdgpu_fill_reset_magic(struct amdgpu_device *adev) |
| 1723 | { |
| 1724 | memcpy(adev->reset_magic, adev->gart.ptr, AMDGPU_RESET_MAGIC_NUM); |
| 1725 | } |
| 1726 | |
| 1727 | static bool amdgpu_check_vram_lost(struct amdgpu_device *adev) |
| 1728 | { |
| 1729 | return !!memcmp(adev->gart.ptr, adev->reset_magic, |
| 1730 | AMDGPU_RESET_MAGIC_NUM); |
| 1731 | } |
| 1732 | |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 1733 | static int amdgpu_late_set_cg_state(struct amdgpu_device *adev) |
| 1734 | { |
| 1735 | int i = 0, r; |
| 1736 | |
| 1737 | for (i = 0; i < adev->num_ip_blocks; i++) { |
| 1738 | if (!adev->ip_blocks[i].status.valid) |
| 1739 | continue; |
| 1740 | /* skip CG for VCE/UVD, it's handled specially */ |
| 1741 | if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD && |
| 1742 | adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) { |
| 1743 | /* enable clockgating to save power */ |
| 1744 | r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev, |
| 1745 | AMD_CG_STATE_GATE); |
| 1746 | if (r) { |
| 1747 | DRM_ERROR("set_clockgating_state(gate) of IP block <%s> failed %d\n", |
| 1748 | adev->ip_blocks[i].version->funcs->name, r); |
| 1749 | return r; |
| 1750 | } |
| 1751 | } |
| 1752 | } |
| 1753 | return 0; |
| 1754 | } |
| 1755 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1756 | static int amdgpu_late_init(struct amdgpu_device *adev) |
| 1757 | { |
| 1758 | int i = 0, r; |
| 1759 | |
| 1760 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1761 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1762 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1763 | if (adev->ip_blocks[i].version->funcs->late_init) { |
| 1764 | r = adev->ip_blocks[i].version->funcs->late_init((void *)adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1765 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1766 | DRM_ERROR("late_init of IP block <%s> failed %d\n", |
| 1767 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1768 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1769 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1770 | adev->ip_blocks[i].status.late_initialized = true; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1771 | } |
| 1772 | } |
| 1773 | |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 1774 | mod_delayed_work(system_wq, &adev->late_init_work, |
| 1775 | msecs_to_jiffies(AMDGPU_RESUME_MS)); |
| 1776 | |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 1777 | amdgpu_fill_reset_magic(adev); |
| 1778 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1779 | return 0; |
| 1780 | } |
| 1781 | |
| 1782 | static int amdgpu_fini(struct amdgpu_device *adev) |
| 1783 | { |
| 1784 | int i, r; |
| 1785 | |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1786 | /* need to disable SMC first */ |
| 1787 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1788 | if (!adev->ip_blocks[i].status.hw) |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1789 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1790 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) { |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1791 | /* ungate blocks before hw fini so that we can shutdown the blocks safely */ |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1792 | r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev, |
| 1793 | AMD_CG_STATE_UNGATE); |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1794 | if (r) { |
| 1795 | DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n", |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1796 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1797 | return r; |
| 1798 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1799 | r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev); |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1800 | /* XXX handle errors */ |
| 1801 | if (r) { |
| 1802 | DRM_DEBUG("hw_fini of IP block <%s> failed %d\n", |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1803 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1804 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1805 | adev->ip_blocks[i].status.hw = false; |
Alex Deucher | 3e96dbf | 2016-10-13 11:22:17 -0400 | [diff] [blame] | 1806 | break; |
| 1807 | } |
| 1808 | } |
| 1809 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1810 | for (i = adev->num_ip_blocks - 1; i >= 0; i--) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1811 | if (!adev->ip_blocks[i].status.hw) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1812 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1813 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1814 | amdgpu_wb_fini(adev); |
| 1815 | amdgpu_vram_scratch_fini(adev); |
| 1816 | } |
Rex Zhu | 8201a67 | 2016-11-24 21:44:44 +0800 | [diff] [blame] | 1817 | |
| 1818 | if (adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_UVD && |
| 1819 | adev->ip_blocks[i].version->type != AMD_IP_BLOCK_TYPE_VCE) { |
| 1820 | /* ungate blocks before hw fini so that we can shutdown the blocks safely */ |
| 1821 | r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev, |
| 1822 | AMD_CG_STATE_UNGATE); |
| 1823 | if (r) { |
| 1824 | DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n", |
| 1825 | adev->ip_blocks[i].version->funcs->name, r); |
| 1826 | return r; |
| 1827 | } |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1828 | } |
Rex Zhu | 8201a67 | 2016-11-24 21:44:44 +0800 | [diff] [blame] | 1829 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1830 | r = adev->ip_blocks[i].version->funcs->hw_fini((void *)adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1831 | /* XXX handle errors */ |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1832 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1833 | DRM_DEBUG("hw_fini of IP block <%s> failed %d\n", |
| 1834 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1835 | } |
Rex Zhu | 8201a67 | 2016-11-24 21:44:44 +0800 | [diff] [blame] | 1836 | |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1837 | adev->ip_blocks[i].status.hw = false; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1838 | } |
| 1839 | |
| 1840 | for (i = adev->num_ip_blocks - 1; i >= 0; i--) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1841 | if (!adev->ip_blocks[i].status.sw) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1842 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1843 | r = adev->ip_blocks[i].version->funcs->sw_fini((void *)adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1844 | /* XXX handle errors */ |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1845 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1846 | DRM_DEBUG("sw_fini of IP block <%s> failed %d\n", |
| 1847 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1848 | } |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1849 | adev->ip_blocks[i].status.sw = false; |
| 1850 | adev->ip_blocks[i].status.valid = false; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1851 | } |
| 1852 | |
Monk Liu | a6dcfd9 | 2016-05-19 14:36:34 +0800 | [diff] [blame] | 1853 | for (i = adev->num_ip_blocks - 1; i >= 0; i--) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1854 | if (!adev->ip_blocks[i].status.late_initialized) |
Grazvydas Ignotas | 8a2eef1 | 2016-10-03 00:06:44 +0300 | [diff] [blame] | 1855 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1856 | if (adev->ip_blocks[i].version->funcs->late_fini) |
| 1857 | adev->ip_blocks[i].version->funcs->late_fini((void *)adev); |
| 1858 | adev->ip_blocks[i].status.late_initialized = false; |
Monk Liu | a6dcfd9 | 2016-05-19 14:36:34 +0800 | [diff] [blame] | 1859 | } |
| 1860 | |
Xiangliang Yu | 3149d9d | 2017-01-12 15:14:36 +0800 | [diff] [blame] | 1861 | if (amdgpu_sriov_vf(adev)) { |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame] | 1862 | amdgpu_bo_free_kernel(&adev->virt.csa_obj, &adev->virt.csa_vmid0_addr, NULL); |
Xiangliang Yu | 3149d9d | 2017-01-12 15:14:36 +0800 | [diff] [blame] | 1863 | amdgpu_virt_release_full_gpu(adev, false); |
| 1864 | } |
Monk Liu | 2493664 | 2017-01-09 15:54:32 +0800 | [diff] [blame] | 1865 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1866 | return 0; |
| 1867 | } |
| 1868 | |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 1869 | static void amdgpu_late_init_func_handler(struct work_struct *work) |
| 1870 | { |
| 1871 | struct amdgpu_device *adev = |
| 1872 | container_of(work, struct amdgpu_device, late_init_work.work); |
| 1873 | amdgpu_late_set_cg_state(adev); |
| 1874 | } |
| 1875 | |
Alex Deucher | faefba9 | 2016-12-06 10:38:29 -0500 | [diff] [blame] | 1876 | int amdgpu_suspend(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1877 | { |
| 1878 | int i, r; |
| 1879 | |
Xiangliang Yu | e941ea9 | 2017-01-18 12:47:55 +0800 | [diff] [blame] | 1880 | if (amdgpu_sriov_vf(adev)) |
| 1881 | amdgpu_virt_request_full_gpu(adev, false); |
| 1882 | |
Flora Cui | c5a93a2 | 2016-02-26 10:45:25 +0800 | [diff] [blame] | 1883 | /* ungate SMC block first */ |
| 1884 | r = amdgpu_set_clockgating_state(adev, AMD_IP_BLOCK_TYPE_SMC, |
| 1885 | AMD_CG_STATE_UNGATE); |
| 1886 | if (r) { |
| 1887 | DRM_ERROR("set_clockgating_state(ungate) SMC failed %d\n",r); |
| 1888 | } |
| 1889 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1890 | for (i = adev->num_ip_blocks - 1; i >= 0; i--) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1891 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1892 | continue; |
| 1893 | /* ungate blocks so that suspend can properly shut them down */ |
Flora Cui | c5a93a2 | 2016-02-26 10:45:25 +0800 | [diff] [blame] | 1894 | if (i != AMD_IP_BLOCK_TYPE_SMC) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1895 | r = adev->ip_blocks[i].version->funcs->set_clockgating_state((void *)adev, |
| 1896 | AMD_CG_STATE_UNGATE); |
Flora Cui | c5a93a2 | 2016-02-26 10:45:25 +0800 | [diff] [blame] | 1897 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1898 | DRM_ERROR("set_clockgating_state(ungate) of IP block <%s> failed %d\n", |
| 1899 | adev->ip_blocks[i].version->funcs->name, r); |
Flora Cui | c5a93a2 | 2016-02-26 10:45:25 +0800 | [diff] [blame] | 1900 | } |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1901 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1902 | /* XXX handle errors */ |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1903 | r = adev->ip_blocks[i].version->funcs->suspend(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1904 | /* XXX handle errors */ |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1905 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1906 | DRM_ERROR("suspend of IP block <%s> failed %d\n", |
| 1907 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 1908 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1909 | } |
| 1910 | |
Xiangliang Yu | e941ea9 | 2017-01-18 12:47:55 +0800 | [diff] [blame] | 1911 | if (amdgpu_sriov_vf(adev)) |
| 1912 | amdgpu_virt_release_full_gpu(adev, false); |
| 1913 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1914 | return 0; |
| 1915 | } |
| 1916 | |
Monk Liu | e4f0fdc | 2017-02-09 11:55:49 +0800 | [diff] [blame] | 1917 | static int amdgpu_sriov_reinit_early(struct amdgpu_device *adev) |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1918 | { |
| 1919 | int i, r; |
| 1920 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1921 | static enum amd_ip_block_type ip_order[] = { |
| 1922 | AMD_IP_BLOCK_TYPE_GMC, |
| 1923 | AMD_IP_BLOCK_TYPE_COMMON, |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1924 | AMD_IP_BLOCK_TYPE_IH, |
| 1925 | }; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1926 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1927 | for (i = 0; i < ARRAY_SIZE(ip_order); i++) { |
| 1928 | int j; |
| 1929 | struct amdgpu_ip_block *block; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1930 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1931 | for (j = 0; j < adev->num_ip_blocks; j++) { |
| 1932 | block = &adev->ip_blocks[j]; |
| 1933 | |
| 1934 | if (block->version->type != ip_order[i] || |
| 1935 | !block->status.valid) |
| 1936 | continue; |
| 1937 | |
| 1938 | r = block->version->funcs->hw_init(adev); |
| 1939 | DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed"); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1940 | } |
| 1941 | } |
| 1942 | |
| 1943 | return 0; |
| 1944 | } |
| 1945 | |
Monk Liu | e4f0fdc | 2017-02-09 11:55:49 +0800 | [diff] [blame] | 1946 | static int amdgpu_sriov_reinit_late(struct amdgpu_device *adev) |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1947 | { |
| 1948 | int i, r; |
| 1949 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1950 | static enum amd_ip_block_type ip_order[] = { |
| 1951 | AMD_IP_BLOCK_TYPE_SMC, |
| 1952 | AMD_IP_BLOCK_TYPE_DCE, |
| 1953 | AMD_IP_BLOCK_TYPE_GFX, |
| 1954 | AMD_IP_BLOCK_TYPE_SDMA, |
| 1955 | AMD_IP_BLOCK_TYPE_VCE, |
| 1956 | }; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1957 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1958 | for (i = 0; i < ARRAY_SIZE(ip_order); i++) { |
| 1959 | int j; |
| 1960 | struct amdgpu_ip_block *block; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1961 | |
Monk Liu | 2cb681b | 2017-04-26 12:00:49 +0800 | [diff] [blame] | 1962 | for (j = 0; j < adev->num_ip_blocks; j++) { |
| 1963 | block = &adev->ip_blocks[j]; |
| 1964 | |
| 1965 | if (block->version->type != ip_order[i] || |
| 1966 | !block->status.valid) |
| 1967 | continue; |
| 1968 | |
| 1969 | r = block->version->funcs->hw_init(adev); |
| 1970 | DRM_INFO("RE-INIT: %s %s\n", block->version->funcs->name, r?"failed":"successed"); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 1971 | } |
| 1972 | } |
| 1973 | |
| 1974 | return 0; |
| 1975 | } |
| 1976 | |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 1977 | static int amdgpu_resume_phase1(struct amdgpu_device *adev) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1978 | { |
| 1979 | int i, r; |
| 1980 | |
| 1981 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 1982 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1983 | continue; |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 1984 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || |
| 1985 | adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || |
| 1986 | adev->ip_blocks[i].version->type == |
| 1987 | AMD_IP_BLOCK_TYPE_IH) { |
| 1988 | r = adev->ip_blocks[i].version->funcs->resume(adev); |
| 1989 | if (r) { |
| 1990 | DRM_ERROR("resume of IP block <%s> failed %d\n", |
| 1991 | adev->ip_blocks[i].version->funcs->name, r); |
| 1992 | return r; |
| 1993 | } |
| 1994 | } |
| 1995 | } |
| 1996 | |
| 1997 | return 0; |
| 1998 | } |
| 1999 | |
| 2000 | static int amdgpu_resume_phase2(struct amdgpu_device *adev) |
| 2001 | { |
| 2002 | int i, r; |
| 2003 | |
| 2004 | for (i = 0; i < adev->num_ip_blocks; i++) { |
| 2005 | if (!adev->ip_blocks[i].status.valid) |
| 2006 | continue; |
| 2007 | if (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_COMMON || |
| 2008 | adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC || |
| 2009 | adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_IH ) |
| 2010 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2011 | r = adev->ip_blocks[i].version->funcs->resume(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2012 | if (r) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2013 | DRM_ERROR("resume of IP block <%s> failed %d\n", |
| 2014 | adev->ip_blocks[i].version->funcs->name, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2015 | return r; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2016 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2017 | } |
| 2018 | |
| 2019 | return 0; |
| 2020 | } |
| 2021 | |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 2022 | static int amdgpu_resume(struct amdgpu_device *adev) |
| 2023 | { |
| 2024 | int r; |
| 2025 | |
| 2026 | r = amdgpu_resume_phase1(adev); |
| 2027 | if (r) |
| 2028 | return r; |
| 2029 | r = amdgpu_resume_phase2(adev); |
| 2030 | |
| 2031 | return r; |
| 2032 | } |
| 2033 | |
Monk Liu | 4e99a44 | 2016-03-31 13:26:59 +0800 | [diff] [blame] | 2034 | static void amdgpu_device_detect_sriov_bios(struct amdgpu_device *adev) |
Andres Rodriguez | 048765a | 2016-06-11 02:51:32 -0400 | [diff] [blame] | 2035 | { |
Alex Deucher | a5bde2f | 2016-09-23 16:23:41 -0400 | [diff] [blame] | 2036 | if (adev->is_atom_fw) { |
| 2037 | if (amdgpu_atomfirmware_gpu_supports_virtualization(adev)) |
| 2038 | adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS; |
| 2039 | } else { |
| 2040 | if (amdgpu_atombios_has_gpu_virtualization_table(adev)) |
| 2041 | adev->virt.caps |= AMDGPU_SRIOV_CAPS_SRIOV_VBIOS; |
| 2042 | } |
Andres Rodriguez | 048765a | 2016-06-11 02:51:32 -0400 | [diff] [blame] | 2043 | } |
| 2044 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2045 | /** |
| 2046 | * amdgpu_device_init - initialize the driver |
| 2047 | * |
| 2048 | * @adev: amdgpu_device pointer |
| 2049 | * @pdev: drm dev pointer |
| 2050 | * @pdev: pci dev pointer |
| 2051 | * @flags: driver flags |
| 2052 | * |
| 2053 | * Initializes the driver info and hw (all asics). |
| 2054 | * Returns 0 for success or an error on failure. |
| 2055 | * Called at driver startup. |
| 2056 | */ |
| 2057 | int amdgpu_device_init(struct amdgpu_device *adev, |
| 2058 | struct drm_device *ddev, |
| 2059 | struct pci_dev *pdev, |
| 2060 | uint32_t flags) |
| 2061 | { |
| 2062 | int r, i; |
| 2063 | bool runtime = false; |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 2064 | u32 max_MBps; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2065 | |
| 2066 | adev->shutdown = false; |
| 2067 | adev->dev = &pdev->dev; |
| 2068 | adev->ddev = ddev; |
| 2069 | adev->pdev = pdev; |
| 2070 | adev->flags = flags; |
Jammy Zhou | 2f7d10b | 2015-07-22 11:29:01 +0800 | [diff] [blame] | 2071 | adev->asic_type = flags & AMD_ASIC_MASK; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2072 | adev->usec_timeout = AMDGPU_MAX_USEC_TIMEOUT; |
Christian König | 6f02a69 | 2017-07-07 11:56:59 +0200 | [diff] [blame] | 2073 | adev->mc.gart_size = 512 * 1024 * 1024; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2074 | adev->accel_working = false; |
| 2075 | adev->num_rings = 0; |
| 2076 | adev->mman.buffer_funcs = NULL; |
| 2077 | adev->mman.buffer_funcs_ring = NULL; |
| 2078 | adev->vm_manager.vm_pte_funcs = NULL; |
Christian König | 2d55e45 | 2016-02-08 17:37:38 +0100 | [diff] [blame] | 2079 | adev->vm_manager.vm_pte_num_rings = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2080 | adev->gart.gart_funcs = NULL; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2081 | adev->fence_context = dma_fence_context_alloc(AMDGPU_MAX_RINGS); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2082 | |
| 2083 | adev->smc_rreg = &amdgpu_invalid_rreg; |
| 2084 | adev->smc_wreg = &amdgpu_invalid_wreg; |
| 2085 | adev->pcie_rreg = &amdgpu_invalid_rreg; |
| 2086 | adev->pcie_wreg = &amdgpu_invalid_wreg; |
Huang Rui | 36b9a95 | 2016-08-31 13:23:25 +0800 | [diff] [blame] | 2087 | adev->pciep_rreg = &amdgpu_invalid_rreg; |
| 2088 | adev->pciep_wreg = &amdgpu_invalid_wreg; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2089 | adev->uvd_ctx_rreg = &amdgpu_invalid_rreg; |
| 2090 | adev->uvd_ctx_wreg = &amdgpu_invalid_wreg; |
| 2091 | adev->didt_rreg = &amdgpu_invalid_rreg; |
| 2092 | adev->didt_wreg = &amdgpu_invalid_wreg; |
Rex Zhu | ccdbb20 | 2016-06-08 12:47:41 +0800 | [diff] [blame] | 2093 | adev->gc_cac_rreg = &amdgpu_invalid_rreg; |
| 2094 | adev->gc_cac_wreg = &amdgpu_invalid_wreg; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2095 | adev->audio_endpt_rreg = &amdgpu_block_invalid_rreg; |
| 2096 | adev->audio_endpt_wreg = &amdgpu_block_invalid_wreg; |
| 2097 | |
Rex Zhu | ccdbb20 | 2016-06-08 12:47:41 +0800 | [diff] [blame] | 2098 | |
Alex Deucher | 3e39ab9 | 2015-06-05 15:04:33 -0400 | [diff] [blame] | 2099 | DRM_INFO("initializing kernel modesetting (%s 0x%04X:0x%04X 0x%04X:0x%04X 0x%02X).\n", |
| 2100 | amdgpu_asic_name[adev->asic_type], pdev->vendor, pdev->device, |
| 2101 | pdev->subsystem_vendor, pdev->subsystem_device, pdev->revision); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2102 | |
| 2103 | /* mutex initialization are all done here so we |
| 2104 | * can recall function without having locking issues */ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2105 | atomic_set(&adev->irq.ih.lock, 0); |
Huang Rui | 0e5ca0d | 2017-03-03 18:37:23 -0500 | [diff] [blame] | 2106 | mutex_init(&adev->firmware.mutex); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2107 | mutex_init(&adev->pm.mutex); |
| 2108 | mutex_init(&adev->gfx.gpu_clock_mutex); |
| 2109 | mutex_init(&adev->srbm_mutex); |
| 2110 | mutex_init(&adev->grbm_idx_mutex); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2111 | mutex_init(&adev->mn_lock); |
| 2112 | hash_init(adev->mn_hash); |
| 2113 | |
| 2114 | amdgpu_check_arguments(adev); |
| 2115 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2116 | spin_lock_init(&adev->mmio_idx_lock); |
| 2117 | spin_lock_init(&adev->smc_idx_lock); |
| 2118 | spin_lock_init(&adev->pcie_idx_lock); |
| 2119 | spin_lock_init(&adev->uvd_ctx_idx_lock); |
| 2120 | spin_lock_init(&adev->didt_idx_lock); |
Rex Zhu | ccdbb20 | 2016-06-08 12:47:41 +0800 | [diff] [blame] | 2121 | spin_lock_init(&adev->gc_cac_idx_lock); |
Evan Quan | 16abb5d | 2017-07-04 09:21:50 +0800 | [diff] [blame] | 2122 | spin_lock_init(&adev->se_cac_idx_lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2123 | spin_lock_init(&adev->audio_endpt_idx_lock); |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 2124 | spin_lock_init(&adev->mm_stats.lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2125 | |
Chunming Zhou | 0c4e7fa | 2016-08-17 11:41:30 +0800 | [diff] [blame] | 2126 | INIT_LIST_HEAD(&adev->shadow_list); |
| 2127 | mutex_init(&adev->shadow_list_lock); |
| 2128 | |
Chunming Zhou | 5c1354b | 2016-08-30 16:13:10 +0800 | [diff] [blame] | 2129 | INIT_LIST_HEAD(&adev->gtt_list); |
| 2130 | spin_lock_init(&adev->gtt_list_lock); |
| 2131 | |
Andres Rodriguez | 795f281 | 2017-03-06 16:27:55 -0500 | [diff] [blame] | 2132 | INIT_LIST_HEAD(&adev->ring_lru_list); |
| 2133 | spin_lock_init(&adev->ring_lru_list_lock); |
| 2134 | |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 2135 | INIT_DELAYED_WORK(&adev->late_init_work, amdgpu_late_init_func_handler); |
| 2136 | |
Alex Xie | 0fa4955 | 2017-06-08 14:58:05 -0400 | [diff] [blame] | 2137 | /* Registers mapping */ |
| 2138 | /* TODO: block userspace mapping of io register */ |
Ken Wang | da69c161 | 2016-01-21 19:08:55 +0800 | [diff] [blame] | 2139 | if (adev->asic_type >= CHIP_BONAIRE) { |
| 2140 | adev->rmmio_base = pci_resource_start(adev->pdev, 5); |
| 2141 | adev->rmmio_size = pci_resource_len(adev->pdev, 5); |
| 2142 | } else { |
| 2143 | adev->rmmio_base = pci_resource_start(adev->pdev, 2); |
| 2144 | adev->rmmio_size = pci_resource_len(adev->pdev, 2); |
| 2145 | } |
Chunming Zhou | 5c1354b | 2016-08-30 16:13:10 +0800 | [diff] [blame] | 2146 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2147 | adev->rmmio = ioremap(adev->rmmio_base, adev->rmmio_size); |
| 2148 | if (adev->rmmio == NULL) { |
| 2149 | return -ENOMEM; |
| 2150 | } |
| 2151 | DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)adev->rmmio_base); |
| 2152 | DRM_INFO("register mmio size: %u\n", (unsigned)adev->rmmio_size); |
| 2153 | |
Ken Wang | da69c161 | 2016-01-21 19:08:55 +0800 | [diff] [blame] | 2154 | if (adev->asic_type >= CHIP_BONAIRE) |
| 2155 | /* doorbell bar mapping */ |
| 2156 | amdgpu_doorbell_init(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2157 | |
| 2158 | /* io port mapping */ |
| 2159 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 2160 | if (pci_resource_flags(adev->pdev, i) & IORESOURCE_IO) { |
| 2161 | adev->rio_mem_size = pci_resource_len(adev->pdev, i); |
| 2162 | adev->rio_mem = pci_iomap(adev->pdev, i, adev->rio_mem_size); |
| 2163 | break; |
| 2164 | } |
| 2165 | } |
| 2166 | if (adev->rio_mem == NULL) |
Amber Lin | b64a18c | 2017-01-04 08:06:58 -0500 | [diff] [blame] | 2167 | DRM_INFO("PCI I/O BAR is not found.\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2168 | |
| 2169 | /* early init functions */ |
| 2170 | r = amdgpu_early_init(adev); |
| 2171 | if (r) |
| 2172 | return r; |
| 2173 | |
| 2174 | /* if we have > 1 VGA cards, then disable the amdgpu VGA resources */ |
| 2175 | /* this will fail for cards that aren't VGA class devices, just |
| 2176 | * ignore it */ |
| 2177 | vga_client_register(adev->pdev, adev, NULL, amdgpu_vga_set_decode); |
| 2178 | |
| 2179 | if (amdgpu_runtime_pm == 1) |
| 2180 | runtime = true; |
Alex Deucher | e9bef45 | 2016-04-25 13:12:18 -0400 | [diff] [blame] | 2181 | if (amdgpu_device_is_px(ddev)) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2182 | runtime = true; |
Lukas Wunner | 84c8b22 | 2017-03-10 21:23:45 +0100 | [diff] [blame] | 2183 | if (!pci_is_thunderbolt_attached(adev->pdev)) |
| 2184 | vga_switcheroo_register_client(adev->pdev, |
| 2185 | &amdgpu_switcheroo_ops, runtime); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2186 | if (runtime) |
| 2187 | vga_switcheroo_init_domain_pm_ops(adev->dev, &adev->vga_pm_domain); |
| 2188 | |
| 2189 | /* Read BIOS */ |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2190 | if (!amdgpu_get_bios(adev)) { |
| 2191 | r = -EINVAL; |
| 2192 | goto failed; |
| 2193 | } |
Nils Wallménius | f7e9e9f | 2016-12-14 21:52:45 +0100 | [diff] [blame] | 2194 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2195 | r = amdgpu_atombios_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2196 | if (r) { |
| 2197 | dev_err(adev->dev, "amdgpu_atombios_init failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2198 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_INIT_FAIL, 0, 0); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2199 | goto failed; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2200 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2201 | |
Monk Liu | 4e99a44 | 2016-03-31 13:26:59 +0800 | [diff] [blame] | 2202 | /* detect if we are with an SRIOV vbios */ |
| 2203 | amdgpu_device_detect_sriov_bios(adev); |
Andres Rodriguez | 048765a | 2016-06-11 02:51:32 -0400 | [diff] [blame] | 2204 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2205 | /* Post card if necessary */ |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 2206 | if (amdgpu_vpost_needed(adev)) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2207 | if (!adev->bios) { |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 2208 | dev_err(adev->dev, "no vBIOS found\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2209 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_NO_VBIOS, 0, 0); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2210 | r = -EINVAL; |
| 2211 | goto failed; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2212 | } |
Monk Liu | bec8637 | 2016-09-14 19:38:08 +0800 | [diff] [blame] | 2213 | DRM_INFO("GPU posting now...\n"); |
Monk Liu | 4e99a44 | 2016-03-31 13:26:59 +0800 | [diff] [blame] | 2214 | r = amdgpu_atom_asic_init(adev->mode_info.atom_context); |
| 2215 | if (r) { |
| 2216 | dev_err(adev->dev, "gpu post error!\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2217 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_POST_ERROR, 0, 0); |
Monk Liu | 4e99a44 | 2016-03-31 13:26:59 +0800 | [diff] [blame] | 2218 | goto failed; |
| 2219 | } |
| 2220 | } else { |
| 2221 | DRM_INFO("GPU post is not needed\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2222 | } |
| 2223 | |
Alex Deucher | 88b64e9 | 2017-07-10 10:43:10 -0400 | [diff] [blame] | 2224 | if (adev->is_atom_fw) { |
| 2225 | /* Initialize clocks */ |
| 2226 | r = amdgpu_atomfirmware_get_clock_info(adev); |
| 2227 | if (r) { |
| 2228 | dev_err(adev->dev, "amdgpu_atomfirmware_get_clock_info failed\n"); |
| 2229 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0); |
| 2230 | goto failed; |
| 2231 | } |
| 2232 | } else { |
Alex Deucher | a5bde2f | 2016-09-23 16:23:41 -0400 | [diff] [blame] | 2233 | /* Initialize clocks */ |
| 2234 | r = amdgpu_atombios_get_clock_info(adev); |
| 2235 | if (r) { |
| 2236 | dev_err(adev->dev, "amdgpu_atombios_get_clock_info failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2237 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_ATOMBIOS_GET_CLOCK_FAIL, 0, 0); |
| 2238 | goto failed; |
Alex Deucher | a5bde2f | 2016-09-23 16:23:41 -0400 | [diff] [blame] | 2239 | } |
| 2240 | /* init i2c buses */ |
| 2241 | amdgpu_atombios_i2c_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2242 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2243 | |
| 2244 | /* Fence driver */ |
| 2245 | r = amdgpu_fence_driver_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2246 | if (r) { |
| 2247 | dev_err(adev->dev, "amdgpu_fence_driver_init failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2248 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_FENCE_INIT_FAIL, 0, 0); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2249 | goto failed; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2250 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2251 | |
| 2252 | /* init the mode config */ |
| 2253 | drm_mode_config_init(adev->ddev); |
| 2254 | |
| 2255 | r = amdgpu_init(adev); |
| 2256 | if (r) { |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2257 | dev_err(adev->dev, "amdgpu_init failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2258 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_INIT_FAIL, 0, 0); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2259 | amdgpu_fini(adev); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2260 | goto failed; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2261 | } |
| 2262 | |
| 2263 | adev->accel_working = true; |
| 2264 | |
Alex Xie | e59c020 | 2017-06-01 09:42:59 -0400 | [diff] [blame] | 2265 | amdgpu_vm_check_compute_bug(adev); |
| 2266 | |
Marek Olšák | 95844d2 | 2016-08-17 23:49:27 +0200 | [diff] [blame] | 2267 | /* Initialize the buffer migration limit. */ |
| 2268 | if (amdgpu_moverate >= 0) |
| 2269 | max_MBps = amdgpu_moverate; |
| 2270 | else |
| 2271 | max_MBps = 8; /* Allow 8 MB/s. */ |
| 2272 | /* Get a log2 for easy divisions. */ |
| 2273 | adev->mm_stats.log2_max_MBps = ilog2(max(1u, max_MBps)); |
| 2274 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2275 | r = amdgpu_ib_pool_init(adev); |
| 2276 | if (r) { |
| 2277 | dev_err(adev->dev, "IB initialization failed (%d).\n", r); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2278 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_IB_INIT_FAIL, 0, r); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2279 | goto failed; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2280 | } |
| 2281 | |
| 2282 | r = amdgpu_ib_ring_tests(adev); |
| 2283 | if (r) |
| 2284 | DRM_ERROR("ib ring test failed (%d).\n", r); |
| 2285 | |
Monk Liu | 9bc92b9 | 2017-02-08 17:38:13 +0800 | [diff] [blame] | 2286 | amdgpu_fbdev_init(adev); |
| 2287 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2288 | r = amdgpu_gem_debugfs_init(adev); |
Monk Liu | 3f14e62 | 2017-02-09 13:42:27 +0800 | [diff] [blame] | 2289 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2290 | DRM_ERROR("registering gem debugfs failed (%d).\n", r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2291 | |
| 2292 | r = amdgpu_debugfs_regs_init(adev); |
Monk Liu | 3f14e62 | 2017-02-09 13:42:27 +0800 | [diff] [blame] | 2293 | if (r) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2294 | DRM_ERROR("registering register debugfs failed (%d).\n", r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2295 | |
Huang Rui | 4f0955f | 2017-05-10 23:04:06 +0800 | [diff] [blame] | 2296 | r = amdgpu_debugfs_test_ib_ring_init(adev); |
| 2297 | if (r) |
| 2298 | DRM_ERROR("registering register test ib ring debugfs failed (%d).\n", r); |
| 2299 | |
Huang Rui | 50ab253 | 2016-06-12 15:51:09 +0800 | [diff] [blame] | 2300 | r = amdgpu_debugfs_firmware_init(adev); |
Monk Liu | 3f14e62 | 2017-02-09 13:42:27 +0800 | [diff] [blame] | 2301 | if (r) |
Huang Rui | 50ab253 | 2016-06-12 15:51:09 +0800 | [diff] [blame] | 2302 | DRM_ERROR("registering firmware debugfs failed (%d).\n", r); |
Huang Rui | 50ab253 | 2016-06-12 15:51:09 +0800 | [diff] [blame] | 2303 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2304 | if ((amdgpu_testing & 1)) { |
| 2305 | if (adev->accel_working) |
| 2306 | amdgpu_test_moves(adev); |
| 2307 | else |
| 2308 | DRM_INFO("amdgpu: acceleration disabled, skipping move tests\n"); |
| 2309 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2310 | if (amdgpu_benchmarking) { |
| 2311 | if (adev->accel_working) |
| 2312 | amdgpu_benchmark(adev, amdgpu_benchmarking); |
| 2313 | else |
| 2314 | DRM_INFO("amdgpu: acceleration disabled, skipping benchmarks\n"); |
| 2315 | } |
| 2316 | |
| 2317 | /* enable clockgating, etc. after ib tests, etc. since some blocks require |
| 2318 | * explicit gating rather than handling it automatically. |
| 2319 | */ |
| 2320 | r = amdgpu_late_init(adev); |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2321 | if (r) { |
| 2322 | dev_err(adev->dev, "amdgpu_late_init failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2323 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_AMDGPU_LATE_INIT_FAIL, 0, r); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2324 | goto failed; |
Alex Deucher | 2c1a278 | 2015-12-07 17:02:53 -0500 | [diff] [blame] | 2325 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2326 | |
| 2327 | return 0; |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2328 | |
| 2329 | failed: |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 2330 | amdgpu_vf_error_trans_all(adev); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2331 | if (runtime) |
| 2332 | vga_switcheroo_fini_domain_pm_ops(adev->dev); |
| 2333 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2334 | } |
| 2335 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2336 | /** |
| 2337 | * amdgpu_device_fini - tear down the driver |
| 2338 | * |
| 2339 | * @adev: amdgpu_device pointer |
| 2340 | * |
| 2341 | * Tear down the driver info (all asics). |
| 2342 | * Called at driver shutdown. |
| 2343 | */ |
| 2344 | void amdgpu_device_fini(struct amdgpu_device *adev) |
| 2345 | { |
| 2346 | int r; |
| 2347 | |
| 2348 | DRM_INFO("amdgpu: finishing device.\n"); |
| 2349 | adev->shutdown = true; |
Pixel Ding | db2c2a9 | 2017-04-25 16:47:42 +0800 | [diff] [blame] | 2350 | if (adev->mode_info.mode_config_initialized) |
| 2351 | drm_crtc_force_disable_all(adev->ddev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2352 | /* evict vram memory */ |
| 2353 | amdgpu_bo_evict_vram(adev); |
| 2354 | amdgpu_ib_pool_fini(adev); |
| 2355 | amdgpu_fence_driver_fini(adev); |
| 2356 | amdgpu_fbdev_fini(adev); |
| 2357 | r = amdgpu_fini(adev); |
Huang Rui | ab4fe3e | 2017-06-05 22:11:59 +0800 | [diff] [blame] | 2358 | if (adev->firmware.gpu_info_fw) { |
| 2359 | release_firmware(adev->firmware.gpu_info_fw); |
| 2360 | adev->firmware.gpu_info_fw = NULL; |
| 2361 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2362 | adev->accel_working = false; |
Shirish S | 2dc80b0 | 2017-05-25 10:05:25 +0530 | [diff] [blame] | 2363 | cancel_delayed_work_sync(&adev->late_init_work); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2364 | /* free i2c buses */ |
| 2365 | amdgpu_i2c_fini(adev); |
| 2366 | amdgpu_atombios_fini(adev); |
| 2367 | kfree(adev->bios); |
| 2368 | adev->bios = NULL; |
Lukas Wunner | 84c8b22 | 2017-03-10 21:23:45 +0100 | [diff] [blame] | 2369 | if (!pci_is_thunderbolt_attached(adev->pdev)) |
| 2370 | vga_switcheroo_unregister_client(adev->pdev); |
Alex Deucher | 83ba126 | 2016-06-03 18:21:41 -0400 | [diff] [blame] | 2371 | if (adev->flags & AMD_IS_PX) |
| 2372 | vga_switcheroo_fini_domain_pm_ops(adev->dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2373 | vga_client_register(adev->pdev, NULL, NULL, NULL); |
| 2374 | if (adev->rio_mem) |
| 2375 | pci_iounmap(adev->pdev, adev->rio_mem); |
| 2376 | adev->rio_mem = NULL; |
| 2377 | iounmap(adev->rmmio); |
| 2378 | adev->rmmio = NULL; |
Ken Wang | da69c161 | 2016-01-21 19:08:55 +0800 | [diff] [blame] | 2379 | if (adev->asic_type >= CHIP_BONAIRE) |
| 2380 | amdgpu_doorbell_fini(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2381 | amdgpu_debugfs_regs_cleanup(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | |
| 2385 | /* |
| 2386 | * Suspend & resume. |
| 2387 | */ |
| 2388 | /** |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 2389 | * amdgpu_device_suspend - initiate device suspend |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2390 | * |
| 2391 | * @pdev: drm dev pointer |
| 2392 | * @state: suspend state |
| 2393 | * |
| 2394 | * Puts the hw in the suspend state (all asics). |
| 2395 | * Returns 0 for success or an error on failure. |
| 2396 | * Called at driver suspend. |
| 2397 | */ |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 2398 | int amdgpu_device_suspend(struct drm_device *dev, bool suspend, bool fbcon) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2399 | { |
| 2400 | struct amdgpu_device *adev; |
| 2401 | struct drm_crtc *crtc; |
| 2402 | struct drm_connector *connector; |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 2403 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2404 | |
| 2405 | if (dev == NULL || dev->dev_private == NULL) { |
| 2406 | return -ENODEV; |
| 2407 | } |
| 2408 | |
| 2409 | adev = dev->dev_private; |
| 2410 | |
| 2411 | if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) |
| 2412 | return 0; |
| 2413 | |
| 2414 | drm_kms_helper_poll_disable(dev); |
| 2415 | |
| 2416 | /* turn off display hw */ |
Alex Deucher | 4c7fbc3 | 2015-09-23 14:32:06 -0400 | [diff] [blame] | 2417 | drm_modeset_lock_all(dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2418 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 2419 | drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF); |
| 2420 | } |
Alex Deucher | 4c7fbc3 | 2015-09-23 14:32:06 -0400 | [diff] [blame] | 2421 | drm_modeset_unlock_all(dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2422 | |
Yong Zhao | ba99770 | 2015-11-09 17:21:45 -0500 | [diff] [blame] | 2423 | amdgpu_amdkfd_suspend(adev); |
| 2424 | |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2425 | /* unpin the front buffers and cursors */ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2426 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2427 | struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2428 | struct amdgpu_framebuffer *rfb = to_amdgpu_framebuffer(crtc->primary->fb); |
| 2429 | struct amdgpu_bo *robj; |
| 2430 | |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2431 | if (amdgpu_crtc->cursor_bo) { |
| 2432 | struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo); |
Alex Xie | 7a6901d | 2017-04-24 13:52:41 -0400 | [diff] [blame] | 2433 | r = amdgpu_bo_reserve(aobj, true); |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2434 | if (r == 0) { |
| 2435 | amdgpu_bo_unpin(aobj); |
| 2436 | amdgpu_bo_unreserve(aobj); |
| 2437 | } |
| 2438 | } |
| 2439 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2440 | if (rfb == NULL || rfb->obj == NULL) { |
| 2441 | continue; |
| 2442 | } |
| 2443 | robj = gem_to_amdgpu_bo(rfb->obj); |
| 2444 | /* don't unpin kernel fb objects */ |
| 2445 | if (!amdgpu_fbdev_robj_is_fb(adev, robj)) { |
Alex Xie | 7a6901d | 2017-04-24 13:52:41 -0400 | [diff] [blame] | 2446 | r = amdgpu_bo_reserve(robj, true); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2447 | if (r == 0) { |
| 2448 | amdgpu_bo_unpin(robj); |
| 2449 | amdgpu_bo_unreserve(robj); |
| 2450 | } |
| 2451 | } |
| 2452 | } |
| 2453 | /* evict vram memory */ |
| 2454 | amdgpu_bo_evict_vram(adev); |
| 2455 | |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 2456 | amdgpu_fence_driver_suspend(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2457 | |
| 2458 | r = amdgpu_suspend(adev); |
| 2459 | |
Alex Deucher | a0a71e4 | 2016-10-10 12:41:36 -0400 | [diff] [blame] | 2460 | /* evict remaining vram memory |
| 2461 | * This second call to evict vram is to evict the gart page table |
| 2462 | * using the CPU. |
| 2463 | */ |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2464 | amdgpu_bo_evict_vram(adev); |
| 2465 | |
Alex Deucher | d05da0e | 2017-06-30 17:08:45 -0400 | [diff] [blame] | 2466 | amdgpu_atombios_scratch_regs_save(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2467 | pci_save_state(dev->pdev); |
| 2468 | if (suspend) { |
| 2469 | /* Shut down the device */ |
| 2470 | pci_disable_device(dev->pdev); |
| 2471 | pci_set_power_state(dev->pdev, PCI_D3hot); |
jimqu | 74b0b15 | 2016-09-07 17:09:12 +0800 | [diff] [blame] | 2472 | } else { |
| 2473 | r = amdgpu_asic_reset(adev); |
| 2474 | if (r) |
| 2475 | DRM_ERROR("amdgpu asic reset failed\n"); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2476 | } |
| 2477 | |
| 2478 | if (fbcon) { |
| 2479 | console_lock(); |
| 2480 | amdgpu_fbdev_set_suspend(adev, 1); |
| 2481 | console_unlock(); |
| 2482 | } |
| 2483 | return 0; |
| 2484 | } |
| 2485 | |
| 2486 | /** |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 2487 | * amdgpu_device_resume - initiate device resume |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2488 | * |
| 2489 | * @pdev: drm dev pointer |
| 2490 | * |
| 2491 | * Bring the hw back to operating state (all asics). |
| 2492 | * Returns 0 for success or an error on failure. |
| 2493 | * Called at driver resume. |
| 2494 | */ |
Alex Deucher | 810ddc3 | 2016-08-23 13:25:49 -0400 | [diff] [blame] | 2495 | int amdgpu_device_resume(struct drm_device *dev, bool resume, bool fbcon) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2496 | { |
| 2497 | struct drm_connector *connector; |
| 2498 | struct amdgpu_device *adev = dev->dev_private; |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2499 | struct drm_crtc *crtc; |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2500 | int r = 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2501 | |
| 2502 | if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) |
| 2503 | return 0; |
| 2504 | |
jimqu | 74b0b15 | 2016-09-07 17:09:12 +0800 | [diff] [blame] | 2505 | if (fbcon) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2506 | console_lock(); |
jimqu | 74b0b15 | 2016-09-07 17:09:12 +0800 | [diff] [blame] | 2507 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2508 | if (resume) { |
| 2509 | pci_set_power_state(dev->pdev, PCI_D0); |
| 2510 | pci_restore_state(dev->pdev); |
jimqu | 74b0b15 | 2016-09-07 17:09:12 +0800 | [diff] [blame] | 2511 | r = pci_enable_device(dev->pdev); |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2512 | if (r) |
| 2513 | goto unlock; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2514 | } |
Alex Deucher | d05da0e | 2017-06-30 17:08:45 -0400 | [diff] [blame] | 2515 | amdgpu_atombios_scratch_regs_restore(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2516 | |
| 2517 | /* post card */ |
Jim Qu | c836fec | 2017-02-10 15:59:59 +0800 | [diff] [blame] | 2518 | if (amdgpu_need_post(adev)) { |
jimqu | 74b0b15 | 2016-09-07 17:09:12 +0800 | [diff] [blame] | 2519 | r = amdgpu_atom_asic_init(adev->mode_info.atom_context); |
| 2520 | if (r) |
| 2521 | DRM_ERROR("amdgpu asic init failed\n"); |
| 2522 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2523 | |
| 2524 | r = amdgpu_resume(adev); |
Rex Zhu | e670721 | 2017-03-30 13:21:01 +0800 | [diff] [blame] | 2525 | if (r) { |
Flora Cui | ca19852 | 2016-02-04 15:10:08 +0800 | [diff] [blame] | 2526 | DRM_ERROR("amdgpu_resume failed (%d).\n", r); |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2527 | goto unlock; |
Rex Zhu | e670721 | 2017-03-30 13:21:01 +0800 | [diff] [blame] | 2528 | } |
Alex Deucher | 5ceb54c | 2015-08-05 12:41:48 -0400 | [diff] [blame] | 2529 | amdgpu_fence_driver_resume(adev); |
| 2530 | |
Flora Cui | ca19852 | 2016-02-04 15:10:08 +0800 | [diff] [blame] | 2531 | if (resume) { |
| 2532 | r = amdgpu_ib_ring_tests(adev); |
| 2533 | if (r) |
| 2534 | DRM_ERROR("ib ring test failed (%d).\n", r); |
| 2535 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2536 | |
| 2537 | r = amdgpu_late_init(adev); |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2538 | if (r) |
| 2539 | goto unlock; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2540 | |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2541 | /* pin cursors */ |
| 2542 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { |
| 2543 | struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); |
| 2544 | |
| 2545 | if (amdgpu_crtc->cursor_bo) { |
| 2546 | struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo); |
Alex Xie | 7a6901d | 2017-04-24 13:52:41 -0400 | [diff] [blame] | 2547 | r = amdgpu_bo_reserve(aobj, true); |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2548 | if (r == 0) { |
| 2549 | r = amdgpu_bo_pin(aobj, |
| 2550 | AMDGPU_GEM_DOMAIN_VRAM, |
| 2551 | &amdgpu_crtc->cursor_addr); |
| 2552 | if (r != 0) |
| 2553 | DRM_ERROR("Failed to pin cursor BO (%d)\n", r); |
| 2554 | amdgpu_bo_unreserve(aobj); |
| 2555 | } |
| 2556 | } |
| 2557 | } |
Yong Zhao | ba99770 | 2015-11-09 17:21:45 -0500 | [diff] [blame] | 2558 | r = amdgpu_amdkfd_resume(adev); |
| 2559 | if (r) |
| 2560 | return r; |
Alex Deucher | 756e688 | 2015-10-08 00:03:36 -0400 | [diff] [blame] | 2561 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2562 | /* blat the mode back in */ |
| 2563 | if (fbcon) { |
| 2564 | drm_helper_resume_force_mode(dev); |
| 2565 | /* turn on display hw */ |
Alex Deucher | 4c7fbc3 | 2015-09-23 14:32:06 -0400 | [diff] [blame] | 2566 | drm_modeset_lock_all(dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2567 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 2568 | drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON); |
| 2569 | } |
Alex Deucher | 4c7fbc3 | 2015-09-23 14:32:06 -0400 | [diff] [blame] | 2570 | drm_modeset_unlock_all(dev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2571 | } |
| 2572 | |
| 2573 | drm_kms_helper_poll_enable(dev); |
Lyude | 23a1a9e | 2016-07-18 11:41:37 -0400 | [diff] [blame] | 2574 | |
| 2575 | /* |
| 2576 | * Most of the connector probing functions try to acquire runtime pm |
| 2577 | * refs to ensure that the GPU is powered on when connector polling is |
| 2578 | * performed. Since we're calling this from a runtime PM callback, |
| 2579 | * trying to acquire rpm refs will cause us to deadlock. |
| 2580 | * |
| 2581 | * Since we're guaranteed to be holding the rpm lock, it's safe to |
| 2582 | * temporarily disable the rpm helpers so this doesn't deadlock us. |
| 2583 | */ |
| 2584 | #ifdef CONFIG_PM |
| 2585 | dev->dev->power.disable_depth++; |
| 2586 | #endif |
Alex Deucher | 54fb2a5 | 2015-11-24 14:30:56 -0500 | [diff] [blame] | 2587 | drm_helper_hpd_irq_event(dev); |
Lyude | 23a1a9e | 2016-07-18 11:41:37 -0400 | [diff] [blame] | 2588 | #ifdef CONFIG_PM |
| 2589 | dev->dev->power.disable_depth--; |
| 2590 | #endif |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2591 | |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2592 | if (fbcon) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2593 | amdgpu_fbdev_set_suspend(adev, 0); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2594 | |
Huang Rui | 03161a6 | 2017-04-13 16:12:26 +0800 | [diff] [blame] | 2595 | unlock: |
| 2596 | if (fbcon) |
| 2597 | console_unlock(); |
| 2598 | |
| 2599 | return r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2600 | } |
| 2601 | |
Chunming Zhou | 63fbf42 | 2016-07-15 11:19:20 +0800 | [diff] [blame] | 2602 | static bool amdgpu_check_soft_reset(struct amdgpu_device *adev) |
| 2603 | { |
| 2604 | int i; |
| 2605 | bool asic_hang = false; |
| 2606 | |
| 2607 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2608 | if (!adev->ip_blocks[i].status.valid) |
Chunming Zhou | 63fbf42 | 2016-07-15 11:19:20 +0800 | [diff] [blame] | 2609 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2610 | if (adev->ip_blocks[i].version->funcs->check_soft_reset) |
| 2611 | adev->ip_blocks[i].status.hang = |
| 2612 | adev->ip_blocks[i].version->funcs->check_soft_reset(adev); |
| 2613 | if (adev->ip_blocks[i].status.hang) { |
| 2614 | DRM_INFO("IP block:%s is hung!\n", adev->ip_blocks[i].version->funcs->name); |
Chunming Zhou | 63fbf42 | 2016-07-15 11:19:20 +0800 | [diff] [blame] | 2615 | asic_hang = true; |
| 2616 | } |
| 2617 | } |
| 2618 | return asic_hang; |
| 2619 | } |
| 2620 | |
Baoyou Xie | 4d44665 | 2016-09-18 22:09:35 +0800 | [diff] [blame] | 2621 | static int amdgpu_pre_soft_reset(struct amdgpu_device *adev) |
Chunming Zhou | d31a501 | 2016-07-18 10:04:34 +0800 | [diff] [blame] | 2622 | { |
| 2623 | int i, r = 0; |
| 2624 | |
| 2625 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2626 | if (!adev->ip_blocks[i].status.valid) |
Chunming Zhou | d31a501 | 2016-07-18 10:04:34 +0800 | [diff] [blame] | 2627 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2628 | if (adev->ip_blocks[i].status.hang && |
| 2629 | adev->ip_blocks[i].version->funcs->pre_soft_reset) { |
| 2630 | r = adev->ip_blocks[i].version->funcs->pre_soft_reset(adev); |
Chunming Zhou | d31a501 | 2016-07-18 10:04:34 +0800 | [diff] [blame] | 2631 | if (r) |
| 2632 | return r; |
| 2633 | } |
| 2634 | } |
| 2635 | |
| 2636 | return 0; |
| 2637 | } |
| 2638 | |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2639 | static bool amdgpu_need_full_reset(struct amdgpu_device *adev) |
| 2640 | { |
Alex Deucher | da146d3 | 2016-10-13 16:07:03 -0400 | [diff] [blame] | 2641 | int i; |
| 2642 | |
| 2643 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2644 | if (!adev->ip_blocks[i].status.valid) |
Alex Deucher | da146d3 | 2016-10-13 16:07:03 -0400 | [diff] [blame] | 2645 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2646 | if ((adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_GMC) || |
| 2647 | (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_SMC) || |
| 2648 | (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_ACP) || |
| 2649 | (adev->ip_blocks[i].version->type == AMD_IP_BLOCK_TYPE_DCE)) { |
| 2650 | if (adev->ip_blocks[i].status.hang) { |
Alex Deucher | da146d3 | 2016-10-13 16:07:03 -0400 | [diff] [blame] | 2651 | DRM_INFO("Some block need full reset!\n"); |
| 2652 | return true; |
| 2653 | } |
| 2654 | } |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2655 | } |
| 2656 | return false; |
| 2657 | } |
| 2658 | |
| 2659 | static int amdgpu_soft_reset(struct amdgpu_device *adev) |
| 2660 | { |
| 2661 | int i, r = 0; |
| 2662 | |
| 2663 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2664 | if (!adev->ip_blocks[i].status.valid) |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2665 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2666 | if (adev->ip_blocks[i].status.hang && |
| 2667 | adev->ip_blocks[i].version->funcs->soft_reset) { |
| 2668 | r = adev->ip_blocks[i].version->funcs->soft_reset(adev); |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2669 | if (r) |
| 2670 | return r; |
| 2671 | } |
| 2672 | } |
| 2673 | |
| 2674 | return 0; |
| 2675 | } |
| 2676 | |
| 2677 | static int amdgpu_post_soft_reset(struct amdgpu_device *adev) |
| 2678 | { |
| 2679 | int i, r = 0; |
| 2680 | |
| 2681 | for (i = 0; i < adev->num_ip_blocks; i++) { |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2682 | if (!adev->ip_blocks[i].status.valid) |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2683 | continue; |
Alex Deucher | a125510 | 2016-10-13 17:41:13 -0400 | [diff] [blame] | 2684 | if (adev->ip_blocks[i].status.hang && |
| 2685 | adev->ip_blocks[i].version->funcs->post_soft_reset) |
| 2686 | r = adev->ip_blocks[i].version->funcs->post_soft_reset(adev); |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2687 | if (r) |
| 2688 | return r; |
| 2689 | } |
| 2690 | |
| 2691 | return 0; |
| 2692 | } |
| 2693 | |
Chunming Zhou | 3ad81f1 | 2016-08-05 17:30:17 +0800 | [diff] [blame] | 2694 | bool amdgpu_need_backup(struct amdgpu_device *adev) |
| 2695 | { |
| 2696 | if (adev->flags & AMD_IS_APU) |
| 2697 | return false; |
| 2698 | |
| 2699 | return amdgpu_lockup_timeout > 0 ? true : false; |
| 2700 | } |
| 2701 | |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2702 | static int amdgpu_recover_vram_from_shadow(struct amdgpu_device *adev, |
| 2703 | struct amdgpu_ring *ring, |
| 2704 | struct amdgpu_bo *bo, |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2705 | struct dma_fence **fence) |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2706 | { |
| 2707 | uint32_t domain; |
| 2708 | int r; |
| 2709 | |
Roger.He | 23d2e50 | 2017-04-21 14:24:26 +0800 | [diff] [blame] | 2710 | if (!bo->shadow) |
| 2711 | return 0; |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2712 | |
Alex Xie | 1d28479 | 2017-04-24 13:53:04 -0400 | [diff] [blame] | 2713 | r = amdgpu_bo_reserve(bo, true); |
Roger.He | 23d2e50 | 2017-04-21 14:24:26 +0800 | [diff] [blame] | 2714 | if (r) |
| 2715 | return r; |
| 2716 | domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type); |
| 2717 | /* if bo has been evicted, then no need to recover */ |
| 2718 | if (domain == AMDGPU_GEM_DOMAIN_VRAM) { |
Roger.He | 8252131 | 2017-04-21 13:08:43 +0800 | [diff] [blame] | 2719 | r = amdgpu_bo_validate(bo->shadow); |
| 2720 | if (r) { |
| 2721 | DRM_ERROR("bo validate failed!\n"); |
| 2722 | goto err; |
| 2723 | } |
| 2724 | |
| 2725 | r = amdgpu_ttm_bind(&bo->shadow->tbo, &bo->shadow->tbo.mem); |
| 2726 | if (r) { |
| 2727 | DRM_ERROR("%p bind failed\n", bo->shadow); |
| 2728 | goto err; |
| 2729 | } |
| 2730 | |
Roger.He | 23d2e50 | 2017-04-21 14:24:26 +0800 | [diff] [blame] | 2731 | r = amdgpu_bo_restore_from_shadow(adev, ring, bo, |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2732 | NULL, fence, true); |
Roger.He | 23d2e50 | 2017-04-21 14:24:26 +0800 | [diff] [blame] | 2733 | if (r) { |
| 2734 | DRM_ERROR("recover page table failed!\n"); |
| 2735 | goto err; |
| 2736 | } |
| 2737 | } |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2738 | err: |
Roger.He | 23d2e50 | 2017-04-21 14:24:26 +0800 | [diff] [blame] | 2739 | amdgpu_bo_unreserve(bo); |
| 2740 | return r; |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2741 | } |
| 2742 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2743 | /** |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2744 | * amdgpu_sriov_gpu_reset - reset the asic |
| 2745 | * |
| 2746 | * @adev: amdgpu device pointer |
Monk Liu | 7225f87 | 2017-04-26 14:51:54 +0800 | [diff] [blame] | 2747 | * @job: which job trigger hang |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2748 | * |
| 2749 | * Attempt the reset the GPU if it has hung (all asics). |
| 2750 | * for SRIOV case. |
| 2751 | * Returns 0 for success or an error on failure. |
| 2752 | */ |
Monk Liu | 7225f87 | 2017-04-26 14:51:54 +0800 | [diff] [blame] | 2753 | int amdgpu_sriov_gpu_reset(struct amdgpu_device *adev, struct amdgpu_job *job) |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2754 | { |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2755 | int i, j, r = 0; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2756 | int resched; |
| 2757 | struct amdgpu_bo *bo, *tmp; |
| 2758 | struct amdgpu_ring *ring; |
| 2759 | struct dma_fence *fence = NULL, *next = NULL; |
| 2760 | |
Monk Liu | 147b598 | 2017-01-25 15:48:01 +0800 | [diff] [blame] | 2761 | mutex_lock(&adev->virt.lock_reset); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2762 | atomic_inc(&adev->gpu_reset_counter); |
Monk Liu | 1fb37a3 | 2017-01-26 15:36:37 +0800 | [diff] [blame] | 2763 | adev->gfx.in_reset = true; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2764 | |
| 2765 | /* block TTM */ |
| 2766 | resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev); |
| 2767 | |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2768 | /* we start from the ring trigger GPU hang */ |
| 2769 | j = job ? job->ring->idx : 0; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2770 | |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2771 | /* block scheduler */ |
| 2772 | for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) { |
| 2773 | ring = adev->rings[i % AMDGPU_MAX_RINGS]; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2774 | if (!ring || !ring->sched.thread) |
| 2775 | continue; |
| 2776 | |
| 2777 | kthread_park(ring->sched.thread); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2778 | |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2779 | if (job && j != i) |
| 2780 | continue; |
| 2781 | |
Monk Liu | 4f059ec | 2017-05-11 13:59:15 +0800 | [diff] [blame] | 2782 | /* here give the last chance to check if job removed from mirror-list |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2783 | * since we already pay some time on kthread_park */ |
Monk Liu | 4f059ec | 2017-05-11 13:59:15 +0800 | [diff] [blame] | 2784 | if (job && list_empty(&job->base.node)) { |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2785 | kthread_unpark(ring->sched.thread); |
| 2786 | goto give_up_reset; |
| 2787 | } |
| 2788 | |
| 2789 | if (amd_sched_invalidate_job(&job->base, amdgpu_job_hang_limit)) |
| 2790 | amd_sched_job_kickout(&job->base); |
| 2791 | |
| 2792 | /* only do job_reset on the hang ring if @job not NULL */ |
| 2793 | amd_sched_hw_job_reset(&ring->sched); |
| 2794 | |
| 2795 | /* after all hw jobs are reset, hw fence is meaningless, so force_completion */ |
| 2796 | amdgpu_fence_driver_force_completion_ring(ring); |
| 2797 | } |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2798 | |
| 2799 | /* request to take full control of GPU before re-initialization */ |
Monk Liu | 7225f87 | 2017-04-26 14:51:54 +0800 | [diff] [blame] | 2800 | if (job) |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2801 | amdgpu_virt_reset_gpu(adev); |
| 2802 | else |
| 2803 | amdgpu_virt_request_full_gpu(adev, true); |
| 2804 | |
| 2805 | |
| 2806 | /* Resume IP prior to SMC */ |
Monk Liu | e4f0fdc | 2017-02-09 11:55:49 +0800 | [diff] [blame] | 2807 | amdgpu_sriov_reinit_early(adev); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2808 | |
| 2809 | /* we need recover gart prior to run SMC/CP/SDMA resume */ |
| 2810 | amdgpu_ttm_recover_gart(adev); |
| 2811 | |
| 2812 | /* now we are okay to resume SMC/CP/SDMA */ |
Monk Liu | e4f0fdc | 2017-02-09 11:55:49 +0800 | [diff] [blame] | 2813 | amdgpu_sriov_reinit_late(adev); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2814 | |
| 2815 | amdgpu_irq_gpu_reset_resume_helper(adev); |
| 2816 | |
| 2817 | if (amdgpu_ib_ring_tests(adev)) |
| 2818 | dev_err(adev->dev, "[GPU_RESET] ib ring test failed (%d).\n", r); |
| 2819 | |
| 2820 | /* release full control of GPU after ib test */ |
| 2821 | amdgpu_virt_release_full_gpu(adev, true); |
| 2822 | |
| 2823 | DRM_INFO("recover vram bo from shadow\n"); |
| 2824 | |
| 2825 | ring = adev->mman.buffer_funcs_ring; |
| 2826 | mutex_lock(&adev->shadow_list_lock); |
| 2827 | list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) { |
Monk Liu | 236763d | 2017-05-01 16:15:31 +0800 | [diff] [blame] | 2828 | next = NULL; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2829 | amdgpu_recover_vram_from_shadow(adev, ring, bo, &next); |
| 2830 | if (fence) { |
| 2831 | r = dma_fence_wait(fence, false); |
| 2832 | if (r) { |
| 2833 | WARN(r, "recovery from shadow isn't completed\n"); |
| 2834 | break; |
| 2835 | } |
| 2836 | } |
| 2837 | |
| 2838 | dma_fence_put(fence); |
| 2839 | fence = next; |
| 2840 | } |
| 2841 | mutex_unlock(&adev->shadow_list_lock); |
| 2842 | |
| 2843 | if (fence) { |
| 2844 | r = dma_fence_wait(fence, false); |
| 2845 | if (r) |
| 2846 | WARN(r, "recovery from shadow isn't completed\n"); |
| 2847 | } |
| 2848 | dma_fence_put(fence); |
| 2849 | |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2850 | for (i = j; i < j + AMDGPU_MAX_RINGS; ++i) { |
| 2851 | ring = adev->rings[i % AMDGPU_MAX_RINGS]; |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2852 | if (!ring || !ring->sched.thread) |
| 2853 | continue; |
| 2854 | |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2855 | if (job && j != i) { |
| 2856 | kthread_unpark(ring->sched.thread); |
| 2857 | continue; |
| 2858 | } |
| 2859 | |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2860 | amd_sched_job_recovery(&ring->sched); |
| 2861 | kthread_unpark(ring->sched.thread); |
| 2862 | } |
| 2863 | |
| 2864 | drm_helper_resume_force_mode(adev->ddev); |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2865 | give_up_reset: |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2866 | ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched); |
| 2867 | if (r) { |
| 2868 | /* bad news, how to tell it to userspace ? */ |
| 2869 | dev_info(adev->dev, "GPU reset failed\n"); |
Monk Liu | 65781c7 | 2017-05-11 13:36:44 +0800 | [diff] [blame] | 2870 | } else { |
| 2871 | dev_info(adev->dev, "GPU reset successed!\n"); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2872 | } |
| 2873 | |
Monk Liu | 1fb37a3 | 2017-01-26 15:36:37 +0800 | [diff] [blame] | 2874 | adev->gfx.in_reset = false; |
Monk Liu | 147b598 | 2017-01-25 15:48:01 +0800 | [diff] [blame] | 2875 | mutex_unlock(&adev->virt.lock_reset); |
Monk Liu | a90ad3c | 2017-01-23 14:22:08 +0800 | [diff] [blame] | 2876 | return r; |
| 2877 | } |
| 2878 | |
| 2879 | /** |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2880 | * amdgpu_gpu_reset - reset the asic |
| 2881 | * |
| 2882 | * @adev: amdgpu device pointer |
| 2883 | * |
| 2884 | * Attempt the reset the GPU if it has hung (all asics). |
| 2885 | * Returns 0 for success or an error on failure. |
| 2886 | */ |
| 2887 | int amdgpu_gpu_reset(struct amdgpu_device *adev) |
| 2888 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2889 | int i, r; |
| 2890 | int resched; |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 2891 | bool need_full_reset, vram_lost = false; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2892 | |
Chunming Zhou | 63fbf42 | 2016-07-15 11:19:20 +0800 | [diff] [blame] | 2893 | if (!amdgpu_check_soft_reset(adev)) { |
| 2894 | DRM_INFO("No hardware hang detected. Did some blocks stall?\n"); |
| 2895 | return 0; |
| 2896 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2897 | |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 2898 | atomic_inc(&adev->gpu_reset_counter); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2899 | |
Chunming Zhou | a3c47d6 | 2016-06-30 16:44:41 +0800 | [diff] [blame] | 2900 | /* block TTM */ |
| 2901 | resched = ttm_bo_lock_delayed_workqueue(&adev->mman.bdev); |
| 2902 | |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 2903 | /* block scheduler */ |
| 2904 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { |
| 2905 | struct amdgpu_ring *ring = adev->rings[i]; |
| 2906 | |
Chunming Zhou | 5168775 | 2017-04-24 17:09:15 +0800 | [diff] [blame] | 2907 | if (!ring || !ring->sched.thread) |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 2908 | continue; |
| 2909 | kthread_park(ring->sched.thread); |
Chunming Zhou | aa1c890 | 2016-06-30 13:56:02 +0800 | [diff] [blame] | 2910 | amd_sched_hw_job_reset(&ring->sched); |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 2911 | } |
Chunming Zhou | 2200eda | 2016-06-30 16:53:02 +0800 | [diff] [blame] | 2912 | /* after all hw jobs are reset, hw fence is meaningless, so force_completion */ |
| 2913 | amdgpu_fence_driver_force_completion(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2914 | |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2915 | need_full_reset = amdgpu_need_full_reset(adev); |
| 2916 | |
| 2917 | if (!need_full_reset) { |
| 2918 | amdgpu_pre_soft_reset(adev); |
| 2919 | r = amdgpu_soft_reset(adev); |
| 2920 | amdgpu_post_soft_reset(adev); |
| 2921 | if (r || amdgpu_check_soft_reset(adev)) { |
| 2922 | DRM_INFO("soft reset failed, will fallback to full reset!\n"); |
| 2923 | need_full_reset = true; |
| 2924 | } |
| 2925 | } |
| 2926 | |
| 2927 | if (need_full_reset) { |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2928 | r = amdgpu_suspend(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2929 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 2930 | retry: |
Alex Deucher | d05da0e | 2017-06-30 17:08:45 -0400 | [diff] [blame] | 2931 | amdgpu_atombios_scratch_regs_save(adev); |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2932 | r = amdgpu_asic_reset(adev); |
Alex Deucher | d05da0e | 2017-06-30 17:08:45 -0400 | [diff] [blame] | 2933 | amdgpu_atombios_scratch_regs_restore(adev); |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2934 | /* post card */ |
| 2935 | amdgpu_atom_asic_init(adev->mode_info.atom_context); |
Alex Deucher | bfa9926 | 2016-01-15 11:59:48 -0500 | [diff] [blame] | 2936 | |
Chunming Zhou | 35d782f | 2016-07-15 15:57:13 +0800 | [diff] [blame] | 2937 | if (!r) { |
| 2938 | dev_info(adev->dev, "GPU reset succeeded, trying to resume\n"); |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 2939 | r = amdgpu_resume_phase1(adev); |
| 2940 | if (r) |
| 2941 | goto out; |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 2942 | vram_lost = amdgpu_check_vram_lost(adev); |
Chunming Zhou | f189213 | 2017-05-15 16:48:27 +0800 | [diff] [blame] | 2943 | if (vram_lost) { |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 2944 | DRM_ERROR("VRAM is lost!\n"); |
Chunming Zhou | f189213 | 2017-05-15 16:48:27 +0800 | [diff] [blame] | 2945 | atomic_inc(&adev->vram_lost_counter); |
| 2946 | } |
Chunming Zhou | 2c0d731 | 2016-08-30 16:36:25 +0800 | [diff] [blame] | 2947 | r = amdgpu_ttm_recover_gart(adev); |
| 2948 | if (r) |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 2949 | goto out; |
| 2950 | r = amdgpu_resume_phase2(adev); |
| 2951 | if (r) |
| 2952 | goto out; |
Chunming Zhou | 0c49e0b | 2017-05-15 14:20:00 +0800 | [diff] [blame] | 2953 | if (vram_lost) |
| 2954 | amdgpu_fill_reset_magic(adev); |
Chunming Zhou | 2c0d731 | 2016-08-30 16:36:25 +0800 | [diff] [blame] | 2955 | } |
Chunming Zhou | fcf0649 | 2017-05-05 10:33:33 +0800 | [diff] [blame] | 2956 | } |
| 2957 | out: |
| 2958 | if (!r) { |
| 2959 | amdgpu_irq_gpu_reset_resume_helper(adev); |
Chunming Zhou | 1f46508 | 2016-06-30 15:02:26 +0800 | [diff] [blame] | 2960 | r = amdgpu_ib_ring_tests(adev); |
| 2961 | if (r) { |
| 2962 | dev_err(adev->dev, "ib ring test failed (%d).\n", r); |
Chunming Zhou | 40019dc | 2016-06-29 16:01:49 +0800 | [diff] [blame] | 2963 | r = amdgpu_suspend(adev); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2964 | need_full_reset = true; |
Chunming Zhou | 40019dc | 2016-06-29 16:01:49 +0800 | [diff] [blame] | 2965 | goto retry; |
Chunming Zhou | 1f46508 | 2016-06-30 15:02:26 +0800 | [diff] [blame] | 2966 | } |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2967 | /** |
| 2968 | * recovery vm page tables, since we cannot depend on VRAM is |
| 2969 | * consistent after gpu full reset. |
| 2970 | */ |
| 2971 | if (need_full_reset && amdgpu_need_backup(adev)) { |
| 2972 | struct amdgpu_ring *ring = adev->mman.buffer_funcs_ring; |
| 2973 | struct amdgpu_bo *bo, *tmp; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2974 | struct dma_fence *fence = NULL, *next = NULL; |
Chunming Zhou | 1f46508 | 2016-06-30 15:02:26 +0800 | [diff] [blame] | 2975 | |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2976 | DRM_INFO("recover vram bo from shadow\n"); |
| 2977 | mutex_lock(&adev->shadow_list_lock); |
| 2978 | list_for_each_entry_safe(bo, tmp, &adev->shadow_list, shadow_list) { |
Monk Liu | 236763d | 2017-05-01 16:15:31 +0800 | [diff] [blame] | 2979 | next = NULL; |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2980 | amdgpu_recover_vram_from_shadow(adev, ring, bo, &next); |
| 2981 | if (fence) { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2982 | r = dma_fence_wait(fence, false); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2983 | if (r) { |
Monk Liu | 1d7b17b | 2017-01-22 18:52:56 +0800 | [diff] [blame] | 2984 | WARN(r, "recovery from shadow isn't completed\n"); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2985 | break; |
| 2986 | } |
| 2987 | } |
| 2988 | |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2989 | dma_fence_put(fence); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2990 | fence = next; |
| 2991 | } |
| 2992 | mutex_unlock(&adev->shadow_list_lock); |
| 2993 | if (fence) { |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2994 | r = dma_fence_wait(fence, false); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2995 | if (r) |
Monk Liu | 1d7b17b | 2017-01-22 18:52:56 +0800 | [diff] [blame] | 2996 | WARN(r, "recovery from shadow isn't completed\n"); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2997 | } |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 2998 | dma_fence_put(fence); |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 2999 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3000 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { |
| 3001 | struct amdgpu_ring *ring = adev->rings[i]; |
Chunming Zhou | 5168775 | 2017-04-24 17:09:15 +0800 | [diff] [blame] | 3002 | |
| 3003 | if (!ring || !ring->sched.thread) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3004 | continue; |
Chunming Zhou | 53cdccd | 2016-07-21 17:20:52 +0800 | [diff] [blame] | 3005 | |
Chunming Zhou | aa1c890 | 2016-06-30 13:56:02 +0800 | [diff] [blame] | 3006 | amd_sched_job_recovery(&ring->sched); |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 3007 | kthread_unpark(ring->sched.thread); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3008 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3009 | } else { |
Chunming Zhou | 2200eda | 2016-06-30 16:53:02 +0800 | [diff] [blame] | 3010 | dev_err(adev->dev, "asic resume failed (%d).\n", r); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 3011 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_ASIC_RESUME_FAIL, 0, r); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3012 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) { |
Chunming Zhou | 5168775 | 2017-04-24 17:09:15 +0800 | [diff] [blame] | 3013 | if (adev->rings[i] && adev->rings[i]->sched.thread) { |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 3014 | kthread_unpark(adev->rings[i]->sched.thread); |
Chunming Zhou | 0875dc9 | 2016-06-12 15:41:58 +0800 | [diff] [blame] | 3015 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3016 | } |
| 3017 | } |
| 3018 | |
| 3019 | drm_helper_resume_force_mode(adev->ddev); |
| 3020 | |
| 3021 | ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 3022 | if (r) { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3023 | /* bad news, how to tell it to userspace ? */ |
| 3024 | dev_info(adev->dev, "GPU reset failed\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 3025 | amdgpu_vf_error_put(AMDGIM_ERROR_VF_GPU_RESET_FAIL, 0, r); |
| 3026 | } |
| 3027 | else { |
Chunming Zhou | 6643be6 | 2017-05-05 10:50:09 +0800 | [diff] [blame] | 3028 | dev_info(adev->dev, "GPU reset successed!\n"); |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 3029 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3030 | |
Gavin Wan | 8904194 | 2017-06-23 13:55:15 -0400 | [diff] [blame] | 3031 | amdgpu_vf_error_trans_all(adev); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3032 | return r; |
| 3033 | } |
| 3034 | |
Alex Deucher | d0dd7f0 | 2015-11-11 19:45:06 -0500 | [diff] [blame] | 3035 | void amdgpu_get_pcie_info(struct amdgpu_device *adev) |
| 3036 | { |
| 3037 | u32 mask; |
| 3038 | int ret; |
| 3039 | |
Alex Deucher | cd474ba | 2016-02-04 10:21:23 -0500 | [diff] [blame] | 3040 | if (amdgpu_pcie_gen_cap) |
| 3041 | adev->pm.pcie_gen_mask = amdgpu_pcie_gen_cap; |
| 3042 | |
| 3043 | if (amdgpu_pcie_lane_cap) |
| 3044 | adev->pm.pcie_mlw_mask = amdgpu_pcie_lane_cap; |
| 3045 | |
| 3046 | /* covers APUs as well */ |
| 3047 | if (pci_is_root_bus(adev->pdev->bus)) { |
| 3048 | if (adev->pm.pcie_gen_mask == 0) |
| 3049 | adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK; |
| 3050 | if (adev->pm.pcie_mlw_mask == 0) |
| 3051 | adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK; |
Alex Deucher | d0dd7f0 | 2015-11-11 19:45:06 -0500 | [diff] [blame] | 3052 | return; |
Alex Deucher | d0dd7f0 | 2015-11-11 19:45:06 -0500 | [diff] [blame] | 3053 | } |
Alex Deucher | cd474ba | 2016-02-04 10:21:23 -0500 | [diff] [blame] | 3054 | |
| 3055 | if (adev->pm.pcie_gen_mask == 0) { |
| 3056 | ret = drm_pcie_get_speed_cap_mask(adev->ddev, &mask); |
| 3057 | if (!ret) { |
| 3058 | adev->pm.pcie_gen_mask = (CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN1 | |
| 3059 | CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN2 | |
| 3060 | CAIL_ASIC_PCIE_LINK_SPEED_SUPPORT_GEN3); |
| 3061 | |
| 3062 | if (mask & DRM_PCIE_SPEED_25) |
| 3063 | adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN1; |
| 3064 | if (mask & DRM_PCIE_SPEED_50) |
| 3065 | adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2; |
| 3066 | if (mask & DRM_PCIE_SPEED_80) |
| 3067 | adev->pm.pcie_gen_mask |= CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3; |
| 3068 | } else { |
| 3069 | adev->pm.pcie_gen_mask = AMDGPU_DEFAULT_PCIE_GEN_MASK; |
| 3070 | } |
| 3071 | } |
| 3072 | if (adev->pm.pcie_mlw_mask == 0) { |
| 3073 | ret = drm_pcie_get_max_link_width(adev->ddev, &mask); |
| 3074 | if (!ret) { |
| 3075 | switch (mask) { |
| 3076 | case 32: |
| 3077 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X32 | |
| 3078 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 | |
| 3079 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | |
| 3080 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | |
| 3081 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | |
| 3082 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3083 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3084 | break; |
| 3085 | case 16: |
| 3086 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X16 | |
| 3087 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | |
| 3088 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | |
| 3089 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | |
| 3090 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3091 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3092 | break; |
| 3093 | case 12: |
| 3094 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X12 | |
| 3095 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | |
| 3096 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | |
| 3097 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3098 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3099 | break; |
| 3100 | case 8: |
| 3101 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X8 | |
| 3102 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | |
| 3103 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3104 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3105 | break; |
| 3106 | case 4: |
| 3107 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X4 | |
| 3108 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3109 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3110 | break; |
| 3111 | case 2: |
| 3112 | adev->pm.pcie_mlw_mask = (CAIL_PCIE_LINK_WIDTH_SUPPORT_X2 | |
| 3113 | CAIL_PCIE_LINK_WIDTH_SUPPORT_X1); |
| 3114 | break; |
| 3115 | case 1: |
| 3116 | adev->pm.pcie_mlw_mask = CAIL_PCIE_LINK_WIDTH_SUPPORT_X1; |
| 3117 | break; |
| 3118 | default: |
| 3119 | break; |
| 3120 | } |
| 3121 | } else { |
| 3122 | adev->pm.pcie_mlw_mask = AMDGPU_DEFAULT_PCIE_MLW_MASK; |
Alex Deucher | d0dd7f0 | 2015-11-11 19:45:06 -0500 | [diff] [blame] | 3123 | } |
| 3124 | } |
| 3125 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3126 | |
| 3127 | /* |
| 3128 | * Debugfs |
| 3129 | */ |
| 3130 | int amdgpu_debugfs_add_files(struct amdgpu_device *adev, |
Nils Wallménius | 06ab683 | 2016-05-02 12:46:15 -0400 | [diff] [blame] | 3131 | const struct drm_info_list *files, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3132 | unsigned nfiles) |
| 3133 | { |
| 3134 | unsigned i; |
| 3135 | |
| 3136 | for (i = 0; i < adev->debugfs_count; i++) { |
| 3137 | if (adev->debugfs[i].files == files) { |
| 3138 | /* Already registered */ |
| 3139 | return 0; |
| 3140 | } |
| 3141 | } |
| 3142 | |
| 3143 | i = adev->debugfs_count + 1; |
| 3144 | if (i > AMDGPU_DEBUGFS_MAX_COMPONENTS) { |
| 3145 | DRM_ERROR("Reached maximum number of debugfs components.\n"); |
| 3146 | DRM_ERROR("Report so we increase " |
| 3147 | "AMDGPU_DEBUGFS_MAX_COMPONENTS.\n"); |
| 3148 | return -EINVAL; |
| 3149 | } |
| 3150 | adev->debugfs[adev->debugfs_count].files = files; |
| 3151 | adev->debugfs[adev->debugfs_count].num_files = nfiles; |
| 3152 | adev->debugfs_count = i; |
| 3153 | #if defined(CONFIG_DEBUG_FS) |
| 3154 | drm_debugfs_create_files(files, nfiles, |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3155 | adev->ddev->primary->debugfs_root, |
| 3156 | adev->ddev->primary); |
| 3157 | #endif |
| 3158 | return 0; |
| 3159 | } |
| 3160 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3161 | #if defined(CONFIG_DEBUG_FS) |
| 3162 | |
| 3163 | static ssize_t amdgpu_debugfs_regs_read(struct file *f, char __user *buf, |
| 3164 | size_t size, loff_t *pos) |
| 3165 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3166 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3167 | ssize_t result = 0; |
| 3168 | int r; |
Tom St Denis | bd12267 | 2016-07-28 09:39:22 -0400 | [diff] [blame] | 3169 | bool pm_pg_lock, use_bank; |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3170 | unsigned instance_bank, sh_bank, se_bank; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3171 | |
| 3172 | if (size & 0x3 || *pos & 0x3) |
| 3173 | return -EINVAL; |
| 3174 | |
Tom St Denis | bd12267 | 2016-07-28 09:39:22 -0400 | [diff] [blame] | 3175 | /* are we reading registers for which a PG lock is necessary? */ |
| 3176 | pm_pg_lock = (*pos >> 23) & 1; |
| 3177 | |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3178 | if (*pos & (1ULL << 62)) { |
| 3179 | se_bank = (*pos >> 24) & 0x3FF; |
| 3180 | sh_bank = (*pos >> 34) & 0x3FF; |
| 3181 | instance_bank = (*pos >> 44) & 0x3FF; |
Tom St Denis | 32977f9 | 2016-10-09 07:41:26 -0400 | [diff] [blame] | 3182 | |
| 3183 | if (se_bank == 0x3FF) |
| 3184 | se_bank = 0xFFFFFFFF; |
| 3185 | if (sh_bank == 0x3FF) |
| 3186 | sh_bank = 0xFFFFFFFF; |
| 3187 | if (instance_bank == 0x3FF) |
| 3188 | instance_bank = 0xFFFFFFFF; |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3189 | use_bank = 1; |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3190 | } else { |
| 3191 | use_bank = 0; |
| 3192 | } |
| 3193 | |
Tom St Denis | 801a6aa9a6 | 2017-03-15 05:34:25 -0400 | [diff] [blame] | 3194 | *pos &= (1UL << 22) - 1; |
Tom St Denis | bd12267 | 2016-07-28 09:39:22 -0400 | [diff] [blame] | 3195 | |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3196 | if (use_bank) { |
Tom St Denis | 32977f9 | 2016-10-09 07:41:26 -0400 | [diff] [blame] | 3197 | if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) || |
| 3198 | (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines)) |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3199 | return -EINVAL; |
| 3200 | mutex_lock(&adev->grbm_idx_mutex); |
| 3201 | amdgpu_gfx_select_se_sh(adev, se_bank, |
| 3202 | sh_bank, instance_bank); |
| 3203 | } |
| 3204 | |
Tom St Denis | bd12267 | 2016-07-28 09:39:22 -0400 | [diff] [blame] | 3205 | if (pm_pg_lock) |
| 3206 | mutex_lock(&adev->pm.mutex); |
| 3207 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3208 | while (size) { |
| 3209 | uint32_t value; |
| 3210 | |
| 3211 | if (*pos > adev->rmmio_size) |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3212 | goto end; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3213 | |
| 3214 | value = RREG32(*pos >> 2); |
| 3215 | r = put_user(value, (uint32_t *)buf); |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3216 | if (r) { |
| 3217 | result = r; |
| 3218 | goto end; |
| 3219 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3220 | |
| 3221 | result += 4; |
| 3222 | buf += 4; |
| 3223 | *pos += 4; |
| 3224 | size -= 4; |
| 3225 | } |
| 3226 | |
Tom St Denis | 56628159 | 2016-06-27 11:55:07 -0400 | [diff] [blame] | 3227 | end: |
| 3228 | if (use_bank) { |
| 3229 | amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff); |
| 3230 | mutex_unlock(&adev->grbm_idx_mutex); |
| 3231 | } |
| 3232 | |
Tom St Denis | bd12267 | 2016-07-28 09:39:22 -0400 | [diff] [blame] | 3233 | if (pm_pg_lock) |
| 3234 | mutex_unlock(&adev->pm.mutex); |
| 3235 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3236 | return result; |
| 3237 | } |
| 3238 | |
| 3239 | static ssize_t amdgpu_debugfs_regs_write(struct file *f, const char __user *buf, |
| 3240 | size_t size, loff_t *pos) |
| 3241 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3242 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3243 | ssize_t result = 0; |
| 3244 | int r; |
Tom St Denis | 394fdde | 2016-10-10 07:31:23 -0400 | [diff] [blame] | 3245 | bool pm_pg_lock, use_bank; |
| 3246 | unsigned instance_bank, sh_bank, se_bank; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3247 | |
| 3248 | if (size & 0x3 || *pos & 0x3) |
| 3249 | return -EINVAL; |
| 3250 | |
Tom St Denis | 394fdde | 2016-10-10 07:31:23 -0400 | [diff] [blame] | 3251 | /* are we reading registers for which a PG lock is necessary? */ |
| 3252 | pm_pg_lock = (*pos >> 23) & 1; |
| 3253 | |
| 3254 | if (*pos & (1ULL << 62)) { |
| 3255 | se_bank = (*pos >> 24) & 0x3FF; |
| 3256 | sh_bank = (*pos >> 34) & 0x3FF; |
| 3257 | instance_bank = (*pos >> 44) & 0x3FF; |
| 3258 | |
| 3259 | if (se_bank == 0x3FF) |
| 3260 | se_bank = 0xFFFFFFFF; |
| 3261 | if (sh_bank == 0x3FF) |
| 3262 | sh_bank = 0xFFFFFFFF; |
| 3263 | if (instance_bank == 0x3FF) |
| 3264 | instance_bank = 0xFFFFFFFF; |
| 3265 | use_bank = 1; |
| 3266 | } else { |
| 3267 | use_bank = 0; |
| 3268 | } |
| 3269 | |
Tom St Denis | 801a6aa9a6 | 2017-03-15 05:34:25 -0400 | [diff] [blame] | 3270 | *pos &= (1UL << 22) - 1; |
Tom St Denis | 394fdde | 2016-10-10 07:31:23 -0400 | [diff] [blame] | 3271 | |
| 3272 | if (use_bank) { |
| 3273 | if ((sh_bank != 0xFFFFFFFF && sh_bank >= adev->gfx.config.max_sh_per_se) || |
| 3274 | (se_bank != 0xFFFFFFFF && se_bank >= adev->gfx.config.max_shader_engines)) |
| 3275 | return -EINVAL; |
| 3276 | mutex_lock(&adev->grbm_idx_mutex); |
| 3277 | amdgpu_gfx_select_se_sh(adev, se_bank, |
| 3278 | sh_bank, instance_bank); |
| 3279 | } |
| 3280 | |
| 3281 | if (pm_pg_lock) |
| 3282 | mutex_lock(&adev->pm.mutex); |
| 3283 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3284 | while (size) { |
| 3285 | uint32_t value; |
| 3286 | |
| 3287 | if (*pos > adev->rmmio_size) |
| 3288 | return result; |
| 3289 | |
| 3290 | r = get_user(value, (uint32_t *)buf); |
| 3291 | if (r) |
| 3292 | return r; |
| 3293 | |
| 3294 | WREG32(*pos >> 2, value); |
| 3295 | |
| 3296 | result += 4; |
| 3297 | buf += 4; |
| 3298 | *pos += 4; |
| 3299 | size -= 4; |
| 3300 | } |
| 3301 | |
Tom St Denis | 394fdde | 2016-10-10 07:31:23 -0400 | [diff] [blame] | 3302 | if (use_bank) { |
| 3303 | amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff); |
| 3304 | mutex_unlock(&adev->grbm_idx_mutex); |
| 3305 | } |
| 3306 | |
| 3307 | if (pm_pg_lock) |
| 3308 | mutex_unlock(&adev->pm.mutex); |
| 3309 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3310 | return result; |
| 3311 | } |
| 3312 | |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3313 | static ssize_t amdgpu_debugfs_regs_pcie_read(struct file *f, char __user *buf, |
| 3314 | size_t size, loff_t *pos) |
| 3315 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3316 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3317 | ssize_t result = 0; |
| 3318 | int r; |
| 3319 | |
| 3320 | if (size & 0x3 || *pos & 0x3) |
| 3321 | return -EINVAL; |
| 3322 | |
| 3323 | while (size) { |
| 3324 | uint32_t value; |
| 3325 | |
| 3326 | value = RREG32_PCIE(*pos >> 2); |
| 3327 | r = put_user(value, (uint32_t *)buf); |
| 3328 | if (r) |
| 3329 | return r; |
| 3330 | |
| 3331 | result += 4; |
| 3332 | buf += 4; |
| 3333 | *pos += 4; |
| 3334 | size -= 4; |
| 3335 | } |
| 3336 | |
| 3337 | return result; |
| 3338 | } |
| 3339 | |
| 3340 | static ssize_t amdgpu_debugfs_regs_pcie_write(struct file *f, const char __user *buf, |
| 3341 | size_t size, loff_t *pos) |
| 3342 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3343 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3344 | ssize_t result = 0; |
| 3345 | int r; |
| 3346 | |
| 3347 | if (size & 0x3 || *pos & 0x3) |
| 3348 | return -EINVAL; |
| 3349 | |
| 3350 | while (size) { |
| 3351 | uint32_t value; |
| 3352 | |
| 3353 | r = get_user(value, (uint32_t *)buf); |
| 3354 | if (r) |
| 3355 | return r; |
| 3356 | |
| 3357 | WREG32_PCIE(*pos >> 2, value); |
| 3358 | |
| 3359 | result += 4; |
| 3360 | buf += 4; |
| 3361 | *pos += 4; |
| 3362 | size -= 4; |
| 3363 | } |
| 3364 | |
| 3365 | return result; |
| 3366 | } |
| 3367 | |
| 3368 | static ssize_t amdgpu_debugfs_regs_didt_read(struct file *f, char __user *buf, |
| 3369 | size_t size, loff_t *pos) |
| 3370 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3371 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3372 | ssize_t result = 0; |
| 3373 | int r; |
| 3374 | |
| 3375 | if (size & 0x3 || *pos & 0x3) |
| 3376 | return -EINVAL; |
| 3377 | |
| 3378 | while (size) { |
| 3379 | uint32_t value; |
| 3380 | |
| 3381 | value = RREG32_DIDT(*pos >> 2); |
| 3382 | r = put_user(value, (uint32_t *)buf); |
| 3383 | if (r) |
| 3384 | return r; |
| 3385 | |
| 3386 | result += 4; |
| 3387 | buf += 4; |
| 3388 | *pos += 4; |
| 3389 | size -= 4; |
| 3390 | } |
| 3391 | |
| 3392 | return result; |
| 3393 | } |
| 3394 | |
| 3395 | static ssize_t amdgpu_debugfs_regs_didt_write(struct file *f, const char __user *buf, |
| 3396 | size_t size, loff_t *pos) |
| 3397 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3398 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3399 | ssize_t result = 0; |
| 3400 | int r; |
| 3401 | |
| 3402 | if (size & 0x3 || *pos & 0x3) |
| 3403 | return -EINVAL; |
| 3404 | |
| 3405 | while (size) { |
| 3406 | uint32_t value; |
| 3407 | |
| 3408 | r = get_user(value, (uint32_t *)buf); |
| 3409 | if (r) |
| 3410 | return r; |
| 3411 | |
| 3412 | WREG32_DIDT(*pos >> 2, value); |
| 3413 | |
| 3414 | result += 4; |
| 3415 | buf += 4; |
| 3416 | *pos += 4; |
| 3417 | size -= 4; |
| 3418 | } |
| 3419 | |
| 3420 | return result; |
| 3421 | } |
| 3422 | |
| 3423 | static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf, |
| 3424 | size_t size, loff_t *pos) |
| 3425 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3426 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3427 | ssize_t result = 0; |
| 3428 | int r; |
| 3429 | |
| 3430 | if (size & 0x3 || *pos & 0x3) |
| 3431 | return -EINVAL; |
| 3432 | |
| 3433 | while (size) { |
| 3434 | uint32_t value; |
| 3435 | |
Tom St Denis | 6fc0dea | 2016-08-29 08:39:29 -0400 | [diff] [blame] | 3436 | value = RREG32_SMC(*pos); |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3437 | r = put_user(value, (uint32_t *)buf); |
| 3438 | if (r) |
| 3439 | return r; |
| 3440 | |
| 3441 | result += 4; |
| 3442 | buf += 4; |
| 3443 | *pos += 4; |
| 3444 | size -= 4; |
| 3445 | } |
| 3446 | |
| 3447 | return result; |
| 3448 | } |
| 3449 | |
| 3450 | static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user *buf, |
| 3451 | size_t size, loff_t *pos) |
| 3452 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3453 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3454 | ssize_t result = 0; |
| 3455 | int r; |
| 3456 | |
| 3457 | if (size & 0x3 || *pos & 0x3) |
| 3458 | return -EINVAL; |
| 3459 | |
| 3460 | while (size) { |
| 3461 | uint32_t value; |
| 3462 | |
| 3463 | r = get_user(value, (uint32_t *)buf); |
| 3464 | if (r) |
| 3465 | return r; |
| 3466 | |
Tom St Denis | 6fc0dea | 2016-08-29 08:39:29 -0400 | [diff] [blame] | 3467 | WREG32_SMC(*pos, value); |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3468 | |
| 3469 | result += 4; |
| 3470 | buf += 4; |
| 3471 | *pos += 4; |
| 3472 | size -= 4; |
| 3473 | } |
| 3474 | |
| 3475 | return result; |
| 3476 | } |
| 3477 | |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3478 | static ssize_t amdgpu_debugfs_gca_config_read(struct file *f, char __user *buf, |
| 3479 | size_t size, loff_t *pos) |
| 3480 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3481 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3482 | ssize_t result = 0; |
| 3483 | int r; |
| 3484 | uint32_t *config, no_regs = 0; |
| 3485 | |
| 3486 | if (size & 0x3 || *pos & 0x3) |
| 3487 | return -EINVAL; |
| 3488 | |
Markus Elfring | ecab766 | 2016-09-18 17:00:52 +0200 | [diff] [blame] | 3489 | config = kmalloc_array(256, sizeof(*config), GFP_KERNEL); |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3490 | if (!config) |
| 3491 | return -ENOMEM; |
| 3492 | |
| 3493 | /* version, increment each time something is added */ |
Tom St Denis | 9a99935 | 2017-01-18 13:01:25 -0500 | [diff] [blame] | 3494 | config[no_regs++] = 3; |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3495 | config[no_regs++] = adev->gfx.config.max_shader_engines; |
| 3496 | config[no_regs++] = adev->gfx.config.max_tile_pipes; |
| 3497 | config[no_regs++] = adev->gfx.config.max_cu_per_sh; |
| 3498 | config[no_regs++] = adev->gfx.config.max_sh_per_se; |
| 3499 | config[no_regs++] = adev->gfx.config.max_backends_per_se; |
| 3500 | config[no_regs++] = adev->gfx.config.max_texture_channel_caches; |
| 3501 | config[no_regs++] = adev->gfx.config.max_gprs; |
| 3502 | config[no_regs++] = adev->gfx.config.max_gs_threads; |
| 3503 | config[no_regs++] = adev->gfx.config.max_hw_contexts; |
| 3504 | config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_frontend; |
| 3505 | config[no_regs++] = adev->gfx.config.sc_prim_fifo_size_backend; |
| 3506 | config[no_regs++] = adev->gfx.config.sc_hiz_tile_fifo_size; |
| 3507 | config[no_regs++] = adev->gfx.config.sc_earlyz_tile_fifo_size; |
| 3508 | config[no_regs++] = adev->gfx.config.num_tile_pipes; |
| 3509 | config[no_regs++] = adev->gfx.config.backend_enable_mask; |
| 3510 | config[no_regs++] = adev->gfx.config.mem_max_burst_length_bytes; |
| 3511 | config[no_regs++] = adev->gfx.config.mem_row_size_in_kb; |
| 3512 | config[no_regs++] = adev->gfx.config.shader_engine_tile_size; |
| 3513 | config[no_regs++] = adev->gfx.config.num_gpus; |
| 3514 | config[no_regs++] = adev->gfx.config.multi_gpu_tile_size; |
| 3515 | config[no_regs++] = adev->gfx.config.mc_arb_ramcfg; |
| 3516 | config[no_regs++] = adev->gfx.config.gb_addr_config; |
| 3517 | config[no_regs++] = adev->gfx.config.num_rbs; |
| 3518 | |
Tom St Denis | 89a8f30 | 2016-08-12 15:14:31 -0400 | [diff] [blame] | 3519 | /* rev==1 */ |
| 3520 | config[no_regs++] = adev->rev_id; |
| 3521 | config[no_regs++] = adev->pg_flags; |
| 3522 | config[no_regs++] = adev->cg_flags; |
| 3523 | |
Tom St Denis | e9f11dc | 2016-08-17 12:00:51 -0400 | [diff] [blame] | 3524 | /* rev==2 */ |
| 3525 | config[no_regs++] = adev->family; |
| 3526 | config[no_regs++] = adev->external_rev_id; |
| 3527 | |
Tom St Denis | 9a99935 | 2017-01-18 13:01:25 -0500 | [diff] [blame] | 3528 | /* rev==3 */ |
| 3529 | config[no_regs++] = adev->pdev->device; |
| 3530 | config[no_regs++] = adev->pdev->revision; |
| 3531 | config[no_regs++] = adev->pdev->subsystem_device; |
| 3532 | config[no_regs++] = adev->pdev->subsystem_vendor; |
| 3533 | |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3534 | while (size && (*pos < no_regs * 4)) { |
| 3535 | uint32_t value; |
| 3536 | |
| 3537 | value = config[*pos >> 2]; |
| 3538 | r = put_user(value, (uint32_t *)buf); |
| 3539 | if (r) { |
| 3540 | kfree(config); |
| 3541 | return r; |
| 3542 | } |
| 3543 | |
| 3544 | result += 4; |
| 3545 | buf += 4; |
| 3546 | *pos += 4; |
| 3547 | size -= 4; |
| 3548 | } |
| 3549 | |
| 3550 | kfree(config); |
| 3551 | return result; |
| 3552 | } |
| 3553 | |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3554 | static ssize_t amdgpu_debugfs_sensor_read(struct file *f, char __user *buf, |
| 3555 | size_t size, loff_t *pos) |
| 3556 | { |
Al Viro | 4506309 | 2016-12-04 18:24:56 -0500 | [diff] [blame] | 3557 | struct amdgpu_device *adev = file_inode(f)->i_private; |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3558 | int idx, x, outsize, r, valuesize; |
| 3559 | uint32_t values[16]; |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3560 | |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3561 | if (size & 3 || *pos & 0x3) |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3562 | return -EINVAL; |
| 3563 | |
Samuel Pitoiset | 3cbc614 | 2017-02-15 19:32:29 +0100 | [diff] [blame] | 3564 | if (amdgpu_dpm == 0) |
| 3565 | return -EINVAL; |
| 3566 | |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3567 | /* convert offset to sensor number */ |
| 3568 | idx = *pos >> 2; |
| 3569 | |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3570 | valuesize = sizeof(values); |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3571 | if (adev->powerplay.pp_funcs && adev->powerplay.pp_funcs->read_sensor) |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3572 | r = adev->powerplay.pp_funcs->read_sensor(adev->powerplay.pp_handle, idx, &values[0], &valuesize); |
Samuel Pitoiset | 3cbc614 | 2017-02-15 19:32:29 +0100 | [diff] [blame] | 3573 | else if (adev->pm.funcs && adev->pm.funcs->read_sensor) |
| 3574 | r = adev->pm.funcs->read_sensor(adev, idx, &values[0], |
| 3575 | &valuesize); |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3576 | else |
| 3577 | return -EINVAL; |
| 3578 | |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3579 | if (size > valuesize) |
| 3580 | return -EINVAL; |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3581 | |
Tom St Denis | 9f8df7d | 2017-02-09 14:29:01 -0500 | [diff] [blame] | 3582 | outsize = 0; |
| 3583 | x = 0; |
| 3584 | if (!r) { |
| 3585 | while (size) { |
| 3586 | r = put_user(values[x++], (int32_t *)buf); |
| 3587 | buf += 4; |
| 3588 | size -= 4; |
| 3589 | outsize += 4; |
| 3590 | } |
| 3591 | } |
| 3592 | |
| 3593 | return !r ? outsize : r; |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3594 | } |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3595 | |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3596 | static ssize_t amdgpu_debugfs_wave_read(struct file *f, char __user *buf, |
| 3597 | size_t size, loff_t *pos) |
| 3598 | { |
| 3599 | struct amdgpu_device *adev = f->f_inode->i_private; |
| 3600 | int r, x; |
| 3601 | ssize_t result=0; |
Tom St Denis | 472259f | 2016-10-14 09:49:09 -0400 | [diff] [blame] | 3602 | uint32_t offset, se, sh, cu, wave, simd, data[32]; |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3603 | |
| 3604 | if (size & 3 || *pos & 3) |
| 3605 | return -EINVAL; |
| 3606 | |
| 3607 | /* decode offset */ |
| 3608 | offset = (*pos & 0x7F); |
| 3609 | se = ((*pos >> 7) & 0xFF); |
| 3610 | sh = ((*pos >> 15) & 0xFF); |
| 3611 | cu = ((*pos >> 23) & 0xFF); |
| 3612 | wave = ((*pos >> 31) & 0xFF); |
| 3613 | simd = ((*pos >> 37) & 0xFF); |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3614 | |
| 3615 | /* switch to the specific se/sh/cu */ |
| 3616 | mutex_lock(&adev->grbm_idx_mutex); |
| 3617 | amdgpu_gfx_select_se_sh(adev, se, sh, cu); |
| 3618 | |
| 3619 | x = 0; |
Tom St Denis | 472259f | 2016-10-14 09:49:09 -0400 | [diff] [blame] | 3620 | if (adev->gfx.funcs->read_wave_data) |
| 3621 | adev->gfx.funcs->read_wave_data(adev, simd, wave, data, &x); |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3622 | |
| 3623 | amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF); |
| 3624 | mutex_unlock(&adev->grbm_idx_mutex); |
| 3625 | |
Tom St Denis | 5ecfb3b | 2016-10-13 12:15:03 -0400 | [diff] [blame] | 3626 | if (!x) |
| 3627 | return -EINVAL; |
| 3628 | |
Tom St Denis | 472259f | 2016-10-14 09:49:09 -0400 | [diff] [blame] | 3629 | while (size && (offset < x * 4)) { |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3630 | uint32_t value; |
| 3631 | |
Tom St Denis | 472259f | 2016-10-14 09:49:09 -0400 | [diff] [blame] | 3632 | value = data[offset >> 2]; |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3633 | r = put_user(value, (uint32_t *)buf); |
| 3634 | if (r) |
| 3635 | return r; |
| 3636 | |
| 3637 | result += 4; |
| 3638 | buf += 4; |
Tom St Denis | 472259f | 2016-10-14 09:49:09 -0400 | [diff] [blame] | 3639 | offset += 4; |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3640 | size -= 4; |
| 3641 | } |
| 3642 | |
| 3643 | return result; |
| 3644 | } |
| 3645 | |
Tom St Denis | c5a60ce | 2016-12-05 11:39:19 -0500 | [diff] [blame] | 3646 | static ssize_t amdgpu_debugfs_gpr_read(struct file *f, char __user *buf, |
| 3647 | size_t size, loff_t *pos) |
| 3648 | { |
| 3649 | struct amdgpu_device *adev = f->f_inode->i_private; |
| 3650 | int r; |
| 3651 | ssize_t result = 0; |
| 3652 | uint32_t offset, se, sh, cu, wave, simd, thread, bank, *data; |
| 3653 | |
| 3654 | if (size & 3 || *pos & 3) |
| 3655 | return -EINVAL; |
| 3656 | |
| 3657 | /* decode offset */ |
| 3658 | offset = (*pos & 0xFFF); /* in dwords */ |
| 3659 | se = ((*pos >> 12) & 0xFF); |
| 3660 | sh = ((*pos >> 20) & 0xFF); |
| 3661 | cu = ((*pos >> 28) & 0xFF); |
| 3662 | wave = ((*pos >> 36) & 0xFF); |
| 3663 | simd = ((*pos >> 44) & 0xFF); |
| 3664 | thread = ((*pos >> 52) & 0xFF); |
| 3665 | bank = ((*pos >> 60) & 1); |
| 3666 | |
| 3667 | data = kmalloc_array(1024, sizeof(*data), GFP_KERNEL); |
| 3668 | if (!data) |
| 3669 | return -ENOMEM; |
| 3670 | |
| 3671 | /* switch to the specific se/sh/cu */ |
| 3672 | mutex_lock(&adev->grbm_idx_mutex); |
| 3673 | amdgpu_gfx_select_se_sh(adev, se, sh, cu); |
| 3674 | |
| 3675 | if (bank == 0) { |
| 3676 | if (adev->gfx.funcs->read_wave_vgprs) |
| 3677 | adev->gfx.funcs->read_wave_vgprs(adev, simd, wave, thread, offset, size>>2, data); |
| 3678 | } else { |
| 3679 | if (adev->gfx.funcs->read_wave_sgprs) |
| 3680 | adev->gfx.funcs->read_wave_sgprs(adev, simd, wave, offset, size>>2, data); |
| 3681 | } |
| 3682 | |
| 3683 | amdgpu_gfx_select_se_sh(adev, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF); |
| 3684 | mutex_unlock(&adev->grbm_idx_mutex); |
| 3685 | |
| 3686 | while (size) { |
| 3687 | uint32_t value; |
| 3688 | |
| 3689 | value = data[offset++]; |
| 3690 | r = put_user(value, (uint32_t *)buf); |
| 3691 | if (r) { |
| 3692 | result = r; |
| 3693 | goto err; |
| 3694 | } |
| 3695 | |
| 3696 | result += 4; |
| 3697 | buf += 4; |
| 3698 | size -= 4; |
| 3699 | } |
| 3700 | |
| 3701 | err: |
| 3702 | kfree(data); |
| 3703 | return result; |
| 3704 | } |
| 3705 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3706 | static const struct file_operations amdgpu_debugfs_regs_fops = { |
| 3707 | .owner = THIS_MODULE, |
| 3708 | .read = amdgpu_debugfs_regs_read, |
| 3709 | .write = amdgpu_debugfs_regs_write, |
| 3710 | .llseek = default_llseek |
| 3711 | }; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3712 | static const struct file_operations amdgpu_debugfs_regs_didt_fops = { |
| 3713 | .owner = THIS_MODULE, |
| 3714 | .read = amdgpu_debugfs_regs_didt_read, |
| 3715 | .write = amdgpu_debugfs_regs_didt_write, |
| 3716 | .llseek = default_llseek |
| 3717 | }; |
| 3718 | static const struct file_operations amdgpu_debugfs_regs_pcie_fops = { |
| 3719 | .owner = THIS_MODULE, |
| 3720 | .read = amdgpu_debugfs_regs_pcie_read, |
| 3721 | .write = amdgpu_debugfs_regs_pcie_write, |
| 3722 | .llseek = default_llseek |
| 3723 | }; |
| 3724 | static const struct file_operations amdgpu_debugfs_regs_smc_fops = { |
| 3725 | .owner = THIS_MODULE, |
| 3726 | .read = amdgpu_debugfs_regs_smc_read, |
| 3727 | .write = amdgpu_debugfs_regs_smc_write, |
| 3728 | .llseek = default_llseek |
| 3729 | }; |
| 3730 | |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3731 | static const struct file_operations amdgpu_debugfs_gca_config_fops = { |
| 3732 | .owner = THIS_MODULE, |
| 3733 | .read = amdgpu_debugfs_gca_config_read, |
| 3734 | .llseek = default_llseek |
| 3735 | }; |
| 3736 | |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3737 | static const struct file_operations amdgpu_debugfs_sensors_fops = { |
| 3738 | .owner = THIS_MODULE, |
| 3739 | .read = amdgpu_debugfs_sensor_read, |
| 3740 | .llseek = default_llseek |
| 3741 | }; |
| 3742 | |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3743 | static const struct file_operations amdgpu_debugfs_wave_fops = { |
| 3744 | .owner = THIS_MODULE, |
| 3745 | .read = amdgpu_debugfs_wave_read, |
| 3746 | .llseek = default_llseek |
| 3747 | }; |
Tom St Denis | c5a60ce | 2016-12-05 11:39:19 -0500 | [diff] [blame] | 3748 | static const struct file_operations amdgpu_debugfs_gpr_fops = { |
| 3749 | .owner = THIS_MODULE, |
| 3750 | .read = amdgpu_debugfs_gpr_read, |
| 3751 | .llseek = default_llseek |
| 3752 | }; |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3753 | |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3754 | static const struct file_operations *debugfs_regs[] = { |
| 3755 | &amdgpu_debugfs_regs_fops, |
| 3756 | &amdgpu_debugfs_regs_didt_fops, |
| 3757 | &amdgpu_debugfs_regs_pcie_fops, |
| 3758 | &amdgpu_debugfs_regs_smc_fops, |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3759 | &amdgpu_debugfs_gca_config_fops, |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3760 | &amdgpu_debugfs_sensors_fops, |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3761 | &amdgpu_debugfs_wave_fops, |
Tom St Denis | c5a60ce | 2016-12-05 11:39:19 -0500 | [diff] [blame] | 3762 | &amdgpu_debugfs_gpr_fops, |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3763 | }; |
| 3764 | |
| 3765 | static const char *debugfs_regs_names[] = { |
| 3766 | "amdgpu_regs", |
| 3767 | "amdgpu_regs_didt", |
| 3768 | "amdgpu_regs_pcie", |
| 3769 | "amdgpu_regs_smc", |
Tom St Denis | 1e05141 | 2016-06-27 09:57:18 -0400 | [diff] [blame] | 3770 | "amdgpu_gca_config", |
Tom St Denis | f2cdaf2 | 2016-09-15 10:08:44 -0400 | [diff] [blame] | 3771 | "amdgpu_sensors", |
Tom St Denis | 273d7aa | 2016-10-11 14:48:55 -0400 | [diff] [blame] | 3772 | "amdgpu_wave", |
Tom St Denis | c5a60ce | 2016-12-05 11:39:19 -0500 | [diff] [blame] | 3773 | "amdgpu_gpr", |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3774 | }; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3775 | |
| 3776 | static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev) |
| 3777 | { |
| 3778 | struct drm_minor *minor = adev->ddev->primary; |
| 3779 | struct dentry *ent, *root = minor->debugfs_root; |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3780 | unsigned i, j; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3781 | |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3782 | for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) { |
| 3783 | ent = debugfs_create_file(debugfs_regs_names[i], |
| 3784 | S_IFREG | S_IRUGO, root, |
| 3785 | adev, debugfs_regs[i]); |
| 3786 | if (IS_ERR(ent)) { |
| 3787 | for (j = 0; j < i; j++) { |
| 3788 | debugfs_remove(adev->debugfs_regs[i]); |
| 3789 | adev->debugfs_regs[i] = NULL; |
| 3790 | } |
| 3791 | return PTR_ERR(ent); |
| 3792 | } |
| 3793 | |
| 3794 | if (!i) |
| 3795 | i_size_write(ent->d_inode, adev->rmmio_size); |
| 3796 | adev->debugfs_regs[i] = ent; |
| 3797 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3798 | |
| 3799 | return 0; |
| 3800 | } |
| 3801 | |
| 3802 | static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) |
| 3803 | { |
Tom St Denis | adcec28 | 2016-04-15 13:08:44 -0400 | [diff] [blame] | 3804 | unsigned i; |
| 3805 | |
| 3806 | for (i = 0; i < ARRAY_SIZE(debugfs_regs); i++) { |
| 3807 | if (adev->debugfs_regs[i]) { |
| 3808 | debugfs_remove(adev->debugfs_regs[i]); |
| 3809 | adev->debugfs_regs[i] = NULL; |
| 3810 | } |
| 3811 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3812 | } |
| 3813 | |
Huang Rui | 4f0955f | 2017-05-10 23:04:06 +0800 | [diff] [blame] | 3814 | static int amdgpu_debugfs_test_ib(struct seq_file *m, void *data) |
| 3815 | { |
| 3816 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 3817 | struct drm_device *dev = node->minor->dev; |
| 3818 | struct amdgpu_device *adev = dev->dev_private; |
| 3819 | int r = 0, i; |
| 3820 | |
| 3821 | /* hold on the scheduler */ |
| 3822 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 3823 | struct amdgpu_ring *ring = adev->rings[i]; |
| 3824 | |
| 3825 | if (!ring || !ring->sched.thread) |
| 3826 | continue; |
| 3827 | kthread_park(ring->sched.thread); |
| 3828 | } |
| 3829 | |
| 3830 | seq_printf(m, "run ib test:\n"); |
| 3831 | r = amdgpu_ib_ring_tests(adev); |
| 3832 | if (r) |
| 3833 | seq_printf(m, "ib ring tests failed (%d).\n", r); |
| 3834 | else |
| 3835 | seq_printf(m, "ib ring tests passed.\n"); |
| 3836 | |
| 3837 | /* go on the scheduler */ |
| 3838 | for (i = 0; i < AMDGPU_MAX_RINGS; i++) { |
| 3839 | struct amdgpu_ring *ring = adev->rings[i]; |
| 3840 | |
| 3841 | if (!ring || !ring->sched.thread) |
| 3842 | continue; |
| 3843 | kthread_unpark(ring->sched.thread); |
| 3844 | } |
| 3845 | |
| 3846 | return 0; |
| 3847 | } |
| 3848 | |
| 3849 | static const struct drm_info_list amdgpu_debugfs_test_ib_ring_list[] = { |
| 3850 | {"amdgpu_test_ib", &amdgpu_debugfs_test_ib} |
| 3851 | }; |
| 3852 | |
| 3853 | static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev) |
| 3854 | { |
| 3855 | return amdgpu_debugfs_add_files(adev, |
| 3856 | amdgpu_debugfs_test_ib_ring_list, 1); |
| 3857 | } |
| 3858 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3859 | int amdgpu_debugfs_init(struct drm_minor *minor) |
| 3860 | { |
| 3861 | return 0; |
| 3862 | } |
Alexander Kuleshov | 7cebc72 | 2015-06-27 13:16:05 +0600 | [diff] [blame] | 3863 | #else |
Arnd Bergmann | 27bad5b | 2017-06-21 23:51:02 +0200 | [diff] [blame] | 3864 | static int amdgpu_debugfs_test_ib_ring_init(struct amdgpu_device *adev) |
Huang Rui | 4f0955f | 2017-05-10 23:04:06 +0800 | [diff] [blame] | 3865 | { |
| 3866 | return 0; |
| 3867 | } |
Alexander Kuleshov | 7cebc72 | 2015-06-27 13:16:05 +0600 | [diff] [blame] | 3868 | static int amdgpu_debugfs_regs_init(struct amdgpu_device *adev) |
| 3869 | { |
| 3870 | return 0; |
| 3871 | } |
| 3872 | static void amdgpu_debugfs_regs_cleanup(struct amdgpu_device *adev) { } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 3873 | #endif |