Fixed bug 3485667.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@3945 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
6bac7a9c58
commit
85d45e9c3b
|
@ -83,11 +83,20 @@ IVOR10:
|
|||
lis %r3, 0x0800 /* DIS bit mask. */
|
||||
mtspr 336, %r3 /* TSR register. */
|
||||
|
||||
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||
bl dbg_check_enter_isr
|
||||
bl dbg_check_lock_from_isr
|
||||
#endif
|
||||
bl chSysTimerHandlerI
|
||||
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||
bl dbg_check_unlock_from_isr
|
||||
bl dbg_check_leave_isr
|
||||
#endif
|
||||
|
||||
/* System tick handler invocation.*/
|
||||
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||
bl dbg_check_lock
|
||||
#endif
|
||||
bl chSysTimerHandlerI
|
||||
bl chSchIsPreemptionRequired
|
||||
cmpli cr0, %r3, 0
|
||||
beq cr0, .ctxrestore
|
||||
|
@ -131,7 +140,7 @@ IVOR4:
|
|||
ori %r3, %r3, INTC_IACKR@l /* IACKR register address. */
|
||||
lwz %r3, 0(%r3) /* IACKR register value. */
|
||||
lwz %r3, 0(%r3)
|
||||
mtCTR %r3 /* Software handler address. */
|
||||
mtCTR %r3 /* Software handler address. */
|
||||
|
||||
#if PPC_USE_IRQ_PREEMPTION
|
||||
/* Allows preemption while executing the software handler.*/
|
||||
|
|
|
@ -79,6 +79,8 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 2.4.1 ***
|
||||
- FIX: Fixed PPC port broken when CH_DBG_SYSTEM_STATE_CHECK is activated
|
||||
(bug 3485667).
|
||||
- FIX: Fixed missing PLL3 check in STM32F107 HAL (bug 3485278).
|
||||
- FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug
|
||||
3484947).
|
||||
|
|
Loading…
Reference in New Issue