mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-28 07:20:16 +00:00
238 lines
7.8 KiB
Plaintext
238 lines
7.8 KiB
Plaintext
2009-08-11 Josh Switnicki <josh.switnicki@utoronto.ca>
|
|
|
|
* cpu.c, cpu_asm.S, rtems/score/cpu.h: Fix bug in
|
|
_CPU_Context_Initialize.
|
|
|
|
2009-08-05 Josh Switnicki <josh.switnicki@utoronto.ca>
|
|
|
|
* Makefile.am: added AVR specific Header files to score/cpu/avr/avr.
|
|
These are from avr-libc 1.6 and assumed to exist by AVR applications.
|
|
* preinstall.am: Regenerated.
|
|
|
|
2009-07-28 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, cpu_asm.S, rtems/score/cpu.h: Context switch now works well
|
|
enough to run ticker to completion with the simulator clock idle
|
|
task. But if you comment out the printk's in _CPU_Context_Initialize,
|
|
it hangs. This remains to be investigated.
|
|
|
|
2009-07-23 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, cpu_asm.S: Unsuccessful attempt to fix.
|
|
|
|
2009-07-17 Josh Switnicki <josh.switnicki@utoronto.ca>
|
|
|
|
*cpu_asm.S: implemented _CPU_Context_Restore by adding tags to
|
|
restore section of context switch.
|
|
Fixed bug in _CPU_Context_Switch. The wrong registers were being
|
|
used for pointer to running task Context_Control struct.
|
|
|
|
2009-07-09 Josh Switnicki <josh.switnicki@utoronto.ca>
|
|
|
|
* cpu_asm.S: Fixed bug in _CPU_Context_Switch. The wrong registers
|
|
were being used for pointer to running task Context_Control
|
|
struct.
|
|
|
|
2009-07-03 Josh Switnicki <josh.switnicki@utoronto.ca>
|
|
|
|
* cpu.c: Implemented _CPU_Context_Initialize as a C function instead
|
|
of a macro. It works with limited functionality. Implemented
|
|
_CPU_Thread_Idle_body to use sleep instruction.
|
|
* Makefile.am: Changed cpu_asm.c -> cpu_asm.S
|
|
* cpu_asm.S: renamed from cpu_asm.c and implemented functions is asm
|
|
* rtems/asm.h: Appended "macros.inc" to the end of "asm.h"
|
|
* rtems/score/cpu.h:
|
|
+ Included "avr/io.h".
|
|
+ Added use 16 bit object definition.
|
|
+ Modified Context_Control struct to relect the registers
|
|
that need to be saved.
|
|
+ Implemented _CPU_ISR_Disable, _CPU_ISR_Enable, and _CPU_ISR_Flash.
|
|
Added function definitions for _CPU_Context_Initialize and
|
|
_CPU_Push.
|
|
|
|
2009-05-05 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* rtems/score/cpu.h: Lower number of priorities and do not inline as
|
|
much.
|
|
|
|
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* rtems/score/cpu.h: Lower minimum stack size to 512 and CPU alignment
|
|
to 4.
|
|
|
|
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu_asm.c: Add stub for setjmp/longjmp. Remove when in newlib.
|
|
|
|
2009-02-27 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* rtems/score/cpu.h: AVR stack grows down.
|
|
|
|
2009-02-12 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, rtems/score/cpu.h: Change prototype of IDLE thread to
|
|
consistently return void * and take a uintptr_t argument.
|
|
|
|
2009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
|
|
passing address of _Thread_Dispatch to _CPU_Initialize. Clean up
|
|
comments.
|
|
|
|
2008-12-11 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, cpu_asm.c: Remove warnings -- even if code is just temporary.
|
|
|
|
2008-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* cpu.c, cpu_asm.c: Add debug printk() calls until the BSP/port can
|
|
initialize and shutdown completely cleanly. When this works,
|
|
implement context switch. Testing on avrtest and simulavr.
|
|
|
|
2008-09-11 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: Do not define boolean, single_precision,
|
|
double_precision unless RTEMS_DEPRECATED_TYPES is given.
|
|
|
|
2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/avr.h: Add avr25, avr31, avr35, avr51 to
|
|
CPU_NAME cascade.
|
|
* rtems/score/cpu.h: Add missing prototypes.h.
|
|
|
|
2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: Include stdbool.h.
|
|
Use bool as base-type for boolean.
|
|
|
|
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
|
|
|
|
* cpu.c, rtems/score/cpu.h: Correct prototype of Idle threads.
|
|
|
|
2008-06-05 Joel Sherrill <joel.sherrill@OARcorp.com>
|
|
|
|
* rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting
|
|
parameter to indicate that the port uses the Simple Vectored
|
|
Interrupt model or the Programmable Interrupt Controller Model. The
|
|
PIC model is implemented primarily in the BSP and it is responsible
|
|
for all memory allocation.
|
|
|
|
2007-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
|
|
|
|
* rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
|
|
|
|
2007-12-17 Joel Sherrill <joel.sherrill@OARcorp.com>
|
|
|
|
* rtems/score/avr.h: Sweep to make sure grep for COPYRIGHT passes.
|
|
|
|
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
|
|
|
|
* cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
|
|
Table to Configuration Table. Eliminate CPU Table from all ports.
|
|
Delete references to CPU Table in all forms.
|
|
|
|
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
|
|
|
* rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
|
|
the Configuration Table. This included pretasking_hook,
|
|
predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
|
|
extra_mpci_receive_server_stack, stack_allocate_hook, and
|
|
stack_free_hook. As a side-effect of this effort some multiprocessing
|
|
code was made conditional and some style clean up occurred.
|
|
|
|
2007-05-09 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
|
|
|
|
2007-04-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* cpu_asm.c:
|
|
Use Context_Control_fp* instead of void* for fp_contexts.
|
|
* rtems/score/cpu.h:
|
|
Use Context_Control_fp* instead of void* for fp_contexts.
|
|
Eliminate evil casts.
|
|
|
|
2006-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: Remove unsigned64, signed64.
|
|
|
|
2006-01-16 Joel Sherrill <joel@OARcorp.com>
|
|
|
|
* rtems/score/cpu.h: Part of a large patch to improve Doxygen output.
|
|
As a side-effect, grammar and spelling errors were corrected, spacing
|
|
errors were address, and some variable names were improved.
|
|
|
|
2005-11-08 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: Eliminate unsigned16, unsigned32.
|
|
|
|
2005-10-27 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/asm.h: Remove private version of CONCAT macros.
|
|
Include <rtems/concat.h> instead.
|
|
|
|
2005-02-19 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/cpu.h: Remove traces from NO_CPU.
|
|
|
|
2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* Makefile.am: Split out preinstallation rules.
|
|
* preinstall.am: New (Split out from Makefile.am).
|
|
|
|
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
PR 754/rtems
|
|
* rtems/asm.h: New (relocated from .).
|
|
* asm.h: Remove (moved to rtems/asm.h).
|
|
* Makefile.am: Reflect changes above.
|
|
|
|
2004-01-28 Ralf Corsepius <ralf.corsepiu@rtems.org>
|
|
|
|
* asm.h, rtems/score/avr.h, rtems/score/cpu.h,
|
|
rtems/score/cpu_asm.h, rtems/score/types.h: New header guards.
|
|
|
|
2005-01-24 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: Remove signed8, signed16, signed32,
|
|
unsigned8, unsigned16, unsigned32.
|
|
|
|
2005-01-24 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* rtems/score/cpu.h: *_swap_u32( uint32_t ).
|
|
|
|
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
|
|
|
|
2005-01-01 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* Makefile.am: Remove build-variant support.
|
|
|
|
2004-11-21 Ralf Corsepius <ralf.corsepius@rtems.org>
|
|
|
|
* asm.h: Add doxygen preamble.
|
|
|
|
2004-10-02 Ralf Corsepius <ralf_corsepius@rtems.org>
|
|
|
|
* rtems/score/avr.h: Add doxygen preamble.
|
|
* rtems/score/cpu.h: Add doxygen preamble.
|
|
* rtems/score/cpu_asm.h: Add doxygen preamble.
|
|
* rtems/score/types.h: Add doxygen preamble.
|
|
|
|
2004-11-01 Ralf Corsepius <ralf_corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h: s/no_cpu/avr/g.
|
|
Use POSIX types from rtems/stdint.h.
|
|
|
|
2004-09-29 Joel Sherrill <joel@OARcorp.com>
|
|
|
|
* rtems/score/cpu.h: i960 obsoleted and all references removed.
|
|
|
|
2004-09-23 Ralf Corsepius <ralf_corsepius@rtems.org>
|
|
|
|
* rtems/score/types.h, rtems/score/cpu.h, rtems/score/cpu_asm.h,
|
|
rtems/score/avr.h, Makefile.am, asm.h, cpu.c, cpu_asm.c, README:
|
|
New.
|
|
|