Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes, in particular in the
context in which this code is being used.
So, replace the following form:
sizeof(*sparse) + (nr_areas * sizeof(*sparse->areas)
with:
struct_size(sparse, area
>-Original Message-
>From: Wajdeczko, Michal
>Sent: Thursday, May 23, 2019 4:31 PM
>To: intel-gfx@lists.freedesktop.org
>Cc: Wajdeczko, Michal ; Ceraolo Spurio, Daniele
>; Joonas Lahtinen
>; Srivatsa, Anusha
>; Ye, Tony
>Subject: [PATCH v4 12/22] drm/i915/huc: Define HuC firmware version
r you to fetch changes up to c0a74c732568ad347f7b3de281922808dab30504:
drm/i915: Update DRIVER_DATE to 20190524 (2019-05-24 20:35:22 +0300)
Features:
- Engine discovery query (Tvrtko)
- Support for DP YCbCr4:2:0 outputs (Gwan-
Hi Jani
> Sometimes it's useful to be able to explicitly ensure certain headers
> remain self-contained, i.e. that they are compilable as standalone
> units, by including and/or forward declaring everything they depend on.
>
> Add special target header-test-y where individual Makefiles can add
>
The next patch in this series uses intel_fuzzy_clock_check from the
vlv_dsi.c code.
Signed-off-by: Hans de Goede
---
drivers/gpu/drm/i915/intel_display.c | 2 +-
drivers/gpu/drm/i915/intel_drv.h | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_d
Prior to this commit we fail to init the DSI panel on the GPD MicroPC:
https://www.indiegogo.com/projects/gpd-micropc-6-inch-handheld-industry-laptop#/
The problem is intel_dsi_vbt_init() failing with the following error:
*ERROR* Burst mode freq is less than computed
The pclk in the VBT panel mod
On Fri, May 24, 2019 at 07:49:07PM +0300, Imre Deak wrote:
> On Fri, May 24, 2019 at 07:27:54PM +0300, Martin Peres wrote:
> > On 23/05/2019 16:08, Imre Deak wrote:
> > > An IO failure happens if the sink is unplugged. This scenario shouldn't
> > > be logged with error level, since it is not a user
REG_BIT() and REG_GENMASK() were intended to work with both constant
expressions and otherwise, with the former having extra compile time
checks for the bit ranges. Incredibly, the result of
__builtin_constant_p() is not an integer constant expression when given
a non-constant expression, leading t
On Fri, May 24, 2019 at 11:32:36AM -0700, Manasi Navare wrote:
> On Fri, May 24, 2019 at 07:49:07PM +0300, Imre Deak wrote:
> > On Fri, May 24, 2019 at 07:27:54PM +0300, Martin Peres wrote:
> > > On 23/05/2019 16:08, Imre Deak wrote:
> > > > An IO failure happens if the sink is unplugged. This scen
Quoting Jani Nikula (2019-05-24 19:52:53)
> REG_BIT() and REG_GENMASK() were intended to work with both constant
> expressions and otherwise, with the former having extra compile time
> checks for the bit ranges. Incredibly, the result of
> __builtin_constant_p() is not an integer constant expressi
Quoting Ville Syrjala (2019-04-15 15:16:41)
> From: Ville Syrjälä
>
> Since SKL the eLLC has been sitting on the far side of the system
> agent, meaning the display engine can utilize it. Let's enable that.
>
> I chose WB for the caching mode, because my numbers are indicating
> that WT might ac
From: Colin Ian King
Currently when the allocation of ppgtt->work fails the error return
path via err_free returns an uninitialized value in err. Fix this
by setting err to the appropriate error return of -ENOMEM.
Addresses-Coverity: ("Uninitialized scalar variable")
Fixes: d3622099c76f ("drm/i9
Quoting Colin King (2019-05-24 22:26:27)
> From: Colin Ian King
>
> Currently when the allocation of ppgtt->work fails the error return
> path via err_free returns an uninitialized value in err. Fix this
> by setting err to the appropriate error return of -ENOMEM.
>
> Addresses-Coverity: ("Unini
== Series Details ==
Series: drm/i915/gtt: Always acquire struct_mutex for gen6_ppgtt_cleanup
URL : https://patchwork.freedesktop.org/series/61012/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6132_full -> Patchwork_13076_full
=
On Fri, May 24, 2019 at 10:04:10PM +0300, Imre Deak wrote:
> On Fri, May 24, 2019 at 11:32:36AM -0700, Manasi Navare wrote:
> > On Fri, May 24, 2019 at 07:49:07PM +0300, Imre Deak wrote:
> > > On Fri, May 24, 2019 at 07:27:54PM +0300, Martin Peres wrote:
> > > > On 23/05/2019 16:08, Imre Deak wrote
Hi Hans,
I love your patch! Perhaps something to improve:
[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on v5.2-rc1 next-20190524]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system]
url:
https://github.com
Hi Hans,
I love your patch! Yet something to improve:
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on v5.2-rc1 next-20190524]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system]
url:
https://github.com/0day-ci
Although EHL introduces a new PCH, the South Display part of the PCH
that we care about is nearly identical to ICP, just with some pins
remapped. Most notably, Port C is mapped to the pins that ICP uses for
TC Port 1.
Signed-off-by: Matt Roper
---
drivers/gpu/drm/i915/i915_drv.c | 8
== Series Details ==
Series: series starting with [01/10] drm/i915/dmc: use kernel types
URL : https://patchwork.freedesktop.org/series/61016/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6132_full -> Patchwork_13077_full
Reviewed-by: Tony Ye
> 在 2019年5月24日,上午7:32,Wajdeczko, Michal 写道:
>
> Define HuC firmware version for Icelake.
>
> Signed-off-by: Michal Wajdeczko
> Cc: Daniele Ceraolo Spurio
> Cc: Joonas Lahtinen
> Cc: Anusha Srivatsa
> Cc: Tony Ye
>
> v2: 8.4.3238 is now available
> ---
> drivers/gpu/d
== Series Details ==
Series: drm/i915: timeline semaphore support
URL : https://patchwork.freedesktop.org/series/61032/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6132_full -> Patchwork_13078_full
Summary
---
**SU
== Series Details ==
Series: drm/i915: Tune down link train error messages due to IO failure
URL : https://patchwork.freedesktop.org/series/61039/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6132_full -> Patchwork_13079_full
==
== Series Details ==
Series: drm/i915: Keep user GGTT alive for a minimum of 250ms (rev2)
URL : https://patchwork.freedesktop.org/series/61047/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_6132_full -> Patchwork_13081_full
== Series Details ==
Series: series starting with [v4,1/2] drm/i915/gtt: grab wakeref in
gen6_alloc_va_range
URL : https://patchwork.freedesktop.org/series/61055/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6133_full -> Patchwork_13083_full
=
101 - 124 of 124 matches
Mail list logo