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

4.104.115
Last change on this file since a196084 was a196084, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:06:10

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Remove unnecessary includes of rtems/libcsupport.h and rtems/libio.h.
  • Property mode set to 100644
File size: 10.1 KB
Line 
12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * startup/bspstart.c: Remove unnecessary includes of
4        rtems/libcsupport.h and rtems/libio.h.
5
62008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * Makefile.am, configure.ac, console/rsPMCQ1.h, include/bsp.h,
9        startup/bspstart.c: Create bsp_get_work_area() into its own file and
10        use BSP Framework to perform more initialization.
11        * startup/bspgetworkarea.c: New file.
12
132008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
14
15        * startup/bspstart.c: Review of all bsp_cleanup() implementations. In
16        this phase, all prototypes were removed from bsp.h and empty
17        implementations were removed and made to use the shared stub.
18
192008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
20
21        * console/config.c, console/console.h: Convert to "bool".
22
232008-09-03      Joel Sherrill <joel.sherrill@OARcorp.com>
24
25        * Makefile.am, configure.ac, console/alloc360.c, console/console.c,
26        console/console.h, console/m68360.h, console/mc68360_scc.c,
27        console/ns16550cfg.c, console/rsPMCQ1.c, console/rsPMCQ1.h,
28        include/bsp.h, irq/irq_init.c, vme/VMEConfig.h: Initiate update and
29        testing. Add missing files. Does not run hello yet.
30        * console/debugio.c, console/polled_io.c, irq/openpic_xxx_irq.c: New files.
31
322008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * console/mc68360_scc.c, console/rsPMCQ1.c, console/rsPMCQ1.h,
35        irq/irq_init.c, pci/no_host_bridge.c, startup/bspstart.c:
36        Add missing prototypes.
37
382008-05-22      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * console/mc68360_scc.c: Remove explicit switch and call
41        termios_baud_to_number().
42
432008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
44
45        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
46        Framework to ask the BSP where it has memory for the RTEMS Workspace
47        and C Program Heap. These collectively are referred to as work area.
48        If the BSP supports this, then it does not have to include code to
49        split the available memory between the two areas. This reduces the
50        amount of code in the BSP specific bspstart.c file. Additionally, the
51        shared framework can initialize the C Library, call
52        rtems_debug_enable(), and dirty the work area memory. Until most/all
53        BSPs support this new capability, if the BSP supports this, it should
54        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
55        When the transition is complete, this autoconf macro can be removed.
56
572008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * Makefile.am: Rework to avoid .rel files.
60
612008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
62
63        * startup/bspstart.c: Refactored and renamed initialization routines to
64        rtems_initialize_data_structures, rtems_initialize_before_drivers,
65        rtems_initialize_device_drivers, and
66        rtems_initialize_start_multitasking. This opened the sequence up so
67        that bootcard() could provide a more robust and flexible framework
68        which is easier to explain and understand. This also lays the
69        groundwork for sharing the division of available memory between the
70        RTEMS workspace and heap and the C library initialization across all
71        BSPs.
72
732008-05-07      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * console/config.c: Fix typo.
76
772008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * startup/linkcmds: Add wildcard to gcc_except_table section so
80        programs compiled with gcc 4.3.x can link.
81
822007-12-14      Till Straumann <strauman@slac.stanford.edu>
83
84        * Makefile.am, irq/irq.c (removed), irq/irq_init.c:
85        Use shared exception/interrupt support from
86        libcpu/new-exceptions/bspsupport. NOTE: CHANGES MUST BE
87        TESTED ON REAL HARDWARE.
88
892007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
92        Configuration Table. Use the RTEMS provided accessor macros to obtain
93        configuration fields.
94
952007-12-08      Till Straumann <strauman@slac.stanford.edu>
96
97        * Makefile.am: merged shared/vme/vme_universe.c and
98        shared/vme/vme_universe_dma.c into one file.
99
1002007-12-08      Till Straumann <strauman@slac.stanford.edu>
101
102        * vme/VMEConfig.h: added error status to
103        BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
104
1052007-12-08      Till Straumann <strauman@slac.stanford.edu>
106
107        * Makefile.am: irq_supp.h was moved from shared/irq to
108        libcpu/powerpc/new-exceptions/bspsupport.
109
1102007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
111
112        * Makefile.am, include/bsp.h, startup/bspstart.c: Move
113        interrupt_stack_size field from CPU Table to Configuration Table.
114        Eliminate CPU Table from all ports. Delete references to CPU Table in
115        all forms.
116
1172007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
118
119        * startup/bspstart.c: Moved most of the remaining CPU Table fields to
120        the Configuration Table. This included pretasking_hook,
121        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
122        extra_mpci_receive_server_stack, stack_allocate_hook, and
123        stack_free_hook. As a side-effect of this effort some multiprocessing
124        code was made conditional and some style clean up occurred.
125
1262007-12-02      Till Straumann <strauman@slac.stanford.edu>
127
128        * irq/irq_init.c: added new args to openpic_init().
129        This BSP probably needs them (8245 has an EPIC).
130        I would be surprised if the PCI interrupts with the
131        old code actually worked...
132
1332007-11-30      Till Straumann <strauman@slac.stanford.edu>
134
135        * startup/bspstart.c: removed bsp_exceptions_in_RAM
136
1372007-11-30      Till Straumann <strauman@slac.stanford.edu>
138
139        * Makefile.am, irq/irq.c: fixed source-tree path of irq_supp.h,
140        fixed type of 1st arg to C_dispatch_irq_handler() which
141        is NOT a CPU_Interrupt_frame but a BSP_Exception_frame
142        (not that it is ever used but the two layouts differ).
143
1442007-11-30      Till Straumann <strauman@slac.stanford.edu>
145
146        * Makefile.am: install new <irq/irq_supp.h> header
147
1482007-11-30      Till Straumann <strauman@slac.stanford.edu>
149
150        * irq/irq.h, irq/irq_init.c: Removed the definition
151        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
152        initialize the irqBase member of the rtems_irq_global_settings
153        struct. However, irqBase is an rtems_irq_symbolic_name,
154        so using BSP_LOWEST_OFFSET is more appropriate.
155
1562007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
157
158        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
159        Table. They have been replaced with variables named bsp_XXX as
160        needed.
161
1622007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
163
164        * console/config.c: Fix typo.
165
1662007-09-17      Joel Sherrill <joel.sherrill@OARcorp.com>
167
168        * console/console.c: Eliminate DEBUG_puts.
169
1702007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
171
172        PR 1257/bsps
173        * irq/irq.c: Code outside of cpukit should use the public API for
174        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
175        public API and directly accessing _CPU_ISR_Disable and
176        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
177        directive which could lead to problems. This patch also changes the
178        type of the variable passed into these routines and addresses minor
179        style issues.
180
1812007-08-01      Joel Sherrill <joel.sherrill@oarcorp.com>
182
183        * Makefile.am, startup/bspstart.c: Use shared ShowBATS() method.
184
1852007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
186
187        * irq/irq_init.c: adapted to shared exception code
188
1892007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
190
191        * Makefile.am: adapted to shared exception code
192
1932007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
194
195        * bsp_specs: Remove qrtems_debug.
196
1972007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
198
199        * bsp_specs: Remove lib (Now expected to exist in GCC).
200
2012007-04-01      Ralf Corsépius <ralf.corsepius@rtems.org>
202
203        * console/rsPMCQ1.c, irq/irq_init.c: Reflect changes to pci-API.
204
2052007-03-11      Joel Sherrill <joel@OARcorp.com>
206
207        * startup/bspstart.c: Remove assignments of
208        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
209        value in boot_card.c
210
2112007-01-30      Till Straumann <strauman@slac.stanford.edu>
212
213        * Makefile.am, preinstall.am, include/bsp.h,
214        * vme/vmeconfig.c (removed), vme/VMEConfig.h (added):
215        cleaned up vme support - use files from libbsp/powerpc/shared/vme
216        and define BSP specifica in VMEConfig.h.
217        Use VME DMA support implemented by vmeUniverse and
218        libbsp/powerpc/shared/vme/vme_universe_dma.c
219
2202006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
221
222        * configure.ac: New BUG-REPORT address.
223
2242006-11-15      Joel Sherrill <joel@OARcorp.com>
225
226        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
227        file and simplified initialization.
228
2292006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
230
231        * Makefile.am: Remove superfluous -DASM.
232
2332006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
234
235        * configure.ac: Require autoconf-2.60. Require automake-1.10.
236
2372006-03-08      Joel Sherrill <joel@OARcorp.com>
238
239        * startup/linkcmds: Add .gnu.linkonce.b.* section.
240
2412006-02-08      Joel Sherrill <joel@OARcorp.com>
242
243        * startup/linkcmds: Add sections required by newer gcc versions.
244
2452006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
246
247        * configure.ac: Remove explicit ampolish3 support (now in
248        RTEMS_BSP_CONFIGURE).
249
2502006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
251
252        * configure.ac: Add ampolish3 support.
253        * Makefile.am: Add preinstall.am.
254
2552006-01-09      Joel Sherrill <joel@OARcorp.com>
256
257        PR 858/bsps
258        * Makefile.am: Added vme_am_defs.h;
259        * vme/vmeconfig.c: Added appropriate include files.
260
2612006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
262
263        * Makefile.am: Don't include subdirs.am. Cleanup.
264
2652005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
266
267        * include/bsp.h: New header guard.
268
2692005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
270
271        * console/rsPMCQ1.c, irq/irq.c: Modified to use rtems/irq.h.
272
2732005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
274
275        * console/console.c, console/init68360.c, console/ns16550cfg.c
276        console/ns16550cfg.h, console/rsPMCQ1.h, include/tm27.h,
277        startup/bspstart.c, vme/vmeconfig.c: Eliminate {un|}signed{8|16|32}.
278
2792005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
280
281        * console/init68360.c, include/bsp.h, startup/bspstart.c: Changed
282        rtems_unsigned types to uint types
283
2842005-05-03      Joel Sherrill <joel@OARcorp.com>
285
286        * include/.cvsignore: New file.
287
2882005-05-03      Joel Sherrill <joel@OARcorp.com>
289
290        * .cvsignore: New file.
291
2922005-04-29      Jennifer Averett <jennifer.averett@oarcorp.com>
293
294        * irq/irq.c, start/start.S: Removed warnings
295
2962005-04-29      Jennifer Averett <jennifer.averett@oarcorp.com>
297
298        * New BSP.
299        * console/config.c: New files.
Note: See TracBrowser for help on using the repository browser.