blob: 564bae679362d0d7ba282fe68e39bc65fe1afe54 [file] [log] [blame]
Chandan Nath56551082011-10-14 02:58:22 +00001/*
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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Chandan Nath56551082011-10-14 02:58:22 +000013 */
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>
Tom Rini97210272013-08-30 16:28:46 -040020#include <power/tps65910.h>
Igor Grinberg52d84862014-11-05 13:29:54 +020021#include <linux/compiler.h>
Chandan Nath56551082011-10-14 02:58:22 +000022
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
53/**
Chandan Nath56551082011-10-14 02:58:22 +000054 * get_device_type(): tell if GP/HS/EMU/TST
55 */
56u32 get_device_type(void)
57{
58 int mode;
59 mode = readl(&cstat->statusreg) & (DEVICE_MASK);
60 return mode >>= 8;
61}
62
63/**
64 * get_sysboot_value(void) - return SYS_BOOT[4:0]
65 */
66u32 get_sysboot_value(void)
67{
Masahiro Yamada63a75782016-09-06 22:17:38 +090068 return readl(&cstat->statusreg) & SYSBOOT_MASK;
Chandan Nath56551082011-10-14 02:58:22 +000069}
70
Lokesh Vutlafbd62952017-05-05 12:59:10 +053071u32 get_sys_clk_index(void)
72{
73 struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
74 u32 ind = readl(&ctrl->statusreg);
75
76#ifdef CONFIG_AM43XX
77 u32 src;
78 src = (ind & CTRL_CRYSTAL_FREQ_SRC_MASK) >> CTRL_CRYSTAL_FREQ_SRC_SHIFT;
79 if (src == CTRL_CRYSTAL_FREQ_SRC_EFUSE) /* Value read from EFUSE */
80 return ((ind & CTRL_CRYSTAL_FREQ_SELECTION_MASK) >>
81 CTRL_CRYSTAL_FREQ_SELECTION_SHIFT);
82 else /* Value read from SYS BOOT pins */
83#endif
84 return ((ind & CTRL_SYSBOOT_15_14_MASK) >>
85 CTRL_SYSBOOT_15_14_SHIFT);
86}
87
88
Chandan Nath56551082011-10-14 02:58:22 +000089#ifdef CONFIG_DISPLAY_CPUINFO
Sergey Alyoshin21254712014-05-22 11:56:03 +040090static char *cpu_revs[] = {
91 "1.0",
92 "2.0",
93 "2.1"};
94
Tero Kristoa051a992017-03-16 09:48:54 +020095static char *cpu_revs_am43xx[] = {
96 "1.0",
97 "1.1",
98 "1.2"};
Sergey Alyoshin21254712014-05-22 11:56:03 +040099
100static char *dev_types[] = {
101 "TST",
102 "EMU",
103 "HS",
104 "GP"};
105
Chandan Nath56551082011-10-14 02:58:22 +0000106/**
107 * Print CPU information
108 */
109int print_cpuinfo(void)
110{
Sergey Alyoshin21254712014-05-22 11:56:03 +0400111 char *cpu_s, *sec_s, *rev_s;
Tero Kristoa051a992017-03-16 09:48:54 +0200112 char **cpu_rev_arr = cpu_revs;
Chandan Nath56551082011-10-14 02:58:22 +0000113
114 switch (get_cpu_type()) {
115 case AM335X:
116 cpu_s = "AM335X";
117 break;
Matt Porter8b029f22013-03-15 10:07:06 +0000118 case TI81XX:
119 cpu_s = "TI81XX";
120 break;
Lokesh Vutla1f957702016-10-04 09:34:50 +0530121 case AM437X:
122 cpu_s = "AM437X";
Tero Kristoa051a992017-03-16 09:48:54 +0200123 cpu_rev_arr = cpu_revs_am43xx;
Lokesh Vutla1f957702016-10-04 09:34:50 +0530124 break;
Chandan Nath56551082011-10-14 02:58:22 +0000125 default:
Sergey Alyoshin21254712014-05-22 11:56:03 +0400126 cpu_s = "Unknown CPU type";
Chandan Nath56551082011-10-14 02:58:22 +0000127 break;
128 }
129
Sergey Alyoshin21254712014-05-22 11:56:03 +0400130 if (get_cpu_rev() < ARRAY_SIZE(cpu_revs))
Tero Kristoa051a992017-03-16 09:48:54 +0200131 rev_s = cpu_rev_arr[get_cpu_rev()];
Sergey Alyoshin21254712014-05-22 11:56:03 +0400132 else
133 rev_s = "?";
134
135 if (get_device_type() < ARRAY_SIZE(dev_types))
136 sec_s = dev_types[get_device_type()];
137 else
Chandan Nath56551082011-10-14 02:58:22 +0000138 sec_s = "?";
Chandan Nath56551082011-10-14 02:58:22 +0000139
Lokesh Vutla1f957702016-10-04 09:34:50 +0530140 printf("CPU : %s-%s rev %s\n", cpu_s, sec_s, rev_s);
Chandan Nath56551082011-10-14 02:58:22 +0000141
142 return 0;
143}
144#endif /* CONFIG_DISPLAY_CPUINFO */
Tom Rini97210272013-08-30 16:28:46 -0400145
146#ifdef CONFIG_AM33XX
147int am335x_get_efuse_mpu_max_freq(struct ctrl_dev *cdev)
148{
149 int sil_rev;
150
151 sil_rev = readl(&cdev->deviceid) >> 28;
152
Lokesh Vutla59041a52017-05-05 12:59:08 +0530153 if (sil_rev == 0) {
154 /* No efuse in PG 1.0. Use max speed */
155 return MPUPLL_M_720;
156 } else if (sil_rev >= 1) {
Tom Rini97210272013-08-30 16:28:46 -0400157 /* Check what the efuse says our max speed is. */
Lokesh Vutla59041a52017-05-05 12:59:08 +0530158 int efuse_arm_mpu_max_freq, package_type;
Tom Rini97210272013-08-30 16:28:46 -0400159 efuse_arm_mpu_max_freq = readl(&cdev->efuse_sma);
Lokesh Vutla59041a52017-05-05 12:59:08 +0530160 package_type = (efuse_arm_mpu_max_freq & PACKAGE_TYPE_MASK) >>
161 PACKAGE_TYPE_SHIFT;
162
163 /* PG 2.0, efuse may not be set. */
164 if (package_type == PACKAGE_TYPE_UNDEFINED || package_type ==
165 PACKAGE_TYPE_RESERVED)
166 return MPUPLL_M_800;
167
Tom Rini97210272013-08-30 16:28:46 -0400168 switch ((efuse_arm_mpu_max_freq & DEVICE_ID_MASK)) {
169 case AM335X_ZCZ_1000:
170 return MPUPLL_M_1000;
171 case AM335X_ZCZ_800:
172 return MPUPLL_M_800;
173 case AM335X_ZCZ_720:
174 return MPUPLL_M_720;
175 case AM335X_ZCZ_600:
176 case AM335X_ZCE_600:
177 return MPUPLL_M_600;
178 case AM335X_ZCZ_300:
179 case AM335X_ZCE_300:
180 return MPUPLL_M_300;
181 }
182 }
183
Lokesh Vutla59041a52017-05-05 12:59:08 +0530184 /* unknown, use the PG1.0 max */
Tom Rini97210272013-08-30 16:28:46 -0400185 return MPUPLL_M_720;
186}
187
188int am335x_get_tps65910_mpu_vdd(int sil_rev, int frequency)
189{
Lokesh Vutla59041a52017-05-05 12:59:08 +0530190 /* For PG2.0 and later, we have one set of values. */
191 if (sil_rev >= 1) {
Tom Rini97210272013-08-30 16:28:46 -0400192 switch (frequency) {
193 case MPUPLL_M_1000:
194 return TPS65910_OP_REG_SEL_1_3_2_5;
195 case MPUPLL_M_800:
196 return TPS65910_OP_REG_SEL_1_2_6;
197 case MPUPLL_M_720:
198 return TPS65910_OP_REG_SEL_1_2_0;
199 case MPUPLL_M_600:
Lokesh Vutla59041a52017-05-05 12:59:08 +0530200 case MPUPLL_M_500:
Tom Rini97210272013-08-30 16:28:46 -0400201 case MPUPLL_M_300:
Lokesh Vutla59041a52017-05-05 12:59:08 +0530202 return TPS65910_OP_REG_SEL_1_1_0;
Tom Rini97210272013-08-30 16:28:46 -0400203 }
204 }
205
Lokesh Vutla59041a52017-05-05 12:59:08 +0530206 /* Default to PG1.0 values. */
207 return TPS65910_OP_REG_SEL_1_2_6;
Tom Rini97210272013-08-30 16:28:46 -0400208}
209#endif