We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93117c6 commit f0f7138Copy full SHA for f0f7138
src/hal/ingenic.c
@@ -113,6 +113,16 @@ static int get_cpu_id() {
113
return -1;
114
}
115
return 11;
116
+ case 0x23:
117
+ chip_generation = 0x23;
118
+ switch (HIWORD(subsoctype)) {
119
+ case 0x1111:
120
+ return 36;
121
+ case 0x2222:
122
+ return 37;
123
+ default:
124
+ return -1;
125
+ }
126
case 0x31:
127
chip_generation = 0x31;
128
if ((uint8_t)cppsr == 1) {
@@ -275,6 +285,10 @@ static const char *ingenic_cpu_name() {
275
285
return "T41NQ";
276
286
case 35:
277
287
return "T41X";
288
+ case 36:
289
+ return "T23N";
290
+ case 37:
291
+ return "T23X";
278
292
279
293
return "unknown";
280
294
0 commit comments