blob: 17b46619b570bbc4ad3796ff543bbdc60094fd61 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chandan Nath56551082011-10-14 02:58:22 +00002/*
3 * sys_info.c
4 *
5 * System information functions
6 *
7 * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
8 *
9 * Derived from Beagle Board and 3430 SDP code by
10 * Richard Woodruff <r-woodruff2@ti.com>
11 * Syed Mohammed Khasim <khasim@ti.com>
Chandan Nath56551082011-10-14 02:58:22 +000012 */
13
14#include <common.h>
15#include <asm/io.h>
16#include <asm/arch/sys_proto.h>
17#include <asm/arch/cpu.h>
18#include <asm/arch/clock.h>
Tom Rini97210272013-08-30 16:28:46 -040019#include <power/tps65910.h>
Igor Grinberg52d84862014-11-05 13:29:54 +020020#include <linux/compiler.h>
Chandan Nath56551082011-10-14 02:58:22 +000021
22struct ctrl_stat *cstat = (struct ctrl_stat *)CTRL_BASE;
23
24/**
25 * get_cpu_rev(void) - extract rev info
26 */
27u32 get_cpu_rev(void)
28{
29 u32 id;
30 u32 rev;
31
32 id = readl(DEVICE_ID);
33 rev = (id >> 28) & 0xff;
34
35 return rev;
36}
37
38/**
39 * get_cpu_type(void) - extract cpu info
40 */
41u32 get_cpu_type(void)
42{
43 u32 id = 0;
44 u32 partnum;
45
46 id = readl(DEVICE_ID);
47 partnum = (id >> 12) & 0xffff;
48
49 return partnum;
50}
51
52/**
Chandan Nath56551082011-10-14 02:58:22 +000053 * get_sysboot_value(void) - return SYS_BOOT[4:0]
54 */
55u32 get_sysboot_value(void)
56{
Masahiro Yamada63a75782016-09-06 22:17:38 +090057 return readl(&cstat->statusreg) & SYSBOOT_MASK;
Chandan Nath56551082011-10-14 02:58:22 +000058}
59
Lokesh Vutlafbd62952017-05-05 12:59:10 +053060u32 get_sys_clk_index(void)
61{
62 struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
63 u32 ind = readl(&ctrl->statusreg);
64
65#ifdef CONFIG_AM43XX
66 u32 src;
67 src = (ind & CTRL_CRYSTAL_FREQ_SRC_MASK) >> CTRL_CRYSTAL_FREQ_SRC_SHIFT;
68 if (src == CTRL_CRYSTAL_FREQ_SRC_EFUSE) /* Value read from EFUSE */
69 return ((ind & CTRL_CRYSTAL_FREQ_SELECTION_MASK) >>
70 CTRL_CRYSTAL_FREQ_SELECTION_SHIFT);
71 else /* Value read from SYS BOOT pins */
72#endif
73 return ((ind & CTRL_SYSBOOT_15_14_MASK) >>
74 CTRL_SYSBOOT_15_14_SHIFT);
75}
76
77
Chandan Nath56551082011-10-14 02:58:22 +000078#ifdef CONFIG_DISPLAY_CPUINFO
Sergey Alyoshin21254712014-05-22 11:56:03 +040079static char *cpu_revs[] = {
80 "1.0",
81 "2.0",
82 "2.1"};
83
Tero Kristoa051a992017-03-16 09:48:54 +020084static char *cpu_revs_am43xx[] = {
85 "1.0",
86 "1.1",
87 "1.2"};
Sergey Alyoshin21254712014-05-22 11:56:03 +040088
89static char *dev_types[] = {
90 "TST",
91 "EMU",
92 "HS",
93 "GP"};
94
Chandan Nath56551082011-10-14 02:58:22 +000095/**
96 * Print CPU information
97 */
98int print_cpuinfo(void)
99{
Sergey Alyoshin21254712014-05-22 11:56:03 +0400100 char *cpu_s, *sec_s, *rev_s;
Tero Kristoa051a992017-03-16 09:48:54 +0200101 char **cpu_rev_arr = cpu_revs;
Chandan Nath56551082011-10-14 02:58:22 +0000102
103 switch (get_cpu_type()) {
104 case AM335X:
105 cpu_s = "AM335X";
106 break;
Matt Porter8b029f22013-03-15 10:07:06 +0000107 case TI81XX:
108 cpu_s = "TI81XX";
109 break;
Lokesh Vutla1f957702016-10-04 09:34:50 +0530110 case AM437X:
111 cpu_s = "AM437X";
Tero Kristoa051a992017-03-16 09:48:54 +0200112 cpu_rev_arr = cpu_revs_am43xx;
Lokesh Vutla1f957702016-10-04 09:34:50 +0530113 break;
Chandan Nath56551082011-10-14 02:58:22 +0000114 default:
Sergey Alyoshin21254712014-05-22 11:56:03 +0400115 cpu_s = "Unknown CPU type";
Chandan Nath56551082011-10-14 02:58:22 +0000116 break;
117 }
118
Sergey Alyoshin21254712014-05-22 11:56:03 +0400119 if (get_cpu_rev() < ARRAY_SIZE(cpu_revs))
Tero Kristoa051a992017-03-16 09:48:54 +0200120 rev_s = cpu_rev_arr[get_cpu_rev()];
Sergey Alyoshin21254712014-05-22 11:56:03 +0400121 else
122 rev_s = "?";
123
124 if (get_device_type() < ARRAY_SIZE(dev_types))
125 sec_s = dev_types[get_device_type()];
126 else
Chandan Nath56551082011-10-14 02:58:22 +0000127 sec_s = "?";
Chandan Nath56551082011-10-14 02:58:22 +0000128
Lokesh Vutla1f957702016-10-04 09:34:50 +0530129 printf("CPU : %s-%s rev %s\n", cpu_s, sec_s, rev_s);
Chandan Nath56551082011-10-14 02:58:22 +0000130
131 return 0;
132}
133#endif /* CONFIG_DISPLAY_CPUINFO */
Tom Rini97210272013-08-30 16:28:46 -0400134
135#ifdef CONFIG_AM33XX
136int am335x_get_efuse_mpu_max_freq(struct ctrl_dev *cdev)
137{
138 int sil_rev;
139
140 sil_rev = readl(&cdev->deviceid) >> 28;
141
Lokesh Vutla59041a52017-05-05 12:59:08 +0530142 if (sil_rev == 0) {
143 /* No efuse in PG 1.0. Use max speed */
144 return MPUPLL_M_720;
145 } else if (sil_rev >= 1) {
Tom Rini97210272013-08-30 16:28:46 -0400146 /* Check what the efuse says our max speed is. */
Lokesh Vutla59041a52017-05-05 12:59:08 +0530147 int efuse_arm_mpu_max_freq, package_type;
Tom Rini97210272013-08-30 16:28:46 -0400148 efuse_arm_mpu_max_freq = readl(&cdev->efuse_sma);
Lokesh Vutla59041a52017-05-05 12:59:08 +0530149 package_type = (efuse_arm_mpu_max_freq & PACKAGE_TYPE_MASK) >>
150 PACKAGE_TYPE_SHIFT;
151
152 /* PG 2.0, efuse may not be set. */
153 if (package_type == PACKAGE_TYPE_UNDEFINED || package_type ==
154 PACKAGE_TYPE_RESERVED)
155 return MPUPLL_M_800;
156
Tom Rini97210272013-08-30 16:28:46 -0400157 switch ((efuse_arm_mpu_max_freq & DEVICE_ID_MASK)) {
158 case AM335X_ZCZ_1000:
159 return MPUPLL_M_1000;
160 case AM335X_ZCZ_800:
161 return MPUPLL_M_800;
162 case AM335X_ZCZ_720:
163 return MPUPLL_M_720;
164 case AM335X_ZCZ_600:
165 case AM335X_ZCE_600:
166 return MPUPLL_M_600;
167 case AM335X_ZCZ_300:
168 case AM335X_ZCE_300:
169 return MPUPLL_M_300;
170 }
171 }
172
Lokesh Vutla59041a52017-05-05 12:59:08 +0530173 /* unknown, use the PG1.0 max */
Tom Rini97210272013-08-30 16:28:46 -0400174 return MPUPLL_M_720;
175}
176
Felix Brackc07bf9b2017-10-11 18:42:23 +0200177int am335x_get_mpu_vdd(int sil_rev, int frequency)
178{
179 int sel_mask = am335x_get_tps65910_mpu_vdd(sil_rev, frequency);
180
181 switch (sel_mask) {
182 case TPS65910_OP_REG_SEL_1_3_2_5:
183 return 1325000;
184 case TPS65910_OP_REG_SEL_1_2_0:
185 return 1200000;
186 case TPS65910_OP_REG_SEL_1_1_0:
187 return 1100000;
188 default:
189 return 1262500;
190 }
191}
192
Tom Rini97210272013-08-30 16:28:46 -0400193int am335x_get_tps65910_mpu_vdd(int sil_rev, int frequency)
194{
Lokesh Vutla59041a52017-05-05 12:59:08 +0530195 /* For PG2.0 and later, we have one set of values. */
196 if (sil_rev >= 1) {
Tom Rini97210272013-08-30 16:28:46 -0400197 switch (frequency) {
198 case MPUPLL_M_1000:
199 return TPS65910_OP_REG_SEL_1_3_2_5;
200 case MPUPLL_M_800:
201 return TPS65910_OP_REG_SEL_1_2_6;
202 case MPUPLL_M_720:
203 return TPS65910_OP_REG_SEL_1_2_0;
204 case MPUPLL_M_600:
Lokesh Vutla59041a52017-05-05 12:59:08 +0530205 case MPUPLL_M_500:
Tom Rini97210272013-08-30 16:28:46 -0400206 case MPUPLL_M_300:
Lokesh Vutla59041a52017-05-05 12:59:08 +0530207 return TPS65910_OP_REG_SEL_1_1_0;
Tom Rini97210272013-08-30 16:28:46 -0400208 }
209 }
210
Lokesh Vutla59041a52017-05-05 12:59:08 +0530211 /* Default to PG1.0 values. */
212 return TPS65910_OP_REG_SEL_1_2_6;
Tom Rini97210272013-08-30 16:28:46 -0400213}
214#endif