Go to file
Jammy Zhou f1adc4b375 Add new drmOpenWithType function (v4)
v2: Add drmGetMinorBase, and call drmOpenWithType in drmOpen
v3: Pass 'type' to drmOpenByBusid and drmOpenDevice in drmOpenByName
v4: Renumber node type definitions, and return -1 for unsupported type

Signed-off-by: Jammy Zhou <Jammy.Zhou@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com> (v3)
Reviewed-by: Frank Binns <frank.binns@imgtec.com>
2015-02-12 18:34:57 -05:00
exynos exynos: remove DRM_EXYNOS_GEM_{MAP_OFFSET/MMAP} ioctls 2015-02-02 14:45:53 -05:00
freedreno configure/freedreno: make KGSL support optional 2015-01-18 13:18:33 -05:00
include/drm Add new DRM_MODE_CONNECTOR and _ENCODER defines 2015-01-05 14:30:57 -05:00
intel intel: Unconditionally clear ioctl structs 2015-02-11 15:36:05 +01:00
libkms exynos: Don't use DRM_EXYNOS_GEM_{MAP_OFFSET/MMAP} ioctls 2015-02-02 14:45:39 -05:00
m4 build: Update autotools configuration 2011-03-21 13:43:43 +00:00
man man: Fix typo and use $() for make expressions 2013-01-25 13:46:57 -08:00
nouveau nouveau: Remove unused static function. 2015-01-26 10:08:43 +01:00
omap omap: Use symbol visibility. 2014-08-14 21:59:18 +02:00
radeon radeon: align r600/700 fmask to 128 X blocks. 2015-01-19 16:47:34 +10:00
tegra tegra: Implement drm_tegra_bo_{get,set}_tiling() 2014-11-27 17:20:32 +01:00
tests tests: remove intel-specific tests 2015-02-11 15:37:26 +01:00
.gitignore tests: remove intel-specific tests 2015-02-11 15:37:26 +01:00
Android.mk modetest: add Android build 2014-09-28 17:09:34 +01:00
CleanSpec.mk android: add CleanSpec.mk 2014-09-01 16:06:02 +01:00
Makefile.am libdrm: Add NVIDIA Tegra support 2014-11-27 17:05:35 +01:00
Makefile.sources libdrm: Add NVIDIA Tegra support 2014-11-27 17:05:35 +01:00
README Update README 2009-11-20 17:08:28 -05:00
RELEASING Add RELEASING to document the release process 2009-12-03 17:50:37 -05:00
autogen.sh autogen.sh: Restore passing --enable-maintainer-mode to configure. 2012-06-08 15:23:46 +02:00
configure.ac configure.ac: bump version to 2.4.59 for release 2015-01-21 11:52:33 +01:00
libdrm.h Add private mmap/munmap wrappers 2014-09-28 17:09:34 +01:00
libdrm.pc.in Revert "Fix pkgconfig includes for /usr/include/drm" 2010-04-09 16:33:38 -04:00
libdrm_lists.h lists: add nicer+unsafe foreach, and list join macros 2012-04-14 02:47:04 +10:00
xf86atomic.h Stop undefining _ATOMIC_TYPE in Solaris/NetBSD section of xf86atomic.h 2015-02-12 14:18:31 -08:00
xf86drm.c Add new drmOpenWithType function (v4) 2015-02-12 18:34:57 -05:00
xf86drm.h Add new drmOpenWithType function (v4) 2015-02-12 18:34:57 -05:00
xf86drmHash.c Move libdrm/ up one level 2009-11-17 11:15:06 -05:00
xf86drmMode.c xf86drmMode: Unconditionally clear ioctl structs 2015-02-11 15:36:39 +01:00
xf86drmMode.h update signed/object prop types 2014-11-24 19:56:50 -05:00
xf86drmRandom.c random: Use unsigned long for seed 2015-02-10 15:24:35 -05:00
xf86drmSL.c Tidy up compile warnings by cleaning up types. 2010-02-04 19:45:10 -05:00

README

libdrm - userspace library for drm

This  is libdrm,  a userspace  library for  accessing the  DRM, direct
rendering  manager, on  Linux,  BSD and  other  operating systes  that
support the  ioctl interface.  The library  provides wrapper functions
for the  ioctls to avoid  exposing the kernel interface  directly, and
for chipsets with drm memory manager, support for tracking relocations
and  buffers.   libdrm  is  a  low-level library,  typically  used  by
graphics drivers  such as the Mesa  DRI drivers, the  X drivers, libva
and  similar projects.  New  functionality in  the kernel  DRM drivers
typically requires  a new  libdrm, but a  new libdrm will  always work
with an older kernel.


Compiling
---------

libdrm  is  a  standard  autotools  packages and  follows  the  normal
configure, build  and install steps.   The first step is  to configure
the package, which is done by running the configure shell script:

	./configure

By default, libdrm  will install into the /usr/local/  prefix.  If you
want  to  install   this  DRM  to  replace  your   system  copy,  pass
--prefix=/usr and  --exec-prefix=/ to configure.  If  you are building
libdrm  from a  git checkout,  you first  need to  run  the autogen.sh
script.  You can  pass any options to autogen.sh  that you would other
wise  pass to configure,  or you  can just  re-run configure  with the
options you need once autogen.sh finishes.

Next step is to build libdrm:

	make

and once make finishes successfully, install the package using

	make install

If you are install into a system location, you will need to be root to
perform the install step.