Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: at91: sama5d3/dt: add sama5d36ek dts files

Add .dts and .dtsi file to support sama5d36ek board.
Also update the the comments for sama5d36 in sama5d3.dtsi.

Signed-off-by: Josh Wu <josh.wu@atmel.com>
Acked-by: Boris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Kevin Hilman <khilman@linaro.org>

authored by

Josh Wu and committed by
Kevin Hilman
b32313c6 8e1c9f59

+76 -1
+2
arch/arm/boot/dts/Makefile
··· 40 40 dtb-$(CONFIG_ARCH_AT91) += sama5d33ek.dtb 41 41 dtb-$(CONFIG_ARCH_AT91) += sama5d34ek.dtb 42 42 dtb-$(CONFIG_ARCH_AT91) += sama5d35ek.dtb 43 + dtb-$(CONFIG_ARCH_AT91) += sama5d36ek.dtb 44 + 43 45 dtb-$(CONFIG_ARCH_ATLAS6) += atlas6-evb.dtb 44 46 dtb-$(CONFIG_ARCH_BCM2835) += bcm2835-rpi-b.dtb 45 47 dtb-$(CONFIG_ARCH_BCM_MOBILE) += bcm11351-brt.dtb \
+1 -1
arch/arm/boot/dts/sama5d3.dtsi
··· 1 1 /* 2 2 * sama5d3.dtsi - Device Tree Include file for SAMA5D3 family SoC 3 - * applies to SAMA5D31, SAMA5D33, SAMA5D34, SAMA5D35 SoC 3 + * applies to SAMA5D31, SAMA5D33, SAMA5D34, SAMA5D35, SAMA5D36 SoC 4 4 * 5 5 * Copyright (C) 2013 Atmel, 6 6 * 2013 Ludovic Desroches <ludovic.desroches@atmel.com>
+20
arch/arm/boot/dts/sama5d36.dtsi
··· 1 + /* 2 + * sama5d36.dtsi - Device Tree Include file for SAMA5D36 SoC 3 + * 4 + * Copyright (C) 2013 Atmel, 5 + * 2013 Josh Wu <josh.wu@atmel.com> 6 + * 7 + * Licensed under GPLv2 or later. 8 + */ 9 + #include "sama5d3.dtsi" 10 + #include "sama5d3_can.dtsi" 11 + #include "sama5d3_emac.dtsi" 12 + #include "sama5d3_gmac.dtsi" 13 + #include "sama5d3_lcd.dtsi" 14 + #include "sama5d3_mci2.dtsi" 15 + #include "sama5d3_tcb1.dtsi" 16 + #include "sama5d3_uart.dtsi" 17 + 18 + / { 19 + compatible = "atmel,samad36", "atmel,sama5d3", "atmel,sama5"; 20 + };
+53
arch/arm/boot/dts/sama5d36ek.dts
··· 1 + /* 2 + * sama5d36ek.dts - Device Tree file for SAMA5D36-EK board 3 + * 4 + * Copyright (C) 2013 Atmel, 5 + * 2013 Josh Wu <josh.wu@atmel.com> 6 + * 7 + * Licensed under GPLv2 or later. 8 + */ 9 + /dts-v1/; 10 + #include "sama5d36.dtsi" 11 + #include "sama5d3xmb.dtsi" 12 + #include "sama5d3xdm.dtsi" 13 + 14 + / { 15 + model = "Atmel SAMA5D36-EK"; 16 + compatible = "atmel,sama5d36ek", "atmel,sama5d3xmb", "atmel,sama5d3xcm", "atmel,sama5d36", "atmel,sama5d3", "atmel,sama5"; 17 + 18 + ahb { 19 + apb { 20 + spi0: spi@f0004000 { 21 + status = "okay"; 22 + }; 23 + 24 + ssc0: ssc@f0008000 { 25 + status = "okay"; 26 + }; 27 + 28 + can0: can@f000c000 { 29 + status = "okay"; 30 + }; 31 + 32 + i2c0: i2c@f0014000 { 33 + status = "okay"; 34 + }; 35 + 36 + i2c1: i2c@f0018000 { 37 + status = "okay"; 38 + }; 39 + 40 + macb0: ethernet@f0028000 { 41 + status = "okay"; 42 + }; 43 + 44 + macb1: ethernet@f802c000 { 45 + status = "okay"; 46 + }; 47 + }; 48 + }; 49 + 50 + sound { 51 + status = "okay"; 52 + }; 53 + };