Skip to content

Commit 2d4d897

Browse files
authored
Merge pull request #544 from miyazakh/fix_raspi3
Revert simple start-up for Raspi3b
2 parents f9b92cb + b70987f commit 2d4d897

File tree

6 files changed

+91
-7
lines changed

6 files changed

+91
-7
lines changed

config/examples/raspi3.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ SIGN?=RSA4096
44
HASH?=SHA3
55
DEBUG?=1
66
VTOR?=1
7-
NO_XIP?=1
87
SPMATH?=1
98
IMAGE_HEADER_SIZE?=1024
109
PKA?=1
1110
WOLFTPM?=0
1211
DEBUG_UART?=0
12+
NO_XIP?=1
13+
NO_QNX?=1
1314
WOLFBOOT_SECTOR_SIZE=0x400
1415
WOLFBOOT_NO_PARTITIONS=1
1516
WOLFBOOT_LOAD_ADDRESS?=0x3080000

hal/raspi3.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ static inline void delay(int32_t count)
102102
asm volatile("nop");
103103
}
104104
}
105+
#if defined(DEBUG_UART)
105106
/**
106107
* write message to mailbox
107108
*/
@@ -213,7 +214,7 @@ void uart_init()
213214
/* enable UART0 transfer & receive*/
214215
*UART0_CR = (1 << 0) | (1 << 8) | (1 << 9);
215216
}
216-
217+
#endif
217218
void* hal_get_primary_address(void)
218219
{
219220
return (void*)&kernel_addr;
@@ -300,7 +301,7 @@ void hal_init(void)
300301
"0123456789abcdef";
301302
wolfBoot_set_encrypt_key((uint8_t *)enc_key,(uint8_t *)(enc_key + 32));
302303
#endif
303-
304+
#if defined(DEBUG_UART)
304305
uart_init();
305306

306307
/* length of the message */
@@ -341,7 +342,7 @@ void hal_init(void)
341342
wolfBoot_printf("\n M2MC clock : %d Hz", getclocks(13));
342343
wolfBoot_printf("\n PIXEL_BVB clock : %d Hz\n", getclocks(14));
343344
#endif
344-
345+
#endif
345346
}
346347

347348
void hal_prepare_boot(void)

hal/raspi3.h

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/* raspi3.h
2+
*
3+
* Copyright (C) 2025 wolfSSL Inc.
4+
*
5+
* This file is part of wolfBoot.
6+
*
7+
* wolfBoot is free software; you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation; either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* wolfBoot is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with this program; if not, write to the Free Software
19+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
20+
*/
21+
22+
#ifndef _RASPI3_H_
23+
#define _RASPI3_H_
24+
25+
#define USE_BUILTIN_STARTUP
26+
#define USE_SIMPLE_STARTUP
27+
28+
#endif /* _RASPI3_H_ */

options.mk

+3-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,9 @@ endif
563563
ifeq ($(NO_XIP),1)
564564
CFLAGS+=-D"NO_XIP"
565565
endif
566-
566+
ifeq ($(NO_QNX),1)
567+
CFLAGS+=-D"NO_QNX"
568+
endif
567569

568570
ifeq ($(ALLOW_DOWNGRADE),1)
569571
CFLAGS+= -D"ALLOW_DOWNGRADE"

src/boot_aarch64.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* boot_aarch64.c
22
*
3-
* Copyright (C) 2024 wolfSSL Inc.
3+
* Copyright (C) 2025 wolfSSL Inc.
44
*
55
* This file is part of wolfBoot.
66
*

src/boot_aarch64_start.S

+53-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030
#include "hal/nxp_ls1028a.h"
3131
#endif
3232

33+
#ifdef TARGET_raspi3
34+
#include "hal/raspi3.h"
35+
#endif
36+
3337
/* GICv2 Register Offsets */
3438
#ifndef GICD_BASE
3539
#define GICD_BASE 0xF9010000
@@ -1028,7 +1032,55 @@ FPUStatus:
10281032
.skip 1
10291033

10301034
.align 8
1031-
1035+
#elif defined(USE_SIMPLE_STARTUP)
1036+
.section ".boot"
1037+
.global _vector_table
1038+
_vector_table:
1039+
mov x21, x0 // read ATAG/FDT address
1040+
1041+
4: ldr x1, =_vector_table // get start of .text in x1
1042+
// Read current EL
1043+
mrs x0, CurrentEL
1044+
and x0, x0, #0x0C
1045+
1046+
// EL == 3?
1047+
cmp x0, #12
1048+
bne 2f
1049+
3: mrs x2, scr_el3
1050+
orr x2, x2, 0x0F // scr_el3 |= NS|IRQ|FIQ|EA
1051+
msr scr_el3, x2
1052+
1053+
msr cptr_el3, xzr // enable FP/SIMD
1054+
1055+
// EL == 1?
1056+
2: cmp x0, #4
1057+
beq 1f
1058+
1059+
// EL == 2?
1060+
mov x2, #3 << 20
1061+
msr cptr_el2, x2 /* Enable FP/SIMD */
1062+
b 0f
1063+
1064+
1: mov x0, #3 << 20
1065+
msr cpacr_el1, x0 // Enable FP/SIMD for EL1
1066+
msr sp_el1, x1
1067+
1068+
/* Suspend slave CPUs */
1069+
0: mrs x3, mpidr_el1 // read MPIDR_EL1
1070+
and x3, x3, #3 // CPUID = MPIDR_EL1 & 0x03
1071+
cbz x3, 8f // if 0, branch forward
1072+
7: wfi // infinite sleep
1073+
b 7b
1074+
1075+
8: mov sp, x1 // set stack pointer
1076+
bl boot_entry_C // boot_entry_C never returns
1077+
b 7b // go to sleep anyhow in case.
1078+
#if 0
1079+
.section ".boot"
1080+
.global _vector_table
1081+
_vector_table:
1082+
bl boot_entry_C // boot_entry_C never returns
1083+
#endif
10321084
#endif /* !USE_BUILTIN_STARTUP */
10331085

10341086

0 commit comments

Comments
 (0)