Re: [ANNOUNCE] upcoming mandated dim upgrade due to drm-intel branch change

2020-12-06 Thread Jani Nikula
On Mon, 30 Nov 2020, Jani Nikula wrote: > TL;DR: > - On 2020-12-05, drm-intel-next-queued will be decommissioned > - drm-intel committers need to start using drm-intel-next instead > - Everyone needs to upgrade dim *after* the change This has now been done. Please update dim, and start using drm-

[Bug 210467] amdgpu Vega 3 lock MCLK on 1200mhz

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210467 --- Comment #5 from Alexey (intervio...@gmail.com) --- Created attachment 293959 --> https://bugzilla.kernel.org/attachment.cgi?id=293959&action=edit lshw what other data to provide? what to debug? -- You are receiving this mail because: You

[Bug 210517] New: nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 Bug ID: 210517 Summary: nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64) Product: Drivers Version: 2.5 Kernel Version: 5.10-rc6 Hardware: All

[Bug 210517] nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 --- Comment #1 from Erhard F. (erhar...@mailbox.org) --- Created attachment 293965 --> https://bugzilla.kernel.org/attachment.cgi?id=293965&action=edit dmesg (kernel 5.9.12, PowerMac G5 11,2) -- You are receiving this mail because: You are wat

[Bug 210517] nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 --- Comment #2 from Erhard F. (erhar...@mailbox.org) --- Created attachment 293967 --> https://bugzilla.kernel.org/attachment.cgi?id=293967&action=edit kernel .config (kernel 5.10-rc6, PowerMac G5 11,2) -- You are receiving this mail because:

[Bug 210517] nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 --- Comment #3 from Erhard F. (erhar...@mailbox.org) --- Created attachment 293969 --> https://bugzilla.kernel.org/attachment.cgi?id=293969&action=edit kernel .config (kernel 5.9.12, PowerMac G5 11,2) -- You are receiving this mail because: Yo

Re: [PATCH] drm: drivers may provide multiple primary planes per CRTC

2020-12-06 Thread Simon Ser
Sorry, I think I lost track of this thread at some point and forgot about it. That said… On Friday, August 7th, 2020 at 3:06 PM, Daniel Vetter wrote: > On Fri, Aug 07, 2020 at 12:38:02PM +0300, Pekka Paalanen wrote: > > On Fri, 7 Aug 2020 11:07:06 +0200 > > Daniel Vetter wrote: > > > > > On Thu

[PATCH] drm: fix typos in plane and CRTC overviews

2020-12-06 Thread Simon Ser
Fix one missing letter, and one duplicate struct field reference. Signed-off-by: Simon Ser Cc: Daniel Vetter --- drivers/gpu/drm/drm_crtc.c | 2 +- drivers/gpu/drm/drm_plane.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/dr

[Bug 210467] amdgpu Vega 3 lock MCLK on 1200mhz

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210467 --- Comment #6 from Alexey (intervio...@gmail.com) --- Created attachment 293971 --> https://bugzilla.kernel.org/attachment.cgi?id=293971&action=edit glxinfo -- You are receiving this mail because: You are watching the assignee of the bug. ___

[PATCH] drm: rework description of primary and cursor planes

2020-12-06 Thread Simon Ser
The previous wording could be understood by user-space evelopers as "a primary/cursor plane is only compatible with a single CRTC" [1]. Reword the planes description to make it clear the DRM-internal drm_crtc.primary and drm_crtc.cursor planes are for legacy uAPI. [1]: https://github.com/swaywm/w

Re: [PATCH] drm: fix typos in plane and CRTC overviews

2020-12-06 Thread Sam Ravnborg
Hi Simon. On Sun, Dec 06, 2020 at 03:31:53PM +, Simon Ser wrote: > Fix one missing letter, and one duplicate struct field reference. > > Signed-off-by: Simon Ser > Cc: Daniel Vetter This was indeed so simple I dare to say: Reviewed-by: Sam Ravnborg

Re: [PATCH v3 1/4] irq: export kstat_irqs

2020-12-06 Thread James Bottomley
On Sun, 2020-12-06 at 17:40 +0100, Thomas Gleixner wrote: > On Sat, Dec 05 2020 at 12:39, Jarkko Sakkinen wrote: > > On Fri, Dec 04, 2020 at 06:43:37PM -0700, Jerry Snitselaar wrote: > > > To try and detect potential interrupt storms that > > > have been occurring with tpm_tis devices it was sugges

[PATCH v3 0/13] drivers/video: W=1 warning fixes

2020-12-06 Thread Sam Ravnborg
Following the great work of Lee Jones in other subsystems here is a set of patches that address all remaining W=1 warnings in drivers/video/. Lee Jones already fixed all warnings in video/backlight/ so this is mostly fbdev related fixes. The general approach used were: - Fix kernel-doc, this is of

[PATCH v3 01/13] video: fbdev: hgafb: Fix kernel-doc warnings

2020-12-06 Thread Sam Ravnborg
Fix kernel-doc comments. v2: - Updated subject (Lee) v3: - Add space after ':' (Randy) - Fix name of function in comment Signed-off-by: Sam Ravnborg Cc: Ferenc Bakonyi Cc: linux-nvi...@lists.surfsouth.com Cc: Lee Jones --- drivers/video/fbdev/hgafb.c | 10 +- 1 file changed, 5

[PATCH v3 02/13] video: fbdev: core: Fix kernel-doc warnings in fbmon + fb_notify

2020-12-06 Thread Sam Ravnborg
Fix kernel-doc warnings reported when using W=1 v2: - Improve subject (Lee) v3: - Add RETURNS documentation (Thomas) Signed-off-by: Sam Ravnborg Cc: Lee Jones Cc: Sam Ravnborg Cc: Randy Dunlap Cc: Bartlomiej Zolnierkiewicz Cc: Daniel Vetter Cc: "Alexander A. Klimov" --- drivers/video

[PATCH v3 03/13] video: fbdev: omapfb: Fix set but not used warnings in hdmi*_core

2020-12-06 Thread Sam Ravnborg
Fix a few W=1 warnings about unused assignments. Drop the unused error code. v2: - Subject updated (Lee) Signed-off-by: Sam Ravnborg Cc: Sam Ravnborg Cc: Qilong Zhang Cc: "Alexander A. Klimov" Cc: Daniel Vetter Cc: Lee Jones --- drivers/video/fbdev/omap2/omapfb/dss/hdmi4_core.c | 4 ++--

[PATCH v3 04/13] video: fbdev: uvesafb: Fix set but not used warning

2020-12-06 Thread Sam Ravnborg
Fix W=1 warning by deleting unused local variable. v2: - Updated subject (Lee) v3: - Return early in case of an error (Thomas) Signed-off-by: Sam Ravnborg Cc: Michal Januszewski Cc: linux-fb...@vger.kernel.org Cc: Lee Jones --- drivers/video/fbdev/uvesafb.c | 2 ++ 1 file changed, 2 inse

[PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU

2020-12-06 Thread Sam Ravnborg
Building fbdev drivers for sh with W=1 produces the following warning: tmiofb.c: In function ‘tmiofb_remove’: tmiofb.c:805:21: warning: variable ‘par’ set but not used This is with allmodconfig and ARCH=sh This boiled down to iounmap() defined as empty for !CONFIG_MMU. Fix this by by add

[PATCH v3 07/13] video: fbdev: mmp: Fix kernel-doc warning for lcd_spi_write

2020-12-06 Thread Sam Ravnborg
Add missing parameter and drop parameter that is not present Signed-off-by: Sam Ravnborg Cc: Sam Ravnborg Cc: Andrzej Hajda Cc: Bartlomiej Zolnierkiewicz --- drivers/video/fbdev/mmp/hw/mmp_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/mmp/hw/mmp

[PATCH v3 06/13] video: fbdev: sparc drivers: fix kernel-doc warnings for blank_mode

2020-12-06 Thread Sam Ravnborg
Fix kernel-doc warnings caused by a wrong parameter name blank_mode => blank Signed-off-by: Sam Ravnborg Cc: Sam Ravnborg --- drivers/video/fbdev/bw2.c | 2 +- drivers/video/fbdev/cg3.c | 2 +- drivers/video/fbdev/cg6.c | 2 +- drivers/video/fbdev/ffb.c | 2 +- drivers/video/fbdev/leo.c

[PATCH v3 08/13] video: fbdev: wmt_ge_rops: Fix function not declared warnings

2020-12-06 Thread Sam Ravnborg
Include own header to fix "function not declared" warnings. Signed-off-by: Sam Ravnborg Cc: Tony Prisk Cc: linux-arm-ker...@lists.infradead.org --- drivers/video/fbdev/wmt_ge_rops.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/fbdev/wmt_ge_rops.c b/drivers/video/fbdev/wmt_

[PATCH v3 09/13] video: fbdev: goldfishfb: Fix defined but not used warning

2020-12-06 Thread Sam Ravnborg
The goldfish_fb_acpi_match table is only used with ACPI enabled. Ifdef it out unless it is needed. This is a similar fix to what other acpi drivers do. Signed-off-by: Sam Ravnborg Cc: Sam Ravnborg --- drivers/video/fbdev/goldfishfb.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers

[PATCH v3 11/13] video: fbdev: efifb: Fix set but not used warning for screen_pitch

2020-12-06 Thread Sam Ravnborg
screen_pitch was asssigned a value which was never used. Drop it to fix the warning Signed-off-by: Sam Ravnborg Cc: Peter Jones Cc: linux-fb...@vger.kernel.org --- drivers/video/fbdev/efifb.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/video/fbdev/efifb.c b/dri

[PATCH v3 10/13] video: fbdev: gbefb: Fix set but not used warning

2020-12-06 Thread Sam Ravnborg
The variable "x" was set but never used. Drop the redundant assignments. Signed-off-by: Sam Ravnborg Cc: Sam Ravnborg --- drivers/video/fbdev/gbefb.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/video/fbdev/gbefb.c b/drivers/video/fbdev/gbefb.c index 31270a8986

[PATCH v3 12/13] video: fbdev: controlfb: Fix set but not used warnings

2020-12-06 Thread Sam Ravnborg
The controlfb driver has a number of dummy defines for IO operations. They were introduced in commit a07a63b0e24d ("video: fbdev: controlfb: add COMPILE_TEST support"). The write variants did not use their value parameter in the dummy versions, resulting in set but not used warnings. Fix this by a

[PATCH v3 13/13] video: fbdev: sis: Drop useless call to SiS_GetResInfo()

2020-12-06 Thread Sam Ravnborg
Coverity reported: Useless call (USELESS_CALL) side_effect_free: Calling SiS_GetResInfo(SiS_Pr, ModeNo, ModeIdIndex) is only useful for its return value, which is ignored. And this is correct - so drop the call. Signed-off-by: Sam Ravnborg Reported-by: Colin Ian King Addresses-Cov

[Bug 210517] nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 Dave Airlie (airl...@linux.ie) changed: What|Removed |Added CC||airl...@linux.ie --- Com

Re: [PATCH v3 02/13] video: fbdev: core: Fix kernel-doc warnings in fbmon + fb_notify

2020-12-06 Thread Sam Ravnborg
Hi Randy. On Sun, Dec 06, 2020 at 11:37:17AM -0800, Randy Dunlap wrote: > On 12/6/20 11:02 AM, Sam Ravnborg wrote: > > Fix kernel-doc warnings reported when using W=1 > > > > v2: > > - Improve subject (Lee) > > > > v3: > > - Add RETURNS documentation (Thomas) > > Hi Sam, > > Yes, RETURNS:

Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU

2020-12-06 Thread kernel test robot
Hi Sam, I love your patch! Yet something to improve: [auto build test ERROR on next-20201204] [also build test ERROR on v5.10-rc6] [cannot apply to tegra-drm/drm/tegra/for-next soc/for-next linus/master drm/drm-next v5.10-rc6 v5.10-rc5 v5.10-rc4] [If your patch is applied to the wrong git tree,

Re: [PATCH v3 1/4] irq: export kstat_irqs

2020-12-06 Thread Jerry Snitselaar
Thomas Gleixner @ 2020-12-06 10:54 MST: > Jerry, > > On Fri, Dec 04 2020 at 18:43, Jerry Snitselaar wrote: > > The proper prefix is 'genirq:' git log kernel/irq/irqdesc.c would have > told you. > >> To try and detect potential interrupt storms that >> have been occurring with tpm_tis devices it

Re: [PATCH v3 2/4] drm/i915/pmu: Use kstat_irqs to get interrupt count

2020-12-06 Thread Jerry Snitselaar
Thomas Gleixner @ 2020-12-06 09:38 MST: > On Fri, Dec 04 2020 at 18:43, Jerry Snitselaar wrote: > >> Now that kstat_irqs is exported, get rid of count_interrupts in >> i915_pmu.c >> --- a/drivers/gpu/drm/i915/i915_pmu.c >> +++ b/drivers/gpu/drm/i915/i915_pmu.c >> @@ -423,22 +423,6 @@ static enum

Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU

2020-12-06 Thread Sam Ravnborg
commit aa1f4345b5480502a4e61addf5c59d606fdbce8f Author: Sam Ravnborg Date: Mon Nov 30 22:09:29 2020 +0100 sh: Fix set but not used warnings with !CONFIG_MMU Building fbdev drivers for sh with W=1 produces the following warning: tmiofb.c: In function ‘tmiofb_remove’:

Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU

2020-12-06 Thread Sam Ravnborg
Hi "kernel test robot" On Sun, Dec 06, 2020 at 10:48:14PM +0100, Sam Ravnborg wrote: > commit aa1f4345b5480502a4e61addf5c59d606fdbce8f > Author: Sam Ravnborg > Date: Mon Nov 30 22:09:29 2020 +0100 > > sh: Fix set but not used warnings with !CONFIG_MMU > > Building fbdev drivers for

[Bug 210517] nouveau: DRM: failed to map fb: -28 (GeForce 6600 LE, ppc64)

2020-12-06 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=210517 --- Comment #5 from Erhard F. (erhar...@mailbox.org) --- (In reply to Dave Airlie from comment #4) > The fix for this is in Linus' tree already > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/ > drivers/gpu/drm/nouve

Re: [PATCH v11 09/10] PM / devfreq: tegra30: Support interconnect and OPPs from device-tree

2020-12-06 Thread Chanwoo Choi
On 12/4/20 4:24 AM, Dmitry Osipenko wrote: > This patch moves ACTMON driver away from generating OPP table by itself, > transitioning it to use the table which comes from device-tree. This > change breaks compatibility with older device-trees and brings support > for the interconnect framework to t

Re: [PATCH v11 10/10] PM / devfreq: tegra30: Separate configurations per-SoC generation

2020-12-06 Thread Chanwoo Choi
On 12/4/20 4:24 AM, Dmitry Osipenko wrote: > Previously we were using count-weight of the T124 for T30 in order to > get EMC clock rate that was reasonable for T30. In fact the count-weight > should be x2 times smaller on T30, but then devfreq was producing a bit > too low EMC clock rate for ISO me