Re: [Intel-gfx] [PATCH 13/19] arch/riscv: rename internal name __xchg to __arch_xchg

2023-02-14 Thread Palmer Dabbelt
ptr)) _x_ = (x); \ - (__typeof__(*(ptr))) __xchg((ptr), _x_, sizeof(*(ptr)));\ + (__typeof__(*(ptr))) __arch_xchg((ptr), _x_, sizeof(*(ptr))); \ }) #define xchg32(ptr, x) \ Acked-by: Palmer Dabbelt

Re: [Intel-gfx] [PATCH 13/19] arch/riscv: rename internal name __xchg to __arch_xchg

2022-12-29 Thread Palmer Dabbelt
ptr)) _x_ = (x); \ - (__typeof__(*(ptr))) __xchg((ptr), _x_, sizeof(*(ptr)));\ + (__typeof__(*(ptr))) __arch_xchg((ptr), _x_, sizeof(*(ptr))); \ }) #define xchg32(ptr, x) \ Acked-by: Palmer Dabbelt Thanks!

Re: [Intel-gfx] [PATCH] drm/i915: Perform link quality check unconditionally during long pulse

2017-02-22 Thread Palmer Dabbelt
o let's >> > > > just ignore that piece of information and do the retrain >> > > > unconditionally. We do of course still check whether the link is >> > > > supposed to be running or not. >> > > > >> > > > Cc: sta...@vger.kern

Re: [Intel-gfx] [PATCH] drm/i915: Perform link quality check unconditionally during long pulse

2017-02-16 Thread Palmer Dabbelt
60.00 640x480 59.94 > > Cc: sta...@vger.kernel.org > Cc: Palmer Dabbelt <pal...@dabbelt.com> > Reported-by: Palmer Dabbelt <pal...@dabbelt.com> > References: > https://lists.freedesktop.org/archives/intel-gfx/2017-February/119779.html > Signed-off-by: Vi

Re: [Intel-gfx] [PATCH] drm/i915: Fix DisplayPort Hotplug

2017-02-16 Thread Palmer Dabbelt
On Tue, Feb 14, 2017 at 11:00 AM, Ville Syrjälä <ville.syrj...@linux.intel.com> wrote: > On Tue, Feb 14, 2017 at 10:48:10AM -0800, Palmer Dabbelt wrote: >> On Tue, 14 Feb 2017 07:01:54 PST (-0800), ville.syrj...@linux.intel.com >> wrote: >> > On Fri, Feb 10, 20

Re: [Intel-gfx] [PATCH] drm/i915: Fix DisplayPort Hotplug

2017-02-14 Thread Palmer Dabbelt
On Tue, 14 Feb 2017 07:01:54 PST (-0800), ville.syrj...@linux.intel.com wrote: > On Fri, Feb 10, 2017 at 02:44:20PM -0800, Palmer Dabbelt wrote: >> DisplayPort no longer hotplugs on my machine (a 2014 MacBook Pro >> attached to an ASUS PB287Q). I believe the problem is t

[Intel-gfx] [PATCH] drm/i915: Fix DisplayPort Hotplug

2017-02-13 Thread Palmer Dabbelt
d during modes enumeration as well which will result in multiple dpcd operations. So this patch tries to solve both these by bringing all DPCD operations in one single function and make intel_dp_detect use existing values instead of repeating same steps. Signed-off-by: Palmer Dabbelt