All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michel Dänzer" <michel-otUistvHUpPR7s880joybQ@public.gmane.org>
To: "Marek Olšák" <maraeo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH 0/1] AMDGPU SI support almost fixed
Date: Fri, 19 Aug 2016 19:04:25 +0900	[thread overview]
Message-ID: <b5bbd4ec-b9cb-2a50-51ef-8df81bb82c56@daenzer.net> (raw)
In-Reply-To: <CAAxE2A6=633xodeSYBjmpW=5BCWZa8_qPvy2Eg-wRNrOnwGp8A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

On 19/08/16 07:00 PM, Marek Olšák wrote:
> On Fri, Aug 19, 2016 at 11:45 AM, Michel Dänzer <michel@daenzer.net> wrote:
>> On 19/08/16 06:24 PM, Marek Olšák wrote:
>>> I've added this. The dmesg message is gone, but the cursor is still missing.
>>>
>>> diff --git a/src/amdgpu_kms.c b/src/amdgpu_kms.c
>>> index 9ee48df..d9f15a4 100644
>>> --- a/src/amdgpu_kms.c
>>> +++ b/src/amdgpu_kms.c
>>> @@ -929,8 +929,14 @@ Bool AMDGPUPreInit_KMS(ScrnInfoPtr pScrn, int flags)
>>>         else
>>>                 pAMDGPUEnt->HasCRTC2 = TRUE;
>>>
>>> -       info->cursor_w = CURSOR_WIDTH_CIK;
>>> -       info->cursor_h = CURSOR_HEIGHT_CIK;
>>> +       if (info->ChipFamily >= CHIP_FAMILY_TAHITI &&
>>> +           info->ChipFamily <= CHIP_FAMILY_HAINAN) {
>>> +               info->cursor_w = CURSOR_WIDTH;
>>> +               info->cursor_h = CURSOR_HEIGHT;
>>> +       } else {
>>> +               info->cursor_w = CURSOR_WIDTH_CIK;
>>> +               info->cursor_h = CURSOR_HEIGHT_CIK;
>>> +       }
>>>
>>>         amdgpu_query_heap_size(pAMDGPUEnt->pDev, AMDGPU_GEM_DOMAIN_GTT,
>>>                                 &heap_size, &max_allocation);
>>
>> Looks good; does the HW cursor work with the modesetting driver?
> 
> No, the cursor doesn't work with modesetting either. There are no
> errors in dmesg.

Then it's probably a kernel driver issue.


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  parent reply	other threads:[~2016-08-19 10:04 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-19  9:01 [PATCH 0/1] AMDGPU SI support almost fixed Marek Olšák
     [not found] ` <1471597263-4278-1-git-send-email-maraeo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-08-19  9:01   ` [PATCH] drm/amdgpu: fix SI display support Marek Olšák
     [not found]     ` <1471597263-4278-2-git-send-email-maraeo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-08-19 21:57       ` Alex Deucher
2016-08-19  9:14   ` [PATCH 0/1] AMDGPU SI support almost fixed Michel Dänzer
     [not found]     ` <7c37526b-9b10-967c-ad34-c2975f07bb7c-otUistvHUpPR7s880joybQ@public.gmane.org>
2016-08-19  9:24       ` Marek Olšák
     [not found]         ` <CAAxE2A5_kLwXyod45cyVbqdKUorfcXJD1_Xcgq4B1EvEtjDZzA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-08-19  9:45           ` Michel Dänzer
     [not found]             ` <b902bb4a-9b97-254f-5f19-89805754e22e-otUistvHUpPR7s880joybQ@public.gmane.org>
2016-08-19 10:00               ` Marek Olšák
     [not found]                 ` <CAAxE2A6=633xodeSYBjmpW=5BCWZa8_qPvy2Eg-wRNrOnwGp8A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-08-19 10:04                   ` Michel Dänzer [this message]
     [not found]                     ` <b5bbd4ec-b9cb-2a50-51ef-8df81bb82c56-otUistvHUpPR7s880joybQ@public.gmane.org>
2016-08-19 10:07                       ` Marek Olšák
2016-08-19 14:12           ` Deucher, Alexander
2016-08-22  1:18   ` Dave Airlie
     [not found]     ` <CAPM=9tydib=-CMMsNXGHAGYGxNTZ10b0GdF31Gg9yxSgOuTxtw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-08-22 13:22       ` Marek Olšák

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=b5bbd4ec-b9cb-2a50-51ef-8df81bb82c56@daenzer.net \
    --to=michel-otuistvhuppr7s880joybq@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=maraeo-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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.