From 03e3e18d5761c095e0d9deaae58027890cccc36f Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Mon, 8 Jun 2015 13:54:07 -0700 Subject: [PATCH] dp: Added modification history for v2.0. Signed-off-by: Andrei-Liviu Simion --- XilinxProcessorIPLib/drivers/dp/src/xdp.c | 1 + XilinxProcessorIPLib/drivers/dp/src/xdp.h | 24 +++++++++++++++++++ XilinxProcessorIPLib/drivers/dp/src/xdp_hw.h | 1 + .../drivers/dp/src/xdp_intr.c | 1 + XilinxProcessorIPLib/drivers/dp/src/xdp_mst.c | 1 + 5 files changed, 28 insertions(+) diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp.c b/XilinxProcessorIPLib/drivers/dp/src/xdp.c index 73733284..e105cc92 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp.c +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp.c @@ -46,6 +46,7 @@ * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.0 als 01/20/15 Initial release. TX code merged from the dptx driver. + * 2.0 als 06/08/15 Updated RX initialization with MST support. * * *******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp.h b/XilinxProcessorIPLib/drivers/dp/src/xdp.h index 07d0e526..36d1a38e 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp.h +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp.h @@ -271,6 +271,30 @@ * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.0 als 01/20/15 Initial release. TX code merged from the dptx driver. + * 2.0 als 06/08/15 Added MST functionality to RX. New APIs: + * XDp_RxHandleDownReq, XDp_RxGetIicMapEntry, + * XDp_RxSetIicMapEntry, XDp_RxSetDpcdMap, + * XDp_RxMstExposePort, XDp_RxMstSetPort, + * XDp_RxMstSetInputPort, XDp_RxMstSetPbn, + * XDp_RxSetIntrDownReqHandler, + * XDp_RxSetIntrDownReplyHandler, + * XDp_RxSetIntrAudioOverHandler, + * XDp_RxSetIntrPayloadAllocHandler, + * XDp_RxSetIntrActRxHandler, + * XDp_RxSetIntrCrcTestHandler + * Added Intr*Handler and Intr*CallbackRef interrupt-related + * members to XDp_Rx structure for: + * DownReq, DownReply, AudioOver, PayloadAlloc, ActRx, + * CrcTest + * Added new data structures related to RX MST topology: + * XDp_RxIicMapEntry, XDp_RxDpcdMap, XDp_RxPorts, + * XDp_RxTopology + * Renamed XDp_Tx* to XDp_* to reflect commonality with RX + * for: + * XDp_TxSbMsgLinkAddressReplyPortDetail + * XDp_TxSbMsgLinkAddressReplyDeviceInfo + * GUID type change for ease of use: + * 'u32 Guid[4]' changed to 'u8 Guid[16]' * * *******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp_hw.h b/XilinxProcessorIPLib/drivers/dp/src/xdp_hw.h index 89085b02..546ef834 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp_hw.h +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp_hw.h @@ -46,6 +46,7 @@ * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.0 als 01/20/15 Initial release. TX code merged from the dptx driver. + * 2.0 als 06/08/15 Added MST registers, masks, and values for RX. * * *******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp_intr.c b/XilinxProcessorIPLib/drivers/dp/src/xdp_intr.c index 36e4931d..2bcc825b 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp_intr.c +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp_intr.c @@ -44,6 +44,7 @@ * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.0 als 01/20/15 Initial release. TX code merged from the dptx driver. + * 2.0 als 06/08/15 Added MST interrupt handlers for RX. * * *******************************************************************************/ diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp_mst.c b/XilinxProcessorIPLib/drivers/dp/src/xdp_mst.c index ce780eac..7dff11bd 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp_mst.c +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp_mst.c @@ -40,6 +40,7 @@ * Ver Who Date Changes * ----- ---- -------- ----------------------------------------------- * 1.0 als 01/20/15 Initial release. TX code merged from the dptx driver. + * 2.0 als 06/08/15 Added MST functionality to RX. * * *******************************************************************************/