All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] More KFD features to make the runtime happy
@ 2017-08-12  4:47 Felix Kuehling
       [not found] ` <1502513265-14281-1-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 28+ messages in thread
From: Felix Kuehling @ 2017-08-12  4:47 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	oded.gabbay-Re5JQEeQqe8AvxtiuMwx3w
  Cc: Felix Kuehling

This patch series adds two more features that are needed to get the current
HSA runtime to initialize successfully. With this I am able to run OCL tests
from the current (upcoming) ROCm release on CZ.

Moses Reuben (2):
  drm/amdgpu: Adding new kgd/kfd interface functions to support scratch
    memory
  drm/amdkfd: Adding new IOCTL for scratch memory

Yong Zhao (2):
  drm/amdgpu: Add kgd kfd interface get_tile_config()
  drm/amdkfd: Implement image tiling mode support

 drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c  | 61 ++++++++++++++-
 drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c  | 61 ++++++++++++++-
 drivers/gpu/drm/amd/amdkfd/kfd_chardev.c           | 87 ++++++++++++++++++++++
 drivers/gpu/drm/amd/amdkfd/kfd_device.c            |  3 +
 .../gpu/drm/amd/amdkfd/kfd_device_queue_manager.c  |  3 +
 .../drm/amd/amdkfd/kfd_device_queue_manager_cik.c  |  2 +
 .../drm/amd/amdkfd/kfd_device_queue_manager_vi.c   |  2 +
 drivers/gpu/drm/amd/amdkfd/kfd_priv.h              |  1 +
 drivers/gpu/drm/amd/include/kgd_kfd_interface.h    | 16 ++++
 include/uapi/linux/kfd_ioctl.h                     | 54 +++++++++++++-
 10 files changed, 287 insertions(+), 3 deletions(-)

-- 
2.7.4

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2017-08-17  9:18 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-12  4:47 [PATCH 0/4] More KFD features to make the runtime happy Felix Kuehling
     [not found] ` <1502513265-14281-1-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
2017-08-12  4:47   ` [PATCH 1/4] drm/amdgpu: Adding new kgd/kfd interface functions to support scratch memory Felix Kuehling
     [not found]     ` <1502513265-14281-2-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
2017-08-13  8:56       ` Oded Gabbay
     [not found]         ` <CAFCwf13YDgfX_3EFhQ8sE-8D7ApyDd9zwtqazW6Ups2dPReMqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-15  1:12           ` Felix Kuehling
     [not found]             ` <c42dc57b-999b-250b-8ebe-214502869191-5C7GfCeVMHo@public.gmane.org>
2017-08-15 10:07               ` Marek Olšák
2017-08-15 14:49               ` Deucher, Alexander
2017-08-12  4:47   ` [PATCH 2/4] drm/amdkfd: Adding new IOCTL for " Felix Kuehling
     [not found]     ` <1502513265-14281-3-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
2017-08-13  9:04       ` Oded Gabbay
     [not found]         ` <CAFCwf11z1Uo9jd82XAGrapXA44KpY+KrV69nbXLkoX6v10_gig-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-14 15:10           ` Felix Kuehling
     [not found]             ` <22ab982e-a1b1-5d61-9eaa-f9c149cf3d5e-5C7GfCeVMHo@public.gmane.org>
2017-08-14 15:15               ` Christian König
     [not found]                 ` <c310b952-116b-376c-0794-232e69f88592-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-08-14 15:31                   ` Felix Kuehling
     [not found]                     ` <33308ac3-bdf2-21ac-2122-b43702fdd95f-5C7GfCeVMHo@public.gmane.org>
2017-08-15  8:24                       ` Christian König
     [not found]                         ` <b114b316-1142-11b8-6393-5f903bb2d663-ANTagKRnAhcb1SvskN2V4Q@public.gmane.org>
2017-08-15 14:33                           ` Alex Deucher
2017-08-15 16:03                           ` Felix Kuehling
     [not found]                             ` <d9a8220d-f9f1-b16c-da11-3c21a450926d-5C7GfCeVMHo@public.gmane.org>
2017-08-15 18:53                               ` Christian König
2017-08-12  4:47   ` [PATCH 3/4] drm/amdgpu: Add kgd kfd interface get_tile_config() Felix Kuehling
     [not found]     ` <1502513265-14281-4-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
2017-08-13  9:05       ` Oded Gabbay
2017-08-12  4:47   ` [PATCH 4/4] drm/amdkfd: Implement image tiling mode support Felix Kuehling
     [not found]     ` <1502513265-14281-5-git-send-email-Felix.Kuehling-5C7GfCeVMHo@public.gmane.org>
2017-08-13  9:08       ` Oded Gabbay
     [not found]         ` <CAFCwf10iQhAvxZdwCYBK6f0fBKdpgD=f0W886awm2fJVCB=hLQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-14 15:18           ` Felix Kuehling
     [not found]             ` <fc37f1a8-9c12-f1da-cdab-f03b50643f19-5C7GfCeVMHo@public.gmane.org>
2017-08-14 22:55               ` Felix Kuehling
     [not found]                 ` <2649fca7-9617-e434-a75a-f76d7e07d0f5-5C7GfCeVMHo@public.gmane.org>
2017-08-15  8:21                   ` Christian König
2017-08-15 10:20                   ` Oded Gabbay
     [not found]                     ` <CAFCwf13bFDhL=_X-zx8AJE+0sD0Aw9z5Rku_7qDgY6VEdtS+qA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-16  0:35                       ` Felix Kuehling
     [not found]                         ` <fd9a9222-f7fa-8f72-6a23-619a17a872e3-5C7GfCeVMHo@public.gmane.org>
2017-08-16  0:40                           ` Michel Dänzer
     [not found]                             ` <8ff456e3-94a8-7547-d01d-6aca5aaface8-otUistvHUpPR7s880joybQ@public.gmane.org>
2017-08-16  9:24                               ` Oded Gabbay
     [not found]                                 ` <CAFCwf11Rjt3smEjF6KAeUWCu=GCsSXAWbd1j4qA2tu+WL0C13g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-16 21:53                                   ` Felix Kuehling
     [not found]                                     ` <f4c6d3c4-3dd9-3add-5ebc-01659a655e66-5C7GfCeVMHo@public.gmane.org>
2017-08-17  9:18                                       ` Christian König

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.