-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: usb: aqc111: Add implementation of read and write commands
Read/write command register defines and functions Signed-off-by: Dmitry Bezrukov <dmitry.bezrukov@aquantia.com> Signed-off-by: Igor Russkikh <igor.russkikh@aquantia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Dmitry Bezrukov
authored and
David S. Miller
committed
Nov 27, 2018
1 parent
7cea2d4
commit 619fcb4
Showing
2 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later | ||
* Aquantia Corp. Aquantia AQtion USB to 5GbE Controller | ||
* Copyright (C) 2003-2005 David Hollis <dhollis@davehollis.com> | ||
* Copyright (C) 2005 Phil Chang <pchang23@sbcglobal.net> | ||
* Copyright (C) 2002-2003 TiVo Inc. | ||
* Copyright (C) 2017-2018 ASIX | ||
* Copyright (C) 2018 Aquantia Corp. | ||
*/ | ||
|
||
#ifndef __LINUX_USBNET_AQC111_H | ||
#define __LINUX_USBNET_AQC111_H | ||
|
||
#define AQ_PHY_POWER 0x31 | ||
|
||
#define AQ_USB_PHY_SET_TIMEOUT 10000 | ||
#define AQ_USB_SET_TIMEOUT 4000 | ||
|
||
#endif /* __LINUX_USBNET_AQC111_H */ |