summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/smbus/smbuslib.h
blob: 2d8774c6893b7d22fde361e56259de44709f81a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef SOC_INTEL_COMMON_BLOCK_SMBUS__LIB_H
#define SOC_INTEL_COMMON_BLOCK_SMBUS__LIB_H

#include <stdint.h>

/* SMBus IO Base Address */
#define SMBUS_IO_BASE	0xefa0

/* PCI Configuration Space : SMBus */
#define HOSTC	0x40
#define HST_EN	(1 << 0)
/* SMBus I/O bits. */
#define SMBHSTSTAT	0x0
#define SMBHSTCTL	0x2
#define SMBHSTCMD	0x3
#define SMBXMITADD	0x4
#define SMBHSTDAT0	0x5

#define SMBUS_TIMEOUT	15	/* 15ms */

#endif	/* SOC_INTEL_COMMON_BLOCK_SMBUS__LIB_H */