plic.h 474 B

123456789101112131415161718192021
  1. /*
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2019 Western Digital Corporation or its affiliates.
  5. *
  6. * Authors:
  7. * Anup Patel <anup.patel@wdc.com>
  8. */
  9. #ifndef __IRQCHIP_PLIC_H__
  10. #define __IRQCHIP_PLIC_H__
  11. #include <sbi/sbi_types.h>
  12. void plic_fdt_fixup(void *fdt, const char *compat);
  13. int plic_warm_irqchip_init(u32 target_hart, int m_cntx_id, int s_cntx_id);
  14. int plic_cold_irqchip_init(unsigned long base, u32 num_sources, u32 hart_count);
  15. #endif