From: David Gibson <david@gibson.dropbear.id.au>
To: BALATON Zoltan <balaton@eik.bme.hu>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
Alexander Graf <agraf@suse.de>, Francois Revol <revol@free.fr>
Subject: Re: [Qemu-devel] [RFC PATCH 07/12] ppc4xx_i2c: Implement basic I2C functions
Date: Fri, 18 Aug 2017 11:42:04 +1000 [thread overview]
Message-ID: <20170818014204.GL5509@umbus.fritz.box> (raw)
In-Reply-To: <ec3cefa6be2cfafb8195f86780ef1a87f8503748.1502643878.git.balaton@eik.bme.hu>
[-- Attachment #1: Type: text/plain, Size: 13483 bytes --]
On Sun, Aug 13, 2017 at 07:04:38PM +0200, BALATON Zoltan wrote:
> Enough to please U-Boot and make it able to detect SDRAM SPD EEPROMs
>
> Signed-off-by: François Revol <revol@free.fr>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
I don't have the knowledge to review this deeply (or, rather, I don't
have the time to refresh myself on the 4xx manuals). However there's
nothing obviously bogus, and what we had previously was clearly a
stub. So I'll be happy to apply this for 2.11 if no-one with better
knowledge objects.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> hw/ppc/ppc4xx_i2c.c | 214 +++++++++++++++++++++++++++++++++++++-------
> include/hw/i2c/ppc4xx_i2c.h | 5 ++
> 2 files changed, 189 insertions(+), 30 deletions(-)
>
> diff --git a/hw/ppc/ppc4xx_i2c.c b/hw/ppc/ppc4xx_i2c.c
> index fafbb34..0b088e6 100644
> --- a/hw/ppc/ppc4xx_i2c.c
> +++ b/hw/ppc/ppc4xx_i2c.c
> @@ -2,6 +2,8 @@
> * PPC4xx I2C controller emulation
> *
> * Copyright (c) 2007 Jocelyn Mayer
> + * Copyright (c) 2012 François Revol
> + * Copyright (c) 2016 BALATON Zoltan
> *
> * Permission is hereby granted, free of charge, to any person obtaining a copy
> * of this software and associated documentation files (the "Software"), to deal
> @@ -25,25 +27,126 @@
> #include "qemu/osdep.h"
> #include "qapi/error.h"
> #include "qemu-common.h"
> +#include "qemu/log.h"
> #include "cpu.h"
> #include "hw/hw.h"
> #include "hw/i2c/ppc4xx_i2c.h"
>
> /*#define DEBUG_I2C*/
>
> -#define PPC4xx_I2C_MEM_SIZE 0x11
> +#ifdef DEBUG_I2C
> +#define DPRINTF(fmt, args...) printf("[%s]%s: " fmt, TYPE_PPC4xx_I2C, \
> + __func__, ##args);
> +#else
> +#define DPRINTF(fmt, args...)
> +#endif
> +
> +#define PPC4xx_I2C_MEM_SIZE 0x12
> +
> +#define IIC_CNTL_PT (1 << 0)
> +#define IIC_CNTL_READ (1 << 1)
> +#define IIC_CNTL_CHT (1 << 2)
> +#define IIC_CNTL_RPST (1 << 3)
> +
> +#define IIC_STS_PT (1 << 0)
> +#define IIC_STS_ERR (1 << 2)
> +#define IIC_STS_MDBS (1 << 5)
> +
> +#define IIC_EXTSTS_XFRA (1 << 0)
> +
> +#define IIC_XTCNTLSS_SRST (1 << 0)
> +
> +static void ppc4xx_i2c_reset(DeviceState *s)
> +{
> + PPC4xxI2CState *i2c = PPC4xx_I2C(s);
> +
> + /* FIXME: Should also reset bus?
> + *if (s->address != ADDR_RESET) {
> + * i2c_end_transfer(s->bus);
> + *}
> + */
> +
> + i2c->mdata = 0;
> + i2c->lmadr = 0;
> + i2c->hmadr = 0;
> + i2c->cntl = 0;
> + i2c->mdcntl = 0;
> + i2c->sts = 0;
> + i2c->extsts = 0x8f;
> + i2c->sdata = 0;
> + i2c->lsadr = 0;
> + i2c->hsadr = 0;
> + i2c->clkdiv = 0;
> + i2c->intrmsk = 0;
> + i2c->xfrcnt = 0;
> + i2c->xtcntlss = 0;
> + i2c->directcntl = 0x0f;
> + i2c->intr = 0;
> +}
> +
> +static inline bool ppc4xx_i2c_is_master(PPC4xxI2CState *i2c)
> +{
> + return true;
> +}
>
> static uint8_t ppc4xx_i2c_readb(PPC4xxI2CState *i2c, hwaddr addr)
> {
> - uint8_t ret;
> + int ret;
>
> -#ifdef DEBUG_I2C
> - printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr);
> -#endif
> switch (addr) {
> case 0x00:
> - /*i2c_readbyte(&i2c->mdata);*/
> ret = i2c->mdata;
> + if (ppc4xx_i2c_is_master(i2c)) {
> + ret = 0xff;
> +
> + if (!(i2c->sts & IIC_STS_MDBS)) {
> + qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Trying to read "
> + "without starting transfer\n",
> + TYPE_PPC4xx_I2C, __func__);
> + } else {
> + int pending = (i2c->cntl >> 4) & 3;
> +
> + /* get the next byte */
> + ret = i2c_recv(i2c->bus);
> + DPRINTF("received byte %04x\n", ret);
> +
> + if (ret < 0) {
> + qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: read failed "
> + "for device 0x%02x\n", TYPE_PPC4xx_I2C,
> + __func__, i2c->lmadr);
> + ret = 0xff;
> + } else {
> + /* Raise interrupt if enabled */
> + /*ppc4xx_i2c_raise_interrupt(i2c)*/;
> + }
> +
> + if (!pending) {
> + i2c->sts &= ~IIC_STS_MDBS;
> + /*i2c_end_transfer(i2c->bus);*/
> + /*} else if (i2c->cntl & (IIC_CNTL_RPST | IIC_CNTL_CHT)) {*/
> + } else if (pending) {
> + /* current smbus implementation doesn't like
> + multibyte xfer repeated start */
> + i2c_end_transfer(i2c->bus);
> + if (i2c_start_transfer(i2c->bus, i2c->lmadr >> 1, 1)) {
> + /* if non zero is returned, the adress is not valid */
> + i2c->sts &= ~IIC_STS_PT;
> + i2c->sts |= IIC_STS_ERR;
> + i2c->extsts |= IIC_EXTSTS_XFRA;
> + } else {
> + /*i2c->sts |= IIC_STS_PT;*/
> + i2c->sts |= IIC_STS_MDBS;
> + i2c->sts &= ~IIC_STS_ERR;
> + i2c->extsts = 0;
> + }
> + }
> + pending--;
> + i2c->cntl = (i2c->cntl & 0xcf) | (pending << 4);
> + }
> + } else {
> + qemu_log_mask(LOG_UNIMP, "[%s]%s: slave mode not implemented\n",
> + TYPE_PPC4xx_I2C, __func__);
> + }
> break;
> case 0x02:
> ret = i2c->sdata;
> @@ -87,39 +190,88 @@ static uint8_t ppc4xx_i2c_readb(PPC4xxI2CState *i2c, hwaddr addr)
> case 0x10:
> ret = i2c->directcntl;
> break;
> + case 0x11:
> + ret = i2c->intr;
> + break;
> default:
> - ret = 0x00;
> + qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
> + HWADDR_PRIx "\n", TYPE_PPC4xx_I2C, __func__, addr);
> + ret = 0;
> break;
> }
> -#ifdef DEBUG_I2C
> - printf("%s: addr " TARGET_FMT_plx " %02" PRIx32 "\n", __func__, addr, ret);
> -#endif
>
> return ret;
> }
>
> static void ppc4xx_i2c_writeb(PPC4xxI2CState *i2c, hwaddr addr, uint8_t value)
> {
> -#ifdef DEBUG_I2C
> - printf("%s: addr " TARGET_FMT_plx " val %08" PRIx32 "\n",
> - __func__, addr, value);
> -#endif
> switch (addr) {
> case 0x00:
> i2c->mdata = value;
> - /*i2c_sendbyte(&i2c->mdata);*/
> + if (!i2c_bus_busy(i2c->bus)) {
> + /* assume we start a write transfer */
> + if (i2c_start_transfer(i2c->bus, i2c->lmadr >> 1, 0)) {
> + /* if non zero is returned, the adress is not valid */
> + i2c->sts &= ~IIC_STS_PT;
> + i2c->sts |= IIC_STS_ERR;
> + i2c->extsts |= IIC_EXTSTS_XFRA;
> + } else {
> + i2c->sts |= IIC_STS_PT;
> + i2c->sts &= ~IIC_STS_ERR;
> + i2c->extsts = 0;
> + }
> + }
> + if (i2c_bus_busy(i2c->bus)) {
> + DPRINTF("sending byte %02x\n", i2c->mdata);
> + if (i2c_send(i2c->bus, i2c->mdata)) {
> + /* if the target return non zero then end the transfer */
> + i2c->sts &= ~IIC_STS_PT;
> + i2c->sts |= IIC_STS_ERR;
> + i2c->extsts |= IIC_EXTSTS_XFRA;
> + i2c_end_transfer(i2c->bus);
> + }
> + }
> break;
> case 0x02:
> i2c->sdata = value;
> break;
> case 0x04:
> i2c->lmadr = value;
> + if (i2c_bus_busy(i2c->bus)) {
> + i2c_end_transfer(i2c->bus);
> + }
> + DPRINTF("%s: device addr %02x\n", __func__, i2c->lmadr);
> break;
> case 0x05:
> i2c->hmadr = value;
> break;
> case 0x06:
> i2c->cntl = value;
> + if (i2c->cntl & IIC_CNTL_PT) {
> + if (i2c->cntl & IIC_CNTL_READ) {
> + DPRINTF("read xfer %d\n", ((i2c->cntl >> 4) & 3) + 1);
> + if (i2c_bus_busy(i2c->bus)) {
> + /* end previous transfer */
> + i2c->sts &= ~IIC_STS_PT;
> + i2c_end_transfer(i2c->bus);
> + }
> + if (i2c_start_transfer(i2c->bus, i2c->lmadr >> 1, 1)) {
> + /* if non zero is returned, the adress is not valid */
> + i2c->sts &= ~IIC_STS_PT;
> + i2c->sts |= IIC_STS_ERR;
> + i2c->extsts |= IIC_EXTSTS_XFRA;
> + } else {
> + /*i2c->sts |= IIC_STS_PT;*/
> + i2c->sts |= IIC_STS_MDBS;
> + i2c->sts &= ~IIC_STS_ERR;
> + i2c->extsts = 0;
> + }
> + } else {
> + DPRINTF("write xfer %d\n", ((i2c->cntl >> 4) & 3) + 1);
> + /* we actually already did the write transfer... */
> + i2c->sts &= ~IIC_STS_PT;
> + }
> + }
> break;
> case 0x07:
> i2c->mdcntl = value & 0xDF;
> @@ -132,6 +284,7 @@ static void ppc4xx_i2c_writeb(PPC4xxI2CState *i2c, hwaddr addr, uint8_t value)
> break;
> case 0x0A:
> i2c->lsadr = value;
> + /*i2c_set_slave_address(i2c->bus, i2c->lsadr);*/
> break;
> case 0x0B:
> i2c->hsadr = value;
> @@ -146,11 +299,23 @@ static void ppc4xx_i2c_writeb(PPC4xxI2CState *i2c, hwaddr addr, uint8_t value)
> i2c->xfrcnt = value & 0x77;
> break;
> case 0x0F:
> + if (value & IIC_XTCNTLSS_SRST) {
> + /* Is it actually a full reset? U-Boot sets some regs before */
> + ppc4xx_i2c_reset(DEVICE(i2c));
> + break;
> + }
> i2c->xtcntlss = value;
> break;
> case 0x10:
> i2c->directcntl = value & 0x7;
> break;
> + case 0x11:
> + i2c->intr = value;
> + break;
> + default:
> + qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad address at offset 0x%"
> + HWADDR_PRIx "\n", TYPE_PPC4xx_I2C, __func__, addr);
> + break;
> }
> }
>
> @@ -160,10 +325,12 @@ static uint64_t ppc4xx_i2c_read(void *opaque, hwaddr addr, unsigned int size)
> int i;
> uint64_t ret = 0;
>
> + DPRINTF("read I2C " TARGET_FMT_plx " size %u\n", addr, size);
> for (i = 0; i < size; i++) {
> ret <<= 8;
> ret |= ppc4xx_i2c_readb(s, addr + i);
> }
> + DPRINTF("read I2C " TARGET_FMT_plx " %02" PRIx64 "\n", addr, ret);
>
> return ret;
> }
> @@ -174,6 +341,8 @@ static void ppc4xx_i2c_write(void *opaque, hwaddr addr, uint64_t value,
> PPC4xxI2CState *s = PPC4xx_I2C(opaque);
> int i;
>
> + DPRINTF("write I2C " TARGET_FMT_plx " size %u val %08" PRIx64 "\n",
> + addr, size, value);
> for (i = 0; i < size; i++) {
> ppc4xx_i2c_writeb(s, addr + i, value & 0xff);
> value >>= 8;
> @@ -188,21 +357,6 @@ static const MemoryRegionOps ppc4xx_i2c_ops = {
> .endianness = DEVICE_NATIVE_ENDIAN,
> };
>
> -static void ppc4xx_i2c_reset(DeviceState *s)
> -{
> - PPC4xxI2CState *i2c = PPC4xx_I2C(s);
> -
> - i2c->mdata = 0x00;
> - i2c->sdata = 0x00;
> - i2c->cntl = 0x00;
> - i2c->mdcntl = 0x00;
> - i2c->sts = 0x00;
> - i2c->extsts = 0x00;
> - i2c->clkdiv = 0x00;
> - i2c->xfrcnt = 0x00;
> - i2c->directcntl = 0x0F;
> -}
> -
> static void ppc4xx_i2c_init(Object *o)
> {
> PPC4xxI2CState *s = PPC4xx_I2C(o);
> diff --git a/include/hw/i2c/ppc4xx_i2c.h b/include/hw/i2c/ppc4xx_i2c.h
> index 7f1e6be..71fb392 100644
> --- a/include/hw/i2c/ppc4xx_i2c.h
> +++ b/include/hw/i2c/ppc4xx_i2c.h
> @@ -2,6 +2,8 @@
> * PPC4xx I2C controller emulation
> *
> * Copyright (c) 2007 Jocelyn Mayer
> + * Copyright (c) 2012 François Revol
> + * Copyright (c) 2016 BALATON Zoltan
> *
> * Permission is hereby granted, free of charge, to any person obtaining a copy
> * of this software and associated documentation files (the "Software"), to deal
> @@ -28,6 +30,7 @@
> #include "qemu/osdep.h"
> #include "qemu-common.h"
> #include "hw/sysbus.h"
> +#include "hw/i2c/i2c.h"
>
> #define TYPE_PPC4xx_I2C "ppc4xx-i2c"
> #define PPC4xx_I2C(obj) OBJECT_CHECK(PPC4xxI2CState, (obj), TYPE_PPC4xx_I2C)
> @@ -37,6 +40,7 @@ typedef struct PPC4xxI2CState {
> SysBusDevice parent_obj;
>
> /*< public >*/
> + I2CBus *bus;
> qemu_irq irq;
> MemoryRegion iomem;
> uint8_t mdata;
> @@ -54,6 +58,7 @@ typedef struct PPC4xxI2CState {
> uint8_t xfrcnt;
> uint8_t xtcntlss;
> uint8_t directcntl;
> + uint8_t intr;
> } PPC4xxI2CState;
>
> #endif /* PPC4XX_I2C_H */
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-08-18 1:46 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-13 17:04 [Qemu-devel] [RFC PATCH 00/12] Sam460ex emulation BALATON Zoltan
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 06/12] ppc4xx_i2c: QOMify BALATON Zoltan
2017-08-15 4:17 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 05/12] ppc4xx: Split off 4xx I2C emulation from ppc405_uc to its own file BALATON Zoltan
2017-08-14 4:41 ` David Gibson
2017-08-14 9:00 ` Paolo Bonzini
2017-08-14 11:18 ` BALATON Zoltan
2017-08-14 14:19 ` Paolo Bonzini
2017-08-14 14:25 ` Peter Maydell
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 04/12] ehci: Add ppc4xx-ehci for the USB 2.0 controller in embedded PPC SoCs BALATON Zoltan
2017-08-14 4:36 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 09/12] ppc440: Add emulation of plb-pcix controller found in some 440 SoCs BALATON Zoltan
2017-08-18 1:53 ` David Gibson
2017-08-18 11:07 ` François Revol
2017-08-18 12:15 ` [Qemu-devel] [Qemu-ppc] " BALATON Zoltan
2017-08-18 12:18 ` [Qemu-devel] " David Gibson
2017-08-18 9:30 ` [Qemu-devel] [Qemu-ppc] " luigi burdo
2017-08-18 11:20 ` François Revol
2017-08-18 13:03 ` BALATON Zoltan
2017-08-18 12:34 ` BALATON Zoltan
2017-08-18 19:43 ` luigi burdo
2017-08-18 20:52 ` François Revol
2017-08-19 10:03 ` BALATON Zoltan
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 10/12] ppc: Add 460EX embedded CPU BALATON Zoltan
2017-08-14 4:40 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 07/12] ppc4xx_i2c: Implement basic I2C functions BALATON Zoltan
2017-08-18 1:42 ` David Gibson [this message]
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 08/12] hw/ide: Emulate SiI3112 SATA controller BALATON Zoltan
2017-08-14 4:42 ` David Gibson
2017-08-14 11:16 ` BALATON Zoltan
2017-08-15 11:40 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 12/12] ppc: Add aCube Sam460ex board BALATON Zoltan
2017-08-18 6:10 ` David Gibson
2017-08-18 11:24 ` François Revol
2017-08-18 12:46 ` BALATON Zoltan
2017-08-22 2:35 ` David Gibson
2017-08-22 11:18 ` BALATON Zoltan
2017-08-23 0:35 ` David Gibson
2017-08-23 0:48 ` BALATON Zoltan
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 11/12] ppc4xx: Export ECB and PLB emulation BALATON Zoltan
2017-08-14 4:44 ` David Gibson
2017-08-14 11:06 ` BALATON Zoltan
2017-08-18 6:11 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 02/12] ppc4xx: Make MAL emulation more generic BALATON Zoltan
2017-08-15 4:11 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 01/12] ppc4xx: Move MAL from ppc405_uc to ppc4xx_devs BALATON Zoltan
2017-08-14 4:37 ` David Gibson
2017-08-13 17:04 ` [Qemu-devel] [RFC PATCH 03/12] ohci: Allow sysbus version to be used as a companion BALATON Zoltan
2017-08-15 4:13 ` David Gibson
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=20170818014204.GL5509@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=agraf@suse.de \
--cc=balaton@eik.bme.hu \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=revol@free.fr \
/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).