From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: "David E. Box" <david.e.box@linux.intel.com>
Cc: wsa@the-dreams.de, jdelvare@suse.de, arnd@arndb.de,
dianders@chromium.org, sjg@chromium.org,
laurent.pinchart+renesas@ideasonboard.com,
u.kleine-koenig@pengutronix.de,
boris.brezillon@free-electrons.com, maxime.coquelin@st.com,
max.schwarz@online.de, schwidefsky@de.ibm.com,
iivanov@mm-sol.com, jacob.jun.pan@linux.intel.com,
soren.brinkmann@xilinx.com, bjorn.andersson@sonymobile.com,
andrew@lunn.ch, skuribay@pobox.com, christian.ruppert@abilis.com,
Romain.Baeriswyl@abilis.com, linux-kernel@vger.kernel.org,
linux-i2c@vger.kernel.org
Subject: Re: [PATCH] i2c-designware: Intel BayTrail PMIC I2C bus support
Date: Tue, 16 Sep 2014 12:44:49 +0300 [thread overview]
Message-ID: <20140916094449.GZ10854@lahna.fi.intel.com> (raw)
In-Reply-To: <1410543367-6565-1-git-send-email-david.e.box@linux.intel.com>
On Fri, Sep 12, 2014 at 10:36:07AM -0700, David E. Box wrote:
> This patch implements an I2C bus sharing mechanism between the host and platform
> hardware on select Intel BayTrail SoC platforms using the XPower AXP288 PMIC.
>
> On these platforms access to the PMIC must be shared with platform hardware. The
> hardware unit assumes full control of the I2C bus and the host must request
> access through a special semaphore. Hardware control of the bus also makes it
> necessary to disable runtime pm to avoid interfering with hardware transactions.
Is this because we need to access the PMIC from host as well? I mean
from some PMIC driver (which driver btw)?
Otherwise it would be best to just detect _SEM and return -ENODEV.
>
> Signed-off-by: David E. Box <david.e.box@linux.intel.com>
> ---
> drivers/i2c/busses/Kconfig | 10 +++
> drivers/i2c/busses/Makefile | 1 +
> drivers/i2c/busses/i2c-designware-core.h | 14 ++++
> drivers/i2c/busses/i2c-designware-platdrv.c | 78 +++++++++++++++++++--
> drivers/i2c/busses/i2c-shared-controller.c | 101 ++++++++++++++++++++++++++++
> 5 files changed, 200 insertions(+), 4 deletions(-)
> create mode 100644 drivers/i2c/busses/i2c-shared-controller.c
>
> diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> index 2ac87fa..672ef23 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -441,6 +441,16 @@ config I2C_DESIGNWARE_PCI
> This driver can also be built as a module. If so, the module
> will be called i2c-designware-pci.
>
> +config I2C_SHARED_CONTROLLER
> + tristate "Intel Baytrail PMIC shared I2C bus support"
> + depends on ACPI
> + select IOSF_MBI
> + select I2C_DESIGNWARE_CORE
> + help
> + This driver enables shared access to the PMIC I2C bus on select Intel
> + BayTrail platforms using the XPower AXP288 PMIC. This driver is
> + required for host access to the PMIC on these platforms.
Can't we detect this runtime in the i2c-designware-platdrv.c code so
that you look (in the ACPI part of the driver) for _SEM and in that case
change the xfer function behaviour a bit to return -EBUSY or whatever?
Without this horrible #ifdeffery.
next prev parent reply other threads:[~2014-09-16 9:45 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-12 17:36 David E. Box
2014-09-15 6:57 ` Maxime Coquelin
2014-09-15 16:55 ` David E. Box
2014-09-16 9:44 ` Mika Westerberg [this message]
2014-09-16 10:53 ` Jacob Pan
2014-09-16 10:58 ` Mika Westerberg
2014-09-17 4:01 ` Li, Aubrey
2014-09-17 11:02 ` One Thousand Gnomes
2014-09-23 18:40 ` [PATCH V2] i2c-designware: Add Intel Baytrail " David E. Box
2014-09-23 19:00 ` Maxime Ripard
2014-09-23 19:58 ` David E. Box
2014-09-25 9:47 ` Maxime Ripard
[not found] ` <20141007191420.GA25126@pathfinder>
2014-10-09 12:36 ` Maxime Ripard
2014-11-11 11:32 ` Wolfram Sang
2014-11-11 17:11 ` David E. Box
2014-11-11 11:50 ` Mika Westerberg
2014-12-02 0:09 ` [PATCH V3 0/2] i2c-designware: Baytrail bus locking driver David E. Box
2014-12-02 0:09 ` [PATCH V3 1/2] i2c-designware: Add i2c bus locking support David E. Box
2014-12-03 16:01 ` Mika Westerberg
2014-12-04 18:49 ` David E. Box
2014-12-04 7:59 ` Jarkko Nikula
2014-12-04 18:42 ` David E. Box
2015-01-13 9:48 ` Wolfram Sang
2015-01-14 18:15 ` David E. Box
2014-12-02 0:09 ` [PATCH V3 2/2] i2c-designware: Add Intel Baytrail PMIC I2C bus support David E. Box
2014-12-03 16:10 ` Mika Westerberg
2014-12-04 19:11 ` David E. Box
2014-12-06 3:51 ` [PATCH V3 0/2] i2c-designware: Baytrail bus locking driver Shinya Kuribayashi
2015-01-15 9:12 ` [PATCH V4 0/2] i2c-designware: Add Intel Baytrail pmic i2c bus support David E. Box
2015-01-26 11:27 ` Wolfram Sang
2015-01-15 9:12 ` [PATCH V4 1/2] i2c-designware: Add i2c bus locking support David E. Box
2015-01-22 14:22 ` Mika Westerberg
2015-01-15 9:12 ` [PATCH V4 2/2] i2c-designware: Add Intel Baytrail PMIC I2C bus support David E. Box
2015-01-22 14:28 ` Mika Westerberg
2015-01-22 20:48 ` David E. Box
2015-01-23 9:32 ` Mika Westerberg
2015-01-23 14:18 ` Wolfram Sang
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=20140916094449.GZ10854@lahna.fi.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=Romain.Baeriswyl@abilis.com \
--cc=andrew@lunn.ch \
--cc=arnd@arndb.de \
--cc=bjorn.andersson@sonymobile.com \
--cc=boris.brezillon@free-electrons.com \
--cc=christian.ruppert@abilis.com \
--cc=david.e.box@linux.intel.com \
--cc=dianders@chromium.org \
--cc=iivanov@mm-sol.com \
--cc=jacob.jun.pan@linux.intel.com \
--cc=jdelvare@suse.de \
--cc=laurent.pinchart+renesas@ideasonboard.com \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=max.schwarz@online.de \
--cc=maxime.coquelin@st.com \
--cc=schwidefsky@de.ibm.com \
--cc=sjg@chromium.org \
--cc=skuribay@pobox.com \
--cc=soren.brinkmann@xilinx.com \
--cc=u.kleine-koenig@pengutronix.de \
--cc=wsa@the-dreams.de \
/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
Powered by JetHome