radeon_gart.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  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. */
  28. #include "drmP.h"
  29. #include "radeon_drm.h"
  30. #include "radeon.h"
  31. #include "radeon_reg.h"
  32. /*
  33. * GART
  34. * The GART (Graphics Aperture Remapping Table) is an aperture
  35. * in the GPU's address space. System pages can be mapped into
  36. * the aperture and look like contiguous pages from the GPU's
  37. * perspective. A page table maps the pages in the aperture
  38. * to the actual backing pages in system memory.
  39. *
  40. * Radeon GPUs support both an internal GART, as described above,
  41. * and AGP. AGP works similarly, but the GART table is configured
  42. * and maintained by the northbridge rather than the driver.
  43. * Radeon hw has a separate AGP aperture that is programmed to
  44. * point to the AGP aperture provided by the northbridge and the
  45. * requests are passed through to the northbridge aperture.
  46. * Both AGP and internal GART can be used at the same time, however
  47. * that is not currently supported by the driver.
  48. *
  49. * This file handles the common internal GART management.
  50. */
  51. /*
  52. * Common GART table functions.
  53. */
  54. /**
  55. * radeon_gart_table_ram_alloc - allocate system ram for gart page table
  56. *
  57. * @rdev: radeon_device pointer
  58. *
  59. * Allocate system memory for GART page table
  60. * (r1xx-r3xx, non-pcie r4xx, rs400). These asics require the
  61. * gart table to be in system memory.
  62. * Returns 0 for success, -ENOMEM for failure.
  63. */
  64. int radeon_gart_table_ram_alloc(struct radeon_device *rdev)
  65. {
  66. void *ptr;
  67. ptr = pci_alloc_consistent(rdev->pdev, rdev->gart.table_size,
  68. &rdev->gart.table_addr);
  69. if (ptr == NULL) {
  70. return -ENOMEM;
  71. }
  72. #ifdef CONFIG_X86
  73. if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480 ||
  74. rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740) {
  75. set_memory_uc((unsigned long)ptr,
  76. rdev->gart.table_size >> PAGE_SHIFT);
  77. }
  78. #endif
  79. rdev->gart.ptr = ptr;
  80. memset((void *)rdev->gart.ptr, 0, rdev->gart.table_size);
  81. return 0;
  82. }
  83. /**
  84. * radeon_gart_table_ram_free - free system ram for gart page table
  85. *
  86. * @rdev: radeon_device pointer
  87. *
  88. * Free system memory for GART page table
  89. * (r1xx-r3xx, non-pcie r4xx, rs400). These asics require the
  90. * gart table to be in system memory.
  91. */
  92. void radeon_gart_table_ram_free(struct radeon_device *rdev)
  93. {
  94. if (rdev->gart.ptr == NULL) {
  95. return;
  96. }
  97. #ifdef CONFIG_X86
  98. if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480 ||
  99. rdev->family == CHIP_RS690 || rdev->family == CHIP_RS740) {
  100. set_memory_wb((unsigned long)rdev->gart.ptr,
  101. rdev->gart.table_size >> PAGE_SHIFT);
  102. }
  103. #endif
  104. pci_free_consistent(rdev->pdev, rdev->gart.table_size,
  105. (void *)rdev->gart.ptr,
  106. rdev->gart.table_addr);
  107. rdev->gart.ptr = NULL;
  108. rdev->gart.table_addr = 0;
  109. }
  110. /**
  111. * radeon_gart_table_vram_alloc - allocate vram for gart page table
  112. *
  113. * @rdev: radeon_device pointer
  114. *
  115. * Allocate video memory for GART page table
  116. * (pcie r4xx, r5xx+). These asics require the
  117. * gart table to be in video memory.
  118. * Returns 0 for success, error for failure.
  119. */
  120. int radeon_gart_table_vram_alloc(struct radeon_device *rdev)
  121. {
  122. int r;
  123. if (rdev->gart.robj == NULL) {
  124. r = radeon_bo_create(rdev, rdev->gart.table_size,
  125. PAGE_SIZE, true, RADEON_GEM_DOMAIN_VRAM,
  126. NULL, &rdev->gart.robj);
  127. if (r) {
  128. return r;
  129. }
  130. }
  131. return 0;
  132. }
  133. /**
  134. * radeon_gart_table_vram_pin - pin gart page table in vram
  135. *
  136. * @rdev: radeon_device pointer
  137. *
  138. * Pin the GART page table in vram so it will not be moved
  139. * by the memory manager (pcie r4xx, r5xx+). These asics require the
  140. * gart table to be in video memory.
  141. * Returns 0 for success, error for failure.
  142. */
  143. int radeon_gart_table_vram_pin(struct radeon_device *rdev)
  144. {
  145. uint64_t gpu_addr;
  146. int r;
  147. r = radeon_bo_reserve(rdev->gart.robj, false);
  148. if (unlikely(r != 0))
  149. return r;
  150. r = radeon_bo_pin(rdev->gart.robj,
  151. RADEON_GEM_DOMAIN_VRAM, &gpu_addr);
  152. if (r) {
  153. radeon_bo_unreserve(rdev->gart.robj);
  154. return r;
  155. }
  156. r = radeon_bo_kmap(rdev->gart.robj, &rdev->gart.ptr);
  157. if (r)
  158. radeon_bo_unpin(rdev->gart.robj);
  159. radeon_bo_unreserve(rdev->gart.robj);
  160. rdev->gart.table_addr = gpu_addr;
  161. return r;
  162. }
  163. /**
  164. * radeon_gart_table_vram_unpin - unpin gart page table in vram
  165. *
  166. * @rdev: radeon_device pointer
  167. *
  168. * Unpin the GART page table in vram (pcie r4xx, r5xx+).
  169. * These asics require the gart table to be in video memory.
  170. */
  171. void radeon_gart_table_vram_unpin(struct radeon_device *rdev)
  172. {
  173. int r;
  174. if (rdev->gart.robj == NULL) {
  175. return;
  176. }
  177. r = radeon_bo_reserve(rdev->gart.robj, false);
  178. if (likely(r == 0)) {
  179. radeon_bo_kunmap(rdev->gart.robj);
  180. radeon_bo_unpin(rdev->gart.robj);
  181. radeon_bo_unreserve(rdev->gart.robj);
  182. rdev->gart.ptr = NULL;
  183. }
  184. }
  185. /**
  186. * radeon_gart_table_vram_free - free gart page table vram
  187. *
  188. * @rdev: radeon_device pointer
  189. *
  190. * Free the video memory used for the GART page table
  191. * (pcie r4xx, r5xx+). These asics require the gart table to
  192. * be in video memory.
  193. */
  194. void radeon_gart_table_vram_free(struct radeon_device *rdev)
  195. {
  196. if (rdev->gart.robj == NULL) {
  197. return;
  198. }
  199. radeon_gart_table_vram_unpin(rdev);
  200. radeon_bo_unref(&rdev->gart.robj);
  201. }
  202. /*
  203. * Common gart functions.
  204. */
  205. /**
  206. * radeon_gart_unbind - unbind pages from the gart page table
  207. *
  208. * @rdev: radeon_device pointer
  209. * @offset: offset into the GPU's gart aperture
  210. * @pages: number of pages to unbind
  211. *
  212. * Unbinds the requested pages from the gart page table and
  213. * replaces them with the dummy page (all asics).
  214. */
  215. void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
  216. int pages)
  217. {
  218. unsigned t;
  219. unsigned p;
  220. int i, j;
  221. u64 page_base;
  222. if (!rdev->gart.ready) {
  223. WARN(1, "trying to unbind memory from uninitialized GART !\n");
  224. return;
  225. }
  226. t = offset / RADEON_GPU_PAGE_SIZE;
  227. p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE);
  228. for (i = 0; i < pages; i++, p++) {
  229. if (rdev->gart.pages[p]) {
  230. rdev->gart.pages[p] = NULL;
  231. rdev->gart.pages_addr[p] = rdev->dummy_page.addr;
  232. page_base = rdev->gart.pages_addr[p];
  233. for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
  234. if (rdev->gart.ptr) {
  235. radeon_gart_set_page(rdev, t, page_base);
  236. }
  237. page_base += RADEON_GPU_PAGE_SIZE;
  238. }
  239. }
  240. }
  241. mb();
  242. radeon_gart_tlb_flush(rdev);
  243. }
  244. /**
  245. * radeon_gart_bind - bind pages into the gart page table
  246. *
  247. * @rdev: radeon_device pointer
  248. * @offset: offset into the GPU's gart aperture
  249. * @pages: number of pages to bind
  250. * @pagelist: pages to bind
  251. * @dma_addr: DMA addresses of pages
  252. *
  253. * Binds the requested pages to the gart page table
  254. * (all asics).
  255. * Returns 0 for success, -EINVAL for failure.
  256. */
  257. int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
  258. int pages, struct page **pagelist, dma_addr_t *dma_addr)
  259. {
  260. unsigned t;
  261. unsigned p;
  262. uint64_t page_base;
  263. int i, j;
  264. if (!rdev->gart.ready) {
  265. WARN(1, "trying to bind memory to uninitialized GART !\n");
  266. return -EINVAL;
  267. }
  268. t = offset / RADEON_GPU_PAGE_SIZE;
  269. p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE);
  270. for (i = 0; i < pages; i++, p++) {
  271. rdev->gart.pages_addr[p] = dma_addr[i];
  272. rdev->gart.pages[p] = pagelist[i];
  273. if (rdev->gart.ptr) {
  274. page_base = rdev->gart.pages_addr[p];
  275. for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
  276. radeon_gart_set_page(rdev, t, page_base);
  277. page_base += RADEON_GPU_PAGE_SIZE;
  278. }
  279. }
  280. }
  281. mb();
  282. radeon_gart_tlb_flush(rdev);
  283. return 0;
  284. }
  285. /**
  286. * radeon_gart_restore - bind all pages in the gart page table
  287. *
  288. * @rdev: radeon_device pointer
  289. *
  290. * Binds all pages in the gart page table (all asics).
  291. * Used to rebuild the gart table on device startup or resume.
  292. */
  293. void radeon_gart_restore(struct radeon_device *rdev)
  294. {
  295. int i, j, t;
  296. u64 page_base;
  297. if (!rdev->gart.ptr) {
  298. return;
  299. }
  300. for (i = 0, t = 0; i < rdev->gart.num_cpu_pages; i++) {
  301. page_base = rdev->gart.pages_addr[i];
  302. for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) {
  303. radeon_gart_set_page(rdev, t, page_base);
  304. page_base += RADEON_GPU_PAGE_SIZE;
  305. }
  306. }
  307. mb();
  308. radeon_gart_tlb_flush(rdev);
  309. }
  310. /**
  311. * radeon_gart_init - init the driver info for managing the gart
  312. *
  313. * @rdev: radeon_device pointer
  314. *
  315. * Allocate the dummy page and init the gart driver info (all asics).
  316. * Returns 0 for success, error for failure.
  317. */
  318. int radeon_gart_init(struct radeon_device *rdev)
  319. {
  320. int r, i;
  321. if (rdev->gart.pages) {
  322. return 0;
  323. }
  324. /* We need PAGE_SIZE >= RADEON_GPU_PAGE_SIZE */
  325. if (PAGE_SIZE < RADEON_GPU_PAGE_SIZE) {
  326. DRM_ERROR("Page size is smaller than GPU page size!\n");
  327. return -EINVAL;
  328. }
  329. r = radeon_dummy_page_init(rdev);
  330. if (r)
  331. return r;
  332. /* Compute table size */
  333. rdev->gart.num_cpu_pages = rdev->mc.gtt_size / PAGE_SIZE;
  334. rdev->gart.num_gpu_pages = rdev->mc.gtt_size / RADEON_GPU_PAGE_SIZE;
  335. DRM_INFO("GART: num cpu pages %u, num gpu pages %u\n",
  336. rdev->gart.num_cpu_pages, rdev->gart.num_gpu_pages);
  337. /* Allocate pages table */
  338. rdev->gart.pages = kzalloc(sizeof(void *) * rdev->gart.num_cpu_pages,
  339. GFP_KERNEL);
  340. if (rdev->gart.pages == NULL) {
  341. radeon_gart_fini(rdev);
  342. return -ENOMEM;
  343. }
  344. rdev->gart.pages_addr = kzalloc(sizeof(dma_addr_t) *
  345. rdev->gart.num_cpu_pages, GFP_KERNEL);
  346. if (rdev->gart.pages_addr == NULL) {
  347. radeon_gart_fini(rdev);
  348. return -ENOMEM;
  349. }
  350. /* set GART entry to point to the dummy page by default */
  351. for (i = 0; i < rdev->gart.num_cpu_pages; i++) {
  352. rdev->gart.pages_addr[i] = rdev->dummy_page.addr;
  353. }
  354. return 0;
  355. }
  356. /**
  357. * radeon_gart_fini - tear down the driver info for managing the gart
  358. *
  359. * @rdev: radeon_device pointer
  360. *
  361. * Tear down the gart driver info and free the dummy page (all asics).
  362. */
  363. void radeon_gart_fini(struct radeon_device *rdev)
  364. {
  365. if (rdev->gart.pages && rdev->gart.pages_addr && rdev->gart.ready) {
  366. /* unbind pages */
  367. radeon_gart_unbind(rdev, 0, rdev->gart.num_cpu_pages);
  368. }
  369. rdev->gart.ready = false;
  370. kfree(rdev->gart.pages);
  371. kfree(rdev->gart.pages_addr);
  372. rdev->gart.pages = NULL;
  373. rdev->gart.pages_addr = NULL;
  374. radeon_dummy_page_fini(rdev);
  375. }
  376. /*
  377. * GPUVM
  378. * GPUVM is similar to the legacy gart on older asics, however
  379. * rather than there being a single global gart table
  380. * for the entire GPU, there are multiple VM page tables active
  381. * at any given time. The VM page tables can contain a mix
  382. * vram pages and system memory pages and system memory pages
  383. * can be mapped as snooped (cached system pages) or unsnooped
  384. * (uncached system pages).
  385. * Each VM has an ID associated with it and there is a page table
  386. * associated with each VMID. When execting a command buffer,
  387. * the kernel tells the the ring what VMID to use for that command
  388. * buffer. VMIDs are allocated dynamically as commands are submitted.
  389. * The userspace drivers maintain their own address space and the kernel
  390. * sets up their pages tables accordingly when they submit their
  391. * command buffers and a VMID is assigned.
  392. * Cayman/Trinity support up to 8 active VMs at any given time;
  393. * SI supports 16.
  394. */
  395. /*
  396. * vm helpers
  397. *
  398. * TODO bind a default page at vm initialization for default address
  399. */
  400. /**
  401. * radeon_vm_manager_init - init the vm manager
  402. *
  403. * @rdev: radeon_device pointer
  404. *
  405. * Init the vm manager (cayman+).
  406. * Returns 0 for success, error for failure.
  407. */
  408. int radeon_vm_manager_init(struct radeon_device *rdev)
  409. {
  410. struct radeon_vm *vm;
  411. struct radeon_bo_va *bo_va;
  412. int r;
  413. if (!rdev->vm_manager.enabled) {
  414. /* allocate enough for 2 full VM pts */
  415. r = radeon_sa_bo_manager_init(rdev, &rdev->vm_manager.sa_manager,
  416. rdev->vm_manager.max_pfn * 8 * 2,
  417. RADEON_GEM_DOMAIN_VRAM);
  418. if (r) {
  419. dev_err(rdev->dev, "failed to allocate vm bo (%dKB)\n",
  420. (rdev->vm_manager.max_pfn * 8) >> 10);
  421. return r;
  422. }
  423. r = radeon_asic_vm_init(rdev);
  424. if (r)
  425. return r;
  426. rdev->vm_manager.enabled = true;
  427. r = radeon_sa_bo_manager_start(rdev, &rdev->vm_manager.sa_manager);
  428. if (r)
  429. return r;
  430. }
  431. /* restore page table */
  432. list_for_each_entry(vm, &rdev->vm_manager.lru_vm, list) {
  433. if (vm->sa_bo == NULL)
  434. continue;
  435. list_for_each_entry(bo_va, &vm->va, vm_list) {
  436. struct ttm_mem_reg *mem = NULL;
  437. if (bo_va->valid)
  438. mem = &bo_va->bo->tbo.mem;
  439. bo_va->valid = false;
  440. r = radeon_vm_bo_update_pte(rdev, vm, bo_va->bo, mem);
  441. if (r) {
  442. DRM_ERROR("Failed to update pte for vm %d!\n", vm->id);
  443. }
  444. }
  445. }
  446. return 0;
  447. }
  448. /**
  449. * radeon_vm_free_pt - free the page table for a specific vm
  450. *
  451. * @rdev: radeon_device pointer
  452. * @vm: vm to unbind
  453. *
  454. * Free the page table of a specific vm (cayman+).
  455. *
  456. * Global and local mutex must be lock!
  457. */
  458. static void radeon_vm_free_pt(struct radeon_device *rdev,
  459. struct radeon_vm *vm)
  460. {
  461. struct radeon_bo_va *bo_va;
  462. if (!vm->sa_bo)
  463. return;
  464. list_del_init(&vm->list);
  465. radeon_sa_bo_free(rdev, &vm->sa_bo, vm->fence);
  466. vm->pt = NULL;
  467. list_for_each_entry(bo_va, &vm->va, vm_list) {
  468. bo_va->valid = false;
  469. }
  470. }
  471. /**
  472. * radeon_vm_manager_fini - tear down the vm manager
  473. *
  474. * @rdev: radeon_device pointer
  475. *
  476. * Tear down the VM manager (cayman+).
  477. */
  478. void radeon_vm_manager_fini(struct radeon_device *rdev)
  479. {
  480. struct radeon_vm *vm, *tmp;
  481. int i;
  482. if (!rdev->vm_manager.enabled)
  483. return;
  484. mutex_lock(&rdev->vm_manager.lock);
  485. /* free all allocated page tables */
  486. list_for_each_entry_safe(vm, tmp, &rdev->vm_manager.lru_vm, list) {
  487. mutex_lock(&vm->mutex);
  488. radeon_vm_free_pt(rdev, vm);
  489. mutex_unlock(&vm->mutex);
  490. }
  491. for (i = 0; i < RADEON_NUM_VM; ++i) {
  492. radeon_fence_unref(&rdev->vm_manager.active[i]);
  493. }
  494. radeon_asic_vm_fini(rdev);
  495. mutex_unlock(&rdev->vm_manager.lock);
  496. radeon_sa_bo_manager_suspend(rdev, &rdev->vm_manager.sa_manager);
  497. radeon_sa_bo_manager_fini(rdev, &rdev->vm_manager.sa_manager);
  498. rdev->vm_manager.enabled = false;
  499. }
  500. /**
  501. * radeon_vm_alloc_pt - allocates a page table for a VM
  502. *
  503. * @rdev: radeon_device pointer
  504. * @vm: vm to bind
  505. *
  506. * Allocate a page table for the requested vm (cayman+).
  507. * Also starts to populate the page table.
  508. * Returns 0 for success, error for failure.
  509. *
  510. * Global and local mutex must be locked!
  511. */
  512. int radeon_vm_alloc_pt(struct radeon_device *rdev, struct radeon_vm *vm)
  513. {
  514. struct radeon_vm *vm_evict;
  515. int r;
  516. if (vm == NULL) {
  517. return -EINVAL;
  518. }
  519. if (vm->sa_bo != NULL) {
  520. /* update lru */
  521. list_del_init(&vm->list);
  522. list_add_tail(&vm->list, &rdev->vm_manager.lru_vm);
  523. return 0;
  524. }
  525. retry:
  526. r = radeon_sa_bo_new(rdev, &rdev->vm_manager.sa_manager, &vm->sa_bo,
  527. RADEON_GPU_PAGE_ALIGN(vm->last_pfn * 8),
  528. RADEON_GPU_PAGE_SIZE, false);
  529. if (r == -ENOMEM) {
  530. if (list_empty(&rdev->vm_manager.lru_vm)) {
  531. return r;
  532. }
  533. vm_evict = list_first_entry(&rdev->vm_manager.lru_vm, struct radeon_vm, list);
  534. mutex_lock(&vm_evict->mutex);
  535. radeon_vm_free_pt(rdev, vm_evict);
  536. mutex_unlock(&vm_evict->mutex);
  537. goto retry;
  538. } else if (r) {
  539. return r;
  540. }
  541. vm->pt = radeon_sa_bo_cpu_addr(vm->sa_bo);
  542. vm->pt_gpu_addr = radeon_sa_bo_gpu_addr(vm->sa_bo);
  543. memset(vm->pt, 0, RADEON_GPU_PAGE_ALIGN(vm->last_pfn * 8));
  544. list_add_tail(&vm->list, &rdev->vm_manager.lru_vm);
  545. return radeon_vm_bo_update_pte(rdev, vm, rdev->ring_tmp_bo.bo,
  546. &rdev->ring_tmp_bo.bo->tbo.mem);
  547. }
  548. /**
  549. * radeon_vm_grab_id - allocate the next free VMID
  550. *
  551. * @rdev: radeon_device pointer
  552. * @vm: vm to allocate id for
  553. * @ring: ring we want to submit job to
  554. *
  555. * Allocate an id for the vm (cayman+).
  556. * Returns the fence we need to sync to (if any).
  557. *
  558. * Global and local mutex must be locked!
  559. */
  560. struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
  561. struct radeon_vm *vm, int ring)
  562. {
  563. struct radeon_fence *best[RADEON_NUM_RINGS] = {};
  564. unsigned choices[2] = {};
  565. unsigned i;
  566. /* check if the id is still valid */
  567. if (vm->fence && vm->fence == rdev->vm_manager.active[vm->id])
  568. return NULL;
  569. /* we definately need to flush */
  570. radeon_fence_unref(&vm->last_flush);
  571. /* skip over VMID 0, since it is the system VM */
  572. for (i = 1; i < rdev->vm_manager.nvm; ++i) {
  573. struct radeon_fence *fence = rdev->vm_manager.active[i];
  574. if (fence == NULL) {
  575. /* found a free one */
  576. vm->id = i;
  577. return NULL;
  578. }
  579. if (radeon_fence_is_earlier(fence, best[fence->ring])) {
  580. best[fence->ring] = fence;
  581. choices[fence->ring == ring ? 0 : 1] = i;
  582. }
  583. }
  584. for (i = 0; i < 2; ++i) {
  585. if (choices[i]) {
  586. vm->id = choices[i];
  587. return rdev->vm_manager.active[choices[i]];
  588. }
  589. }
  590. /* should never happen */
  591. BUG();
  592. return NULL;
  593. }
  594. /**
  595. * radeon_vm_fence - remember fence for vm
  596. *
  597. * @rdev: radeon_device pointer
  598. * @vm: vm we want to fence
  599. * @fence: fence to remember
  600. *
  601. * Fence the vm (cayman+).
  602. * Set the fence used to protect page table and id.
  603. *
  604. * Global and local mutex must be locked!
  605. */
  606. void radeon_vm_fence(struct radeon_device *rdev,
  607. struct radeon_vm *vm,
  608. struct radeon_fence *fence)
  609. {
  610. radeon_fence_unref(&rdev->vm_manager.active[vm->id]);
  611. rdev->vm_manager.active[vm->id] = radeon_fence_ref(fence);
  612. radeon_fence_unref(&vm->fence);
  613. vm->fence = radeon_fence_ref(fence);
  614. }
  615. /* object have to be reserved */
  616. /**
  617. * radeon_vm_bo_add - add a bo to a specific vm
  618. *
  619. * @rdev: radeon_device pointer
  620. * @vm: requested vm
  621. * @bo: radeon buffer object
  622. * @offset: requested offset of the buffer in the VM address space
  623. * @flags: attributes of pages (read/write/valid/etc.)
  624. *
  625. * Add @bo into the requested vm (cayman+).
  626. * Add @bo to the list of bos associated with the vm and validate
  627. * the offset requested within the vm address space.
  628. * Returns 0 for success, error for failure.
  629. */
  630. int radeon_vm_bo_add(struct radeon_device *rdev,
  631. struct radeon_vm *vm,
  632. struct radeon_bo *bo,
  633. uint64_t offset,
  634. uint32_t flags)
  635. {
  636. struct radeon_bo_va *bo_va, *tmp;
  637. struct list_head *head;
  638. uint64_t size = radeon_bo_size(bo), last_offset = 0;
  639. unsigned last_pfn;
  640. bo_va = kzalloc(sizeof(struct radeon_bo_va), GFP_KERNEL);
  641. if (bo_va == NULL) {
  642. return -ENOMEM;
  643. }
  644. bo_va->vm = vm;
  645. bo_va->bo = bo;
  646. bo_va->soffset = offset;
  647. bo_va->eoffset = offset + size;
  648. bo_va->flags = flags;
  649. bo_va->valid = false;
  650. INIT_LIST_HEAD(&bo_va->bo_list);
  651. INIT_LIST_HEAD(&bo_va->vm_list);
  652. /* make sure object fit at this offset */
  653. if (bo_va->soffset >= bo_va->eoffset) {
  654. kfree(bo_va);
  655. return -EINVAL;
  656. }
  657. last_pfn = bo_va->eoffset / RADEON_GPU_PAGE_SIZE;
  658. if (last_pfn > rdev->vm_manager.max_pfn) {
  659. kfree(bo_va);
  660. dev_err(rdev->dev, "va above limit (0x%08X > 0x%08X)\n",
  661. last_pfn, rdev->vm_manager.max_pfn);
  662. return -EINVAL;
  663. }
  664. mutex_lock(&vm->mutex);
  665. if (last_pfn > vm->last_pfn) {
  666. /* release mutex and lock in right order */
  667. mutex_unlock(&vm->mutex);
  668. mutex_lock(&rdev->vm_manager.lock);
  669. mutex_lock(&vm->mutex);
  670. /* and check again */
  671. if (last_pfn > vm->last_pfn) {
  672. /* grow va space 32M by 32M */
  673. unsigned align = ((32 << 20) >> 12) - 1;
  674. radeon_vm_free_pt(rdev, vm);
  675. vm->last_pfn = (last_pfn + align) & ~align;
  676. }
  677. mutex_unlock(&rdev->vm_manager.lock);
  678. }
  679. head = &vm->va;
  680. last_offset = 0;
  681. list_for_each_entry(tmp, &vm->va, vm_list) {
  682. if (bo_va->soffset >= last_offset && bo_va->eoffset < tmp->soffset) {
  683. /* bo can be added before this one */
  684. break;
  685. }
  686. if (bo_va->soffset >= tmp->soffset && bo_va->soffset < tmp->eoffset) {
  687. /* bo and tmp overlap, invalid offset */
  688. dev_err(rdev->dev, "bo %p va 0x%08X conflict with (bo %p 0x%08X 0x%08X)\n",
  689. bo, (unsigned)bo_va->soffset, tmp->bo,
  690. (unsigned)tmp->soffset, (unsigned)tmp->eoffset);
  691. kfree(bo_va);
  692. mutex_unlock(&vm->mutex);
  693. return -EINVAL;
  694. }
  695. last_offset = tmp->eoffset;
  696. head = &tmp->vm_list;
  697. }
  698. list_add(&bo_va->vm_list, head);
  699. list_add_tail(&bo_va->bo_list, &bo->va);
  700. mutex_unlock(&vm->mutex);
  701. return 0;
  702. }
  703. /**
  704. * radeon_vm_get_addr - get the physical address of the page
  705. *
  706. * @rdev: radeon_device pointer
  707. * @mem: ttm mem
  708. * @pfn: pfn
  709. *
  710. * Look up the physical address of the page that the pte resolves
  711. * to (cayman+).
  712. * Returns the physical address of the page.
  713. */
  714. u64 radeon_vm_get_addr(struct radeon_device *rdev,
  715. struct ttm_mem_reg *mem,
  716. unsigned pfn)
  717. {
  718. u64 addr = 0;
  719. switch (mem->mem_type) {
  720. case TTM_PL_VRAM:
  721. addr = (mem->start << PAGE_SHIFT);
  722. addr += pfn * RADEON_GPU_PAGE_SIZE;
  723. addr += rdev->vm_manager.vram_base_offset;
  724. break;
  725. case TTM_PL_TT:
  726. /* offset inside page table */
  727. addr = mem->start << PAGE_SHIFT;
  728. addr += pfn * RADEON_GPU_PAGE_SIZE;
  729. addr = addr >> PAGE_SHIFT;
  730. /* page table offset */
  731. addr = rdev->gart.pages_addr[addr];
  732. /* in case cpu page size != gpu page size*/
  733. addr += (pfn * RADEON_GPU_PAGE_SIZE) & (~PAGE_MASK);
  734. break;
  735. default:
  736. break;
  737. }
  738. return addr;
  739. }
  740. /* object have to be reserved & global and local mutex must be locked */
  741. /**
  742. * radeon_vm_bo_update_pte - map a bo into the vm page table
  743. *
  744. * @rdev: radeon_device pointer
  745. * @vm: requested vm
  746. * @bo: radeon buffer object
  747. * @mem: ttm mem
  748. *
  749. * Fill in the page table entries for @bo (cayman+).
  750. * Returns 0 for success, -EINVAL for failure.
  751. */
  752. int radeon_vm_bo_update_pte(struct radeon_device *rdev,
  753. struct radeon_vm *vm,
  754. struct radeon_bo *bo,
  755. struct ttm_mem_reg *mem)
  756. {
  757. struct radeon_bo_va *bo_va;
  758. unsigned ngpu_pages;
  759. uint64_t pfn;
  760. /* nothing to do if vm isn't bound */
  761. if (vm->sa_bo == NULL)
  762. return 0;
  763. bo_va = radeon_bo_va(bo, vm);
  764. if (bo_va == NULL) {
  765. dev_err(rdev->dev, "bo %p not in vm %p\n", bo, vm);
  766. return -EINVAL;
  767. }
  768. if (bo_va->valid && mem)
  769. return 0;
  770. ngpu_pages = radeon_bo_ngpu_pages(bo);
  771. bo_va->flags &= ~RADEON_VM_PAGE_VALID;
  772. bo_va->flags &= ~RADEON_VM_PAGE_SYSTEM;
  773. if (mem) {
  774. if (mem->mem_type != TTM_PL_SYSTEM) {
  775. bo_va->flags |= RADEON_VM_PAGE_VALID;
  776. bo_va->valid = true;
  777. }
  778. if (mem->mem_type == TTM_PL_TT) {
  779. bo_va->flags |= RADEON_VM_PAGE_SYSTEM;
  780. }
  781. }
  782. if (!bo_va->valid) {
  783. mem = NULL;
  784. }
  785. pfn = bo_va->soffset / RADEON_GPU_PAGE_SIZE;
  786. radeon_asic_vm_set_page(rdev, bo_va->vm, pfn, mem, ngpu_pages, bo_va->flags);
  787. radeon_fence_unref(&vm->last_flush);
  788. return 0;
  789. }
  790. /**
  791. * radeon_vm_bo_rmv - remove a bo to a specific vm
  792. *
  793. * @rdev: radeon_device pointer
  794. * @vm: requested vm
  795. * @bo: radeon buffer object
  796. *
  797. * Remove @bo from the requested vm (cayman+).
  798. * Remove @bo from the list of bos associated with the vm and
  799. * remove the ptes for @bo in the page table.
  800. * Returns 0 for success.
  801. *
  802. * Object have to be reserved!
  803. */
  804. int radeon_vm_bo_rmv(struct radeon_device *rdev,
  805. struct radeon_vm *vm,
  806. struct radeon_bo *bo)
  807. {
  808. struct radeon_bo_va *bo_va;
  809. bo_va = radeon_bo_va(bo, vm);
  810. if (bo_va == NULL)
  811. return 0;
  812. mutex_lock(&rdev->vm_manager.lock);
  813. mutex_lock(&vm->mutex);
  814. radeon_vm_free_pt(rdev, vm);
  815. mutex_unlock(&rdev->vm_manager.lock);
  816. list_del(&bo_va->vm_list);
  817. mutex_unlock(&vm->mutex);
  818. list_del(&bo_va->bo_list);
  819. kfree(bo_va);
  820. return 0;
  821. }
  822. /**
  823. * radeon_vm_bo_invalidate - mark the bo as invalid
  824. *
  825. * @rdev: radeon_device pointer
  826. * @vm: requested vm
  827. * @bo: radeon buffer object
  828. *
  829. * Mark @bo as invalid (cayman+).
  830. */
  831. void radeon_vm_bo_invalidate(struct radeon_device *rdev,
  832. struct radeon_bo *bo)
  833. {
  834. struct radeon_bo_va *bo_va;
  835. BUG_ON(!atomic_read(&bo->tbo.reserved));
  836. list_for_each_entry(bo_va, &bo->va, bo_list) {
  837. bo_va->valid = false;
  838. }
  839. }
  840. /**
  841. * radeon_vm_init - initialize a vm instance
  842. *
  843. * @rdev: radeon_device pointer
  844. * @vm: requested vm
  845. *
  846. * Init @vm (cayman+).
  847. * Map the IB pool and any other shared objects into the VM
  848. * by default as it's used by all VMs.
  849. * Returns 0 for success, error for failure.
  850. */
  851. int radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm)
  852. {
  853. int r;
  854. vm->id = 0;
  855. vm->fence = NULL;
  856. mutex_init(&vm->mutex);
  857. INIT_LIST_HEAD(&vm->list);
  858. INIT_LIST_HEAD(&vm->va);
  859. /* SI requires equal sized PTs for all VMs, so always set
  860. * last_pfn to max_pfn. cayman allows variable sized
  861. * pts so we can grow then as needed. Once we switch
  862. * to two level pts we can unify this again.
  863. */
  864. if (rdev->family >= CHIP_TAHITI)
  865. vm->last_pfn = rdev->vm_manager.max_pfn;
  866. else
  867. vm->last_pfn = 0;
  868. /* map the ib pool buffer at 0 in virtual address space, set
  869. * read only
  870. */
  871. r = radeon_vm_bo_add(rdev, vm, rdev->ring_tmp_bo.bo, 0,
  872. RADEON_VM_PAGE_READABLE | RADEON_VM_PAGE_SNOOPED);
  873. return r;
  874. }
  875. /**
  876. * radeon_vm_fini - tear down a vm instance
  877. *
  878. * @rdev: radeon_device pointer
  879. * @vm: requested vm
  880. *
  881. * Tear down @vm (cayman+).
  882. * Unbind the VM and remove all bos from the vm bo list
  883. */
  884. void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm)
  885. {
  886. struct radeon_bo_va *bo_va, *tmp;
  887. int r;
  888. mutex_lock(&rdev->vm_manager.lock);
  889. mutex_lock(&vm->mutex);
  890. radeon_vm_free_pt(rdev, vm);
  891. mutex_unlock(&rdev->vm_manager.lock);
  892. /* remove all bo at this point non are busy any more because unbind
  893. * waited for the last vm fence to signal
  894. */
  895. r = radeon_bo_reserve(rdev->ring_tmp_bo.bo, false);
  896. if (!r) {
  897. bo_va = radeon_bo_va(rdev->ring_tmp_bo.bo, vm);
  898. list_del_init(&bo_va->bo_list);
  899. list_del_init(&bo_va->vm_list);
  900. radeon_bo_unreserve(rdev->ring_tmp_bo.bo);
  901. kfree(bo_va);
  902. }
  903. if (!list_empty(&vm->va)) {
  904. dev_err(rdev->dev, "still active bo inside vm\n");
  905. }
  906. list_for_each_entry_safe(bo_va, tmp, &vm->va, vm_list) {
  907. list_del_init(&bo_va->vm_list);
  908. r = radeon_bo_reserve(bo_va->bo, false);
  909. if (!r) {
  910. list_del_init(&bo_va->bo_list);
  911. radeon_bo_unreserve(bo_va->bo);
  912. kfree(bo_va);
  913. }
  914. }
  915. radeon_fence_unref(&vm->fence);
  916. radeon_fence_unref(&vm->last_flush);
  917. mutex_unlock(&vm->mutex);
  918. }