forked from Mirrors/opensbi

The "target_hart" and "hart_count" parameters of PLIC cold and warm init functions are only used for sanity checks and not required in PLIC initialization. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
24 lines
488 B
C
24 lines
488 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
*
|
|
* Authors:
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
*/
|
|
|
|
#ifndef __IRQCHIP_PLIC_H__
|
|
#define __IRQCHIP_PLIC_H__
|
|
|
|
#include <sbi/sbi_types.h>
|
|
|
|
int plic_warm_irqchip_init(int m_cntx_id, int s_cntx_id);
|
|
|
|
int plic_cold_irqchip_init(unsigned long base, u32 num_sources);
|
|
|
|
void plic_set_thresh(u32 cntxid, u32 val);
|
|
|
|
void plic_set_ie(u32 cntxid, u32 word_index, u32 val);
|
|
|
|
#endif
|