From: Bjorn Helgaas <bhelgaas@google.com>
To: "Deucher, Alexander" <Alexander.Deucher@amd.com>
Cc: Yijing Wang <wangyijing@huawei.com>,
David Airlie <airlied@linux.ie>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
Hanjun Guo <guohanjun@huawei.com>,
"Koenig, Christian" <Christian.Koenig@amd.com>
Subject: Re: [PATCH 6/6] radeon: Use pcie_get_readrq() and pcie_set_readrq() to simplify code
Date: Mon, 7 Oct 2013 12:30:25 -0600 [thread overview]
Message-ID: <CAErSpo4z1VmYwrCQv+vgyNET+1eFirEV3hAnbpF78DW+N18Nig@mail.gmail.com> (raw)
In-Reply-To: <A3397C8B8B789E45844E7EC5DEAD89D02E80EE9B@satlexdag05.amd.com>
On Mon, Oct 7, 2013 at 6:15 AM, Deucher, Alexander
<Alexander.Deucher@amd.com> wrote:
>> -----Original Message-----
>> From: Bjorn Helgaas [mailto:bhelgaas@google.com]
>> Sent: Friday, October 04, 2013 4:45 PM
>> To: Yijing Wang
>> Cc: David Airlie; linux-kernel@vger.kernel.org; linux-pci@vger.kernel.org;
>> Hanjun Guo; Deucher, Alexander; Koenig, Christian
>> Subject: Re: [PATCH 6/6] radeon: Use pcie_get_readrq() and
>> pcie_set_readrq() to simplify code
>>
>> [-cc unrelated folks, +cc Alex, Christian]
>>
>> On Mon, Sep 9, 2013 at 7:13 AM, Yijing Wang <wangyijing@huawei.com>
>> wrote:
>> > Use pcie_get_readrq() and pcie_set_readrq() functions to simplify code.
>> >
>> > Signed-off-by: Yijing Wang <wangyijing@huawei.com>
>>
>> I believe the following patch is correct, and I'd be happy to merge it
>> via the PCI tree along with the rest of this series.
>>
>> But it'd be better to have an ack from Alex, and he might prefer to
>> merge it directly.
>
> Patch looks correct to me. Feel free to merge it via the pci tree.
>
> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Thanks, I'll add your Reviewed-by and merge it.
Bjorn
>> > ---
>> > drivers/gpu/drm/radeon/evergreen.c | 19 ++++++-------------
>> > 1 files changed, 6 insertions(+), 13 deletions(-)
>> >
>> > diff --git a/drivers/gpu/drm/radeon/evergreen.c
>> b/drivers/gpu/drm/radeon/evergreen.c
>> > index d5b49e3..b191f92 100644
>> > --- a/drivers/gpu/drm/radeon/evergreen.c
>> > +++ b/drivers/gpu/drm/radeon/evergreen.c
>> > @@ -1169,23 +1169,16 @@ int evergreen_set_uvd_clocks(struct
>> radeon_device *rdev, u32 vclk, u32 dclk)
>> >
>> > void evergreen_fix_pci_max_read_req_size(struct radeon_device *rdev)
>> > {
>> > - u16 ctl, v;
>> > - int err;
>> > -
>> > - err = pcie_capability_read_word(rdev->pdev, PCI_EXP_DEVCTL, &ctl);
>> > - if (err)
>> > - return;
>> > -
>> > - v = (ctl & PCI_EXP_DEVCTL_READRQ) >> 12;
>> > + int readrq;
>> > + u16 v;
>> >
>> > + readrq = pcie_get_readrq(rdev->pdev);
>> > + v = ffs(readrq) - 8;
>> > /* if bios or OS sets MAX_READ_REQUEST_SIZE to an invalid value, fix it
>> > * to avoid hangs or perfomance issues
>> > */
>> > - if ((v == 0) || (v == 6) || (v == 7)) {
>> > - ctl &= ~PCI_EXP_DEVCTL_READRQ;
>> > - ctl |= (2 << 12);
>> > - pcie_capability_write_word(rdev->pdev, PCI_EXP_DEVCTL, ctl);
>> > - }
>> > + if ((v == 0) || (v == 6) || (v == 7))
>> > + pcie_set_readrq(rdev->pdev, 512);
>> > }
>> >
>> > static bool dce4_is_in_vblank(struct radeon_device *rdev, int crtc)
>> > --
>> > 1.7.1
>> >
>> >
>
>
prev parent reply other threads:[~2013-10-07 18:30 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-09 13:13 [PATCH 0/6] Simplify some mps and mrrs setting related code Yijing Wang
2013-09-09 13:13 ` [PATCH 1/6] PCI: Export pcie_set_mps() and pcie_get_mps() Yijing Wang
2013-09-09 13:13 ` [PATCH 2/6] title/pci: use cached pci_dev->pcie_mpss to simplify code Yijing Wang
2013-09-09 13:13 ` [PATCH 3/6] IB/qib: Use pci_is_root_bus() to check whether it is a root bus Yijing Wang
2013-09-09 14:51 ` Marciniszyn, Mike
2013-09-09 13:13 ` [PATCH 4/6] IB/qib: Use pcie_set_mps() and pcie_get_mps() to simplify code Yijing Wang
2013-09-09 14:55 ` Marciniszyn, Mike
2013-09-10 1:04 ` Yijing Wang
2013-09-24 20:38 ` Bjorn Helgaas
2013-09-30 14:56 ` Marciniszyn, Mike
2013-10-04 20:49 ` Bjorn Helgaas
2013-09-24 20:39 ` Bjorn Helgaas
2013-09-09 13:13 ` [PATCH 5/6] staging/et131x: Use cached pci_dev->pcie_mpss and pcie_set_readrq() to simplif code Yijing Wang
2013-09-09 15:19 ` Greg Kroah-Hartman
2013-09-10 12:53 ` Mark Einon
2013-09-09 13:13 ` [PATCH 6/6] radeon: Use pcie_get_readrq() and pcie_set_readrq() to simplify code Yijing Wang
2013-10-04 20:44 ` Bjorn Helgaas
2013-10-07 12:15 ` Deucher, Alexander
2013-10-07 18:30 ` Bjorn Helgaas [this message]
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=CAErSpo4z1VmYwrCQv+vgyNET+1eFirEV3hAnbpF78DW+N18Nig@mail.gmail.com \
--to=bhelgaas@google.com \
--cc=Alexander.Deucher@amd.com \
--cc=Christian.Koenig@amd.com \
--cc=airlied@linux.ie \
--cc=guohanjun@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=wangyijing@huawei.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;
as well as URLs for NNTP newsgroup(s).