blob: 81ebe67dbb69eaf2b3d2cc8e4ee89946ef8285d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2021 Western Digital Corporation or its affiliates.
* Copyright (c) 2022 Ventana Micro Systems Inc.
*
* Authors:
* Anup Patel <anup.patel@wdc.com>
*/
#include <libfdt.h>
#include <sbi/riscv_asm.h>
#include <sbi/sbi_error.h>
#include <sbi/sbi_heap.h>
#include <sbi_utils/fdt/fdt_helper.h>
#include <sbi_utils/irqchip/fdt_irqchip.h>
#include <sbi_utils/irqchip/aplic.h>
static int irqchip_aplic_cold_init(const void *fdt, int nodeoff,
const struct fdt_match *match)
{
int rc;
struct aplic_data *pd;
pd = sbi_zalloc(sizeof(*pd));
if (!pd)
return SBI_ENOMEM;
rc = fdt_parse_aplic_node(fdt, nodeoff, pd);
if (rc)
goto fail_free_data;
rc = aplic_cold_irqchip_init(pd);
if (rc)
goto fail_free_data;
return 0;
fail_free_data:
sbi_free(pd);
return rc;
}
static const struct fdt_match irqchip_aplic_match[] = {
{ .compatible = "riscv,aplic" },
{ },
};
const struct fdt_driver fdt_irqchip_aplic = {
.match_table = irqchip_aplic_match,
.init = irqchip_aplic_cold_init,
};
|