mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-23 07:03:08 +00:00
cecf51f245
Now uses the same devicetree source as the kernel, verbatim, with the required subset of kernel dt includes. Signed-off-by: Hector Martin <marcan@marcan.st>
15 lines
364 B
C
15 lines
364 B
C
/* SPDX-License-Identifier: GPL-2.0+ OR MIT */
|
|
#ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_APPLE_AIC_H
|
|
#define _DT_BINDINGS_INTERRUPT_CONTROLLER_APPLE_AIC_H
|
|
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
#define AIC_IRQ 0
|
|
#define AIC_FIQ 1
|
|
|
|
#define AIC_TMR_HV_PHYS 0
|
|
#define AIC_TMR_HV_VIRT 1
|
|
#define AIC_TMR_GUEST_PHYS 2
|
|
#define AIC_TMR_GUEST_VIRT 3
|
|
|
|
#endif
|