Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
hw: arm: allwinner-sramc: Add SRAM Controller support for R40
Only a few important registers are added, especially the SRAM_VER register. Signed-off-by: qianfan Zhao <qianfanguijin@163.com> Reviewed-by: Niek Linnenbank <nieklinnenbank@gmail.com> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
- Loading branch information
1 parent
0de1b69
commit 05def91
Showing
8 changed files
with
271 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -170,6 +170,9 @@ config VIRT_CTRL | |
| config LASI | ||
| bool | ||
|
|
||
| config ALLWINNER_SRAMC | ||
| bool | ||
|
|
||
| config ALLWINNER_A10_CCM | ||
| bool | ||
|
|
||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,184 @@ | ||
| /* | ||
| * Allwinner R40 SRAM controller emulation | ||
| * | ||
| * Copyright (C) 2023 qianfan Zhao <qianfanguijin@163.com> | ||
| * | ||
| * This program is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU General Public License as published by | ||
| * the Free Software Foundation, either version 2 of the License, or | ||
| * (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #include "qemu/osdep.h" | ||
| #include "qemu/units.h" | ||
| #include "hw/sysbus.h" | ||
| #include "migration/vmstate.h" | ||
| #include "qemu/log.h" | ||
| #include "qemu/module.h" | ||
| #include "qapi/error.h" | ||
| #include "hw/qdev-properties.h" | ||
| #include "hw/qdev-properties-system.h" | ||
| #include "hw/misc/allwinner-sramc.h" | ||
| #include "trace.h" | ||
|
|
||
| /* | ||
| * register offsets | ||
| * https://linux-sunxi.org/SRAM_Controller_Register_Guide | ||
| */ | ||
| enum { | ||
| REG_SRAM_CTL1_CFG = 0x04, /* SRAM Control register 1 */ | ||
| REG_SRAM_VER = 0x24, /* SRAM Version register */ | ||
| REG_SRAM_R40_SOFT_ENTRY_REG0 = 0xbc, | ||
| }; | ||
|
|
||
| /* REG_SRAMC_VERSION bit defines */ | ||
| #define SRAM_VER_READ_ENABLE (1 << 15) | ||
| #define SRAM_VER_VERSION_SHIFT 16 | ||
| #define SRAM_VERSION_SUN8I_R40 0x1701 | ||
|
|
||
| static uint64_t allwinner_sramc_read(void *opaque, hwaddr offset, | ||
| unsigned size) | ||
| { | ||
| AwSRAMCState *s = AW_SRAMC(opaque); | ||
| AwSRAMCClass *sc = AW_SRAMC_GET_CLASS(s); | ||
| uint64_t val = 0; | ||
|
|
||
| switch (offset) { | ||
| case REG_SRAM_CTL1_CFG: | ||
| val = s->sram_ctl1; | ||
| break; | ||
| case REG_SRAM_VER: | ||
| /* bit15: lock bit, set this bit before reading this register */ | ||
| if (s->sram_ver & SRAM_VER_READ_ENABLE) { | ||
| val = SRAM_VER_READ_ENABLE | | ||
| (sc->sram_version_code << SRAM_VER_VERSION_SHIFT); | ||
| } | ||
| break; | ||
| case REG_SRAM_R40_SOFT_ENTRY_REG0: | ||
| val = s->sram_soft_entry_reg0; | ||
| break; | ||
| default: | ||
| qemu_log_mask(LOG_GUEST_ERROR, "%s: out-of-bounds offset 0x%04x\n", | ||
| __func__, (uint32_t)offset); | ||
| return 0; | ||
| } | ||
|
|
||
| trace_allwinner_sramc_read(offset, val); | ||
|
|
||
| return val; | ||
| } | ||
|
|
||
| static void allwinner_sramc_write(void *opaque, hwaddr offset, | ||
| uint64_t val, unsigned size) | ||
| { | ||
| AwSRAMCState *s = AW_SRAMC(opaque); | ||
|
|
||
| trace_allwinner_sramc_write(offset, val); | ||
|
|
||
| switch (offset) { | ||
| case REG_SRAM_CTL1_CFG: | ||
| s->sram_ctl1 = val; | ||
| break; | ||
| case REG_SRAM_VER: | ||
| /* Only the READ_ENABLE bit is writeable */ | ||
| s->sram_ver = val & SRAM_VER_READ_ENABLE; | ||
| break; | ||
| case REG_SRAM_R40_SOFT_ENTRY_REG0: | ||
| s->sram_soft_entry_reg0 = val; | ||
| break; | ||
| default: | ||
| qemu_log_mask(LOG_GUEST_ERROR, "%s: out-of-bounds offset 0x%04x\n", | ||
| __func__, (uint32_t)offset); | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| static const MemoryRegionOps allwinner_sramc_ops = { | ||
| .read = allwinner_sramc_read, | ||
| .write = allwinner_sramc_write, | ||
| .endianness = DEVICE_NATIVE_ENDIAN, | ||
| .valid = { | ||
| .min_access_size = 4, | ||
| .max_access_size = 4, | ||
| }, | ||
| .impl.min_access_size = 4, | ||
| }; | ||
|
|
||
| static const VMStateDescription allwinner_sramc_vmstate = { | ||
| .name = "allwinner-sramc", | ||
| .version_id = 1, | ||
| .minimum_version_id = 1, | ||
| .fields = (VMStateField[]) { | ||
| VMSTATE_UINT32(sram_ver, AwSRAMCState), | ||
| VMSTATE_UINT32(sram_soft_entry_reg0, AwSRAMCState), | ||
| VMSTATE_END_OF_LIST() | ||
| } | ||
| }; | ||
|
|
||
| static void allwinner_sramc_reset(DeviceState *dev) | ||
| { | ||
| AwSRAMCState *s = AW_SRAMC(dev); | ||
| AwSRAMCClass *sc = AW_SRAMC_GET_CLASS(s); | ||
|
|
||
| switch (sc->sram_version_code) { | ||
| case SRAM_VERSION_SUN8I_R40: | ||
| s->sram_ctl1 = 0x1300; | ||
| break; | ||
| } | ||
| } | ||
|
|
||
| static void allwinner_sramc_class_init(ObjectClass *klass, void *data) | ||
| { | ||
| DeviceClass *dc = DEVICE_CLASS(klass); | ||
|
|
||
| dc->reset = allwinner_sramc_reset; | ||
| dc->vmsd = &allwinner_sramc_vmstate; | ||
| } | ||
|
|
||
| static void allwinner_sramc_init(Object *obj) | ||
| { | ||
| SysBusDevice *sbd = SYS_BUS_DEVICE(obj); | ||
| AwSRAMCState *s = AW_SRAMC(obj); | ||
|
|
||
| /* Memory mapping */ | ||
| memory_region_init_io(&s->iomem, OBJECT(s), &allwinner_sramc_ops, s, | ||
| TYPE_AW_SRAMC, 1 * KiB); | ||
| sysbus_init_mmio(sbd, &s->iomem); | ||
| } | ||
|
|
||
| static const TypeInfo allwinner_sramc_info = { | ||
| .name = TYPE_AW_SRAMC, | ||
| .parent = TYPE_SYS_BUS_DEVICE, | ||
| .instance_init = allwinner_sramc_init, | ||
| .instance_size = sizeof(AwSRAMCState), | ||
| .class_init = allwinner_sramc_class_init, | ||
| }; | ||
|
|
||
| static void allwinner_r40_sramc_class_init(ObjectClass *klass, void *data) | ||
| { | ||
| AwSRAMCClass *sc = AW_SRAMC_CLASS(klass); | ||
|
|
||
| sc->sram_version_code = SRAM_VERSION_SUN8I_R40; | ||
| } | ||
|
|
||
| static const TypeInfo allwinner_r40_sramc_info = { | ||
| .name = TYPE_AW_SRAMC_SUN8I_R40, | ||
| .parent = TYPE_AW_SRAMC, | ||
| .class_init = allwinner_r40_sramc_class_init, | ||
| }; | ||
|
|
||
| static void allwinner_sramc_register(void) | ||
| { | ||
| type_register_static(&allwinner_sramc_info); | ||
| type_register_static(&allwinner_r40_sramc_info); | ||
| } | ||
|
|
||
| type_init(allwinner_sramc_register) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| /* | ||
| * Allwinner SRAM controller emulation | ||
| * | ||
| * Copyright (C) 2023 qianfan Zhao <qianfanguijin@163.com> | ||
| * | ||
| * This program is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU General Public License as published by | ||
| * the Free Software Foundation, either version 2 of the License, or | ||
| * (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #ifndef HW_MISC_ALLWINNER_SRAMC_H | ||
| #define HW_MISC_ALLWINNER_SRAMC_H | ||
|
|
||
| #include "qom/object.h" | ||
| #include "hw/sysbus.h" | ||
| #include "qemu/uuid.h" | ||
|
|
||
| /** | ||
| * Object model | ||
| * @{ | ||
| */ | ||
| #define TYPE_AW_SRAMC "allwinner-sramc" | ||
| #define TYPE_AW_SRAMC_SUN8I_R40 TYPE_AW_SRAMC "-sun8i-r40" | ||
| OBJECT_DECLARE_TYPE(AwSRAMCState, AwSRAMCClass, AW_SRAMC) | ||
|
|
||
| /** @} */ | ||
|
|
||
| /** | ||
| * Allwinner SRAMC object instance state | ||
| */ | ||
| struct AwSRAMCState { | ||
| /*< private >*/ | ||
| SysBusDevice parent_obj; | ||
| /*< public >*/ | ||
|
|
||
| /** Maps I/O registers in physical memory */ | ||
| MemoryRegion iomem; | ||
|
|
||
| /* registers */ | ||
| uint32_t sram_ctl1; | ||
| uint32_t sram_ver; | ||
| uint32_t sram_soft_entry_reg0; | ||
| }; | ||
|
|
||
| /** | ||
| * Allwinner SRAM Controller class-level struct. | ||
| * | ||
| * This struct is filled by each sunxi device specific code | ||
| * such that the generic code can use this struct to support | ||
| * all devices. | ||
| */ | ||
| struct AwSRAMCClass { | ||
| /*< private >*/ | ||
| SysBusDeviceClass parent_class; | ||
| /*< public >*/ | ||
|
|
||
| uint32_t sram_version_code; | ||
| }; | ||
|
|
||
| #endif /* HW_MISC_ALLWINNER_SRAMC_H */ |