xref: /qemu/include/hw/intc/loongarch_ipi.h (revision 118d4ed0)
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 /* IPI system memory address */
28 #define IPI_SYSTEM_MEM        0x1fe01000
29 
30 #define MAX_IPI_CORE_NUM      4
31 #define MAX_IPI_MBX_NUM       4
32 
33 #define TYPE_LOONGARCH_IPI "loongarch_ipi"
34 OBJECT_DECLARE_SIMPLE_TYPE(LoongArchIPI, LOONGARCH_IPI)
35 
36 typedef struct IPICore {
37     uint32_t status;
38     uint32_t en;
39     uint32_t set;
40     uint32_t clear;
41     /* 64bit buf divide into 2 32bit buf */
42     uint32_t buf[MAX_IPI_MBX_NUM * 2];
43     qemu_irq irq;
44 } IPICore;
45 
46 struct LoongArchIPI {
47     SysBusDevice parent_obj;
48     MemoryRegion ipi_iocsr_mem[MAX_IPI_CORE_NUM];
49     MemoryRegion ipi_system_mem[MAX_IPI_CORE_NUM];
50 };
51 
52 #endif
53