linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Sebastian Reichel <sre@kernel.org>,
	Hans de Goede <hdegoede@redhat.com>,
	Yueyao Zhu <yueyao.zhu@gmail.com>,
	Rui Miguel Silva <rmfrfs@gmail.com>,
	linux-usb@vger.kernel.org, linux-pm@vger.kernel.org,
	linux-kernel@vger.kernel.org, support.opensource@diasemi.com
Subject: Re: [RFC PATCH 2/7] typec: tcpm: Add ADO header for Alert message handling
Date: Wed, 1 Nov 2017 18:20:07 +0100	[thread overview]
Message-ID: <20171101172007.GA14585@kroah.com> (raw)
In-Reply-To: <fed055cbecd4666d5a49a19c6a48958720045b40.1509554370.git.Adam.Thomson.Opensource@diasemi.com>

On Wed, Nov 01, 2017 at 05:03:10PM +0000, Adam Thomson wrote:
> This commit adds a header providing definitions for handling Alert
> messages. Currently the header only focuses on handling incoming
> alerts.
> 
> Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
> ---
>  include/linux/usb/pd_ado.h | 49 ++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 49 insertions(+)
>  create mode 100644 include/linux/usb/pd_ado.h
> 
> diff --git a/include/linux/usb/pd_ado.h b/include/linux/usb/pd_ado.h
> new file mode 100644
> index 0000000..edcbcfa
> --- /dev/null
> +++ b/include/linux/usb/pd_ado.h
> @@ -0,0 +1,49 @@
> +/*
> + * Copyright (c) 2017 Dialog Semiconductor
> + *
> + * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.

I have to ask, do you _really_ mean "any later version"?



> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + */
> +
> +#ifndef __LINUX_USB_PD_ADO_H
> +#define __LINUX_USB_PD_ADO_H
> +
> +/* ADO : Alert Data Object */
> +#define ADO_TYPE_SHIFT			24
> +#define ADO_TYPE_MASK			0xff
> +#define ADO_FIXED_BATT_SHIFT		20
> +#define ADO_FIXED_BATT_MASK		0xf
> +#define ADO_HOT_SWAP_BATT_SHIFT		16
> +#define ADO_HOT_SWAP_BATT_MASK		0xf

USB_ prefixes perhaps?

> +
> +#define ADO_TYPE_BATT_STATUS_CHANGE	BIT(1)
> +#define ADO_TYPE_OCP			BIT(2)
> +#define ADO_TYPE_OTP			BIT(3)
> +#define ADO_TYPE_OP_COND_CHANGE		BIT(4)
> +#define ADO_TYPE_SRC_INPUT_CHANGE	BIT(5)
> +#define ADO_TYPE_OVP			BIT(6)
> +
> +static inline unsigned int ado_type(u32 ado)
> +{
> +	return (ado >> ADO_TYPE_SHIFT) & ADO_TYPE_MASK;
> +}

usb_ prefix for this and the other inline functions as well?

thanks,

greg k-h

  reply	other threads:[~2017-11-01 17:20 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-01 17:03 [RFC PATCH 0/7] typec: tcpm: Add sink side support for PPS Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 1/7] typec: tcpm: Add PD Rev 3.0 definitions to PD header Adam Thomson
2017-11-01 20:08   ` Jack Pham
2017-11-02 13:38     ` Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 2/7] typec: tcpm: Add ADO header for Alert message handling Adam Thomson
2017-11-01 17:20   ` Greg Kroah-Hartman [this message]
2017-11-02 11:40     ` Adam Thomson
2017-11-02 16:49       ` Greg Kroah-Hartman
2017-11-02 17:34         ` Adam Thomson
2017-11-02 17:41           ` Greg Kroah-Hartman
2017-11-01 17:03 ` [RFC PATCH 3/7] typec: tcpm: Add SDB header for Status " Adam Thomson
2017-11-01 17:20   ` Greg Kroah-Hartman
2017-11-02 11:41     ` Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 4/7] typec: tcpm: Add core support for sink side PPS Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 5/7] power: supply: Add type for USB PD PPS chargers Adam Thomson
2017-11-06 13:25   ` Sebastian Reichel
2017-11-07 15:36     ` Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 6/7] typec: tcpm: Represent source supply through power_supply class Adam Thomson
2017-11-01 17:03 ` [RFC PATCH 7/7] typec: tcpm: Add support for sink PPS related messages Adam Thomson

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=20171101172007.GA14585@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=Adam.Thomson.Opensource@diasemi.com \
    --cc=hdegoede@redhat.com \
    --cc=heikki.krogerus@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=rmfrfs@gmail.com \
    --cc=sre@kernel.org \
    --cc=support.opensource@diasemi.com \
    --cc=yueyao.zhu@gmail.com \
    /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).