-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'armsoc-soc' into test-merge
ARM: SoC: platform support for v4.2 Our SoC branch usually contains expanded support for new SoCs and other core platform code. Some highlights from this round: - sunxi: SMP support for A23 SoC - socpga: big-endian support - pxa: conversion to common clock framework - bcm: SMP support for BCM63138 - imx: support new I.MX7D SoC - zte: basic support for ZX296702 SoC Conflicts: arch/arm/mach-socfpga/core.h Trivial remove/remove conflict with our cleanup branch. Resolution: remove both sides # gpg: Signature made Wed Jun 24 21:32:12 2015 PDT using RSA key ID D3FBC665 # gpg: Good signature from "Kevin Hilman <khilman@deeprootsystems.com>" # gpg: aka "Kevin Hilman <khilman@linaro.org>" # gpg: aka "Kevin Hilman <khilman@kernel.org>" # Conflicts: # arch/arm/mach-socfpga/core.h
- Loading branch information
Showing
225 changed files
with
6,675 additions
and
2,075 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
STM32 ARM Linux Overview | ||
======================== | ||
|
||
Introduction | ||
------------ | ||
|
||
The STMicroelectronics family of Cortex-M based MCUs are supported by the | ||
'STM32' platform of ARM Linux. Currently only the STM32F429 is supported. | ||
|
||
|
||
Configuration | ||
------------- | ||
|
||
A generic configuration is provided for STM32 family, and can be used as the | ||
default by | ||
make stm32_defconfig | ||
|
||
Layout | ||
------ | ||
|
||
All the files for multiple machine families are located in the platform code | ||
contained in arch/arm/mach-stm32 | ||
|
||
There is a generic board board-dt.c in the mach folder which support | ||
Flattened Device Tree, which means, it works with any compatible board with | ||
Device Trees. | ||
|
||
|
||
Document Author | ||
--------------- | ||
|
||
Maxime Coquelin <mcoquelin.stm32@gmail.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
STM32F429 Overview | ||
================== | ||
|
||
Introduction | ||
------------ | ||
The STM32F429 is a Cortex-M4 MCU aimed at various applications. | ||
It features: | ||
- ARM Cortex-M4 up to 180MHz with FPU | ||
- 2MB internal Flash Memory | ||
- External memory support through FMC controller (PSRAM, SDRAM, NOR, NAND) | ||
- I2C, SPI, SAI, CAN, USB OTG, Ethernet controllers | ||
- LCD controller & Camera interface | ||
- Cryptographic processor | ||
|
||
Resources | ||
--------- | ||
Datasheet and reference manual are publicly available on ST website: | ||
- http://www.st.com/web/en/catalog/mmc/FM141/SC1169/SS1577/LN1806?ecmp=stm32f429-439_pron_pr-ces2014_nov2013 | ||
|
||
Document Author | ||
--------------- | ||
Maxime Coquelin <mcoquelin.stm32@gmail.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ZTE platforms device tree bindings | ||
--------------------------------------- | ||
|
||
- ZX296702 board: | ||
Required root node properties: | ||
- compatible = "zte,zx296702-ad1", "zte,zx296702" | ||
|
||
System management required properties: | ||
- compatible = "zte,sysctrl" | ||
|
||
Low power management required properties: | ||
- compatible = "zte,zx296702-pcu" | ||
|
||
Bus matrix required properties: | ||
- compatible = "zte,zx-bus-matrix" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Device Tree Clock bindings for ZTE zx296702 | ||
|
||
This binding uses the common clock binding[1]. | ||
|
||
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt | ||
|
||
Required properties: | ||
- compatible : shall be one of the following: | ||
"zte,zx296702-topcrm-clk": | ||
zx296702 top clock selection, divider and gating | ||
|
||
"zte,zx296702-lsp0crpm-clk" and | ||
"zte,zx296702-lsp1crpm-clk": | ||
zx296702 device level clock selection and gating | ||
|
||
- reg: Address and length of the register set | ||
|
||
The clock consumer should specify the desired clock by having the clock | ||
ID in its "clocks" phandle cell. See include/dt-bindings/clock/zx296702-clock.h | ||
for the full list of zx296702 clock IDs. | ||
|
||
|
||
topclk: topcrm@0x09800000 { | ||
compatible = "zte,zx296702-topcrm-clk"; | ||
reg = <0x09800000 0x1000>; | ||
#clock-cells = <1>; | ||
}; | ||
|
||
uart0: serial@0x09405000 { | ||
compatible = "zte,zx296702-uart"; | ||
reg = <0x09405000 0x1000>; | ||
interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&lsp1clk ZX296702_UART0_PCLK>; | ||
status = "disabled"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.