-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathapp_versal.c
More file actions
65 lines (55 loc) · 2.04 KB
/
app_versal.c
File metadata and controls
65 lines (55 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* app_versal.c
*
* Test application for AMD Versal VMK180
*
* Copyright (C) 2026 wolfSSL Inc.
*
* This file is part of wolfBoot.
*
* wolfBoot is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* wolfBoot is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
*/
#include <stdint.h>
#include "hal.h"
#include "hal/versal.h"
#include "wolfboot/wolfboot.h"
#include "printf.h"
void main(void)
{
#ifdef WOLFBOOT_FIXED_PARTITIONS
uint32_t boot_version, update_version;
#endif
hal_init();
wolfBoot_printf("\n\n");
wolfBoot_printf("===========================================\n");
wolfBoot_printf(" wolfBoot Test Application - AMD Versal\n");
wolfBoot_printf("===========================================\n\n");
wolfBoot_printf("Current EL: %d\n", current_el());
#ifdef WOLFBOOT_FIXED_PARTITIONS
/* Get versions from both partitions (only available with fixed partitions) */
boot_version = wolfBoot_get_image_version(PART_BOOT);
update_version = wolfBoot_get_image_version(PART_UPDATE);
/* Print firmware versions */
wolfBoot_printf("BOOT: Version: %d (0x%08x)\n", boot_version, boot_version);
wolfBoot_printf("UPDATE: Version: %d (0x%08x)\n", update_version, update_version);
#else
wolfBoot_printf("Boot mode: Disk-based (GPT/MBR partitions)\n");
#endif
wolfBoot_printf("Application running successfully!\n");
wolfBoot_printf("\nEntering idle loop...\n");
/* Idle loop */
while (1) {
__asm__ volatile("wfi");
}
}