source: rtems/c/src/lib/libbsp/powerpc/ep1a/ChangeLog @ 9b643f71

4.9
Last change on this file since 9b643f71 was 9b643f71, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 19:46:58

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • console/init68360.c: Delete unused code.
  • Property mode set to 100644
File size: 9.6 KB
Line 
12008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * console/init68360.c: Delete unused code.
4
52008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * Makefile.am: Remove noinst_PROGRAMS (Unused).
8
92008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * console/config.c, console/console.h: Convert to "bool".
12
132008-09-03      Joel Sherrill <joel.sherrill@OARcorp.com>
14
15        * Makefile.am, configure.ac, console/alloc360.c, console/console.c,
16        console/console.h, console/m68360.h, console/mc68360_scc.c,
17        console/ns16550cfg.c, console/rsPMCQ1.c, console/rsPMCQ1.h,
18        include/bsp.h, irq/irq_init.c, vme/VMEConfig.h: Initiate update and
19        testing. Add missing files. Does not run hello yet.
20        * console/debugio.c, console/polled_io.c, irq/openpic_xxx_irq.c: New files.
21
222008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * console/mc68360_scc.c, console/rsPMCQ1.c, console/rsPMCQ1.h,
25        irq/irq_init.c, pci/no_host_bridge.c, startup/bspstart.c:
26        Add missing prototypes.
27
282008-05-22      Joel Sherrill <joel.sherrill@oarcorp.com>
29
30        * console/mc68360_scc.c: Remove explicit switch and call
31        termios_baud_to_number().
32
332008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
34
35        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
36        Framework to ask the BSP where it has memory for the RTEMS Workspace
37        and C Program Heap. These collectively are referred to as work area.
38        If the BSP supports this, then it does not have to include code to
39        split the available memory between the two areas. This reduces the
40        amount of code in the BSP specific bspstart.c file. Additionally, the
41        shared framework can initialize the C Library, call
42        rtems_debug_enable(), and dirty the work area memory. Until most/all
43        BSPs support this new capability, if the BSP supports this, it should
44        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
45        When the transition is complete, this autoconf macro can be removed.
46
472008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
48
49        * Makefile.am: Rework to avoid .rel files.
50
512008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * startup/bspstart.c: Refactored and renamed initialization routines to
54        rtems_initialize_data_structures, rtems_initialize_before_drivers,
55        rtems_initialize_device_drivers, and
56        rtems_initialize_start_multitasking. This opened the sequence up so
57        that bootcard() could provide a more robust and flexible framework
58        which is easier to explain and understand. This also lays the
59        groundwork for sharing the division of available memory between the
60        RTEMS workspace and heap and the C library initialization across all
61        BSPs.
62
632008-05-07      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * console/config.c: Fix typo.
66
672008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * startup/linkcmds: Add wildcard to gcc_except_table section so
70        programs compiled with gcc 4.3.x can link.
71
722007-12-14      Till Straumann <strauman@slac.stanford.edu>
73
74        * Makefile.am, irq/irq.c (removed), irq/irq_init.c:
75        Use shared exception/interrupt support from
76        libcpu/new-exceptions/bspsupport. NOTE: CHANGES MUST BE
77        TESTED ON REAL HARDWARE.
78
792007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
82        Configuration Table. Use the RTEMS provided accessor macros to obtain
83        configuration fields.
84
852007-12-08      Till Straumann <strauman@slac.stanford.edu>
86
87        * Makefile.am: merged shared/vme/vme_universe.c and
88        shared/vme/vme_universe_dma.c into one file.
89
902007-12-08      Till Straumann <strauman@slac.stanford.edu>
91
92        * vme/VMEConfig.h: added error status to
93        BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
94
952007-12-08      Till Straumann <strauman@slac.stanford.edu>
96
97        * Makefile.am: irq_supp.h was moved from shared/irq to
98        libcpu/powerpc/new-exceptions/bspsupport.
99
1002007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
101
102        * Makefile.am, include/bsp.h, startup/bspstart.c: Move
103        interrupt_stack_size field from CPU Table to Configuration Table.
104        Eliminate CPU Table from all ports. Delete references to CPU Table in
105        all forms.
106
1072007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * startup/bspstart.c: Moved most of the remaining CPU Table fields to
110        the Configuration Table. This included pretasking_hook,
111        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
112        extra_mpci_receive_server_stack, stack_allocate_hook, and
113        stack_free_hook. As a side-effect of this effort some multiprocessing
114        code was made conditional and some style clean up occurred.
115
1162007-12-02      Till Straumann <strauman@slac.stanford.edu>
117
118        * irq/irq_init.c: added new args to openpic_init().
119        This BSP probably needs them (8245 has an EPIC).
120        I would be surprised if the PCI interrupts with the
121        old code actually worked...
122
1232007-11-30      Till Straumann <strauman@slac.stanford.edu>
124
125        * startup/bspstart.c: removed bsp_exceptions_in_RAM
126
1272007-11-30      Till Straumann <strauman@slac.stanford.edu>
128
129        * Makefile.am, irq/irq.c: fixed source-tree path of irq_supp.h,
130        fixed type of 1st arg to C_dispatch_irq_handler() which
131        is NOT a CPU_Interrupt_frame but a BSP_Exception_frame
132        (not that it is ever used but the two layouts differ).
133
1342007-11-30      Till Straumann <strauman@slac.stanford.edu>
135
136        * Makefile.am: install new <irq/irq_supp.h> header
137
1382007-11-30      Till Straumann <strauman@slac.stanford.edu>
139
140        * irq/irq.h, irq/irq_init.c: Removed the definition
141        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
142        initialize the irqBase member of the rtems_irq_global_settings
143        struct. However, irqBase is an rtems_irq_symbolic_name,
144        so using BSP_LOWEST_OFFSET is more appropriate.
145
1462007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
147
148        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
149        Table. They have been replaced with variables named bsp_XXX as
150        needed.
151
1522007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
153
154        * console/config.c: Fix typo.
155
1562007-09-17      Joel Sherrill <joel.sherrill@OARcorp.com>
157
158        * console/console.c: Eliminate DEBUG_puts.
159
1602007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
161
162        PR 1257/bsps
163        * irq/irq.c: Code outside of cpukit should use the public API for
164        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
165        public API and directly accessing _CPU_ISR_Disable and
166        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
167        directive which could lead to problems. This patch also changes the
168        type of the variable passed into these routines and addresses minor
169        style issues.
170
1712007-08-01      Joel Sherrill <joel.sherrill@oarcorp.com>
172
173        * Makefile.am, startup/bspstart.c: Use shared ShowBATS() method.
174
1752007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
176
177        * irq/irq_init.c: adapted to shared exception code
178
1792007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
180
181        * Makefile.am: adapted to shared exception code
182
1832007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
184
185        * bsp_specs: Remove qrtems_debug.
186
1872007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
188
189        * bsp_specs: Remove lib (Now expected to exist in GCC).
190
1912007-04-01      Ralf Corsépius <ralf.corsepius@rtems.org>
192
193        * console/rsPMCQ1.c, irq/irq_init.c: Reflect changes to pci-API.
194
1952007-03-11      Joel Sherrill <joel@OARcorp.com>
196
197        * startup/bspstart.c: Remove assignments of
198        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
199        value in boot_card.c
200
2012007-01-30      Till Straumann <strauman@slac.stanford.edu>
202
203        * Makefile.am, preinstall.am, include/bsp.h,
204        * vme/vmeconfig.c (removed), vme/VMEConfig.h (added):
205        cleaned up vme support - use files from libbsp/powerpc/shared/vme
206        and define BSP specifica in VMEConfig.h.
207        Use VME DMA support implemented by vmeUniverse and
208        libbsp/powerpc/shared/vme/vme_universe_dma.c
209
2102006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
211
212        * configure.ac: New BUG-REPORT address.
213
2142006-11-15      Joel Sherrill <joel@OARcorp.com>
215
216        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
217        file and simplified initialization.
218
2192006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Remove superfluous -DASM.
222
2232006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
224
225        * configure.ac: Require autoconf-2.60. Require automake-1.10.
226
2272006-03-08      Joel Sherrill <joel@OARcorp.com>
228
229        * startup/linkcmds: Add .gnu.linkonce.b.* section.
230
2312006-02-08      Joel Sherrill <joel@OARcorp.com>
232
233        * startup/linkcmds: Add sections required by newer gcc versions.
234
2352006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
236
237        * configure.ac: Remove explicit ampolish3 support (now in
238        RTEMS_BSP_CONFIGURE).
239
2402006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * configure.ac: Add ampolish3 support.
243        * Makefile.am: Add preinstall.am.
244
2452006-01-09      Joel Sherrill <joel@OARcorp.com>
246
247        PR 858/bsps
248        * Makefile.am: Added vme_am_defs.h;
249        * vme/vmeconfig.c: Added appropriate include files.
250
2512006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
252
253        * Makefile.am: Don't include subdirs.am. Cleanup.
254
2552005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
256
257        * include/bsp.h: New header guard.
258
2592005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
260
261        * console/rsPMCQ1.c, irq/irq.c: Modified to use rtems/irq.h.
262
2632005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
264
265        * console/console.c, console/init68360.c, console/ns16550cfg.c
266        console/ns16550cfg.h, console/rsPMCQ1.h, include/tm27.h,
267        startup/bspstart.c, vme/vmeconfig.c: Eliminate {un|}signed{8|16|32}.
268
2692005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
270
271        * console/init68360.c, include/bsp.h, startup/bspstart.c: Changed
272        rtems_unsigned types to uint types
273
2742005-05-03      Joel Sherrill <joel@OARcorp.com>
275
276        * include/.cvsignore: New file.
277
2782005-05-03      Joel Sherrill <joel@OARcorp.com>
279
280        * .cvsignore: New file.
281
2822005-04-29      Jennifer Averett <jennifer.averett@oarcorp.com>
283
284        * irq/irq.c, start/start.S: Removed warnings
285
2862005-04-29      Jennifer Averett <jennifer.averett@oarcorp.com>
287
288        * New BSP.
289        * console/config.c: New files.
Note: See TracBrowser for help on using the repository browser.