]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - k3conf/k3conf.git/blob - common/socinfo.c
0850ea0231e01b1ba34423958f189185f02b8975
[k3conf/k3conf.git] / common / socinfo.c
1 /*
2  * K3 SoC detection and helper apis
3  *
4  * Copyright (C) 2019 Texas Instruments Incorporated - http://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_sr2/am65x_sr2_host_info.h>
46 #include <soc/am65x_sr2/am65x_sr2_sec_proxy_info.h>
47 #include <soc/am65x_sr2/am65x_sr2_processors_info.h>
48 #include <soc/j721e/j721e_host_info.h>
49 #include <soc/j721e/j721e_sec_proxy_info.h>
50 #include <soc/j721e/j721e_processors_info.h>
51 #include <soc/j721e/j721e_devices_info.h>
52 #include <soc/j721e/j721e_clocks_info.h>
54 /* Assuming these addresses and definitions stay common across K3 devices */
55 #define CTRLMMR_WKUP_JTAG_DEVICE_ID     0x43000018
56 #define DEVICE_ID_FAMILY_SHIFT  26
57 #define DEVICE_ID_FAMILY_MASK   (0x3f << 26)
58 #define DEVICE_ID_BASE_SHIFT    11
59 #define DEVICE_ID_BASE_MASK     (0x1fff << 11)
60 #define DEVICE_ID_SPEED_SHIFT   6
61 #define DEVICE_ID_SPEED_MASK    (0x1f << 6)
62 #define DEVICE_ID_TEMP_SHIFT    3
63 #define DEVICE_ID_TEMP_MASK     (0x7 << 3)
65 #define CTRLMMR_WKUP_JTAG_ID            0x43000014
66 #define JTAG_ID_VARIANT_SHIFT   28
67 #define JTAG_ID_VARIANT_MASK    (0xf << 28)
68 #define JTAG_ID_PARTNO_SHIFT    12
69 #define JTAG_ID_PARTNO_MASK     (0x7ff << 1)
71 #define CTRLMMR_WKUP_DIE_ID0    0x43000020
72 #define CTRLMMR_WKUP_DIE_ID1    0x43000024
73 #define CTRLMMR_WKUP_DIE_ID2    0x43000028
74 #define CTRLMMR_WKUP_DIE_ID3    0x4300002c
75 #define CTRLMMR_WKUP_DEVSTAT    0x43000030
76 #define CTRLMMR_WKUP_BOOTCFG    0x43000034
78 struct k3conf_soc_info soc_info;
80 static const char soc_name[K3_MAX + 1][SOC_NAME_MAX_LENGTH] = {
81         [AM654] = "AM654",
82         [J721E] = "J721E",
83         [K3_MAX] = "UNKNOWN"
84 };
86 static const char soc_revision[REV_PG_MAX + 1][SOC_REVISION_MAX_LENGTH] = {
87         [REV_SR1_0] = "1.0",
88         [REV_SR2_0] = "2.0",
89         [REV_PG_MAX] = "NULL"
90 };
92 static void am654_init(void)
93 {
94         struct ti_sci_info *sci_info = &soc_info.sci_info;
96         sci_info->host_info = am65x_host_info;
97         sci_info->num_hosts = AM65X_MAX_HOST_IDS;
98         sci_info->sp_info[MAIN_SEC_PROXY] = am65x_main_sp_info;
99         sci_info->num_sp_threads[MAIN_SEC_PROXY] = AM65X_MAIN_SEC_PROXY_THREADS;
100         sci_info->sp_info[MCU_SEC_PROXY] = am65x_mcu_sp_info;
101         sci_info->num_sp_threads[MCU_SEC_PROXY] = AM65X_MCU_SEC_PROXY_THREADS;
102         sci_info->processors_info = am65x_processors_info;
103         sci_info->num_processors = AM65X_MAX_PROCESSORS_IDS;
104         sci_info->devices_info = am65x_devices_info;
105         sci_info->num_devices = AM65X_MAX_DEVICES;
106         sci_info->clocks_info = am65x_clocks_info;
107         sci_info->num_clocks = AM65X_MAX_CLOCKS;
110 static void am654_sr2_init(void)
112         struct ti_sci_info *sci_info = &soc_info.sci_info;
114         sci_info->host_info = am65x_sr2_host_info;
115         sci_info->num_hosts = AM65X_SR2_MAX_HOST_IDS;
116         sci_info->sp_info[MAIN_SEC_PROXY] = am65x_sr2_main_sp_info;
117         sci_info->num_sp_threads[MAIN_SEC_PROXY] = AM65X_SR2_MAIN_SEC_PROXY_THREADS;
118         sci_info->sp_info[MCU_SEC_PROXY] = am65x_sr2_mcu_sp_info;
119         sci_info->num_sp_threads[MCU_SEC_PROXY] = AM65X_SR2_MCU_SEC_PROXY_THREADS;
120         sci_info->processors_info = am65x_sr2_processors_info;
121         sci_info->num_processors = AM65X_SR2_MAX_PROCESSORS_IDS;
124 static void j721e_init(void)
126         struct ti_sci_info *sci_info = &soc_info.sci_info;
128         sci_info->host_info = j721e_host_info;
129         sci_info->num_hosts = J721E_MAX_HOST_IDS;
130         sci_info->sp_info[MAIN_SEC_PROXY] = j721e_main_sp_info;
131         sci_info->num_sp_threads[MAIN_SEC_PROXY] = J721E_MAIN_SEC_PROXY_THREADS;
132         sci_info->sp_info[MCU_SEC_PROXY] = j721e_mcu_sp_info;
133         sci_info->num_sp_threads[MCU_SEC_PROXY] = J721E_MCU_SEC_PROXY_THREADS;
134         sci_info->processors_info = j721e_processors_info;
135         sci_info->num_processors = J721E_MAX_PROCESSORS_IDS;
136         sci_info->devices_info = j721e_devices_info;
137         sci_info->num_devices = J721E_MAX_DEVICES;
138         sci_info->clocks_info = j721e_clocks_info;
139         sci_info->num_clocks = J721E_MAX_CLOCKS;
142 int soc_init(uint32_t host_id)
144         memset(&soc_info, 0, sizeof(soc_info));
146         soc_info.soc = (mmio_read_32(CTRLMMR_WKUP_JTAG_DEVICE_ID) &
147                         DEVICE_ID_FAMILY_MASK) >> DEVICE_ID_FAMILY_SHIFT;
148         soc_info.rev = (mmio_read_32(CTRLMMR_WKUP_JTAG_ID) &
149                         JTAG_ID_VARIANT_MASK) >> JTAG_ID_VARIANT_SHIFT;
151         if (soc_info.soc > K3_MAX || !soc_name[soc_info.soc]) {
152                 fprintf(stderr, "Unknown Silicon %d\n", soc_info.soc);
153                 return -1;
154         }
155         if (soc_info.rev > REV_PG_MAX) {
156                 fprintf(stderr, "Unknown Silicon revision %d for SoC %s\n",
157                         soc_info.rev, soc_name[soc_info.soc]);
158                 return -1;
159         }
161         strncpy(soc_info.soc_full_name, "", sizeof(soc_info.soc_full_name));
162         strcat(soc_info.soc_full_name, soc_name[soc_info.soc]);
163         strcat(soc_info.soc_full_name, " SR");
164         strcat(soc_info.soc_full_name, soc_revision[soc_info.rev]);
166         soc_info.host_id = host_id;
168         if (soc_info.soc == AM654 && soc_info.rev == REV_SR1_0)
169                 am654_init();
170         else if (soc_info.soc == AM654 && soc_info.rev == REV_SR2_0)
171                 am654_sr2_init();
172         else if (soc_info.soc == J721E)
173                 j721e_init();
175         /* ToDo: Add error if sec_proxy_init/sci_init is failed */
176         if(!k3_sec_proxy_init())
177                 if (!ti_sci_init())
178                         soc_info.ti_sci_enabled = 1;
180         return 0;
183 int soc_is_j721e(void)
185         return soc_info.soc == J721E;
188 int soc_is_am654(void)
190         return soc_info.soc == AM654;