dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/9] VC4 3D rendering support.
@ 2015-12-08 18:30 Eric Anholt
  2015-12-08 18:30 ` [PATCH v2 1/9] drm: Create a driver hook for allocating GEM object structs Eric Anholt
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Eric Anholt @ 2015-12-08 18:30 UTC (permalink / raw)
  To: dri-devel; +Cc: linux-kernel

Updated version of the patch series for Emil's comments about
vc4_drm.h.  I also pulled in some improvements to the validation code
which I'd written in Mesa and failed to propagate to this branch.

The series can be found at:

https://github.com/anholt/linux/tree/vc4-kms-v3d-squash-2

and a version for booting and testing can be found at:

https://github.com/anholt/linux/tree/vc4-kms-v3d-squash-2-boot

Eric Anholt (9):
  drm: Create a driver hook for allocating GEM object structs.
  drm/vc4: Add a BO cache.
  drm/vc4: Add create and map BO ioctls.
  drm/vc4: Add an API for creating GPU shaders in GEM BOs.
  drm/vc4: Fix a typo in a V3D debug register.
  drm/vc4: Bind and initialize the V3D engine.
  drm/vc4: Add support for drawing 3D frames.
  drm/vc4: Add support for async pageflips.
  drm/vc4: Add an interface for capturing the GPU state after a hang.

 drivers/gpu/drm/drm_gem_cma_helper.c       |  10 +-
 drivers/gpu/drm/vc4/Makefile               |  11 +-
 drivers/gpu/drm/vc4/vc4_bo.c               | 517 ++++++++++++++++-
 drivers/gpu/drm/vc4/vc4_crtc.c             |  99 +++-
 drivers/gpu/drm/vc4/vc4_debugfs.c          |   3 +
 drivers/gpu/drm/vc4/vc4_drv.c              |  36 +-
 drivers/gpu/drm/vc4/vc4_drv.h              | 318 +++++++++-
 drivers/gpu/drm/vc4/vc4_gem.c              | 867 +++++++++++++++++++++++++++
 drivers/gpu/drm/vc4/vc4_irq.c              | 210 +++++++
 drivers/gpu/drm/vc4/vc4_kms.c              | 149 ++++-
 drivers/gpu/drm/vc4/vc4_packet.h           | 399 +++++++++++++
 drivers/gpu/drm/vc4/vc4_plane.c            |  40 ++
 drivers/gpu/drm/vc4/vc4_qpu_defines.h      | 264 +++++++++
 drivers/gpu/drm/vc4/vc4_regs.h             |   2 +-
 drivers/gpu/drm/vc4/vc4_render_cl.c        | 634 ++++++++++++++++++++
 drivers/gpu/drm/vc4/vc4_trace.h            |  63 ++
 drivers/gpu/drm/vc4/vc4_trace_points.c     |  14 +
 drivers/gpu/drm/vc4/vc4_v3d.c              | 262 +++++++++
 drivers/gpu/drm/vc4/vc4_validate.c         | 900 +++++++++++++++++++++++++++++
 drivers/gpu/drm/vc4/vc4_validate_shaders.c | 513 ++++++++++++++++
 include/drm/drmP.h                         |   7 +
 include/uapi/drm/Kbuild                    |   1 +
 include/uapi/drm/vc4_drm.h                 | 279 +++++++++
 23 files changed, 5577 insertions(+), 21 deletions(-)
 create mode 100644 drivers/gpu/drm/vc4/vc4_gem.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_irq.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_packet.h
 create mode 100644 drivers/gpu/drm/vc4/vc4_qpu_defines.h
 create mode 100644 drivers/gpu/drm/vc4/vc4_render_cl.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_trace.h
 create mode 100644 drivers/gpu/drm/vc4/vc4_trace_points.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_v3d.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_validate.c
 create mode 100644 drivers/gpu/drm/vc4/vc4_validate_shaders.c
 create mode 100644 include/uapi/drm/vc4_drm.h

-- 
2.6.2

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-12-08 18:30 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-08 18:30 [PATCH v2 0/9] VC4 3D rendering support Eric Anholt
2015-12-08 18:30 ` [PATCH v2 1/9] drm: Create a driver hook for allocating GEM object structs Eric Anholt
2015-12-08 18:30 ` [PATCH v2 2/9] drm/vc4: Add a BO cache Eric Anholt
2015-12-08 18:30 ` [PATCH v2 3/9] drm/vc4: Add create and map BO ioctls Eric Anholt
2015-12-08 18:30 ` [PATCH v2 4/9] drm/vc4: Add an API for creating GPU shaders in GEM BOs Eric Anholt
2015-12-08 18:30 ` [PATCH v2 5/9] drm/vc4: Fix a typo in a V3D debug register Eric Anholt
2015-12-08 18:30 ` [PATCH v2 6/9] drm/vc4: Bind and initialize the V3D engine Eric Anholt
2015-12-08 18:30 ` [PATCH v2 7/9] drm/vc4: Add support for drawing 3D frames Eric Anholt
2015-12-08 18:30 ` [PATCH v2 8/9] drm/vc4: Add support for async pageflips Eric Anholt
2015-12-08 18:30 ` [PATCH v2 9/9] drm/vc4: Add an interface for capturing the GPU state after a hang Eric Anholt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox