dp: rx: Renamed interrupt + timer example to reflect SST + DP159.

The naming of this example is better described as SST with DP159
functionality.

Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
Reviewed-by: Hyun Kwon <hyun.kwon@xilinx.com>
This commit is contained in:
Andrei-Liviu Simion 2015-08-04 01:38:13 -07:00 committed by Nava kishore Manne
parent bd2d7b4487
commit 0f275f26d7
4 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
xdp_selftest_example.c=xdp_selftest_example.c
xdp_rx_intr_timer_example.c=xdp_rx_intr_timer_example.c
xdp_rx_sst_dp159_example.c=xdp_rx_sst_dp159_example.c
xdp_rx_mst_example.c=xdp_rx_mst_example.c
xdp_tx_audio_example.c=xdp_tx_example_common.h,xdp_tx_example_common.c
xdp_tx_intr_example.c=xdp_tx_example_common.h,xdp_tx_example_common.c

View file

@ -7,11 +7,11 @@
<link rel="stylesheet" type="text/css" href="../help.css">
</head>
<body bgcolor="#FFFFFF">
<h1> Example applications for the dp_v1_0 driver. </h1>
<h1> Example applications for the dp driver. </h1>
<HR>
<ul>
<li>xdp_selftest_example.c <a href="xdptx_selftest_example.c">(source)</a> </li>
<li>xdp_rx_intr_timer_example.c <a href="xdprx_intr_timer_example.c">(source)</a> </li>
<li>xdp_rx_sst_dp159_example.c <a href="xdprx_sst_dp159_example.c">(source)</a> </li>
<li>xdp_rx_mst_example.c <a href="xdprx_mst_example.c">(source)</a> </li>
<li>xdp_tx_audio_example.c <a href="xdptx_audio_example.c">(source)</a> </li>
<li>xdp_tx_intr_example.c <a href="xdptx_intr_example.c">(source)</a> </li>

View file

@ -1,5 +1,5 @@
There are 2 DisplayPort RX examples included in this directory:
1) xdp_rx_intr_timer_example.c : This interrupt with timer example shows how to
1) xdp_rx_sst_dp159_example.c : This interrupt with timer example shows how to
set up both the interrupt system with interrupt handlers and how to override
the default sleep/delay functionality for MicroBlaze. A timer needs to exist
in the hardware system and will be used for sleep/delay functionality inside

View file

@ -32,7 +32,7 @@
/******************************************************************************/
/**
*
* @file xdp_rx_intr_timer_example.c
* @file xdp_rx_sst_dp159_example.c
*
* Contains a design example using the XDp driver for an DP RX core generated
* with SST-only functionality.
@ -128,8 +128,8 @@ XPAR_PROCESSOR_SUBSYSTEM_INTERCONNECT_AXI_INTC_1_DISPLAYPORT_0_AXI_INT_INTR
/**************************** Function Prototypes *****************************/
u32 Dprx_IntrTimerExample(XDp *InstancePtr, u16 DeviceId, INTC *IntcPtr,
u16 IntrId, u16 DpIntrId, XTmrCtr *TimerCounterPtr, u16 TimerId);
u32 Dprx_SstExample(XDp *InstancePtr, u16 DeviceId, INTC *IntcPtr, u16 IntrId,
u16 DpIntrId, XTmrCtr *TimerCounterPtr, u16 TimerId);
static u32 Dprx_SetupExample(XDp *InstancePtr, u16 DeviceId);
static u32 Dprx_SetupTimerHandler(XDp *InstancePtr, XTmrCtr *TimerCounterPtr,
u16 TimerId);
@ -177,8 +177,8 @@ u8 VBlankCount;
/******************************************************************************/
/**
* This function is the main function of the XDp (operating in RX mode)
* interrupt with timer example. If the Dprx_IntrTimerExample function, which
* sets up the system succeeds, this function will wait for interrupts.
* interrupt with timer example. If the Dprx_SstExample function, which sets up
* the system succeeds, this function will wait for interrupts.
*
* @param None.
*
@ -187,7 +187,7 @@ u8 VBlankCount;
* setup failed.
*
* @note Unless setup failed, main will never return since
* Dprx_IntrTimerExample is blocking.
* Dprx_SstExample is blocking.
*
*******************************************************************************/
int main(void)
@ -195,7 +195,7 @@ int main(void)
u32 Status;
/* Run the XDp (in RX mode) interrupt with timer example. */
Status = Dprx_IntrTimerExample(&DpInstance, DPRX_DEVICE_ID,
Status = Dprx_SstExample(&DpInstance, DPRX_DEVICE_ID,
&IntcInstance, INTC_DEVICE_ID, DP_INTERRUPT_ID,
&TimerCounterInst, TMRC_DEVICE_ID);
if (Status != XST_SUCCESS) {
@ -229,8 +229,8 @@ int main(void)
* @note None.
*
*******************************************************************************/
u32 Dprx_IntrTimerExample(XDp *InstancePtr, u16 DeviceId, INTC *IntcPtr,
u16 IntrId, u16 DpIntrId, XTmrCtr *TimerCounterPtr, u16 TimerId)
u32 Dprx_SstExample(XDp *InstancePtr, u16 DeviceId, INTC *IntcPtr, u16 IntrId,
u16 DpIntrId, XTmrCtr *TimerCounterPtr, u16 TimerId)
{
u32 Status;