^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) // SPDX-License-Identifier: GPL-2.0-or-later
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * Copyright (C) 2014 Carlo Caione <carlo@caione.org>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) #include <linux/of_platform.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) #include <asm/mach/arch.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) static const char * const meson_common_board_compat[] = {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) "amlogic,meson6",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) "amlogic,meson8",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) "amlogic,meson8b",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) "amlogic,meson8m2",
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) NULL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) DT_MACHINE_START(MESON, "Amlogic Meson platform")
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) .dt_compat = meson_common_board_compat,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) .l2c_aux_val = 0,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) .l2c_aux_mask = ~0,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) MACHINE_END