serial: s5p: add compatible for exynos8895
authorKaustabh Chakraborty <kauschluss@disroot.org>
Fri, 17 Oct 2025 15:29:22 +0000 (20:59 +0530)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 12 Nov 2025 04:58:36 +0000 (13:58 +0900)
Add the compatible for Exynos8895 UART as described in upstream
devicetree bindings. This enables support for Exynos8895 and other
similar UART devices, such as Exynos7870. Other than that, the driver
works as-is.

Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
Reviewed-by: Henrik Grimler <henrik@grimler.se>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/serial/serial_s5p.c

index 734780a..d46a886 100644 (file)
@@ -258,6 +258,7 @@ static const struct dm_serial_ops s5p_serial_ops = {
 static const struct udevice_id s5p_serial_ids[] = {
        { .compatible = "samsung,exynos4210-uart",      .data = PORT_S5P },
        { .compatible = "samsung,exynos850-uart",       .data = PORT_S5P },
+       { .compatible = "samsung,exynos8895-uart",      .data = PORT_S5P },
        { .compatible = "apple,s5l-uart",               .data = PORT_S5L },
        { }
 };