From 7cdb0225884fb5103a04794ca23b6f7be432785f Mon Sep 17 00:00:00 2001 From: Andrei-Liviu Simion Date: Wed, 8 Apr 2015 19:55:17 -0700 Subject: [PATCH] dp: rx: mst: Added a payload table into the RX structure. When the upstream device issues an ALLOCATE_PAYLOAD sideband message request, this table is updated to represent the allocated bandwidth for each stream. Signed-off-by: Andrei-Liviu Simion --- XilinxProcessorIPLib/drivers/dp/src/xdp.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/XilinxProcessorIPLib/drivers/dp/src/xdp.h b/XilinxProcessorIPLib/drivers/dp/src/xdp.h index 633c6581..564ca812 100644 --- a/XilinxProcessorIPLib/drivers/dp/src/xdp.h +++ b/XilinxProcessorIPLib/drivers/dp/src/xdp.h @@ -619,6 +619,9 @@ typedef struct { XDp_SbMsgLinkAddressReplyDeviceInfo LinkAddressInfo; /**< Topology information used by the RX to form the LINK_ADDRESS reply. */ + u8 PayloadTable[64]; /**< The payload table of the RX + representing allocated bandwidth + per stream. */ XDp_RxPorts Ports[16]; /**< Port information additional to that contained in LinkAddressInfo. */ } XDp_RxTopology;