source: rtems/c/src/lib/libbsp/shared/ChangeLog @ dbc684c

Last change on this file since dbc684c was dbc684c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/06/07 at 10:49:11

2007-02-06 Ralf Corsépius <ralf.corsepius@…>

  • vmeUniverse/vmeUniverse.c: Use size_t for sizes.
  • Property mode set to 100644
File size: 12.1 KB
RevLine 
[dbc684c]12007-02-06      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * vmeUniverse/vmeUniverse.c: Use size_t for sizes.
4
[985082df]52007-01-29      Till Straumann <strauman@slac.stanford.edu>
6
7        * vmeUniverse/README.porting, vmeUniverse/README.universe:
8        updated, added more information for BSP implementors.
9
10        * vmeUniverse/VMEDMA.h (added): VME DMA API definition.
11
12        * vmeUniverse/bspVmeDmaList.h (added), vmeUniverse/bspVmeDmaListP.h (added),
13        * vmeUniverse/bspVmeDmaList.c (added):
14        Driver-independent code for linked-list DMA (public + private headers,
15        implementation).
16
17        * vmeUniverse/vmeUniverseDMA.h (added), vmeUniverse/vmeTsi148DMA.h (added):
18        interface to new DMA features of drivers.
19
20        * vmeUniverse/vme_amd_defs.h: Added definition for data-width
21        hint bits (VME_MODE_DBWxx).
22
23
24        * vmeUniverse/vmeTsi148.c: added DMA support. Added support for
25        data-width hint/modifier bits.
26
27        * vmeUniverse/vmeUniverse.c, vmeUniverse/vmeUniverse.h:
28        Added support for data-width hint/modifier bits.
29        Added support for xxx_BLT, xxx_MBLT address modifiers.
30        Restrict DBW to 32 in non-MBLT modes (except single-beat;
31        a comment is in README.universe). Updated DMA support to
32        implement new VMEDMA.h API. Added support for non-incrementing
33        VME addresses. Restrict data width to 32 for single-beat AMs
34        when the universe would use MBLT for DMA.
35
[af2898d7]362007-01-19      Till Straumann <strauman@slac.stanford.edu>
37
[8b77bd8f]38        * Makefile.am, vmeUniverse/VME.h:
[af2898d7]39        moved VME.h from libbsp/powerpc/shared/vme to
40        libbsp/shared/vmeUniverse; eventually, this (and other)
41        VME API headers should migrate to cpukit.
42
[bef8b92]432007-01-16      Till Straumann <strauman@slac.stanford.edu>
44
45        * vmeUniverse/vmeTsi148.c, vmeUniverse/vmeTsi148.h,
[ea7e978d]46        vmeUniverse/vmeUniverse.c, vmeUniverse/vmeUniverse.h,
47        vmeUniverse/vme_am_defs.h:
[bef8b92]48        Added SLAC/Stanford Authorship Note / Copyright + Liability Disclaimer.
49
[a175c1f]502006-12-13      Till Straumann <strauman@slac.stanford.edu>
51
[c8f6936]52        * vmeUniverse/vme_am_defs.h: Added address modifiers for 2eVME.
53        Added flags for 2eSST and DBW16.
54        * vmeUniverse/vmeUniverse.h: Removed AM definitions and include
55        vme_am_defs.h instead. Declare new routine vmeUniverseMapCRG().
56        Export 'irq manager' API only if __INSIDE_RTEMS_BSP__ defined. Renamed
57        'shared' argument to vmeUniverseInstallIrqMgrAlt() to 'flags' since
58        now more options are available.  Added new flag to install
59        'posted-write' workaround.
[a175c1f]60        * vmeUniverse/vmeUniverse.c: Allow BSP to override BSP_PCI2LOCAL_ADDR()
61        macro. Data width of outbound port can now be restricted to 16-bit
62        (if new DBW16 flag set in address modifier). Added vmeUniverseMapCRG()
63        for mapping local registers onto VME. Interrupt manager now implements
[c8f6936]64        a workaround (enabled at installation time) which flushes the
65        write-fifo after user ISR returns. This requires the universe's
66        registers to be accessible from VME (either CSR space or CRG mapped
67        to A16/A24/A32), though.
[a175c1f]68        * vmeUniverse/vmeTsi148.h: vmeTsi148ClearVMEBusErrors() now returns
69        the fault address as a 32-bit address (not ulonglong anymore). The
[c8f6936]70        driver only supports 32-bit addresses. Declare new routine
71        vmeTsi148MapCRG().  Export 'irq manager' API only if
72        __INSIDE_RTEMS_BSP__ defined.  Renamed 'shared' argument to
73        vmeTsi148InstallIrqMgrAlt() to 'flags' to allow more options to be
74        supported. Added comments explaining the 'posted-write' workaround
75        implemented by the interrupt manager.
[a175c1f]76        * vmeUniverse/vmeTsi148.c: Clear 'SYSFAIL' during initialization.
77        Allow BSP to override BSP_PCI2LOCAL_ADDR() macro. Added support for
78        2eSST when configuring windows (untested - I have no 2eSST).
79        Added vmeTsi148MapCRG() for mapping local registers onto VME.
80        Implemented 'posted-write' workaround for interrupt manager
81        (consult source for details).
82
[b066112]832006-11-17      Joel Sherrill <joel@OARcorp.com>
84
85        * clock_driver_stub.c, clockdrv_shell.c: Use common clock driver
86        template and eliminate all fast idle code specific to this BSP. This
87        eliminates a fair amount of code in the BSP clock driver and
88        bsp_startup. The LEON3 has to do a scan of the AMBA bus to find the
89        timer so I added the new hook Clock_driver_support_find_timer to
90        support this. In general, there was some clean up to the file headers
91        of various files.
92
[c8f74b47]932006-07-12      Till Straumann <strauman@slac.stanford.edu>
94
95        * vmeUniverse/vmeTsi148.c: Silenced compiler warnings
96        (gcc-4.1.1 warns that uint32_t and unsigned int are different).
97
[9a30162]982006-06-19      Till Straumann <strauman@slac.stanford.edu>
99
100        * vmeUniverse/vme_amd_defs.h: Added address-modifier
101        codes for BLT/MBLT.
102
[9bb263d5]1032006-02-01      Joel Sherrill <joel.sherrill@oarcorp.com>
104
105        * gnatinstallhandler.c: Rename since old name is now used
106        by GNAT source.
107
[6f10ffe]1082006-01-26      Till Straumann <strauman@slac.stanford.edu>
109        * vmeUniverse/vmeTsi148.c, vmeUniverse/vmeUniverse.c,
110        vmeUniverse/vmeUniverse.h, vmeUniverse/vme_amd_defs.h:
111        Added 2F address modifier for VME64 CSR access.
112
[85c005f3]1132006-01-11      Till Straumann <strauman@slac.stanford.edu>
[b8b8d34]114
[85c005f3]115        * vmeUniverse/vmeTsi148.c, vmeUniverse/vmeTsi148.h,
116        vmeUniverse/vmeUniverse.c, vmeUniverse/vmeUniverse.h,
[b8b8d34]117        vmeUniverse/vme_amd_defs.h: No longer enable posted-writes
118        on master windows (creates race-condition on memory-mapped
119        devices). A new flag allows for signalling that a window
120        maps 'ordinary memory'. Disable VME IRQ level if no
121        handler is registered with interrupting vector.
[85c005f3]122
[c2fc65b]1232006-01-11      Till Straumann <strauman@slac.stanford.edu>
124
125        * vmeUniverse/vmeTsi148.c, vmeUniverse/vmeTsi148.h:
[b8b8d34]126        Eliminate obsolete types.
[c2fc65b]127
[c29d03e9]1282005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
129
130        * vmeUniverse/vmeUniverse.c: Eliminate obsolete types.
131        Remove CVS log.
132
[cc2fcc1]1332005-10-20  Eric Norum <norume@aps.anl.gov>
134
[fab9046]135        * vmeUniverse/vmeUniverse.c: Support MVME2100.
[cc2fcc1]136
[50189556]1372005-09-02      Joel Sherrill <joel@OARcorp.com>
138
139        PR 577/bsps
140        * console.c: Make the previously committed patch for this PR compile.
141
[e7d06758]1422005-08-19      Cedric Aubert <cedric_aubert@yahoo.fr>
143
144        PR 577/bsps
145        * console.c: The console_close() method currently calls StopRemoteTx()
146        on all invocations. It should should be ok for last close only but
147        not for any others. If you open a port multiple times, you only want
148        to call StopRemoteTx() only as part of the last close.
149
[6d717e8d]1502005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
151
[b8b8d34]152        PR 779/bsp
153        * vmeUniverse/vmeUniverse.c: add parameter to new exception interrupt
154        handlers in powerpc bsps
[6d717e8d]155
[fb77bc8]1562005-03-14      Joel Sherrill <joel@OARcorp.com>
157
158        * vmeUniverse/README.porting, vmeUniverse/vmeUniverse.c: Continue PCI
159        API unification. All use pci_find_device().
160
[cbe0357]1612005-01-23      Joel Sherrill <joel@OARcorp.com>
162
163        * tod.c: Change type of RTC_Count to size_t.
164
[7376409]1652004-12-10      Ralf Corsepius <ralf.corsepius@rtems.org>
166
167        PR 704/bsps.
168        * ide_ctrl.c: Removed (obsolete).
169
[468c6f00]1702004-11-20      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
171
[b8b8d34]172        PR 703/filesystem
[468c6f00]173        * ide_ctrl.c: Extend the "modes_available" and "mode_active"
174        parameters to uint16_t for UDMA support.
175
[0bca9ea3]1762004-11-16      Richard Campbell <richard.campbell@OARcorp.com>
177
178        * vmeUniverse/vmeUniverse.c: Use PCI_MEM_BASE_ADJUSTMENT because some
179        boards -- notably the MVME2100 -- return the physical address, not an
180        offset in PCI memory space.
181
[0d10ef70]1822004-10-13      Eric Norum <norume@aps.anl.gov>
183
184        PR 688/bsps
185        * shared/tod.c: Set RTEMS time during TOD initialization
186
[cf720006]1872004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
188
189        * ide_ctrl.c: Include <rtems/chain.h> instead of <chain.h>.
190
[a2ac7e10]1912004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
192
193        * bsplibc.c, clockdrv_shell.c, ide_ctrl.c, tod.c,
194        gdbstub/rtems-stub-glue.c: Convert to using c99 fixed size types.
195
[9f03565]1962004-01-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * ChangeLog: Merge-in gdbstub/ChangeLog.
199        * gdbstub/ChangeLog: Remove.
200
[e9051435]2012003-09-26      Cedric Aubert <cedric_aubert@yahoo.fr>
202
203        PR 501/rtems_misc
204        * console.c: console_open disables ICANON on non-console port, which
[f46eb66]205        should be ok for the first open but not for subsequent ones. If you open
206        one serial port, you will configure it, when you reopen it you will lost
207        the ICANON parameters if you had put it. Should be done by console only
208        at first open.
[e9051435]209
[7050ec70]2102003-09-04      Joel Sherrill <joel@OARcorp.com>
211
[f46eb66]212        * bootcard.c, bspclean.c, clockdrv_shell.c, console-polled.c, console.c,
213        ide_ctrl.c, main.c, sbrk.c, setvec.c, tod.c, tod.h, include/coverhd.h:
214        URL for license changed.
[7050ec70]215
[c53e9e2f]2162003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
217
[c483a4e]218        * Makefile.am: Reflect having moved automake/.
[c53e9e2f]219
[6bb1897e]2202003-08-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
221
222        * include/Makefile.am: Remove (merged into Makefile.am).
223        * gdbstub/Makefile.am: Remove (merged into Makefile.am).
[f46eb66]224        * Makefile.am: Reflect changes above. Reflect having merged
225        ../configure.ac into ../../../configure.ac.
[6bb1897e]226
[d27efcd]2272003-06-30      Joel Sherrill <joel@OARcorp.com>
228
229        * console-polled.c: Corrected comments in header.
230
[2f73363]2312003-04-10      Till Straumann <strauman@slac.stanford.edu>
232
233        PR 380/bsps
[f46eb66]234        * vmeUniverse/vmeUniverse.c, vmeUniverse/vmeUniverse.h: make printk
235        format strings compliant with libcpu/printk. minor fixes and lazy init
236        bugfix.
[2f73363]237
[6600424d]2382003-03-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
[f46eb66]240        * vmeUniverse/vmeUniverse.c: Remove CVS-Log (skrews up on CVS-mergers).
[6600424d]241
[20b349f]2422003-02-20      Till Straumann <strauman@slac.stanford.edu>
243
244        PR 349/bsps
[6600424d]245        * README.universe, vmeUniverse/README.porting
246        vmeUniverse/README.universe, vmeUniverse/vmeUniverse.c,
247        vmeUniverse/vmeUniverse.h: Update of the VME universe driver.
248        * vmeUniverse/README.porting: New file.
[20b349f]249
[d6a85919]2502002-10-28      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
251
252        * ide_ctrl.c: New file.
253
[9f03565]2542002-07-01      Joel Sherrill <joel@OARcorp.com>
255
256        * gdbstub/rtems-stub-glue.c: Corrected use of _Objects_Information_table
257        now that it is a two dimensional array based upon API and class.
258
[007d59d6]2592002-06-25      Joel Sherrill <joel@OARcorp.com>
260
[f46eb66]261        * Thomas Doerfler <Thomas.Doerfler@imd-systems.de> added m68k support to
262        the shared gdb stub glue necessitating a move up.
[007d59d6]263        * Makefile.am: Reflect new gdbstub directory.
[9f03565]264        * Thomas Doerfler <Thomas.Doerfler@imd-systems.de> added m68k support to
265        the shared gdb stub glue necessitating a move up.
266        * gdbstub/ChangeLog, gdbstub/Makefile.am, gdbstub/.cvsignore: New file.
267        * gdbstub/rtems-stub-glue.c: Moved from mips/shared/gdbstub and
268        m68k/shared/gdbstub.
[007d59d6]269
[2c059912]2702002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
273        * Makefile.am: Remove AUTOMAKE_OPTIONS.
274
[ac6ddad1]2752001-10-22      Joel Sherrill <joel@OARcorp.com>
276
[f46eb66]277        * bootcard.c: Use __USE_INIT_FINI__ since USE_INIT_FINI pollutes the
278        application namespace.
[ac6ddad1]279
[0f52b7f]2802001-10-17      Joel Sherrill <joel@OARcorp.com>
281
282        * timerstub.c: New stub file for BSPs that don't have timer hardware.
283
[bfeee88]2842001-10-12      Joel Sherrill <joel@OARcorp.com>
285
286        * console-polled.c, console.c: Fixed typo.
287
[f46eb66]2882001-05-14      Till Straumann <strauman@slac.stanford.edu>
289
290        * vmeUniverse/README.universe, vmeUniverse/vmeUniverse.c,
291        vmeUniverse/vmeUniverse.h: New files.
292        * Makefile.am: Modified to reflect addition of files.
293        * Per PR214, contributes a driver for the TUNDRA UNIVERSE VME-PCI bridge
294        to libbsp/shared.   NOTE: This driver is maintained _outside_ RTEMS by
295        Till.  Please forward future modifications to him.
296
[d2959b2]2972001-01-12      Joel Sherrill <joel@OARcorp.com>
298
299        * setvec.c: Removed unused variables.
300
[d3d5319]3012001-01-09      Joel Sherrill <joel@OARcorp.com>
302
303        * clockdrv_shell.c (CLOCK_DRIVER_ISRS_PER_TICK): Add support for
[f46eb66]304        multiple ISRs per clock tick.  Testing per hacking on mips/jmr3904 clock
305        driver.
[d3d5319]306
[2e10f51]3072001-01-03      Joel Sherrill <joel@OARcorp.com>
308
309        * clockdrv_shell.c: Fixed syntax error in fast idle support.
[e182c620]310        * clockdrv_shell.c: Added fast idle mode which is enabled by defining
311        CLOCK_DRIVER_USE_FAST_IDLE.
312        * console-polled.c: Added console_initialize_hardware() hook.
313
[7220103f]3142000-12-01      Joel Sherrill <joel@OARcorp.com>
315
316        * console-polled.c: Remove warnings.
317
[7f5213d]3182000-11-13      Joel Sherrill <joel@OARcorp.com>
319
[f46eb66]320        * clock_driver_stub.c: This is a stub of a clock driver that is
321        sufficient for linking the ticker application.  Some simulators do not
322        have a soruce for a clock tick.  Also this can be used while
323        constructing a BSP so everything links.
[7f5213d]324
[978d328]3252000-11-01      Joel Sherrill <joel@OARcorp.com>
326
[f46eb66]327        * bsplibc.c: assoc.h, error.h, libio_.h, libio.h, and libcsupport.h
328        moved from libc to lib/include/rtems and now must be referenced as
329        <rtems/XXX.h>.   Header file order was cleaned up while doing this.
[978d328]330
[7ede0e7]3312000-10-30      Joel Sherrill <joel@OARcorp.com>
332
[f46eb66]333        * POSIX include files merged into newlib.  This resulted in some
334        definitions moving to other files and thus some secondary effects in
335        RTEMS source code.
[7ede0e7]336        * sbrk.c: Corrected prototype to match newlib.
337
[e94ad1fe]3382000-08-10      Joel Sherrill <joel@OARcorp.com>
339
340        * ChangeLog: New file.
[f46eb66]341
Note: See TracBrowser for help on using the repository browser.