From: "Christian König" <deathsimple@vodafone.de>
To: Alex Deucher <alexdeucher@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 2/5] drm/radeon: fix cayman_vm_set_page
Date: Mon, 22 Oct 2012 17:24:27 +0200 [thread overview]
Message-ID: <5085652B.50909@vodafone.de> (raw)
In-Reply-To: <CADnq5_NSuNHi1XYWCwhEdDcduhcPXMQDUFg3HXBKmX6tdqB+WA@mail.gmail.com>
On 22.10.2012 17:12, Alex Deucher wrote:
> On Mon, Oct 22, 2012 at 4:55 AM, Christian König
> <deathsimple@vodafone.de> wrote:
>> Handle requests that won't fit into a single packet.
>>
>> Signed-off-by: Christian König <deathsimple@vodafone.de>
>> ---
>> drivers/gpu/drm/radeon/ni.c | 41 +++++++++++++++++++++++------------------
>> 1 file changed, 23 insertions(+), 18 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c
>> index 19b7fe1..ae6d087 100644
>> --- a/drivers/gpu/drm/radeon/ni.c
>> +++ b/drivers/gpu/drm/radeon/ni.c
>> @@ -1538,26 +1538,31 @@ void cayman_vm_set_page(struct radeon_device *rdev, uint64_t pe,
>> {
>> struct radeon_ring *ring = &rdev->ring[rdev->asic->vm.pt_ring_index];
>> uint32_t r600_flags = cayman_vm_page_flags(rdev, flags);
>> - int i;
>>
>> - radeon_ring_write(ring, PACKET3(PACKET3_ME_WRITE, 1 + count * 2));
>> - radeon_ring_write(ring, pe);
>> - radeon_ring_write(ring, upper_32_bits(pe) & 0xff);
>> - for (i = 0; i < count; ++i) {
>> - uint64_t value = 0;
>> - if (flags & RADEON_VM_PAGE_SYSTEM) {
>> - value = radeon_vm_map_gart(rdev, addr);
>> - value &= 0xFFFFFFFFFFFFF000ULL;
>> - addr += incr;
>> -
>> - } else if (flags & RADEON_VM_PAGE_VALID) {
>> - value = addr;
>> - addr += incr;
>> - }
>> + while (count) {
>> + unsigned ndw = 1 + count * 2;
>> + if (ndw > 0x3FFF)
>> + ndw = 0x3FFF;
>> +
>> + radeon_ring_write(ring, PACKET3(PACKET3_ME_WRITE, ndw));
>> + radeon_ring_write(ring, pe);
>> + radeon_ring_write(ring, upper_32_bits(pe) & 0xff);
> We need to adjust the the value of pe here if we are doing multiple loops.
Oh yes indeed, missed that cause my test code didn't actually accessed
the pages.
Going to send out a v2 soon.
Christian.
>
> Alex
>
>> + for (; ndw > 1; ndw -= 2, --count) {
>> + uint64_t value = 0;
>> + if (flags & RADEON_VM_PAGE_SYSTEM) {
>> + value = radeon_vm_map_gart(rdev, addr);
>> + value &= 0xFFFFFFFFFFFFF000ULL;
>> + addr += incr;
>> +
>> + } else if (flags & RADEON_VM_PAGE_VALID) {
>> + value = addr;
>> + addr += incr;
>> + }
>>
>> - value |= r600_flags;
>> - radeon_ring_write(ring, value);
>> - radeon_ring_write(ring, upper_32_bits(value));
>> + value |= r600_flags;
>> + radeon_ring_write(ring, value);
>> + radeon_ring_write(ring, upper_32_bits(value));
>> + }
>> }
>> }
>>
>> --
>> 1.7.9.5
>>
next prev parent reply other threads:[~2012-10-22 15:24 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-22 8:55 [PATCH 1/5] drm/radeon: fix PFP sync in vm_flush Christian König
2012-10-22 8:55 ` [PATCH 2/5] drm/radeon: fix cayman_vm_set_page Christian König
2012-10-22 15:12 ` Alex Deucher
2012-10-22 15:24 ` Christian König [this message]
2012-10-22 8:55 ` [PATCH 3/5] drm/radeon: fix si_set_page Christian König
2012-10-22 8:55 ` [PATCH 4/5] drm/radeon: remove set_page check from VM code Christian König
2012-10-22 8:55 ` [PATCH 5/5] drm/radeon: fix header size estimation in " Christian König
2012-10-22 13:50 ` [PATCH 1/5] drm/radeon: fix PFP sync in vm_flush Alex Deucher
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=5085652B.50909@vodafone.de \
--to=deathsimple@vodafone.de \
--cc=alexdeucher@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
/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 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.