• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 
3 #ifndef __USB_TYPEC_ALTMODE_H__
4 #define __USB_TYPEC_ALTMODE_H__
5 
6 #include <linux/usb/typec_altmode.h>
7 #include <linux/android_kabi.h>
8 
9 struct bus_type;
10 struct typec_mux;
11 
12 struct altmode {
13 	unsigned int			id;
14 	struct typec_altmode		adev;
15 	struct typec_mux		*mux;
16 
17 	enum typec_port_data		roles;
18 
19 	struct attribute		*attrs[5];
20 	char				group_name[8];
21 	struct attribute_group		group;
22 	const struct attribute_group	*groups[2];
23 
24 	struct altmode			*partner;
25 	struct altmode			*plug[2];
26 	ANDROID_KABI_RESERVE(1);
27 };
28 
29 #define to_altmode(d) container_of(d, struct altmode, adev)
30 
31 extern struct bus_type typec_bus;
32 extern const struct device_type typec_altmode_dev_type;
33 
34 #define is_typec_altmode(_dev_) (_dev_->type == &typec_altmode_dev_type)
35 
36 #endif /* __USB_TYPEC_ALTMODE_H__ */
37