]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-omap2/am33xx/sys_info.c
am33xx: Add a function to query MPU voltage in uV
[people/ms/u-boot.git] / arch / arm / mach-omap2 / am33xx / sys_info.c
CommitLineData
5655108a
CN
1/*
2 * sys_info.c
3 *
4 * System information functions
5 *
6 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7 *
8 * Derived from Beagle Board and 3430 SDP code by
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
11 *
1a459660 12 * SPDX-License-Identifier: GPL-2.0+
5655108a
CN
13 */
14
15#include <common.h>
16#include <asm/io.h>
17#include <asm/arch/sys_proto.h>
18#include <asm/arch/cpu.h>
19#include <asm/arch/clock.h>
9721027a 20#include <power/tps65910.h>
52d84869 21#include <linux/compiler.h>
5655108a
CN
22
23struct ctrl_stat *cstat = (struct ctrl_stat *)CTRL_BASE;
24
25/**
26 * get_cpu_rev(void) - extract rev info
27 */
28u32 get_cpu_rev(void)
29{
30 u32 id;
31 u32 rev;
32
33 id = readl(DEVICE_ID);
34 rev = (id >> 28) & 0xff;
35
36 return rev;
37}
38
39/**
40 * get_cpu_type(void) - extract cpu info
41 */
42u32 get_cpu_type(void)
43{
44 u32 id = 0;
45 u32 partnum;
46
47 id = readl(DEVICE_ID);
48 partnum = (id >> 12) & 0xffff;
49
50 return partnum;
51}
52
5655108a
CN
53/**
54 * get_sysboot_value(void) - return SYS_BOOT[4:0]
55 */
56u32 get_sysboot_value(void)
57{
63a7578e 58 return readl(&cstat->statusreg) & SYSBOOT_MASK;
5655108a
CN
59}
60
fbd6295d
LV
61u32 get_sys_clk_index(void)
62{
63 struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
64 u32 ind = readl(&ctrl->statusreg);
65
66#ifdef CONFIG_AM43XX
67 u32 src;
68 src = (ind & CTRL_CRYSTAL_FREQ_SRC_MASK) >> CTRL_CRYSTAL_FREQ_SRC_SHIFT;
69 if (src == CTRL_CRYSTAL_FREQ_SRC_EFUSE) /* Value read from EFUSE */
70 return ((ind & CTRL_CRYSTAL_FREQ_SELECTION_MASK) >>
71 CTRL_CRYSTAL_FREQ_SELECTION_SHIFT);
72 else /* Value read from SYS BOOT pins */
73#endif
74 return ((ind & CTRL_SYSBOOT_15_14_MASK) >>
75 CTRL_SYSBOOT_15_14_SHIFT);
76}
77
78
5655108a 79#ifdef CONFIG_DISPLAY_CPUINFO
21254713
SA
80static char *cpu_revs[] = {
81 "1.0",
82 "2.0",
83 "2.1"};
84
a051a99f
TK
85static char *cpu_revs_am43xx[] = {
86 "1.0",
87 "1.1",
88 "1.2"};
21254713
SA
89
90static char *dev_types[] = {
91 "TST",
92 "EMU",
93 "HS",
94 "GP"};
95
5655108a
CN
96/**
97 * Print CPU information
98 */
99int print_cpuinfo(void)
100{
21254713 101 char *cpu_s, *sec_s, *rev_s;
a051a99f 102 char **cpu_rev_arr = cpu_revs;
5655108a
CN
103
104 switch (get_cpu_type()) {
105 case AM335X:
106 cpu_s = "AM335X";
107 break;
8b029f22
MP
108 case TI81XX:
109 cpu_s = "TI81XX";
110 break;
1f957708
LV
111 case AM437X:
112 cpu_s = "AM437X";
a051a99f 113 cpu_rev_arr = cpu_revs_am43xx;
1f957708 114 break;
5655108a 115 default:
21254713 116 cpu_s = "Unknown CPU type";
5655108a
CN
117 break;
118 }
119
21254713 120 if (get_cpu_rev() < ARRAY_SIZE(cpu_revs))
a051a99f 121 rev_s = cpu_rev_arr[get_cpu_rev()];
21254713
SA
122 else
123 rev_s = "?";
124
125 if (get_device_type() < ARRAY_SIZE(dev_types))
126 sec_s = dev_types[get_device_type()];
127 else
5655108a 128 sec_s = "?";
5655108a 129
1f957708 130 printf("CPU : %s-%s rev %s\n", cpu_s, sec_s, rev_s);
5655108a
CN
131
132 return 0;
133}
134#endif /* CONFIG_DISPLAY_CPUINFO */
9721027a
TR
135
136#ifdef CONFIG_AM33XX
137int am335x_get_efuse_mpu_max_freq(struct ctrl_dev *cdev)
138{
139 int sil_rev;
140
141 sil_rev = readl(&cdev->deviceid) >> 28;
142
59041a50
LV
143 if (sil_rev == 0) {
144 /* No efuse in PG 1.0. Use max speed */
145 return MPUPLL_M_720;
146 } else if (sil_rev >= 1) {
9721027a 147 /* Check what the efuse says our max speed is. */
59041a50 148 int efuse_arm_mpu_max_freq, package_type;
9721027a 149 efuse_arm_mpu_max_freq = readl(&cdev->efuse_sma);
59041a50
LV
150 package_type = (efuse_arm_mpu_max_freq & PACKAGE_TYPE_MASK) >>
151 PACKAGE_TYPE_SHIFT;
152
153 /* PG 2.0, efuse may not be set. */
154 if (package_type == PACKAGE_TYPE_UNDEFINED || package_type ==
155 PACKAGE_TYPE_RESERVED)
156 return MPUPLL_M_800;
157
9721027a
TR
158 switch ((efuse_arm_mpu_max_freq & DEVICE_ID_MASK)) {
159 case AM335X_ZCZ_1000:
160 return MPUPLL_M_1000;
161 case AM335X_ZCZ_800:
162 return MPUPLL_M_800;
163 case AM335X_ZCZ_720:
164 return MPUPLL_M_720;
165 case AM335X_ZCZ_600:
166 case AM335X_ZCE_600:
167 return MPUPLL_M_600;
168 case AM335X_ZCZ_300:
169 case AM335X_ZCE_300:
170 return MPUPLL_M_300;
171 }
172 }
173
59041a50 174 /* unknown, use the PG1.0 max */
9721027a
TR
175 return MPUPLL_M_720;
176}
177
c07bf9be
FB
178int am335x_get_mpu_vdd(int sil_rev, int frequency)
179{
180 int sel_mask = am335x_get_tps65910_mpu_vdd(sil_rev, frequency);
181
182 switch (sel_mask) {
183 case TPS65910_OP_REG_SEL_1_3_2_5:
184 return 1325000;
185 case TPS65910_OP_REG_SEL_1_2_0:
186 return 1200000;
187 case TPS65910_OP_REG_SEL_1_1_0:
188 return 1100000;
189 default:
190 return 1262500;
191 }
192}
193
9721027a
TR
194int am335x_get_tps65910_mpu_vdd(int sil_rev, int frequency)
195{
59041a50
LV
196 /* For PG2.0 and later, we have one set of values. */
197 if (sil_rev >= 1) {
9721027a
TR
198 switch (frequency) {
199 case MPUPLL_M_1000:
200 return TPS65910_OP_REG_SEL_1_3_2_5;
201 case MPUPLL_M_800:
202 return TPS65910_OP_REG_SEL_1_2_6;
203 case MPUPLL_M_720:
204 return TPS65910_OP_REG_SEL_1_2_0;
205 case MPUPLL_M_600:
59041a50 206 case MPUPLL_M_500:
9721027a 207 case MPUPLL_M_300:
59041a50 208 return TPS65910_OP_REG_SEL_1_1_0;
9721027a
TR
209 }
210 }
211
59041a50
LV
212 /* Default to PG1.0 values. */
213 return TPS65910_OP_REG_SEL_1_2_6;
9721027a
TR
214}
215#endif