Maxime Coquelin | 9b799b7 | 2015-05-09 09:53:54 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
| 11 | static const char *const stm32_compat[] __initconst = { |
| 12 | "st,stm32f429", |
Lee Jones | 6391503 | 2016-02-16 15:17:00 +0100 | [diff] [blame] | 13 | "st,stm32f469", |
Alexandre TORGUE | a77e393 | 2016-11-15 12:02:33 +0100 | [diff] [blame] | 14 | "st,stm32f746", |
Alexandre Torgue | 85beb77 | 2017-12-11 09:54:00 +0100 | [diff] [blame^] | 15 | "st,stm32f769", |
Alexandre TORGUE | c6ed0f3 | 2017-01-30 17:46:23 +0100 | [diff] [blame] | 16 | "st,stm32h743", |
Maxime Coquelin | 9b799b7 | 2015-05-09 09:53:54 +0200 | [diff] [blame] | 17 | NULL |
| 18 | }; |
| 19 | |
| 20 | DT_MACHINE_START(STM32DT, "STM32 (Device Tree Support)") |
| 21 | .dt_compat = stm32_compat, |
| 22 | .restart = armv7m_restart, |
| 23 | MACHINE_END |