[PATCH v2 03/20] x86, ACPI, mm: Kill max_low_pfn_mapped

2013-03-09 Thread Yinghai Lu
Now we have arch_pfn_mapped array, and max_low_pfn_mapped should not be used anymore. User should use arch_pfn_mapped or just 1UL<<(32-PAGE_SHIFT) instead. Only user is ACPI_INITRD_TABLE_OVERRIDE, and it should not use that, as later accessing is using early_ioremap(). Change to try to 4G below a

[PATCH v2 03/20] x86, ACPI, mm: Kill max_low_pfn_mapped

2013-03-09 Thread Yinghai Lu
Now we have arch_pfn_mapped array, and max_low_pfn_mapped should not be used anymore. User should use arch_pfn_mapped or just 1UL<<(32-PAGE_SHIFT) instead. Only user is ACPI_INITRD_TABLE_OVERRIDE, and it should not use that, as later accessing is using early_ioremap(). Change to try to 4G below a

linux 3.9-rc1: nouveau crash on PPC

2013-03-09 Thread Aaro Koskinen
Hi, There's nouveau crash during boot with 3.9-rc1 on iMac G5 (nVidia GeForce FX 5200 Ultra). This happens also with current mainline kernel HEAD (0aefda3e8188ad71168bd32152d41b3d72f04087). git bisect tells the first bad commit is 1d7c71a3e2f77336df536855b0efd2dc5bdeb41b (drm/nouveau/disp: port v

[Bug 61690] Graphic issue on PCSX2 with Gallium 0.4 on AMD RS780

2013-03-09 Thread bugzilla-dae...@freedesktop.org
next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130309/6c248154/attachment-0001.html>

[Linaro-mm-sig] [PATCH v2 1/3] arch: make __mutex_fastpath_lock_retval return whether fastpath succeeded or not.

2013-03-09 Thread Francesco Lavra
On 02/28/2013 11:24 AM, Maarten Lankhorst wrote: > This will allow me to call functions that have multiple arguments if fastpath > fails. > This is required to support ticket mutexes, because they need to be able to > pass an > extra argument to the fail function. > > Originally I duplicated the

[Bug 61690] Graphic issue on PCSX2 with Gallium 0.4 on AMD RS780

2013-03-09 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61690 --- Comment #6 from LukK --- Bisected with -DTEXTURE_FLOAT_ENABLED. I guess with "ARB_texture_float" every version give me the graphic issue. 8e28d842d192e69ba8cae4f9754766a26ae8c739 is the first bad commit commit 8e28d842d192e69ba8cae4f9754766a

[PATCH v13 2/2] drm/exynos: enable OF_VIDEOMODE and FB_MODE_HELPERS for exynos drm fimd

2013-03-09 Thread Vikas Sajjan
patch adds "select OF_VIDEOMODE" and "select FB_MODE_HELPERS" when EXYNOS_DRM_FIMD config is selected. Also adds the "OF" dependency. Signed-off-by: Vikas Sajjan --- drivers/gpu/drm/exynos/Kconfig |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/exynos/Kc

[PATCH v13 1/2] video: drm: exynos: Add display-timing node parsing using video helper function

2013-03-09 Thread Vikas Sajjan
Add support for parsing the display-timing node using video helper function. The DT node parsing is done only if 'dev.of_node' exists and the NON-DT logic is still maintained under the 'else' part. Signed-off-by: Leela Krishna Amudala Signed-off-by: Vikas Sajjan Acked-by: Joonyoung Shim --- d

[PATCH v13 0/2] Add display-timing node parsing to exynos drm fimd

2013-03-09 Thread Vikas Sajjan
Add display-timing node parsing to drm fimd and depends on the display helper patchset at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html changes since v12: - Added dependency of "OF" for exynos drm fimd as suggested by Inki Dae changes since v11: