Hi Tobias,
On 2017-09-29 15:24, Tobias Jakobi wrote:
Hello Marek,
I just tested this series, and I noticed a lot of these lines:
exynos-sysmmu 11a4.sysmmu: restoring state
exynos-sysmmu 11a4.sysmmu: saving state
I guess it would make sense to enable autosuspend for runtime PM in each
On 02/10/17 06:58, Daniel Thompson wrote:
On 01/10/17 18:26, Meghana Madhyastha wrote:
Add IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE) as part of the
if directive for the function declaration of
of_find_backlight_by_node in order to avoid module dependency
errors.
Module dependency errors? Does
On 01/10/17 18:26, Meghana Madhyastha wrote:
Add IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE) as part of the
if directive for the function declaration of
of_find_backlight_by_node in order to avoid module dependency
errors.
Module dependency errors? Does you mean mean use of undefined symbols?
On Sun, Oct 01, 2017 at 08:52:20PM -0400, Jérémy Lefaure wrote:
> On Mon, 2 Oct 2017 09:01:31 +1100
> "Tobin C. Harding" wrote:
>
> > > In order to reduce the size of the To: and Cc: lines, each patch of the
> > > series is sent only to the maintainers and lists concerned by the patch.
> > > This
https://bugzilla.kernel.org/show_bug.cgi?id=196615
--- Comment #17 from Peter Spiess-Knafl (p...@autistici.org) ---
Same for me here. Arch 4.13.3. Was the original patch reapplied?
--
You are receiving this mail because:
You are watching the assignee of the bug.
_
nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged
with the main GeForce GPU families.
v2:
- Qualify that support is Tegra K1+ (Martin Peres)
Signed-off-by: Rhys Kidd
Reviewed-by: Martin Peres
Acked-by: Pierre Moreau
---
drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +-
1
Starting with the drm merge af3c8d98508d37541d4bf57f13a984a7f73a328c for
4.13-rc1, the NVidia NVS3100M display on Dell Latitude E6410 had a
nullptr crash on startup. As a result later the suspend2ram was locking
up. Traced to a null ptr in nv50_mstm_service(), which seems to be
called only from
On some devices the LCD panel is mounted in the casing in such a way that
the up/top side of the panel does not match with the top side of the
device (e.g. it is mounted upside-down).
This commit adds the necessary infra for lcd-panel drm_connector-s to
have a "panel orientation" property to commu
Hi,
Dne sobota, 30. september 2017 ob 13:58:03 CEST je Alexey Kardashevskiy
napisal(a):
> On 21/09/17 06:01, Jernej Skrabec wrote:
> > [added media mailing list due to CEC question]
> >
> > This patch series adds a HDMI glue driver for Allwinner H3 SoC. For now,
> > only video and CEC functional
Hi All,
This is a resend of v2 of my panel-orientation drm connector property
series. I already send this out 2 weeks ago from my Red Hat email, but
that does not get picked up by the drm subsys scripts to run tests, so
hence this resend from my gmail.
The 2 biggest changes in v2 are:
1) Add sup
Ideally we could use the VBT for this, that would be simple, in
intel_dsi_init() check dev_priv->vbt.dsi.config->rotation, set
connector->display_info.panel_orientation accordingly and call
drm_connector_init_panel_orientation_property(), done.
Unfortunately vbt.dsi.config->rotation is always 0 ev
On Fri, Sep 29, 2017 at 02:29:31PM +0200, Noralf Trønnes wrote:
>
> Den 29.09.2017 09.25, skrev Daniel Vetter:
> >On Wed, Sep 27, 2017 at 01:38:46AM -0600, Haneen Mohammed wrote:
> >>Remove drmP.h as it is not needed anymore since nothing it
> >>defines is used in these files.
> >>
> >>Signed-off-
Apply the "panel orientation" drm connector prop to the primary plane,
so that fbcon and fbdev using userspace programs display the right way
up.
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=94894
Signed-off-by: Hans de Goede
---
Changes in v2:
-New patch in v2 of this patch-set
---
drive
Some x86 clamshell design devices use portrait tablet LCD panels and a
display engine which cannot (transparently) rotate in hardware, so we
need to rotate things in software / let user space deal with this.
The fbcon code has a set of DMI based quirks to automatically detect
such tablet LCD panel
On 01/10/17 04:56, Jernej Škrabec wrote:
> Hi,
>
> Dne sobota, 30. september 2017 ob 13:58:03 CEST je Alexey Kardashevskiy
> napisal(a):
>> On 21/09/17 06:01, Jernej Skrabec wrote:
>>> [added media mailing list due to CEC question]
>>>
>>> This patch series adds a HDMI glue driver for Allwinner H
On Sun, Oct 01, 2017 at 04:47:26PM +0200, Noralf Trønnes wrote:
>
> Den 01.10.2017 15.34, skrev Meghana Madhyastha:
> >On Sun, Oct 01, 2017 at 03:26:36PM +0200, Noralf Trønnes wrote:
> >>Den 01.10.2017 06.14, skrev Meghana Madhyastha:
> >>>On Sat, Sep 30, 2017 at 09:04:57PM +0200, Noralf Trønnes w
Add devm_drm_of_find_backlight and the corresponding release
function because some drivers use devres versions of functions
for requiring device resources.
Signed-off-by: Meghana Madhyastha
---
Changes in v7:
-None
drivers/gpu/drm/drm_of.c | 40 ++
Rename tinydrm_of_find_backlight to drm_of_find_backlight
and move it into drm_of.c from tinydrm-helpers.c. This is
because other drivers in the drm subsystem might need to call
this function. In that case and otherwise, it is better from
an organizational point of view to move it into drm_of.c alo
Add IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE) as part of the
if directive for the function declaration of
of_find_backlight_by_node in order to avoid module dependency
errors.
Signed-off-by: Meghana Madhyastha
---
Changes in v7:
-This patch did not exist in v6.
include/linux/backlight.h | 2 +-
Move tinydrm_of_find_backlight to drm_of.c and rename it to
drm_of_find_backlight for better organizational structure.
Changes in v7:
-Move the function definitions/declarations back to drm_of.h
and modify the config option for of_find_backlight_by_node
in linux/backlight.h to resolve the build
https://bugs.freedesktop.org/show_bug.cgi?id=102009
--- Comment #7 from Markus ---
I tried to obtain debug information from Mesa but was unable to do so (i.e.
starting Blender with `MESA_DEBUG=context CYCLES_OPENCL_SPLIT_KERNEL_TEST=1
./blender` did not generate any visible debug information).
W
https://bugs.freedesktop.org/show_bug.cgi?id=102009
--- Comment #6 from Markus ---
Created attachment 134601
--> https://bugs.freedesktop.org/attachment.cgi?id=134601&action=edit
clinfo - Ubuntu 17.10
--
You are receiving this mail because:
You are the assignee for the bug.___
https://bugs.freedesktop.org/show_bug.cgi?id=102009
--- Comment #5 from Markus ---
Created attachment 134600
--> https://bugs.freedesktop.org/attachment.cgi?id=134600&action=edit
glxinfo - Ubuntu 17.10
--
You are receiving this mail because:
You are the assignee for the bug.__
https://bugs.freedesktop.org/show_bug.cgi?id=102009
--- Comment #4 from Markus ---
Created attachment 134599
--> https://bugs.freedesktop.org/attachment.cgi?id=134599&action=edit
gdb Stacktrace - Ubuntu 17.10
--
You are receiving this mail because:
You are the assignee for the bug.___
On Sat, Sep 30, 2017 at 6:42 PM, Linus Walleij wrote:
> On Sun, Sep 24, 2017 at 10:36 PM, Rob Herring wrote:
>> On Wed, Sep 20, 2017 at 6:56 AM, Linus Walleij
>> wrote:
>>> On Sat, Sep 2, 2017 at 11:17 PM, Linus Walleij
>>> wrote:
>
> Normally, we the physical panel is described which wou
Den 25.09.2017 18.25, skrev Eric Anholt:
Noralf Trønnes writes:
This adds helpers for drivers that don't subclass drm_framebuffer and
are backed by drm_gem_object(s). drm_fb_cma_helper is converted to use
the helpers.
Ack's have been trickling in the last month but seem to have stopped
now,
Den 01.10.2017 15.34, skrev Meghana Madhyastha:
On Sun, Oct 01, 2017 at 03:26:36PM +0200, Noralf Trønnes wrote:
Den 01.10.2017 06.14, skrev Meghana Madhyastha:
On Sat, Sep 30, 2017 at 09:04:57PM +0200, Noralf Trønnes wrote:
Den 30.09.2017 19.12, skrev Meghana Madhyastha:
Rename tinydrm_of_fi
https://bugs.freedesktop.org/show_bug.cgi?id=103056
Bug ID: 103056
Summary: Artifacts in CS:GO
Product: Mesa
Version: git
Hardware: Other
OS: Linux (All)
Status: NEW
Severity: normal
Priority: me
You are right, Tegra should probably be part of the description, even if we do
not support pre-K1 Tegras.
Acked-by: Pierre Moreau
On 2017-08-11 — 10:56, Rhys Kidd wrote:
> nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged
> with the main GeForce GPU families.
>
> Signe
On 11/08/17 13:56, Rhys Kidd wrote:
> nouveau supports the Tegra K1 and higher after the SoC-based GPUs converged
> with the main GeForce GPU families.
>
> Signed-off-by: Rhys Kidd
> ---
> drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --g
On Sun, Oct 01, 2017 at 03:26:36PM +0200, Noralf Trønnes wrote:
>
> Den 01.10.2017 06.14, skrev Meghana Madhyastha:
> >On Sat, Sep 30, 2017 at 09:04:57PM +0200, Noralf Trønnes wrote:
> >>Den 30.09.2017 19.12, skrev Meghana Madhyastha:
> >>>Rename tinydrm_of_find_backlight to drm_of_find_backlight
Den 01.10.2017 06.14, skrev Meghana Madhyastha:
On Sat, Sep 30, 2017 at 09:04:57PM +0200, Noralf Trønnes wrote:
Den 30.09.2017 19.12, skrev Meghana Madhyastha:
Rename tinydrm_of_find_backlight to drm_of_find_backlight
and move it into drm_of.c from tinydrm-helpers.c. This is
because other driv
https://bugs.freedesktop.org/show_bug.cgi?id=98324
--- Comment #9 from Darren Salt ---
Created attachment 134594
--> https://bugs.freedesktop.org/attachment.cgi?id=134594&action=edit
Apparent EDID errors
HDMI monitor set to 1920×1080, but on unblanking gets set to 1152×864.
This is the second
2017-09-29 16:38 GMT+02:00 Lucas Stach :
> This comment is outdated as the driver is taking care about clock
> gating and the pulse eater for quite some time already.
>
> Signed-off-by: Lucas Stach
Reviewed-by: Christian Gmeiner
> ---
> drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 7 ---
> 1 fi
2017-09-29 16:38 GMT+02:00 Lucas Stach :
> The reset path wants to initialize the clock control register regardless
> of the DYNAMIC_FREQUENCY_SCALING feature, so don't call clock update, but
> explicitly load the register.
>
> Also disabling of the debug registers is moved into the reset function,
Am 29.09.2017 um 21:50 schrieb Andrey Grodzovsky:
From: Andrey Grodzovsky
Adding initial tests for locks detection when SW
scheduler FIFO is full.
The test works by submitting a batch of identical commands which make the CP
stall waiting for condition to become true. The condition is later sat
https://bugs.freedesktop.org/show_bug.cgi?id=102955
Christian Lanig changed:
What|Removed |Added
CC||freedesktop@lanig.email
--- Comment #
37 matches
Mail list logo