-
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 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/a…
…rm-soc Pull arm-soc device tree description updates from Arnd Bergmann: "This branch contains two kinds of updates: Some platforms in the process of getting converted to device tree based booting, and the platform specific patches necessary for that are included here. Other platforms are already converted, so we just need to update the actual device tree source files and the binding documents to add support for new board and new drivers. In the future we will probably separate those into two branches, and in the long run, the plan is to move the device tree source files out of the kernel repository, but that has to wait until we have completed a much larger portion of the binding documents." Fix up trivial conflicts in arch/arm/mach-imx/clk-imx6q.c due to newly added clkdev registers next to a few removed unnecessary ones. * tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (119 commits) ARM: LPC32xx: Add PWM to base dts file ARM: EXYNOS: mark the DMA channel binding for SPI as preliminary ARM: dts: Add nodes for spi controllers for SAMSUNG EXYNOS5 platforms ARM: EXYNOS: Enable platform support for SPI controllers for EXYNOS5 ARM: EXYNOS: Add spi clock support for EXYNOS5 ARM: dts: Add nodes for spi controllers for SAMSUNG EXYNOS4 platforms ARM: EXYNOS: Enable platform support for SPI controllers for EXYNOX4 ARM: EXYNOS: Fix the incorrect hierarchy of spi controller bus clock ARM: ux500: Remove PMU platform registration when booting with DT ARM: ux500: Remove temporary snowball_of_platform_devs enablement structure ARM: ux500: Ensure vendor specific properties have the vendor's identifier pinctrl: pinctrl-nomadik: Append sleepmode property with vendor specific prefixes ARM: ux500: Move rtc-pl031 registration to Device Tree when enabled ARM: ux500: Enable the AB8500 RTC for all DT:ed DB8500 based devices ARM: ux500: Correctly reference IRQs supplied by the AB8500 from Device Tree ARM: ux500: Apply ab8500-debug node do the db8500 DT structure ARM: ux500: Add a ab8500-usb Device Tree node for db8500 based devices ARM: ux500: Add db8500 Device Tree node for misc/ab8500-pwm ARM: ux500: Add db8500 Device Tree node for ab8500-sysctrl ARM: ux500: Enable LED heartbeat functionality on Snowbal via DT ...
- Loading branch information
Showing
111 changed files
with
4,516 additions
and
523 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,27 @@ | ||
* TI Common Platform Interrupt Controller | ||
|
||
Common Platform Interrupt Controller (cp_intc) is used on | ||
OMAP-L1x SoCs and can support several configurable number | ||
of interrupts. | ||
|
||
Main node required properties: | ||
|
||
- compatible : should be: | ||
"ti,cp-intc" | ||
- interrupt-controller : Identifies the node as an interrupt controller | ||
- #interrupt-cells : Specifies the number of cells needed to encode an | ||
interrupt source. The type shall be a <u32> and the value shall be 1. | ||
|
||
The cell contains the interrupt number in the range [0-128]. | ||
- ti,intc-size: Number of interrupts handled by the interrupt controller. | ||
- reg: physical base address and size of the intc registers map. | ||
|
||
Example: | ||
|
||
intc: interrupt-controller@1 { | ||
compatible = "ti,cp-intc"; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
ti,intc-size = <101>; | ||
reg = <0xfffee000 0x2000>; | ||
}; |
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,6 @@ | ||
Olimex i.MX Platforms Device Tree Bindings | ||
------------------------------------------ | ||
|
||
i.MX23 Olinuxino Low Cost Board | ||
Required root node properties: | ||
- compatible = "olimex,imx23-olinuxino", "fsl,imx23"; |
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,19 @@ | ||
* Freescale MXS LCD Interface (LCDIF) | ||
|
||
Required properties: | ||
- compatible: Should be "fsl,<chip>-lcdif". Supported chips include | ||
imx23 and imx28. | ||
- reg: Address and length of the register set for lcdif | ||
- interrupts: Should contain lcdif interrupts | ||
|
||
Optional properties: | ||
- panel-enable-gpios : Should specify the gpio for panel enable | ||
|
||
Examples: | ||
|
||
lcdif@80030000 { | ||
compatible = "fsl,imx28-lcdif"; | ||
reg = <0x80030000 2000>; | ||
interrupts = <38 86>; | ||
panel-enable-gpios = <&gpio3 30 0>; | ||
}; |
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,16 @@ | ||
* STMP3xxx/i.MX28 Time Clock controller | ||
|
||
Required properties: | ||
- compatible: should be one of the following. | ||
* "fsl,stmp3xxx-rtc" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: rtc alarm interrupt | ||
|
||
Example: | ||
|
||
rtc@80056000 { | ||
compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; | ||
reg = <0x80056000 2000>; | ||
interrupts = <29>; | ||
}; |
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,116 @@ | ||
* Samsung SPI Controller | ||
|
||
The Samsung SPI controller is used to interface with various devices such as flash | ||
and display controllers using the SPI communication interface. | ||
|
||
Required SoC Specific Properties: | ||
|
||
- compatible: should be one of the following. | ||
- samsung,s3c2443-spi: for s3c2443, s3c2416 and s3c2450 platforms | ||
- samsung,s3c6410-spi: for s3c6410 platforms | ||
- samsung,s5p6440-spi: for s5p6440 and s5p6450 platforms | ||
- samsung,s5pv210-spi: for s5pv210 and s5pc110 platforms | ||
- samsung,exynos4210-spi: for exynos4 and exynos5 platforms | ||
|
||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
|
||
- interrupts: The interrupt number to the cpu. The interrupt specifier format | ||
depends on the interrupt controller. | ||
|
||
[PRELIMINARY: the dma channel allocation will change once there are | ||
official DMA bindings] | ||
|
||
- tx-dma-channel: The dma channel specifier for tx operations. The format of | ||
the dma specifier depends on the dma controller. | ||
|
||
- rx-dma-channel: The dma channel specifier for rx operations. The format of | ||
the dma specifier depends on the dma controller. | ||
|
||
Required Board Specific Properties: | ||
|
||
- #address-cells: should be 1. | ||
- #size-cells: should be 0. | ||
- gpios: The gpio specifier for clock, mosi and miso interface lines (in the | ||
order specified). The format of the gpio specifier depends on the gpio | ||
controller. | ||
|
||
Optional Board Specific Properties: | ||
|
||
- samsung,spi-src-clk: If the spi controller includes a internal clock mux to | ||
select the clock source for the spi bus clock, this property can be used to | ||
indicate the clock to be used for driving the spi bus clock. If not specified, | ||
the clock number 0 is used as default. | ||
|
||
- num-cs: Specifies the number of chip select lines supported. If | ||
not specified, the default number of chip select lines is set to 1. | ||
|
||
SPI Controller specific data in SPI slave nodes: | ||
|
||
- The spi slave nodes should provide the following information which is required | ||
by the spi controller. | ||
|
||
- cs-gpio: A gpio specifier that specifies the gpio line used as | ||
the slave select line by the spi controller. The format of the gpio | ||
specifier depends on the gpio controller. | ||
|
||
- samsung,spi-feedback-delay: The sampling phase shift to be applied on the | ||
miso line (to account for any lag in the miso line). The following are the | ||
valid values. | ||
|
||
- 0: No phase shift. | ||
- 1: 90 degree phase shift sampling. | ||
- 2: 180 degree phase shift sampling. | ||
- 3: 270 degree phase shift sampling. | ||
|
||
Aliases: | ||
|
||
- All the SPI controller nodes should be represented in the aliases node using | ||
the following format 'spi{n}' where n is a unique number for the alias. | ||
|
||
|
||
Example: | ||
|
||
- SoC Specific Portion: | ||
|
||
spi_0: spi@12d20000 { | ||
compatible = "samsung,exynos4210-spi"; | ||
reg = <0x12d20000 0x100>; | ||
interrupts = <0 66 0>; | ||
tx-dma-channel = <&pdma0 5>; | ||
rx-dma-channel = <&pdma0 4>; | ||
}; | ||
|
||
- Board Specific Portion: | ||
|
||
spi_0: spi@12d20000 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
gpios = <&gpa2 4 2 3 0>, | ||
<&gpa2 6 2 3 0>, | ||
<&gpa2 7 2 3 0>; | ||
|
||
w25q80bw@0 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "w25x80"; | ||
reg = <0>; | ||
spi-max-frequency = <10000>; | ||
|
||
controller-data { | ||
cs-gpio = <&gpa2 5 1 0 3>; | ||
samsung,spi-feedback-delay = <0>; | ||
}; | ||
|
||
partition@0 { | ||
label = "U-Boot"; | ||
reg = <0x0 0x40000>; | ||
read-only; | ||
}; | ||
|
||
partition@40000 { | ||
label = "Kernel"; | ||
reg = <0x40000 0xc0000>; | ||
}; | ||
}; | ||
}; |
27 changes: 27 additions & 0 deletions
27
Documentation/devicetree/bindings/tty/serial/fsl-mxs-auart.txt
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,27 @@ | ||
* Freescale MXS Application UART (AUART) | ||
|
||
Required properties: | ||
- compatible : Should be "fsl,<soc>-auart". The supported SoCs include | ||
imx23 and imx28. | ||
- reg : Address and length of the register set for the device | ||
- interrupts : Should contain the auart interrupt numbers | ||
|
||
Example: | ||
auart0: serial@8006a000 { | ||
compatible = "fsl,imx28-auart", "fsl,imx23-auart"; | ||
reg = <0x8006a000 0x2000>; | ||
interrupts = <112 70 71>; | ||
}; | ||
|
||
Note: Each auart port should have an alias correctly numbered in "aliases" | ||
node. | ||
|
||
Example: | ||
|
||
aliases { | ||
serial0 = &auart0; | ||
serial1 = &auart1; | ||
serial2 = &auart2; | ||
serial3 = &auart3; | ||
serial4 = &auart4; | ||
}; |
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,14 @@ | ||
TI Watchdog Timer (WDT) Controller for OMAP | ||
|
||
Required properties: | ||
compatible: | ||
- "ti,omap3-wdt" for OMAP3 | ||
- "ti,omap4-wdt" for OMAP4 | ||
- ti,hwmods: Name of the hwmod associated to the WDT | ||
|
||
Examples: | ||
|
||
wdt2: wdt@4a314000 { | ||
compatible = "ti,omap4-wdt", "ti,omap3-wdt"; | ||
ti,hwmods = "wd_timer2"; | ||
}; |
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,113 @@ | ||
/* | ||
* aks-cdu.dts - Device Tree file for AK signal CDU | ||
* | ||
* Copyright (C) 2012 AK signal Brno a.s. | ||
* 2012 Jiri Prchal <jiri.prchal@aksignal.cz> | ||
* | ||
* Licensed under GPLv2 or later. | ||
*/ | ||
|
||
/dts-v1/; | ||
|
||
/include/ "ge863-pro3.dtsi" | ||
|
||
/ { | ||
chosen { | ||
bootargs = "console=ttyS0,115200 ubi.mtd=4 root=ubi0:rootfs rootfstype=ubifs"; | ||
}; | ||
|
||
ahb { | ||
apb { | ||
usart0: serial@fffb0000 { | ||
status = "okay"; | ||
}; | ||
|
||
usart1: serial@fffb4000 { | ||
status = "okay"; | ||
linux,rs485-enabled-at-boot-time; | ||
rs485-rts-delay = <0 0>; | ||
}; | ||
|
||
usart2: serial@fffb8000 { | ||
status = "okay"; | ||
linux,rs485-enabled-at-boot-time; | ||
rs485-rts-delay = <0 0>; | ||
}; | ||
|
||
usart3: serial@fffd0000 { | ||
status = "okay"; | ||
linux,rs485-enabled-at-boot-time; | ||
rs485-rts-delay = <0 0>; | ||
}; | ||
|
||
macb0: ethernet@fffc4000 { | ||
phy-mode = "rmii"; | ||
status = "okay"; | ||
}; | ||
|
||
usb1: gadget@fffa4000 { | ||
atmel,vbus-gpio = <&pioC 15 0>; | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
usb0: ohci@00500000 { | ||
num-ports = <2>; | ||
status = "okay"; | ||
}; | ||
|
||
nand0: nand@40000000 { | ||
nand-bus-width = <8>; | ||
nand-ecc-mode = "soft"; | ||
nand-on-flash-bbt; | ||
status = "okay"; | ||
|
||
bootstrap@0 { | ||
label = "bootstrap"; | ||
reg = <0x0 0x40000>; | ||
}; | ||
|
||
uboot@40000 { | ||
label = "uboot"; | ||
reg = <0x40000 0x80000>; | ||
}; | ||
ubootenv@c0000 { | ||
label = "ubootenv"; | ||
reg = <0xc0000 0x40000>; | ||
}; | ||
kernel@100000 { | ||
label = "kernel"; | ||
reg = <0x100000 0x400000>; | ||
}; | ||
rootfs@500000 { | ||
label = "rootfs"; | ||
reg = <0x500000 0x7b00000>; | ||
}; | ||
}; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
|
||
red { | ||
gpios = <&pioC 10 0>; | ||
linux,default-trigger = "none"; | ||
}; | ||
|
||
green { | ||
gpios = <&pioA 5 1>; | ||
linux,default-trigger = "none"; | ||
default-state = "on"; | ||
}; | ||
|
||
yellow { | ||
gpios = <&pioB 20 1>; | ||
linux,default-trigger = "none"; | ||
}; | ||
|
||
blue { | ||
gpios = <&pioB 21 1>; | ||
linux,default-trigger = "none"; | ||
}; | ||
}; | ||
}; |
Oops, something went wrong.