mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Oded Gabbay <oded.gabbay@amd.com>
To: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	"David Airlie" <airlied@linux.ie>,
	"Jérôme Glisse" <j.glisse@gmail.com>,
	"Alexander Deucher" <alexdeucher@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	<John.Bridgman@amd.com>, "Joerg Roedel" <joro@8bytes.org>,
	<Andrew.Lewycky@amd.com>, <deathsimple@vodafone.de>,
	<michel.daenzer@amd.com>, Oded Gabbay <oded.gabbay@amd.com>
Subject: [PATCH v3 01/23] drm/radeon: reduce number of free VMIDs and pipes in KV
Date: Tue, 5 Aug 2014 18:30:29 +0300	[thread overview]
Message-ID: <1407252651-3539-2-git-send-email-oded.gabbay@amd.com> (raw)
In-Reply-To: <1407252651-3539-1-git-send-email-oded.gabbay@amd.com>

To support HSA on KV, we need to limit the number of vmids and pipes
that are available for radeon's use with KV.

This patch reserves VMIDs 8-15 for amdkfd (so radeon can only use VMIDs
0-7) and also makes radeon thinks that KV has only a single MEC with a single
pipe in it

(v3) Use define for static vmid allocation in radeon

Signed-off-by: Oded Gabbay <oded.gabbay@amd.com>
---
 drivers/gpu/drm/radeon/cik.c  | 48 +++++++++++++++++++++----------------------
 drivers/gpu/drm/radeon/cikd.h |  2 ++
 2 files changed, 26 insertions(+), 24 deletions(-)

diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c
index b625646..9571be8 100644
--- a/drivers/gpu/drm/radeon/cik.c
+++ b/drivers/gpu/drm/radeon/cik.c
@@ -4660,12 +4660,11 @@ static int cik_mec_init(struct radeon_device *rdev)
 	/*
 	 * KV:    2 MEC, 4 Pipes/MEC, 8 Queues/Pipe - 64 Queues total
 	 * CI/KB: 1 MEC, 4 Pipes/MEC, 8 Queues/Pipe - 32 Queues total
+	 * Nonetheless, we assign only 1 pipe because all other pipes will
+	 * be handled by KFD
 	 */
-	if (rdev->family == CHIP_KAVERI)
-		rdev->mec.num_mec = 2;
-	else
-		rdev->mec.num_mec = 1;
-	rdev->mec.num_pipe = 4;
+	rdev->mec.num_mec = 1;
+	rdev->mec.num_pipe = 1;
 	rdev->mec.num_queue = rdev->mec.num_mec * rdev->mec.num_pipe * 8;
 
 	if (rdev->mec.hpd_eop_obj == NULL) {
@@ -4807,28 +4806,24 @@ static int cik_cp_compute_resume(struct radeon_device *rdev)
 
 	/* init the pipes */
 	mutex_lock(&rdev->srbm_mutex);
-	for (i = 0; i < (rdev->mec.num_pipe * rdev->mec.num_mec); i++) {
-		int me = (i < 4) ? 1 : 2;
-		int pipe = (i < 4) ? i : (i - 4);
 
-		eop_gpu_addr = rdev->mec.hpd_eop_gpu_addr + (i * MEC_HPD_SIZE * 2);
+	eop_gpu_addr = rdev->mec.hpd_eop_gpu_addr;
 
-		cik_srbm_select(rdev, me, pipe, 0, 0);
+	cik_srbm_select(rdev, 0, 0, 0, 0);
 
-		/* write the EOP addr */
-		WREG32(CP_HPD_EOP_BASE_ADDR, eop_gpu_addr >> 8);
-		WREG32(CP_HPD_EOP_BASE_ADDR_HI, upper_32_bits(eop_gpu_addr) >> 8);
+	/* write the EOP addr */
+	WREG32(CP_HPD_EOP_BASE_ADDR, eop_gpu_addr >> 8);
+	WREG32(CP_HPD_EOP_BASE_ADDR_HI, upper_32_bits(eop_gpu_addr) >> 8);
 
-		/* set the VMID assigned */
-		WREG32(CP_HPD_EOP_VMID, 0);
+	/* set the VMID assigned */
+	WREG32(CP_HPD_EOP_VMID, 0);
+
+	/* set the EOP size, register value is 2^(EOP_SIZE+1) dwords */
+	tmp = RREG32(CP_HPD_EOP_CONTROL);
+	tmp &= ~EOP_SIZE_MASK;
+	tmp |= order_base_2(MEC_HPD_SIZE / 8);
+	WREG32(CP_HPD_EOP_CONTROL, tmp);
 
-		/* set the EOP size, register value is 2^(EOP_SIZE+1) dwords */
-		tmp = RREG32(CP_HPD_EOP_CONTROL);
-		tmp &= ~EOP_SIZE_MASK;
-		tmp |= order_base_2(MEC_HPD_SIZE / 8);
-		WREG32(CP_HPD_EOP_CONTROL, tmp);
-	}
-	cik_srbm_select(rdev, 0, 0, 0, 0);
 	mutex_unlock(&rdev->srbm_mutex);
 
 	/* init the queues.  Just two for now. */
@@ -5874,8 +5869,13 @@ int cik_ib_parse(struct radeon_device *rdev, struct radeon_ib *ib)
  */
 int cik_vm_init(struct radeon_device *rdev)
 {
-	/* number of VMs */
-	rdev->vm_manager.nvm = 16;
+	/*
+	 * number of VMs
+	 * VMID 0 is reserved for System
+	 * radeon graphics/compute will use VMIDs 1-7
+	 * amdkfd will use VMIDs 8-15
+	 */
+	rdev->vm_manager.nvm = RADEON_NUM_OF_VMIDS;
 	/* base offset of vram pages */
 	if (rdev->flags & RADEON_IS_IGP) {
 		u64 tmp = RREG32(MC_VM_FB_OFFSET);
diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h
index 0c6e1b5..fae4d0c 100644
--- a/drivers/gpu/drm/radeon/cikd.h
+++ b/drivers/gpu/drm/radeon/cikd.h
@@ -30,6 +30,8 @@
 #define CIK_RB_BITMAP_WIDTH_PER_SH     2
 #define HAWAII_RB_BITMAP_WIDTH_PER_SH  4
 
+#define RADEON_NUM_OF_VMIDS	8
+
 /* DIDT IND registers */
 #define DIDT_SQ_CTRL0                                     0x0
 #       define DIDT_CTRL_EN                               (1 << 0)
-- 
1.9.1


  reply	other threads:[~2014-08-05 15:31 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-05 15:30 [PATCH v3 00/23] AMDKFD Kernel Driver Oded Gabbay
2014-08-05 15:30 ` Oded Gabbay [this message]
2014-08-05 15:30 ` [PATCH v3 02/23] drm/radeon/cik: Don't touch int of pipes 1-7 Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 03/23] drm/radeon: Report doorbell configuration to amdkfd Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 04/23] drm/radeon: adding synchronization for GRBM GFX Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 05/23] drm/radeon: Add radeon <--> amdkfd interface Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 06/23] Update MAINTAINERS and CREDITS files with amdkfd info Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 07/23] amdkfd: Add IOCTL set definitions of amdkfd Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 08/23] amdkfd: Add amdkfd skeleton driver Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 09/23] amdkfd: Add topology module to amdkfd Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 10/23] amdkfd: Add basic modules " Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 11/23] amdkfd: Add binding/unbinding calls to amd_iommu driver Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 12/23] amdkfd: Add queue module Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 13/23] amdkfd: Add mqd_manager module Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 14/23] amdkfd: Add kernel queue module Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 15/23] amdkfd: Add module parameter of scheduling policy Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 16/23] amdkfd: Add packet manager module Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 17/23] amdkfd: Add process queue " Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 18/23] amdkfd: Add device " Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 19/23] amdkfd: Add interrupt handling module Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 20/23] amdkfd: Implement the create/destroy/update queue IOCTLs Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 21/23] amdkfd: Implement the Set Memory Policy IOCTL Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 22/23] amdkfd: Implement the Get Clock Counters IOCTL Oded Gabbay
2014-08-05 15:30 ` [PATCH v3 23/23] amdkfd: Implement the Get Process Aperture IOCTL Oded Gabbay
2014-08-05 17:11 ` [PATCH v3 00/23] AMDKFD Kernel Driver David Herrmann
2014-08-05 18:35   ` Oded Gabbay
2014-09-26 11:02     ` Oded Gabbay
2014-08-05 17:51 ` Jerome Glisse
2014-08-05 18:39   ` Bridgman, John

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1407252651-3539-2-git-send-email-oded.gabbay@amd.com \
    --to=oded.gabbay@amd.com \
    --cc=Andrew.Lewycky@amd.com \
    --cc=John.Bridgman@amd.com \
    --cc=airlied@linux.ie \
    --cc=akpm@linux-foundation.org \
    --cc=alexdeucher@gmail.com \
    --cc=deathsimple@vodafone.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=j.glisse@gmail.com \
    --cc=joro@8bytes.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michel.daenzer@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome