24 lines
643 B
C
24 lines
643 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Renesas RZ/V2H(P) Interrupt Control Unit (ICU)
|
|
*
|
|
* Copyright (C) 2025 Renesas Electronics Corporation.
|
|
*/
|
|
|
|
#ifndef __LINUX_IRQ_RENESAS_RZV2H
|
|
#define __LINUX_IRQ_RENESAS_RZV2H
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#define RZV2H_ICU_DMAC_REQ_NO_DEFAULT 0x3ff
|
|
|
|
#ifdef CONFIG_RENESAS_RZV2H_ICU
|
|
void rzv2h_icu_register_dma_req(struct platform_device *icu_dev, u8 dmac_index, u8 dmac_channel,
|
|
u16 req_no);
|
|
#else
|
|
static inline void rzv2h_icu_register_dma_req(struct platform_device *icu_dev, u8 dmac_index,
|
|
u8 dmac_channel, u16 req_no) { }
|
|
#endif
|
|
|
|
#endif /* __LINUX_IRQ_RENESAS_RZV2H */
|