linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Sin <davidsin@ti.com>
To: linux-arm-kernel@lists.arm.linux.org.uk,
	linux-omap@vger.kernel.org, Tony Lindgren <tony@atomide.com>,
	Russell King <rmk@arm.linux.org.uk>
Cc: Hari Kanigeri <h-kanigeri2@ti.com>,
	Ohad Ben-Cohen <ohad@wizery.com>,
	Vaibhav Hiremath <hvaibhav@ti.com>,
	Santosh Shilimkar <santosh.shilimkar@ti.com>,
	David Sin <davidsin@ti.com>
Subject: [RFC 0/8] TI TILER-DMM driver
Date: Fri, 23 Jul 2010 18:22:20 -0500	[thread overview]
Message-ID: <1279927348-21750-1-git-send-email-davidsin@ti.com> (raw)

TILER is a hardware block made by Texas Instruments.  Its purpose is to 
organize video/image memory in a 2-dimensional fashion to limit memory 
bandwidth and facilitate 0 effort rotation and mirroring.  The TILER 
driver facilitates allocating, freeing, as well as mapping 2D blocks (areas) 
in the TILER container(s).  It also facilitates rotating and mirroring 
the allocated blocks or its rectangular subsections.

List of pending items in proposed order:

* Add area packing support (multiple blocks can reside in the same band/area)
  to optimize area use
* Add group-ID support (to specify which blocks can reside together in the
  same area)
* Add multiple search directions to TCM-SiTA
* Add 1D block support (including adding 1D search algo to TCM-SiTA)
* Optimize mutex handling (don.t hold mutex during memory
  allocation/mapping/cache flushing)
* Add block reference counting, support for sharing blocks
* Move all kernel-API-s to tiler-iface.c
* Support orphaned block support (in preparation for process cleanup support)
* Change block identification from physical address to key-ID pair
  (in preparation for user space support, and process security)
* Add support for process security (blocks from separate processes never
  reside in the same band)
* Support file interface (ioctl and mmap)
* Support for buffers (ordered list of blocks that are mapped to userspace
  together, such as YUV420sp)
* Support 1D user buffer mapping into TILER container
* Support for block pre-reservation (to further optimize area use)

David Sin (1):
  TILER-DMM: DMM-PAT driver for TI TILER

Lajos Molnar (6):
  TILER-DMM: Container manager interface and utility definitons
  TILER-DMM: TILER Memory Manager interface and implementation
  TILER-DMM: TILER interface file and documentation
  TILER-DMM: Geometry and view manipulation functions.
  TILER-DMM: Main TILER driver implementation.
  TILER-DMM: Linking TILER driver into the Linux kernel build

Ravi Ramachandra (1):
  TILER-DMM: Sample TCM implementation: Simple TILER Allocator

 Documentation/arm/TILER                   |  144 +++++++++
 arch/arm/mach-omap2/include/mach/dmm.h    |  128 ++++++++
 arch/arm/mach-omap2/include/mach/tiler.h  |  201 +++++++++++++
 drivers/media/Kconfig                     |    6 +
 drivers/media/Makefile                    |    2 +
 drivers/media/video/tiler/Kconfig         |   65 ++++
 drivers/media/video/tiler/Makefile        |    7 +
 drivers/media/video/tiler/_tiler.h        |   51 ++++
 drivers/media/video/tiler/dmm.c           |  200 +++++++++++++
 drivers/media/video/tiler/tcm.h           |  209 +++++++++++++
 drivers/media/video/tiler/tcm/Makefile    |    1 +
 drivers/media/video/tiler/tcm/_tcm-sita.h |   64 ++++
 drivers/media/video/tiler/tcm/tcm-sita.c  |  459 +++++++++++++++++++++++++++++
 drivers/media/video/tiler/tcm/tcm-sita.h  |   37 +++
 drivers/media/video/tiler/tcm/tcm-utils.h |   54 ++++
 drivers/media/video/tiler/tiler-geom.c    |  360 ++++++++++++++++++++++
 drivers/media/video/tiler/tiler-iface.c   |  106 +++++++
 drivers/media/video/tiler/tiler-main.c    |  426 ++++++++++++++++++++++++++
 drivers/media/video/tiler/tmm-pat.c       |  274 +++++++++++++++++
 drivers/media/video/tiler/tmm.h           |  109 +++++++
 20 files changed, 2903 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/arm/TILER
 create mode 100644 arch/arm/mach-omap2/include/mach/dmm.h
 create mode 100644 arch/arm/mach-omap2/include/mach/tiler.h
 create mode 100644 drivers/media/video/tiler/Kconfig
 create mode 100644 drivers/media/video/tiler/Makefile
 create mode 100644 drivers/media/video/tiler/_tiler.h
 create mode 100644 drivers/media/video/tiler/dmm.c
 create mode 100644 drivers/media/video/tiler/tcm.h
 create mode 100644 drivers/media/video/tiler/tcm/Makefile
 create mode 100644 drivers/media/video/tiler/tcm/_tcm-sita.h
 create mode 100644 drivers/media/video/tiler/tcm/tcm-sita.c
 create mode 100644 drivers/media/video/tiler/tcm/tcm-sita.h
 create mode 100644 drivers/media/video/tiler/tcm/tcm-utils.h
 create mode 100644 drivers/media/video/tiler/tiler-geom.c
 create mode 100644 drivers/media/video/tiler/tiler-iface.c
 create mode 100644 drivers/media/video/tiler/tiler-main.c
 create mode 100644 drivers/media/video/tiler/tmm-pat.c
 create mode 100644 drivers/media/video/tiler/tmm.h


             reply	other threads:[~2010-07-23 23:06 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-23 23:22 David Sin [this message]
2010-07-23 23:22 ` [RFC 1/8] TILER-DMM: DMM-PAT driver for TI TILER David Sin
2010-07-23 23:22   ` [RFC 2/8] TILER-DMM: Container manager interface and utility definitons David Sin
2010-07-23 23:22     ` [RFC 3/8] TILER-DMM: Sample TCM implementation: Simple TILER Allocator David Sin
2010-07-23 23:22       ` [RFC 4/8] TILER-DMM: TILER Memory Manager interface and implementation David Sin
2010-07-23 23:22         ` [RFC 5/8] TILER-DMM: TILER interface file and documentation David Sin
2010-07-23 23:22           ` [RFC 6/8] TILER-DMM: Geometry and view manipulation functions David Sin
2010-07-23 23:22             ` [RFC 7/8] TILER-DMM: Main TILER driver implementation David Sin
2010-07-23 23:22               ` [RFC 8/8] TILER-DMM: Linking TILER driver into the Linux kernel build David Sin
2010-07-24  7:32               ` [RFC 7/8] TILER-DMM: Main TILER driver implementation Shilimkar, Santosh
2010-07-24 13:41                 ` Hari Kanigeri
2010-07-24 13:53                   ` Shilimkar, Santosh
2010-07-24  7:55               ` Russell King - ARM Linux
2010-07-24  7:21           ` [RFC 5/8] TILER-DMM: TILER interface file and documentation Shilimkar, Santosh
2010-07-24  8:01         ` [RFC 4/8] TILER-DMM: TILER Memory Manager interface and implementation Russell King - ARM Linux
2010-07-26 19:34           ` Sin, David
2010-08-02 14:40           ` Sin, David
2010-08-02 14:44             ` Shilimkar, Santosh
2010-08-02 14:49               ` Sin, David
2010-08-02 14:52                 ` Shilimkar, Santosh
2010-08-02 14:55                   ` Sin, David
     [not found]                   ` <9DCA1E44C5805D4EB7C1626D5FD1739E048EDA223B@dlee02.ent.ti.com>
2010-08-03 19:49                     ` Sin, David
2010-07-28  5:53         ` Hiremath, Vaibhav
2010-07-24  7:13       ` [RFC 3/8] TILER-DMM: Sample TCM implementation: Simple TILER Allocator Shilimkar, Santosh
2010-07-25 15:45         ` Molnar, Lajos
2010-07-26 19:33         ` Sin, David
2010-07-27 20:41       ` Hiremath, Vaibhav
2010-07-24  6:56     ` [RFC 2/8] TILER-DMM: Container manager interface and utility definitons Shilimkar, Santosh
2010-07-27 20:21     ` Hiremath, Vaibhav
2010-07-24  6:51   ` [RFC 1/8] TILER-DMM: DMM-PAT driver for TI TILER Shilimkar, Santosh
2010-07-24  8:09   ` Russell King - ARM Linux
2010-07-24 10:15     ` Russell King - ARM Linux
2010-07-26 19:28     ` Sin, David
2010-07-27 18:37   ` Hiremath, Vaibhav
2010-07-27 19:05     ` Sin, David
2010-07-27 19:53       ` Hiremath, Vaibhav
2010-07-28 10:00         ` Laurent Pinchart
2010-07-28 14:39           ` Sin, David
2010-07-28 15:46             ` Hiremath, Vaibhav
2010-07-28  9:45       ` Laurent Pinchart
2010-07-24  7:44 ` [RFC 0/8] TI TILER-DMM driver Shilimkar, Santosh
2010-07-26 19:20   ` Sin, David
2010-07-24 11:12 ` Hans Verkuil
2010-07-28 15:23   ` Sin, David
2010-07-28 17:30     ` Hiremath, Vaibhav
2010-07-28 19:15       ` Sin, David
     [not found] <1279927694-26138-1-git-send-email-davidsin@ti.com>
     [not found] ` <AANLkTinyidvgpE26M=JXjpouoC+mPfehQWyr4L_bQHu_@mail.gmail.com>
2010-07-26 19:44   ` Sin, David

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1279927348-21750-1-git-send-email-davidsin@ti.com \
    --to=davidsin@ti.com \
    --cc=h-kanigeri2@ti.com \
    --cc=hvaibhav@ti.com \
    --cc=linux-arm-kernel@lists.arm.linux.org.uk \
    --cc=linux-omap@vger.kernel.org \
    --cc=ohad@wizery.com \
    --cc=rmk@arm.linux.org.uk \
    --cc=santosh.shilimkar@ti.com \
    --cc=tony@atomide.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).