blob: 48246325c6cce0cd6cbadc5bf3055f90233a5d15 [file] [log] [blame]
Maxime Coquelin9b799b72015-05-09 09:53:54 +02001/*
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",
Lee Jones63915032016-02-16 15:17:00 +010013 "st,stm32f469",
Alexandre TORGUEa77e3932016-11-15 12:02:33 +010014 "st,stm32f746",
Alexandre Torgue85beb772017-12-11 09:54:00 +010015 "st,stm32f769",
Alexandre TORGUEc6ed0f32017-01-30 17:46:23 +010016 "st,stm32h743",
Maxime Coquelin9b799b72015-05-09 09:53:54 +020017 NULL
18};
19
20DT_MACHINE_START(STM32DT, "STM32 (Device Tree Support)")
21 .dt_compat = stm32_compat,
22 .restart = armv7m_restart,
23MACHINE_END