summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola/regulator.c
blob: e21b9bec010ba4856ad7e7519262bf5e17bad188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* SPDX-License-Identifier: GPL-2.0-only */

#include <assert.h>
#include <console/console.h>
#include <soc/mt6366.h>
#include <soc/regulator.h>

#define MTK_REGULATOR_INVALID -1

static int get_mt6366_regulator_id(enum mtk_regulator regulator)
{
	switch (regulator) {
	case MTK_REGULATOR_VDDQ:
		return MT6366_VDDQ;
	case MTK_REGULATOR_VCORE:
		return MT6366_VCORE;
	case MTK_REGULATOR_VDRAM1:
		return MT6366_VDRAM1;
	case MTK_REGULATOR_VMCH:
		return MT6366_VMCH;
	case MTK_REGULATOR_VMC:
		return MT6366_VMC;
	case MTK_REGULATOR_VPROC12:
		return MT6366_VPROC12;
	case MTK_REGULATOR_VSRAM_PROC12:
		return MT6366_VSRAM_PROC12;
	case MTK_REGULATOR_VRF12:
		return MT6366_VRF12;
	case MTK_REGULATOR_VCN33:
		return MT6366_VCN33;
	case MTK_REGULATOR_VIO18:
		return MT6366_VIO18;
	default:
		return MTK_REGULATOR_INVALID;
	}
}

void mainboard_set_regulator_voltage(enum mtk_regulator regulator, uint32_t voltage_uv)
{
	int id;

	id = get_mt6366_regulator_id(regulator);
	if (id < 0) {
		printk(BIOS_ERR, "Invalid regulator ID: %d\n", regulator);
		return;
	}
	mt6366_set_voltage(id, voltage_uv);
}

uint32_t mainboard_get_regulator_voltage(enum mtk_regulator regulator)
{
	int id;

	id = get_mt6366_regulator_id(regulator);
	if (id < 0) {
		printk(BIOS_ERR, "Invalid regulator ID: %d\n", regulator);
		return 0;
	}
	return mt6366_get_voltage(id);
}