From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MR5qU-0006lm-CE for qemu-devel@nongnu.org; Wed, 15 Jul 2009 10:52:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MR5qP-0006aO-9L for qemu-devel@nongnu.org; Wed, 15 Jul 2009 10:52:33 -0400 Received: from [199.232.76.173] (port=53478 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MR5qP-0006a0-2Q for qemu-devel@nongnu.org; Wed, 15 Jul 2009 10:52:29 -0400 Received: from [82.113.48.144] (port=4819 helo=FilipNavara-PC) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MR5qO-0000bw-BZ for qemu-devel@nongnu.org; Wed, 15 Jul 2009 10:52:28 -0400 Date: Wed, 15 Jul 09 16:52:26 Central Europe Standard Time From: Filip Navara Sender: Filip Navara MIME-Version: 1.0 Content-Type: text/plain; Message-Id: Subject: [Qemu-devel] [PATCH 09/14] AT91 Reset Controller List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch introduces emulation of the AT91 reset controller. The behavior and external interface to the reset controller is not emulated though and only the features necessary to start the system are implemented. Internal registers are maintained and partially emulated. The NRST status bit is always asserted, even if a command to de-assert it is written to the control register. This emulation is sufficient to support running FreeRTOS and a sample code from Atmel. Signed-off-by: Filip Navara --- Makefile.target | 1 + hw/at91_rstc.c | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 156 insertions(+), 0 deletions(-) create mode 100644 hw/at91_rstc.c diff --git a/Makefile.target b/Makefile.target index 8d7c7d1..40a4adb 100644 --- a/Makefile.target +++ b/Makefile.target @@ -667,6 +667,7 @@ obj-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o obj-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o obj-y += syborg_virtio.o obj-y += at91_aic.o at91_dbgu.o at91_pio.o at91_pit.o at91_pmc.o at91_rtt.o +obj-y += at91_rstc.o obj-y += gpio_rotary.o gpio_keypad.o CPPFLAGS += -DHAS_AUDIO endif diff --git a/hw/at91_rstc.c b/hw/at91_rstc.c new file mode 100644 index 0000000..d1524f4 --- /dev/null +++ b/hw/at91_rstc.c @@ -0,0 +1,155 @@ +/* + * AT91 Reset Controller + * + * Copyright (c) 2009 Filip Navara + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +#include "sysbus.h" + +/* #define DEBUG_RSTC */ + +#define RSTC_SIZE 0x10 + +#define RSTC_CR 0x00 /* Control Register */ +#define RSTC_SR 0x04 /* Status Register */ +#define RSTC_MR 0x08 /* Mode Register */ + +#define WRITE_KEY 0xa5 + +#define CR_PROCRST 0x01 /* Processor Reset */ +#define CR_PERRST 0x04 /* Peripheral Reset */ +#define CR_EXTRST 0x08 /* External Reset */ + +#define SR_URSTS 0x01 /* User Reset Status */ +#define SR_BODSTS 0x02 /* Brownout Detection Status */ +#define SR_NRSTL 0x10000 /* NRST Level */ + +typedef struct RSTCState { + SysBusDevice busdev; + uint32_t sr; + uint32_t mr; +} RSTCState; + +static uint32_t at91_rstc_mem_read(void *opaque, target_phys_addr_t offset) +{ + RSTCState *s = opaque; + + offset &= RSTC_SIZE - 1; + switch (offset) { + case RSTC_SR: + return s->sr; + case RSTC_MR: + return s->mr; + default: + return 0; + } +} + +static void at91_rstc_mem_write(void *opaque, target_phys_addr_t offset, + uint32_t value) +{ + RSTCState *s = opaque; + + if ((value >> 24) != WRITE_KEY) + return; + + offset &= RSTC_SIZE - 1; + switch (offset) { + case RSTC_CR: + /* TODO */ + break; + case RSTC_MR: + s->mr = value; + break; + } +} + +#ifdef DEBUG_RSTC +static uint32_t at91_rstc_mem_read_dbg(void *opaque, target_phys_addr_t offset) +{ + uint32_t value = at91_rstc_mem_read(opaque, offset); + printf("%s offset=%x val=%x\n", __func__, offset, value); + return value; +} + +static void at91_rstc_mem_write_dbg(void *opaque, target_phys_addr_t offset, + uint32_t value) +{ + printf("%s offset=%x val=%x\n", __func__, offset, value); + at91_rstc_mem_write(opaque, offset, value); +} + +#define at91_rstc_mem_read at91_rstc_mem_read_dbg +#define at91_rstc_mem_write at91_rstc_mem_write_dbg +#endif + +static CPUReadMemoryFunc *at91_rstc_readfn[] = { + at91_rstc_mem_read, + at91_rstc_mem_read, + at91_rstc_mem_read, +}; + +static CPUWriteMemoryFunc *at91_rstc_writefn[] = { + at91_rstc_mem_write, + at91_rstc_mem_write, + at91_rstc_mem_write, +}; + +static void at91_rstc_save(QEMUFile *f, void *opaque) +{ + RSTCState *s = opaque; + + qemu_put_be32(f, s->sr); + qemu_put_be32(f, s->mr); +} + +static int at91_rstc_load(QEMUFile *f, void *opaque, int version_id) +{ + RSTCState *s = opaque; + + if (version_id != 1) + return -EINVAL; + + s->sr = qemu_get_be32(f); + s->mr = qemu_get_be32(f); + + return 0; +} + +static void at91_rstc_init(SysBusDevice *dev) +{ + RSTCState *s = FROM_SYSBUS(typeof (*s), dev); + int rstc_regs; + + s->sr = SR_NRSTL; + + rstc_regs = cpu_register_io_memory(at91_rstc_readfn, at91_rstc_writefn, s); + sysbus_init_mmio(dev, RSTC_SIZE, rstc_regs); + + register_savevm("at91_rstc", -1, 1, at91_rstc_save, at91_rstc_load, s); +} + +static void at91_rstc_register(void) +{ + sysbus_register_dev("at91,rstc", sizeof(RSTCState), at91_rstc_init); +} + +device_init(at91_rstc_register) -- 1.6.3.msysgit.0