mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 23:25:20 +00:00
Add an interrupt controller driver for this device. This is an extremely simple second level controller with per-interrupt-bit registers for "enable" and "status". There is no internal latching, so no "clear/ACK" process is needed. Signed-off-by: Andy Ross <andyross@google.com>
10 lines
308 B
Plaintext
10 lines
308 B
Plaintext
# Copyright 2023 The ChromiumOS Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config INTC_MTK_ADSP
|
|
bool "MediaTek Audio DSP Interrupt Controller"
|
|
help
|
|
Very simple cascaded interrupt controller consisting of two
|
|
bitfield registers (status and enable) and one mask value
|
|
defining valid interrupts.
|