blob: 0231ef0a283db9d85d9fb137974bf21b5f51c4bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** @file
* Header defining the Base addresses, sizes, flags etc for Erratas
*
* Copyright 2020 NXP
*
SPDX-License-Identifier: BSD-2-Clause-Patent
*
**/
#ifndef ERRATUM_H__
#define ERRATUM_H__
#define USB_TXVREFTUNE 0x9
#define USB_SQRXTUNE 0xFC7FFFFF
#define USB_PCSTXSWINGFULL 0x47
#define USB_PHY_RX_EQ_VAL_1 0x0000
#define USB_PHY_RX_EQ_VAL_2 0x8000
#define USB_PHY_RX_EQ_VAL_3 0x8003
#define USB_PHY_RX_EQ_VAL_4 0x800b
#define USB_PHY_RX_OVRD_IN_HI 0x200c
#endif
|