summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKaustabh Chakraborty <[email protected]>2025-10-24 22:58:27 +0530
committerMinkyu Kang <[email protected]>2025-12-02 13:38:27 +0900
commited9ba442ee1f9aea1ab92b10e56c8ac710a770cf (patch)
treedf1ef0632aa37ded3983d00ef949a111f8dcc61c /include
parentff3b4e9936a720870decd6ddb0e77c7b5d464d5d (diff)
board: samsung: add support for Samsung Exynos mobile device boards
Add support for a generic platform which intends to support multiple boards powered by ARMv8 Samsung Exynos SoCs. Some important features include: * Fastboot: This is present to provide an open alternative to Samsung's proprietary Odin protocol. The board file configures certain features for fastboot, such as a dynamically allocated fastboot buffer, and standardized (lowercase) partition aliases. * EFI: Kernel image can be loaded from an EFI partition. This adopts a standard booting process, which multiple OS distributions can rely on. Signed-off-by: Kaustabh Chakraborty <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/exynos-mobile.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/exynos-mobile.h b/include/configs/exynos-mobile.h
new file mode 100644
index 00000000000..862db5779ef
--- /dev/null
+++ b/include/configs/exynos-mobile.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Samsung Exynos Generic Board Configuration (for mobile devices)
+ *
+ * Copyright (C) 2025 Kaustabh Chakraborty <[email protected]>
+ */
+
+#ifndef __CONFIG_EXYNOS_MOBILE_H
+#define __CONFIG_EXYNOS_MOBILE_H
+
+#define CPU_RELEASE_ADDR secondary_boot_addr
+#define CFG_SYS_BAUDRATE_TABLE {9600, 115200}
+
+#endif /* __CONFIG_EXYNOS_MOBILE_H */