2008-07-21 Till Straumann <strauman@slac.stanford.edu>

* startup/bspstart.c: Removed MSR_CE from interrupt
	mask - this was set for testing but should not be
	in the mask by default.
This commit is contained in:
Till Straumann
2008-07-22 06:11:34 +00:00
parent aee685a3df
commit 479f25550b
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-07-21 Till Straumann <strauman@slac.stanford.edu>
* startup/bspstart.c: Removed MSR_CE from interrupt
mask - this was set for testing but should not be
in the mask by default.
2008-07-21 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am, preinstall.am, irq/irq_init.c:

View File

@@ -182,7 +182,7 @@ void bsp_start( void )
* Initialize default raw exception handlers.
*/
ppc_exc_initialize(
PPC_INTERRUPT_DISABLE_MASK_DEFAULT | MSR_CE,
PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
(uint32_t)IntrStack_start,
IntrStack_end - IntrStack_start
);