You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
582 B
20 lines
582 B
# shared_irq configuration options |
|
|
|
# Copyright (c) 2015 Intel Corporation |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
menuconfig SHARED_IRQ |
|
bool "Shared interrupt driver" |
|
default y |
|
depends on DT_HAS_SHARED_IRQ_ENABLED |
|
help |
|
Include shared interrupt support in system. Shared interrupt |
|
support is NOT required in most systems. If in doubt answer no. |
|
|
|
config SHARED_IRQ_INIT_PRIORITY |
|
int "Shared IRQ init priority" |
|
depends on SHARED_IRQ |
|
default 45 |
|
help |
|
Shared IRQ are initialized on POST_KERNEL init level. They |
|
have to be initialized before any device that uses them.
|
|
|