Skip to content

Commit

Permalink
adding support for cpu_start_offset same as t8112
Browse files Browse the repository at this point in the history
Signed-off-by: a-ramses <[email protected]>
  • Loading branch information
a-ramses committed Dec 15, 2024
1 parent fd3526b commit ce9b028
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
#define CPU_START_OFF_T8103 0x54000
#define CPU_START_OFF_T8112 0x34000
#define CPU_START_OFF_T6020 0x28000
#define CPU_START_OFF_T6030 0x34000
#define CPU_START_OFF_T6031 0x88000

#define CPU_REG_CORE GENMASK(7, 0)
Expand Down Expand Up @@ -281,7 +280,7 @@ void smp_start_secondaries(void)
cpu_start_off = CPU_START_OFF_T6020;
break;
case T6030:
cpu_start_off = CPU_START_OFF_T6030;
cpu_start_off = CPU_START_OFF_T8112;
break;
case T6031:
case T6034:
Expand Down

0 comments on commit ce9b028

Please sign in to comment.