summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/cannonlake/include/soc/sata.h
blob: 869e44ce23e72dc2bfd2d2b751c794ea40b70f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */


#ifndef _SOC_SATA_H_
#define _SOC_SATA_H_

#include <stdint.h>

/* SATA Gen3 strength */
struct sata_port_config {
	uint8_t RxGen3EqBoostMagEnable;
	uint8_t RxGen3EqBoostMag;
	uint8_t TxGen3DownscaleAmpEnable;
	uint8_t TxGen3DownscaleAmp;
	uint8_t TxGen3DeEmphEnable;
	uint8_t TxGen3DeEmph;
};

#endif