mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 02:48:37 +08:00
Compare commits
3 commits
c42bceb36b
...
a16cf116c4
Author | SHA1 | Date | |
---|---|---|---|
|
a16cf116c4 | ||
|
43797ea6cc | ||
|
a7390aeb03 |
24 changed files with 249 additions and 109 deletions
|
@ -179,8 +179,8 @@ static int create_spgtables(arch_addrenv_t *addrenv)
|
||||||
|
|
||||||
/* Synchronize data and instruction pipelines */
|
/* Synchronize data and instruction pipelines */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
@ -337,8 +337,8 @@ static int create_region(arch_addrenv_t *addrenv, uintptr_t vaddr,
|
||||||
|
|
||||||
/* Synchronize data and instruction pipelines */
|
/* Synchronize data and instruction pipelines */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return npages;
|
return npages;
|
||||||
}
|
}
|
||||||
|
@ -514,8 +514,8 @@ int up_addrenv_create(size_t textsize, size_t datasize, size_t heapsize,
|
||||||
|
|
||||||
/* Synchronize data and instruction pipelines */
|
/* Synchronize data and instruction pipelines */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
|
@ -603,8 +603,8 @@ int up_addrenv_destroy(arch_addrenv_t *addrenv)
|
||||||
|
|
||||||
/* Synchronize data and instruction pipelines */
|
/* Synchronize data and instruction pipelines */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
memset(addrenv, 0, sizeof(arch_addrenv_t));
|
memset(addrenv, 0, sizeof(arch_addrenv_t));
|
||||||
return OK;
|
return OK;
|
||||||
|
|
|
@ -218,7 +218,7 @@ int up_addrenv_kmap_init(void)
|
||||||
|
|
||||||
/* When all is set and done, flush the data caches */
|
/* When all is set and done, flush the data caches */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -321,13 +321,13 @@ static inline uint8_t getreg8(unsigned long addr)
|
||||||
|
|
||||||
__asm__ volatile ("ldrb %w0, [%1]" : "=r" (val) : "r" (addr));
|
__asm__ volatile ("ldrb %w0, [%1]" : "=r" (val) : "r" (addr));
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void putreg8(uint8_t data, unsigned long addr)
|
static inline void putreg8(uint8_t data, unsigned long addr)
|
||||||
{
|
{
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
__asm__ volatile ("strb %w0, [%1]" : : "r" (data), "r" (addr));
|
__asm__ volatile ("strb %w0, [%1]" : : "r" (data), "r" (addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -337,13 +337,13 @@ static inline uint16_t getreg16(unsigned long addr)
|
||||||
|
|
||||||
__asm__ volatile ("ldrh %w0, [%1]" : "=r" (val) : "r" (addr));
|
__asm__ volatile ("ldrh %w0, [%1]" : "=r" (val) : "r" (addr));
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void putreg16(uint16_t data, unsigned long addr)
|
static inline void putreg16(uint16_t data, unsigned long addr)
|
||||||
{
|
{
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
__asm__ volatile ("strh %w0, [%1]" : : "r" (data), "r" (addr));
|
__asm__ volatile ("strh %w0, [%1]" : : "r" (data), "r" (addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -353,13 +353,13 @@ static inline uint32_t getreg32(unsigned long addr)
|
||||||
|
|
||||||
__asm__ volatile ("ldr %w0, [%1]" : "=r" (val) : "r" (addr));
|
__asm__ volatile ("ldr %w0, [%1]" : "=r" (val) : "r" (addr));
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void putreg32(uint32_t data, unsigned long addr)
|
static inline void putreg32(uint32_t data, unsigned long addr)
|
||||||
{
|
{
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
__asm__ volatile ("str %w0, [%1]" : : "r" (data), "r" (addr));
|
__asm__ volatile ("str %w0, [%1]" : : "r" (data), "r" (addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -369,13 +369,13 @@ static inline uint64_t getreg64(unsigned long addr)
|
||||||
|
|
||||||
__asm__ volatile ("ldr %x0, [%1]" : "=r" (val) : "r" (addr));
|
__asm__ volatile ("ldr %x0, [%1]" : "=r" (val) : "r" (addr));
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void putreg64(uint64_t data, unsigned long addr)
|
static inline void putreg64(uint64_t data, unsigned long addr)
|
||||||
{
|
{
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
__asm__ volatile ("str %x0, [%1]" : : "r" (data), "r" (addr));
|
__asm__ volatile ("str %x0, [%1]" : : "r" (data), "r" (addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ void arm64_boot_el3_init(void)
|
||||||
/* Setup vector table */
|
/* Setup vector table */
|
||||||
|
|
||||||
write_sysreg((uint64_t)_vector_table, vbar_el3);
|
write_sysreg((uint64_t)_vector_table, vbar_el3);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
reg = 0U; /* Mostly RES0 */
|
reg = 0U; /* Mostly RES0 */
|
||||||
reg &= ~(CPTR_TTA_BIT | /* Do not trap sysreg accesses */
|
reg &= ~(CPTR_TTA_BIT | /* Do not trap sysreg accesses */
|
||||||
|
@ -101,7 +101,7 @@ void arm64_boot_el3_init(void)
|
||||||
write_sysreg(reg, ICC_SRE_EL3);
|
write_sysreg(reg, ICC_SRE_EL3);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
void arm64_boot_el3_get_next_el(uint64_t switch_addr)
|
void arm64_boot_el3_get_next_el(uint64_t switch_addr)
|
||||||
|
@ -175,7 +175,7 @@ void arm64_boot_el2_init(void)
|
||||||
* write_cnthp_cval_el2(~(uint64_t)0);
|
* write_cnthp_cval_el2(~(uint64_t)0);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
void arm64_boot_el1_init(void)
|
void arm64_boot_el1_init(void)
|
||||||
|
@ -185,7 +185,7 @@ void arm64_boot_el1_init(void)
|
||||||
/* Setup vector table */
|
/* Setup vector table */
|
||||||
|
|
||||||
write_sysreg((uint64_t)_vector_table, vbar_el1);
|
write_sysreg((uint64_t)_vector_table, vbar_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
reg = 0U; /* RES0 */
|
reg = 0U; /* RES0 */
|
||||||
reg |= CPACR_EL1_FPEN_NOTRAP; /* Do not trap NEON/SIMD/FP initially */
|
reg |= CPACR_EL1_FPEN_NOTRAP; /* Do not trap NEON/SIMD/FP initially */
|
||||||
|
@ -209,7 +209,7 @@ void arm64_boot_el1_init(void)
|
||||||
* write_cntps_cval_el1(~(uint64_t)0);
|
* write_cntps_cval_el1(~(uint64_t)0);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
void arm64_boot_primary_c_routine(void)
|
void arm64_boot_primary_c_routine(void)
|
||||||
|
|
|
@ -206,8 +206,8 @@ static inline int arm64_dcache_range(uintptr_t start_addr,
|
||||||
start_addr += line_size;
|
start_addr += line_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -232,7 +232,7 @@ static inline int arm64_dcache_all(int op)
|
||||||
|
|
||||||
/* Data barrier before start */
|
/* Data barrier before start */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
clidr_el1 = read_sysreg(clidr_el1);
|
clidr_el1 = read_sysreg(clidr_el1);
|
||||||
|
|
||||||
|
@ -259,7 +259,7 @@ static inline int arm64_dcache_all(int op)
|
||||||
|
|
||||||
csselr_el1 = cache_level << 1;
|
csselr_el1 = cache_level << 1;
|
||||||
write_sysreg(csselr_el1, csselr_el1);
|
write_sysreg(csselr_el1, csselr_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
ccsidr_el1 = read_sysreg(ccsidr_el1);
|
ccsidr_el1 = read_sysreg(ccsidr_el1);
|
||||||
line_size =
|
line_size =
|
||||||
|
@ -319,8 +319,8 @@ static inline int arm64_dcache_all(int op)
|
||||||
/* Restore csselr_el1 to level 0 */
|
/* Restore csselr_el1 to level 0 */
|
||||||
|
|
||||||
write_sysreg(0, csselr_el1);
|
write_sysreg(0, csselr_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -427,7 +427,7 @@ void up_invalidate_icache(uintptr_t start, uintptr_t end)
|
||||||
|
|
||||||
start = LINE_ALIGN_DOWN(start, line_size);
|
start = LINE_ALIGN_DOWN(start, line_size);
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
while (start < end)
|
while (start < end)
|
||||||
{
|
{
|
||||||
|
@ -435,7 +435,7 @@ void up_invalidate_icache(uintptr_t start, uintptr_t end)
|
||||||
start += line_size;
|
start += line_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -456,7 +456,7 @@ void up_enable_icache(void)
|
||||||
{
|
{
|
||||||
uint64_t value = read_sysreg(sctlr_el1);
|
uint64_t value = read_sysreg(sctlr_el1);
|
||||||
write_sysreg((value | SCTLR_I_BIT), sctlr_el1);
|
write_sysreg((value | SCTLR_I_BIT), sctlr_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -477,7 +477,7 @@ void up_disable_icache(void)
|
||||||
{
|
{
|
||||||
uint64_t value = read_sysreg(sctlr_el1);
|
uint64_t value = read_sysreg(sctlr_el1);
|
||||||
write_sysreg((value & ~SCTLR_I_BIT), sctlr_el1);
|
write_sysreg((value & ~SCTLR_I_BIT), sctlr_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_ARCH_ICACHE */
|
#endif /* CONFIG_ARCH_ICACHE */
|
||||||
|
@ -668,7 +668,7 @@ void up_enable_dcache(void)
|
||||||
|
|
||||||
value = read_sysreg(sctlr_el1);
|
value = read_sysreg(sctlr_el1);
|
||||||
write_sysreg((value | SCTLR_C_BIT), sctlr_el1);
|
write_sysreg((value | SCTLR_C_BIT), sctlr_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -689,7 +689,7 @@ void up_disable_dcache(void)
|
||||||
{
|
{
|
||||||
uint64_t value = read_sysreg(sctlr_el1);
|
uint64_t value = read_sysreg(sctlr_el1);
|
||||||
write_sysreg((value & ~SCTLR_C_BIT), sctlr_el1);
|
write_sysreg((value & ~SCTLR_C_BIT), sctlr_el1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -66,7 +66,7 @@ void arm64_fork_fpureg_save(struct fork_s *context)
|
||||||
flags = enter_critical_section();
|
flags = enter_critical_section();
|
||||||
|
|
||||||
arm64_fpu_save(context->fpu);
|
arm64_fpu_save(context->fpu);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
leave_critical_section(flags);
|
leave_critical_section(flags);
|
||||||
}
|
}
|
||||||
|
|
|
@ -134,7 +134,7 @@ static void arm64_fpu_access_trap_enable(void)
|
||||||
cpacr &= ~CPACR_EL1_FPEN_NOTRAP;
|
cpacr &= ~CPACR_EL1_FPEN_NOTRAP;
|
||||||
write_sysreg(cpacr, cpacr_el1);
|
write_sysreg(cpacr, cpacr_el1);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* disable FPU access trap */
|
/* disable FPU access trap */
|
||||||
|
@ -147,7 +147,7 @@ static void arm64_fpu_access_trap_disable(void)
|
||||||
cpacr |= CPACR_EL1_FPEN_NOTRAP;
|
cpacr |= CPACR_EL1_FPEN_NOTRAP;
|
||||||
write_sysreg(cpacr, cpacr_el1);
|
write_sysreg(cpacr, cpacr_el1);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FS_PROCFS_REGISTER
|
#ifdef CONFIG_FS_PROCFS_REGISTER
|
||||||
|
|
|
@ -303,7 +303,7 @@ unsigned int arm64_gic_get_active_irq(void)
|
||||||
* to be visible until after the execution of a DSB.
|
* to be visible until after the execution of a DSB.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
return intid;
|
return intid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -322,7 +322,7 @@ unsigned int arm64_gic_get_active_fiq(void)
|
||||||
* to be visible until after the execution of a DSB.
|
* to be visible until after the execution of a DSB.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
return intid;
|
return intid;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -340,13 +340,13 @@ void aarm64_gic_eoi_irq(unsigned int intid)
|
||||||
* DEVICE nGnRnE attribute.
|
* DEVICE nGnRnE attribute.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* (AP -> Pending) Or (Active -> Inactive) or (AP to AP) nested case */
|
/* (AP -> Pending) Or (Active -> Inactive) or (AP to AP) nested case */
|
||||||
|
|
||||||
write_sysreg(intid, ICC_EOIR1_EL1);
|
write_sysreg(intid, ICC_EOIR1_EL1);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_ARM64_DECODEFIQ
|
#ifdef CONFIG_ARM64_DECODEFIQ
|
||||||
|
@ -363,12 +363,12 @@ void arm64_gic_eoi_fiq(unsigned int intid)
|
||||||
* DEVICE nGnRnE attribute.
|
* DEVICE nGnRnE attribute.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* (AP -> Pending) Or (Active -> Inactive) or (AP to AP) nested case */
|
/* (AP -> Pending) Or (Active -> Inactive) or (AP to AP) nested case */
|
||||||
|
|
||||||
write_sysreg(intid, ICC_EOIR0_EL1);
|
write_sysreg(intid, ICC_EOIR0_EL1);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -392,7 +392,7 @@ static int arm64_gic_send_sgi(unsigned int sgi_id, uint64_t target_aff,
|
||||||
sgi_val = GICV3_SGIR_VALUE(aff3, aff2, aff1, sgi_id, SGIR_IRM_TO_AFF,
|
sgi_val = GICV3_SGIR_VALUE(aff3, aff2, aff1, sgi_id, SGIR_IRM_TO_AFF,
|
||||||
target_list);
|
target_list);
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* Read the IGROUPR0 value we set in `gicv3_cpuif_init` */
|
/* Read the IGROUPR0 value we set in `gicv3_cpuif_init` */
|
||||||
|
|
||||||
|
@ -407,7 +407,7 @@ static int arm64_gic_send_sgi(unsigned int sgi_id, uint64_t target_aff,
|
||||||
write_sysreg(sgi_val, ICC_SGI0R_EL1); /* Group 0 */
|
write_sysreg(sgi_val, ICC_SGI0R_EL1); /* Group 0 */
|
||||||
}
|
}
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -520,7 +520,7 @@ static void gicv3_cpuif_init(void)
|
||||||
ICC_SRE_ELX_DFB_BIT);
|
ICC_SRE_ELX_DFB_BIT);
|
||||||
write_sysreg(icc_sre, ICC_SRE_EL1);
|
write_sysreg(icc_sre, ICC_SRE_EL1);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
icc_sre = read_sysreg(ICC_SRE_EL1);
|
icc_sre = read_sysreg(ICC_SRE_EL1);
|
||||||
|
|
||||||
|
@ -537,7 +537,7 @@ static void gicv3_cpuif_init(void)
|
||||||
write_sysreg(1, ICC_IGRPEN0_EL1);
|
write_sysreg(1, ICC_IGRPEN0_EL1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gicv3_dist_init(void)
|
static void gicv3_dist_init(void)
|
||||||
|
|
|
@ -576,8 +576,8 @@ static void enable_mmu_el3(unsigned int flags)
|
||||||
|
|
||||||
/* Ensure these changes are seen before MMU is enabled */
|
/* Ensure these changes are seen before MMU is enabled */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
/* Enable the MMU and data cache */
|
/* Enable the MMU and data cache */
|
||||||
|
|
||||||
|
@ -590,7 +590,7 @@ static void enable_mmu_el3(unsigned int flags)
|
||||||
|
|
||||||
/* Ensure the MMU enable takes effect immediately */
|
/* Ensure the MMU enable takes effect immediately */
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
#ifdef CONFIG_MMU_DEBUG
|
#ifdef CONFIG_MMU_DEBUG
|
||||||
sinfo("MMU enabled with dcache\n");
|
sinfo("MMU enabled with dcache\n");
|
||||||
#endif
|
#endif
|
||||||
|
@ -609,8 +609,8 @@ static void enable_mmu_el1(unsigned int flags)
|
||||||
|
|
||||||
/* Ensure these changes are seen before MMU is enabled */
|
/* Ensure these changes are seen before MMU is enabled */
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
|
|
||||||
/* Enable the MMU and data cache */
|
/* Enable the MMU and data cache */
|
||||||
|
|
||||||
|
@ -623,7 +623,7 @@ static void enable_mmu_el1(unsigned int flags)
|
||||||
|
|
||||||
/* Ensure the MMU enable takes effect immediately */
|
/* Ensure the MMU enable takes effect immediately */
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
#ifdef CONFIG_MMU_DEBUG
|
#ifdef CONFIG_MMU_DEBUG
|
||||||
sinfo("MMU enabled with dcache\n");
|
sinfo("MMU enabled with dcache\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -128,8 +128,8 @@ static void mpu_init(void)
|
||||||
uint64_t mair = MPU_MAIR_ATTRS;
|
uint64_t mair = MPU_MAIR_ATTRS;
|
||||||
|
|
||||||
write_sysreg(mair, mair_el1);
|
write_sysreg(mair, mair_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -185,15 +185,15 @@ void mpu_freeregion(unsigned int region)
|
||||||
DEBUGASSERT(region < num_regions);
|
DEBUGASSERT(region < num_regions);
|
||||||
|
|
||||||
write_sysreg(region, prselr_el1);
|
write_sysreg(region, prselr_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* Set the region base, limit and attribute */
|
/* Set the region base, limit and attribute */
|
||||||
|
|
||||||
write_sysreg(0, prbar_el1);
|
write_sysreg(0, prbar_el1);
|
||||||
write_sysreg(0, prlar_el1);
|
write_sysreg(0, prlar_el1);
|
||||||
g_mpu_region &= ~(1 << region);
|
g_mpu_region &= ~(1 << region);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -221,8 +221,8 @@ void arm64_mpu_enable(void)
|
||||||
#endif
|
#endif
|
||||||
);
|
);
|
||||||
write_sysreg(val, sctlr_el1);
|
write_sysreg(val, sctlr_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -245,13 +245,13 @@ void arm64_mpu_disable(void)
|
||||||
|
|
||||||
/* Force any outstanding transfers to complete before disabling MPU */
|
/* Force any outstanding transfers to complete before disabling MPU */
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
|
|
||||||
val = read_sysreg(sctlr_el1);
|
val = read_sysreg(sctlr_el1);
|
||||||
val &= ~(SCTLR_M_BIT | SCTLR_C_BIT);
|
val &= ~(SCTLR_M_BIT | SCTLR_C_BIT);
|
||||||
write_sysreg(val, sctlr_el1);
|
write_sysreg(val, sctlr_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -290,14 +290,14 @@ void mpu_modify_region(unsigned int region,
|
||||||
/* Select the region */
|
/* Select the region */
|
||||||
|
|
||||||
write_sysreg(region, prselr_el1);
|
write_sysreg(region, prselr_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* Set the region base, limit and attribute */
|
/* Set the region base, limit and attribute */
|
||||||
|
|
||||||
write_sysreg(rbar, prbar_el1);
|
write_sysreg(rbar, prbar_el1);
|
||||||
write_sysreg(rlar, prlar_el1);
|
write_sysreg(rlar, prlar_el1);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -37,13 +37,13 @@
|
||||||
* ARM DDI 0487E.a C6.2.81
|
* ARM DDI 0487E.a C6.2.81
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define __DSB(arg) __asm__ volatile ("dsb " #arg : : : "memory");
|
#define __MB() __asm__ volatile ("dsb sy" : : : "memory");
|
||||||
|
|
||||||
/* See Arm® Architecture Reference Manual
|
/* See Arm® Architecture Reference Manual
|
||||||
* ARM DDI 0487E.a C6.2.79
|
* ARM DDI 0487E.a C6.2.79
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define __DMB(arg) __asm__ volatile ("dmb " #arg : : : "memory");
|
#define __DMB() __asm__ volatile ("dmb sy" : : : "memory");
|
||||||
|
|
||||||
/* See Arm® Architecture Reference Manual
|
/* See Arm® Architecture Reference Manual
|
||||||
* ARM DDI 0487E.a C6.2.96
|
* ARM DDI 0487E.a C6.2.96
|
||||||
|
@ -51,12 +51,6 @@
|
||||||
|
|
||||||
#define __ISB() __asm__ volatile ("isb" : : : "memory");
|
#define __ISB() __asm__ volatile ("isb" : : : "memory");
|
||||||
|
|
||||||
/* THe most common barriers */
|
|
||||||
|
|
||||||
#define ARM64_DSB() __DSB(sy)
|
|
||||||
#define ARM64_DMB() __DMB(sy)
|
|
||||||
#define ARM64_ISB() __ISB()
|
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
#endif /* ___ARCH_ARM64_SRC_COMMON_BARRIERS_H */
|
#endif /* ___ARCH_ARM64_SRC_COMMON_BARRIERS_H */
|
||||||
|
|
|
@ -113,7 +113,7 @@ void arm64_el_init(void)
|
||||||
{
|
{
|
||||||
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
|
|
|
@ -134,7 +134,7 @@ void arm64_el_init(void)
|
||||||
{
|
{
|
||||||
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
||||||
|
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -89,7 +89,7 @@ void arm64_el_init(void)
|
||||||
if (el == 3)
|
if (el == 3)
|
||||||
{
|
{
|
||||||
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
write_sysreg(CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC, cntfrq_el0);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,12 +43,12 @@
|
||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#define mb() \
|
#define mb() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
ARM64_DSB(); \
|
__MB(); \
|
||||||
ARM64_ISB(); \
|
__ISB(); \
|
||||||
} \
|
} \
|
||||||
while (0)
|
while (0)
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -52,12 +52,12 @@
|
||||||
|
|
||||||
/* Common barrier */
|
/* Common barrier */
|
||||||
|
|
||||||
#define mb() \
|
#define mb() \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
ARM64_DSB(); \
|
__MB(); \
|
||||||
ARM64_ISB(); \
|
__ISB(); \
|
||||||
} \
|
} \
|
||||||
while (0)
|
while (0)
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -611,7 +611,7 @@ static int imx9_transmit(struct imx9_driver_s *priv, uint32_t *buf_swap)
|
||||||
|
|
||||||
txdesc2->data = buf + split;
|
txdesc2->data = buf + split;
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* Make sure the buffer data is in memory */
|
/* Make sure the buffer data is in memory */
|
||||||
|
|
||||||
|
@ -650,9 +650,9 @@ static int imx9_transmit(struct imx9_driver_s *priv, uint32_t *buf_swap)
|
||||||
* is safe to clean the cache
|
* is safe to clean the cache
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
txdesc->status1 = TXDESC_R;
|
txdesc->status1 = TXDESC_R;
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
/* Make sure the descriptors are written from cache to memory */
|
/* Make sure the descriptors are written from cache to memory */
|
||||||
|
|
||||||
|
@ -999,9 +999,9 @@ static void imx9_receive(struct imx9_driver_s *priv)
|
||||||
* to this descriptor pair.
|
* to this descriptor pair.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
rxdesc->status1 = RXDESC_E;
|
rxdesc->status1 = RXDESC_E;
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
up_clean_dcache((uintptr_t)&rxdesc[(-1)],
|
up_clean_dcache((uintptr_t)&rxdesc[(-1)],
|
||||||
(uintptr_t)&rxdesc[(-1)] +
|
(uintptr_t)&rxdesc[(-1)] +
|
||||||
|
@ -2955,7 +2955,7 @@ static void imx9_initbuffers(struct imx9_driver_s *priv)
|
||||||
priv->txdesc[IMX9_ENET_NTXBUFFERS - 1].d2.status1 |= TXDESC_W;
|
priv->txdesc[IMX9_ENET_NTXBUFFERS - 1].d2.status1 |= TXDESC_W;
|
||||||
priv->rxdesc[IMX9_ENET_NRXBUFFERS - 1].status1 |= RXDESC_W;
|
priv->rxdesc[IMX9_ENET_NRXBUFFERS - 1].status1 |= RXDESC_W;
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
up_clean_dcache((uintptr_t)priv->txdesc,
|
up_clean_dcache((uintptr_t)priv->txdesc,
|
||||||
(uintptr_t)priv->txdesc +
|
(uintptr_t)priv->txdesc +
|
||||||
|
|
|
@ -1280,7 +1280,7 @@ static void imx9_txtimeout_work(void *arg)
|
||||||
/* Disable interrupt for this MB */
|
/* Disable interrupt for this MB */
|
||||||
|
|
||||||
modifyreg32(priv->base + IMX9_CAN_IMASK1_OFFSET, mb_bit, 0);
|
modifyreg32(priv->base + IMX9_CAN_IMASK1_OFFSET, mb_bit, 0);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
if (priv->txmb[txmbi].deadline.tv_sec != 0
|
if (priv->txmb[txmbi].deadline.tv_sec != 0
|
||||||
&& (now->tv_sec > priv->txmb[txmbi].deadline.tv_sec
|
&& (now->tv_sec > priv->txmb[txmbi].deadline.tv_sec
|
||||||
|
|
|
@ -871,7 +871,7 @@ static void imx9_readsetup(struct imx9_usb_s *priv, uint8_t epphy,
|
||||||
/* Set the trip wire */
|
/* Set the trip wire */
|
||||||
|
|
||||||
imx9_modifyreg(priv, IMX9_USBDEV_USBCMD_OFFSET, 0, USBDEV_USBCMD_SUTW);
|
imx9_modifyreg(priv, IMX9_USBDEV_USBCMD_OFFSET, 0, USBDEV_USBCMD_SUTW);
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
|
|
||||||
DEBUGASSERT(IS_CACHE_ALIGNED(dqh, sizeof(struct imx9_dqh_s)));
|
DEBUGASSERT(IS_CACHE_ALIGNED(dqh, sizeof(struct imx9_dqh_s)));
|
||||||
up_invalidate_dcache((uintptr_t)dqh,
|
up_invalidate_dcache((uintptr_t)dqh,
|
||||||
|
@ -895,7 +895,7 @@ static void imx9_readsetup(struct imx9_usb_s *priv, uint8_t epphy,
|
||||||
|
|
||||||
imx9_putreg(priv, IMX9_USBDEV_ENDPTSETUPSTAT_OFFSET,
|
imx9_putreg(priv, IMX9_USBDEV_ENDPTSETUPSTAT_OFFSET,
|
||||||
IMX9_ENDPTMASK(IMX9_EP0_OUT));
|
IMX9_ENDPTMASK(IMX9_EP0_OUT));
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -1325,7 +1325,7 @@ static inline void imx9_ep0state(struct imx9_usb_s *priv,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
|
@ -99,7 +99,7 @@ void arm64_el_init(void)
|
||||||
/* At EL3, cntfrq_el0 is uninitialized. It must be set. */
|
/* At EL3, cntfrq_el0 is uninitialized. It must be set. */
|
||||||
|
|
||||||
write_sysreg(CONFIG_XPAR_CPU_CORTEXA53_0_TIMESTAMP_CLK_FREQ, cntfrq_el0);
|
write_sysreg(CONFIG_XPAR_CPU_CORTEXA53_0_TIMESTAMP_CLK_FREQ, cntfrq_el0);
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -914,9 +914,9 @@ void pinephone_display_test_pattern(void)
|
||||||
|
|
||||||
/* Fixes missing rows in the rendered image, not sure why */
|
/* Fixes missing rows in the rendered image, not sure why */
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Init Framebuffer 1:
|
/* Init Framebuffer 1:
|
||||||
|
@ -931,9 +931,9 @@ void pinephone_display_test_pattern(void)
|
||||||
|
|
||||||
/* Fixes missing rows in the rendered image, not sure why */
|
/* Fixes missing rows in the rendered image, not sure why */
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Init Framebuffer 2:
|
/* Init Framebuffer 2:
|
||||||
|
@ -972,9 +972,9 @@ void pinephone_display_test_pattern(void)
|
||||||
|
|
||||||
/* Fixes missing rows in the rendered image, not sure why */
|
/* Fixes missing rows in the rendered image, not sure why */
|
||||||
|
|
||||||
ARM64_DMB();
|
__DMB();
|
||||||
ARM64_DSB();
|
__MB();
|
||||||
ARM64_ISB();
|
__ISB();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -439,6 +439,14 @@ menuconfig WATCHDOG_AUTOMONITOR
|
||||||
|
|
||||||
if WATCHDOG_AUTOMONITOR
|
if WATCHDOG_AUTOMONITOR
|
||||||
|
|
||||||
|
config WATCHDOG_TIMEOUT_NOTIFIER
|
||||||
|
bool "Enable watchdog timeout notifier"
|
||||||
|
default n
|
||||||
|
---help---
|
||||||
|
The watchdog timeout notifier chain mechanism supports users registering
|
||||||
|
custom callback functions, which will be called when the watchdog timer
|
||||||
|
managed by Auto-monitor times out.
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Auto-monitor keepalive by"
|
prompt "Auto-monitor keepalive by"
|
||||||
default WATCHDOG_AUTOMONITOR_BY_WDOG
|
default WATCHDOG_AUTOMONITOR_BY_WDOG
|
||||||
|
|
|
@ -71,6 +71,20 @@
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_ONESHOT)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_ONESHOT
|
||||||
|
#elif defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_TIMER)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_TIMER
|
||||||
|
#elif defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_WDOG)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_WDOG
|
||||||
|
#elif defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_WORKER)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_WORKER
|
||||||
|
#elif defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_CAPTURE)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_CAPTURE
|
||||||
|
#elif defined(CONFIG_WATCHDOG_AUTOMONITOR_BY_IDLE)
|
||||||
|
# define WATCHDOG_NOTIFIER_ACTION WATCHDOG_KEEPALIVE_BY_IDLE
|
||||||
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Type Definitions
|
* Private Type Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -135,6 +149,10 @@ static const struct file_operations g_wdogops =
|
||||||
wdog_ioctl, /* ioctl */
|
wdog_ioctl, /* ioctl */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef CONFIG_WATCHDOG_TIMEOUT_NOTIFIER
|
||||||
|
static ATOMIC_NOTIFIER_HEAD(g_watchdog_notifier_list);
|
||||||
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Functions
|
* Private Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -699,6 +717,55 @@ static int wdog_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
#ifdef CONFIG_WATCHDOG_TIMEOUT_NOTIFIER
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_notifier_chain_register
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Add notifier to the watchdog notifier chain
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* nb - New entry in notifier chain
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_notifier_chain_register(FAR struct notifier_block *nb)
|
||||||
|
{
|
||||||
|
atomic_notifier_chain_register(&g_watchdog_notifier_list, nb);
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_notifier_chain_unregister
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Remove notifier from the watchdog notifier chain
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* nb - Entry to remove from notifier chain
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_notifier_chain_unregister(FAR struct notifier_block *nb)
|
||||||
|
{
|
||||||
|
atomic_notifier_chain_unregister(&g_watchdog_notifier_list, nb);
|
||||||
|
}
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_automonitor_timeout
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* This function can be called in the watchdog timeout interrupt handler.
|
||||||
|
* If so, callbacks on the watchdog timer notify chain are called when the
|
||||||
|
* watchdog timer times out.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_automonitor_timeout(void)
|
||||||
|
{
|
||||||
|
atomic_notifier_call_chain(&g_watchdog_notifier_list, action, data);
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_WATCHDOG_TIMEOUT_NOTIFIER */
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: watchdog_register
|
* Name: watchdog_register
|
||||||
*
|
*
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
#include <nuttx/compiler.h>
|
#include <nuttx/compiler.h>
|
||||||
#include <nuttx/irq.h>
|
#include <nuttx/irq.h>
|
||||||
#include <nuttx/fs/ioctl.h>
|
#include <nuttx/fs/ioctl.h>
|
||||||
|
#include <nuttx/notifier.h>
|
||||||
|
|
||||||
#ifdef CONFIG_WATCHDOG
|
#ifdef CONFIG_WATCHDOG
|
||||||
|
|
||||||
|
@ -88,6 +89,35 @@
|
||||||
#define WDFLAGS_CAPTURE (1 << 2) /* 1=Call the user function when the
|
#define WDFLAGS_CAPTURE (1 << 2) /* 1=Call the user function when the
|
||||||
* watchdog timer expires */
|
* watchdog timer expires */
|
||||||
|
|
||||||
|
/* Keepalive Actions ********************************************************/
|
||||||
|
|
||||||
|
/* According to the keepalive action specified by the Auto-monitor, callback
|
||||||
|
* functions registered on the watchdog notifier chain may take corresponding
|
||||||
|
* actions.
|
||||||
|
*
|
||||||
|
* These are detected and handled by the "upper half" watchdog timer driver.
|
||||||
|
*
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_ONESHOT - The watchdog timer is keepalive by
|
||||||
|
* oneshot timer.
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_TIMER - The watchdog timer is keepalive by
|
||||||
|
* timer.
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_WDOG - The watchdog timer is keepalive by
|
||||||
|
* wdog.
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_WORKER - The watchdog timer is keepalive by
|
||||||
|
* worker queue.
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_CAPTURE - The watchdog timer is keepalive by
|
||||||
|
* capture.
|
||||||
|
* WATCHDOG_KEEPALIVE_BY_IDLE - The watchdog timer is keepalive by
|
||||||
|
* idle task.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_ONESHOT 0
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_TIMER 1
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_WDOG 2
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_WORKER 3
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_CAPTURE 4
|
||||||
|
#define WATCHDOG_KEEPALIVE_BY_IDLE 5
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Types
|
* Public Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -197,6 +227,47 @@ extern "C"
|
||||||
#define EXTERN extern
|
#define EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_WATCHDOG_TIMEOUT_NOTIFIER
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_notifier_chain_register
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Add notifier to the watchdog notifier chain
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* nb - New entry in notifier chain
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_notifier_chain_register(FAR struct notifier_block *nb);
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_notifier_chain_unregister
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* Remove notifier from the watchdog notifier chain
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* nb - Entry to remove from notifier chain
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_notifier_chain_unregister(FAR struct notifier_block *nb);
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: watchdog_automonitor_timeout
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* This function can be called in the watchdog timeout interrupt handler.
|
||||||
|
* If so, callbacks on the watchdog timer notify chain are called when the
|
||||||
|
* watchdog timer times out.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
void watchdog_automonitor_timeout(void);
|
||||||
|
|
||||||
|
#endif /* CONFIG_WATCHDOG_TIMEOUT_NOTIFIER */
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: watchdog_register
|
* Name: watchdog_register
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue