forked from Imagelibrary/rtems
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/bspstart.c: 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.
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* startup/bspstart.c: Eliminate the interrupt_vector_table field in the
|
||||
|
||||
@@ -63,19 +63,10 @@ void bsp_start( void )
|
||||
extern void *_RamSize;
|
||||
extern unsigned long _M68k_Ramsize;
|
||||
|
||||
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
|
||||
|
||||
/*
|
||||
* we only use a hook to get the C library initialized.
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook;
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook;
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
/* RAM size set in linker script */
|
||||
_M68k_Ramsize = (unsigned long)&_RamSize;
|
||||
|
||||
m68k_get_vbr( vbr );
|
||||
|
||||
BSP_Configuration.work_space_start = (void *) &_WorkspaceBase;
|
||||
|
||||
/* Clock_exit is done as an atexit() function */
|
||||
}
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* startup/bspstart.c: Eliminate the interrupt_vector_table field in the
|
||||
|
||||
@@ -58,7 +58,8 @@ void bsp_start( void )
|
||||
extern void *_RamSize;
|
||||
extern unsigned long _M68k_Ramsize;
|
||||
|
||||
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
|
||||
/* RAM size set in linker script */
|
||||
_M68k_Ramsize = (unsigned long)&_RamSize;
|
||||
|
||||
monitors_vector_table = (m68k_isr_entry *)0; /* 135Bug Vectors are at 0 */
|
||||
m68k_set_vbr( monitors_vector_table );
|
||||
@@ -85,8 +86,6 @@ void bsp_start( void )
|
||||
* we only use a hook to get the C library initialized.
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
BSP_Configuration.work_space_start = (void *) &_WorkspaceBase;
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-03 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* startup/linkcmds: Handle .data.* sections
|
||||
|
||||
@@ -58,8 +58,6 @@ void bsp_start( void )
|
||||
extern void *_RamSize;
|
||||
extern unsigned long _M68k_Ramsize;
|
||||
|
||||
_M68k_Ramsize = (unsigned long)&_RamSize; /* RAM size set in linker script */
|
||||
|
||||
#if defined(mcpu32)
|
||||
#warning "do something about vectors!!!"
|
||||
#endif
|
||||
@@ -68,10 +66,6 @@ void bsp_start( void )
|
||||
* Clear interrupt sources.
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook;
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
|
||||
/* XXX address shutdown
|
||||
if ( BSP_Configuration.work_space_size >(128*1024) )
|
||||
_sys_exit( 1 );
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* bsp_specs: Remove qrtems_debug.
|
||||
|
||||
@@ -98,7 +98,5 @@ void bsp_start( void )
|
||||
* initialize the CPU table for this BSP
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-12-02 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* irq/irq_init.c: added new args to openpic_init().
|
||||
|
||||
@@ -369,14 +369,6 @@ void bsp_start( void )
|
||||
*/
|
||||
Read_ep1a_config_registers( myCpu );
|
||||
|
||||
/*
|
||||
* Set up our hooks
|
||||
* Make sure libc_init is done before drivers initialized so that
|
||||
* they can use atexit()
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
bsp_clicks_per_usec = BSP_processor_frequency/(BSP_time_base_divisor * 1000);
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-30 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* startup/bspstart.c: removed bsp_exceptions_in_RAM
|
||||
|
||||
@@ -186,9 +186,6 @@ void bsp_start( void )
|
||||
* initialize the CPU table for this BSP
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook;
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
bsp_clicks_per_usec = 300;
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-30 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* startup/bspstart: removed _Cpu_table.exceptions_in_RAM.
|
||||
|
||||
@@ -291,14 +291,10 @@ void bsp_start(void)
|
||||
* initialize the CPU table for this BSP
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook; /* init PCI / RTC ... */
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
|
||||
if( Cpu_table.interrupt_stack_size < 4*1024 )
|
||||
Cpu_table.interrupt_stack_size = 4 * 1024;
|
||||
|
||||
bsp_clicks_per_usec = (IPB_CLOCK/1000000);
|
||||
bsp_clicks_per_usec = (IPB_CLOCK/1000000);
|
||||
|
||||
/*
|
||||
* Install our own set of exception vectors
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-30 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* startup/bspstart.c: removed bsp_exceptions_in_RAM
|
||||
|
||||
@@ -176,9 +176,6 @@ void bsp_start( void )
|
||||
* initialize the CPU table for this BSP
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook;
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
bsp_clicks_per_usec = 25;
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-11-30 Till Straumann <strauman@slac.stanford.edu>
|
||||
|
||||
* startup/bspstart.c: removed bsp_exceptions_in_RAM
|
||||
|
||||
@@ -203,9 +203,6 @@ void bsp_start( void )
|
||||
* because exception code useses some information from Cpu_table
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
Cpu_table.predriver_hook = bsp_predriver_hook;
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
/* timebase register ticks/microsecond */
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2007-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: 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-08-07 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* preinstall.am: Save changes again to make tagger happy.
|
||||
|
||||
@@ -178,34 +178,12 @@ void bsp_start(void)
|
||||
|
||||
BSP_Configuration.work_space_start = (void *) workspace_ptr;
|
||||
|
||||
/*
|
||||
* Set up our hooks
|
||||
* Make sure libc_init is done before drivers init'd so that
|
||||
* they can use atexit()
|
||||
*/
|
||||
|
||||
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
|
||||
|
||||
Cpu_table.predriver_hook = NULL;
|
||||
|
||||
Cpu_table.postdriver_hook = bsp_postdriver_hook;
|
||||
|
||||
Cpu_table.idle_task = NULL; /* do not override system IDLE task */
|
||||
|
||||
/*
|
||||
* Don't zero out the workspace since it is in the BSS under UNIX.
|
||||
*/
|
||||
|
||||
Cpu_table.do_zero_of_workspace = FALSE;
|
||||
|
||||
/*
|
||||
* XXX; interrupt stack not currently used, so this doesn't matter
|
||||
*/
|
||||
|
||||
Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
|
||||
|
||||
Cpu_table.extra_mpci_receive_server_stack = 0;
|
||||
|
||||
/*
|
||||
* Add 1 extension for MPCI_fatal
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user