2 * QEMU PowerPC e500v2 ePAPR spinning code
4 * Copyright (C) 2011 Freescale Semiconductor, Inc. All rights reserved.
6 * Author: Alexander Graf, <agraf@suse.de>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 * This code is not really a device, but models an interface that usually
22 * firmware takes care of. It's used when QEMU plays the role of firmware.
26 * https://www.power.org/resources/downloads/Power_ePAPR_APPROVED_v1.1.pdf
30 #include "qemu/osdep.h"
31 #include "qemu/units.h"
33 #include "hw/sysbus.h"
34 #include "sysemu/hw_accel.h"
35 #include "sysemu/sysemu.h"
40 typedef struct spin_info
{
46 } QEMU_PACKED SpinInfo
;
48 #define TYPE_E500_SPIN "e500-spin"
49 #define E500_SPIN(obj) OBJECT_CHECK(SpinState, (obj), TYPE_E500_SPIN)
51 typedef struct SpinState
{
52 SysBusDevice parent_obj
;
55 SpinInfo spin
[MAX_CPUS
];
58 static void spin_reset(DeviceState
*dev
)
60 SpinState
*s
= E500_SPIN(dev
);
63 for (i
= 0; i
< MAX_CPUS
; i
++) {
64 SpinInfo
*info
= &s
->spin
[i
];
68 stq_p(&info
->addr
, 1);
72 static void mmubooke_create_initial_mapping(CPUPPCState
*env
,
77 ppcmas_tlb_t
*tlb
= booke206_get_tlbm(env
, 1, 0, 1);
80 size
= (booke206_page_size_to_tlb(len
) << MAS1_TSIZE_SHIFT
);
81 tlb
->mas1
= MAS1_VALID
| size
;
82 tlb
->mas2
= (va
& TARGET_PAGE_MASK
) | MAS2_M
;
83 tlb
->mas7_3
= pa
& TARGET_PAGE_MASK
;
84 tlb
->mas7_3
|= MAS3_UR
| MAS3_UW
| MAS3_UX
| MAS3_SR
| MAS3_SW
| MAS3_SX
;
85 env
->tlb_dirty
= true;
88 static void spin_kick(CPUState
*cs
, run_on_cpu_data data
)
90 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
91 CPUPPCState
*env
= &cpu
->env
;
92 SpinInfo
*curspin
= data
.host_ptr
;
93 hwaddr map_size
= 64 * MiB
;
96 cpu_synchronize_state(cs
);
97 stl_p(&curspin
->pir
, env
->spr
[SPR_BOOKE_PIR
]);
98 env
->nip
= ldq_p(&curspin
->addr
) & (map_size
- 1);
99 env
->gpr
[3] = ldq_p(&curspin
->r3
);
103 env
->gpr
[7] = map_size
;
107 map_start
= ldq_p(&curspin
->addr
) & ~(map_size
- 1);
108 mmubooke_create_initial_mapping(env
, 0, map_start
, map_size
);
111 cs
->exception_index
= -1;
116 static void spin_write(void *opaque
, hwaddr addr
, uint64_t value
,
119 SpinState
*s
= opaque
;
120 int env_idx
= addr
/ sizeof(SpinInfo
);
122 SpinInfo
*curspin
= &s
->spin
[env_idx
];
123 uint8_t *curspin_p
= (uint8_t*)curspin
;
125 cpu
= qemu_get_cpu(env_idx
);
131 if (cpu
->cpu_index
== 0) {
132 /* primary CPU doesn't spin */
136 curspin_p
= &curspin_p
[addr
% sizeof(SpinInfo
)];
139 stb_p(curspin_p
, value
);
142 stw_p(curspin_p
, value
);
145 stl_p(curspin_p
, value
);
149 if (!(ldq_p(&curspin
->addr
) & 1)) {
151 run_on_cpu(cpu
, spin_kick
, RUN_ON_CPU_HOST_PTR(curspin
));
155 static uint64_t spin_read(void *opaque
, hwaddr addr
, unsigned len
)
157 SpinState
*s
= opaque
;
158 uint8_t *spin_p
= &((uint8_t*)s
->spin
)[addr
];
162 return ldub_p(spin_p
);
164 return lduw_p(spin_p
);
166 return ldl_p(spin_p
);
168 hw_error("ppce500: unexpected %s with len = %u", __func__
, len
);
172 static const MemoryRegionOps spin_rw_ops
= {
175 .endianness
= DEVICE_BIG_ENDIAN
,
178 static void ppce500_spin_initfn(Object
*obj
)
180 SysBusDevice
*dev
= SYS_BUS_DEVICE(obj
);
181 SpinState
*s
= E500_SPIN(dev
);
183 memory_region_init_io(&s
->iomem
, obj
, &spin_rw_ops
, s
,
184 "e500 spin pv device", sizeof(SpinInfo
) * MAX_CPUS
);
185 sysbus_init_mmio(dev
, &s
->iomem
);
188 static void ppce500_spin_class_init(ObjectClass
*klass
, void *data
)
190 DeviceClass
*dc
= DEVICE_CLASS(klass
);
192 dc
->reset
= spin_reset
;
195 static const TypeInfo ppce500_spin_info
= {
196 .name
= TYPE_E500_SPIN
,
197 .parent
= TYPE_SYS_BUS_DEVICE
,
198 .instance_size
= sizeof(SpinState
),
199 .instance_init
= ppce500_spin_initfn
,
200 .class_init
= ppce500_spin_class_init
,
203 static void ppce500_spin_register_types(void)
205 type_register_static(&ppce500_spin_info
);
208 type_init(ppce500_spin_register_types
)