4 * Copyright (c) 2014 Alistair Francis <alistair@alistair23.me>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "hw/misc/stm32f2xx_syscfg.h"
28 #include "qemu/module.h"
30 #ifndef STM_SYSCFG_ERR_DEBUG
31 #define STM_SYSCFG_ERR_DEBUG 0
34 #define DB_PRINT_L(lvl, fmt, args...) do { \
35 if (STM_SYSCFG_ERR_DEBUG >= lvl) { \
36 qemu_log("%s: " fmt, __func__, ## args); \
40 #define DB_PRINT(fmt, args...) DB_PRINT_L(1, fmt, ## args)
42 static void stm32f2xx_syscfg_reset(DeviceState
*dev
)
44 STM32F2XXSyscfgState
*s
= STM32F2XX_SYSCFG(dev
);
46 s
->syscfg_memrmp
= 0x00000000;
47 s
->syscfg_pmc
= 0x00000000;
48 s
->syscfg_exticr1
= 0x00000000;
49 s
->syscfg_exticr2
= 0x00000000;
50 s
->syscfg_exticr3
= 0x00000000;
51 s
->syscfg_exticr4
= 0x00000000;
52 s
->syscfg_cmpcr
= 0x00000000;
55 static uint64_t stm32f2xx_syscfg_read(void *opaque
, hwaddr addr
,
58 STM32F2XXSyscfgState
*s
= opaque
;
60 DB_PRINT("0x%"HWADDR_PRIx
"\n", addr
);
64 return s
->syscfg_memrmp
;
68 return s
->syscfg_exticr1
;
70 return s
->syscfg_exticr2
;
72 return s
->syscfg_exticr3
;
74 return s
->syscfg_exticr4
;
76 return s
->syscfg_cmpcr
;
78 qemu_log_mask(LOG_GUEST_ERROR
,
79 "%s: Bad offset 0x%"HWADDR_PRIx
"\n", __func__
, addr
);
86 static void stm32f2xx_syscfg_write(void *opaque
, hwaddr addr
,
87 uint64_t val64
, unsigned int size
)
89 STM32F2XXSyscfgState
*s
= opaque
;
90 uint32_t value
= val64
;
92 DB_PRINT("0x%x, 0x%"HWADDR_PRIx
"\n", value
, addr
);
96 qemu_log_mask(LOG_UNIMP
,
97 "%s: Changeing the memory mapping isn't supported " \
98 "in QEMU\n", __func__
);
101 qemu_log_mask(LOG_UNIMP
,
102 "%s: Changeing the memory mapping isn't supported " \
103 "in QEMU\n", __func__
);
106 s
->syscfg_exticr1
= (value
& 0xFFFF);
109 s
->syscfg_exticr2
= (value
& 0xFFFF);
112 s
->syscfg_exticr3
= (value
& 0xFFFF);
115 s
->syscfg_exticr4
= (value
& 0xFFFF);
118 s
->syscfg_cmpcr
= value
;
121 qemu_log_mask(LOG_GUEST_ERROR
,
122 "%s: Bad offset 0x%"HWADDR_PRIx
"\n", __func__
, addr
);
126 static const MemoryRegionOps stm32f2xx_syscfg_ops
= {
127 .read
= stm32f2xx_syscfg_read
,
128 .write
= stm32f2xx_syscfg_write
,
129 .endianness
= DEVICE_NATIVE_ENDIAN
,
132 static void stm32f2xx_syscfg_init(Object
*obj
)
134 STM32F2XXSyscfgState
*s
= STM32F2XX_SYSCFG(obj
);
136 sysbus_init_irq(SYS_BUS_DEVICE(obj
), &s
->irq
);
138 memory_region_init_io(&s
->mmio
, obj
, &stm32f2xx_syscfg_ops
, s
,
139 TYPE_STM32F2XX_SYSCFG
, 0x400);
140 sysbus_init_mmio(SYS_BUS_DEVICE(obj
), &s
->mmio
);
143 static void stm32f2xx_syscfg_class_init(ObjectClass
*klass
, void *data
)
145 DeviceClass
*dc
= DEVICE_CLASS(klass
);
147 dc
->reset
= stm32f2xx_syscfg_reset
;
150 static const TypeInfo stm32f2xx_syscfg_info
= {
151 .name
= TYPE_STM32F2XX_SYSCFG
,
152 .parent
= TYPE_SYS_BUS_DEVICE
,
153 .instance_size
= sizeof(STM32F2XXSyscfgState
),
154 .instance_init
= stm32f2xx_syscfg_init
,
155 .class_init
= stm32f2xx_syscfg_class_init
,
158 static void stm32f2xx_syscfg_register_types(void)
160 type_register_static(&stm32f2xx_syscfg_info
);
163 type_init(stm32f2xx_syscfg_register_types
)