aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/arm
diff options
context:
space:
mode:
authorMaxime Coquelin <mcoquelin.stm32@gmail.com>2015-05-09 03:53:54 -0400
committerArnd Bergmann <arnd@arndb.de>2015-05-15 15:43:23 -0400
commit9b799b78372c925d3204567741e3ff8fe0cc1c7d (patch)
treee956041743bb2b3b39d6ff65cc1c684bf2883005 /Documentation/arm
parent7448adca9361b4ad97614a08c487e215f1990ad7 (diff)
ARM: Add STM32 family machine
STMicrolectronics's STM32 series is a family of Cortex-M microcontrollers. It is used in various applications, and proposes a wide range of peripherals. Tested-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'Documentation/arm')
-rw-r--r--Documentation/arm/stm32/overview.txt32
-rw-r--r--Documentation/arm/stm32/stm32f429-overview.txt22
2 files changed, 54 insertions, 0 deletions
diff --git a/Documentation/arm/stm32/overview.txt b/Documentation/arm/stm32/overview.txt
new file mode 100644
index 000000000000..09aed5588d7c
--- /dev/null
+++ b/Documentation/arm/stm32/overview.txt
@@ -0,0 +1,32 @@
1 STM32 ARM Linux Overview
2 ========================
3
4Introduction
5------------
6
7 The STMicroelectronics family of Cortex-M based MCUs are supported by the
8 'STM32' platform of ARM Linux. Currently only the STM32F429 is supported.
9
10
11Configuration
12-------------
13
14 A generic configuration is provided for STM32 family, and can be used as the
15 default by
16 make stm32_defconfig
17
18Layout
19------
20
21 All the files for multiple machine families are located in the platform code
22 contained in arch/arm/mach-stm32
23
24 There is a generic board board-dt.c in the mach folder which support
25 Flattened Device Tree, which means, it works with any compatible board with
26 Device Trees.
27
28
29Document Author
30---------------
31
32 Maxime Coquelin <mcoquelin.stm32@gmail.com>
diff --git a/Documentation/arm/stm32/stm32f429-overview.txt b/Documentation/arm/stm32/stm32f429-overview.txt
new file mode 100644
index 000000000000..5206822bd8ef
--- /dev/null
+++ b/Documentation/arm/stm32/stm32f429-overview.txt
@@ -0,0 +1,22 @@
1 STM32F429 Overview
2 ==================
3
4 Introduction
5 ------------
6 The STM32F429 is a Cortex-M4 MCU aimed at various applications.
7 It features:
8 - ARM Cortex-M4 up to 180MHz with FPU
9 - 2MB internal Flash Memory
10 - External memory support through FMC controller (PSRAM, SDRAM, NOR, NAND)
11 - I2C, SPI, SAI, CAN, USB OTG, Ethernet controllers
12 - LCD controller & Camera interface
13 - Cryptographic processor
14
15 Resources
16 ---------
17 Datasheet and reference manual are publicly available on ST website:
18 - http://www.st.com/web/en/catalog/mmc/FM141/SC1169/SS1577/LN1806?ecmp=stm32f429-439_pron_pr-ces2014_nov2013
19
20 Document Author
21 ---------------
22 Maxime Coquelin <mcoquelin.stm32@gmail.com>