]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - k3conf/k3conf.git/blob - common/socinfo.c
e74e5ebddf67338aea283f3a122df5ff8b4e9a2b
[k3conf/k3conf.git] / common / socinfo.c
1 /*
2  * K3 SoC detection and helper apis
3  *
4  * Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com/
5  *      Lokesh Vutla <lokeshvutla@ti.com>
6  *
7  *  Redistribution and use in source and binary forms, with or without
8  *  modification, are permitted provided that the following conditions
9  *  are met:
10  *
11  *    Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  *    Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the
17  *    distribution.
18  *
19  *    Neither the name of Texas Instruments Incorporated nor the names of
20  *    its contributors may be used to endorse or promote products derived
21  *    from this software without specific prior written permission.
22  *
23  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
36 #include <socinfo.h>
37 #include <mmio.h>
38 #include <string.h>
39 #include <sec_proxy.h>
40 #include <soc/am65x/am65x_host_info.h>
41 #include <soc/am65x/am65x_sec_proxy_info.h>
42 #include <soc/am65x/am65x_processors_info.h>
43 #include <soc/am65x/am65x_devices_info.h>
44 #include <soc/am65x/am65x_clocks_info.h>
45 #include <soc/am65x/am65x_rm_info.h>
46 #include <soc/am65x_sr2/am65x_sr2_host_info.h>
47 #include <soc/am65x_sr2/am65x_sr2_sec_proxy_info.h>
48 #include <soc/am65x_sr2/am65x_sr2_processors_info.h>
49 #include <soc/am65x_sr2/am65x_sr2_devices_info.h>
50 #include <soc/am65x_sr2/am65x_sr2_clocks_info.h>
51 #include <soc/am65x_sr2/am65x_sr2_rm_info.h>
52 #include <soc/j721e/j721e_host_info.h>
53 #include <soc/j721e/j721e_sec_proxy_info.h>
54 #include <soc/j721e/j721e_processors_info.h>
55 #include <soc/j721e/j721e_devices_info.h>
56 #include <soc/j721e/j721e_clocks_info.h>
57 #include <soc/j721e/j721e_rm_info.h>
58 #include <soc/j7200/j7200_host_info.h>
59 #include <soc/j7200/j7200_sec_proxy_info.h>
60 #include <soc/j7200/j7200_processors_info.h>
61 #include <soc/j7200/j7200_devices_info.h>
62 #include <soc/j7200/j7200_clocks_info.h>
63 #include <soc/j7200/j7200_rm_info.h>
64 #include <soc/am64x/am64x_host_info.h>
65 #include <soc/am64x/am64x_sec_proxy_info.h>
66 #include <soc/am64x/am64x_processors_info.h>
67 #include <soc/am64x/am64x_devices_info.h>
68 #include <soc/am64x/am64x_clocks_info.h>
70 /* Assuming these addresses and definitions stay common across K3 devices */
71 #define CTRLMMR_WKUP_JTAG_DEVICE_ID     0x43000018
72 #define DEVICE_ID_FAMILY_SHIFT  26
73 #define DEVICE_ID_FAMILY_MASK   (0x3f << 26)
74 #define DEVICE_ID_BASE_SHIFT    11
75 #define DEVICE_ID_BASE_MASK     (0x1fff << 11)
76 #define DEVICE_ID_SPEED_SHIFT   6
77 #define DEVICE_ID_SPEED_MASK    (0x1f << 6)
78 #define DEVICE_ID_TEMP_SHIFT    3
79 #define DEVICE_ID_TEMP_MASK     (0x7 << 3)
81 #define CTRLMMR_WKUP_JTAG_ID            0x43000014
82 #define JTAG_ID_VARIANT_SHIFT   28
83 #define JTAG_ID_VARIANT_MASK    (0xf << 28)
84 #define JTAG_ID_PARTNO_SHIFT    12
85 #define JTAG_ID_PARTNO_MASK     (0xffff << 12)
87 #define CTRLMMR_WKUP_DIE_ID0    0x43000020
88 #define CTRLMMR_WKUP_DIE_ID1    0x43000024
89 #define CTRLMMR_WKUP_DIE_ID2    0x43000028
90 #define CTRLMMR_WKUP_DIE_ID3    0x4300002c
91 #define CTRLMMR_WKUP_DEVSTAT    0x43000030
92 #define CTRLMMR_WKUP_BOOTCFG    0x43000034
94 struct k3conf_soc_info soc_info;
96 static const char soc_revision[REV_PG_MAX + 1][SOC_REVISION_MAX_LENGTH] = {
97         [REV_SR1_0] = "1.0",
98         [REV_SR2_0] = "2.0",
99         [REV_PG_MAX] = "NULL"
100 };
102 static void am654_init(void)
104         struct ti_sci_info *sci_info = &soc_info.sci_info;
106         sci_info->host_info = am65x_host_info;
107         sci_info->num_hosts = AM65X_MAX_HOST_IDS;
108         sci_info->sp_info[MAIN_SEC_PROXY] = am65x_main_sp_info;
109         sci_info->num_sp_threads[MAIN_SEC_PROXY] = AM65X_MAIN_SEC_PROXY_THREADS;
110         sci_info->sp_info[MCU_SEC_PROXY] = am65x_mcu_sp_info;
111         sci_info->num_sp_threads[MCU_SEC_PROXY] = AM65X_MCU_SEC_PROXY_THREADS;
112         sci_info->processors_info = am65x_processors_info;
113         sci_info->num_processors = AM65X_MAX_PROCESSORS_IDS;
114         sci_info->devices_info = am65x_devices_info;
115         sci_info->num_devices = AM65X_MAX_DEVICES;
116         sci_info->clocks_info = am65x_clocks_info;
117         sci_info->num_clocks = AM65X_MAX_CLOCKS;
118         sci_info->rm_info = am65x_rm_info;
119         sci_info->num_res = AM65X_MAX_RES;
120         soc_info.host_id = DEFAULT_HOST_ID;
121         soc_info.sec_proxy = &k3_generic_sec_proxy_base;
124 static void am654_sr2_init(void)
126         struct ti_sci_info *sci_info = &soc_info.sci_info;
128         sci_info->host_info = am65x_sr2_host_info;
129         sci_info->num_hosts = AM65X_SR2_MAX_HOST_IDS;
130         sci_info->sp_info[MAIN_SEC_PROXY] = am65x_sr2_main_sp_info;
131         sci_info->num_sp_threads[MAIN_SEC_PROXY] = AM65X_SR2_MAIN_SEC_PROXY_THREADS;
132         sci_info->sp_info[MCU_SEC_PROXY] = am65x_sr2_mcu_sp_info;
133         sci_info->num_sp_threads[MCU_SEC_PROXY] = AM65X_SR2_MCU_SEC_PROXY_THREADS;
134         sci_info->processors_info = am65x_sr2_processors_info;
135         sci_info->num_processors = AM65X_SR2_MAX_PROCESSORS_IDS;
136         sci_info->devices_info = am65x_sr2_devices_info;
137         sci_info->num_devices = AM65X_SR2_MAX_DEVICES;
138         sci_info->clocks_info = am65x_sr2_clocks_info;
139         sci_info->num_clocks = AM65X_SR2_MAX_CLOCKS;
140         sci_info->rm_info = am65x_sr2_rm_info;
141         sci_info->num_res = AM65X_SR2_MAX_RES;
142         soc_info.host_id = DEFAULT_HOST_ID;
143         soc_info.sec_proxy = &k3_generic_sec_proxy_base;
146 static void j721e_init(void)
148         struct ti_sci_info *sci_info = &soc_info.sci_info;
150         sci_info->host_info = j721e_host_info;
151         sci_info->num_hosts = J721E_MAX_HOST_IDS;
152         sci_info->sp_info[MAIN_SEC_PROXY] = j721e_main_sp_info;
153         sci_info->num_sp_threads[MAIN_SEC_PROXY] = J721E_MAIN_SEC_PROXY_THREADS;
154         sci_info->sp_info[MCU_SEC_PROXY] = j721e_mcu_sp_info;
155         sci_info->num_sp_threads[MCU_SEC_PROXY] = J721E_MCU_SEC_PROXY_THREADS;
156         sci_info->processors_info = j721e_processors_info;
157         sci_info->num_processors = J721E_MAX_PROCESSORS_IDS;
158         sci_info->devices_info = j721e_devices_info;
159         sci_info->num_devices = J721E_MAX_DEVICES;
160         sci_info->clocks_info = j721e_clocks_info;
161         sci_info->num_clocks = J721E_MAX_CLOCKS;
162         sci_info->rm_info = j721e_rm_info;
163         sci_info->num_res = J721E_MAX_RES;
164         soc_info.host_id = DEFAULT_HOST_ID;
165         soc_info.sec_proxy = &k3_generic_sec_proxy_base;
168 static void j7200_init(void)
170         struct ti_sci_info *sci_info = &soc_info.sci_info;
172         sci_info->host_info = j7200_host_info;
173         sci_info->num_hosts = J7200_MAX_HOST_IDS;
174         sci_info->sp_info[MAIN_SEC_PROXY] = j7200_main_sp_info;
175         sci_info->num_sp_threads[MAIN_SEC_PROXY] = J7200_MAIN_SEC_PROXY_THREADS;
176         sci_info->sp_info[MCU_SEC_PROXY] = j7200_mcu_sp_info;
177         sci_info->num_sp_threads[MCU_SEC_PROXY] = J7200_MCU_SEC_PROXY_THREADS;
178         sci_info->processors_info = j7200_processors_info;
179         sci_info->num_processors = J7200_MAX_PROCESSORS_IDS;
180         sci_info->devices_info = j7200_devices_info;
181         sci_info->num_devices = J7200_MAX_DEVICES;
182         sci_info->clocks_info = j7200_clocks_info;
183         sci_info->num_clocks = J7200_MAX_CLOCKS;
184         sci_info->rm_info = j7200_rm_info;
185         sci_info->num_res = J7200_MAX_RES;
186         soc_info.host_id = DEFAULT_HOST_ID;
187         soc_info.sec_proxy = &k3_generic_sec_proxy_base;
190 static void am64x_init(void)
192         struct ti_sci_info *sci_info = &soc_info.sci_info;
194         sci_info->host_info = am64x_host_info;
195         sci_info->num_hosts = AM64X_MAX_HOST_IDS;
196         sci_info->sp_info[MAIN_SEC_PROXY] = am64x_main_sp_info;
197         sci_info->num_sp_threads[MAIN_SEC_PROXY] = AM64X_MAIN_SEC_PROXY_THREADS;
198         sci_info->sp_info[MCU_SEC_PROXY] = NULL;
199         sci_info->num_sp_threads[MCU_SEC_PROXY] = 0;
200         sci_info->processors_info = am64x_processors_info;
201         sci_info->num_processors = AM64X_MAX_PROCESSORS_IDS;
202         sci_info->devices_info = am64x_devices_info;
203         sci_info->num_devices = AM64X_MAX_DEVICES;
204         sci_info->clocks_info = am64x_clocks_info;
205         sci_info->num_clocks = AM64X_MAX_CLOCKS;
206         soc_info.host_id = 13;
207         soc_info.sec_proxy = &k3_lite_sec_proxy_base;
210 int soc_init(uint32_t host_id)
212         char *name;
214         memset(&soc_info, 0, sizeof(soc_info));
216         soc_info.soc = (mmio_read_32(CTRLMMR_WKUP_JTAG_ID) &
217                         JTAG_ID_PARTNO_MASK) >> JTAG_ID_PARTNO_SHIFT;
218         soc_info.rev = (mmio_read_32(CTRLMMR_WKUP_JTAG_ID) &
219                         JTAG_ID_VARIANT_MASK) >> JTAG_ID_VARIANT_SHIFT;
221         switch (soc_info.soc) {
222         case AM65X:
223                 name = "AM65x";
224                 break;
225         case J721E:
226                 name = "J721E";
227                 break;
228         case J7200:
229                 name = "J7200";
230                 break;
231         case AM64X:
232                 name = "AM64x";
233                 break;
234         default:
235                 fprintf(stderr, "Unknown Silicon %d\n", soc_info.soc);
236                 return -1;
237         };
239         if (soc_info.rev > REV_PG_MAX) {
240                 fprintf(stderr, "Unknown Silicon revision %d for SoC %s\n",
241                         soc_info.rev, name);
242                 return -1;
243         }
245         strncpy(soc_info.soc_full_name, "", sizeof(soc_info.soc_full_name));
246         strcat(soc_info.soc_full_name, name);
247         strcat(soc_info.soc_full_name, " SR");
248         strcat(soc_info.soc_full_name, soc_revision[soc_info.rev]);
250         if (soc_info.soc == AM65X && soc_info.rev == REV_SR1_0)
251                 am654_init();
252         else if (soc_info.soc == AM65X && soc_info.rev == REV_SR2_0)
253                 am654_sr2_init();
254         else if (soc_info.soc == J721E)
255                 j721e_init();
256         else if (soc_info.soc == J7200)
257                 j7200_init();
258         else if (soc_info.soc == AM64X)
259                 am64x_init();
261         if (host_id != INVALID_HOST_ID)
262                 soc_info.host_id = host_id;
264         /* ToDo: Add error if sec_proxy_init/sci_init is failed */
265         if(!k3_sec_proxy_init())
266                 if (!ti_sci_init())
267                         soc_info.ti_sci_enabled = 1;
269         return 0;
272 int soc_is_j721e(void)
274         return soc_info.soc == J721E;
277 int soc_is_am654(void)
279         return soc_info.soc == AM65X;