17 lines
419 B
C
17 lines
419 B
C
|
/*
|
||
|
* Copyright (c) 2020 ITE Corporation. All Rights Reserved.
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef __DT_BINDING_IRQ_H
|
||
|
#define __DT_BINDING_IRQ_H
|
||
|
|
||
|
#define IRQ_TYPE_NONE 0
|
||
|
#define IRQ_TYPE_EDGE_RISING 1
|
||
|
#define IRQ_TYPE_EDGE_FALLING 2
|
||
|
#define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
|
||
|
#define IRQ_TYPE_LEVEL_HIGH 4
|
||
|
#define IRQ_TYPE_LEVEL_LOW 8
|
||
|
|
||
|
#endif
|