1#ifndef E500_CCSR_H
2#define E500_CCSR_H
3
4#include "hw/sysbus.h"
5
6typedef struct PPCE500CCSRState {
7 /*< private >*/
8 SysBusDevice parent;
9 /*< public >*/
10
11 MemoryRegion ccsr_space;
12} PPCE500CCSRState;
13
14#define TYPE_CCSR "e500-ccsr"
15#define CCSR(obj) OBJECT_CHECK(PPCE500CCSRState, (obj), TYPE_CCSR)
16
17#endif /* E500_CCSR_H */
18