2004-06-15 21:38:40 +00:00
|
|
|
/*
|
|
|
|
* OpenPIC emulation
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2004-06-15 21:38:40 +00:00
|
|
|
* Copyright (c) 2004 Jocelyn Mayer
|
2011-07-20 23:33:29 +00:00
|
|
|
* 2011 Alexander Graf
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2004-06-15 21:38:40 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Based on OpenPic implementations:
|
2009-02-06 21:30:02 +00:00
|
|
|
* - Intel GW80314 I/O companion chip developer's manual
|
2004-06-15 21:38:40 +00:00
|
|
|
* - Motorola MPC8245 & MPC8540 user manuals.
|
|
|
|
* - Motorola MCP750 (aka Raven) programmer manual.
|
|
|
|
* - Motorola Harrier programmer manuel
|
|
|
|
*
|
|
|
|
* Serial interrupts, as implemented in Raven chipset are not supported yet.
|
2007-09-16 21:08:06 +00:00
|
|
|
*
|
2004-06-15 21:38:40 +00:00
|
|
|
*/
|
2007-11-17 17:14:51 +00:00
|
|
|
#include "hw.h"
|
|
|
|
#include "ppc_mac.h"
|
2012-12-12 12:24:50 +00:00
|
|
|
#include "pci/pci.h"
|
2009-03-02 16:42:04 +00:00
|
|
|
#include "openpic.h"
|
2012-12-08 04:17:14 +00:00
|
|
|
#include "sysbus.h"
|
2012-12-17 17:17:08 +00:00
|
|
|
#include "pci/msi.h"
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2004-06-21 16:50:43 +00:00
|
|
|
//#define DEBUG_OPENPIC
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_OPENPIC
|
2012-12-21 16:15:38 +00:00
|
|
|
static const int debug_openpic = 1;
|
2004-06-15 21:38:40 +00:00
|
|
|
#else
|
2012-12-21 16:15:38 +00:00
|
|
|
static const int debug_openpic = 0;
|
2004-06-15 21:38:40 +00:00
|
|
|
#endif
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
#define DPRINTF(fmt, ...) do { \
|
|
|
|
if (debug_openpic) { \
|
|
|
|
printf(fmt , ## __VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2012-12-07 15:10:34 +00:00
|
|
|
#define MAX_CPU 15
|
|
|
|
#define MAX_SRC 256
|
2004-06-15 21:38:40 +00:00
|
|
|
#define MAX_TMR 4
|
|
|
|
#define MAX_IPI 4
|
2012-12-08 13:18:00 +00:00
|
|
|
#define MAX_MSI 8
|
2012-12-07 15:10:34 +00:00
|
|
|
#define MAX_IRQ (MAX_SRC + MAX_IPI + MAX_TMR)
|
2004-06-15 21:38:40 +00:00
|
|
|
#define VID 0x03 /* MPIC version ID */
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
/* OpenPIC capability flags */
|
|
|
|
#define OPENPIC_FLAG_IDE_CRIT (1 << 0)
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
/* OpenPIC address map */
|
2012-12-07 16:15:15 +00:00
|
|
|
#define OPENPIC_GLB_REG_START 0x0
|
|
|
|
#define OPENPIC_GLB_REG_SIZE 0x10F0
|
|
|
|
#define OPENPIC_TMR_REG_START 0x10F0
|
|
|
|
#define OPENPIC_TMR_REG_SIZE 0x220
|
2012-12-08 13:18:00 +00:00
|
|
|
#define OPENPIC_MSI_REG_START 0x1600
|
|
|
|
#define OPENPIC_MSI_REG_SIZE 0x200
|
2012-12-07 16:15:15 +00:00
|
|
|
#define OPENPIC_SRC_REG_START 0x10000
|
|
|
|
#define OPENPIC_SRC_REG_SIZE (MAX_SRC * 0x20)
|
|
|
|
#define OPENPIC_CPU_REG_START 0x20000
|
|
|
|
#define OPENPIC_CPU_REG_SIZE 0x100 + ((MAX_CPU - 1) * 0x1000)
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
/* Raven */
|
|
|
|
#define RAVEN_MAX_CPU 2
|
|
|
|
#define RAVEN_MAX_EXT 48
|
|
|
|
#define RAVEN_MAX_IRQ 64
|
|
|
|
#define RAVEN_MAX_TMR MAX_TMR
|
|
|
|
#define RAVEN_MAX_IPI MAX_IPI
|
|
|
|
|
|
|
|
/* Interrupt definitions */
|
|
|
|
#define RAVEN_FE_IRQ (RAVEN_MAX_EXT) /* Internal functional IRQ */
|
|
|
|
#define RAVEN_ERR_IRQ (RAVEN_MAX_EXT + 1) /* Error IRQ */
|
|
|
|
#define RAVEN_TMR_IRQ (RAVEN_MAX_EXT + 2) /* First timer IRQ */
|
|
|
|
#define RAVEN_IPI_IRQ (RAVEN_TMR_IRQ + RAVEN_MAX_TMR) /* First IPI IRQ */
|
|
|
|
/* First doorbell IRQ */
|
|
|
|
#define RAVEN_DBL_IRQ (RAVEN_IPI_IRQ + (RAVEN_MAX_CPU * RAVEN_MAX_IPI))
|
|
|
|
|
|
|
|
/* FSL_MPIC_20 */
|
|
|
|
#define FSL_MPIC_20_MAX_CPU 1
|
|
|
|
#define FSL_MPIC_20_MAX_EXT 12
|
|
|
|
#define FSL_MPIC_20_MAX_INT 64
|
|
|
|
#define FSL_MPIC_20_MAX_IRQ MAX_IRQ
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
/* Interrupt definitions */
|
2012-12-07 15:10:34 +00:00
|
|
|
/* IRQs, accessible through the IRQ region */
|
2012-12-08 04:17:14 +00:00
|
|
|
#define FSL_MPIC_20_EXT_IRQ 0x00
|
|
|
|
#define FSL_MPIC_20_INT_IRQ 0x10
|
|
|
|
#define FSL_MPIC_20_MSG_IRQ 0xb0
|
|
|
|
#define FSL_MPIC_20_MSI_IRQ 0xe0
|
2012-12-07 15:10:34 +00:00
|
|
|
/* These are available through separate regions, but
|
|
|
|
for simplicity's sake mapped into the same number space */
|
2012-12-08 04:17:14 +00:00
|
|
|
#define FSL_MPIC_20_TMR_IRQ 0x100
|
|
|
|
#define FSL_MPIC_20_IPI_IRQ 0x104
|
2009-03-02 16:42:04 +00:00
|
|
|
|
2012-08-14 04:30:55 +00:00
|
|
|
/*
|
|
|
|
* Block Revision Register1 (BRR1): QEMU does not fully emulate
|
|
|
|
* any version on MPIC. So to start with, set the IP version to 0.
|
|
|
|
*
|
|
|
|
* NOTE: This is Freescale MPIC specific register. Keep it here till
|
|
|
|
* this code is refactored for different variants of OPENPIC and MPIC.
|
|
|
|
*/
|
|
|
|
#define FSL_BRR1_IPID (0x0040 << 16) /* 16 bit IP-block ID */
|
|
|
|
#define FSL_BRR1_IPMJ (0x00 << 8) /* 8 bit IP major number */
|
|
|
|
#define FSL_BRR1_IPMN 0x00 /* 8 bit IP minor number */
|
|
|
|
|
2012-12-07 23:58:54 +00:00
|
|
|
#define FREP_NIRQ_SHIFT 16
|
|
|
|
#define FREP_NCPU_SHIFT 8
|
|
|
|
#define FREP_VID_SHIFT 0
|
|
|
|
|
|
|
|
#define VID_REVISION_1_2 2
|
2012-12-08 04:17:14 +00:00
|
|
|
#define VID_REVISION_1_3 3
|
2012-12-07 23:58:54 +00:00
|
|
|
|
|
|
|
#define VENI_GENERIC 0x00000000 /* Generic Vendor ID */
|
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
#define GLBC_RESET 0x80000000
|
|
|
|
|
|
|
|
#define TIBC_CI 0x80000000 /* count inhibit */
|
|
|
|
#define TICC_TOG 0x80000000 /* toggles when decrement to zero */
|
|
|
|
|
2012-12-08 00:49:52 +00:00
|
|
|
#define IDR_EP_SHIFT 31
|
|
|
|
#define IDR_EP_MASK (1 << IDR_EP_SHIFT)
|
|
|
|
#define IDR_CI0_SHIFT 30
|
|
|
|
#define IDR_CI1_SHIFT 29
|
|
|
|
#define IDR_P1_SHIFT 1
|
|
|
|
#define IDR_P0_SHIFT 0
|
2009-03-02 16:42:04 +00:00
|
|
|
|
2012-12-08 13:18:00 +00:00
|
|
|
#define MSIIR_OFFSET 0x140
|
|
|
|
#define MSIIR_SRS_SHIFT 29
|
|
|
|
#define MSIIR_SRS_MASK (0x7 << MSIIR_SRS_SHIFT)
|
|
|
|
#define MSIIR_IBS_SHIFT 24
|
|
|
|
#define MSIIR_IBS_MASK (0x1f << MSIIR_IBS_SHIFT)
|
|
|
|
|
2004-06-15 21:38:40 +00:00
|
|
|
#define BF_WIDTH(_bits_) \
|
|
|
|
(((_bits_) + (sizeof(uint32_t) * 8) - 1) / (sizeof(uint32_t) * 8))
|
|
|
|
|
2012-12-12 23:44:22 +00:00
|
|
|
static inline void set_bit(uint32_t *field, int bit)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
field[bit >> 5] |= 1 << (bit & 0x1F);
|
|
|
|
}
|
|
|
|
|
2012-12-12 23:44:22 +00:00
|
|
|
static inline void reset_bit(uint32_t *field, int bit)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
field[bit >> 5] &= ~(1 << (bit & 0x1F));
|
|
|
|
}
|
|
|
|
|
2012-12-12 23:44:22 +00:00
|
|
|
static inline int test_bit(uint32_t *field, int bit)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
return (field[bit >> 5] & 1 << (bit & 0x1F)) != 0;
|
|
|
|
}
|
|
|
|
|
2011-07-20 23:33:29 +00:00
|
|
|
static int get_current_cpu(void)
|
|
|
|
{
|
2012-12-13 16:12:02 +00:00
|
|
|
if (!cpu_single_env) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cpu_single_env->cpu_index;
|
2011-07-20 23:33:29 +00:00
|
|
|
}
|
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
static uint32_t openpic_cpu_read_internal(void *opaque, hwaddr addr,
|
2011-07-20 23:33:29 +00:00
|
|
|
int idx);
|
2012-10-23 10:30:10 +00:00
|
|
|
static void openpic_cpu_write_internal(void *opaque, hwaddr addr,
|
2011-07-20 23:33:29 +00:00
|
|
|
uint32_t val, int idx);
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
typedef struct IRQQueue {
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t queue[BF_WIDTH(MAX_IRQ)];
|
|
|
|
int next;
|
|
|
|
int priority;
|
2012-12-13 11:48:14 +00:00
|
|
|
int pending; /* nr of pending bits in queue */
|
2012-12-20 16:30:58 +00:00
|
|
|
} IRQQueue;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
typedef struct IRQSource {
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t ipvp; /* IRQ vector/priority register */
|
|
|
|
uint32_t ide; /* IRQ destination register */
|
|
|
|
int last_cpu;
|
2004-06-21 16:50:43 +00:00
|
|
|
int pending; /* TRUE if IRQ is pending */
|
2012-12-20 16:30:58 +00:00
|
|
|
} IRQSource;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:49:52 +00:00
|
|
|
#define IPVP_MASK_SHIFT 31
|
|
|
|
#define IPVP_MASK_MASK (1 << IPVP_MASK_SHIFT)
|
|
|
|
#define IPVP_ACTIVITY_SHIFT 30
|
|
|
|
#define IPVP_ACTIVITY_MASK (1 << IPVP_ACTIVITY_SHIFT)
|
|
|
|
#define IPVP_MODE_SHIFT 29
|
|
|
|
#define IPVP_MODE_MASK (1 << IPVP_MODE_SHIFT)
|
|
|
|
#define IPVP_POLARITY_SHIFT 23
|
|
|
|
#define IPVP_POLARITY_MASK (1 << IPVP_POLARITY_SHIFT)
|
|
|
|
#define IPVP_SENSE_SHIFT 22
|
|
|
|
#define IPVP_SENSE_MASK (1 << IPVP_SENSE_SHIFT)
|
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
#define IPVP_PRIORITY_MASK (0xF << 16)
|
2004-06-21 16:50:43 +00:00
|
|
|
#define IPVP_PRIORITY(_ipvpr_) ((int)(((_ipvpr_) & IPVP_PRIORITY_MASK) >> 16))
|
2012-12-13 16:12:01 +00:00
|
|
|
#define IPVP_VECTOR(opp, _ipvpr_) ((_ipvpr_) & (opp)->vector_mask)
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
/* IDE[EP/CI] are only for FSL MPIC prior to v4.0 */
|
|
|
|
#define IDE_EP 0x80000000 /* external pin */
|
|
|
|
#define IDE_CI 0x40000000 /* critical interrupt */
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
typedef struct IRQDest {
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t pctp; /* CPU current task priority */
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQQueue raised;
|
|
|
|
IRQQueue servicing;
|
2007-04-09 22:45:36 +00:00
|
|
|
qemu_irq *irqs;
|
2012-12-20 16:30:58 +00:00
|
|
|
} IRQDest;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
typedef struct OpenPICState {
|
2012-12-08 04:17:14 +00:00
|
|
|
SysBusDevice busdev;
|
2011-08-08 13:09:17 +00:00
|
|
|
MemoryRegion mem;
|
2011-08-30 15:46:26 +00:00
|
|
|
|
2012-12-07 22:51:09 +00:00
|
|
|
/* Behavior control */
|
2012-12-08 04:17:14 +00:00
|
|
|
uint32_t model;
|
2012-12-07 22:51:09 +00:00
|
|
|
uint32_t flags;
|
2012-12-07 23:58:54 +00:00
|
|
|
uint32_t nb_irqs;
|
|
|
|
uint32_t vid;
|
|
|
|
uint32_t veni; /* Vendor identification register */
|
2012-12-13 16:12:01 +00:00
|
|
|
uint32_t vector_mask;
|
2012-12-07 23:58:54 +00:00
|
|
|
uint32_t tifr_reset;
|
|
|
|
uint32_t ipvp_reset;
|
|
|
|
uint32_t ide_reset;
|
2012-12-08 12:51:50 +00:00
|
|
|
uint32_t brr1;
|
2012-12-07 22:51:09 +00:00
|
|
|
|
2011-08-30 15:46:26 +00:00
|
|
|
/* Sub-regions */
|
2012-12-08 13:18:00 +00:00
|
|
|
MemoryRegion sub_io_mem[5];
|
2011-08-30 15:46:26 +00:00
|
|
|
|
2004-06-15 21:38:40 +00:00
|
|
|
/* Global registers */
|
|
|
|
uint32_t frep; /* Feature reporting register */
|
|
|
|
uint32_t glbc; /* Global configuration register */
|
2007-04-09 22:45:36 +00:00
|
|
|
uint32_t pint; /* Processor initialization register */
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t spve; /* Spurious vector register */
|
|
|
|
uint32_t tifr; /* Timer frequency reporting register */
|
|
|
|
/* Source registers */
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQSource src[MAX_IRQ];
|
2004-06-15 21:38:40 +00:00
|
|
|
/* Local registers per output pin */
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQDest dst[MAX_CPU];
|
2012-12-08 04:17:14 +00:00
|
|
|
uint32_t nb_cpus;
|
2004-06-15 21:38:40 +00:00
|
|
|
/* Timer registers */
|
|
|
|
struct {
|
2009-12-19 14:59:29 +00:00
|
|
|
uint32_t ticc; /* Global timer current count register */
|
|
|
|
uint32_t tibc; /* Global timer base count register */
|
2004-06-15 21:38:40 +00:00
|
|
|
} timers[MAX_TMR];
|
2012-12-08 13:18:00 +00:00
|
|
|
/* Shared MSI registers */
|
|
|
|
struct {
|
|
|
|
uint32_t msir; /* Shared Message Signaled Interrupt Register */
|
|
|
|
} msi[MAX_MSI];
|
2012-12-08 04:17:14 +00:00
|
|
|
uint32_t max_irq;
|
|
|
|
uint32_t irq_ipi0;
|
|
|
|
uint32_t irq_tim0;
|
2012-12-08 13:18:00 +00:00
|
|
|
uint32_t irq_msi;
|
2012-12-08 00:59:20 +00:00
|
|
|
} OpenPICState;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static void openpic_irq_raise(OpenPICState *opp, int n_CPU, IRQSource *src);
|
2012-12-07 22:51:09 +00:00
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static inline void IRQ_setbit(IRQQueue *q, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-13 11:48:14 +00:00
|
|
|
q->pending++;
|
2004-06-15 21:38:40 +00:00
|
|
|
set_bit(q->queue, n_IRQ);
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static inline void IRQ_resetbit(IRQQueue *q, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-13 11:48:14 +00:00
|
|
|
q->pending--;
|
2004-06-15 21:38:40 +00:00
|
|
|
reset_bit(q->queue, n_IRQ);
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static inline int IRQ_testbit(IRQQueue *q, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
return test_bit(q->queue, n_IRQ);
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static void IRQ_check(OpenPICState *opp, IRQQueue *q)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
int next, i;
|
|
|
|
int priority;
|
|
|
|
|
|
|
|
next = -1;
|
|
|
|
priority = -1;
|
2012-12-13 11:48:14 +00:00
|
|
|
|
|
|
|
if (!q->pending) {
|
|
|
|
/* IRQ bitmap is empty */
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-03-02 16:42:04 +00:00
|
|
|
for (i = 0; i < opp->max_irq; i++) {
|
2009-12-19 14:59:29 +00:00
|
|
|
if (IRQ_testbit(q, i)) {
|
2007-09-16 21:08:06 +00:00
|
|
|
DPRINTF("IRQ_check: irq %d set ipvp_pr=%d pr=%d\n",
|
2004-06-21 16:50:43 +00:00
|
|
|
i, IPVP_PRIORITY(opp->src[i].ipvp), priority);
|
2009-12-19 14:59:29 +00:00
|
|
|
if (IPVP_PRIORITY(opp->src[i].ipvp) > priority) {
|
|
|
|
next = i;
|
|
|
|
priority = IPVP_PRIORITY(opp->src[i].ipvp);
|
|
|
|
}
|
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-13 11:48:14 +00:00
|
|
|
|
|
|
|
out:
|
2004-06-15 21:38:40 +00:00
|
|
|
q->next = next;
|
|
|
|
q->priority = priority;
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static int IRQ_get_next(OpenPICState *opp, IRQQueue *q)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
if (q->next == -1) {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* XXX: optimize */
|
2009-12-19 14:59:29 +00:00
|
|
|
IRQ_check(opp, q);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return q->next;
|
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static void IRQ_local_pipe(OpenPICState *opp, int n_CPU, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQDest *dst;
|
|
|
|
IRQSource *src;
|
2004-06-15 21:38:40 +00:00
|
|
|
int priority;
|
|
|
|
|
|
|
|
dst = &opp->dst[n_CPU];
|
|
|
|
src = &opp->src[n_IRQ];
|
|
|
|
priority = IPVP_PRIORITY(src->ipvp);
|
|
|
|
if (priority <= dst->pctp) {
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Too low priority */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d has too low priority on CPU %d\n",
|
|
|
|
__func__, n_IRQ, n_CPU);
|
2009-12-19 14:59:29 +00:00
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
if (IRQ_testbit(&dst->raised, n_IRQ)) {
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Interrupt miss */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d was missed on CPU %d\n",
|
|
|
|
__func__, n_IRQ, n_CPU);
|
2009-12-19 14:59:29 +00:00
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-08 00:49:52 +00:00
|
|
|
src->ipvp |= IPVP_ACTIVITY_MASK;
|
2004-06-15 21:38:40 +00:00
|
|
|
IRQ_setbit(&dst->raised, n_IRQ);
|
2007-04-09 22:45:36 +00:00
|
|
|
if (priority < dst->raised.priority) {
|
|
|
|
/* An higher priority IRQ is already raised */
|
|
|
|
DPRINTF("%s: IRQ %d is hidden by raised IRQ %d on CPU %d\n",
|
|
|
|
__func__, n_IRQ, dst->raised.next, n_CPU);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
IRQ_get_next(opp, &dst->raised);
|
|
|
|
if (IRQ_get_next(opp, &dst->servicing) != -1 &&
|
2009-01-15 21:19:54 +00:00
|
|
|
priority <= dst->servicing.priority) {
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d is hidden by servicing IRQ %d on CPU %d\n",
|
|
|
|
__func__, n_IRQ, dst->servicing.next, n_CPU);
|
|
|
|
/* Already servicing a higher priority IRQ */
|
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("Raise OpenPIC INT output cpu %d irq %d\n", n_CPU, n_IRQ);
|
2012-12-07 22:51:09 +00:00
|
|
|
openpic_irq_raise(opp, n_CPU, src);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
2004-06-21 16:50:43 +00:00
|
|
|
/* update pic state because registers for n_IRQ have changed value */
|
2012-12-08 00:59:20 +00:00
|
|
|
static void openpic_update_irq(OpenPICState *opp, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQSource *src;
|
2004-06-15 21:38:40 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
src = &opp->src[n_IRQ];
|
2004-06-21 16:50:43 +00:00
|
|
|
|
|
|
|
if (!src->pending) {
|
|
|
|
/* no irq pending */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d is not pending\n", __func__, n_IRQ);
|
2004-06-21 16:50:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ipvp & IPVP_MASK_MASK) {
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Interrupt source is disabled */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d is disabled\n", __func__, n_IRQ);
|
2009-12-19 14:59:29 +00:00
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
if (IPVP_PRIORITY(src->ipvp) == 0) {
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Priority set to zero */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d has 0 priority\n", __func__, n_IRQ);
|
2009-12-19 14:59:29 +00:00
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ipvp & IPVP_ACTIVITY_MASK) {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* IRQ already active */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d is already active\n", __func__, n_IRQ);
|
2004-06-21 16:50:43 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-12-13 16:11:59 +00:00
|
|
|
if (src->ide == 0) {
|
2009-12-19 14:59:29 +00:00
|
|
|
/* No target */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("%s: IRQ %d has no target\n", __func__, n_IRQ);
|
2009-12-19 14:59:29 +00:00
|
|
|
return;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2004-06-21 16:50:43 +00:00
|
|
|
|
2007-04-09 22:45:36 +00:00
|
|
|
if (src->ide == (1 << src->last_cpu)) {
|
|
|
|
/* Only one CPU is allowed to receive this IRQ */
|
|
|
|
IRQ_local_pipe(opp, src->last_cpu, n_IRQ);
|
2012-12-08 00:49:52 +00:00
|
|
|
} else if (!(src->ipvp & IPVP_MODE_MASK)) {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* Directed delivery mode */
|
|
|
|
for (i = 0; i < opp->nb_cpus; i++) {
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ide & (1 << i)) {
|
2004-06-21 16:50:43 +00:00
|
|
|
IRQ_local_pipe(opp, i, n_IRQ);
|
2012-12-08 00:49:52 +00:00
|
|
|
}
|
2004-06-21 16:50:43 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
} else {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* Distributed delivery mode */
|
2007-04-09 22:45:36 +00:00
|
|
|
for (i = src->last_cpu + 1; i != src->last_cpu; i++) {
|
2012-12-20 16:30:58 +00:00
|
|
|
if (i == opp->nb_cpus) {
|
2004-06-21 16:50:43 +00:00
|
|
|
i = 0;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ide & (1 << i)) {
|
2004-06-21 16:50:43 +00:00
|
|
|
IRQ_local_pipe(opp, i, n_IRQ);
|
|
|
|
src->last_cpu = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-07 18:14:41 +00:00
|
|
|
static void openpic_set_irq(void *opaque, int n_IRQ, int level)
|
2004-06-21 16:50:43 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQSource *src;
|
2004-06-21 16:50:43 +00:00
|
|
|
|
|
|
|
src = &opp->src[n_IRQ];
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("openpic: set irq %d = %d ipvp=0x%08x\n",
|
2004-06-21 16:50:43 +00:00
|
|
|
n_IRQ, level, src->ipvp);
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ipvp & IPVP_SENSE_MASK) {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* level-sensitive irq */
|
|
|
|
src->pending = level;
|
2012-12-08 00:49:52 +00:00
|
|
|
if (!level) {
|
|
|
|
src->ipvp &= ~IPVP_ACTIVITY_MASK;
|
|
|
|
}
|
2004-06-21 16:50:43 +00:00
|
|
|
} else {
|
|
|
|
/* edge-sensitive irq */
|
2012-12-20 16:30:58 +00:00
|
|
|
if (level) {
|
2004-06-21 16:50:43 +00:00
|
|
|
src->pending = 1;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2004-06-21 16:50:43 +00:00
|
|
|
openpic_update_irq(opp, n_IRQ);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
static void openpic_reset(DeviceState *d)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 04:17:14 +00:00
|
|
|
OpenPICState *opp = FROM_SYSBUS(typeof (*opp), sysbus_from_qdev(d));
|
2004-06-15 21:38:40 +00:00
|
|
|
int i;
|
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->glbc = GLBC_RESET;
|
2005-02-09 00:01:34 +00:00
|
|
|
/* Initialise controller registers */
|
2012-12-13 16:12:04 +00:00
|
|
|
opp->frep = ((opp->nb_irqs - 1) << FREP_NIRQ_SHIFT) |
|
|
|
|
((opp->nb_cpus - 1) << FREP_NCPU_SHIFT) |
|
2012-12-07 23:58:54 +00:00
|
|
|
(opp->vid << FREP_VID_SHIFT);
|
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->pint = 0;
|
2012-12-13 16:12:01 +00:00
|
|
|
opp->spve = -1 & opp->vector_mask;
|
2012-12-07 23:58:54 +00:00
|
|
|
opp->tifr = opp->tifr_reset;
|
2004-06-15 21:38:40 +00:00
|
|
|
/* Initialise IRQ sources */
|
2009-03-02 16:42:04 +00:00
|
|
|
for (i = 0; i < opp->max_irq; i++) {
|
2012-12-07 23:58:54 +00:00
|
|
|
opp->src[i].ipvp = opp->ipvp_reset;
|
|
|
|
opp->src[i].ide = opp->ide_reset;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
/* Initialise IRQ destinations */
|
2007-04-09 22:45:36 +00:00
|
|
|
for (i = 0; i < MAX_CPU; i++) {
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->dst[i].pctp = 15;
|
2012-12-20 16:30:58 +00:00
|
|
|
memset(&opp->dst[i].raised, 0, sizeof(IRQQueue));
|
2009-12-18 22:37:26 +00:00
|
|
|
opp->dst[i].raised.next = -1;
|
2012-12-20 16:30:58 +00:00
|
|
|
memset(&opp->dst[i].servicing, 0, sizeof(IRQQueue));
|
2009-12-18 22:37:26 +00:00
|
|
|
opp->dst[i].servicing.next = -1;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
/* Initialise timers */
|
|
|
|
for (i = 0; i < MAX_TMR; i++) {
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->timers[i].ticc = 0;
|
|
|
|
opp->timers[i].tibc = TIBC_CI;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
/* Go out of RESET state */
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->glbc = 0;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static inline uint32_t read_IRQreg_ide(OpenPICState *opp, int n_IRQ)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2011-09-07 11:41:54 +00:00
|
|
|
return opp->src[n_IRQ].ide;
|
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static inline uint32_t read_IRQreg_ipvp(OpenPICState *opp, int n_IRQ)
|
2011-09-07 11:41:54 +00:00
|
|
|
{
|
|
|
|
return opp->src[n_IRQ].ipvp;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static inline void write_IRQreg_ide(OpenPICState *opp, int n_IRQ, uint32_t val)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
uint32_t tmp;
|
|
|
|
|
2012-12-13 16:11:59 +00:00
|
|
|
tmp = val & (IDE_EP | IDE_CI);
|
2011-09-07 11:47:22 +00:00
|
|
|
tmp |= val & ((1ULL << MAX_CPU) - 1);
|
|
|
|
opp->src[n_IRQ].ide = tmp;
|
|
|
|
DPRINTF("Set IDE %d to 0x%08x\n", n_IRQ, opp->src[n_IRQ].ide);
|
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static inline void write_IRQreg_ipvp(OpenPICState *opp, int n_IRQ, uint32_t val)
|
2011-09-07 11:47:22 +00:00
|
|
|
{
|
|
|
|
/* NOTE: not fully accurate for special IRQs, but simple and sufficient */
|
|
|
|
/* ACTIVITY bit is read-only */
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->src[n_IRQ].ipvp = (opp->src[n_IRQ].ipvp & IPVP_ACTIVITY_MASK) |
|
2012-12-13 16:12:01 +00:00
|
|
|
(val & (IPVP_MASK_MASK | IPVP_PRIORITY_MASK | opp->vector_mask));
|
2011-09-07 11:47:22 +00:00
|
|
|
openpic_update_irq(opp, n_IRQ);
|
|
|
|
DPRINTF("Set IPVP %d to 0x%08x -> 0x%08x\n", n_IRQ, val,
|
|
|
|
opp->src[n_IRQ].ipvp);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static void openpic_gbl_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQDest *dst;
|
2007-04-09 22:45:36 +00:00
|
|
|
int idx;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx " <= %08" PRIx64 "\n",
|
|
|
|
__func__, addr, val);
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
switch (addr) {
|
2012-08-14 04:30:55 +00:00
|
|
|
case 0x00: /* Block Revision Register1 (BRR1) is Readonly */
|
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x40:
|
|
|
|
case 0x50:
|
|
|
|
case 0x60:
|
|
|
|
case 0x70:
|
|
|
|
case 0x80:
|
|
|
|
case 0x90:
|
|
|
|
case 0xA0:
|
|
|
|
case 0xB0:
|
|
|
|
openpic_cpu_write_internal(opp, addr, val, get_current_cpu());
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1000: /* FREP */
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1020: /* GLBC */
|
2012-12-13 16:11:59 +00:00
|
|
|
if (val & GLBC_RESET) {
|
2012-12-08 04:17:14 +00:00
|
|
|
openpic_reset(&opp->busdev.qdev);
|
2012-12-07 23:58:54 +00:00
|
|
|
}
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1080: /* VENI */
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1090: /* PINT */
|
2007-04-09 22:45:36 +00:00
|
|
|
for (idx = 0; idx < opp->nb_cpus; idx++) {
|
|
|
|
if ((val & (1 << idx)) && !(opp->pint & (1 << idx))) {
|
|
|
|
DPRINTF("Raise OpenPIC RESET output for CPU %d\n", idx);
|
|
|
|
dst = &opp->dst[idx];
|
|
|
|
qemu_irq_raise(dst->irqs[OPENPIC_OUTPUT_RESET]);
|
|
|
|
} else if (!(val & (1 << idx)) && (opp->pint & (1 << idx))) {
|
|
|
|
DPRINTF("Lower OpenPIC RESET output for CPU %d\n", idx);
|
|
|
|
dst = &opp->dst[idx];
|
|
|
|
qemu_irq_lower(dst->irqs[OPENPIC_OUTPUT_RESET]);
|
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2007-04-09 22:45:36 +00:00
|
|
|
opp->pint = val;
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x10A0: /* IPI_IPVP */
|
|
|
|
case 0x10B0:
|
|
|
|
case 0x10C0:
|
|
|
|
case 0x10D0:
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
int idx;
|
2011-07-20 23:33:29 +00:00
|
|
|
idx = (addr - 0x10A0) >> 4;
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ipvp(opp, opp->irq_ipi0 + idx, val);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x10E0: /* SPVE */
|
2012-12-13 16:12:01 +00:00
|
|
|
opp->spve = val & opp->vector_mask;
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static uint64_t openpic_gbl_read(void *opaque, hwaddr addr, unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t retval;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx "\n", __func__, addr);
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = 0xFFFFFFFF;
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return retval;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
switch (addr) {
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1000: /* FREP */
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = opp->frep;
|
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1020: /* GLBC */
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = opp->glbc;
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1080: /* VENI */
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = opp->veni;
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x1090: /* PINT */
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = 0x00000000;
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2012-08-14 04:30:55 +00:00
|
|
|
case 0x00: /* Block Revision Register1 (BRR1) */
|
2012-12-13 16:12:03 +00:00
|
|
|
retval = opp->brr1;
|
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x40:
|
|
|
|
case 0x50:
|
|
|
|
case 0x60:
|
|
|
|
case 0x70:
|
|
|
|
case 0x80:
|
|
|
|
case 0x90:
|
|
|
|
case 0xA0:
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0xB0:
|
2011-07-20 23:33:29 +00:00
|
|
|
retval = openpic_cpu_read_internal(opp, addr, get_current_cpu());
|
|
|
|
break;
|
|
|
|
case 0x10A0: /* IPI_IPVP */
|
|
|
|
case 0x10B0:
|
|
|
|
case 0x10C0:
|
|
|
|
case 0x10D0:
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
|
|
|
int idx;
|
2011-07-20 23:33:29 +00:00
|
|
|
idx = (addr - 0x10A0) >> 4;
|
2011-09-07 11:41:54 +00:00
|
|
|
retval = read_IRQreg_ipvp(opp, opp->irq_ipi0 + idx);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x10E0: /* SPVE */
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = opp->spve;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: => 0x%08x\n", __func__, retval);
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static void openpic_tmr_write(void *opaque, hwaddr addr, uint64_t val,
|
2012-12-07 15:31:55 +00:00
|
|
|
unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2004-06-15 21:38:40 +00:00
|
|
|
int idx;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx " <= %08" PRIx64 "\n",
|
|
|
|
__func__, addr, val);
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2012-12-07 23:43:42 +00:00
|
|
|
idx = (addr >> 6) & 0x3;
|
2004-06-15 21:38:40 +00:00
|
|
|
addr = addr & 0x30;
|
2012-12-07 23:43:42 +00:00
|
|
|
|
|
|
|
if (addr == 0x0) {
|
|
|
|
/* TIFR (TFRR) */
|
|
|
|
opp->tifr = val;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (addr & 0x30) {
|
|
|
|
case 0x00: /* TICC (GTCCR) */
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x10: /* TIBC (GTBCR) */
|
2012-12-13 16:11:59 +00:00
|
|
|
if ((opp->timers[idx].ticc & TICC_TOG) != 0 &&
|
|
|
|
(val & TIBC_CI) == 0 &&
|
|
|
|
(opp->timers[idx].tibc & TIBC_CI) != 0) {
|
|
|
|
opp->timers[idx].ticc &= ~TICC_TOG;
|
|
|
|
}
|
2009-12-19 14:59:29 +00:00
|
|
|
opp->timers[idx].tibc = val;
|
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x20: /* TIVP (GTIVPR) */
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ipvp(opp, opp->irq_tim0 + idx, val);
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x30: /* TIDE (GTIDR) */
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ide(opp, opp->irq_tim0 + idx, val);
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-08 00:59:20 +00:00
|
|
|
static uint64_t openpic_tmr_read(void *opaque, hwaddr addr, unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2012-12-07 23:43:42 +00:00
|
|
|
uint32_t retval = -1;
|
2004-06-15 21:38:40 +00:00
|
|
|
int idx;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx "\n", __func__, addr);
|
2012-12-07 23:43:42 +00:00
|
|
|
if (addr & 0xF) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
idx = (addr >> 6) & 0x3;
|
|
|
|
if (addr == 0x0) {
|
|
|
|
/* TIFR (TFRR) */
|
|
|
|
retval = opp->tifr;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
switch (addr & 0x30) {
|
|
|
|
case 0x00: /* TICC (GTCCR) */
|
2009-12-19 14:59:29 +00:00
|
|
|
retval = opp->timers[idx].ticc;
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x10: /* TIBC (GTBCR) */
|
2009-12-19 14:59:29 +00:00
|
|
|
retval = opp->timers[idx].tibc;
|
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x20: /* TIPV (TIPV) */
|
2011-09-07 11:41:54 +00:00
|
|
|
retval = read_IRQreg_ipvp(opp, opp->irq_tim0 + idx);
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2012-12-07 23:43:42 +00:00
|
|
|
case 0x30: /* TIDE (TIDR) */
|
2011-09-07 11:41:54 +00:00
|
|
|
retval = read_IRQreg_ide(opp, opp->irq_tim0 + idx);
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-07 23:43:42 +00:00
|
|
|
|
|
|
|
out:
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: => 0x%08x\n", __func__, retval);
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static void openpic_src_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2004-06-15 21:38:40 +00:00
|
|
|
int idx;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx " <= %08" PRIx64 "\n",
|
|
|
|
__func__, addr, val);
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
addr = addr & 0xFFF0;
|
|
|
|
idx = addr >> 5;
|
|
|
|
if (addr & 0x10) {
|
|
|
|
/* EXDE / IFEDE / IEEDE */
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ide(opp, idx, val);
|
2004-06-15 21:38:40 +00:00
|
|
|
} else {
|
|
|
|
/* EXVP / IFEVP / IEEVP */
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ipvp(opp, idx, val);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static uint64_t openpic_src_read(void *opaque, uint64_t addr, unsigned len)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t retval;
|
|
|
|
int idx;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx "\n", __func__, addr);
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = 0xFFFFFFFF;
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return retval;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
addr = addr & 0xFFF0;
|
|
|
|
idx = addr >> 5;
|
|
|
|
if (addr & 0x10) {
|
|
|
|
/* EXDE / IFEDE / IEEDE */
|
2011-09-07 11:41:54 +00:00
|
|
|
retval = read_IRQreg_ide(opp, idx);
|
2004-06-15 21:38:40 +00:00
|
|
|
} else {
|
|
|
|
/* EXVP / IFEVP / IEEVP */
|
2011-09-07 11:41:54 +00:00
|
|
|
retval = read_IRQreg_ipvp(opp, idx);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: => 0x%08x\n", __func__, retval);
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-12-08 13:18:00 +00:00
|
|
|
static void openpic_msi_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
OpenPICState *opp = opaque;
|
|
|
|
int idx = opp->irq_msi;
|
|
|
|
int srs, ibs;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx " <= 0x%08" PRIx64 "\n",
|
|
|
|
__func__, addr, val);
|
2012-12-08 13:18:00 +00:00
|
|
|
if (addr & 0xF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (addr) {
|
|
|
|
case MSIIR_OFFSET:
|
|
|
|
srs = val >> MSIIR_SRS_SHIFT;
|
|
|
|
idx += srs;
|
|
|
|
ibs = (val & MSIIR_IBS_MASK) >> MSIIR_IBS_SHIFT;
|
|
|
|
opp->msi[srs].msir |= 1 << ibs;
|
|
|
|
openpic_set_irq(opp, idx, 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* most registers are read-only, thus ignored */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t openpic_msi_read(void *opaque, hwaddr addr, unsigned size)
|
|
|
|
{
|
|
|
|
OpenPICState *opp = opaque;
|
|
|
|
uint64_t r = 0;
|
|
|
|
int i, srs;
|
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: addr %#" HWADDR_PRIx "\n", __func__, addr);
|
2012-12-08 13:18:00 +00:00
|
|
|
if (addr & 0xF) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs = addr >> 4;
|
|
|
|
|
|
|
|
switch (addr) {
|
|
|
|
case 0x00:
|
|
|
|
case 0x10:
|
|
|
|
case 0x20:
|
|
|
|
case 0x30:
|
|
|
|
case 0x40:
|
|
|
|
case 0x50:
|
|
|
|
case 0x60:
|
|
|
|
case 0x70: /* MSIRs */
|
|
|
|
r = opp->msi[srs].msir;
|
|
|
|
/* Clear on read */
|
|
|
|
opp->msi[srs].msir = 0;
|
2012-12-21 16:15:39 +00:00
|
|
|
openpic_set_irq(opp, opp->irq_msi + srs, 0);
|
2012-12-08 13:18:00 +00:00
|
|
|
break;
|
|
|
|
case 0x120: /* MSISR */
|
|
|
|
for (i = 0; i < MAX_MSI; i++) {
|
|
|
|
r |= (opp->msi[i].msir ? 1 : 0) << i;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
static void openpic_cpu_write_internal(void *opaque, hwaddr addr,
|
2011-07-20 23:33:29 +00:00
|
|
|
uint32_t val, int idx)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQSource *src;
|
|
|
|
IRQDest *dst;
|
2011-07-20 23:33:29 +00:00
|
|
|
int s_IRQ, n_IRQ;
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: cpu %d addr %#" HWADDR_PRIx " <= 0x%08x\n", __func__, idx,
|
2011-07-20 23:33:29 +00:00
|
|
|
addr, val);
|
2012-12-13 16:12:02 +00:00
|
|
|
|
|
|
|
if (idx < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
dst = &opp->dst[idx];
|
|
|
|
addr &= 0xFF0;
|
|
|
|
switch (addr) {
|
2011-07-20 23:33:29 +00:00
|
|
|
case 0x40: /* IPIDR */
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0x50:
|
|
|
|
case 0x60:
|
|
|
|
case 0x70:
|
|
|
|
idx = (addr - 0x40) >> 4;
|
2011-07-20 23:36:44 +00:00
|
|
|
/* we use IDE as mask which CPUs to deliver the IPI to still. */
|
2011-09-07 11:47:22 +00:00
|
|
|
write_IRQreg_ide(opp, opp->irq_ipi0 + idx,
|
|
|
|
opp->src[opp->irq_ipi0 + idx].ide | val);
|
2009-03-02 16:42:04 +00:00
|
|
|
openpic_set_irq(opp, opp->irq_ipi0 + idx, 1);
|
|
|
|
openpic_set_irq(opp, opp->irq_ipi0 + idx, 0);
|
2004-06-15 21:38:40 +00:00
|
|
|
break;
|
|
|
|
case 0x80: /* PCTP */
|
2009-12-19 14:59:29 +00:00
|
|
|
dst->pctp = val & 0x0000000F;
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0x90: /* WHOAMI */
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Read-only register */
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0xA0: /* PIAC */
|
2009-12-19 14:59:29 +00:00
|
|
|
/* Read-only register */
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0xB0: /* PEOI */
|
|
|
|
DPRINTF("PEOI\n");
|
2009-12-19 14:59:29 +00:00
|
|
|
s_IRQ = IRQ_get_next(opp, &dst->servicing);
|
|
|
|
IRQ_resetbit(&dst->servicing, s_IRQ);
|
|
|
|
dst->servicing.next = -1;
|
|
|
|
/* Set up next servicing IRQ */
|
|
|
|
s_IRQ = IRQ_get_next(opp, &dst->servicing);
|
2007-04-09 22:45:36 +00:00
|
|
|
/* Check queued interrupts. */
|
|
|
|
n_IRQ = IRQ_get_next(opp, &dst->raised);
|
|
|
|
src = &opp->src[n_IRQ];
|
|
|
|
if (n_IRQ != -1 &&
|
|
|
|
(s_IRQ == -1 ||
|
|
|
|
IPVP_PRIORITY(src->ipvp) > dst->servicing.priority)) {
|
|
|
|
DPRINTF("Raise OpenPIC INT output cpu %d irq %d\n",
|
|
|
|
idx, n_IRQ);
|
2012-12-07 22:51:09 +00:00
|
|
|
openpic_irq_raise(opp, idx, src);
|
2007-04-09 22:45:36 +00:00
|
|
|
}
|
2009-12-19 14:59:29 +00:00
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static void openpic_cpu_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned len)
|
2011-07-20 23:33:29 +00:00
|
|
|
{
|
|
|
|
openpic_cpu_write_internal(opaque, addr, val, (addr & 0x1f000) >> 12);
|
|
|
|
}
|
|
|
|
|
2012-10-23 10:30:10 +00:00
|
|
|
static uint32_t openpic_cpu_read_internal(void *opaque, hwaddr addr,
|
2011-07-20 23:33:29 +00:00
|
|
|
int idx)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = opaque;
|
2012-12-20 16:30:58 +00:00
|
|
|
IRQSource *src;
|
|
|
|
IRQDest *dst;
|
2004-06-15 21:38:40 +00:00
|
|
|
uint32_t retval;
|
2011-07-20 23:33:29 +00:00
|
|
|
int n_IRQ;
|
2007-09-17 08:09:54 +00:00
|
|
|
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: cpu %d addr %#" HWADDR_PRIx "\n", __func__, idx, addr);
|
2004-06-15 21:38:40 +00:00
|
|
|
retval = 0xFFFFFFFF;
|
2012-12-13 16:12:02 +00:00
|
|
|
|
|
|
|
if (idx < 0) {
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
if (addr & 0xF) {
|
2004-06-15 21:38:40 +00:00
|
|
|
return retval;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2004-06-15 21:38:40 +00:00
|
|
|
dst = &opp->dst[idx];
|
|
|
|
addr &= 0xFF0;
|
|
|
|
switch (addr) {
|
|
|
|
case 0x80: /* PCTP */
|
2009-12-19 14:59:29 +00:00
|
|
|
retval = dst->pctp;
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0x90: /* WHOAMI */
|
2009-12-19 14:59:29 +00:00
|
|
|
retval = idx;
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0xA0: /* PIAC */
|
2007-04-09 22:45:36 +00:00
|
|
|
DPRINTF("Lower OpenPIC INT output\n");
|
|
|
|
qemu_irq_lower(dst->irqs[OPENPIC_OUTPUT_INT]);
|
2009-12-19 14:59:29 +00:00
|
|
|
n_IRQ = IRQ_get_next(opp, &dst->raised);
|
2004-06-15 21:38:40 +00:00
|
|
|
DPRINTF("PIAC: irq=%d\n", n_IRQ);
|
2009-12-19 14:59:29 +00:00
|
|
|
if (n_IRQ == -1) {
|
|
|
|
/* No more interrupt pending */
|
2012-12-13 16:12:01 +00:00
|
|
|
retval = opp->spve;
|
2009-12-19 14:59:29 +00:00
|
|
|
} else {
|
|
|
|
src = &opp->src[n_IRQ];
|
2012-12-08 00:49:52 +00:00
|
|
|
if (!(src->ipvp & IPVP_ACTIVITY_MASK) ||
|
2009-12-19 14:59:29 +00:00
|
|
|
!(IPVP_PRIORITY(src->ipvp) > dst->pctp)) {
|
|
|
|
/* - Spurious level-sensitive IRQ
|
|
|
|
* - Priorities has been changed
|
|
|
|
* and the pending IRQ isn't allowed anymore
|
|
|
|
*/
|
2012-12-08 00:49:52 +00:00
|
|
|
src->ipvp &= ~IPVP_ACTIVITY_MASK;
|
2012-12-13 16:12:01 +00:00
|
|
|
retval = opp->spve;
|
2009-12-19 14:59:29 +00:00
|
|
|
} else {
|
|
|
|
/* IRQ enter servicing state */
|
|
|
|
IRQ_setbit(&dst->servicing, n_IRQ);
|
2012-12-13 16:12:01 +00:00
|
|
|
retval = IPVP_VECTOR(opp, src->ipvp);
|
2009-12-19 14:59:29 +00:00
|
|
|
}
|
|
|
|
IRQ_resetbit(&dst->raised, n_IRQ);
|
|
|
|
dst->raised.next = -1;
|
2012-12-08 00:49:52 +00:00
|
|
|
if (!(src->ipvp & IPVP_SENSE_MASK)) {
|
2004-06-21 16:50:43 +00:00
|
|
|
/* edge-sensitive IRQ */
|
2012-12-08 00:49:52 +00:00
|
|
|
src->ipvp &= ~IPVP_ACTIVITY_MASK;
|
2004-06-21 16:50:43 +00:00
|
|
|
src->pending = 0;
|
|
|
|
}
|
2011-07-20 23:36:44 +00:00
|
|
|
|
|
|
|
if ((n_IRQ >= opp->irq_ipi0) && (n_IRQ < (opp->irq_ipi0 + MAX_IPI))) {
|
|
|
|
src->ide &= ~(1 << idx);
|
2012-12-08 00:49:52 +00:00
|
|
|
if (src->ide && !(src->ipvp & IPVP_SENSE_MASK)) {
|
2011-07-20 23:36:44 +00:00
|
|
|
/* trigger on CPUs that didn't know about it yet */
|
|
|
|
openpic_set_irq(opp, n_IRQ, 1);
|
|
|
|
openpic_set_irq(opp, n_IRQ, 0);
|
|
|
|
/* if all CPUs knew about it, set active bit again */
|
2012-12-08 00:49:52 +00:00
|
|
|
src->ipvp |= IPVP_ACTIVITY_MASK;
|
2011-07-20 23:36:44 +00:00
|
|
|
}
|
|
|
|
}
|
2009-12-19 14:59:29 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
case 0xB0: /* PEOI */
|
2009-12-19 14:59:29 +00:00
|
|
|
retval = 0;
|
|
|
|
break;
|
2004-06-15 21:38:40 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-12-21 16:15:38 +00:00
|
|
|
DPRINTF("%s: => 0x%08x\n", __func__, retval);
|
2004-06-15 21:38:40 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-12-07 15:31:55 +00:00
|
|
|
static uint64_t openpic_cpu_read(void *opaque, hwaddr addr, unsigned len)
|
2011-07-20 23:33:29 +00:00
|
|
|
{
|
|
|
|
return openpic_cpu_read_internal(opaque, addr, (addr & 0x1f000) >> 12);
|
|
|
|
}
|
|
|
|
|
2012-12-08 00:04:48 +00:00
|
|
|
static const MemoryRegionOps openpic_glb_ops_le = {
|
2012-12-07 16:15:15 +00:00
|
|
|
.write = openpic_gbl_write,
|
|
|
|
.read = openpic_gbl_read,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:04:48 +00:00
|
|
|
static const MemoryRegionOps openpic_glb_ops_be = {
|
|
|
|
.write = openpic_gbl_write,
|
|
|
|
.read = openpic_gbl_read,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionOps openpic_tmr_ops_le = {
|
2012-12-08 00:59:20 +00:00
|
|
|
.write = openpic_tmr_write,
|
|
|
|
.read = openpic_tmr_read,
|
2012-12-07 16:15:15 +00:00
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:04:48 +00:00
|
|
|
static const MemoryRegionOps openpic_tmr_ops_be = {
|
2012-12-08 00:59:20 +00:00
|
|
|
.write = openpic_tmr_write,
|
|
|
|
.read = openpic_tmr_read,
|
2012-12-08 00:04:48 +00:00
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionOps openpic_cpu_ops_le = {
|
2012-12-07 16:15:15 +00:00
|
|
|
.write = openpic_cpu_write,
|
|
|
|
.read = openpic_cpu_read,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
2004-06-15 21:38:40 +00:00
|
|
|
|
2012-12-08 00:04:48 +00:00
|
|
|
static const MemoryRegionOps openpic_cpu_ops_be = {
|
|
|
|
.write = openpic_cpu_write,
|
|
|
|
.read = openpic_cpu_read,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionOps openpic_src_ops_le = {
|
2012-12-07 16:15:15 +00:00
|
|
|
.write = openpic_src_write,
|
|
|
|
.read = openpic_src_read,
|
2011-08-08 13:09:17 +00:00
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
2012-12-07 15:31:55 +00:00
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
2011-08-08 13:09:17 +00:00
|
|
|
};
|
|
|
|
|
2012-12-08 00:04:48 +00:00
|
|
|
static const MemoryRegionOps openpic_src_ops_be = {
|
|
|
|
.write = openpic_src_write,
|
|
|
|
.read = openpic_src_read,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-12-08 13:18:00 +00:00
|
|
|
static const MemoryRegionOps openpic_msi_ops_le = {
|
|
|
|
.read = openpic_msi_read,
|
|
|
|
.write = openpic_msi_write,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionOps openpic_msi_ops_be = {
|
|
|
|
.read = openpic_msi_read,
|
|
|
|
.write = openpic_msi_write,
|
|
|
|
.endianness = DEVICE_BIG_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static void openpic_save_IRQ_queue(QEMUFile* f, IRQQueue *q)
|
2009-02-06 21:30:02 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < BF_WIDTH(MAX_IRQ); i++)
|
|
|
|
qemu_put_be32s(f, &q->queue[i]);
|
|
|
|
|
|
|
|
qemu_put_sbe32s(f, &q->next);
|
|
|
|
qemu_put_sbe32s(f, &q->priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void openpic_save(QEMUFile* f, void *opaque)
|
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = (OpenPICState *)opaque;
|
2009-02-06 21:30:02 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
qemu_put_be32s(f, &opp->glbc);
|
|
|
|
qemu_put_be32s(f, &opp->veni);
|
|
|
|
qemu_put_be32s(f, &opp->pint);
|
|
|
|
qemu_put_be32s(f, &opp->spve);
|
|
|
|
qemu_put_be32s(f, &opp->tifr);
|
|
|
|
|
2009-03-02 16:42:04 +00:00
|
|
|
for (i = 0; i < opp->max_irq; i++) {
|
2009-02-06 21:30:02 +00:00
|
|
|
qemu_put_be32s(f, &opp->src[i].ipvp);
|
|
|
|
qemu_put_be32s(f, &opp->src[i].ide);
|
|
|
|
qemu_put_sbe32s(f, &opp->src[i].last_cpu);
|
|
|
|
qemu_put_sbe32s(f, &opp->src[i].pending);
|
|
|
|
}
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
qemu_put_be32s(f, &opp->nb_cpus);
|
2009-03-02 16:42:04 +00:00
|
|
|
|
|
|
|
for (i = 0; i < opp->nb_cpus; i++) {
|
2009-02-06 21:30:02 +00:00
|
|
|
qemu_put_be32s(f, &opp->dst[i].pctp);
|
|
|
|
openpic_save_IRQ_queue(f, &opp->dst[i].raised);
|
|
|
|
openpic_save_IRQ_queue(f, &opp->dst[i].servicing);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_TMR; i++) {
|
|
|
|
qemu_put_be32s(f, &opp->timers[i].ticc);
|
|
|
|
qemu_put_be32s(f, &opp->timers[i].tibc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static void openpic_load_IRQ_queue(QEMUFile* f, IRQQueue *q)
|
2009-02-06 21:30:02 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < BF_WIDTH(MAX_IRQ); i++)
|
|
|
|
qemu_get_be32s(f, &q->queue[i]);
|
|
|
|
|
|
|
|
qemu_get_sbe32s(f, &q->next);
|
|
|
|
qemu_get_sbe32s(f, &q->priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int openpic_load(QEMUFile* f, void *opaque, int version_id)
|
|
|
|
{
|
2012-12-08 00:59:20 +00:00
|
|
|
OpenPICState *opp = (OpenPICState *)opaque;
|
2009-02-06 21:30:02 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
if (version_id != 1) {
|
2009-02-06 21:30:02 +00:00
|
|
|
return -EINVAL;
|
2012-12-20 16:30:58 +00:00
|
|
|
}
|
2009-02-06 21:30:02 +00:00
|
|
|
|
|
|
|
qemu_get_be32s(f, &opp->glbc);
|
|
|
|
qemu_get_be32s(f, &opp->veni);
|
|
|
|
qemu_get_be32s(f, &opp->pint);
|
|
|
|
qemu_get_be32s(f, &opp->spve);
|
|
|
|
qemu_get_be32s(f, &opp->tifr);
|
|
|
|
|
2009-03-02 16:42:04 +00:00
|
|
|
for (i = 0; i < opp->max_irq; i++) {
|
2009-02-06 21:30:02 +00:00
|
|
|
qemu_get_be32s(f, &opp->src[i].ipvp);
|
|
|
|
qemu_get_be32s(f, &opp->src[i].ide);
|
|
|
|
qemu_get_sbe32s(f, &opp->src[i].last_cpu);
|
|
|
|
qemu_get_sbe32s(f, &opp->src[i].pending);
|
|
|
|
}
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
qemu_get_be32s(f, &opp->nb_cpus);
|
2009-03-02 16:42:04 +00:00
|
|
|
|
|
|
|
for (i = 0; i < opp->nb_cpus; i++) {
|
2009-02-06 21:30:02 +00:00
|
|
|
qemu_get_be32s(f, &opp->dst[i].pctp);
|
|
|
|
openpic_load_IRQ_queue(f, &opp->dst[i].raised);
|
|
|
|
openpic_load_IRQ_queue(f, &opp->dst[i].servicing);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_TMR; i++) {
|
|
|
|
qemu_get_be32s(f, &opp->timers[i].ticc);
|
|
|
|
qemu_get_be32s(f, &opp->timers[i].tibc);
|
|
|
|
}
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
return 0;
|
2009-02-06 21:30:02 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
static void openpic_irq_raise(OpenPICState *opp, int n_CPU, IRQSource *src)
|
2009-03-02 16:42:04 +00:00
|
|
|
{
|
2012-12-08 00:49:52 +00:00
|
|
|
int n_ci = IDR_CI0_SHIFT - n_CPU;
|
2012-12-07 22:51:09 +00:00
|
|
|
|
2012-12-08 00:49:52 +00:00
|
|
|
if ((opp->flags & OPENPIC_FLAG_IDE_CRIT) && (src->ide & (1 << n_ci))) {
|
2012-12-07 22:51:09 +00:00
|
|
|
qemu_irq_raise(opp->dst[n_CPU].irqs[OPENPIC_OUTPUT_CINT]);
|
|
|
|
} else {
|
|
|
|
qemu_irq_raise(opp->dst[n_CPU].irqs[OPENPIC_OUTPUT_INT]);
|
|
|
|
}
|
2009-03-02 16:42:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 16:30:58 +00:00
|
|
|
typedef struct MemReg {
|
2012-12-08 04:17:14 +00:00
|
|
|
const char *name;
|
|
|
|
MemoryRegionOps const *ops;
|
2012-12-08 13:18:00 +00:00
|
|
|
bool map;
|
2012-12-08 04:17:14 +00:00
|
|
|
hwaddr start_addr;
|
|
|
|
ram_addr_t size;
|
2012-12-20 16:30:58 +00:00
|
|
|
} MemReg;
|
2012-12-08 04:17:14 +00:00
|
|
|
|
|
|
|
static int openpic_init(SysBusDevice *dev)
|
2004-06-15 21:38:40 +00:00
|
|
|
{
|
2012-12-08 04:17:14 +00:00
|
|
|
OpenPICState *opp = FROM_SYSBUS(typeof (*opp), dev);
|
|
|
|
int i, j;
|
2012-12-20 16:30:58 +00:00
|
|
|
MemReg list_le[] = {
|
2012-12-08 13:18:00 +00:00
|
|
|
{"glb", &openpic_glb_ops_le, true,
|
|
|
|
OPENPIC_GLB_REG_START, OPENPIC_GLB_REG_SIZE},
|
|
|
|
{"tmr", &openpic_tmr_ops_le, true,
|
|
|
|
OPENPIC_TMR_REG_START, OPENPIC_TMR_REG_SIZE},
|
|
|
|
{"msi", &openpic_msi_ops_le, true,
|
|
|
|
OPENPIC_MSI_REG_START, OPENPIC_MSI_REG_SIZE},
|
|
|
|
{"src", &openpic_src_ops_le, true,
|
|
|
|
OPENPIC_SRC_REG_START, OPENPIC_SRC_REG_SIZE},
|
|
|
|
{"cpu", &openpic_cpu_ops_le, true,
|
|
|
|
OPENPIC_CPU_REG_START, OPENPIC_CPU_REG_SIZE},
|
2012-12-07 16:15:15 +00:00
|
|
|
};
|
2012-12-20 16:30:58 +00:00
|
|
|
MemReg list_be[] = {
|
2012-12-08 13:18:00 +00:00
|
|
|
{"glb", &openpic_glb_ops_be, true,
|
|
|
|
OPENPIC_GLB_REG_START, OPENPIC_GLB_REG_SIZE},
|
|
|
|
{"tmr", &openpic_tmr_ops_be, true,
|
|
|
|
OPENPIC_TMR_REG_START, OPENPIC_TMR_REG_SIZE},
|
|
|
|
{"msi", &openpic_msi_ops_be, true,
|
|
|
|
OPENPIC_MSI_REG_START, OPENPIC_MSI_REG_SIZE},
|
|
|
|
{"src", &openpic_src_ops_be, true,
|
|
|
|
OPENPIC_SRC_REG_START, OPENPIC_SRC_REG_SIZE},
|
|
|
|
{"cpu", &openpic_cpu_ops_be, true,
|
|
|
|
OPENPIC_CPU_REG_START, OPENPIC_CPU_REG_SIZE},
|
2012-12-08 04:17:14 +00:00
|
|
|
};
|
2012-12-20 16:30:58 +00:00
|
|
|
MemReg *list;
|
2007-09-17 08:09:54 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
switch (opp->model) {
|
|
|
|
case OPENPIC_MODEL_FSL_MPIC_20:
|
|
|
|
default:
|
|
|
|
opp->flags |= OPENPIC_FLAG_IDE_CRIT;
|
|
|
|
opp->nb_irqs = 80;
|
|
|
|
opp->vid = VID_REVISION_1_2;
|
|
|
|
opp->veni = VENI_GENERIC;
|
2012-12-13 16:12:01 +00:00
|
|
|
opp->vector_mask = 0xFFFF;
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->tifr_reset = 0;
|
|
|
|
opp->ipvp_reset = IPVP_MASK_MASK;
|
|
|
|
opp->ide_reset = 1 << 0;
|
2012-12-08 04:17:14 +00:00
|
|
|
opp->max_irq = FSL_MPIC_20_MAX_IRQ;
|
|
|
|
opp->irq_ipi0 = FSL_MPIC_20_IPI_IRQ;
|
|
|
|
opp->irq_tim0 = FSL_MPIC_20_TMR_IRQ;
|
2012-12-08 13:18:00 +00:00
|
|
|
opp->irq_msi = FSL_MPIC_20_MSI_IRQ;
|
2012-12-08 12:51:50 +00:00
|
|
|
opp->brr1 = FSL_BRR1_IPID | FSL_BRR1_IPMJ | FSL_BRR1_IPMN;
|
2012-12-08 13:18:00 +00:00
|
|
|
msi_supported = true;
|
2012-12-08 04:17:14 +00:00
|
|
|
list = list_be;
|
|
|
|
break;
|
|
|
|
case OPENPIC_MODEL_RAVEN:
|
|
|
|
opp->nb_irqs = RAVEN_MAX_EXT;
|
|
|
|
opp->vid = VID_REVISION_1_3;
|
|
|
|
opp->veni = VENI_GENERIC;
|
2012-12-13 16:12:01 +00:00
|
|
|
opp->vector_mask = 0xFF;
|
2012-12-13 16:11:59 +00:00
|
|
|
opp->tifr_reset = 4160000;
|
|
|
|
opp->ipvp_reset = IPVP_MASK_MASK | IPVP_MODE_MASK;
|
|
|
|
opp->ide_reset = 0;
|
2012-12-08 04:17:14 +00:00
|
|
|
opp->max_irq = RAVEN_MAX_IRQ;
|
|
|
|
opp->irq_ipi0 = RAVEN_IPI_IRQ;
|
|
|
|
opp->irq_tim0 = RAVEN_TMR_IRQ;
|
2012-12-08 12:51:50 +00:00
|
|
|
opp->brr1 = -1;
|
2012-12-08 04:17:14 +00:00
|
|
|
list = list_le;
|
2012-12-08 13:18:00 +00:00
|
|
|
/* Don't map MSI region */
|
|
|
|
list[2].map = false;
|
2012-12-08 04:17:14 +00:00
|
|
|
|
|
|
|
/* Only UP supported today */
|
|
|
|
if (opp->nb_cpus != 1) {
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-12-07 16:15:15 +00:00
|
|
|
|
|
|
|
memory_region_init(&opp->mem, "openpic", 0x40000);
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(list_le); i++) {
|
2012-12-08 13:18:00 +00:00
|
|
|
if (!list[i].map) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-12-07 16:15:15 +00:00
|
|
|
memory_region_init_io(&opp->sub_io_mem[i], list[i].ops, opp,
|
|
|
|
list[i].name, list[i].size);
|
|
|
|
|
|
|
|
memory_region_add_subregion(&opp->mem, list[i].start_addr,
|
|
|
|
&opp->sub_io_mem[i]);
|
|
|
|
}
|
2007-09-17 08:09:54 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
for (i = 0; i < opp->nb_cpus; i++) {
|
|
|
|
opp->dst[i].irqs = g_new(qemu_irq, OPENPIC_OUTPUT_NB);
|
|
|
|
for (j = 0; j < OPENPIC_OUTPUT_NB; j++) {
|
|
|
|
sysbus_init_irq(dev, &opp->dst[i].irqs[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
register_savevm(&opp->busdev.qdev, "openpic", 0, 2,
|
2010-06-25 17:09:07 +00:00
|
|
|
openpic_save, openpic_load, opp);
|
2009-03-02 16:42:04 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
sysbus_init_mmio(dev, &opp->mem);
|
|
|
|
qdev_init_gpio_in(&dev->qdev, openpic_set_irq, opp->max_irq);
|
2007-04-09 22:45:36 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
return 0;
|
2009-03-02 16:42:04 +00:00
|
|
|
}
|
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
static Property openpic_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("model", OpenPICState, model, OPENPIC_MODEL_FSL_MPIC_20),
|
|
|
|
DEFINE_PROP_UINT32("nb_cpus", OpenPICState, nb_cpus, 1),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
2011-08-30 15:46:26 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
static void openpic_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
2009-03-02 16:42:04 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
k->init = openpic_init;
|
|
|
|
dc->props = openpic_properties;
|
|
|
|
dc->reset = openpic_reset;
|
|
|
|
}
|
2011-08-30 15:46:26 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
static TypeInfo openpic_info = {
|
|
|
|
.name = "openpic",
|
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(OpenPICState),
|
|
|
|
.class_init = openpic_class_init,
|
|
|
|
};
|
2009-03-02 16:42:04 +00:00
|
|
|
|
2012-12-08 04:17:14 +00:00
|
|
|
static void openpic_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&openpic_info);
|
2004-06-15 21:38:40 +00:00
|
|
|
}
|
2012-12-08 04:17:14 +00:00
|
|
|
|
|
|
|
type_init(openpic_register_types)
|