7e11828c6e
Created a new directory called bsp (board support package) to hold board or system on chip specific code. The idea is the following. Change-Id: Ica5886806940facae2fa5492fcc938b3c2b989be
15 lines
307 B
C
15 lines
307 B
C
#ifndef __HW_INTR_ARM_H__
|
|
#define __HW_INTR_ARM_H__
|
|
|
|
|
|
#include "kernel/kernel.h"
|
|
void irq_handle(int irq);
|
|
|
|
int hw_intr_mask(int irq);
|
|
int hw_intr_unmask(int irq);
|
|
int hw_intr_ack(int irq);
|
|
int hw_intr_used(int irq);
|
|
int hw_intr_not_used(int irq);
|
|
int hw_intr_disable_all();
|
|
|
|
#endif /* __HW_INTR_ARM_H__ */
|