cregit-Linux how code gets into the kernel

Release 4.8 include/linux/extcon.h

Directory: include/linux
/*
 *  External connector (extcon) class driver
 *
 * Copyright (C) 2015 Samsung Electronics
 * Author: Chanwoo Choi <cw00.choi@samsung.com>
 *
 * Copyright (C) 2012 Samsung Electronics
 * Author: Donggeun Kim <dg77.kim@samsung.com>
 * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
 *
 * based on switch class driver
 * Copyright (C) 2008 Google, Inc.
 * Author: Mike Lockwood <lockwood@android.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * 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_EXTCON_H__

#define __LINUX_EXTCON_H__

#include <linux/device.h>

/*
 * Define the unique id of supported external connectors
 */

#define EXTCON_NONE		0

/* USB external connector */

#define EXTCON_USB		1

#define EXTCON_USB_HOST		2

/* Charging external connector */

#define EXTCON_CHG_USB_SDP	5	
/* Standard Downstream Port */

#define EXTCON_CHG_USB_DCP	6	
/* Dedicated Charging Port */

#define EXTCON_CHG_USB_CDP	7	
/* Charging Downstream Port */

#define EXTCON_CHG_USB_ACA	8	
/* Accessory Charger Adapter */

#define EXTCON_CHG_USB_FAST	9

#define EXTCON_CHG_USB_SLOW	10

/* Jack external connector */

#define EXTCON_JACK_MICROPHONE	20

#define EXTCON_JACK_HEADPHONE	21

#define EXTCON_JACK_LINE_IN	22

#define EXTCON_JACK_LINE_OUT	23

#define EXTCON_JACK_VIDEO_IN	24

#define EXTCON_JACK_VIDEO_OUT	25

#define EXTCON_JACK_SPDIF_IN	26	
/* Sony Philips Digital InterFace */

#define EXTCON_JACK_SPDIF_OUT	27

/* Display external connector */

#define EXTCON_DISP_HDMI	40	
/* High-Definition Multimedia Interface */

#define EXTCON_DISP_MHL		41	
/* Mobile High-Definition Link */

#define EXTCON_DISP_DVI		42	
/* Digital Visual Interface */

#define EXTCON_DISP_VGA		43	
/* Video Graphics Array */

/* Miscellaneous external connector */

#define EXTCON_DOCK		60

#define EXTCON_JIG		61

#define EXTCON_MECHANICAL	62


#define EXTCON_NUM		63

struct extcon_cable;

/**
 * struct extcon_dev - An extcon device represents one external connector.
 * @name:               The name of this extcon device. Parent device name is
 *                      used if NULL.
 * @supported_cable:    Array of supported cable names ending with EXTCON_NONE.
 *                      If supported_cable is NULL, cable name related APIs
 *                      are disabled.
 * @mutually_exclusive: Array of mutually exclusive set of cables that cannot
 *                      be attached simultaneously. The array should be
 *                      ending with NULL or be NULL (no mutually exclusive
 *                      cables). For example, if it is { 0x7, 0x30, 0}, then,
 *                      {0, 1}, {0, 1, 2}, {0, 2}, {1, 2}, or {4, 5} cannot
 *                      be attached simulataneously. {0x7, 0} is equivalent to
 *                      {0x3, 0x6, 0x5, 0}. If it is {0xFFFFFFFF, 0}, there
 *                      can be no simultaneous connections.
 * @dev:                Device of this extcon.
 * @state:              Attach/detach state of this extcon. Do not provide at
 *                      register-time.
 * @nh:                 Notifier for the state change events from this extcon
 * @entry:              To support list of extcon devices so that users can
 *                      search for extcon devices based on the extcon name.
 * @lock:
 * @max_supported:      Internal value to store the number of cables.
 * @extcon_dev_type:    Device_type struct to provide attribute_groups
 *                      customized for each extcon device.
 * @cables:             Sysfs subdirectories. Each represents one cable.
 *
 * In most cases, users only need to provide "User initializing data" of
 * this struct when registering an extcon. In some exceptional cases,
 * optional callbacks may be needed. However, the values in "internal data"
 * are overwritten by register function.
 */

struct extcon_dev {
	/* Optional user initializing data */
	
const char *name;
	
const unsigned int *supported_cable;
	
const u32 *mutually_exclusive;

	/* Internal data. Please do not set. */
	
struct device dev;
	
struct raw_notifier_head *nh;
	
struct list_head entry;
	
int max_supported;
	
spinlock_t lock;	/* could be called by irq handler */
	
u32 state;

	/* /sys/class/extcon/.../cable.n/... */
	
struct device_type extcon_dev_type;
	
struct extcon_cable *cables;

	/* /sys/class/extcon/.../mutually_exclusive/... */
	
struct attribute_group attr_g_muex;
	
struct attribute **attrs_muex;
	
struct device_attribute *d_attrs_muex;
};

#if IS_ENABLED(CONFIG_EXTCON)

/*
 * Following APIs are for notifiers or configurations.
 * Notifiers are the external port and connection devices.
 */
extern int extcon_dev_register(struct extcon_dev *edev);
extern void extcon_dev_unregister(struct extcon_dev *edev);
extern int devm_extcon_dev_register(struct device *dev,
				    struct extcon_dev *edev);
extern void devm_extcon_dev_unregister(struct device *dev,
				       struct extcon_dev *edev);
extern struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name);

/*
 * Following APIs control the memory of extcon device.
 */
extern struct extcon_dev *extcon_dev_allocate(const unsigned int *cable);
extern void extcon_dev_free(struct extcon_dev *edev);
extern struct extcon_dev *devm_extcon_dev_allocate(struct device *dev,
						   const unsigned int *cable);
extern void devm_extcon_dev_free(struct device *dev, struct extcon_dev *edev);

/*
 * get/set/update_state access the 32b encoded state value, which represents
 * states of all possible cables of the multistate port. For example, if one
 * calls extcon_set_state(edev, 0x7), it may mean that all the three cables
 * are attached to the port.
 */

static inline u32 extcon_get_state(struct extcon_dev *edev) { return edev->state; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham17100.00%1100.00%
Total17100.00%1100.00%

extern int extcon_set_state(struct extcon_dev *edev, u32 state); extern int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state); /* * get/set_cable_state access each bit of the 32b encoded state value. * They are used to access the status of each cable based on the cable id. */ extern int extcon_get_cable_state_(struct extcon_dev *edev, unsigned int id); extern int extcon_set_cable_state_(struct extcon_dev *edev, unsigned int id, bool cable_state); /* * Following APIs are to monitor every action of a notifier. * Registrar gets notified for every external port of a connection device. * Probably this could be used to debug an action of notifier; however, * we do not recommend to use this for normal 'notifiee' device drivers who * want to be notified by a specific external port of the notifier. */ extern int extcon_register_notifier(struct extcon_dev *edev, unsigned int id, struct notifier_block *nb); extern int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id, struct notifier_block *nb); extern int devm_extcon_register_notifier(struct device *dev, struct extcon_dev *edev, unsigned int id, struct notifier_block *nb); extern void devm_extcon_unregister_notifier(struct device *dev, struct extcon_dev *edev, unsigned int id, struct notifier_block *nb); /* * Following API get the extcon device from devicetree. * This function use phandle of devicetree to get extcon device directly. */ extern struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index); /* Following API to get information of extcon device */ extern const char *extcon_get_edev_name(struct extcon_dev *edev); #else /* CONFIG_EXTCON */
static inline int extcon_dev_register(struct extcon_dev *edev) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham15100.00%1100.00%
Total15100.00%1100.00%


static inline void extcon_dev_unregister(struct extcon_dev *edev) { }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham11100.00%1100.00%
Total11100.00%1100.00%


static inline int devm_extcon_dev_register(struct device *dev, struct extcon_dev *edev) { return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
sangjung woosangjung woo21100.00%1100.00%
Total21100.00%1100.00%


static inline void devm_extcon_dev_unregister(struct device *dev, struct extcon_dev *edev) { }

Contributors

PersonTokensPropCommitsCommitProp
sangjung woosangjung woo16100.00%1100.00%
Total16100.00%1100.00%


static inline struct extcon_dev *extcon_dev_allocate(const unsigned int *cable) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi22100.00%3100.00%
Total22100.00%3100.00%


static inline void extcon_dev_free(struct extcon_dev *edev) { }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi11100.00%1100.00%
Total11100.00%1100.00%


static inline struct extcon_dev *devm_extcon_dev_allocate(struct device *dev, const unsigned int *cable) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi27100.00%3100.00%
Total27100.00%3100.00%


static inline void devm_extcon_dev_free(struct extcon_dev *edev) { }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi11100.00%1100.00%
Total11100.00%1100.00%


static inline u32 extcon_get_state(struct extcon_dev *edev) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham15100.00%1100.00%
Total15100.00%1100.00%


static inline int extcon_set_state(struct extcon_dev *edev, u32 state) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham18100.00%2100.00%
Total18100.00%2100.00%


static inline int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham21100.00%2100.00%
Total21100.00%2100.00%


static inline int extcon_get_cable_state_(struct extcon_dev *edev, unsigned int id) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham1684.21%133.33%
chanwoo choichanwoo choi315.79%266.67%
Total19100.00%3100.00%


static inline int extcon_set_cable_state_(struct extcon_dev *edev, unsigned int id, bool cable_state) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham1986.36%133.33%
chanwoo choichanwoo choi313.64%266.67%
Total22100.00%3100.00%


static inline struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
donggeun kimdonggeun kim17100.00%1100.00%
Total17100.00%1100.00%


static inline int extcon_register_notifier(struct extcon_dev *edev, unsigned int id, struct notifier_block *nb) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
donggeun kimdonggeun kim2083.33%133.33%
chanwoo choichanwoo choi416.67%266.67%
Total24100.00%3100.00%


static inline int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id, struct notifier_block *nb) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
donggeun kimdonggeun kim2083.33%133.33%
chanwoo choichanwoo choi416.67%266.67%
Total24100.00%3100.00%


static inline int devm_extcon_register_notifier(struct device *dev, struct extcon_dev *edev, unsigned int id, struct notifier_block *nb) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi30100.00%1100.00%
Total30100.00%1100.00%


static inline void devm_extcon_unregister_notifier(struct device *dev, struct extcon_dev *edev, unsigned int id, struct notifier_block *nb) { }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi25100.00%1100.00%
Total25100.00%1100.00%


static inline struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) { return ERR_PTR(-ENODEV); }

Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi24100.00%1100.00%
Total24100.00%1100.00%

#endif /* CONFIG_EXTCON */ /* * Following structure and API are deprecated. EXTCON remains the function * definition to prevent the build break. */ struct extcon_specific_cable_nb { struct notifier_block *user_nb; int cable_index; struct extcon_dev *edev; unsigned long previous_value; };
static inline int extcon_register_interest(struct extcon_specific_cable_nb *obj, const char *extcon_name, const char *cable_name, struct notifier_block *nb) { return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham2993.55%150.00%
chanwoo choichanwoo choi26.45%150.00%
Total31100.00%2100.00%


static inline int extcon_unregister_interest(struct extcon_specific_cable_nb *obj) { return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
myungjoo hammyungjoo ham1275.00%133.33%
chanwoo choichanwoo choi425.00%266.67%
Total16100.00%3100.00%

#endif /* __LINUX_EXTCON_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
chanwoo choichanwoo choi47048.25%1466.67%
myungjoo hammyungjoo ham32533.37%314.29%
donggeun kimdonggeun kim11011.29%14.76%
sangjung woosangjung woo676.88%14.76%
peter meerwaldpeter meerwald10.10%14.76%
mark brownmark brown10.10%14.76%
Total974100.00%21100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.