1 | 2008-06-04 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
2 | |
---|
3 | * Makefile.am, preinstall.am: Need cplb.h |
---|
4 | |
---|
5 | 2008-05-16 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
6 | |
---|
7 | * preinstall.am, console/console-io.c: Install cplb.h and use it. |
---|
8 | |
---|
9 | 2008-05-15 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
10 | |
---|
11 | * startup/bspstart.c: Add capability for bootcard.c BSP Initialization |
---|
12 | Framework to ask the BSP where it has memory for the RTEMS Workspace |
---|
13 | and C Program Heap. These collectively are referred to as work area. |
---|
14 | If the BSP supports this, then it does not have to include code to |
---|
15 | split the available memory between the two areas. This reduces the |
---|
16 | amount of code in the BSP specific bspstart.c file. Additionally, the |
---|
17 | shared framework can initialize the C Library, call |
---|
18 | rtems_debug_enable(), and dirty the work area memory. Until most/all |
---|
19 | BSPs support this new capability, if the BSP supports this, it should |
---|
20 | call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. |
---|
21 | When the transition is complete, this autoconf macro can be removed. |
---|
22 | |
---|
23 | 2008-05-14 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
24 | |
---|
25 | * Makefile.am: Rework to avoid .rel files. |
---|
26 | |
---|
27 | 2008-05-12 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
28 | |
---|
29 | * startup/bspstart.c: Refactored and renamed initialization routines to |
---|
30 | rtems_initialize_data_structures, rtems_initialize_before_drivers, |
---|
31 | rtems_initialize_device_drivers, and |
---|
32 | rtems_initialize_start_multitasking. This opened the sequence up so |
---|
33 | that bootcard() could provide a more robust and flexible framework |
---|
34 | which is easier to explain and understand. This also lays the |
---|
35 | groundwork for sharing the division of available memory between the |
---|
36 | RTEMS workspace and heap and the C library initialization across all |
---|
37 | BSPs. |
---|
38 | |
---|
39 | 2008-03-03 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
40 | |
---|
41 | * startup/linkcmds: Add wildcard to gcc_except_table section so |
---|
42 | programs compiled with gcc 4.3.x can link. |
---|
43 | |
---|
44 | 2008-02-15 Joel Sherrill <joel.sherrill@oarcorp.com> |
---|
45 | |
---|
46 | * preinstall.am: Add cplb.h |
---|
47 | |
---|
48 | 2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
49 | |
---|
50 | * include/bsp.h, startup/bspstart.c: Eliminate copies of the |
---|
51 | Configuration Table. Use the RTEMS provided accessor macros to obtain |
---|
52 | configuration fields. |
---|
53 | |
---|
54 | 2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
55 | |
---|
56 | * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field |
---|
57 | from CPU Table to Configuration Table. Eliminate CPU Table from all |
---|
58 | ports. Delete references to CPU Table in all forms. |
---|
59 | |
---|
60 | 2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
61 | |
---|
62 | * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU |
---|
63 | Table fields to the Configuration Table. This included |
---|
64 | pretasking_hook, predriver_hook, postdriver_hook, idle_task, |
---|
65 | do_zero_of_workspace, extra_mpci_receive_server_stack, |
---|
66 | stack_allocate_hook, and stack_free_hook. As a side-effect of this |
---|
67 | effort some multiprocessing code was made conditional and some style |
---|
68 | clean up occurred. |
---|
69 | |
---|
70 | 2007-09-24 Chris Johns <chrisj@rtems.org> |
---|
71 | |
---|
72 | * include/bsp.h: Do not use C++ comments. |
---|
73 | |
---|
74 | 2007-09-20 Joel Sherrill <joel.sherrill@OARcorp.com> |
---|
75 | |
---|
76 | * preinstall.am: Add cplb.h. |
---|
77 | * startup/bspstart.c: Add cast of constant. |
---|
78 | |
---|
79 | 2007-09-10 Alain Schaefer <alani@easc.ch> |
---|
80 | |
---|
81 | * preinstall.am, startup/bspstart.c, startup/linkcmds: Complete earlier |
---|
82 | patch. |
---|
83 | * include/cplb.h: New file. |
---|
84 | |
---|
85 | 2007-09-10 Alain Schaefer <alani@easc.ch> |
---|
86 | |
---|
87 | * startup/bspstart.c: Add a useful routine to program memory protection |
---|
88 | in bfin. It is not used but a user of ezKit533 can customize its bsp |
---|
89 | and use this function. |
---|
90 | |
---|
91 | 2007-05-24 Alain Schaefer <alani@easc.ch> |
---|
92 | |
---|
93 | * startup/bspstart.c: Fix a problem in the InitEBIU method. |
---|
94 | |
---|
95 | 2007-04-17 Joel Sherrill <joel@OARcorp.com> |
---|
96 | |
---|
97 | * include/bsp.h, startup/bspstart.c: Fix compile errors and address |
---|
98 | most warnings about constants being too large. |
---|
99 | |
---|
100 | 2007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org> |
---|
101 | |
---|
102 | * bsp_specs: Remove qrtems_debug. |
---|
103 | |
---|
104 | 2007-03-11 Joel Sherrill <joel@OARcorp.com> |
---|
105 | |
---|
106 | * startup/bspstart.c: Remove assignments of |
---|
107 | Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default |
---|
108 | value in boot_card.c |
---|
109 | |
---|
110 | 2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org> |
---|
111 | |
---|
112 | * configure.ac: New BUG-REPORT address. |
---|
113 | |
---|
114 | 2006-11-20 Ralf Corsépius <ralf.corsepius@rtems.org> |
---|
115 | |
---|
116 | * include/coverhd.h: Remove (Use shared default template instead). |
---|
117 | |
---|
118 | 2006-11-15 Joel Sherrill <joel@OARcorp.com> |
---|
119 | |
---|
120 | * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a |
---|
121 | file and simplified initialization. |
---|
122 | |
---|
123 | 2006-11-11 Ralf Corsépius <ralf.corsepius@rtems.org> |
---|
124 | |
---|
125 | * startup/linkcmds: Use___start_set_sysctl_set, ___stop_set_sysctl_set |
---|
126 | instead of __start_set_sysctl_set, __stop_set_sysctl_set |
---|
127 | (bfin uses '_' prefixed c-symbols.) |
---|
128 | |
---|
129 | 2006-11-10 Alain Schaefer <alani@easc.ch> |
---|
130 | |
---|
131 | * startup/linkcmds: Put .fini into sdram. |
---|
132 | Add __edata, __etext. |
---|
133 | |
---|
134 | 2006-10-26 Joel Sherrill <joel@OARcorp.com> |
---|
135 | |
---|
136 | * configure, include/bspopts.h.in: Removed. |
---|
137 | |
---|
138 | 2006-10-24 Joel Sherrill <joel@OARcorp.com> |
---|
139 | |
---|
140 | * include/bsp.h: Eliminate hi, lo, HI, LO, and MK_BMSK. |
---|
141 | |
---|
142 | 2006-06-05 Alain Schaefer <alani@easc.ch> |
---|
143 | |
---|
144 | * all files : Initial copy and port from no_cpu |
---|