Re: linux-firmware: add Qualcomm Adreno a3xx firmware

2017-09-07 Thread Kyle McMartin
On Wed, Sep 06, 2017 at 04:36:01PM +0200, Nicolas Dechesne wrote: > Hi, > > This pull request adds firmware for adreno a3xx GPU found for example > on the APQ8016 chipset, used on the Dragonboard 410c. > > The following changes since commit 9d40a17beaf271e6ad47a5e714a296100eef4692: > >

[PATCH] radeon: Update Kaveri MEC firmware to #396

2015-03-18 Thread Kyle McMartin
On Sat, Mar 14, 2015 at 12:51:19AM +0200, Oded Gabbay wrote: > This patch updates the Kaveri MEC firmware to #396 (from #391). > The MEC firmware is mainly used for amdkfd - AMD's HSA Linux kernel driver. > > Signed-off-by: Oded Gabbay applied, thanks.

[PATCH] drm/radeon: delete unused PTE_* defines

2014-09-16 Thread Kyle McMartin
from include/drm/drmP.h:51, from drivers/gpu/drm/radeon/r600_cs.c:29: ./arch/arm64/include/asm/pgtable.h:27:0: note: this is the location of the previous definition #define PTE_VALID (_AT(pteval_t, 1) << 0) ^ Signed-off-by: Kyle McMartin --- a/drivers/

[PATCH] radeon: si_dpm.c: avoid a signed 64-bit divide

2013-08-02 Thread Kyle McMartin
On Fri, Aug 02, 2013 at 05:14:52PM +, Deucher, Alexander wrote: > The fix is already queued in my tree: > http://lists.freedesktop.org/archives/dri-devel/2013-August/042668.html > thanks. ;-)

[PATCH] radeon: si_dpm.c: avoid a signed 64-bit divide

2013-08-02 Thread Kyle McMartin
Hit a compile failure here referencing divdi3 on i686. Signed-off-by: Kyle McMartin --- a/drivers/gpu/drm/radeon/si_dpm.c +++ b/drivers/gpu/drm/radeon/si_dpm.c @@ -1767,7 +1767,7 @@ static void si_calculate_leakage_for_v_and_t_formula(const struct ni_leakage_coe s64 temperature

[PATCH] radeon: si_dpm.c: avoid a signed 64-bit divide

2013-08-02 Thread Kyle McMartin
Hit a compile failure here referencing divdi3 on i686. Signed-off-by: Kyle McMartin k...@redhat.com --- a/drivers/gpu/drm/radeon/si_dpm.c +++ b/drivers/gpu/drm/radeon/si_dpm.c @@ -1767,7 +1767,7 @@ static void si_calculate_leakage_for_v_and_t_formula(const struct ni_leakage_coe s64

Re: [PATCH] radeon: si_dpm.c: avoid a signed 64-bit divide

2013-08-02 Thread Kyle McMartin
On Fri, Aug 02, 2013 at 05:14:52PM +, Deucher, Alexander wrote: The fix is already queued in my tree: http://lists.freedesktop.org/archives/dri-devel/2013-August/042668.html thanks. ;-) ___ dri-devel mailing list dri-devel@lists.freedesktop.org

[PATCH] i915: reprogram power monitoring registers on resume

2010-11-04 Thread Kyle McMartin
From: Kyle McMartin k...@redhat.com Fixes issue where i915_gfx_val was reporting values several orders of magnitude higher than physically possible (without leaving scorch marks on my thighs at least.) Signed-off-by: Kyle McMartin k...@redhat.com Reviewed-by: Jesse Barnes jbar

[PATCH] i915: reprogram power monitoring registers on resume

2010-11-03 Thread Kyle McMartin
From: Kyle McMartin <k...@redhat.com> Fixes issue where i915_gfx_val was reporting values several orders of magnitude higher than physically possible (without leaving scorch marks on my thighs at least.) Signed-off-by: Kyle McMartin Reviewed-by: Jesse Barnes --- drivers/gpu/dr