Files
u-boot/include/configs/exynos-mobile.h
Kaustabh Chakraborty ed9ba442ee 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 <kauschluss@disroot.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2025-12-02 13:38:27 +09:00

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 */