All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: "Hervé Poussineau" <hpoussin@reactos.org>, qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 09/17] i8257: implement the IsaDma interface
Date: Tue, 5 Jan 2016 16:59:36 -0500	[thread overview]
Message-ID: <568C3CC8.40903@redhat.com> (raw)
In-Reply-To: <1451376295-28834-10-git-send-email-hpoussin@reactos.org>

Accidental duplicate send of patch #09 with minor differences in the
commit message... Assuming this one is the "correct" one and just
discarding the other.

On 12/29/2015 03:04 AM, Hervé Poussineau wrote:
> Rewrite the global DMA_*() functions to use the IsaDma interface.
> Note that these functions will be deleted in a few commits.
> 
> Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
> ---
>  hw/dma/i8257.c | 148 +++++++++++++++++++++++++++++++++++++++++++++------------
>  1 file changed, 117 insertions(+), 31 deletions(-)
> 
> diff --git a/hw/dma/i8257.c b/hw/dma/i8257.c
> index 20231d6..cf4b0a7 100644
> --- a/hw/dma/i8257.c
> +++ b/hw/dma/i8257.c
> @@ -77,8 +77,6 @@ typedef struct I8257State {
>      int running;
>  } I8257State;
>  
> -static I8257State *dma_controllers[2];
> -
>  enum {
>      CMD_MEMORY_TO_MEMORY = 0x01,
>      CMD_FIXED_ADDRESS    = 0x02,
> @@ -321,31 +319,36 @@ static uint64_t i8257_read_cont(void *opaque, hwaddr nport, unsigned size)
>      return val;
>  }
>  
> -int DMA_get_channel_mode (int nchan)
> +static IsaDmaTransferMode i8257_dma_get_transfer_mode(IsaDma *obj, int nchan)
> +{
> +    I8257State *d = I8257(obj);
> +    return (d->regs[nchan & 3].mode >> 2) & 3;
> +}
> +
> +static bool i8257_dma_has_autoinitialization(IsaDma *obj, int nchan)
>  {
> -    return dma_controllers[nchan > 3]->regs[nchan & 3].mode;
> +    I8257State *d = I8257(obj);
> +    return (d->regs[nchan & 3].mode >> 4) & 1;
>  }
>  
> -void DMA_hold_DREQ (int nchan)
> +static void i8257_dma_hold_DREQ(IsaDma *obj, int nchan)
>  {
> -    int ncont, ichan;
> +    I8257State *d = I8257(obj);
> +    int ichan;
>  
> -    ncont = nchan > 3;
>      ichan = nchan & 3;
> -    linfo ("held cont=%d chan=%d\n", ncont, ichan);
> -    dma_controllers[ncont]->status |= 1 << (ichan + 4);
> -    i8257_dma_run(dma_controllers[ncont]);
> +    d->status |= 1 << (ichan + 4);
> +    i8257_dma_run(d);
>  }
>  
> -void DMA_release_DREQ (int nchan)
> +static void i8257_dma_release_DREQ(IsaDma *obj, int nchan)
>  {
> -    int ncont, ichan;
> +    I8257State *d = I8257(obj);
> +    int ichan;
>  
> -    ncont = nchan > 3;
>      ichan = nchan & 3;
> -    linfo ("released cont=%d chan=%d\n", ncont, ichan);
> -    dma_controllers[ncont]->status &= ~(1 << (ichan + 4));
> -    i8257_dma_run(dma_controllers[ncont]);
> +    d->status &= ~(1 << (ichan + 4));
> +    i8257_dma_run(d);
>  }
>  
>  static void i8257_channel_run(I8257State *d, int ichan)
> @@ -405,24 +408,26 @@ out:
>      }
>  }
>  
> -void DMA_register_channel (int nchan,
> -                           DMA_transfer_handler transfer_handler,
> -                           void *opaque)
> +static void i8257_dma_register_channel(IsaDma *obj, int nchan,
> +                                       DMA_transfer_handler transfer_handler,
> +                                       void *opaque)
>  {
> +    I8257State *d = I8257(obj);
>      struct dma_regs *r;
> -    int ichan, ncont;
> +    int ichan;
>  
> -    ncont = nchan > 3;
>      ichan = nchan & 3;
>  
> -    r = dma_controllers[ncont]->regs + ichan;
> +    r = d->regs + ichan;
>      r->transfer_handler = transfer_handler;
>      r->opaque = opaque;
>  }
>  
> -int DMA_read_memory (int nchan, void *buf, int pos, int len)
> +static int i8257_dma_read_memory(IsaDma *obj, int nchan, void *buf, int pos,
> +                                 int len)
>  {
> -    struct dma_regs *r = &dma_controllers[nchan > 3]->regs[nchan & 3];
> +    I8257State *d = I8257(obj);
> +    struct dma_regs *r = &d->regs[nchan & 3];
>      hwaddr addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
>  
>      if (r->mode & 0x20) {
> @@ -442,9 +447,11 @@ int DMA_read_memory (int nchan, void *buf, int pos, int len)
>      return len;
>  }
>  
> -int DMA_write_memory (int nchan, void *buf, int pos, int len)
> +static int i8257_dma_write_memory(IsaDma *obj, int nchan, void *buf, int pos,
> +                                 int len)
>  {
> -    struct dma_regs *r = &dma_controllers[nchan > 3]->regs[nchan & 3];
> +    I8257State *s = I8257(obj);
> +    struct dma_regs *r = &s->regs[nchan & 3];
>      hwaddr addr = ((r->pageh & 0x7f) << 24) | (r->page << 16) | r->now[ADDR];
>  
>      if (r->mode & 0x20) {
> @@ -467,10 +474,10 @@ int DMA_write_memory (int nchan, void *buf, int pos, int len)
>  /* request the emulator to transfer a new DMA memory block ASAP (even
>   * if the idle bottom half would not have exited the iothread yet).
>   */
> -void DMA_schedule(void)
> +static void i8257_dma_schedule(IsaDma *obj)
>  {
> -    if (dma_controllers[0]->dma_bh_scheduled ||
> -        dma_controllers[1]->dma_bh_scheduled) {
> +    I8257State *d = I8257(obj);
> +    if (d->dma_bh_scheduled) {
>          qemu_notify_event();
>      }
>  }
> @@ -604,11 +611,85 @@ static Property i8257_properties[] = {
>  static void i8257_class_init(ObjectClass *klass, void *data)
>  {
>      DeviceClass *dc = DEVICE_CLASS(klass);
> +    IsaDmaClass *idc = ISADMA_CLASS(klass);
>  
>      dc->realize = i8257_realize;
>      dc->reset = i8257_reset;
>      dc->vmsd = &vmstate_i8257;
>      dc->props = i8257_properties;
> +
> +    idc->get_transfer_mode = i8257_dma_get_transfer_mode;
> +    idc->has_autoinitialization = i8257_dma_has_autoinitialization;
> +    idc->read_memory = i8257_dma_read_memory;
> +    idc->write_memory = i8257_dma_write_memory;
> +    idc->hold_DREQ = i8257_dma_hold_DREQ;
> +    idc->release_DREQ = i8257_dma_release_DREQ;
> +    idc->schedule = i8257_dma_schedule;
> +    idc->register_channel = i8257_dma_register_channel;
> +}
> +
> +static ISABus *i8257_bus;
> +
> +int DMA_get_channel_mode(int nchan)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    uint8_t res = 0;
> +
> +    res |= k->has_autoinitialization(dma, nchan) ? 0 : 0x10;
> +    res |= k->get_transfer_mode(dma, nchan) << 2;
> +
> +    return res;
> +}
> +
> +int DMA_read_memory(int nchan, void *buf, int pos, int size)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    return k->read_memory(dma, nchan, buf, pos, size);
> +}
> +
> +int DMA_write_memory(int nchan, void *buf, int pos, int size)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    return k->write_memory(dma, nchan, buf, pos, size);
> +}
> +
> +void DMA_hold_DREQ(int nchan)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    k->hold_DREQ(dma, nchan);
> +}
> +
> +void DMA_release_DREQ(int nchan)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    k->release_DREQ(dma, nchan);
> +}
> +
> +void DMA_schedule(void)
> +{
> +    IsaDma *dma;
> +    IsaDmaClass *k;
> +    int i;
> +
> +    for (i = 0; i < 2; i++) {
> +        dma = isa_get_dma(i8257_bus, i << 2);
> +        k = ISADMA_GET_CLASS(dma);
> +        k->schedule(dma);
> +    }
> +}
> +
> +void DMA_register_channel(int nchan,
> +                          DMA_transfer_handler transfer_handler,
> +                          void *opaque)
> +{
> +    IsaDma *dma = isa_get_dma(i8257_bus, nchan);
> +    IsaDmaClass *k = ISADMA_GET_CLASS(dma);
> +    k->register_channel(dma, nchan, transfer_handler, opaque);
>  }
>  
>  static const TypeInfo i8257_info = {
> @@ -616,6 +697,10 @@ static const TypeInfo i8257_info = {
>      .parent = TYPE_ISA_DEVICE,
>      .instance_size = sizeof(I8257State),
>      .class_init = i8257_class_init,
> +    .interfaces = (InterfaceInfo[]) {
> +        { TYPE_ISADMA },
> +        { }
> +    }
>  };
>  
>  static void i8257_register_types(void)
> @@ -637,7 +722,6 @@ void DMA_init(ISABus *bus, int high_page_enable)
>      qdev_prop_set_int32(d, "pageh-base", high_page_enable ? 0x480 : -1);
>      qdev_prop_set_int32(d, "dshift", 0);
>      qdev_init_nofail(d);
> -    dma_controllers[0] = I8257(d);
>  
>      isa2 = isa_create(bus, TYPE_I8257);
>      d = DEVICE(isa2);
> @@ -646,5 +730,7 @@ void DMA_init(ISABus *bus, int high_page_enable)
>      qdev_prop_set_int32(d, "pageh-base", high_page_enable ? 0x488 : -1);
>      qdev_prop_set_int32(d, "dshift", 1);
>      qdev_init_nofail(d);
> -    dma_controllers[1] = I8257(d);
> +
> +    isa_bus_dma(bus, ISADMA(isa1), ISADMA(isa2));
> +    i8257_bus = bus;
>  }
> 

  reply	other threads:[~2016-01-05 21:59 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-29  8:04 [Qemu-devel] [PATCH 00/17] ISA DMA controllers cleanup (i8257, i82374) Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 01/17] i82374: device only existed as ISA device, so simplify device Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 02/17] i8257: pass ISA bus to DMA_init() function Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 03/17] i8257: rename struct dma_cont to I8257State Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 04/17] i8257: rename functions to start with i8257_ prefix Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 05/17] i8257: make the DMA running method per controller Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 06/17] i8257: add missing const Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 07/17] i8257: QOM'ify Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 08/17] isa: add an ISA DMA interface, and store it within the ISA bus Hervé Poussineau
2016-01-05 23:49   ` John Snow
2015-12-29  8:04 ` [Qemu-devel] [PATCH 09/17] i8257: implement the IsaDma interface Hervé Poussineau
2016-01-05 21:59   ` John Snow [this message]
2015-12-29  8:04 ` [Qemu-devel] [PATCH 09/17] i8257: register " Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 10/17] magnum: disable floppy DMA for now Hervé Poussineau
2016-01-05 22:02   ` John Snow
2015-12-29  8:04 ` [Qemu-devel] [PATCH 11/17] sparc: disable floppy DMA Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 12/17] sparc64: " Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 13/17] fdc: use IsaDma interface instead of global DMA_* functions Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 14/17] cs4231a: " Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 15/17] gus: " Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 16/17] sb16: " Hervé Poussineau
2015-12-29  8:04 ` [Qemu-devel] [PATCH 17/17] dma: remove now useless " Hervé Poussineau

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=568C3CC8.40903@redhat.com \
    --to=jsnow@redhat.com \
    --cc=hpoussin@reactos.org \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.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.