source: anr/section-4.1.tex @ 99

Last change on this file since 99 was 99, checked in by coach, 14 years ago

IA: 1) mise en page et verification de 2, 2.1, 2.2 4.1. 2) entrer bull/xilinx/navtel dans 6.1 3) xilinx dans 7.

File size: 8.0 KB
RevLine 
[12]1\begin{figure}\leavevmode\center
2\includegraphics[width=.8\linewidth]{architecture-csg}
[21]3\caption{\label{archi-csg} software architecture for digital system generation}
[12]4%\end{figure}\begin{figure}\leavevmode\center
5\mbox{}\vspace*{1ex}\\
[21]6\includegraphics[width=1.0\linewidth]{architecture-hls}
7\caption{\label{archi-hls} software architecture of hardware accellerator synthesis}
[12]8%\end{figure}\begin{figure}\leavevmode\center
9\mbox{}\vspace*{1ex}\\
10\includegraphics[width=.8\linewidth]{architecture-hpc}
11\caption{\label{archi-hpc} software architecture of HPC}
12\end{figure}
[56]13%FIXME: la figure ne montre que l'aspect simulation. Intégrer la partie génération (PC API, PCIX, FPGA-IP, bridge vers VCI, SoC API) serait un plus, non ?
[12]14%
[33]15Figures~\ref{archi-csg}, \ref{archi-hls} and \ref{archi-hpc}
[65]16summarize the software architecture of the COACH framework we will develop.
[12]17In figures, the dotted boxes are the softwares or formats that COACH
[65]18has to provide and to support.
[99]19\parlf
[56]20For the system generation presented in figure~\ref{archi-csg}, the conductor
[21]21is the tool \verb!CSG! (COACH System Generator). Its inputs are a process
22network describing the application to design and the synthesis parameters.
23The main parameters are the target hardware architectural template
[12]24with its instanciation parameters, the hardware/software mapping of the
[21]25tasks, the FPGA device and design constraints.
26\verb+CSG+ thus requires an architectural template library, a operating system
27library, two system hardware component (CPU, memories, BUS...) libraries
28(one for synthesis, one for simulation).
29For generating the coprocessor of a task mapped as hardware, \verb+CSG+
30controls the HAS tools described below.
31From these inputs \verb!CSG! can generate the entire system (both software \&
32hardware) either as a SystemC simulator to prototype and explore quickly the
33design space or as a bitstream\footnote{COACH generates synthesizable VHDL, and
34launch the Xilinx or Altera RTL synthesis tools.} directly downloadable on the
[56]35FPGA device\footnote{Additional partial bitstreams are generated in case of
36 dynamic partial reconfiguration}.
[21]37%To proove CSG that COACH is open and CSG is really configurable, COACH will
38%basically support 3 architecture template (the COACH template based on a
39%MIPS processors and a VCI token ring, the Altera template based on the NIOS
[99]40%and AVALON bus, the Xilinx template based on the MICROBLAZE and PLB bus)
[21]41%and 2 operating systems (DNA/OS and MUTEK). Furthermore, thus is enforced
42%by the \mustbecompleted{FIXME:zied} contribution that consists in
43%implementing an other hardware target.
44%\\
45%Finally, it is important to notice that this work is a strong
46%enhancement of the SocLib software.
[99]47\parlf
[21]48The software architecture for HAS is presented in figure~\ref{archi-hls}.
49The input is a single task of the process network. The HAS tools do not work
[12]50directly on the C++ task description but on an internal format called
[38]51\xcoach generated by a plugin into the GNU C compiler (GCC).
52This allows on the one hand to insure that all the tools will
[12]53accept the same C++ description and on the other hand to make possible
[21]54their chaining. The front-end tools read a \xcoach description and generate
55a new \xcoach description that exibits more parallelism or implement
56specific instructions for ASIP. The back-end tools read a \xcoach
57description and generate a \xcoachplus description. This is a \xcoach
58description anotated with hardware information (scheduling, binding) required by
59the VHDL and systemC drivers.
60Furthermore, the back-end tools uses a macro-cell library (functional and memory
61unit).
[99]62\parlf
[21]63In addition to digital system design, HPC requires a supplementary
64partitioning step presented in figure~\ref{archi-hpc}. The designer
65splits the initial application (tag 1) in two parts: one still on the PC and the
66other running in a FPGA plugged on the PCI/X PC bus. The two parts exchange data
67through communication primitives (tag 2) implemented in a library.
[65]68To evaluate the relevance of the partitioning, the designer can build a
[21]69simulator. Once the partitioning is validated, the design of the FPGA part
70is done through \verb!CSG! (figure~\ref{archi-csg}).
[46]71\mustbecompleted{FIXME == MODIFICATION DE LA FIGURE}
[99]72\parlf
73The project is split into 8 tasks numbered from 1 to 8. There are described
74bellow and detailled in section \ref{task-description}.
75\begin{description}
76\item[Task-1: \textit{Project management}]
77    This task relies to the monitoring of the COACH project.
78\item[Task-2: \textit{\Backbone}] This task tackles the fundamental points of the
[21]79        project such as the defintion of the COACH inputs and outputs,
80    the internal formats (e.g. \xcoach), the architectural templates and
81    the design flow.
[99]82\item[task-3: \textit{System generation}] This task addresses the prototyping and
[21]83    the generation of digital system. Apart from HAS that belong to the task 3
84    and 4, its components are those presented figure~\ref{archi-csg}
85    (e.g.  \verb!CSG!, operating systems).
[99]86\item[Task-4: \textit{HAS front-end}] This task mainly focusses on four functionalities:
[21]87    optimization of the memory usage, parallelism enhancement through loop
88    transformations, coarse grain parallelization and ASIP generation.
[99]89\item[Task-5: \textit{HAS back-end}] This task groups two functionalities:
[21]90    High-Level Synthesis of data dominated description and HLS of control
91    dominated description.
92    This task contains also the development of a frequency adaptator
93    that will allow the coprocessors to respect the processor \& the bus
94    frequency.
[99]95\item[Task-6: \textit{PC/FPGA communication middleware}]
[21]96    This task pools the features dedicated to HPC. The main are the
[56]97    partitioning validation (see figure~\ref{archi-hpc}), the sytem drivers for
98    both PC and FPGA-SoC sides, the hardware communication components and
99        support for dynamic partial reconfiguration.
[99]100\item[Task-7: \textit{Industrial demonstrators}]
[33]101    This task groups the demonstrators of the COACH project.
[99]102    Most of them are industrial applications that will be developped with the COACH
103    framework.
104    Others consist in integrating COACH framework as a driver of industrial proprietary
105    design tools.
106\item{Task 8: \textit{Dissemination}}
107    This task relies to the diffusion of the project results.
108    It mainly consists of the production of 4 COACH releases (\verb!T0+12!, \verb!T0+18!,
109    \verb!T0+24! and \verb!T0+36!)
110    and the publication on a WEB site of a tutorial.
111\end{description}
[21]112%
[12]113\begin{figure}\leavevmode\center
[21]114%\includegraphics[width=.4\linewidth]{dependence-task}
115\includegraphics[width=0.70\linewidth]{dependence-task-h}
116\caption{\label{dependence-task}Task dependencies}
[12]117\end{figure}
[65]118Figure~\ref{dependence-task} presents the tasks dependencies.
[99]119"$T_N \longrightarrow T_M$" means that $T_N$ impacts the $T_M$.
[65]120The more bold is the arrow, the more important is the dependency.
[21]121The graph shows:
122\begin{itemize}
[99]123\item Even that $T4$ and $T5$ functionalities are complementary, their
[21]124developments are independent (thanks to \xcoach internal format).
[99]125\item $T3$ slightly depends on $T4$ and $T5$. Indeed, $T3$ may works
126without $T4$ and $T5$ if we limit to digital systems without hardware
[65]127accellerators.
[99]128\item $T3$ strongly impacts on $T6$ but, $T3$ does not depend at all on
129$T6$. So demonstrators ($T7$) of embedded system would not be impacted if
130$T6$ would fail. 
131\item $T2$ drives all the tasks ($T3$, $T4$, $T5$, $T6$) at the heart of
[65]132the COACH project.
[99]133\item The demonstrators developped in $T7$, of course, strongly depends on the achievements
134of the prvious tasks ($T2$, $T3$, $T4$, $T5$, $T6$).
135\item $T8$ and $T1$ respectively depends on and impacts all the other tasks.
[21]136\end{itemize}
[33]137This organisation offers enough robustness to insure the success of the
[99]138project except for the specification task $T2$.
139\\
140The only critical task in this chart is $T2$. \label{xcoach-problem}
[33]141However, the partners met
14210 times (a one day meeting per month) during the last year to prepare the
143specification and the project proposal. This gives us a degree of confidence
[99]144that $T2$ will be completed in time.
Note: See TracBrowser for help on using the repository browser.