aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/hdmi
Commit message (Collapse)AuthorAgeFilesLines
* Fix reading EDID on TVs/monitors without E-DCC supportOleksandr Tymoshenko2020-06-101-1/+6
| | | | | | | | | | | | Writing segment id to I2C device 0x30 only required if the segment is non-zero. On the devices without E-DCC support writing to that address fails and whole transaction then fails too. To avoid this do not attempt write to the segment selection device unless required. MFC after: 2 weeks Notes: svn path=/head/; revision=362029
* Remove "all rights reserved" from copyright for the file that Jared McNeillEmmanuel Vadot2019-12-031-1/+0
| | | | | | | own. He gave me permission to do this. Notes: svn path=/head/; revision=355358
* Include eventhandler.h in more compilation unitsConrad Meyer2019-05-211-0/+1
| | | | | | | | | | | | | | | | This was enumerated with exhaustive search for sys/eventhandler.h includes, cross-referenced against EVENTHANDLER_* usage with the comm(1) utility. Manual checking was performed to avoid redundant includes in some drivers where a common os_bsd.h (for example) included sys/eventhandler.h indirectly, but it is possible some of these are redundant with driver-specific headers in ways I didn't notice. (These CUs did not show up as missing eventhandler.h in tinderbox.) X-MFC-With: r347984 Notes: svn path=/head/; revision=348026
* Add support for audio on I2S based DesignWare HDMI controllers.Jared McNeill2016-12-294-14/+202
| | | | | | | Relnotes: yes Notes: svn path=/head/; revision=310777
* Split the DesignWare HDMI-specific code from imx6_hdmi.c into a separateJared McNeill2016-12-205-0/+1686
file and add a generic DT binding that takes advantage of the extres framework for setting up clocks. Reviewed by: gonzo Differential Revision: https://reviews.freebsd.org/D8826 Notes: svn path=/head/; revision=310306