source: PlatformSupport/CustomPeripherals/pcores/w3_ad_bridge_v3_02_b/data/w3_ad_bridge_v2_1_0.mpd

Last change on this file was 4793, checked in by welsh, 9 years ago

Updating AD bridge - Fixing typo with TXCLK_OUT_en signal.

File size: 3.7 KB
Line 
1###################################################################
2# Copyright (c) 2015 Mango Communications
3# All Rights Reserved
4# This code is covered by the WARP license
5# See http://warpproject.org/license/ for details
6###################################################################
7
8BEGIN w3_ad_bridge
9
10## Peripheral Options
11OPTION IPTYPE = PERIPHERAL
12OPTION IMP_NETLIST = TRUE
13OPTION HDL = VERILOG
14OPTION ARCH_SUPPORT_MAP = (virtex6=DEVELOPMENT)
15OPTION USAGE_LEVEL = BASE_USER
16OPTION DESC = WARP v3 AD interface
17OPTION IP_GROUP = USER
18OPTION RUN_NGCBUILD = FALSE
19OPTION STYLE = HDL
20
21IO_INTERFACE IO_IF = ext_ad_ports, IO_TYPE = W3_ADBRIDGE_V1
22IO_INTERFACE IO_IF = user_ports, IO_TYPE = W3_ADBRIDGE_V1
23
24PARAMETER C_FAMILY = virtex6, DT = STRING
25
26####################################################################################
27## User Ports
28## The user must connect sources/sinks to these ports in XPS in order to use
29##  the analog interface board. The rest of the board's connections are made automatically
30####################################################################################
31PORT sys_samp_clk_RFA_Tx = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkTxA, SIGIS = CLK
32PORT sys_samp_clk_RFB_Tx = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkTxB, SIGIS = CLK
33
34PORT sys_samp_clk_RFA_Tx_90 = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkTx90A, SIGIS = CLK
35PORT sys_samp_clk_RFB_Tx_90 = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkTx90B, SIGIS = CLK
36
37PORT sys_samp_clk_RFA_Rx = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkRxA, SIGIS = CLK
38PORT sys_samp_clk_RFB_Rx = "", DIR = I, IO_IF = user_ports, IO_IS = sampClkRxB, SIGIS = CLK
39
40PORT ad_RFA_TXCLK_out_en = "RF_AD_TXCLK_out_en", DIR = I, IO_IF = user_ports, IO_IS = sampClkTxEnA
41PORT ad_RFB_TXCLK_out_en = "RF_AD_TXCLK_out_en", DIR = I, IO_IF = user_ports, IO_IS = sampClkTxEnB
42
43PORT user_RFA_RXD_I = "", DIR = O, VEC = [0:11], IO_IF = user_ports, IO_IS = userARXDI
44PORT user_RFA_RXD_Q = "", DIR = O, VEC = [0:11], IO_IF = user_ports, IO_IS = userARXDQ
45
46PORT user_RFA_TXD_I = "", DIR = I, VEC = [0:11], IO_IF = user_ports, IO_IS = userATXDI
47PORT user_RFA_TXD_Q = "", DIR = I, VEC = [0:11], IO_IF = user_ports, IO_IS = userATXDQ
48
49PORT user_RFA_TXIQ = "", DIR = I, IO_IF = user_ports, IO_IS = user_ATXIQ
50
51PORT user_RFB_RXD_I = "", DIR = O, VEC = [0:11], IO_IF = user_ports, IO_IS = userBRXDI
52PORT user_RFB_RXD_Q = "", DIR = O, VEC = [0:11], IO_IF = user_ports, IO_IS = userBRXDQ
53
54PORT user_RFB_TXD_I = "", DIR = I, VEC = [0:11], IO_IF = user_ports, IO_IS = userBTXDI
55PORT user_RFB_TXD_Q = "", DIR = I, VEC = [0:11], IO_IF = user_ports, IO_IS = userBTXDQ
56
57PORT user_RFB_TXIQ = "", DIR = I, IO_IF = user_ports, IO_IS = user_BTXIQ
58
59####
60# Analog Bridge <-> Analog Board ports
61####
62PORT ad_RFA_TXD = "", DIR = O, VEC = [11:0], IO_IS = adATXD, ENDIAN = LITTLE, IO_IF = ext_ad_ports
63PORT ad_RFA_TXIQ = "", DIR = O, IO_IS = adATXIQ, IO_IF = ext_ad_ports
64PORT ad_RFA_TXCLK = "", DIR = O, IO_IS = adATXCLK, IO_IF = ext_ad_ports
65
66PORT ad_RFA_TRXD = "", DIR = I, VEC = [11:0], IO_IS = adATRXD, ENDIAN = LITTLE, IO_IF = ext_ad_ports
67PORT ad_RFA_TRXIQ = "", DIR = I, IO_IS = adATRXIQ, IO_IF = ext_ad_ports
68PORT ad_RFA_TRXCLK = "", DIR = I, IO_IS = adATRXCLK, IO_IF = ext_ad_ports
69
70PORT ad_RFB_TXD = "", DIR = O, VEC = [11:0], IO_IS = adATXD, ENDIAN = LITTLE, IO_IF = ext_ad_ports
71PORT ad_RFB_TXIQ = "", DIR = O, IO_IS = adATXIQ, IO_IF = ext_ad_ports
72PORT ad_RFB_TXCLK = "", DIR = O, IO_IS = adATXCLK, IO_IF = ext_ad_ports
73
74PORT ad_RFB_TRXD = "", DIR = I, VEC = [11:0], IO_IS = adBTRXD, ENDIAN = LITTLE, IO_IF = ext_ad_ports
75PORT ad_RFB_TRXIQ = "", DIR = I, IO_IS = adBTRXIQ, IO_IF = ext_ad_ports
76PORT ad_RFB_TRXCLK = "", DIR = I, IO_IS = adBTRXCLK, IO_IF = ext_ad_ports
77
78END
Note: See TracBrowser for help on using the repository browser.