All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fabien Chouteau <chouteau@adacore.com>
To: Blue Swirl <blauwirbel@gmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/6] [RFC] Emulation of GRLIB APB UART as defined in GRLIB IP Core User's Manual.
Date: Tue, 07 Dec 2010 11:55:20 +0100	[thread overview]
Message-ID: <4CFE1298.1070800@adacore.com> (raw)
In-Reply-To: <AANLkTiknkWZMaVV1Eraa0usgPApEsYsY2vWtstOFo5=S@mail.gmail.com>

On 12/06/2010 06:29 PM, Blue Swirl wrote:
> On Mon, Dec 6, 2010 at 9:26 AM, Fabien Chouteau<chouteau@adacore.com>  wrote:
>>
>> Signed-off-by: Fabien Chouteau<chouteau@adacore.com>
>> ---
>>   hw/grlib_apbuart.c |  231 ++++++++++++++++++++++++++++++++++++++++++++++++++++
>>   1 files changed, 231 insertions(+), 0 deletions(-)
>>
>> diff --git a/hw/grlib_apbuart.c b/hw/grlib_apbuart.c
>> new file mode 100644
>> index 0000000..32a5362
>> --- /dev/null
>> +++ b/hw/grlib_apbuart.c
>> @@ -0,0 +1,231 @@
>> +/*
>> + * QEMU GRLIB APB UART Emulator
>> + *
>> + * Copyright (c) 2010 AdaCore
>> + *
>> + * 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"
>> +#include "qemu-char.h"
>> +
>> +#include "grlib.h"
>> +
>> +/* #define DEBUG_UART */
>> +
>> +#ifdef DEBUG_UART
>> +#define DPRINTF(fmt, ...)                                       \
>> +    do { printf("APBUART: " fmt , ## __VA_ARGS__); } while (0)
>> +#else
>> +#define DPRINTF(fmt, ...)
>> +#endif
>> +
>> +#define UART_REG_SIZE 20     /* Size of memory mapped registers */
>> +
>> +/* UART status register fields */
>> +#define UART_DATA_READY           (1<<    0)
>> +#define UART_TRANSMIT_SHIFT_EMPTY (1<<    1)
>> +#define UART_TRANSMIT_FIFO_EMPTY  (1<<    2)
>> +#define UART_BREAK_RECEIVED       (1<<    3)
>> +#define UART_OVERRUN              (1<<    4)
>> +#define UART_PARITY_ERROR         (1<<    5)
>> +#define UART_FRAMING_ERROR        (1<<    6)
>> +#define UART_TRANSMIT_FIFO_HALF   (1<<    7)
>> +#define UART_RECEIV_FIFO_HALF     (1<<    8)
>
> RECEIVE

Fixed.

>
>> +#define UART_TRANSMIT_FIFO_FULL   (1<<    9)
>> +#define UART_RECEIV_FIFO_FULL     (1<<  10)
>> +
>> +/* UART control register fields */
>> +#define UART_RECEIV_ENABLE           (1<<    0)
>> +#define UART_TRANSMIT_ENABLE         (1<<    1)
>> +#define UART_RECEIV_INTERRUPT        (1<<    2)
>> +#define UART_TRANSMIT_INTERRUPT      (1<<    3)
>> +#define UART_PARITY_SELECT           (1<<    4)
>> +#define UART_PARITY_ENABLE           (1<<    5)
>> +#define UART_FLOW_CONTROL            (1<<    6)
>> +#define UART_LOOPBACK                (1<<    7)
>> +#define UART_EXTERNAL_CLOCK          (1<<    8)
>> +#define UART_RECEIV_FIFO_INTERRUPT   (1<<    9)
>> +#define UART_TRANSMIT_FIFO_INTERRUPT (1<<  10)
>> +#define UART_FIFO_DEBUG_MODE         (1<<  11)
>> +#define UART_OUTPUT_ENABLE           (1<<  12)
>> +#define UART_FIFO_AVAILABLE          (1<<  31)
>> +
>> +/* Memory mapped register offsets */
>> +#define DATA_OFFSET       0x00
>> +#define STATUS_OFFSET     0x04
>> +#define CONTROL_OFFSET    0x08
>> +#define SCALER_OFFSET     0x0C  /* not supported */
>> +#define FIFO_DEBUG_OFFSET 0x10  /* not supported */
>> +
>> +typedef struct UART
>> +{
>> +    SysBusDevice busdev;
>> +
>> +    qemu_irq irq;
>> +
>> +    CharDriverState *chr;
>> +
>> +    /* registers */
>> +    uint32_t receive;
>> +    uint32_t status;
>> +    uint32_t control;
>> +} UART;
>> +
>> +
>> +DeviceState *grlib_apbuart_create(target_phys_addr_t  base,
>> +                                  CharDriverState    *serial,
>> +                                  qemu_irq            irq)
>> +{
>> +    DeviceState *dev;
>> +
>> +    dev = qdev_create(NULL, "grlib,apbuart");
>> +    qdev_prop_set_ptr(dev, "chrdev", serial);
>> +
>> +    if (qdev_init(dev)) {
>> +        return NULL;
>> +    }
>> +
>> +    sysbus_mmio_map(sysbus_from_qdev(dev), 0, base);
>> +
>> +    sysbus_connect_irq(sysbus_from_qdev(dev), 0, irq);
>> +
>> +    return dev;
>> +}
>> +
>> +static int grlib_apbuart_can_receive(void *opaque)
>> +{
>> +    UART *uart = opaque;
>> +    assert(uart != NULL);
>> +
>> +    return !!(uart->status&  UART_DATA_READY);
>> +}
>> +
>> +static void grlib_apbuart_receive(void *opaque, const uint8_t *buf, int size)
>> +{
>> +    UART *uart = opaque;
>> +    assert(uart != NULL);
>> +
>> +    uart->receive  = *buf;
>> +    uart->status  |= UART_DATA_READY;
>> +
>> +    if (uart->control&  UART_RECEIV_INTERRUPT)
>> +        qemu_set_irq(uart->irq, 1);
>> +}
>> +
>> +static void grlib_apbuart_event(void *opaque, int event)
>> +{
>> +#ifdef DEBUG_UART
>> +    printf("uart: event %x\n", event);
>> +#endif
>
> DPRINTF or tracepoint.

Fixed.

>
>> +}
>> +
>> +static void
>> +grlib_apbuart_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
>> +{
>> +    UART          *uart = opaque;
>> +    unsigned char  c    = 0;
>> +
>> +    addr&= 0xff;
>> +
>> +    assert(uart != NULL);
>> +
>> +    /* Unit registers */
>> +    switch (addr)
>> +    {
>> +        case DATA_OFFSET:
>> +            c = value&  0xFF;
>> +            qemu_chr_write(uart->chr,&c, 1);
>> +            return;
>> +
>> +        case STATUS_OFFSET:
>> +            /* Read Only (disable timer freeze not supported) */
>> +            return;
>> +
>> +        case CONTROL_OFFSET:
>> +            return;
>> +
>> +        case SCALER_OFFSET:
>> +            /* Not supported */
>> +            return;
>> +
>> +        default:
>> +            break;
>> +    }
>> +
>> +    DPRINTF("write unknown register 0x%04x\n", (int)addr);
>> +}
>> +
>> +static CPUReadMemoryFunc *grlib_apbuart_read[] = {
>> +    NULL, NULL, NULL,
>> +};
>> +
>> +static CPUWriteMemoryFunc *grlib_apbuart_write[] = {
>> +    NULL, NULL, grlib_apbuart_writel,
>> +};
>> +
>> +static int grlib_gptimer_init(SysBusDevice *dev)
>> +{
>> +    UART *uart      = FROM_SYSBUS(typeof (*uart), dev);
>> +    int   uart_regs = 0;
>
> Useless initialization.
>
> Please consider also adding reset and savevm/loadvm support.

There's nothing to reset or to save/load.

-- 
Fabien Chouteau

  reply	other threads:[~2010-12-07 10:59 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-06  9:26 [Qemu-devel] [PATCH 0/6] [RFC] New SPARC machine: Leon3 Fabien Chouteau
2010-12-06  9:26 ` [Qemu-devel] [PATCH 1/6] [RFC] Emulation of GRLIB GPTimer as defined in GRLIB IP Core User's Manual Fabien Chouteau
2010-12-06 17:12   ` Blue Swirl
2010-12-07  9:55     ` Fabien Chouteau
2010-12-08  8:30       ` Edgar E. Iglesias
2010-12-08  9:39         ` Fabien Chouteau
2010-12-08 21:02           ` Edgar E. Iglesias
2010-12-08 22:51   ` Edgar E. Iglesias
2010-12-09 10:04     ` Fabien Chouteau
2010-12-09 10:22       ` Edgar E. Iglesias
2010-12-06  9:26 ` [Qemu-devel] [PATCH 2/6] [RFC] Emulation of GRLIB IRQMP " Fabien Chouteau
2010-12-06 17:25   ` Blue Swirl
2010-12-07 10:43     ` Fabien Chouteau
2010-12-11 10:31       ` Blue Swirl
2010-12-13 16:23         ` Fabien Chouteau
2010-12-13 18:13           ` Blue Swirl
2010-12-09 10:32   ` Edgar E. Iglesias
2010-12-09 11:03     ` Fabien Chouteau
2010-12-09 11:06       ` Edgar E. Iglesias
2010-12-09 11:32         ` Fabien Chouteau
2010-12-06  9:26 ` [Qemu-devel] [PATCH 3/6] [RFC] Emulation of GRLIB APB UART " Fabien Chouteau
2010-12-06 17:29   ` Blue Swirl
2010-12-07 10:55     ` Fabien Chouteau [this message]
2010-12-06  9:26 ` [Qemu-devel] [PATCH 4/6] [RFC] Header file for the GRLIB components Fabien Chouteau
2010-12-06 17:31   ` Blue Swirl
2010-12-07 11:04     ` Fabien Chouteau
2010-12-06  9:26 ` [Qemu-devel] [PATCH 5/6] [RFC] Emulation of Leon3 Fabien Chouteau
2010-12-06 17:53   ` Blue Swirl
2010-12-07 11:40     ` Fabien Chouteau
2010-12-11  9:56       ` Blue Swirl
2010-12-13 15:51         ` Fabien Chouteau
2010-12-13 18:18           ` Blue Swirl
2010-12-15 17:47             ` Fabien Chouteau
2010-12-17 19:14               ` Blue Swirl
2010-12-20  6:46                 ` Edgar E. Iglesias
2010-12-20  9:40                   ` Fabien Chouteau
2010-12-20 20:09                     ` Blue Swirl
2010-12-20  9:25                 ` Fabien Chouteau
2010-12-20 19:27                   ` Blue Swirl
2010-12-12 14:41   ` Andreas Färber
2010-12-13 17:00     ` Fabien Chouteau
2010-12-06  9:26 ` [Qemu-devel] [PATCH 6/6] [RFC] SPARCV8 asr17 register support Fabien Chouteau
2010-12-06 18:01   ` Blue Swirl
2010-12-07 11:51     ` Fabien Chouteau
2010-12-11  9:59       ` Blue Swirl
2010-12-13 17:01         ` Fabien Chouteau
2010-12-06 10:44 ` [Qemu-devel] [PATCH 0/6] [RFC] New SPARC machine: Leon3 Artyom Tarasenko
2010-12-06 15:07   ` Fabien Chouteau
2010-12-06 18:12     ` Blue Swirl
2010-12-07 17:43       ` Fabien Chouteau
2010-12-06 18:05 ` Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CFE1298.1070800@adacore.com \
    --to=chouteau@adacore.com \
    --cc=blauwirbel@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.