Nishad Kamdar | 2e75973 | 2020-03-28 16:41:15 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Andrzej Pietrasiewicz | f466c63 | 2013-05-28 09:15:57 +0200 | [diff] [blame] | 2 | /* |
| 3 | * u_rndis.h |
| 4 | * |
| 5 | * Utility definitions for the subset function |
| 6 | * |
| 7 | * Copyright (c) 2013 Samsung Electronics Co., Ltd. |
| 8 | * http://www.samsung.com |
| 9 | * |
Andrzej Pietrasiewicz | 1b4a3b5 | 2018-12-13 14:24:57 +0100 | [diff] [blame] | 10 | * Author: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com> |
Andrzej Pietrasiewicz | f466c63 | 2013-05-28 09:15:57 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef U_RNDIS_H |
| 14 | #define U_RNDIS_H |
| 15 | |
| 16 | #include <linux/usb/composite.h> |
| 17 | |
| 18 | struct f_rndis_opts { |
| 19 | struct usb_function_instance func_inst; |
| 20 | u32 vendor_id; |
| 21 | const char *manufacturer; |
| 22 | struct net_device *net; |
| 23 | bool bound; |
| 24 | bool borrowed_net; |
Andrzej Pietrasiewicz | b3df2fa | 2013-05-28 09:16:01 +0200 | [diff] [blame] | 25 | |
Andrew Gabbasov | ff74745 | 2017-09-30 08:54:52 -0700 | [diff] [blame] | 26 | struct config_group *rndis_interf_group; |
Andrzej Pietrasiewicz | de7a8d2 | 2014-05-08 14:06:24 +0200 | [diff] [blame] | 27 | struct usb_os_desc rndis_os_desc; |
| 28 | char rndis_ext_compat_id[16]; |
| 29 | |
David Lechner | 73517cf | 2017-07-29 20:12:57 -0500 | [diff] [blame] | 30 | u8 class; |
| 31 | u8 subclass; |
| 32 | u8 protocol; |
| 33 | |
Andrzej Pietrasiewicz | b3df2fa | 2013-05-28 09:16:01 +0200 | [diff] [blame] | 34 | /* |
| 35 | * Read/write access to configfs attributes is handled by configfs. |
| 36 | * |
| 37 | * This is to protect the data from concurrent access by read/write |
| 38 | * and create symlink/remove symlink. |
| 39 | */ |
| 40 | struct mutex lock; |
| 41 | int refcnt; |
Andrzej Pietrasiewicz | f466c63 | 2013-05-28 09:15:57 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Andrzej Pietrasiewicz | f466c63 | 2013-05-28 09:15:57 +0200 | [diff] [blame] | 44 | void rndis_borrow_net(struct usb_function_instance *f, struct net_device *net); |
| 45 | |
| 46 | #endif /* U_RNDIS_H */ |