OpenCores
URL https://opencores.org/ocsvn/phr/phr/trunk

Subversion Repositories phr

[/] [phr/] [trunk/] [doc/] [papers/] [PHR/] [2014-03-12/] [bare_conf.tex] - Blame information for rev 174

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 153 guanucolui
 
2
%% bare_conf.tex
3
%% V1.3
4
%% 2007/01/11
5
%% by Michael Shell
6
%% See:
7
%% http://www.michaelshell.org/
8
%% for current contact information.
9
%%
10
%% This is a skeleton file demonstrating the use of IEEEtran.cls
11
%% (requires IEEEtran.cls version 1.7 or later) with an IEEE conference paper.
12
%%
13
%% Support sites:
14
%% http://www.michaelshell.org/tex/ieeetran/
15
%% http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/
16
%% and
17
%% http://www.ieee.org/
18
 
19
%%*************************************************************************
20
%% Legal Notice:
21
%% This code is offered as-is without any warranty either expressed or
22
%% implied; without even the implied warranty of MERCHANTABILITY or
23
%% FITNESS FOR A PARTICULAR PURPOSE!
24
%% User assumes all risk.
25
%% In no event shall IEEE or any contributor to this code be liable for
26
%% any damages or losses, including, but not limited to, incidental,
27
%% consequential, or any other damages, resulting from the use or misuse
28
%% of any information contained here.
29
%%
30
%% All comments are the opinions of their respective authors and are not
31
%% necessarily endorsed by the IEEE.
32
%%
33
%% This work is distributed under the LaTeX Project Public License (LPPL)
34
%% ( http://www.latex-project.org/ ) version 1.3, and may be freely used,
35
%% distributed and modified. A copy of the LPPL, version 1.3, is included
36
%% in the base LaTeX documentation of all distributions of LaTeX released
37
%% 2003/12/01 or later.
38
%% Retain all contribution notices and credits.
39
%% ** Modified files should be clearly indicated as such, including  **
40
%% ** renaming them and changing author support contact information. **
41
%%
42
%% File list of work: IEEEtran.cls, IEEEtran_HOWTO.pdf, bare_adv.tex,
43
%%                    bare_conf.tex, bare_jrnl.tex, bare_jrnl_compsoc.tex
44
%%*************************************************************************
45
 
46
% *** Authors should verify (and, if needed, correct) their LaTeX system  ***
47
% *** with the testflow diagnostic prior to trusting their LaTeX platform ***
48
% *** with production work. IEEE's font choices can trigger bugs that do  ***
49
% *** not appear when using other class files.                            ***
50
% The testflow support page is at:
51
% http://www.michaelshell.org/tex/testflow/
52
 
53
 
54
 
55
% Note that the a4paper option is mainly intended so that authors in
56
% countries using A4 can easily print to A4 and see how their papers will
57
% look in print - the typesetting of the document will not typically be
58
% affected with changes in paper size (but the bottom and side margins will).
59
% Use the testflow package mentioned above to verify correct handling of
60
% both paper sizes by the user's LaTeX system.
61
%
62
% Also note that the "draftcls" or "draftclsnofoot", not "draft", option
63
% should be used if it is desired that the figures are to be displayed in
64
% draft mode.
65
%
66 155 maximiq
\documentclass[conference]{IEEEtran}
67 153 guanucolui
% Add the compsoc option for Computer Society conferences.
68
%
69
% If IEEEtran.cls has not been installed into the LaTeX system files,
70
% manually specify the path to it like:
71
% \documentclass[conference]{../sty/IEEEtran}
72
 
73
 
74
% Some very useful LaTeX packages include:
75
% (uncomment the ones you want to load)
76
 
77
 
78
% *** MISC UTILITY PACKAGES ***
79
%
80
%\usepackage{ifpdf}
81
% Heiko Oberdiek's ifpdf.sty is very useful if you need conditional
82
% compilation based on whether the output is pdf or dvi.
83
% usage:
84
% \ifpdf
85
%   % pdf code
86
% \else
87
%   % dvi code
88
% \fi
89
% The latest version of ifpdf.sty can be obtained from:
90
% http://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/
91
% Also, note that IEEEtran.cls V1.7 and later provides a builtin
92
% \ifCLASSINFOpdf conditional that works the same way.
93
% When switching from latex to pdflatex and vice-versa, the compiler may
94
% have to be run twice to clear warning/error messages.
95
 
96
 
97
 
98
% *** CITATION PACKAGES ***
99
%
100
%\usepackage{cite}
101
% cite.sty was written by Donald Arseneau
102
% V1.6 and later of IEEEtran pre-defines the format of the cite.sty package
103
% \cite{} output to follow that of IEEE. Loading the cite package will
104
% result in citation numbers being automatically sorted and properly
105
% "compressed/ranged". e.g., [1], [9], [2], [7], [5], [6] without using
106
% cite.sty will become [1], [2], [5]--[7], [9] using cite.sty. cite.sty's
107
% \cite will automatically add leading space, if needed. Use cite.sty's
108
% noadjust option (cite.sty V3.8 and later) if you want to turn this off.
109
% cite.sty is already installed on most LaTeX systems. Be sure and use
110
% version 4.0 (2003-05-27) and later if using hyperref.sty. cite.sty does
111
% not currently provide for hyperlinked citations.
112
% The latest version can be obtained at:
113
% http://www.ctan.org/tex-archive/macros/latex/contrib/cite/
114
% The documentation is contained in the cite.sty file itself.
115
 
116
 
117
% *** GRAPHICS RELATED PACKAGES ***
118
%
119
\ifCLASSINFOpdf
120 159 guanucolui
\usepackage[pdftex]{graphicx}
121 153 guanucolui
  % declare the path(s) where your graphic files are
122
  % \graphicspath{{../pdf/}{../jpeg/}}
123
  % and their extensions so you won't have to specify these with
124
  % every instance of \includegraphics
125
  % \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
126
\else
127
  % or other class option (dvipsone, dvipdf, if not using dvips). graphicx
128
  % will default to the driver specified in the system graphics.cfg if no
129
  % driver is specified.
130
  % \usepackage[dvips]{graphicx}
131
  % declare the path(s) where your graphic files are
132
  % \graphicspath{{../eps/}}
133
  % and their extensions so you won't have to specify these with
134
  % every instance of \includegraphics
135
  % \DeclareGraphicsExtensions{.eps}
136
\fi
137
% graphicx was written by David Carlisle and Sebastian Rahtz. It is
138
% required if you want graphics, photos, etc. graphicx.sty is already
139
% installed on most LaTeX systems. The latest version and documentation can
140
% be obtained at:
141
% http://www.ctan.org/tex-archive/macros/latex/required/graphics/
142
% Another good source of documentation is "Using Imported Graphics in
143
% LaTeX2e" by Keith Reckdahl which can be found as epslatex.ps or
144
% epslatex.pdf at: http://www.ctan.org/tex-archive/info/
145
%
146
% latex, and pdflatex in dvi mode, support graphics in encapsulated
147
% postscript (.eps) format. pdflatex in pdf mode supports graphics
148
% in .pdf, .jpeg, .png and .mps (metapost) formats. Users should ensure
149
% that all non-photo figures use a vector format (.eps, .pdf, .mps) and
150
% not a bitmapped formats (.jpeg, .png). IEEE frowns on bitmapped formats
151
% which can result in "jaggedy"/blurry rendering of lines and letters as
152
% well as large increases in file sizes.
153
%
154
% You can find documentation about the pdfTeX application at:
155
% http://www.tug.org/applications/pdftex
156
 
157
 
158
% *** MATH PACKAGES ***
159
%
160
%\usepackage[cmex10]{amsmath}
161
% A popular package from the American Mathematical Society that provides
162
% many useful and powerful commands for dealing with mathematics. If using
163
% it, be sure to load this package with the cmex10 option to ensure that
164
% only type 1 fonts will utilized at all point sizes. Without this option,
165
% it is possible that some math symbols, particularly those within
166
% footnotes, will be rendered in bitmap form which will result in a
167
% document that can not be IEEE Xplore compliant!
168
%
169
% Also, note that the amsmath package sets \interdisplaylinepenalty to 10000
170
% thus preventing page breaks from occurring within multiline equations. Use:
171
%\interdisplaylinepenalty=2500
172
% after loading amsmath to restore such page breaks as IEEEtran.cls normally
173
% does. amsmath.sty is already installed on most LaTeX systems. The latest
174
% version and documentation can be obtained at:
175
% http://www.ctan.org/tex-archive/macros/latex/required/amslatex/math/
176
 
177
 
178
% *** SPECIALIZED LIST PACKAGES ***
179
%
180
%\usepackage{algorithmic}
181
% algorithmic.sty was written by Peter Williams and Rogerio Brito.
182
% This package provides an algorithmic environment fo describing algorithms.
183
% You can use the algorithmic environment in-text or within a figure
184
% environment to provide for a floating algorithm. Do NOT use the algorithm
185
% floating environment provided by algorithm.sty (by the same authors) or
186
% algorithm2e.sty (by Christophe Fiorio) as IEEE does not use dedicated
187
% algorithm float types and packages that provide these will not provide
188
% correct IEEE style captions. The latest version and documentation of
189
% algorithmic.sty can be obtained at:
190
% http://www.ctan.org/tex-archive/macros/latex/contrib/algorithms/
191
% There is also a support site at:
192
% http://algorithms.berlios.de/index.html
193
% Also of interest may be the (relatively newer and more customizable)
194
% algorithmicx.sty package by Szasz Janos:
195
% http://www.ctan.org/tex-archive/macros/latex/contrib/algorithmicx/
196
 
197
 
198
% *** ALIGNMENT PACKAGES ***
199
%
200
%\usepackage{array}
201
% Frank Mittelbach's and David Carlisle's array.sty patches and improves
202
% the standard LaTeX2e array and tabular environments to provide better
203
% appearance and additional user controls. As the default LaTeX2e table
204
% generation code is lacking to the point of almost being broken with
205
% respect to the quality of the end results, all users are strongly
206
% advised to use an enhanced (at the very least that provided by array.sty)
207
% set of table tools. array.sty is already installed on most systems. The
208
% latest version and documentation can be obtained at:
209
% http://www.ctan.org/tex-archive/macros/latex/required/tools/
210
 
211
 
212
%\usepackage{mdwmath}
213
%\usepackage{mdwtab}
214
% Also highly recommended is Mark Wooding's extremely powerful MDW tools,
215
% especially mdwmath.sty and mdwtab.sty which are used to format equations
216
% and tables, respectively. The MDWtools set is already installed on most
217
% LaTeX systems. The lastest version and documentation is available at:
218
% http://www.ctan.org/tex-archive/macros/latex/contrib/mdwtools/
219
 
220
 
221
% IEEEtran contains the IEEEeqnarray family of commands that can be used to
222
% generate multiline equations as well as matrices, tables, etc., of high
223
% quality.
224
 
225
 
226
%\usepackage{eqparbox}
227
% Also of notable interest is Scott Pakin's eqparbox package for creating
228
% (automatically sized) equal width boxes - aka "natural width parboxes".
229
% Available at:
230
% http://www.ctan.org/tex-archive/macros/latex/contrib/eqparbox/
231
 
232
 
233
 
234
% *** SUBFIGURE PACKAGES ***
235
%\usepackage[tight,footnotesize]{subfigure}
236
% subfigure.sty was written by Steven Douglas Cochran. This package makes it
237
% easy to put subfigures in your figures. e.g., "Figure 1a and 1b". For IEEE
238
% work, it is a good idea to load it with the tight package option to reduce
239
% the amount of white space around the subfigures. subfigure.sty is already
240
% installed on most LaTeX systems. The latest version and documentation can
241
% be obtained at:
242
% http://www.ctan.org/tex-archive/obsolete/macros/latex/contrib/subfigure/
243
% subfigure.sty has been superceeded by subfig.sty.
244
 
245
 
246
 
247
%\usepackage[caption=false]{caption}
248 159 guanucolui
\usepackage[font=footnotesize,caption=false]{subfig}
249 153 guanucolui
% subfig.sty, also written by Steven Douglas Cochran, is the modern
250
% replacement for subfigure.sty. However, subfig.sty requires and
251
% automatically loads Axel Sommerfeldt's caption.sty which will override
252
% IEEEtran.cls handling of captions and this will result in nonIEEE style
253
% figure/table captions. To prevent this problem, be sure and preload
254
% caption.sty with its "caption=false" package option. This is will preserve
255
% IEEEtran.cls handing of captions. Version 1.3 (2005/06/28) and later
256
% (recommended due to many improvements over 1.2) of subfig.sty supports
257
% the caption=false option directly:
258
%\usepackage[caption=false,font=footnotesize]{subfig}
259
%
260
% The latest version and documentation can be obtained at:
261
% http://www.ctan.org/tex-archive/macros/latex/contrib/subfig/
262
% The latest version and documentation of caption.sty can be obtained at:
263
% http://www.ctan.org/tex-archive/macros/latex/contrib/caption/
264
 
265
 
266
% *** FLOAT PACKAGES ***
267
%
268
%\usepackage{fixltx2e}
269
% fixltx2e, the successor to the earlier fix2col.sty, was written by
270
% Frank Mittelbach and David Carlisle. This package corrects a few problems
271
% in the LaTeX2e kernel, the most notable of which is that in current
272
% LaTeX2e releases, the ordering of single and double column floats is not
273
% guaranteed to be preserved. Thus, an unpatched LaTeX2e can allow a
274
% single column figure to be placed prior to an earlier double column
275
% figure. The latest version and documentation can be found at:
276
% http://www.ctan.org/tex-archive/macros/latex/base/
277
 
278
 
279
 
280
%\usepackage{stfloats}
281
% stfloats.sty was written by Sigitas Tolusis. This package gives LaTeX2e
282
% the ability to do double column floats at the bottom of the page as well
283
% as the top. (e.g., "\begin{figure*}[!b]" is not normally possible in
284
% LaTeX2e). It also provides a command:
285
%\fnbelowfloat
286
% to enable the placement of footnotes below bottom floats (the standard
287
% LaTeX2e kernel puts them above bottom floats). This is an invasive package
288
% which rewrites many portions of the LaTeX2e float routines. It may not work
289
% with other packages that modify the LaTeX2e float routines. The latest
290
% version and documentation can be obtained at:
291
% http://www.ctan.org/tex-archive/macros/latex/contrib/sttools/
292
% Documentation is contained in the stfloats.sty comments as well as in the
293
% presfull.pdf file. Do not use the stfloats baselinefloat ability as IEEE
294
% does not allow \baselineskip to stretch. Authors submitting work to the
295
% IEEE should note that IEEE rarely uses double column equations and
296
% that authors should try to avoid such use. Do not be tempted to use the
297
% cuted.sty or midfloat.sty packages (also by Sigitas Tolusis) as IEEE does
298
% not format its papers in such ways.
299
 
300
% --------------- USEPACKAGE agregados por guanucoluis ----------------
301
 
302
\usepackage[utf8]{inputenc}
303 155 maximiq
%\usepackage[spanish]{babel}
304 159 guanucolui
%\usepackage[pdftex]{graphicx}
305 153 guanucolui
 
306 159 guanucolui
 
307 155 maximiq
% ------------------------- Agregados por maxi ------------------------
308 153 guanucolui
 
309 155 maximiq
\renewcommand{\abstractname}{Resumen}
310
 
311
%lista de posibles "Fixed names"  de latex que pueden hacer falta
312
%\abstractname   Abstract
313
%\alsoname       see also (makeidx package)
314
%\appendixname   Appendix
315
%\bibname        Bibliography (report,book)
316
%\ccname         cc (letter)
317
%\chaptername    Chapter (report,book)
318
%\contentsname   Contents
319
%\enclname       encl (letter)
320
%\figurename     Figure (for captions)
321
%\headtoname     To (letter)
322
%\indexname      Index
323
%\listfigurename         List of Figures
324
%\listtablename  List of Tables
325
%\pagename       Page (letter)
326
%\partname       Part
327
%\refname        References (article)
328
%\seename        see (makeidx package)
329
%\tablename      Table (for caption)
330
 
331
 
332 153 guanucolui
% *** PDF, URL AND HYPERLINK PACKAGES ***
333
%
334
%\usepackage{url}
335
% url.sty was written by Donald Arseneau. It provides better support for
336
% handling and breaking URLs. url.sty is already installed on most LaTeX
337
% systems. The latest version can be obtained at:
338
% http://www.ctan.org/tex-archive/macros/latex/contrib/misc/
339
% Read the url.sty source comments for usage information. Basically,
340
% \url{my_url_here}.
341
 
342
 
343
% *** Do not adjust lengths that control margins, column widths, etc. ***
344
% *** Do not use packages that alter fonts (such as pslatex).         ***
345
% There should be no need to do such things with IEEEtran.cls V1.6 and later.
346
% (Unless specifically asked to do so by the journal or conference you plan
347
% to submit to, of course. )
348
 
349
 
350
% correct bad hyphenation here
351
\hyphenation{op-tical net-works semi-conduc-tor}
352
 
353
 
354
\begin{document}
355
%
356
% paper title
357
% can use linebreaks \\ within to get better formatting as desired
358
\title{Plataforma de Hardware Reconfigurable para el Diseño de Sistemas Digitales}
359
 
360
 
361
% author names and affiliations
362
% use a multiple column layout for up to three different
363
% affiliations
364 169 guanucolui
\author{\IEEEauthorblockN{Alexis Maximiliano Quiteros, Luis Alberto Guanuco, Sergio Daniel Olmedo}
365
\IEEEauthorblockA{Centro Universitario de Desarrollo en Automoción y Robótica\\
366 153 guanucolui
Universidad Tecnológica Nacional\\
367
Facultad Regional Córdoba\\
368 169 guanucolui
Email: maximiliano.quinteros@gmail.com, lguanuco@electronica.frc.utn.edu.ar, solmedo@scdt.frc.utn.edu.ar}
369 165 guanucolui
% \and
370 169 guanucolui
% \IEEEauthorblockN{Luis Alberto Guanuco}
371
% \IEEEauthorblockA{Departamento de Ingeniería Electrónica\\
372
% Universidad Tecnológica Nacional\\
373
% Facultad Regional Córdoba\\
374
% Email: lguanuco@electronica.frc.utn.edu.ar}
375
% \and
376 165 guanucolui
% \IEEEauthorblockN{Sergio Daniel Olmedo}
377
% \IEEEauthorblockA{CUDAR\\%Centro Universitario de Desarrollo en Automoción y Robótica\\
378
% Universidad Tecnológica Nacional\\
379
% Facultad Regional Córdoba\\
380
% Email: solmedo@scdt.frc.utn.edu.ar}
381
}
382 153 guanucolui
 
383
 
384
% conference papers do not typically use \thanks and this command
385
% is locked out in conference mode. If really needed, such as for
386
% the acknowledgment of grants, issue a \IEEEoverridecommandlockouts
387
% after \documentclass
388
 
389
% for over three affiliations, or if they all won't fit within the width
390
% of the page, use this alternative format:
391
%
392
%\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1},
393
%Homer Simpson\IEEEauthorrefmark{2},
394
%James Kirk\IEEEauthorrefmark{3},
395
%Montgomery Scott\IEEEauthorrefmark{3} and
396
%Eldon Tyrell\IEEEauthorrefmark{4}}
397
%\IEEEauthorblockA{\IEEEauthorrefmark{1}School of Electrical and Computer Engineering\\
398
%Georgia Institute of Technology,
399
%Atlanta, Georgia 30332--0250\\ Email: see http://www.michaelshell.org/contact.html}
400
%\IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Century Fox, Springfield, USA\\
401
%Email: homer@thesimpsons.com}
402
%\IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Academy, San Francisco, California 96678-2391\\
403
%Telephone: (800) 555--1212, Fax: (888) 555--1212}
404
%\IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc., 123 Replicant Street, Los Angeles, California 90210--4321}}
405
 
406
 
407
% use for special paper notices
408
%\IEEEspecialpapernotice{(Invited Paper)}
409
 
410
 
411
% make the title area
412
\maketitle
413
 
414
 
415
\begin{abstract}
416
 
417 169 guanucolui
La contaste evolución de los sistemas electrónicos (digitales y analógicos) exige la búsqueda de nuevas herramientas para la formación académica. En el caso del diseños de sistemas digitales una excelente alternativa es el uso placas de evaluación basadas en dispositivos lógicos programables (PLDs). En función de los requerimientos y necesidades académicas que demandan recursos de hardware, y las oportunidades concretas de desarrollar una plataforma personalizada a las necesidades plateadas es que se presenta una plataforma reconfigurable con especificaciones abiertas. Este diseño cuenta con periféricos básicos con que se pueda interactuar en la implementación de sistemas digitales, pero además cuenta con una FPGA que dispone de una gran cantidad de recursos internos para el uso en sistemas digitales avanzados que requieren gran capacidad de procesamiento. El proyecto se publica en forma libre (licencia GPL) buscando incentivar a otras grupos académicos en la  modificación y adaptación de este trabajo a sus necesidades como así también proponer mejoras en versiones futuras de la plataforma.
418 159 guanucolui
 
419 153 guanucolui
\end{abstract}
420 165 guanucolui
 
421 153 guanucolui
% IEEEtran.cls defaults to using nonbold math in the Abstract.
422
% This preserves the distinction between vectors and scalars. However,
423
% if the conference you are submitting to favors bold math in the abstract,
424
% then you can use LaTeX's standard command \boldmath at the very start
425
% of the abstract to achieve this. Many IEEE journals/conferences frown on
426
% math in the abstract anyway.
427
 
428
% no keywords
429
 
430
 
431
 
432
 
433
% For peer review papers, you can put extra information on the cover
434
% page as needed:
435
% \ifCLASSOPTIONpeerreview
436
% \begin{center} \bfseries EDICS Category: 3-BBND \end{center}
437
% \fi
438
%
439
% For peerreview papers, this IEEEtran command inserts a page break and
440
% creates the second title. It will be ignored for other modes.
441
\IEEEpeerreviewmaketitle
442
 
443 155 maximiq
\section{Introducción}
444 153 guanucolui
 
445 173 guanucolui
Las áreas académicas vinculadas a la electrónica y la computación se encuentran en constante demanda de recursos educativos de hardware y software en virtud de potenciar los conocimientos de los estudiantes. En el caso de las tecnologías con poca difusión o implementación en la industria regional, la principal opción en la importación de plataformas educativas adquiridas a empresas destinadas a la manufacturación de sistemas embebidos. Estas plataformas comerciales se clasifican según su implementación por lo que no siempre cubren los requerimientos académicos. Por ejemplo, en el área de las técnicas digitales, los requerimientos de hardware para las cátedras iniciales difieren de las cátedras avanzadas. Esta situación presenta la oportunidad de desarrollar una plataforma a la medida de las necesidades de las instituciones académicas. Si se dispone de las especificaciones por parte de los docentes, la articulación de otras unidades académicas como laboratorios y grupos de investigación, es posible obtener un desarrollo que cubra las expectativas y aliente a la producción regional de plataformas educativas en un marco de transferencia de tecnología.
446 165 guanucolui
 
447 173 guanucolui
En el proceso de aprendizaje de las denominadas Técnicas Digitales necesariamente se debe implementar los diseños digitales. Desde el Álgebra de Bool, con operaciones digitales simples, hasta la implementación de un microprocesador son prácticas comunes de los sistemas digitales lógicos y resulta fundamental su ejercitación para concluir el ciclo de enseñanza.
448 168 guanucolui
 
449 173 guanucolui
Al comienzo de la década de los 90s surgieron varios trabajos donde se planteaba la necesidad de una plataforma educativa orientada a la implementación de diseños lógicos digitales basados en PLDs. Los principales demandantes de estas plataformas eran diseñadores de arquitecturas de microprocesadores \cite{ASArev.1}, desarrollos que años anteriores resultaban imposibles por el costo de la implementación en hardware. El avance en el proceso de integración de los circuitos integrados han llevado a que se desarrollen plataformas más complejas que ofrecen una gran cantidad de recursos de hardware. Al día de hoy se han generado varios proyectos desarrollados por instituciones académicas \cite{FPGA-platform-CPU-design}\cite{Low-Cost-Interactive-Rapid-Prototyping}\cite{FPGA-Based-Experiment-Platform-for-Multi-Core-System}, otras con especificaciones abiertas \cite{Building-an-Evolvable-Low-Cost-HWSW-Platform}\cite{NetFPGA} y también con fines comerciales \cite{Port-Emb-Linux-XUP-Virtex-II.Dev-Board}. Todos estos trabajos tienen algunas características en común:
450
\begin{itemize}
451
\item El dispositivo lógico programable base es una FPGA
452
\item Memoria de programación de la FPGA
453
\item Acceso de programación JTAG
454
\item Software para interactuar con la plataforma desde una computadora
455
\item Dos perfiles de diseño:
456
  \begin{itemize}
457
  \item Para la implementación de sistemas lógicos generales
458
  \item Orientado a un área específica
459
  \end{itemize}
460
\end{itemize}
461
La caracterización anterior no es un intento de generalizar a todas las plataformas educativas basadas en PLDs, pero sí resulta útil para definir el perfil de la plataforma que se describe en este trabajo. Sin la especificación de a que usuarios se destina una plataforma, no se puede comenzar con el estudio de los diferentes dispositivos que se utilizarán. La Figura \ref{fig:rec-plataforma} ilustra una clasificación en bloques de los recursos que ofrecen diferentes plataformas basada en dispositivos PLDs. Donde a niveles iniciales en el estudio de la lógica digital se requieren periféricos básicos como ser llaves conmutadoras de los estados lógicos, dispositivos indicadores como diodos LED, etc. Mientras que a estudios más avanzados se requieren otros tipos de dispositivos como ser a un nivel medio controladores para display gráficos LCD/LED, comunicaciones entre varios dispositivos mediante SPI, I2C, etc. Y por últimos, en la formación de especialistas de sistemas embebidos, requieren recursos como interfaces físicos para ethernet, controladores HDMI, PS2, USB, etc.
462
\begin{figure}[!t]
463
\centering
464
\includegraphics[width=5cm]{img/recursos-plataformas}
465
\caption{Recursos de hardware en función de los niveles de aprendizaje.}
466
\label{fig:rec-plataforma}
467
\end{figure}
468 169 guanucolui
 
469 159 guanucolui
La mayoría de las plataformas de evaluación comerciales son fabricadas en el exterior del país. Se han encontrado desarrollos nacionales pero no son comercializados sino usados en laboratorios universitarios. Entre las empresas fabricantes de sistemas embebidos basados en dispositivos PLDs, se destacan: Xilix, Altera y Digilent. Los principales perfiles de sus desarrollos se encuentran orientados a,
470
\begin{itemize}
471
\item Sistemas de comunicaciones
472
\item Procesamiento de Señales Digitales (DSP)
473
\item Automovilismo
474
\end{itemize}
475 173 guanucolui
 
476 174 guanucolui
En la Figura \ref{fig:board-fpga} se pueden ver tres diferentes plataformas orientadas al diseño de sistemas digitales \footnote{Alguna de estas plataformas disponen de módulos conversores ADC y DAC, por lo que se podría decir que también permiten la implementación de sistemas analógicos en dominio discreto.}. Los recursos de hardware que ofrecen estos desarrollos son:
477 165 guanucolui
\begin{itemize}
478 173 guanucolui
\item FPGA
479
\item Memoria de programación de la FPGA
480
\item Periféricos básicos (LEDs, display, pulsadores, llaves, etc.)
481 165 guanucolui
\item Puerto USB
482 173 guanucolui
\item Puerto para módulos externos
483
\item Puerto para propósitos generales
484
\item Varias señales de reloj (clok)
485
\item VGA y PS/2
486
\item Memorias ROM/RAM
487
\item ADC/DAC
488 165 guanucolui
\end{itemize}
489 159 guanucolui
 
490 174 guanucolui
\begin{figure}[t]
491
  \centering
492
  \subfloat[BASYS2 (Digilent)]{\includegraphics[width=0.2\textwidth]{img/BASYS2-top-400}%
493
    \label{fig:digilent-board}}
494
  \hfil
495
  \subfloat[DE0-Nano (Altera)]{\includegraphics[width=0.2\textwidth]{img/de0-nano}%
496
    \label{fig:altera-board}}
497
  \hfil
498
  \subfloat[Avnet Spartan-6 LX150T (Xilinx/Avnet)]{\includegraphics[width=0.2\textwidth]{img/Avnet-Spartan-6-lx9-MicroBoard}%
499
    \label{fig:xilinx-board}}
500
  \caption{Plataformas de desarrollo educativas basadas en FPGAs (Comerciales)}
501
  \label{fig:board-fpga}
502
\end{figure}
503 165 guanucolui
 
504 174 guanucolui
En nuestra región la tecnología PLDs se encuentra en su auge hace unos años. Instituciones gubernamentales de defensa \cite{citedef-ref}, aeroespaciales, comunicaciones \cite{paper-dta-conae} están implementando dispositivos como FPGAs y CPLDs en sus diseños. Además existe una constante actualización por parte de las instituciones académicas en los programas analíticos de las carreras relacionadas a los sistemas embebidos \cite{act-curricula}.
505 165 guanucolui
 
506 173 guanucolui
En base al planteamiento anterior lleva al desarrollo de la Plataforma de Hardware Reconfigurable (PHR). Esta plataforma es un proyecto a medida de las necesidades en la  enseñanza de los sistemas digitales lógicos en las cátedras iniciales. Ofrece recursos básicos para que los estudiantes interactúen con la tecnología de los dispositivos PLDs, pero también dispone de puertos para conectar otros recursos físicos permitiendo que estudiantes avanzados puedan hacer uso de ellas sin limitaciones. Además al ser publicado bajo licencia libre/abierta permitirá a que el diseño, o parte de él, sirva como referencias a otras instituciones académicas que se encuentren en búsqueda de una plataforma para implementar en sus diferentes cátedras.
507 159 guanucolui
 
508 155 maximiq
\section{Elección del PLD}
509 153 guanucolui
 
510 155 maximiq
\section{Interfaz JTAG}
511
\subsection{Hardware}
512
\subsection{Software}
513
 
514
\section{Características}
515
\subsection{Perifericos}
516
\subsection{Potencia}
517
 
518
\section{Software}
519
\subsection{XC3Prog}
520
\subsection{OpenOCD}
521
 
522
\section{Implementación}
523
 
524
\section{Código abierto}
525
 
526 165 guanucolui
\section{Discusión}
527
Existen dos formas de solventar esta demanda, la primera opción es la adquisición de estos recursos a empresas que ofrecen plataformas educativas que cumplan con las especificaciones, pero aquí se presenta una segunda opción que es generar estas plataformas personalizadas a las necesidades de la región. Actualmente se dispone de los conocimientos necesarios para emprender un ciclo de trabajo donde las mismas unidades académicas cubren sus demandas a través de diferentes espacios como son los grupos de investigación y laboratorios
528
 
529 155 maximiq
 
530 169 guanucolui
\section{Conclusiones}
531 155 maximiq
 
532 169 guanucolui
% use section* for acknowledgement
533
\section*{Acknowledgment}
534 153 guanucolui
 
535
 
536 169 guanucolui
The authors would like to thank...
537 153 guanucolui
 
538
 
539
% An example of a floating figure using the graphicx package.
540
% Note that \label must occur AFTER (or within) \caption.
541
% For figures, \caption should occur after the \includegraphics.
542
% Note that IEEEtran v1.7 and later has special internal code that
543
% is designed to preserve the operation of \label within \caption
544
% even when the captionsoff option is in effect. However, because
545
% of issues like this, it may be the safest practice to put all your
546
% \label just after \caption rather than within \caption{}.
547
%
548
% Reminder: the "draftcls" or "draftclsnofoot", not "draft", class
549
% option should be used if it is desired that the figures are to be
550
% displayed while in draft mode.
551
%
552
%\begin{figure}[!t]
553
%\centering
554
%\includegraphics[width=2.5in]{myfigure}
555
% where an .eps filename suffix will be assumed under latex,
556
% and a .pdf suffix will be assumed for pdflatex; or what has been declared
557
% via \DeclareGraphicsExtensions.
558
%\caption{Simulation Results}
559
%\label{fig_sim}
560
%\end{figure}
561
 
562
% Note that IEEE typically puts floats only at the top, even when this
563
% results in a large percentage of a column being occupied by floats.
564
 
565
 
566
% An example of a double column floating figure using two subfigures.
567
% (The subfig.sty package must be loaded for this to work.)
568
% The subfigure \label commands are set within each subfloat command, the
569
% \label for the overall figure must come after \caption.
570
% \hfil must be used as a separator to get equal spacing.
571
% The subfigure.sty package works much the same way, except \subfigure is
572
% used instead of \subfloat.
573
%
574
%\begin{figure*}[!t]
575
%\centerline{\subfloat[Case I]\includegraphics[width=2.5in]{subfigcase1}%
576
%\label{fig_first_case}}
577
%\hfil
578
%\subfloat[Case II]{\includegraphics[width=2.5in]{subfigcase2}%
579
%\label{fig_second_case}}}
580
%\caption{Simulation results}
581
%\label{fig_sim}
582
%\end{figure*}
583
%
584
% Note that often IEEE papers with subfigures do not employ subfigure
585
% captions (using the optional argument to \subfloat), but instead will
586
% reference/describe all of them (a), (b), etc., within the main caption.
587
 
588
 
589
% An example of a floating table. Note that, for IEEE style tables, the
590
% \caption command should come BEFORE the table. Table text will default to
591
% \footnotesize as IEEE normally uses this smaller font for tables.
592
% The \label must come after \caption as always.
593
%
594
%\begin{table}[!t]
595
%% increase table row spacing, adjust to taste
596
%\renewcommand{\arraystretch}{1.3}
597
% if using array.sty, it might be a good idea to tweak the value of
598
% \extrarowheight as needed to properly center the text within the cells
599
%\caption{An Example of a Table}
600
%\label{table_example}
601
%\centering
602
%% Some packages, such as MDW tools, offer better commands for making tables
603
%% than the plain LaTeX2e tabular which is used here.
604
%\begin{tabular}{|c||c|}
605
%\hline
606
%One & Two\\
607
%\hline
608
%Three & Four\\
609
%\hline
610
%\end{tabular}
611
%\end{table}
612
 
613
 
614
% Note that IEEE does not put floats in the very first column - or typically
615
% anywhere on the first page for that matter. Also, in-text middle ("here")
616
% positioning is not used. Most IEEE journals/conferences use top floats
617
% exclusively. Note that, LaTeX2e, unlike IEEE journals/conferences, places
618
% footnotes above bottom floats. This can be corrected via the \fnbelowfloat
619
% command of the stfloats package.
620
 
621
 
622
 
623
% trigger a \newpage just before the given reference
624
% number - used to balance the columns on the last page
625
% adjust value as needed - may need to be readjusted if
626
% the document is modified later
627
%\IEEEtriggeratref{8}
628
% The "triggered" command can be changed if desired:
629
%\IEEEtriggercmd{\enlargethispage{-5in}}
630
 
631
% references section
632
 
633
% can use a bibliography generated by BibTeX as a .bbl file
634
% BibTeX documentation can be easily obtained at:
635
% http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/
636
% The IEEEtran BibTeX style support page is at:
637
% http://www.michaelshell.org/tex/ieeetran/bibtex/
638
%\bibliographystyle{IEEEtran}
639
% argument is your BibTeX string definitions and bibliography database(s)
640
%\bibliography{IEEEabrv,../bib/paper}
641
%
642
% <OR> manually copy in the resultant .bbl file
643
% set second argument of \begin to the number of references
644
% (used to reserve space for the reference number labels box)
645
\begin{thebibliography}{1}
646
 
647 169 guanucolui
% \bibitem{IEEEhowto:kopka}
648
% H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
649
%   0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.
650 153 guanucolui
 
651 169 guanucolui
\bibitem{ASArev.1}
652
Hiroyuki~Ochi, \emph{ASAver.1: An FPGA-Based Education Board for Computer Architecture/system Design}, Design Automation Conference 1997. Proceeding of the ASP-DAC'97. Asia and South Pacific. January 1997.
653
 
654
\bibitem{FPGA-platform-CPU-design}
655
C.~Chang, C.~Huang, Y.~Lin, Z.~Huang and T.~Hu, \emph{FPGA Platform for CPU Design and Applications},  5th. IEEE Conference on Nanotechnology. Nagoya, Japan. July 2005.
656
 
657 174 guanucolui
\bibitem{Low-Cost-Interactive-Rapid-Prototyping}
658
D.~Kang, S.~Hwang, K.~Jhang, K.~Yi, \emph{A Low Cost and Interactive Rapid Prototyping Platform For Digital System Design Education}, IEEE International Conference on Microelectronic Systems Education, MSE'07. 2007.
659
 
660
\bibitem{FPGA-Based-Experiment-Platform-for-Multi-Core-System}
661
J.~Xing, W.~Zhao and H.~Hu, \emph{An FPGA-Based Experiment Platform for Multi-Cores System}, 9th. International Conference for Young Computer Scientistis, ICYCS'08. 2008.
662
 
663 169 guanucolui
\bibitem{Building-an-Evolvable-Low-Cost-HWSW-Platform}
664 171 guanucolui
A.~Cicuttin, M.~Crespo, A.~Shapiro, N.~Abdallah, \emph{Building an Evolvable Low-Cost HW/SW Educational Platform -- Application to Virtual Instrumentation},  IEEE International Conference on Microelectronic Systems Education, MSE'07. 2007.
665 169 guanucolui
 
666 171 guanucolui
\bibitem{NetFPGA}
667
J.~Lockwood, N.~McKeown, G.~Watson, G.~Gibb, P.~Hartke, J.~Naous, R.~Raghuraman and J.~Luo, \emph{NetFPGA - An Open Platform for Gigabit-rate Network Switching and Routing}, IEEE International Conference on Microelectronic Systems Education, MSE'07. 2007.
668
 
669
\bibitem{Port-Emb-Linux-XUP-Virtex-II.Dev-Board}
670
Z.~Qingguo, Y.~Qi, L.~Chanjuan, H.~Bin, \emph{Port Embedded Linux to XUP Virtex-II Por Development Board}, IEEE. 2009.
671
 
672
 
673 174 guanucolui
\bibitem{citedef-ref}
674
Instituto de Investigación Científica y Técnicas para al defensa (CITEDEF), \emph{Radar Láser}, url: \texttt{http://www.citedef.gob.ar/i-d/laser/}.
675 171 guanucolui
 
676 174 guanucolui
\bibitem{paper-dta-conae}
677
J.~Siman, G.~Jaquenod and H.~Mascialino, \emph{Fpga-Based Transmit/Receive Distributed Controller for the TR Modules of an L Band Antenna (SAR)}, 4th. Southern Conference on Programmable Logic, 2008.
678 171 guanucolui
 
679 174 guanucolui
\bibitem{act-curricula}
680
P.~Cayuela, \emph{Actualización de la currícula -- Incorporación de la lógica programable en ingeniería}, Jornada de Investigación y Desarrollo en Ingeniería de Software (JIDIS'07). Córdoba Argentina. 2007.
681 171 guanucolui
 
682
 
683 169 guanucolui
 
684 153 guanucolui
\end{thebibliography}
685
 
686
 
687
 
688
 
689
% that's all folks
690
\end{document}
691
 
692
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.