2 * Power Management device simulation in PKUnity SoC
4 * Copyright (C) 2010-2012 Guan Xuetao
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or any later version.
9 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include "hw/sysbus.h"
14 #include "qom/object.h"
17 #include "hw/unicore32/puv3.h"
18 #include "qemu/module.h"
21 #define TYPE_PUV3_PM "puv3_pm"
22 typedef struct PUV3PMState PUV3PMState
;
23 DECLARE_INSTANCE_CHECKER(PUV3PMState
, PUV3_PM
,
27 SysBusDevice parent_obj
;
33 uint32_t reg_PLL_SYS_CFG
;
34 uint32_t reg_PLL_DDR_CFG
;
35 uint32_t reg_PLL_VGA_CFG
;
39 static uint64_t puv3_pm_read(void *opaque
, hwaddr offset
,
42 PUV3PMState
*s
= opaque
;
50 ret
= s
->reg_PLL_SYS_CFG
;
53 ret
= s
->reg_PLL_DDR_CFG
;
56 ret
= s
->reg_PLL_VGA_CFG
;
61 case 0x28: /* PLL SYS STATUS */
64 case 0x2c: /* PLL DDR STATUS */
67 case 0x30: /* PLL VGA STATUS */
70 case 0x34: /* DIV STATUS */
73 case 0x38: /* SW RESET */
76 case 0x44: /* PLL DFC DONE */
80 qemu_log_mask(LOG_GUEST_ERROR
,
81 "%s: Bad read offset 0x%"HWADDR_PRIx
"\n",
84 DPRINTF("offset 0x%x, value 0x%x\n", offset
, ret
);
89 static void puv3_pm_write(void *opaque
, hwaddr offset
,
90 uint64_t value
, unsigned size
)
92 PUV3PMState
*s
= opaque
;
102 s
->reg_PLL_SYS_CFG
= value
;
105 s
->reg_PLL_DDR_CFG
= value
;
108 s
->reg_PLL_VGA_CFG
= value
;
114 qemu_log_mask(LOG_GUEST_ERROR
,
115 "%s: Bad write offset 0x%"HWADDR_PRIx
"\n",
118 DPRINTF("offset 0x%x, value 0x%x\n", offset
, value
);
121 static const MemoryRegionOps puv3_pm_ops
= {
122 .read
= puv3_pm_read
,
123 .write
= puv3_pm_write
,
125 .min_access_size
= 4,
126 .max_access_size
= 4,
128 .endianness
= DEVICE_NATIVE_ENDIAN
,
131 static void puv3_pm_realize(DeviceState
*dev
, Error
**errp
)
133 PUV3PMState
*s
= PUV3_PM(dev
);
137 memory_region_init_io(&s
->iomem
, OBJECT(s
), &puv3_pm_ops
, s
, "puv3_pm",
139 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &s
->iomem
);
142 static void puv3_pm_class_init(ObjectClass
*klass
, void *data
)
144 DeviceClass
*dc
= DEVICE_CLASS(klass
);
146 dc
->realize
= puv3_pm_realize
;
149 static const TypeInfo puv3_pm_info
= {
150 .name
= TYPE_PUV3_PM
,
151 .parent
= TYPE_SYS_BUS_DEVICE
,
152 .instance_size
= sizeof(PUV3PMState
),
153 .class_init
= puv3_pm_class_init
,
156 static void puv3_pm_register_type(void)
158 type_register_static(&puv3_pm_info
);
161 type_init(puv3_pm_register_type
)