blob: b1e7c4ae5f6aa52ca19200daeed3b2ea50de9947 [file] [log] [blame]
Dave Gerlach3e1b59c2020-07-15 23:39:59 -05001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
4 * Dave Gerlach <d-gerlach@ti.com>
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <soc.h>
10
11#include <asm/io.h>
12
13#define AM65X 0xbb5a
14#define J721E 0xbb64
Kishon Vijay Abraham I837933a2020-08-05 22:44:27 +053015#define J7200 0xbb6d
Lokesh Vutla776b79e2021-05-06 16:44:48 +053016#define AM64X 0xbb38
David Huangf993adb2022-01-25 20:56:36 +053017#define J721S2 0xbb75
Suman Anna4298ee72022-05-25 13:38:41 +053018#define AM62X 0xbb7e
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050019
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050020#define JTAG_ID_VARIANT_SHIFT 28
21#define JTAG_ID_VARIANT_MASK (0xf << 28)
22#define JTAG_ID_PARTNO_SHIFT 12
23#define JTAG_ID_PARTNO_MASK (0xffff << 12)
24
Simon Glass8a8d24b2020-12-03 16:55:23 -070025struct soc_ti_k3_plat {
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050026 const char *family;
27 const char *revision;
28};
29
30static const char *get_family_string(u32 idreg)
31{
32 const char *family;
33 u32 soc;
34
35 soc = (idreg & JTAG_ID_PARTNO_MASK) >> JTAG_ID_PARTNO_SHIFT;
36
37 switch (soc) {
38 case AM65X:
39 family = "AM65X";
40 break;
41 case J721E:
42 family = "J721E";
43 break;
Kishon Vijay Abraham I837933a2020-08-05 22:44:27 +053044 case J7200:
45 family = "J7200";
46 break;
Lokesh Vutla776b79e2021-05-06 16:44:48 +053047 case AM64X:
48 family = "AM64X";
49 break;
David Huangf993adb2022-01-25 20:56:36 +053050 case J721S2:
51 family = "J721S2";
52 break;
Suman Anna4298ee72022-05-25 13:38:41 +053053 case AM62X:
54 family = "AM62X";
55 break;
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050056 default:
57 family = "Unknown Silicon";
58 };
59
60 return family;
61}
62
Bryan Brattlof708f54f2022-01-26 16:07:33 -060063static char *j721e_rev_string_map[] = {
64 "1.0", "1.1",
65};
66
Bryan Brattlof10c8baf2022-06-21 16:36:03 -050067static char *typical_rev_string_map[] = {
68 "1.0", "2.0", "3.0",
Bryan Brattlof708f54f2022-01-26 16:07:33 -060069};
70
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050071static const char *get_rev_string(u32 idreg)
72{
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050073 u32 rev;
Bryan Brattlof708f54f2022-01-26 16:07:33 -060074 u32 soc;
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050075
76 rev = (idreg & JTAG_ID_VARIANT_MASK) >> JTAG_ID_VARIANT_SHIFT;
Bryan Brattlof708f54f2022-01-26 16:07:33 -060077 soc = (idreg & JTAG_ID_PARTNO_MASK) >> JTAG_ID_PARTNO_SHIFT;
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050078
Bryan Brattlof708f54f2022-01-26 16:07:33 -060079 switch (soc) {
80 case J721E:
81 if (rev > ARRAY_SIZE(j721e_rev_string_map))
82 goto bail;
83 return j721e_rev_string_map[rev];
84
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050085 default:
Bryan Brattlof10c8baf2022-06-21 16:36:03 -050086 if (rev > ARRAY_SIZE(typical_rev_string_map))
87 goto bail;
88 return typical_rev_string_map[rev];
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050089 };
90
Bryan Brattlof708f54f2022-01-26 16:07:33 -060091bail:
92 return "Unknown Revision";
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050093}
94
95static int soc_ti_k3_get_family(struct udevice *dev, char *buf, int size)
96{
Simon Glass8a8d24b2020-12-03 16:55:23 -070097 struct soc_ti_k3_plat *plat = dev_get_plat(dev);
Dave Gerlach3e1b59c2020-07-15 23:39:59 -050098
99 snprintf(buf, size, "%s", plat->family);
100
101 return 0;
102}
103
104static int soc_ti_k3_get_revision(struct udevice *dev, char *buf, int size)
105{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700106 struct soc_ti_k3_plat *plat = dev_get_plat(dev);
Dave Gerlach3e1b59c2020-07-15 23:39:59 -0500107
108 snprintf(buf, size, "SR%s", plat->revision);
109
110 return 0;
111}
112
113static const struct soc_ops soc_ti_k3_ops = {
114 .get_family = soc_ti_k3_get_family,
115 .get_revision = soc_ti_k3_get_revision,
116};
117
118int soc_ti_k3_probe(struct udevice *dev)
119{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700120 struct soc_ti_k3_plat *plat = dev_get_plat(dev);
Dave Gerlach3e1b59c2020-07-15 23:39:59 -0500121 u32 idreg;
122 void *idreg_addr;
123
124 idreg_addr = dev_read_addr_ptr(dev);
125 if (!idreg_addr)
126 return -EINVAL;
127
128 idreg = readl(idreg_addr);
129
130 plat->family = get_family_string(idreg);
131 plat->revision = get_rev_string(idreg);
132
133 return 0;
134}
135
136static const struct udevice_id soc_ti_k3_ids[] = {
137 { .compatible = "ti,am654-chipid" },
138 { }
139};
140
141U_BOOT_DRIVER(soc_ti_k3) = {
142 .name = "soc_ti_k3",
143 .id = UCLASS_SOC,
144 .ops = &soc_ti_k3_ops,
145 .of_match = soc_ti_k3_ids,
146 .probe = soc_ti_k3_probe,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700147 .plat_auto = sizeof(struct soc_ti_k3_plat),
Dave Gerlach3e1b59c2020-07-15 23:39:59 -0500148};