Lines Matching +full:de +full:- +full:emphasis

1 /* SPDX-License-Identifier: GPL-2.0 */
3 * core.h - DesignWare USB3 DRD Core Header
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com
8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
20 #include <linux/dma-mapping.h>
640 * struct dwc3_event_buffer - Software event buffer representation
674 * struct dwc3_ep - device side endpoint representation
687 * @number: endpoint number (1 - 15)
692 * @name: a human readable name e.g. ep1out-bulk
733 * anything larger than 256 - I can't see why people would want to do
734 * this though - then this type needs to be changed.
830 * struct dwc3_trb - transfer request block (hw format)
831 * @bpl: DW0-3
832 * @bph: DW4-7
833 * @size: DW8-B
834 * @ctrl: DWC-F
844 * struct dwc3_hwparams - copy of HWPARAMS registers
878 #define DWC3_NUM_EPS(p) (((p)->hwparams3 & \
880 #define DWC3_NUM_IN_EPS(p) (((p)->hwparams3 & \
887 * struct dwc3_request - representation of a transfer request
904 * @mapped: true when request has been dma-mapped
924 #define DWC3_REQUEST_STATUS_UNKNOWN -1
938 * struct dwc3_scratchpad_array - hibernation scratchpad array
946 * struct dwc3 - representation of our controller
960 * @sysdev: pointer to the DMA-capable device
989 * @current_dr_role: current role of operation when in dual-role mode
990 * @desired_dr_role: desired role of operation when in dual-role mode
994 * - USBPHY_INTERFACE_MODE_UTMI
995 * - USBPHY_INTERFACE_MODE_UTMIW
1038 * 0 - utmi_sleep_n
1039 * 1 - utmi_l1_suspend_n
1047 * not needed for DWC_usb31 version 1.70a-ea06 and below
1068 * provide a free-running PHY clock.
1075 * @tx_de_emphasis_quirk: set if we enable Tx de-emphasis quirk
1076 * @tx_de_emphasis: Tx de-emphasis value
1077 * 0 - -6dB de-emphasis
1078 * 1 - -3.5dB de-emphasis
1079 * 2 - No de-emphasis
1080 * 3 - Reserved
1306 /* -------------------------------------------------------------------------- */
1322 * struct dwc3_event_depevt - Device Endpoint Events
1326 * 0x00 - Reserved
1327 * 0x01 - XferComplete
1328 * 0x02 - XferInProgress
1329 * 0x03 - XferNotReady
1330 * 0x04 - RxTxFifoEvt (IN->Underrun, OUT->Overrun)
1331 * 0x05 - Reserved
1332 * 0x06 - StreamEvt
1333 * 0x07 - EPCmdCmplt
1365 /* Control-only Status */
1381 * struct dwc3_event_devt - Device Events
1382 * @one_bit: indicates this is a non-endpoint event (not used)
1385 * 0 - DisconnEvt
1386 * 1 - USBRst
1387 * 2 - ConnectDone
1388 * 3 - ULStChng
1389 * 4 - WkUpEvt
1390 * 5 - Reserved
1391 * 6 - Suspend (EOPF on revisions 2.10a and prior)
1392 * 7 - SOF
1393 * 8 - Reserved
1394 * 9 - ErrticErr
1395 * 10 - CmdCmplt
1396 * 11 - EvntOverflow
1397 * 12 - VndrDevTstRcved
1412 * struct dwc3_event_gevt - Other Core Events
1413 * @one_bit: indicates this is a non-endpoint event (not used)
1415 * @phy_port_number: self-explanatory
1426 * union dwc3_event - representation of Event Buffer contents
1427 * @raw: raw 32-bit event
1442 * struct dwc3_gadget_ep_cmd_params - representation of endpoint command
1468 (dwc->ip == _ip##_IP)
1471 (DWC3_IP_IS(_ip) && dwc->revision == _ip##_REVISION_##_ver)
1474 (DWC3_IP_IS(_ip) && dwc->revision < _ip##_REVISION_##_ver)
1478 dwc->revision >= _ip##_REVISION_##_from && \
1480 dwc->revision <= _ip##_REVISION_##_to))
1484 dwc->version_type >= _ip##_VERSIONTYPE_##_from && \
1486 dwc->version_type <= _ip##_VERSIONTYPE_##_to))
1489 * dwc3_mdwidth - get MDWIDTH value in bits
1498 mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0); in dwc3_mdwidth()
1500 mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6); in dwc3_mdwidth()