devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Michael Haas <haas@computerlinguist.org>
To: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com,
	ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
	maxime.ripard@free-electrons.com, wens@csie.org,
	lee.jones@linaro.org, sre@kernel.org, dbaryshkov@gmail.com,
	dwmw2@infradead.org
Cc: degoede@redhat.com, bonbons@linux-vserver.org,
	devicetree@vger.kernel.org, linux-pm@vger.kernel.org,
	linux@arm.linux.org.uk, linux-sunxi@googlegroups.com,
	Michael Haas <haas@computerlinguist.org>
Subject: [PATCH v2 2/6] mfd: axp20x: Add register bits for axp20x-ac-power
Date: Sun,  1 May 2016 10:57:23 +0200	[thread overview]
Message-ID: <1462093047-7885-3-git-send-email-haas@computerlinguist.org> (raw)
In-Reply-To: <1462093047-7885-1-git-send-email-haas@computerlinguist.org>

This change adds some register bit definitions used by the
axp20x-ac-power driver.

Signed-off-by: Michael Haas <haas@computerlinguist.org>
---
 include/linux/mfd/axp20x.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/include/linux/mfd/axp20x.h b/include/linux/mfd/axp20x.h
index d82e7d5..c4c6dfa 100644
--- a/include/linux/mfd/axp20x.h
+++ b/include/linux/mfd/axp20x.h
@@ -90,6 +90,17 @@ enum {
 #define AXP22X_ALDO3_V_OUT		0x2a
 #define AXP22X_CHRG_CTRL3		0x35
 
+
+/* Fields of AXP20X_PWR_INPUT_STATUS */
+#define AXP20X_PWR_STATUS_AC_PRESENT     BIT(7)
+#define AXP20X_PWR_STATUS_AC_AVAILABLE   BIT(6)
+#define AXP20X_PWR_STATUS_AC_VBUS_SHORT  BIT(1)
+#define AXP20X_PWR_STATUS_AC_VBUS_SEL    BIT(0)
+
+/* Fields of AXP20X_ADC_EN1 */
+#define AXP20X_ADC_EN1_ACIN_VOLT BIT(5)
+#define AXP20X_ADC_EN1_ACIN_CURR BIT(4)
+
 /* Interrupt */
 #define AXP152_IRQ1_EN			0x40
 #define AXP152_IRQ2_EN			0x41
-- 
2.8.0


  reply	other threads:[~2016-05-01  8:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-01  8:57 [PATCH v2 0/6] Add axp20x-ac power driver Michael Haas
2016-05-01  8:57 ` Michael Haas [this message]
     [not found]   ` <1462093047-7885-3-git-send-email-haas-bdq14YP6qtSV9CzYT+GlPGD2FQJk+8+b@public.gmane.org>
2016-05-01  9:48     ` [PATCH v2 2/6] mfd: axp20x: Add register bits for axp20x-ac-power Chen-Yu Tsai
     [not found]       ` <CAGb2v67g6rmnsKwjP3d25y5FV4BpYcenU1gX5NF4PbhOhJSxNA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-05-01 14:24         ` Michael Haas
     [not found]           ` <70789f3b-32c2-7d9c-1091-e4fd40b9a754-bdq14YP6qtSV9CzYT+GlPGD2FQJk+8+b@public.gmane.org>
2016-05-02  1:35             ` Chen-Yu Tsai
     [not found]               ` <CAGb2v653g8haXKJcvcisw+aqwhOs04fLs=Pb0rGyJJ9POAFg0w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-05-04 18:08                 ` Maxime Ripard
     [not found] ` <1462093047-7885-1-git-send-email-haas-bdq14YP6qtSV9CzYT+GlPGD2FQJk+8+b@public.gmane.org>
2016-05-01  8:57   ` [PATCH v2 1/6] power: Add an axp20x-ac-power driver Michael Haas
2016-05-01  8:57   ` [PATCH v2 3/6] mfd: axp20x: Add a cell for the ac power_supply part of the axp20x PMICs Michael Haas
2016-05-01  9:58     ` Chen-Yu Tsai
2016-05-01  8:57 ` [PATCH v2 4/6] ARM: dts: Add binding documentation for AXP20x pmic ac power supply Michael Haas
     [not found]   ` <1462093047-7885-5-git-send-email-haas-bdq14YP6qtSV9CzYT+GlPGD2FQJk+8+b@public.gmane.org>
2016-05-01  9:41     ` Chen-Yu Tsai
2016-05-01  8:57 ` [PATCH v2 5/6] ARM: dts: axp209: Add ac_power_supply child node to the ax209 node Michael Haas
     [not found]   ` <1462093047-7885-6-git-send-email-haas-bdq14YP6qtSV9CzYT+GlPGD2FQJk+8+b@public.gmane.org>
2016-05-01  9:50     ` Chen-Yu Tsai
2016-05-01  8:57 ` [PATCH v2 6/6] ARM: dts: sunxi: add ac-power to A20 OLinuXino Lime2 board Michael Haas

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=1462093047-7885-3-git-send-email-haas@computerlinguist.org \
    --to=haas@computerlinguist.org \
    --cc=bonbons@linux-vserver.org \
    --cc=dbaryshkov@gmail.com \
    --cc=degoede@redhat.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dwmw2@infradead.org \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=lee.jones@linaro.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-sunxi@googlegroups.com \
    --cc=linux@arm.linux.org.uk \
    --cc=mark.rutland@arm.com \
    --cc=maxime.ripard@free-electrons.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=sre@kernel.org \
    --cc=wens@csie.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).