mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
1847119dcc
The Cortex-M Prototyping System (or V2M-MPS2) is designed for prototyping and evaluation Cortex-M family of processors including the latest Cortex-M7 It comes with a range of useful peripherals including 8MB single cycle SRAM, 16MB PSRAM, Ethernet, QSVGA touch screen panel, 4bit RGB VGA connector, Audio, SPI and GPIO. Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
22 lines
491 B
C
22 lines
491 B
C
/*
|
|
* Copyright (C) 2015 ARM Limited
|
|
*
|
|
* Author: Vladimir Murzin <vladimir.murzin@arm.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
static const char *const mps2_compat[] __initconst = {
|
|
"arm,mps2",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(MPS2DT, "MPS2 (Device Tree Support)")
|
|
.dt_compat = mps2_compat,
|
|
MACHINE_END
|