blob: 65b348ee42f2c5734ac76903bf310baa0d34d501 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Ying Zhang8876a512014-10-31 18:06:18 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Ying Zhang8876a512014-10-31 18:06:18 +08004 */
5
6#ifndef __VID_H_
7#define __VID_H_
8
9#define IR36021_LOOP1_MANUAL_ID_OFFSET 0x6A
10#define IR36021_LOOP1_VOUT_OFFSET 0x9A
11#define IR36021_MFR_ID_OFFSET 0x92
12#define IR36021_MFR_ID 0x43
Ying Zhang7ad5eff2016-01-22 12:15:12 +080013#define IR36021_INTEL_MODE_OOFSET 0x14
14#define IR36021_MODE_MASK 0x20
15#define IR36021_INTEL_MODE 0x00
16#define IR36021_AMD_MODE 0x20
Ying Zhang8876a512014-10-31 18:06:18 +080017
18/* step the IR regulator in 5mV increments */
19#define IR_VDD_STEP_DOWN 5
20#define IR_VDD_STEP_UP 5
Biwen Li71ecd382020-10-12 20:07:35 +080021
22/* LTC3882 */
23#define PMBUS_CMD_WRITE_PROTECT 0x10
24/*
25 * WRITE_PROTECT command supported values
26 * 0x80: Disable all writes except WRITE_PROTECT, PAGE,
27 * STORE_USER_ALL and MFR_EE_UNLOCK commands.
28 * 0x40: Disable all writes except WRITE_PROTECT, PAGE, STORE_USER_ALL,
29 * MFR_EE_UNLOCK, OPERATION, CLEAR_PEAKS and CLEAR_FAULTS commands.
30 * Individual faults can also be cleared by writing a 1 to the
31 * respective status bit.
32 * 0x20: Disable all writes except WRITE_PROTECT, PAGE, STORE_USER_ ALL,
33 * MFR_EE_UNLOCK, OPERATION, CLEAR_PEAKS, CLEAR_FAULTS, ON_OFF_CONFIG
34 * and VOUT_COMMAND commands. Individual faults can be cleared by
35 * writing a 1 to the respective status bit.
36 * 0x00: Enables write to all commands
37 */
38#define EN_WRITE_ALL_CMD (0)
39
Ying Zhang8876a512014-10-31 18:06:18 +080040int adjust_vdd(ulong vdd_override);
41
42#endif /* __VID_H_ */