mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
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 <kauschluss@disroot.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
15 lines
382 B
C
15 lines
382 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Samsung Exynos Generic Board Configuration (for mobile devices)
|
|
*
|
|
* Copyright (C) 2025 Kaustabh Chakraborty <kauschluss@disroot.org>
|
|
*/
|
|
|
|
#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 */
|