FAQ en
Version 2 (Dmitry Smekhov, 04/20/2013 11:41 pm)
1 | 1 | h1. FAQ |
|
---|---|---|---|
2 | 1 | ||
3 | 1 | h2. Global |
|
4 | 1 | ||
5 | 1 | h3. Is it work ? |
|
6 | 1 | ||
7 | 1 | Yes. |
|
8 | 1 | ||
9 | 1 | h3. What is licensing ? |
|
10 | 1 | ||
11 | 1 | LGPL. |
|
12 | 1 | ||
13 | 1 | h3. I see an error on the site, text, description. |
|
14 | 1 | ||
15 | 1 | I do not know much English, correct me please. |
|
16 | 1 | ||
17 | 1 | h3. Why do you need this? |
|
18 | 1 | ||
19 | 1 | # I want to keep the knowledge of this controller |
|
20 | 1 | # I want to test on different hardware. |
|
21 | 1 | ||
22 | 1 | h3. And now you have all of the projects will be OpenSource? |
|
23 | 1 | ||
24 | 1 | No. |
|
25 | 1 | ||
26 | 1 | h3. A project on which modules are already working? |
|
27 | 1 | ||
28 | 1 | * Virtex 5 - AMBPEX5, ADP201x1, FMC105P |
|
29 | 1 | * Virtex 6 - FMC114V, ML605 |
|
30 | 1 | * Spartan 6 - FMC103E, SP605 |
|
31 | 1 | ||
32 | 1 | Please let me know if you do a project for the new modules. |
|
33 | 1 | ||
34 | 1 | h2. FPGA |
|
35 | 1 | ||
36 | 1 | h3. Why such strange names : pcie_core64_m1, pcie_core64_m2, etc ? |
|
37 | 1 | ||
38 | 1 | * pcie_core - PCI Express controller |
|
39 | 1 | * 64 - it is local bus of 64 bits |
|
40 | 1 | * m1, m2, ... - it is label for different bus and FPGA |
|
41 | 1 | ||
42 | 1 | h3. What is the difference bettwen pcie_core64_m1 and pcie_core64_m2 ? |
|
43 | 1 | ||
44 | 1 | * pcie_core64_m1 is a PCI Express controller for Virtex 5 and PLD_Bus. It have only base function. It have only PE_EXT_FIFO blocks. |
|
45 | 1 | * pcie_core64_m2 include pcie_core64_m1. It have LC_Bus and PE_MAIN block. |
|
46 | 1 | ||
47 | 1 | h3. Why PLD_Bus ? |
|
48 | 1 | ||
49 | 1 | PLD_Bus that needed to separate the implementation of the controller on the type of bus. PLD_Bus can be adapted to the parallel or serial buses. At the moment, there are components for connection to the LC_Bus and WISHBONE. |
|
50 | 1 | ||
51 | 1 | h3. Is it possible to connect to PLD_Bus AXI? |
|
52 | 1 | ||
53 | 1 | Probably. |
|
54 | 1 | ||
55 | 1 | h3. Why is it necessary for the separation of space and BAR0 BAR1? |
|
56 | 1 | ||
57 | 1 | To separate control channel DMA and the application. |
|
58 | 1 | Differences: |
|
59 | 1 | * In the space BAR0 imposed limitation - it must be implemented PE_EXT_FIFO blocks to control the channel DMA. |
|
60 | 1 | * In the space BAR1 no restrictions are imposed. |
|
61 | 1 | * BAR0 - always operates at the frequency components of IP Core Xilinx. (250 MHz for Virtex 5) |
|
62 | 1 | * BAR1 - can operate at a different frequency (eg 266 MHz) |
|
63 | 1 | * DMA channel only works with BAR1 |
|
64 | 1 | * BAR0 - fixed type bus |
|
65 | 1 | * BAR1 - Bus PLD_Bus with the possibility of switching to LC_Bus, WISHBONE. |
|
66 | 2 | Dmitry Smekhov | |
67 | 2 | Dmitry Smekhov | |
68 | 2 | Dmitry Smekhov | h3. Do I have to do to access registers via a 32-bit instructions? |
69 | 2 | Dmitry Smekhov | |
70 | 2 | Dmitry Smekhov | Required. Byte operations are not supported. |
71 | 2 | Dmitry Smekhov | |
72 | 2 | Dmitry Smekhov | h3. And what happens if I give the command to read or write bytes? |
73 | 2 | Dmitry Smekhov | |
74 | 2 | Dmitry Smekhov | I do not know. Try it out and let me know about the result. |
75 | 2 | Dmitry Smekhov | |
76 | 2 | Dmitry Smekhov | h3. I absolutely have to use a byte operation. What to do? |
77 | 2 | Dmitry Smekhov | |
78 | 2 | Dmitry Smekhov | Need to modify the components of core64_rx_engine, core64_tx_engine, core64_reg_access, core64_pb_disp, core64_pb_transaction; But it is another controller. |
79 | 2 | Dmitry Smekhov | |
80 | 2 | Dmitry Smekhov | h3. DMA channel in a single operation produces a transmission unit in 4096. I have to? |
81 | 2 | Dmitry Smekhov | |
82 | 2 | Dmitry Smekhov | Yes. This fundamental property. 4096 is the page size for computers Intel x86. The restriction on the multiplicity of 4096 bytes for the size and the start address of the data controller has significantly simplified. |
83 | 2 | Dmitry Smekhov | |
84 | 2 | Dmitry Smekhov | h3. I absolutely have to use the channel DMA buffer size is not a multiple of 4096 bytes. What to do? |
85 | 2 | Dmitry Smekhov | |
86 | 2 | Dmitry Smekhov | Make another controller. |