From: Peter Crosthwaite <crosthwaitepeter@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Kevin O'Connor <kevin@koconnor.net>,
Peter Crosthwaite <crosthwaite.peter@gmail.com>,
Markus Armbruster <armbru@redhat.com>,
patches@linaro.org, qemu-devel@nongnu.org,
Alistair Francis <alistair.francis@xilinx.com>,
qemu-arm@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
"Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Subject: Re: [Qemu-devel] [PATCH 09/10] hw/sd/pxa2xx_mmci: Convert to VMStateDescription
Date: Sat, 19 Dec 2015 13:45:18 -0800 [thread overview]
Message-ID: <20151219214518.GJ4164@pcrost-box> (raw)
In-Reply-To: <1449851831-4966-10-git-send-email-peter.maydell@linaro.org>
On Fri, Dec 11, 2015 at 04:37:10PM +0000, Peter Maydell wrote:
> Convert the pxa2xx_mmci device from manual save/load
> functions to a VMStateDescription structure.
>
> This is a migration compatibility break.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> hw/sd/pxa2xx_mmci.c | 148 ++++++++++++++++++++--------------------------------
> 1 file changed, 56 insertions(+), 92 deletions(-)
>
> diff --git a/hw/sd/pxa2xx_mmci.c b/hw/sd/pxa2xx_mmci.c
> index a30be2b..81fec4d 100644
> --- a/hw/sd/pxa2xx_mmci.c
> +++ b/hw/sd/pxa2xx_mmci.c
> @@ -43,27 +43,72 @@ typedef struct PXA2xxMMCIState {
> uint32_t cmdat;
> uint32_t resp_tout;
> uint32_t read_tout;
> - int blklen;
> - int numblk;
> + int32_t blklen;
> + int32_t numblk;
> uint32_t intmask;
> uint32_t intreq;
> - int cmd;
> + int32_t cmd;
> uint32_t arg;
>
> - int active;
> - int bytesleft;
> + int32_t active;
> + int32_t bytesleft;
> uint8_t tx_fifo[64];
> - int tx_start;
> - int tx_len;
> + uint32_t tx_start;
> + uint32_t tx_len;
> uint8_t rx_fifo[32];
> - int rx_start;
> - int rx_len;
> + uint32_t rx_start;
> + uint32_t rx_len;
> uint16_t resp_fifo[9];
> - int resp_len;
> + uint32_t resp_len;
>
> - int cmdreq;
> + int32_t cmdreq;
> } PXA2xxMMCIState;
>
> +static bool pxa2xx_mmci_vmstate_validate(void *opaque, int version_id)
> +{
> + PXA2xxMMCIState *s = opaque;
> +
> + return s->tx_start < sizeof(s->tx_fifo)
> + && s->rx_start < sizeof(s->rx_fifo)
> + && s->tx_len <= sizeof(s->tx_fifo)
> + && s->rx_len <= sizeof(s->rx_fifo)
> + && s->resp_len <= sizeof(s->resp_fifo);
A nit, but I wonder if ARRAY_SIZE should be generally used in this case, as
it is a little more self documenting and would make code identical to
non-byte FIFOs.
> +}
> +
Extra blank.
> +
> +static const VMStateDescription vmstate_pxa2xx_mmci = {
Is the registration in class_init missing?
Otherwise,
Reviewed-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Regards,
Peter
> + .name = "pxa2xx-mmci",
> + .version_id = 2,
> + .minimum_version_id = 2,
> + .fields = (VMStateField[]) {
> + VMSTATE_UINT32(status, PXA2xxMMCIState),
> + VMSTATE_UINT32(clkrt, PXA2xxMMCIState),
> + VMSTATE_UINT32(spi, PXA2xxMMCIState),
> + VMSTATE_UINT32(cmdat, PXA2xxMMCIState),
> + VMSTATE_UINT32(resp_tout, PXA2xxMMCIState),
> + VMSTATE_UINT32(read_tout, PXA2xxMMCIState),
> + VMSTATE_INT32(blklen, PXA2xxMMCIState),
> + VMSTATE_INT32(numblk, PXA2xxMMCIState),
> + VMSTATE_UINT32(intmask, PXA2xxMMCIState),
> + VMSTATE_UINT32(intreq, PXA2xxMMCIState),
> + VMSTATE_INT32(cmd, PXA2xxMMCIState),
> + VMSTATE_UINT32(arg, PXA2xxMMCIState),
> + VMSTATE_INT32(cmdreq, PXA2xxMMCIState),
> + VMSTATE_INT32(active, PXA2xxMMCIState),
> + VMSTATE_INT32(bytesleft, PXA2xxMMCIState),
> + VMSTATE_UINT32(tx_start, PXA2xxMMCIState),
> + VMSTATE_UINT32(tx_len, PXA2xxMMCIState),
> + VMSTATE_UINT32(rx_start, PXA2xxMMCIState),
> + VMSTATE_UINT32(rx_len, PXA2xxMMCIState),
> + VMSTATE_UINT32(resp_len, PXA2xxMMCIState),
> + VMSTATE_VALIDATE("fifo size incorrect", pxa2xx_mmci_vmstate_validate),
> + VMSTATE_UINT8_ARRAY(tx_fifo, PXA2xxMMCIState, 64),
> + VMSTATE_UINT8_ARRAY(rx_fifo, PXA2xxMMCIState, 32),
> + VMSTATE_UINT16_ARRAY(resp_fifo, PXA2xxMMCIState, 9),
> + VMSTATE_END_OF_LIST()
> + }
> +};
> +
> #define MMC_STRPCL 0x00 /* MMC Clock Start/Stop register */
> #define MMC_STAT 0x04 /* MMC Status register */
> #define MMC_CLKRT 0x08 /* MMC Clock Rate register */
> @@ -405,84 +450,6 @@ static const MemoryRegionOps pxa2xx_mmci_ops = {
> .endianness = DEVICE_NATIVE_ENDIAN,
> };
>
> -static void pxa2xx_mmci_save(QEMUFile *f, void *opaque)
> -{
> - PXA2xxMMCIState *s = (PXA2xxMMCIState *) opaque;
> - int i;
> -
> - qemu_put_be32s(f, &s->status);
> - qemu_put_be32s(f, &s->clkrt);
> - qemu_put_be32s(f, &s->spi);
> - qemu_put_be32s(f, &s->cmdat);
> - qemu_put_be32s(f, &s->resp_tout);
> - qemu_put_be32s(f, &s->read_tout);
> - qemu_put_be32(f, s->blklen);
> - qemu_put_be32(f, s->numblk);
> - qemu_put_be32s(f, &s->intmask);
> - qemu_put_be32s(f, &s->intreq);
> - qemu_put_be32(f, s->cmd);
> - qemu_put_be32s(f, &s->arg);
> - qemu_put_be32(f, s->cmdreq);
> - qemu_put_be32(f, s->active);
> - qemu_put_be32(f, s->bytesleft);
> -
> - qemu_put_byte(f, s->tx_len);
> - for (i = 0; i < s->tx_len; i ++)
> - qemu_put_byte(f, s->tx_fifo[(s->tx_start + i) & 63]);
> -
> - qemu_put_byte(f, s->rx_len);
> - for (i = 0; i < s->rx_len; i ++)
> - qemu_put_byte(f, s->rx_fifo[(s->rx_start + i) & 31]);
> -
> - qemu_put_byte(f, s->resp_len);
> - for (i = s->resp_len; i < 9; i ++)
> - qemu_put_be16s(f, &s->resp_fifo[i]);
> -}
> -
> -static int pxa2xx_mmci_load(QEMUFile *f, void *opaque, int version_id)
> -{
> - PXA2xxMMCIState *s = (PXA2xxMMCIState *) opaque;
> - int i;
> -
> - qemu_get_be32s(f, &s->status);
> - qemu_get_be32s(f, &s->clkrt);
> - qemu_get_be32s(f, &s->spi);
> - qemu_get_be32s(f, &s->cmdat);
> - qemu_get_be32s(f, &s->resp_tout);
> - qemu_get_be32s(f, &s->read_tout);
> - s->blklen = qemu_get_be32(f);
> - s->numblk = qemu_get_be32(f);
> - qemu_get_be32s(f, &s->intmask);
> - qemu_get_be32s(f, &s->intreq);
> - s->cmd = qemu_get_be32(f);
> - qemu_get_be32s(f, &s->arg);
> - s->cmdreq = qemu_get_be32(f);
> - s->active = qemu_get_be32(f);
> - s->bytesleft = qemu_get_be32(f);
> -
> - s->tx_len = qemu_get_byte(f);
> - s->tx_start = 0;
> - if (s->tx_len >= sizeof(s->tx_fifo) || s->tx_len < 0)
> - return -EINVAL;
> - for (i = 0; i < s->tx_len; i ++)
> - s->tx_fifo[i] = qemu_get_byte(f);
> -
> - s->rx_len = qemu_get_byte(f);
> - s->rx_start = 0;
> - if (s->rx_len >= sizeof(s->rx_fifo) || s->rx_len < 0)
> - return -EINVAL;
> - for (i = 0; i < s->rx_len; i ++)
> - s->rx_fifo[i] = qemu_get_byte(f);
> -
> - s->resp_len = qemu_get_byte(f);
> - if (s->resp_len > 9 || s->resp_len < 0)
> - return -EINVAL;
> - for (i = s->resp_len; i < 9; i ++)
> - qemu_get_be16s(f, &s->resp_fifo[i]);
> -
> - return 0;
> -}
> -
> PXA2xxMMCIState *pxa2xx_mmci_init(MemoryRegion *sysmem,
> hwaddr base,
> BlockBackend *blk, qemu_irq irq,
> @@ -555,9 +522,6 @@ static void pxa2xx_mmci_instance_init(Object *obj)
> sysbus_init_irq(sbd, &s->rx_dma);
> sysbus_init_irq(sbd, &s->tx_dma);
>
> - register_savevm(NULL, "pxa2xx_mmci", 0, 0,
> - pxa2xx_mmci_save, pxa2xx_mmci_load, s);
> -
> qbus_create_inplace(&s->sdbus, sizeof(s->sdbus),
> TYPE_PXA2XX_MMCI_BUS, DEVICE(obj), "sd-bus");
> }
> --
> 1.9.1
>
next prev parent reply other threads:[~2015-12-19 21:45 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-11 16:37 [Qemu-devel] [PATCH 00/10] hw/sd: QOMify sd.c (and pxa2xx_mmci) Peter Maydell
2015-12-11 16:37 ` [Qemu-devel] [PATCH 01/10] hw/sd/sdhci.c: Remove x-drive property Peter Maydell
2015-12-17 19:28 ` Alistair Francis
2015-12-19 21:33 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 02/10] hw/sd/sd.c: QOMify Peter Maydell
2015-12-17 21:45 ` Alistair Francis
2015-12-17 22:11 ` Peter Maydell
2015-12-18 0:20 ` Alistair Francis
2015-12-19 21:36 ` Peter Crosthwaite
2015-12-20 17:07 ` Peter Maydell
2015-12-20 18:25 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 03/10] hw/sd/sd.c: Convert sd_reset() function into Device reset method Peter Maydell
2015-12-17 23:51 ` Alistair Francis
2015-12-19 21:37 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 04/10] hw/sd: Add QOM bus which SD cards plug in to Peter Maydell
2015-12-19 21:38 ` Peter Crosthwaite
2015-12-20 17:10 ` Peter Maydell
2015-12-20 20:51 ` Peter Crosthwaite
2015-12-20 23:18 ` Peter Maydell
2015-12-21 0:15 ` Peter Crosthwaite
2016-01-07 18:09 ` Peter Maydell
2016-01-08 14:51 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 05/10] hw/sd/sdhci.c: Update to use SDBus APIs Peter Maydell
2015-12-11 19:01 ` Kevin O'Connor
2015-12-11 23:08 ` Peter Maydell
2015-12-19 21:39 ` Peter Crosthwaite
2015-12-20 17:10 ` Peter Maydell
2015-12-11 16:37 ` [Qemu-devel] [PATCH 06/10] sdhci_sysbus: Create SD card device in users, not the device itself Peter Maydell
2015-12-18 0:18 ` Alistair Francis
2015-12-18 9:00 ` Peter Maydell
2015-12-19 21:40 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 07/10] hw/sd/pxa2xx_mmci: convert to SysBusDevice object Peter Maydell
2015-12-19 21:41 ` Peter Crosthwaite
2015-12-11 16:37 ` [Qemu-devel] [PATCH 08/10] hw/sd/pxa2xx_mmci: Update to use new SDBus APIs Peter Maydell
2015-12-19 21:42 ` Peter Crosthwaite
2015-12-20 17:14 ` Peter Maydell
2015-12-11 16:37 ` [Qemu-devel] [PATCH 09/10] hw/sd/pxa2xx_mmci: Convert to VMStateDescription Peter Maydell
2015-12-19 21:45 ` Peter Crosthwaite [this message]
2015-12-20 17:17 ` Peter Maydell
2015-12-11 16:37 ` [Qemu-devel] [PATCH 10/10] hw/sd/pxa2xx_mmci: Add reset function Peter Maydell
2015-12-19 21:45 ` Peter Crosthwaite
2015-12-17 1:25 ` [Qemu-devel] [PATCH 00/10] hw/sd: QOMify sd.c (and pxa2xx_mmci) Alistair Francis
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=20151219214518.GJ4164@pcrost-box \
--to=crosthwaitepeter@gmail.com \
--cc=alistair.francis@xilinx.com \
--cc=armbru@redhat.com \
--cc=crosthwaite.peter@gmail.com \
--cc=edgar.iglesias@gmail.com \
--cc=kevin@koconnor.net \
--cc=patches@linaro.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).