source: PlatformSupport/Deprecated/pcores/eeprom_v1_06_a/devl/README.txt

Last change on this file was 915, checked in by murphpo, 16 years ago

adding PLB46 version of EEPROM controller

  • Property svn:executable set to *
File size: 11.4 KB
Line 
1TABLE OF CONTENTS
2  1) Peripheral Summary
3  2) Description of Generated Files
4  3) Description of Used IPIC Signals
5  4) Description of Top Level Generics
6
7
8================================================================================
9*                             1) Peripheral Summary                            *
10================================================================================
11Peripheral Summary:
12
13  XPS project / EDK repository               : C:\work\eeprom\MyProcessorIPLib
14  logical library name                       : eeprom_v1_04_a
15  top name                                   : eeprom
16  version                                    : 1.04.a
17  type                                       : PLB (v4.6) slave
18  features                                   : slave attachment
19                                               user memory spaces
20
21Address Block for User Logic and IPIF Predefined Services
22
23  User logic memory space 0                  : C_MEM0_BASEADDR
24                                             : C_MEM0_HIGHADDR
25
26
27================================================================================
28*                          2) Description of Generated Files                   *
29================================================================================
30- HDL source file(s)
31
32  hdl/vhdl/eeprom.vhd
33
34    This is the template file for your peripheral's top design entity. It
35    configures and instantiates the corresponding design units in the way you
36    indicated in the wizard GUI and hooks it up to the stub user logic where
37    the actual functionalites should get implemented. You are not expected to
38    modify this template file except certain marked places for adding user
39    specific generics and ports.
40
41  verilog/user_logic.v
42
43    This is the template file for the stub user logic design entity, either in
44    VHDL or Verilog, where the actual functionalities should get implemented.
45    Some sample code snippet may be provided for demonstration purpose.
46
47- XPS interface file(s)
48
49  data/eeprom_v2_1_0.mpd
50
51    This Microprocessor Peripheral Description file contains information of the
52    interface of your peripheral, so that other EDK tools can recognize your
53    peripheral.
54
55  data/eeprom_v2_1_0.pao
56
57    This Peripheral Analysis Order file defines the analysis order of all the HDL
58    source files that are used to compile your peripheral.
59
60- Other misc file(s)
61
62  devl/ipwiz.opt
63
64    This is the option setting file for the wizard batch mode, which should
65    generate the same result as the wizard GUI mode.
66
67  devl/README.txt
68
69    This README file for your peripheral.
70
71  devl/ipwiz.log
72
73    This is the log file by operating on this wizard.
74
75
76================================================================================
77*                         3) Description of Used IPIC Signals                  *
78================================================================================
79For more information (usage, timing diagrams, etc.) regarding the IPIC signals
80used in the templates, please refer to the following specifications (under
81%XILINX_EDK%\doc for windows or $XILINX_EDK/doc for solaris and linux):
82proc_ip_ref_guide.pdf - Processor IP Reference Guide (chapter 4 IPIF)
83user_core_templates_ref_guide.pdf - User Core Templates Reference Guide
84
85Bus2IP_Clk
86    Synchronization clock provided to the user logic. All IPIC signals are
87    synchronous to this clock. It is identical to the input <bus>_Clk signal of
88    the peripheral. No additional buffering is provided on the clock; it is
89    passed through as is.
90
91Bus2IP_Reset
92    Active high reset for used by the user logic; it is asserted whenever the
93    <bus>_Rst signal asserts or whenever there is a software-programmed reset
94    (if the soft reset block is included).
95
96Bus2IP_Addr
97    Address bus to the user logic indicating the desired address of the
98    requested read or write operation. It can be used for additional address
99    decoding or as input to addressable memory devices.
100
101Bus2IP_CS
102    Active high chip select bus. Assertion of a chip select indicates an active
103    transaction request to the chip select's target address space. Typically
104    used for user logic memory space selection.
105
106Bus2IP_RNW
107    This is an input signal to the user logic; it indicates the sense of a
108    requested operation with the user logic. High is a read and low is a write.
109    It is valid whenever at least one of the Bus2IP_CS bits is active.
110
111Bus2IP_Data
112    Write data bus to the user logic. Write data is accepted by the user logic
113    during a write operation by assertion of the write acknowledgement signal
114    and the rising edge of the Bus2IP_Clk.
115
116Bus2IP_BE
117    Byte Enable qualifiers for the requested read or write operation to the user
118    logic. A bit in the Bus2IP_BE set to '1' indicates that the associated byte
119    lane contains valid data. For example, if Bus2IP_BE = 0011, this indicates
120    that byte lanes 2 and 3 contains valid data.
121
122IP2Bus_Data
123    Output read data bus from the user logic; data is qualified with the
124    assertion of IP2Bus_RdAck signal and the rising edge of the Bus2IP_Clk.
125
126IP2Bus_RdAck
127    Active high read data qualifier providing the read acknowledgement from the
128    user logic. Read data on the IP2Bus_Data bus is deemed valid at the rising
129    edge of the Bus2IP_Clk and IP2Bus_RdAck asserted high by the user logic. For
130    immediate acknowledgement (such as for a register read), this signal can be
131    tied to '1'. Wait states can be inserted in the transaction by delaying the
132    assertion of the acknowledgement.
133
134IP2Bus_WrAck
135    Active high write data qualifier providing the write acknowledgement from
136    the user logic. Write data on the Bus2IP_Data bus is deemed accepted by the
137    user logic at the rising edge of the Bus2IP_Clk and IP2Bus_WrAck asserted
138    high by the user logic. For immediate acknowledgement (such as for a
139    register write), this signal can be tied to '1'. Wait states can be inserted
140    in the transaction by delaying the assertion of the acknowledgement.
141
142IP2Bus_Error
143    Active high signal indicating the user logic has encountered an error with
144    the requested operation. It is asserted in conjunction with the read/write
145    acknowledgement signal(s).
146
147================================================================================
148*                     4) Description of Top Level Generics                     *
149================================================================================
150C_BASEADDR/C_HIGHADDR
151    These two generics are used to define the memory mapped address space for
152    the peripheral registers, including Soft Reset register, Interrupt Source
153    Controller registers, Read/Write FIFO control/data registers, user logic
154    software accessible registers and etc., but excluding those user logic
155    memory spaces if ever existed. When instantiation, the address space
156    size determined by these two generics must be a power of 2 (e.g. 2^k =
157    C_HIGHADDR - C_BASEADDR + 1), a factor of C_BASEADDR and larger than the
158    minimum size as indicated in the template.
159
160C_SPLB_AWIDTH
161    This is the slave interface address bus width for Processor Local Bus
162    version 4.6 (PLBv46). Value can be assigned automatically by EDK
163    tooling during system creation.
164
165C_SPLB_DWIDTH
166    This is the slave interface data bus width for Processor Local Bus
167    version 4.6 (PLBv46). Value can be assigned automatically by EDK
168    tooling during system creation.
169
170C_SPLB_NUM_MASTERS
171    This indicates to the slave interface the number of PLBv46 masters
172    present. Value can be assigned automatically by EDK tooling during
173    system creation.
174
175C_SPLB_MID_WIDTH
176    This indicates to the slave interface the number of bits required
177    for the PLB_masterID input bus. It is an integer value equal to
178    log2(C_SPLB_NUM_MASTERS). Value will be assigned automatically by
179    EDK tooling during system creation.
180
181C_SPLB_NATIVE_DWIDTH
182    This indicates to the slave interface the native bit width of the
183    internal data bus of the peripheral. Some peripheral will require
184    the value of this parameter to be fixed, while others might have
185    selectable native data widths.
186
187C_SPLB_P2P
188    This indicates to the slave interface when it is exclusively attached
189    to a PLBv46 bus via a Point to Point interconnect scheme. In this
190    scenario, the slave interface may be able to reduce resource utilization
191    by eliminating address decode function and modifying interface behavior
192    to allow for a reduction in latency.
193
194C_SPLB_SUPPORT_BURSTS
195    This indicates to the associated PLBv46 bus that this slave interface
196    support burst transfers to improve performance.
197
198C_SPLB_SMALLEST_MASTER
199    This indicates the smallest native data width of any master on the
200    corresponding PLBv46 bus that may access the slave interface. It allows
201    optimizations within the slave interface logic if narrower masters don't
202    have to be supported for that application.
203
204C_SPLB_CLK_PERIOD_PS
205    This is the period of the PLBv46 bus clock (in picoseconds) for the
206    corresponding PLBv46 slave interface attachment. It has been defined
207    for use by peripheral that needs to know the bus clock rate to improve
208    certain functions such as internal timers.
209
210C_INCLUDE_DPHASE_TIMER
211    This indicates if the data phase timer is used or not. The value of
212    0 will exclude the timer.  The value of 1 includes the timer.
213    If C_INCLUDE_DPHASE_TIMER = 1 and after 128 SPLB_Clk cycles, as
214    measured from the assertion of Sl_AddrAck, the User IP does not
215    respond with either an IP2Bus_RdAck or IP2Bus_WrAck the
216    plbv46_slave_single will de-assert the User IP cycle request
217    signals, Bus2IP_CS and Bus2IP_RdCE or Bus2IP_WrCE, and will assert
218    Sl_rdDAck with Sl_rdDBus=zero for a read cycle or Sl_wrDAck for
219    a write cycle. This will gracefully terminate the cycle. Note
220    that the requesting master will have no knowledge that the data
221    phase of the PLB request was terminated in this manner.
222
223C_FAMILY
224    This is to set the target FPGA architecture, s.t. virtex5, etc.
225
226C_MEMn_BASEADDR/C_MEMn_HIGHADDR (n = 0, 1, 2, etc.)
227    These two generics are used to define the memory mapped address space for
228    user logic memory space n, which are typically used in peripherals like
229    memory controllers, bridges, that need to access memory blocks other
230    than local register space. When instantiation, the address space size
231    determined by these two generics should be a power of 2 (e.g. 2^k =
232    C_MEMn_HIGHADDR - C_MEMn_BASEADDR + 1) and a factor of C_MEMn_BASEADDR.
233
234================================================================================
235*          5) Location to documentation of dependent libraries                 *
236*                                                                              *
237*   In general, the documentation is located under:                            *
238*   $XILINX_EDK/hw/XilinxProcessorIPLib/pcores/$libName/doc                    *
239*                                                                              *
240================================================================================
241proc_common_v2_00_a
242    No documentation for this library
243
244plbv46_slave_single_v1_00_a
245    C:\Xilinx_10.1\EDK\bin\nt\C:\Xilinx_10.1\EDK\hw\XilinxProcessorIPLib\pcores\plbv46_slave_single_v1_00_a\doc\plbv46_slave_single.pdf
246
Note: See TracBrowser for help on using the repository browser.