1. 24 11月, 2015 2 次提交
  2. 17 11月, 2015 1 次提交
  3. 07 11月, 2015 1 次提交
  4. 20 10月, 2015 1 次提交
  5. 19 10月, 2015 3 次提交
  6. 16 10月, 2015 2 次提交
    • L
      gpu/doc: Convert to markdown harder · f71a6d60
      Lukas Wunner 提交于
      This snippet...
      
          * Lock VMA manager for extended lookups. Only *_locked() VMA function calls
          * are allowed while holding this lock. All other contexts are blocked from VMA
          * until the lock is released via drm_vma_offset_unlock_lookup().
      
      ...causes markdown-enabled kernel-doc to barf:
      
          debian/build/build-doc/Documentation/DocBook/gpu.aux.xml:3247: parser error : Opening and ending tag mismatch: emphasis line 3247 and function
             *<function><emphasis>locked</function> VMA function calls are allowed while
                                                   ^
          /root/airlied/debian/build/build-doc/Documentation/DocBook/gpu.aux.xml:3249: parser error : Opening and ending tag mismatch: function line 3249 and emphasis
             released via <function>drm</emphasis>vma_offset_unlock_lookup</function>.
                                                  ^
          unable to parse /root/airlied/debian/build/build-doc/Documentation/DocBook/gpu.aux.xml
      
      A quick workaround is to replace *_locked() by X_locked().
      
      Cc: Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
      Signed-off-by: NLukas Wunner <lukas@wunner.de>
      [danvet: Just drop the X_ too, the usual style is _unlocked, except
      that _ seems to be what annoys markdown.]
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      f71a6d60
    • V
      drm: Add DRM_DEBUG_VBL() · 235fabe0
      Ville Syrjälä 提交于
      Add a new debug class for _verbose_ debug message from the vblank code.
      That is message we spew out potentially for every vblank interrupt.
      Thierry already got annoyed at the spew, and now I managed to lock up
      my box with these debug prints (seems serial console + a few debug
      prints every vblank aren't a good combination).
      
      Or should I maybe call it DRM_DEBUG_IRQ?
      
      Cc: Thierry Reding <thierry.reding@gmail.com>
      Signed-off-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      235fabe0
  7. 15 10月, 2015 1 次提交
  8. 07 10月, 2015 2 次提交
  9. 06 10月, 2015 1 次提交
    • T
      drm/irq: Use unsigned int pipe in public API · 88e72717
      Thierry Reding 提交于
      This continues the pattern started in commit cc1ef118 ("drm/irq:
      Make pipe unsigned and name consistent"). This is applied to the public
      APIs and driver callbacks, so pretty much all drivers need to be updated
      to match the new prototypes.
      
      Cc: Christian König <christian.koenig@amd.com>
      Cc: Alex Deucher <alexander.deucher@amd.com>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Cc: Inki Dae <inki.dae@samsung.com>
      Cc: Jianwei Wang <jianwei.wang.chn@gmail.com>
      Cc: Alison Wang <alison.wang@freescale.com>
      Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
      Cc: Daniel Vetter <daniel.vetter@intel.com>
      Cc: Jani Nikula <jani.nikula@linux.intel.com>
      Cc: Philipp Zabel <p.zabel@pengutronix.de>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Rob Clark <robdclark@gmail.com>
      Cc: Ben Skeggs <bskeggs@redhat.com>
      Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Mark Yao <mark.yao@rock-chips.com>
      Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>
      Cc: Vincent Abriou <vincent.abriou@st.com>
      Cc: Thomas Hellstrom <thellstrom@vmware.com>
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      Reviewed-by: NVille Syrjälä <ville.syrjala@linux.intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      88e72717
  10. 05 10月, 2015 1 次提交
  11. 02 10月, 2015 2 次提交
  12. 30 9月, 2015 4 次提交
  13. 25 9月, 2015 7 次提交
  14. 17 9月, 2015 2 次提交
  15. 11 9月, 2015 1 次提交
    • D
      drm: Nuke drm_framebuffer->helper_private · c86fb9d9
      Daniel Vetter 提交于
      It's completely unused and there's really no reason for this:
      - drm_framebuffer structures are invariant after creation, no need for
        helpers to manipulate them.
      - drm_framebuffer structures should just be embedded (and that's what
        all the drivers do).
      
      Stumbled over this since some folks are apparently concerned with the
      overhead of struct drm_framebuffer and this is an easy 8 byte saving.
      
      More could be gained by ditching the legacy fields and recomputing
      stuff from the fourcc value. But that would require some drm-wide
      cocci and real justification.
      
      Cc: gary.k.smith@intel.com
      Reviewed-by: NDavid Herrmann <dh.herrmann@gmail.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@intel.com>
      c86fb9d9
  16. 09 9月, 2015 3 次提交
  17. 08 9月, 2015 6 次提交