aboutsummaryrefslogtreecommitdiff
path: root/hw/ppc/e500-ccsr.h
blob: 12a2ba4b97826b67408fffaf72ce3788cd4796d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef E500_CCSR_H
#define E500_CCSR_H

#include "hw/sysbus.h"

typedef struct PPCE500CCSRState {
    /*< private >*/
    SysBusDevice parent;
    /*< public >*/

    MemoryRegion ccsr_space;
} PPCE500CCSRState;

#define TYPE_CCSR "e500-ccsr"
#define CCSR(obj) OBJECT_CHECK(PPCE500CCSRState, (obj), TYPE_CCSR)

#endif /* E500_CCSR_H */