dptx: Updated modification history.
Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
parent
0c7ec45a82
commit
b37ecd25c7
7 changed files with 36 additions and 1 deletions
|
@ -47,6 +47,10 @@
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 05/17/14 Initial release.
|
* 1.0 als 05/17/14 Initial release.
|
||||||
* 2.0 als 09/21/14 Added XDptx_IsConnected (previously a macro).
|
* 2.0 als 09/21/14 Added XDptx_IsConnected (previously a macro).
|
||||||
|
* 3.0 als 12/16/14 Fixed XDptx_WaitPhyReady for maximum lane counts != 4.
|
||||||
|
* Force re-train during XDptx_EstablishLink.
|
||||||
|
* Modified XDptx_SetVswingPreemp usage to enable more
|
||||||
|
* efficient use of burst writes to a sink DPCD.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
* - Number of sink displays: 1, 2, 3, and 4 sink displays in both a daisy-chain
|
* - Number of sink displays: 1, 2, 3, and 4 sink displays in both a daisy-chain
|
||||||
* configuration and in a configuration using a combination of a 1-to-3 hub
|
* configuration and in a configuration using a combination of a 1-to-3 hub
|
||||||
* and daisy-chain. Each stream was using the same resolution.
|
* and daisy-chain. Each stream was using the same resolution.
|
||||||
* - Resolutions (@60Hz): 640x480, 800x600, 1024x768, 1280x800, 1280x1024,
|
* - Resolutions (60Hz): 640x480, 800x600, 1024x768, 1280x800, 1280x1024,
|
||||||
* 1360x768, 1400x1050, 1680x1050, 1920x1080, 1920x2160, and 3840x2160.
|
* 1360x768, 1400x1050, 1680x1050, 1920x1080, 1920x2160, and 3840x2160.
|
||||||
* - Color depths: 18, 24, 30, 36, and 48 bits per pixel.
|
* - Color depths: 18, 24, 30, 36, and 48 bits per pixel.
|
||||||
*
|
*
|
||||||
|
@ -199,6 +199,23 @@
|
||||||
* als 08/03/14 Initial MST addition.
|
* als 08/03/14 Initial MST addition.
|
||||||
* 2.0 als 09/21/14 Added XDptx_DiscoverTopology function and changed
|
* 2.0 als 09/21/14 Added XDptx_DiscoverTopology function and changed
|
||||||
* XDptx_IsConnected from macro to function.
|
* XDptx_IsConnected from macro to function.
|
||||||
|
* 3.0 als 12/16/14 Updated to use common video library.
|
||||||
|
* Added topology reordering functions:
|
||||||
|
* XDptx_TopologySwapSinks,
|
||||||
|
* XDptx_TopologySortSinksByTiling
|
||||||
|
* Added wrapper functions for remote DPCD/I2C read/writes:
|
||||||
|
* XDptx_RemoteDpcdRead, XDptx_RemoteDpcdWrite,
|
||||||
|
* XDptx_RemoteIicRead, XDptx_RemoteIicWrite
|
||||||
|
* Added EDID utility functions:
|
||||||
|
* XDptx_GetRemoteEdid, XDptx_GetEdidBlock,
|
||||||
|
* XDptx_GetRemoteEdidBlock,
|
||||||
|
* XDptx_GetRemoteEdidDispIdExt,
|
||||||
|
* XDptx_GetDispIdDataBlock,
|
||||||
|
* XDptx_GetRemoteTiledDisplayDb
|
||||||
|
* Remove unused arguments from functions:
|
||||||
|
* LinkCountTotal, RelativeAddress from
|
||||||
|
* XDptx_AllocatePayloadVcIdTable
|
||||||
|
* RegStartAddress from XDptx_IicWrite
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 05/17/14 Initial release.
|
* 1.0 als 05/17/14 Initial release.
|
||||||
* als 08/03/14 Initial MST addition.
|
* als 08/03/14 Initial MST addition.
|
||||||
|
* 3.0 als 12/16/14 Stream naming now starts at 1 to follow IP.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -44,6 +44,8 @@
|
||||||
* Ver Who Date Changes
|
* Ver Who Date Changes
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 05/17/14 Initial release.
|
* 1.0 als 05/17/14 Initial release.
|
||||||
|
* 3.0 als 12/16/14 Increased debounce duration for HPD to 0.500ms.
|
||||||
|
* Added masking of interrupts during servicing.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -41,6 +41,14 @@
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 08/03/14 Initial release.
|
* 1.0 als 08/03/14 Initial release.
|
||||||
* 2.0 als 09/21/14 Improvements to topology discovery and sideband messages.
|
* 2.0 als 09/21/14 Improvements to topology discovery and sideband messages.
|
||||||
|
* 3.0 als 12/16/14 Updated to use common video library.
|
||||||
|
* Stream naming now starts at 1 to follow IP.
|
||||||
|
* Added topology reordering functions:
|
||||||
|
* XDptx_TopologySwapSinks,
|
||||||
|
* XDptx_TopologySortSinksByTiling
|
||||||
|
* Added wrapper functions for remote DPCD/I2C read/writes:
|
||||||
|
* XDptx_RemoteDpcdRead, XDptx_RemoteDpcdWrite,
|
||||||
|
* XDptx_RemoteIicRead, XDptx_RemoteIicWrite
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
* Ver Who Date Changes
|
* Ver Who Date Changes
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 05/17/14 Initial release.
|
* 1.0 als 05/17/14 Initial release.
|
||||||
|
* 3.0 als 12/16/14 Stream naming now starts at 1 to follow IP.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
|
@ -47,6 +47,8 @@
|
||||||
* ----- ---- -------- -----------------------------------------------
|
* ----- ---- -------- -----------------------------------------------
|
||||||
* 1.0 als 05/17/14 Initial release.
|
* 1.0 als 05/17/14 Initial release.
|
||||||
* als 08/03/14 Initial MST addition.
|
* als 08/03/14 Initial MST addition.
|
||||||
|
* 3.0 als 12/16/14 Updated to use common video library.
|
||||||
|
* Stream naming now starts at 1 to follow IP.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
Loading…
Add table
Reference in a new issue