280 lines
7.2 KiB
C
Executable file
280 lines
7.2 KiB
C
Executable file
/*
|
|
* include/linux/ifconn/ifconn_notifier.h
|
|
*
|
|
* header file supporting IFCONN notifier call chain information
|
|
*
|
|
* Copyright (C) 2010 Samsung Electronics
|
|
* Sejong Park <sejong123.park@samsung.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.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __IFCONN_MANAGER_NOTIFIER_H__
|
|
#define __IFCONN_MANAGER_NOTIFIER_H__
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#define IFCONN_MANAGER_NOTIFIER_BLOCK(name) \
|
|
struct notifier_block(name)
|
|
|
|
#define MAX_PDO_NUM 8
|
|
|
|
/* pdic api extern */
|
|
extern void (*fp_select_pdo)(int num);
|
|
extern int (*fp_select_pps)(int num, int ppsVol, int ppsCur);
|
|
extern int (*fp_pd_get_apdo_max_power)(unsigned int *pdo_pos, unsigned int *taMaxVol,
|
|
unsigned int *taMaxCur, unsigned int *taMaxPwr);
|
|
extern int (*fp_pd_pps_enable)(int num, int ppsVol, int ppsCur, int enable);
|
|
extern int (*fp_pd_get_pps_voltage)(void);
|
|
|
|
extern void select_pdo(int num);
|
|
extern int select_pps(int num, int ppsVol, int ppsCur);
|
|
extern int pd_get_apdo_max_power(unsigned int *pdo_pos, unsigned int *taMaxVol,
|
|
unsigned int *taMaxCur, unsigned int *taMaxPwr);
|
|
extern int pd_pps_enable(int num, int ppsVol, int ppsCur, int enable);
|
|
extern int pd_get_pps_voltage(void);
|
|
|
|
#if IS_ENABLED(CONFIG_IFCONN_NOTIFIER)
|
|
struct ifconn_state_work {
|
|
struct work_struct ifconn_work;
|
|
int dest;
|
|
int id;
|
|
int event;
|
|
void *data;
|
|
};
|
|
#endif
|
|
|
|
typedef enum {
|
|
TYPE_C_DETACH = 0,
|
|
TYPE_C_ATTACH_DFP = 1, /* Host */
|
|
TYPE_C_ATTACH_UFP = 2, /* Device */
|
|
TYPE_C_ATTACH_DRP = 3, /* Dual role */
|
|
TYPE_C_ATTACH_SRC = 4, /* SRC */
|
|
TYPE_C_ATTACH_SNK = 5, /* SNK */
|
|
TYPE_C_PR_SWAP = 6,
|
|
TYPE_C_DR_SWAP = 7,
|
|
} PDIC_OTP_MODE;
|
|
|
|
enum {
|
|
PDIC_DOCK_DETACHED = 0,
|
|
PDIC_DOCK_HMT = 105, /* Samsung Gear VR */
|
|
PDIC_DOCK_ABNORMAL = 106,
|
|
PDIC_DOCK_MPA = 109, /* Samsung Multi Port Adaptor */
|
|
PDIC_DOCK_DEX = 110, /* Samsung Dex */
|
|
PDIC_DOCK_HDMI = 111, /* Samsung HDMI Dongle */
|
|
PDIC_DOCK_T_VR = 112,
|
|
PDIC_DOCK_UVDM = 113,
|
|
PDIC_DOCK_DEXPAD = 114,
|
|
PDIC_DOCK_UNSUPPORTED_AUDIO = 115, /* Ra/Ra TypeC Analog Earphone*/
|
|
PDIC_DOCK_NEW = 200, /* For New uevent */
|
|
};
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_MANAGER = 0,
|
|
IFCONN_NOTIFY_USB,
|
|
IFCONN_NOTIFY_BATTERY,
|
|
IFCONN_NOTIFY_PDIC,
|
|
IFCONN_NOTIFY_MUIC,
|
|
IFCONN_NOTIFY_VBUS,
|
|
IFCONN_NOTIFY_CCIC,
|
|
IFCONN_NOTIFY_DP,
|
|
IFCONN_NOTIFY_USB_DP,
|
|
IFCONN_NOTIFY_MODEM,
|
|
IFCONN_NOTIFY_FLED,
|
|
IFCONN_NOTIFY_MANAGER_MUIC,
|
|
IFCONN_NOTIFY_MANAGER_PDIC,
|
|
IFCONN_NOTIFY_ALL,
|
|
IFCONN_NOTIFY_MAX,
|
|
} ifconn_notifier_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_PARAM_DATA,
|
|
IFCONN_NOTIFY_PARAM_TEMPLATE
|
|
} ifconn_notifier_data_param_t;
|
|
|
|
enum {
|
|
IFCONN_NOTIFY_LOW = 0,
|
|
IFCONN_NOTIFY_HIGH,
|
|
IFCONN_NOTIFY_IRQ,
|
|
};
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_ID_INITIAL = 0,
|
|
IFCONN_NOTIFY_ID_ATTACH,
|
|
IFCONN_NOTIFY_ID_DETACH,
|
|
IFCONN_NOTIFY_ID_RID,
|
|
IFCONN_NOTIFY_ID_USB,
|
|
IFCONN_NOTIFY_ID_POWER_STATUS,
|
|
IFCONN_NOTIFY_ID_WATER,
|
|
IFCONN_NOTIFY_ID_OTG,
|
|
IFCONN_NOTIFY_ID_TA,
|
|
IFCONN_NOTIFY_ID_VCONN,
|
|
IFCONN_NOTIFY_ID_DP_CONNECT,
|
|
IFCONN_NOTIFY_ID_DP_HPD,
|
|
IFCONN_NOTIFY_ID_DP_LINK_CONF,
|
|
IFCONN_NOTIFY_ID_USB_DP,
|
|
IFCONN_NOTIFY_ID_ROLE_SWAP,
|
|
IFCONN_NOTIFY_ID_SELECT_PDO,
|
|
IFCONN_NOTIFY_ID_VBUS,
|
|
} ifconn_notifier_id_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_DETACH = 0,
|
|
IFCONN_NOTIFY_ATTACH,
|
|
} ifconn_notifier_attach_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_VBUS_UNKNOWN = 0,
|
|
IFCONN_NOTIFY_VBUS_LOW,
|
|
IFCONN_NOTIFY_VBUS_HIGH,
|
|
} ifconn_notifier_vbus_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_STATUS_NOT_READY = 0,
|
|
IFCONN_NOTIFY_STATUS_NOT_READY_DETECT,
|
|
IFCONN_NOTIFY_STATUS_READY,
|
|
} ifconn_notifier_vbus_stat_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_EVENT_DETACH = 0,
|
|
IFCONN_NOTIFY_EVENT_ATTACH,
|
|
IFCONN_NOTIFY_EVENT_USB_ATTACH_DFP, // Host
|
|
IFCONN_NOTIFY_EVENT_USB_ATTACH_UFP, // Device
|
|
IFCONN_NOTIFY_EVENT_USB_ATTACH_DRP, // Dual role
|
|
IFCONN_NOTIFY_EVENT_USB_ATTACH_HPD, // DP : Hot Plugged Detect
|
|
IFCONN_NOTIFY_EVENT_PD_SINK,
|
|
IFCONN_NOTIFY_EVENT_PD_SOURCE,
|
|
IFCONN_NOTIFY_EVENT_PD_SINK_CAP,
|
|
IFCONN_NOTIFY_EVENT_DP_LOW,
|
|
IFCONN_NOTIFY_EVENT_DP_HIGH,
|
|
IFCONN_NOTIFY_EVENT_DP_IRQ,
|
|
IFCONN_NOTIFY_EVENT_MUIC_LOGICALLY_DETACH,
|
|
IFCONN_NOTIFY_EVENT_MUIC_LOGICALLY_ATTACH,
|
|
IFCONN_NOTIFY_EVENT_IN_HURRY,
|
|
IFCONN_NOTIFY_EVENT_RP_ATTACH,
|
|
IFCONN_NOTIFY_EVENT_PRSWAP_SNKTOSRC,
|
|
} ifconn_notifier_event_t;
|
|
|
|
typedef enum {
|
|
IFCONN_NOTIFY_DP_PIN_UNKNOWN = 0,
|
|
IFCONN_NOTIFY_DP_PIN_A,
|
|
IFCONN_NOTIFY_DP_PIN_B,
|
|
IFCONN_NOTIFY_DP_PIN_C,
|
|
IFCONN_NOTIFY_DP_PIN_D,
|
|
IFCONN_NOTIFY_DP_PIN_E,
|
|
IFCONN_NOTIFY_DP_PIN_F,
|
|
} ifconn_notifier_dp_pinconf_t;
|
|
|
|
typedef enum
|
|
{
|
|
S2M_RP_CURRENT_LEVEL_NONE = 0,
|
|
S2M_RP_CURRENT_LEVEL_DEFAULT,
|
|
S2M_RP_CURRENT_LEVEL2,
|
|
S2M_RP_CURRENT_LEVEL3,
|
|
} RP_CURRENT_LEVEL;
|
|
|
|
typedef struct _ifconn_power_list {
|
|
int accept;
|
|
int max_voltage;
|
|
int min_voltage;
|
|
int max_current;
|
|
int apdo;
|
|
} IFCONN_POWER_LIST;
|
|
|
|
typedef struct ifconn_pd_sink_status {
|
|
int event;
|
|
|
|
IFCONN_POWER_LIST power_list[MAX_PDO_NUM];
|
|
int has_apdo; // pd source has apdo or not
|
|
int available_pdo_num; // the number of available PDO
|
|
int selected_pdo_num; // selected number of PDO to change
|
|
int current_pdo_num; // current number of PDO
|
|
|
|
int pps_voltage;
|
|
int pps_current;
|
|
|
|
unsigned int rp_currentlvl; // rp current level by ccic
|
|
|
|
void (*fp_sec_pd_select_pdo)(int num);
|
|
int (*fp_sec_pd_select_pps)(int num, int ppsVol, int ppsCur);
|
|
} ifconn_pd_sink_status_t;
|
|
|
|
#ifndef CONFIG_USBPD_S2MM005
|
|
typedef enum {
|
|
S2M_RID_UNDEFINED = 0,
|
|
S2M_RID_000K,
|
|
S2M_RID_001K,
|
|
S2M_RID_255K,
|
|
S2M_RID_301K,
|
|
S2M_RID_523K,
|
|
S2M_RID_619K,
|
|
S2M_RID_OPEN,
|
|
} ifconn_notifier_rid_t;
|
|
|
|
struct pdic_notifier_data {
|
|
ifconn_pd_sink_status_t sink_status;
|
|
int event;
|
|
void *pusbpd;
|
|
struct usbpd_data *pd_data;
|
|
};
|
|
#endif
|
|
|
|
struct ifconn_notifier_template {
|
|
uint64_t src:4;
|
|
uint64_t dest:4;
|
|
uint64_t id:8;
|
|
uint64_t rid:8;
|
|
uint64_t attach:16;
|
|
uint64_t rprd:16;
|
|
uint64_t cable_type:16;
|
|
uint64_t event:16;
|
|
uint64_t drp:16;
|
|
uint64_t sub1:16;
|
|
uint64_t sub2:16;
|
|
uint64_t sub3:16;
|
|
uint64_t up_src:16;
|
|
uint64_t data_size:16;
|
|
ifconn_notifier_vbus_t vbus_type;
|
|
void *data;
|
|
void *pdata;
|
|
void *dest_dev;
|
|
};
|
|
|
|
struct ifconn_notifier {
|
|
struct notifier_block *nb[IFCONN_NOTIFY_MAX];
|
|
struct ifconn_notifier_template ifconn_template[IFCONN_NOTIFY_MAX];
|
|
struct delayed_work notify_work;
|
|
bool sent[IFCONN_NOTIFY_MAX];
|
|
void *dev;
|
|
struct blocking_notifier_head notifier_call_chain;
|
|
};
|
|
|
|
int ifconn_notifier_register(struct notifier_block *nb,
|
|
notifier_fn_t notifier,
|
|
ifconn_notifier_t listener,
|
|
ifconn_notifier_t src);
|
|
|
|
int ifconn_notifier_unregister(ifconn_notifier_t src,
|
|
ifconn_notifier_t listener);
|
|
|
|
int ifconn_notifier_notify(ifconn_notifier_t src,
|
|
ifconn_notifier_t dest,
|
|
int noti_id,
|
|
int event,
|
|
ifconn_notifier_data_param_t param_type,
|
|
void *data);
|
|
|
|
#endif /* __IFCONN_MANAGER_NOTIFIER_H__ */
|