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 171

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 169 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, 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, con 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 mediante la transferencias de tecnología.
446 165 guanucolui
 
447 169 guanucolui
En el proceso de aprendizaje de las denominadas Técnicas Digitales necesariamente se debe implementar los diseños digitales. 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 171 guanucolui
Existen varios trabajos ya en la década de los 90s donde se plantaba \cite{ASArev.1} la necesidad de contar con una plataforma educativa que permitiera el estudio e implementación del diseño digital, sobre todo nuevas arquitecturas de microprocesadores. Si bien no se contaba con la capacidad de integración en la fabricación de circuitos integrados que se alcanzó en esta época, se apuntaba en aquel entonces al uso de nuevos dispositivos denominados FPGA\cite{PLD-hist}. Esta tendencia continuo al punto tal que se avanzaban con desarrollos de placas más avanzadas que ofrecían mucho más recursos debido al constante avance en el proceso de integración de los semiconductores. Se generaron proyectos académicos \cite{FPGA-platform-CPU-design}\cite{Low-Cost-Interactive-Rapid-Prototyping}\cite{FPGA-Based-Experiment-Platform-for-Multi-Core-System}, abiertos \cite{Building-an-Evolvable-Low-Cost-HWSW-Platform}\cite{NetFPGA} y comerciales \cite{Port-Emb-Linux-XUP-Virtex-II.Dev-Board}.
450 169 guanucolui
 
451
 
452 159 guanucolui
En estas últimas décadas los sistemas embebidos han cobrado una gran importancia, en particular se hace referencia a los Dispositivos Lógicos Programables (PLDs, siglas en inglés). Estos dispositivos lógicos actualmente ofrecen grandes recursos de hardware debido a los avances en los procesos de integración en su fabricación, obviamente que ha beneficiado a todos los circuitos integrados (ICs, siglas en inglés) en general.
453
 
454
Los Dispositivos Lógicos Programables fueron introducidos a medidos de 1970s. Se basaba en la idea de construir circuitos lógicos combinacionales que fueran programables. Contrariamente a los microprocesadores, los cuales pueden correr un programa sobre un hardware fijo, la programabilidad de los PLDs hace referencia a niveles de hardware. En otras palabras, un PLD es un chip de propósitos generales cuyo hardware puede ser reconfigurado dependiendo de especificaciones particulares del desarrollador.
455
 
456
Si bien las diferentes industrias (militar[REF], automotriz[REF], comunicaciones[REF], de consumo[REF], etc.) son quienes demandan constantemente avances tecnológicos, muchas veces el sector académico resulta ser el gestor de grandes desarrollos e investigaciones que beneficia a estas industrias. En nuestra región la tecnología PLDs se encuentra en su auge hace unos años. Instituciones gubernamentales de defensa[REF], aeroespaciales[REF], comunicaciones[REF] 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[REF].
457
 
458
En el estudio de nuevos sistemas digitales las herramientas de software son eficientes, pues permiten realizar simulaciones que se asemejan a la implementación física. Pero muchas veces son necesarias las implementaciones en hardware y es ahí donde se hacen necesarias las plataformas evaluadoras. Estas placas disponen de un diseño que cubre un gran espectro de aplicación según la tecnología y la complejidad del desarrollo. Este concepto no solo se aplica a los sistemas embebidos, pues varias áreas científicas requieren de un gran porcentaje de laboratorio[REF].
459
 
460
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,
461
\begin{itemize}
462
\item Sistemas de comunicaciones
463
\item Procesamiento de Señales Digitales (DSP)
464
\item Automovilismo
465
\end{itemize}
466 165 guanucolui
En la Figura [REF] 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:
467
\begin{itemize}
468
\item Puerto USB
469
\item Four 6-pin Pmod connectors
470
\item VGA
471
\item PS/2
472
\end{itemize}
473 159 guanucolui
 
474 165 guanucolui
Atmel AT90USB2 Full-speed USB2 port providing board power and programming/data transfer interface
475
Xilinx Platform Flash ROM to store FPGA configurations
476
8 LEDs, 4-digit 7-segment display, 4 buttons, 8 slide switches
477
PS/2 port and 8-bit VGA port
478
User-settable clock (25/50/100MHz), plus socket for 2 clock
479
Four 6-pin header expansion connectors
480
ESD and short-circuit protection on all I/O signals.
481
 
482
 
483
\begin{figure*}[!t]
484
  \centerline{
485
    \subfloat[Avnet Spartan-6 LX150T (Xilinx/Avnet)]{\includegraphics[width=2in]{img/Avnet-Spartan-6-lx9-MicroBoard}%
486
      \label{fig:xilinx-board}}
487
    \hfil
488 159 guanucolui
    \subfloat[DE0-Nano (Altera)]{\includegraphics[width=2in]{img/de0-nano}%
489 165 guanucolui
      \label{fig:altera-board}}
490
  \hfil
491 159 guanucolui
    \subfloat[BASYS2 (Digilent)]{\includegraphics[width=2in]{img/BASYS2-top-400}%
492 165 guanucolui
      \label{fig:digilent-board}}}
493 159 guanucolui
  \caption{Plataformas de desarrollo educativas basadas en FPGAs}
494
  \label{fig:board-fpga}
495
\end{figure*}
496
 
497 155 maximiq
\section{Elección del PLD}
498 153 guanucolui
 
499 155 maximiq
\section{Interfaz JTAG}
500
\subsection{Hardware}
501
\subsection{Software}
502
 
503
\section{Características}
504
\subsection{Perifericos}
505
\subsection{Potencia}
506
 
507
\section{Software}
508
\subsection{XC3Prog}
509
\subsection{OpenOCD}
510
 
511
\section{Implementación}
512
 
513
\section{Código abierto}
514
 
515 165 guanucolui
\section{Discusión}
516
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
517
 
518 155 maximiq
 
519 169 guanucolui
\section{Conclusiones}
520 155 maximiq
 
521 169 guanucolui
% use section* for acknowledgement
522
\section*{Acknowledgment}
523 153 guanucolui
 
524
 
525 169 guanucolui
The authors would like to thank...
526 153 guanucolui
 
527
 
528
% An example of a floating figure using the graphicx package.
529
% Note that \label must occur AFTER (or within) \caption.
530
% For figures, \caption should occur after the \includegraphics.
531
% Note that IEEEtran v1.7 and later has special internal code that
532
% is designed to preserve the operation of \label within \caption
533
% even when the captionsoff option is in effect. However, because
534
% of issues like this, it may be the safest practice to put all your
535
% \label just after \caption rather than within \caption{}.
536
%
537
% Reminder: the "draftcls" or "draftclsnofoot", not "draft", class
538
% option should be used if it is desired that the figures are to be
539
% displayed while in draft mode.
540
%
541
%\begin{figure}[!t]
542
%\centering
543
%\includegraphics[width=2.5in]{myfigure}
544
% where an .eps filename suffix will be assumed under latex,
545
% and a .pdf suffix will be assumed for pdflatex; or what has been declared
546
% via \DeclareGraphicsExtensions.
547
%\caption{Simulation Results}
548
%\label{fig_sim}
549
%\end{figure}
550
 
551
% Note that IEEE typically puts floats only at the top, even when this
552
% results in a large percentage of a column being occupied by floats.
553
 
554
 
555
% An example of a double column floating figure using two subfigures.
556
% (The subfig.sty package must be loaded for this to work.)
557
% The subfigure \label commands are set within each subfloat command, the
558
% \label for the overall figure must come after \caption.
559
% \hfil must be used as a separator to get equal spacing.
560
% The subfigure.sty package works much the same way, except \subfigure is
561
% used instead of \subfloat.
562
%
563
%\begin{figure*}[!t]
564
%\centerline{\subfloat[Case I]\includegraphics[width=2.5in]{subfigcase1}%
565
%\label{fig_first_case}}
566
%\hfil
567
%\subfloat[Case II]{\includegraphics[width=2.5in]{subfigcase2}%
568
%\label{fig_second_case}}}
569
%\caption{Simulation results}
570
%\label{fig_sim}
571
%\end{figure*}
572
%
573
% Note that often IEEE papers with subfigures do not employ subfigure
574
% captions (using the optional argument to \subfloat), but instead will
575
% reference/describe all of them (a), (b), etc., within the main caption.
576
 
577
 
578
% An example of a floating table. Note that, for IEEE style tables, the
579
% \caption command should come BEFORE the table. Table text will default to
580
% \footnotesize as IEEE normally uses this smaller font for tables.
581
% The \label must come after \caption as always.
582
%
583
%\begin{table}[!t]
584
%% increase table row spacing, adjust to taste
585
%\renewcommand{\arraystretch}{1.3}
586
% if using array.sty, it might be a good idea to tweak the value of
587
% \extrarowheight as needed to properly center the text within the cells
588
%\caption{An Example of a Table}
589
%\label{table_example}
590
%\centering
591
%% Some packages, such as MDW tools, offer better commands for making tables
592
%% than the plain LaTeX2e tabular which is used here.
593
%\begin{tabular}{|c||c|}
594
%\hline
595
%One & Two\\
596
%\hline
597
%Three & Four\\
598
%\hline
599
%\end{tabular}
600
%\end{table}
601
 
602
 
603
% Note that IEEE does not put floats in the very first column - or typically
604
% anywhere on the first page for that matter. Also, in-text middle ("here")
605
% positioning is not used. Most IEEE journals/conferences use top floats
606
% exclusively. Note that, LaTeX2e, unlike IEEE journals/conferences, places
607
% footnotes above bottom floats. This can be corrected via the \fnbelowfloat
608
% command of the stfloats package.
609
 
610
 
611
 
612
% trigger a \newpage just before the given reference
613
% number - used to balance the columns on the last page
614
% adjust value as needed - may need to be readjusted if
615
% the document is modified later
616
%\IEEEtriggeratref{8}
617
% The "triggered" command can be changed if desired:
618
%\IEEEtriggercmd{\enlargethispage{-5in}}
619
 
620
% references section
621
 
622
% can use a bibliography generated by BibTeX as a .bbl file
623
% BibTeX documentation can be easily obtained at:
624
% http://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/
625
% The IEEEtran BibTeX style support page is at:
626
% http://www.michaelshell.org/tex/ieeetran/bibtex/
627
%\bibliographystyle{IEEEtran}
628
% argument is your BibTeX string definitions and bibliography database(s)
629
%\bibliography{IEEEabrv,../bib/paper}
630
%
631
% <OR> manually copy in the resultant .bbl file
632
% set second argument of \begin to the number of references
633
% (used to reserve space for the reference number labels box)
634
\begin{thebibliography}{1}
635
 
636 169 guanucolui
% \bibitem{IEEEhowto:kopka}
637
% H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
638
%   0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.
639 153 guanucolui
 
640 169 guanucolui
\bibitem{ASArev.1}
641
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.
642
 
643
\bibitem{FPGA-platform-CPU-design}
644
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.
645
 
646
\bibitem{Building-an-Evolvable-Low-Cost-HWSW-Platform}
647 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.
648 169 guanucolui
 
649 171 guanucolui
\bibitem{Low-Cost-Interactive-Rapid-Prototyping}
650
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.
651
 
652
\bibitem{NetFPGA}
653
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.
654
 
655
\bibitem{FPGA-Based-Experiment-Platform-for-Multi-Core-System}
656
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.
657
 
658
\bibitem{Port-Emb-Linux-XUP-Virtex-II.Dev-Board}
659
Z.~Qingguo, Y.~Qi, L.~Chanjuan, H.~Bin, \emph{Port Embedded Linux to XUP Virtex-II Por Development Board}, IEEE. 2009.
660
 
661
 
662
 
663
 
664
 
665
 
666 169 guanucolui
\bibitem{PLD-hist}
667
K.~Parnell and N.~Mehta, \emph{Programmable Logic Design Quick Start Handbook}, Rev.~4. Xilinx Inc. 2004.
668
 
669
 
670
 
671 153 guanucolui
\end{thebibliography}
672
 
673
 
674
 
675
 
676
% that's all folks
677
\end{document}
678
 
679
 

powered by: WebSVN 2.1.0

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