xics_pnv.c (9746211baa6ff1275e9c726c6f3a3bcfe4b1f8bd) xics_pnv.c (e688df6bc4549f28534cdb001f168b8caae55b0c)
1/*
2 * QEMU PowerPC PowerNV Interrupt Control Presenter (ICP) model
3 *
4 * Copyright (c) 2017, IBM Corporation.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2 of

--- 5 unchanged lines hidden (view full) ---

14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "qemu/osdep.h"
21#include "sysemu/sysemu.h"
1/*
2 * QEMU PowerPC PowerNV Interrupt Control Presenter (ICP) model
3 *
4 * Copyright (c) 2017, IBM Corporation.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2 of

--- 5 unchanged lines hidden (view full) ---

14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "qemu/osdep.h"
21#include "sysemu/sysemu.h"
22#include "qapi/error.h"
23#include "qemu/log.h"
24#include "hw/ppc/xics.h"
25
26#define ICP_XIRR_POLL 0 /* 1 byte (CPRR) or 4 bytes */
27#define ICP_XIRR 4 /* 1 byte (CPRR) or 4 bytes */
28#define ICP_MFRR 12 /* 1 byte access only */
29
30#define ICP_LINKA 16 /* unused */

--- 162 unchanged lines hidden ---
22#include "qemu/log.h"
23#include "hw/ppc/xics.h"
24
25#define ICP_XIRR_POLL 0 /* 1 byte (CPRR) or 4 bytes */
26#define ICP_XIRR 4 /* 1 byte (CPRR) or 4 bytes */
27#define ICP_MFRR 12 /* 1 byte access only */
28
29#define ICP_LINKA 16 /* unused */

--- 162 unchanged lines hidden ---