Revision c1230df7e19e0f27655c0eb9d966c7e03be7cc50 authored by Paulo Zanoni on 03 May 2012, 01:55:43 UTC, committed by Daniel Vetter on 03 May 2012, 13:55:38 UTC
While testing with the intel_infoframes tool on gen4, I see that when
video DIP is disabled, what we write to the DATA memory is not exactly
what we read back later.

This regression has been introduce in

commit 64a8fc0145a1d0fdc25fc9367c2e6c621955fb3b
Author: Jesse Barnes <jbarnes@virtuousgeek.org>
Date:   Thu Sep 22 11:16:00 2011 +0530

    drm/i915: fix ILK+ infoframe support

That commit was setting VIDEO_DIP_CTL to 0 when initializing, which
caused the problem.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=43947
Cc: stable@kernel.org
Tested-by: Yang Guang <guang.a.yang@intel.com>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
[danvet: Pimped commit message by using the usual commit citation
layout.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
1 parent 6200497
Raw File
isofs.txt
Mount options that are the same as for msdos and vfat partitions.

  gid=nnn	All files in the partition will be in group nnn.
  uid=nnn	All files in the partition will be owned by user id nnn.
  umask=nnn	The permission mask (see umask(1)) for the partition.

Mount options that are the same as vfat partitions. These are only useful
when using discs encoded using Microsoft's Joliet extensions.
  iocharset=name Character set to use for converting from Unicode to
		ASCII.  Joliet filenames are stored in Unicode format, but
		Unix for the most part doesn't know how to deal with Unicode.
		There is also an option of doing UTF-8 translations with the
		utf8 option.
  utf8          Encode Unicode names in UTF-8 format. Default is no.

Mount options unique to the isofs filesystem.
  block=512     Set the block size for the disk to 512 bytes
  block=1024    Set the block size for the disk to 1024 bytes
  block=2048    Set the block size for the disk to 2048 bytes
  check=relaxed Matches filenames with different cases
  check=strict  Matches only filenames with the exact same case
  cruft         Try to handle badly formatted CDs.
  map=off       Do not map non-Rock Ridge filenames to lower case
  map=normal    Map non-Rock Ridge filenames to lower case
  map=acorn     As map=normal but also apply Acorn extensions if present
  mode=xxx      Sets the permissions on files to xxx unless Rock Ridge
		extensions set the permissions otherwise
  dmode=xxx     Sets the permissions on directories to xxx unless Rock Ridge
		extensions set the permissions otherwise
  overriderockperm Set permissions on files and directories according to
		'mode' and 'dmode' even though Rock Ridge extensions are
		present.
  nojoliet      Ignore Joliet extensions if they are present.
  norock        Ignore Rock Ridge extensions if they are present.
  hide		Completely strip hidden files from the file system.
  showassoc	Show files marked with the 'associated' bit
  unhide	Deprecated; showing hidden files is now default;
		If given, it is a synonym for 'showassoc' which will
		recreate previous unhide behavior
  session=x     Select number of session on multisession CD
  sbsector=xxx  Session begins from sector xxx

Recommended documents about ISO 9660 standard are located at:
http://www.y-adagio.com/
ftp://ftp.ecma.ch/ecma-st/Ecma-119.pdf
Quoting from the PDF "This 2nd Edition of Standard ECMA-119 is technically 
identical with ISO 9660.", so it is a valid and gratis substitute of the
official ISO specification.
back to top