Re: [Intel-gfx] [PATCH] allow 945 to control self refresh automatically

2010-10-08 Thread Li Peng
Hi, Alexander: I think you are right that GEN3 hardware CXSR requires enabling low power render writes. This patch is OK for me, but DRM_DEBUG_KMS is better than printk. Acked-by : Li Peng On Mon, 2010-10-04 at 19:31 -0400, Alexander Lam wrote: > Using 2.6.35.7 (this patch is against

Re: [Intel-gfx] 945 with SR doesn't need manual enable/disable

2010-08-26 Thread Li Peng
Hello, Alexander: I have met system hang issue when directly enable SR on 945, so I enable/disable SR depends on h/w idle status. If you don't see hang anymore. Then it should be fixed in other commits (probably as you said, 944001201ca0196bcdb088129e5866a9f379d08c) Please fix the patch format in

[Intel-gfx] [PATCH] drm/i915: Turn on 945 self-refresh only if single CRTC is active

2010-06-12 Thread Li Peng
Enable self-refresh on 945 when just one CRTC is activated. Otherwise user would get display flicker with dual display. This fixes https://bugs.freedesktop.org/show_bug.cgi?id=27667 Signed-off-by: Li Peng --- drivers/gpu/drm/i915/intel_display.c | 12 +++- 1 files changed, 7

[Intel-gfx] [PATCH v2] drm/i915: Add CxSR support on Pineview DDR3

2010-05-17 Thread Li Peng
Pineview with DDR3 memory has different latencies to enable CxSR. This patch updates CxSR latency table to add Pineview DDR3 latency configuration. It also adds one flag "is_ddr3" for checking DDR3 setting in MCHBAR. Cc: Shaohua Li Cc: Zhao Yakui Signed-off-by: Li Peng --- Rebase

Re: [Intel-gfx] [PATCH] drm/i915: Add CxSR support on Pineview DDR3

2010-05-17 Thread Li Peng
On Mon, May 17, 2010 at 05:26:38PM +0800, Zhenyu Wang wrote: > On 2010.05.17 22:07:30 +0800, Li Peng wrote: > > Pineview with DDR3 memory has different latencies to enable CxSR. > > This patch updates CxSR latency table to add Pineview DDR3 latency > > configuration. It also a

[Intel-gfx] [PATCH] drm/i915: Add CxSR support on Pineview DDR3

2010-05-16 Thread Li Peng
Pineview with DDR3 memory has different latencies to enable CxSR. This patch updates CxSR latency table to add Pineview DDR3 latency configuration. It also adds one flag "is_ddr3" for checking DDR3 setting in MCHBAR. Cc: Shaohua Li Cc: Zhao Yakui Signed-off-by: Li Peng --- drive