Skip to content

Commit

Permalink
typec: tcpm: Add SDB header for Status message handling
Browse files Browse the repository at this point in the history
This commit adds a header providing definitions for handling
Status messages. Currently the header only focuses on handling
incoming Status messages.

Signed-off-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Adam Thomson authored and Greg Kroah-Hartman committed Mar 9, 2018
1 parent 456ebb4 commit 02cad96
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions include/linux/usb/pd_ext_sdb.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2017 Dialog Semiconductor
*
* Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
*/

#ifndef __LINUX_USB_PD_EXT_SDB_H
#define __LINUX_USB_PD_EXT_SDB_H

/* SDB : Status Data Block */
enum usb_pd_ext_sdb_fields {
USB_PD_EXT_SDB_INTERNAL_TEMP = 0,
USB_PD_EXT_SDB_PRESENT_INPUT,
USB_PD_EXT_SDB_PRESENT_BATT_INPUT,
USB_PD_EXT_SDB_EVENT_FLAGS,
USB_PD_EXT_SDB_TEMP_STATUS,
USB_PD_EXT_SDB_DATA_SIZE,
};

/* Event Flags */
#define USB_PD_EXT_SDB_EVENT_OCP BIT(1)
#define USB_PD_EXT_SDB_EVENT_OTP BIT(2)
#define USB_PD_EXT_SDB_EVENT_OVP BIT(3)
#define USB_PD_EXT_SDB_EVENT_CF_CV_MODE BIT(4)

#define USB_PD_EXT_SDB_PPS_EVENTS (USB_PD_EXT_SDB_EVENT_OCP | \
USB_PD_EXT_SDB_EVENT_OTP | \
USB_PD_EXT_SDB_EVENT_OVP)

#endif /* __LINUX_USB_PD_EXT_SDB_H */

0 comments on commit 02cad96

Please sign in to comment.