mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
3d65944517
PD#SWPL-93002 Problem: bring up to console Solution: 1. copy dts related files from kernel 5.4 2. modify the file style to meet the submission requirements 3. modify the CPU register to solve the problem of stuck cpuidle 4. porting clk driver 5. porting pinctrl driver 6. modify the reg of aucpu in dts to solve kernel panic 7. modify secmon dts to solve serror kernel panic Verify: t3 Change-Id: Idf318911e58fdb059bbae1035d390021326870c2 Signed-off-by: Wanwei Jiang <wanwei.jiang@amlogic.com>
17 lines
440 B
C
17 lines
440 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_IRQ_H
|
|
#define _DT_BINDINGS_INTERRUPT_CONTROLLER_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
|