[GIT PULL] gma500-next for 4.7

2016-04-08 Thread Patrik Jakobsson
Hi Dave,

A few fixes and cleanups for 4.7 that's been collecting dust in my
inbox for a while.

Thanks
Patrik

The following changes since commit d00b39c17573ece6f5fb1385314877d29f540db8:

  Merge branch 'drm-next-analogix-dp-v2' of
github.com:yakir-Yang/linux into drm-next (2016-04-06 09:57:33 +1000)

are available in the git repository at:

  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 7d323264bec07cd71df47333c6cd8f6b36987821:

  drm/gma500/mdfld_dsi: remove bogus if check (2016-04-08 13:42:31 +0200)


Alan (1):
  drm/gma500/mdfld_dsi: remove bogus if check

Itai Handler (1):
  drm/gma500: Fix possible out of bounds read

Sudip Mukherjee (1):
  drm/gma500: fix double freeing

 drivers/gpu/drm/gma500/framebuffer.c  | 13 -
 drivers/gpu/drm/gma500/mdfld_dsi_dpi.c|  6 +-
 drivers/gpu/drm/gma500/mdfld_dsi_pkg_sender.c |  2 +-
 3 files changed, 6 insertions(+), 15 deletions(-)


[GIT PULL] gma500-next

2014-03-20 Thread Patrik Jakobsson
Hi Dave,

Here's the patches for the 3.15 merge window.

Summary of what's included:

- SGX MMU support
- SGX IRQ handling (Page faults and blitter fences)
- Minor Cedarview and Poulsbo unification
- Work queue for ASLE interrupt work
- Various cleanups, style fixes and removal of dead code

Thanks
Patrik

The following changes since commit 786a7828bc74b9b1466e83abb200b75f80f94121:

  Merge branch 'drm-next-3.15' of git://
people.freedesktop.org/~deathsimple/linux into drm-next (2014-03-05
14:52:19 +1000)

are available in the git repository at:


  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 75144097014d1bca861b403e7e2093549114d0c9:

  drm/gma500: remove stub .open/postclose (2014-03-18 00:47:09 +0100)


Arthur Borsboom (3):
  drm/gma500: Code cleanup - removal of centralized exiting of function
  drm/gma500: Code cleanup - style fixes
  drm/gma500: Code cleanup - inline documentation

David Herrmann (1):
  drm/gma500: remove stub .open/postclose

Patrik Jakobsson (12):
  drm/gma500: Make SGX MMU driver actually do something
  drm/gma500: Add support for SGX interrupts
  drm/gma500: Give MMU code it's own header file
  drm/gma500: Add first piece of blitter code
  drm/gma500: Hook up the MMU
  drm/gma500: Always trap MMU page faults
  drm/gma500: Remove unused ioctls
  drm/gma500: Add backing type and base align to psb_gem_create()
  drm/gma500: Move asle interrupt work into a work task
  drm/gma500: Unify _get_core_freq for cdv and psb
  drm/gma500: Unify encoder mode fixup
  drm/gma500/cdv: Cedarview display cleanups

Thierry Reding (1):
  drm/gma500: Remove dead code

 drivers/gpu/drm/gma500/Makefile|   2 +
 drivers/gpu/drm/gma500/blitter.c   |  51 
 drivers/gpu/drm/gma500/blitter.h   |  22 ++
 drivers/gpu/drm/gma500/cdv_device.c|  40 +--
 drivers/gpu/drm/gma500/cdv_intel_crt.c |   9 +-
 drivers/gpu/drm/gma500/cdv_intel_display.c |  71 ++---
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c|   9 +-
 drivers/gpu/drm/gma500/framebuffer.c   |   2 +-
 drivers/gpu/drm/gma500/gem.c   |  56 +---
 drivers/gpu/drm/gma500/gem.h   |  21 ++
 drivers/gpu/drm/gma500/gma_device.c|  56 
 drivers/gpu/drm/gma500/gma_device.h|  21 ++
 drivers/gpu/drm/gma500/gma_display.c   |   7 +
 drivers/gpu/drm/gma500/gma_display.h   |   3 +
 drivers/gpu/drm/gma500/gtt.c   |  45 +++-
 drivers/gpu/drm/gma500/gtt.h   |   3 +-
 drivers/gpu/drm/gma500/mmu.c   | 297 ++---
 drivers/gpu/drm/gma500/mmu.h   |  93 +++
 drivers/gpu/drm/gma500/oaktrail_hdmi.c |   9 +-
 drivers/gpu/drm/gma500/opregion.c  |  25 +-
 drivers/gpu/drm/gma500/psb_device.c|  42 +--
 drivers/gpu/drm/gma500/psb_drv.c   | 404
-
 drivers/gpu/drm/gma500/psb_drv.h   | 203 ---
 drivers/gpu/drm/gma500/psb_intel_display.c |  30 +--
 drivers/gpu/drm/gma500/psb_intel_drv.h |   2 -
 drivers/gpu/drm/gma500/psb_irq.c   |  81 +-
 include/drm/gma_drm.h  |  70 +
 27 files changed, 722 insertions(+), 952 deletions(-)
 create mode 100644 drivers/gpu/drm/gma500/blitter.c
 create mode 100644 drivers/gpu/drm/gma500/blitter.h
 create mode 100644 drivers/gpu/drm/gma500/gem.h
 create mode 100644 drivers/gpu/drm/gma500/gma_device.c
 create mode 100644 drivers/gpu/drm/gma500/gma_device.h
 create mode 100644 drivers/gpu/drm/gma500/mmu.h
-- next part --
An HTML attachment was scrubbed...
URL: 



[GIT PULL] gma500-next

2014-01-28 Thread Patrik Jakobsson
Hi Dave
Only two patches this time around. One trivial and one locking fix.

Thanks
Patrik

The following changes since commit fe3c703c3d80bd4c2da0d47a7d56930926af7cbc:

  drm/dp: Clarify automated test constant and add constant for FAUX
test pattern (2013-12-18 11:47:43 +1000)

are available in the git repository at:

  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 631794b44bd3dbfba37074954d5c584c9e8725f0:

  drm/gma500: Lock struct_mutex around cursor updates (2014-01-28
12:57:20 +0100)


Patrik Jakobsson (1):
  drm/gma500: Lock struct_mutex around cursor updates

Rashika Kheria (1):
  drivers: gpu: Mark function as static in cdv_intel_dp.c

 drivers/gpu/drm/gma500/cdv_intel_dp.c |  2 +-
 drivers/gpu/drm/gma500/gma_display.c  | 12 ++--
 2 files changed, 11 insertions(+), 3 deletions(-)


[GIT PULL] gma500-next

2013-11-10 Thread Patrik Jakobsson
Hi Dave,
Here are the patches for SDVO on the Minnowboard.

Thanks
Patrik

The following changes since commit 91915260ea5ed9d9b19bfb75d53c989c8ada2ab0:

  Merge tag 'drm-intel-fixes-2013-11-07' of
git://people.freedesktop.org/~danvet/drm-intel into drm-next
(2013-11-08 16:34:39 +1000)

are available in the git repository at:


  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to cd3fdbe853c47c5890d5362363b59504c2e5fb5f:

  drm/gma500/mrst: Add SDVO to output init (2013-11-08 16:23:19 +0100)


Patrik Jakobsson (12):
  drm/gma500: Add Minnowboard to the IS_MRST() macro
  drm/gma500: Add chip specific sdvo masks
  drm/gma500: Add support for aux pci vdc device
  drm/gma500: Add aux device support for gmbus
  drm/gma500/mrst: Add SDVO clock calculation
  drm/gma500/mrst: Add aux register writes when programming pipe
  drm/gma500/mrst: Properly route oaktrail hdmi hooks
  drm/gma500/mrst: Add aux register writes to SDVO
  drm/gma500/mrst: Replace WMs and chickenbits with values from EMGD
  drm/gma500/mrst: Setup GMBUS for oaktrail/mrst
  drm/gma500/mrst: Don't blindly guess a mode for LVDS
  drm/gma500/mrst: Add SDVO to output init

 drivers/gpu/drm/gma500/cdv_device.c  |   1 +
 drivers/gpu/drm/gma500/framebuffer.c |   2 +-
 drivers/gpu/drm/gma500/intel_gmbus.c |  90 ---
 drivers/gpu/drm/gma500/oaktrail_crtc.c   | 433 +++
 drivers/gpu/drm/gma500/oaktrail_device.c |   6 +
 drivers/gpu/drm/gma500/oaktrail_lvds.c   |  30 +--
 drivers/gpu/drm/gma500/psb_device.c  |   1 +
 drivers/gpu/drm/gma500/psb_drv.c |  32 ++-
 drivers/gpu/drm/gma500/psb_drv.h |  51 +++-
 drivers/gpu/drm/gma500/psb_intel_sdvo.c  |  59 +++--
 10 files changed, 448 insertions(+), 257 deletions(-)


[GIT PULL] gma500-next

2013-08-09 Thread Patrik Jakobsson
Hi Dave

Here's some gma500 unifying and cleanups for drm-next. There is more stuff in
the pipe for 3.12 but I'd like to get these out of the way first.

Thanks
Patrik

The following changes since commit 85d9cb41db3bf0f36c999c2e547b37cb9f32367b:

  drm: remove drm_order (2013-07-23 20:14:29 +1000)

are available in the git repository at:

  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 367e44080e20f77fa7b0f2db83fd6367da59b6c3:

  drm/gma500: Rename psb_intel_encoder to gma_encoder (2013-07-24
01:49:43 +0200)


Patrik Jakobsson (33):
  drm/gma500: Add generic code for clock calculation
  drm/gma500/cdv: Make use of the generic clock code
  drm/gma500: Make use of gma_pipe_has_type()
  drm/gma500/psb: Make use of generic clock code
  drm/gma500: Remove the unused psb_intel_display.h
  drm/gma500: Add generic pipe/crtc functions
  drm/gma500/cdv: Use identical generic crtc funcs
  drm/gma500: Make all chips use gma_wait_for_vblank
  drm/gma500/psb: Use identical generic crtc funcs
  drm/gma500/cdv: Convert to gma_pipe_set_base()
  drm/gma500: Add IS_CDV() macro
  drm/gma500/cdv: Convert to gma_crtc_dpms()
  drm/gma500/cdv: Convert to generic gamma funcs
  drm/gma500/psb: Convert to gma_pipe_set_base()
  drm/gma500: Convert to generic gamma funcs
  drm/gma500/psb: Convert to gma_crtc_dpms()
  drm/gma500/oak: Use identical generic crtc funcs
  drm/gma500/mdfld: Use identical generic crtc funcs
  drm/gma500/psb: Convert to generic crtc->destroy
  drm/gma500: Add generic cursor functions
  drm/gma500/cdv: Convert to generic cursor funcs
  drm/gma500/psb: Convert to generic cursor funcs
  drm/gma500: Add generic encoder functions
  drm/gma500: Convert to generic encoder funcs
  drm/gma500: Add generic crtc save/restore funcs
  drm/gma500/psb: Convert to generic save/restore
  drm/gma500/cdv: Convert to generic save/restore
  drm/gma500: Add generic set_config() function
  drm/gma500/psb: Convert to generic set_config()
  drm/gma500/cdv: Convert to generic set_config()
  drm/gma500: Rename psb_intel_crtc to gma_crtc
  drm/gma500: Rename psb_intel_connector to gma_connector
  drm/gma500: Rename psb_intel_encoder to gma_encoder

 drivers/gpu/drm/gma500/Makefile|   1 +
 drivers/gpu/drm/gma500/cdv_device.c|   1 +
 drivers/gpu/drm/gma500/cdv_device.h|  10 +-
 drivers/gpu/drm/gma500/cdv_intel_crt.c |  57 +-
 drivers/gpu/drm/gma500/cdv_intel_display.c | 916 ++--
 drivers/gpu/drm/gma500/cdv_intel_dp.c  | 154 ++--
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c|  89 +-
 drivers/gpu/drm/gma500/cdv_intel_lvds.c|  71 +-
 drivers/gpu/drm/gma500/framebuffer.c   |  25 +-
 drivers/gpu/drm/gma500/framebuffer.h   |   2 +-
 drivers/gpu/drm/gma500/gma_display.c   | 776 +
 drivers/gpu/drm/gma500/gma_display.h   | 108 +++
 drivers/gpu/drm/gma500/mdfld_dsi_output.c  |  15 +-
 drivers/gpu/drm/gma500/mdfld_dsi_output.h  |  16 +-
 drivers/gpu/drm/gma500/mdfld_intel_display.c   |  65 +-
 drivers/gpu/drm/gma500/oaktrail_crtc.c |  63 +-
 drivers/gpu/drm/gma500/oaktrail_hdmi.c |  43 +-
 drivers/gpu/drm/gma500/oaktrail_lvds.c |  48 +-
 drivers/gpu/drm/gma500/psb_device.c|   3 +-
 .../gma500/{psb_intel_display.h => psb_device.h}   |  13 +-
 drivers/gpu/drm/gma500/psb_drv.c   |  14 +-
 drivers/gpu/drm/gma500/psb_drv.h   |   3 +
 drivers/gpu/drm/gma500/psb_intel_display.c | 944 ++---
 drivers/gpu/drm/gma500/psb_intel_drv.h |  44 +-
 drivers/gpu/drm/gma500/psb_intel_lvds.c|  75 +-
 drivers/gpu/drm/gma500/psb_intel_sdvo.c|  53 +-
 26 files changed, 1443 insertions(+), 2166 deletions(-)
 create mode 100644 drivers/gpu/drm/gma500/gma_display.c
 create mode 100644 drivers/gpu/drm/gma500/gma_display.h
 rename drivers/gpu/drm/gma500/{psb_intel_display.h => psb_device.h} (76%)


[GIT PULL] gma500-next

2013-08-09 Thread Patrik Jakobsson
Hi Dave

Here's some gma500 unifying and cleanups for drm-next. There is more stuff in
the pipe for 3.12 but I'd like to get these out of the way first.

Thanks
Patrik

The following changes since commit 85d9cb41db3bf0f36c999c2e547b37cb9f32367b:

  drm: remove drm_order (2013-07-23 20:14:29 +1000)

are available in the git repository at:

  git://github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 367e44080e20f77fa7b0f2db83fd6367da59b6c3:

  drm/gma500: Rename psb_intel_encoder to gma_encoder (2013-07-24
01:49:43 +0200)


Patrik Jakobsson (33):
  drm/gma500: Add generic code for clock calculation
  drm/gma500/cdv: Make use of the generic clock code
  drm/gma500: Make use of gma_pipe_has_type()
  drm/gma500/psb: Make use of generic clock code
  drm/gma500: Remove the unused psb_intel_display.h
  drm/gma500: Add generic pipe/crtc functions
  drm/gma500/cdv: Use identical generic crtc funcs
  drm/gma500: Make all chips use gma_wait_for_vblank
  drm/gma500/psb: Use identical generic crtc funcs
  drm/gma500/cdv: Convert to gma_pipe_set_base()
  drm/gma500: Add IS_CDV() macro
  drm/gma500/cdv: Convert to gma_crtc_dpms()
  drm/gma500/cdv: Convert to generic gamma funcs
  drm/gma500/psb: Convert to gma_pipe_set_base()
  drm/gma500: Convert to generic gamma funcs
  drm/gma500/psb: Convert to gma_crtc_dpms()
  drm/gma500/oak: Use identical generic crtc funcs
  drm/gma500/mdfld: Use identical generic crtc funcs
  drm/gma500/psb: Convert to generic crtc->destroy
  drm/gma500: Add generic cursor functions
  drm/gma500/cdv: Convert to generic cursor funcs
  drm/gma500/psb: Convert to generic cursor funcs
  drm/gma500: Add generic encoder functions
  drm/gma500: Convert to generic encoder funcs
  drm/gma500: Add generic crtc save/restore funcs
  drm/gma500/psb: Convert to generic save/restore
  drm/gma500/cdv: Convert to generic save/restore
  drm/gma500: Add generic set_config() function
  drm/gma500/psb: Convert to generic set_config()
  drm/gma500/cdv: Convert to generic set_config()
  drm/gma500: Rename psb_intel_crtc to gma_crtc
  drm/gma500: Rename psb_intel_connector to gma_connector
  drm/gma500: Rename psb_intel_encoder to gma_encoder

 drivers/gpu/drm/gma500/Makefile|   1 +
 drivers/gpu/drm/gma500/cdv_device.c|   1 +
 drivers/gpu/drm/gma500/cdv_device.h|  10 +-
 drivers/gpu/drm/gma500/cdv_intel_crt.c |  57 +-
 drivers/gpu/drm/gma500/cdv_intel_display.c | 916 ++--
 drivers/gpu/drm/gma500/cdv_intel_dp.c  | 154 ++--
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c|  89 +-
 drivers/gpu/drm/gma500/cdv_intel_lvds.c|  71 +-
 drivers/gpu/drm/gma500/framebuffer.c   |  25 +-
 drivers/gpu/drm/gma500/framebuffer.h   |   2 +-
 drivers/gpu/drm/gma500/gma_display.c   | 776 +
 drivers/gpu/drm/gma500/gma_display.h   | 108 +++
 drivers/gpu/drm/gma500/mdfld_dsi_output.c  |  15 +-
 drivers/gpu/drm/gma500/mdfld_dsi_output.h  |  16 +-
 drivers/gpu/drm/gma500/mdfld_intel_display.c   |  65 +-
 drivers/gpu/drm/gma500/oaktrail_crtc.c |  63 +-
 drivers/gpu/drm/gma500/oaktrail_hdmi.c |  43 +-
 drivers/gpu/drm/gma500/oaktrail_lvds.c |  48 +-
 drivers/gpu/drm/gma500/psb_device.c|   3 +-
 .../gma500/{psb_intel_display.h => psb_device.h}   |  13 +-
 drivers/gpu/drm/gma500/psb_drv.c   |  14 +-
 drivers/gpu/drm/gma500/psb_drv.h   |   3 +
 drivers/gpu/drm/gma500/psb_intel_display.c | 944 ++---
 drivers/gpu/drm/gma500/psb_intel_drv.h |  44 +-
 drivers/gpu/drm/gma500/psb_intel_lvds.c|  75 +-
 drivers/gpu/drm/gma500/psb_intel_sdvo.c|  53 +-
 26 files changed, 1443 insertions(+), 2166 deletions(-)
 create mode 100644 drivers/gpu/drm/gma500/gma_display.c
 create mode 100644 drivers/gpu/drm/gma500/gma_display.h
 rename drivers/gpu/drm/gma500/{psb_intel_display.h => psb_device.h} (76%)
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[GIT PULL] gma500-next

2013-04-16 Thread Patrik Jakobsson
Hi Dave

These are the changes I have for gma500 to be included in drm-next and
3.10-rc1. It's mostly bug fixes for suspend/hibernate and cleanups.

I haven't had much review or testing on other platforms than Poulsbo but
at least the following Cedarview bug has been squashed and no
regressions reported: https://bugs.freedesktop.org/show_bug.cgi?id=58527

There is one conflict with c97fc5fbd38cfb6084072af19463092d0d2316be that
is missing in my tree but should be trivial to fix. EXPERIMENTAL just
needs to go away on my end.

Thanks
Patrik

The following changes since commit be88298b0a3f771a4802f20c5e66af74bfd1dff1:

  drm/tilcdc: only build on arm (2013-02-26 09:54:48 +1000)

are available in the git repository at:

  https://www.github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 1611f8457768716ba2397e0cdcc92c863cf9b58b:

  drm/gma500: Add debugging info to psb_gtt_restore() (2013-04-15
23:44:56 +0200)


Alexandru Gheorghiu (1):
  drivers: gpu: drm: gma500: Replaced calls kzalloc & memcpy with kmemdup

Kero van Gelder (1):
  gma500: Make VGA and HDMI connector hotpluggable

Patrik Jakobsson (12):
  drm/gma500: Remove unused i8xx clock limits
  drm/gma500: Calculate clock in one function instead of three identical
  drm/gma500: Type clock limits directly into array and remove defines
  drm/gma500: Remove unnecessary function exposure
  drm/gma500: Clean up various defines
  drm/gma500: Change fb name so pm-utils doesn't apply quirks
  drm/gma500: Add support for rebuilding the gtt
  drm/gma500: Activate the gtt rebuild on suspend/resume
  drm/gma500: Add hooks for hibernation
  drm/gma500: Fix hibernation problems on sdvo encoders
  drm/gma500: Check connector status before restoring sdvo
  drm/gma500: Add debugging info to psb_gtt_restore()

Syam Sidhardhan (1):
  gma500: medfield: Fix possible NULL pointer dereference

Wang YanQing (1):
  gma500: remove unused drm_psb_no_fb

Xiong Zhou (1):
  gma500:fix build failure for 3.9-rc5

 drivers/gpu/drm/gma500/Kconfig |   13 ++-
 drivers/gpu/drm/gma500/cdv_intel_crt.c |1 +
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c|1 +
 drivers/gpu/drm/gma500/framebuffer.c   |2 +-
 drivers/gpu/drm/gma500/gtt.c   |   52 --
 drivers/gpu/drm/gma500/gtt.h   |2 +-
 drivers/gpu/drm/gma500/intel_bios.c|3 +-
 drivers/gpu/drm/gma500/intel_bios.h|6 +-
 drivers/gpu/drm/gma500/mdfld_dsi_output.c  |7 +-
 drivers/gpu/drm/gma500/power.c |   17 +++
 drivers/gpu/drm/gma500/power.h |3 +
 drivers/gpu/drm/gma500/psb_drv.c   |3 +
 drivers/gpu/drm/gma500/psb_drv.h   |1 -
 drivers/gpu/drm/gma500/psb_intel_display.c |  154 ++--
 drivers/gpu/drm/gma500/psb_intel_display.h |3 -
 drivers/gpu/drm/gma500/psb_intel_drv.h |8 --
 drivers/gpu/drm/gma500/psb_intel_reg.h |1 -
 drivers/gpu/drm/gma500/psb_intel_sdvo.c|   33 ++
 drivers/gpu/drm/gma500/psb_irq.h   |6 +-
 19 files changed, 154 insertions(+), 162 deletions(-)


[GIT PULL] gma500-next

2013-04-16 Thread Patrik Jakobsson
Hi Dave

These are the changes I have for gma500 to be included in drm-next and
3.10-rc1. It's mostly bug fixes for suspend/hibernate and cleanups.

I haven't had much review or testing on other platforms than Poulsbo but
at least the following Cedarview bug has been squashed and no
regressions reported: https://bugs.freedesktop.org/show_bug.cgi?id=58527

There is one conflict with c97fc5fbd38cfb6084072af19463092d0d2316be that
is missing in my tree but should be trivial to fix. EXPERIMENTAL just
needs to go away on my end.

Thanks
Patrik

The following changes since commit be88298b0a3f771a4802f20c5e66af74bfd1dff1:

  drm/tilcdc: only build on arm (2013-02-26 09:54:48 +1000)

are available in the git repository at:

  https://www.github.com/patjak/drm-gma500 gma500-next

for you to fetch changes up to 1611f8457768716ba2397e0cdcc92c863cf9b58b:

  drm/gma500: Add debugging info to psb_gtt_restore() (2013-04-15
23:44:56 +0200)


Alexandru Gheorghiu (1):
  drivers: gpu: drm: gma500: Replaced calls kzalloc & memcpy with kmemdup

Kero van Gelder (1):
  gma500: Make VGA and HDMI connector hotpluggable

Patrik Jakobsson (12):
  drm/gma500: Remove unused i8xx clock limits
  drm/gma500: Calculate clock in one function instead of three identical
  drm/gma500: Type clock limits directly into array and remove defines
  drm/gma500: Remove unnecessary function exposure
  drm/gma500: Clean up various defines
  drm/gma500: Change fb name so pm-utils doesn't apply quirks
  drm/gma500: Add support for rebuilding the gtt
  drm/gma500: Activate the gtt rebuild on suspend/resume
  drm/gma500: Add hooks for hibernation
  drm/gma500: Fix hibernation problems on sdvo encoders
  drm/gma500: Check connector status before restoring sdvo
  drm/gma500: Add debugging info to psb_gtt_restore()

Syam Sidhardhan (1):
  gma500: medfield: Fix possible NULL pointer dereference

Wang YanQing (1):
  gma500: remove unused drm_psb_no_fb

Xiong Zhou (1):
  gma500:fix build failure for 3.9-rc5

 drivers/gpu/drm/gma500/Kconfig |   13 ++-
 drivers/gpu/drm/gma500/cdv_intel_crt.c |1 +
 drivers/gpu/drm/gma500/cdv_intel_hdmi.c|1 +
 drivers/gpu/drm/gma500/framebuffer.c   |2 +-
 drivers/gpu/drm/gma500/gtt.c   |   52 --
 drivers/gpu/drm/gma500/gtt.h   |2 +-
 drivers/gpu/drm/gma500/intel_bios.c|3 +-
 drivers/gpu/drm/gma500/intel_bios.h|6 +-
 drivers/gpu/drm/gma500/mdfld_dsi_output.c  |7 +-
 drivers/gpu/drm/gma500/power.c |   17 +++
 drivers/gpu/drm/gma500/power.h |3 +
 drivers/gpu/drm/gma500/psb_drv.c   |3 +
 drivers/gpu/drm/gma500/psb_drv.h   |1 -
 drivers/gpu/drm/gma500/psb_intel_display.c |  154 ++--
 drivers/gpu/drm/gma500/psb_intel_display.h |3 -
 drivers/gpu/drm/gma500/psb_intel_drv.h |8 --
 drivers/gpu/drm/gma500/psb_intel_reg.h |1 -
 drivers/gpu/drm/gma500/psb_intel_sdvo.c|   33 ++
 drivers/gpu/drm/gma500/psb_irq.h   |6 +-
 19 files changed, 154 insertions(+), 162 deletions(-)
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel