xref: /qemu/include/hw/intc/loongarch_ipi.h (revision 78f314cf)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * LoongArch ipi interrupt header files
4  *
5  * Copyright (C) 2021 Loongson Technology Corporation Limited
6  */
7 
8 #ifndef HW_LOONGARCH_IPI_H
9 #define HW_LOONGARCH_IPI_H
10 
11 #include "hw/sysbus.h"
12 
13 /* Mainy used by iocsr read and write */
14 #define SMP_IPI_MAILBOX      0x1000ULL
15 #define CORE_STATUS_OFF       0x0
16 #define CORE_EN_OFF           0x4
17 #define CORE_SET_OFF          0x8
18 #define CORE_CLEAR_OFF        0xc
19 #define CORE_BUF_20           0x20
20 #define CORE_BUF_28           0x28
21 #define CORE_BUF_30           0x30
22 #define CORE_BUF_38           0x38
23 #define IOCSR_IPI_SEND        0x40
24 #define IOCSR_MAIL_SEND       0x48
25 #define IOCSR_ANY_SEND        0x158
26 
27 #define MAIL_SEND_ADDR        (SMP_IPI_MAILBOX + IOCSR_MAIL_SEND)
28 #define MAIL_SEND_OFFSET      0
29 #define ANY_SEND_OFFSET       (IOCSR_ANY_SEND - IOCSR_MAIL_SEND)
30 
31 #define TYPE_LOONGARCH_IPI "loongarch_ipi"
32 OBJECT_DECLARE_SIMPLE_TYPE(LoongArchIPI, LOONGARCH_IPI)
33 
34 typedef struct IPICore {
35     uint32_t status;
36     uint32_t en;
37     uint32_t set;
38     uint32_t clear;
39     /* 64bit buf divide into 2 32bit buf */
40     uint32_t buf[2];
41     qemu_irq irq;
42 } IPICore;
43 
44 struct LoongArchIPI {
45     SysBusDevice parent_obj;
46     MemoryRegion ipi_iocsr_mem;
47     MemoryRegion ipi64_iocsr_mem;
48     IPICore ipi_core;
49 };
50 
51 #endif
52