blob: e918686e4191bd86386f5a7cbd19d8238e6b1ba7 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/*
2 * Copyright (C) Maxime Coquelin 2015
3 * Author: Maxime Coquelin <mcoquelin.stm32@gmail.com>
4 * License terms: GNU General Public License (GPL), version 2
5 */
6
7#include <linux/kernel.h>
8#include <asm/v7m.h>
9#include <asm/mach/arch.h>
10
11static const char *const stm32_compat[] __initconst = {
12 "st,stm32f429",
13 "st,stm32f469",
14 "st,stm32f746",
15 "st,stm32h743",
16 NULL
17};
18
19DT_MACHINE_START(STM32DT, "STM32 (Device Tree Support)")
20 .dt_compat = stm32_compat,
21 .restart = armv7m_restart,
22MACHINE_END