* [PATCH v3 0/3] ARM: at91: introducing Atmel sama5d2 SoC
@ 2015-07-30 11:55 Nicolas Ferre
2015-07-30 11:55 ` [PATCH v3 1/3] ARM: at91/soc: add basic support for new " Nicolas Ferre
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Nicolas Ferre @ 2015-07-30 11:55 UTC (permalink / raw)
To: linux-arm-kernel
This is a little series to introduce the new Atmel Cortex-A5 sama5d2 SoC.
The product is not yet announced so you cannot find the datasheet yet. But be
sure to find it when it's released at the usual location: atmel.com!
The support is basic for now but allows to boot the chip and use the sama5d2
Xplained board.
This series is dependent on other patches sent for clocks (PMC + generic
clocks), irqchip and Ethernet. Some of these patches are already in linux-next
and other are progressing as this series goes upstream and is finaly merged in
arm-soc.
More material is on its way to being published or already under review (like
the flexcom or QSPI for instance). Stay tunned for more fun!
Changes in v3:
- collect Ack by Alexandre
- remove sd/mmc nodes
- remove generated clock nodes
Changes in v2:
- change the meaningless config HAVE_AT91_GENERATED to HAVE_AT91_GENERATED_CLK
- modify README file for clarity
- fix sdmmc clocks and memory range
- add flexcom and audio Class D amplifier peripheral clock definitions
- add qspi peripheral clock definitions
- add more generated clock definitions
- fix DMA definitions for crypto peripherals
- add spi, i2c and rtc nodes
- enable spi and i2c nodes
- enable sdmmc0
- move to stdout-path for console
Ludovic Desroches (1):
ARM: at91/dt: add basic dtsi for sama5d2 SoC
Nicolas Ferre (2):
ARM: at91/soc: add basic support for new sama5d2 SoC
ARM: at91/dt: add minimal sama5d2 Xplained board
Documentation/arm/Atmel/README | 5 +
.../devicetree/bindings/arm/atmel-at91.txt | 2 +
arch/arm/Kconfig.debug | 6 +
arch/arm/boot/dts/Makefile | 1 +
arch/arm/boot/dts/at91-sama5d2_xplained.dts | 134 +++
arch/arm/boot/dts/sama5d2.dtsi | 925 +++++++++++++++++++++
arch/arm/include/debug/at91.S | 5 +-
arch/arm/mach-at91/Kconfig | 12 +
arch/arm/mach-at91/sama5.c | 3 +
arch/arm/mach-at91/soc.h | 3 +
10 files changed, 1095 insertions(+), 1 deletion(-)
create mode 100644 arch/arm/boot/dts/at91-sama5d2_xplained.dts
create mode 100644 arch/arm/boot/dts/sama5d2.dtsi
--
2.1.3
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH v3 1/3] ARM: at91/soc: add basic support for new sama5d2 SoC 2015-07-30 11:55 [PATCH v3 0/3] ARM: at91: introducing Atmel sama5d2 SoC Nicolas Ferre @ 2015-07-30 11:55 ` Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for " Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 3/3] ARM: at91/dt: add minimal sama5d2 Xplained board Nicolas Ferre 2 siblings, 0 replies; 6+ messages in thread From: Nicolas Ferre @ 2015-07-30 11:55 UTC (permalink / raw) To: linux-arm-kernel Add Kconfig entries, header file changes and addition to the documentation. The early debug infrastructure is also added for easy development. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> --- Changes in v3: - collect Ack by Alexandre Changes in v2: - change the meaningless config HAVE_AT91_GENERATED to HAVE_AT91_GENERATED_CLK - modify README file for clarity Documentation/arm/Atmel/README | 5 +++++ Documentation/devicetree/bindings/arm/atmel-at91.txt | 2 ++ arch/arm/Kconfig.debug | 6 ++++++ arch/arm/include/debug/at91.S | 5 ++++- arch/arm/mach-at91/Kconfig | 12 ++++++++++++ arch/arm/mach-at91/sama5.c | 3 +++ arch/arm/mach-at91/soc.h | 3 +++ 7 files changed, 35 insertions(+), 1 deletion(-) diff --git a/Documentation/arm/Atmel/README b/Documentation/arm/Atmel/README index c53a19b4aab2..0931cf7e2e56 100644 --- a/Documentation/arm/Atmel/README +++ b/Documentation/arm/Atmel/README @@ -90,6 +90,11 @@ the Atmel website: http://www.atmel.com. + Datasheet http://www.atmel.com/Images/Atmel-11238-32-bit-Cortex-A5-Microcontroller-SAMA5D4_Datasheet.pdf + - sama5d2 family + - sama5d27 + + Datasheet + Coming soon + Linux kernel information ------------------------ diff --git a/Documentation/devicetree/bindings/arm/atmel-at91.txt b/Documentation/devicetree/bindings/arm/atmel-at91.txt index dd998b9c0433..23c097812d98 100644 --- a/Documentation/devicetree/bindings/arm/atmel-at91.txt +++ b/Documentation/devicetree/bindings/arm/atmel-at91.txt @@ -27,6 +27,8 @@ compatible: must be one of: o "atmel,at91sam9xe" * "atmel,sama5" for SoCs using a Cortex-A5, shall be extended with the specific SoC family: + o "atmel,sama5d2" shall be extended with the specific SoC compatible: + - "atmel,sama5d27" o "atmel,sama5d3" shall be extended with the specific SoC compatible: - "atmel,sama5d31" - "atmel,sama5d33" diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index fc1533016622..0cfd7f947f6b 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug @@ -141,6 +141,12 @@ choice depends on ARCH_AT91 depends on SOC_SAMA5 + config AT91_DEBUG_LL_DBGU3 + bool "Kernel low-level debugging on sama5d2" + select DEBUG_AT91_UART + depends on ARCH_AT91 + depends on SOC_SAMA5 + config DEBUG_BCM2835 bool "Kernel low-level debugging on BCM2835 PL011 UART" depends on ARCH_BCM2835 diff --git a/arch/arm/include/debug/at91.S b/arch/arm/include/debug/at91.S index c3c45e628e33..2556a8801c8c 100644 --- a/arch/arm/include/debug/at91.S +++ b/arch/arm/include/debug/at91.S @@ -13,9 +13,12 @@ #define AT91_DBGU 0xfffff200 /* AT91_BASE_DBGU0 */ #elif defined(CONFIG_AT91_DEBUG_LL_DBGU1) #define AT91_DBGU 0xffffee00 /* AT91_BASE_DBGU1 */ -#else +#elif defined(CONFIG_AT91_DEBUG_LL_DBGU2) /* On sama5d4, use USART3 as low level serial console */ #define AT91_DBGU 0xfc00c000 /* SAMA5D4_BASE_USART3 */ +#else +/* On sama5d2, use UART1 as low level serial console */ +#define AT91_DBGU 0xf8020000 #endif #ifdef CONFIG_MMU diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index e8273e79f6ba..92673006e55c 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -8,6 +8,18 @@ menuconfig ARCH_AT91 select SOC_BUS if ARCH_AT91 +config SOC_SAMA5D2 + bool "SAMA5D2 family" if ARCH_MULTI_V7 + select SOC_SAMA5 + select CACHE_L2X0 + select HAVE_FB_ATMEL + select HAVE_AT91_UTMI + select HAVE_AT91_USB_CLK + select HAVE_AT91_H32MX + select HAVE_AT91_GENERATED_CLK + help + Select this if ou are using one of Atmel's SAMA5D2 family SoC. + config SOC_SAMA5D3 bool "SAMA5D3 family" if ARCH_MULTI_V7 select SOC_SAMA5 diff --git a/arch/arm/mach-at91/sama5.c b/arch/arm/mach-at91/sama5.c index 41d829d8e7d5..90c3c3051ae7 100644 --- a/arch/arm/mach-at91/sama5.c +++ b/arch/arm/mach-at91/sama5.c @@ -18,6 +18,8 @@ #include "soc.h" static const struct at91_soc sama5_socs[] = { + AT91_SOC(SAMA5D2_CIDR_MATCH, SAMA5D27_EXID_MATCH, + "sama5d27", "sama5d2"), AT91_SOC(SAMA5D3_CIDR_MATCH, SAMA5D31_EXID_MATCH, "sama5d31", "sama5d3"), AT91_SOC(SAMA5D3_CIDR_MATCH, SAMA5D33_EXID_MATCH, @@ -64,6 +66,7 @@ DT_MACHINE_START(sama5_dt, "Atmel SAMA5") MACHINE_END static const char *sama5_alt_dt_board_compat[] __initconst = { + "atmel,sama5d2", "atmel,sama5d4", NULL }; diff --git a/arch/arm/mach-at91/soc.h b/arch/arm/mach-at91/soc.h index be23c400596b..8ede0ef86172 100644 --- a/arch/arm/mach-at91/soc.h +++ b/arch/arm/mach-at91/soc.h @@ -62,6 +62,9 @@ at91_soc_init(const struct at91_soc *socs); #define AT91SAM9XE256_CIDR_MATCH 0x329a93a0 #define AT91SAM9XE512_CIDR_MATCH 0x329aa3a0 +#define SAMA5D2_CIDR_MATCH 0x0a5c08c0 +#define SAMA5D27_EXID_MATCH 0x00000021 + #define SAMA5D3_CIDR_MATCH 0x0a5c07c0 #define SAMA5D31_EXID_MATCH 0x00444300 #define SAMA5D33_EXID_MATCH 0x00414300 -- 2.1.3 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for sama5d2 SoC 2015-07-30 11:55 [PATCH v3 0/3] ARM: at91: introducing Atmel sama5d2 SoC Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 1/3] ARM: at91/soc: add basic support for new " Nicolas Ferre @ 2015-07-30 11:55 ` Nicolas Ferre 2015-07-30 12:25 ` Nicolas Ferre 2015-07-30 15:51 ` Alexandre Belloni 2015-07-30 11:55 ` [PATCH v3 3/3] ARM: at91/dt: add minimal sama5d2 Xplained board Nicolas Ferre 2 siblings, 2 replies; 6+ messages in thread From: Nicolas Ferre @ 2015-07-30 11:55 UTC (permalink / raw) To: linux-arm-kernel From: Ludovic Desroches <ludovic.desroches@atmel.com> Only the basic support for this new Atmel Cortex-A5 SoC. A subset of the peripherals is setup to allow booting. IRQ, clocks, USB, crypto, timers, rtc, ethernet, spi/i2c and uart/usart peripheral nodes are added. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> --- Changes in v3: - remove sd/mmc nodes - remove generated clock nodes Changes in v2: - fix sdmmc clocks and memory range - add flexcom and audio Class D amplifier peripheral clock definitions - add qspi peripheral clock definitions - add more generated clock definitions - fix DMA definitions for crypto peripherals - add spi, i2c and rtc nodes arch/arm/boot/dts/sama5d2.dtsi | 925 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 925 insertions(+) create mode 100644 arch/arm/boot/dts/sama5d2.dtsi diff --git a/arch/arm/boot/dts/sama5d2.dtsi b/arch/arm/boot/dts/sama5d2.dtsi new file mode 100644 index 000000000000..f39258fa3815 --- /dev/null +++ b/arch/arm/boot/dts/sama5d2.dtsi @@ -0,0 +1,925 @@ +/* + * sama5d2.dtsi - Device Tree Include file for SAMA5D2 family SoC + * + * Copyright (C) 2015 Atmel, + * 2015 Ludovic Desroches <ludovic.desroches@atmel.com> + * + * This file is dual-licensed: you can use it either under the terms + * of the GPL or the X11 license, at your option. Note that this dual + * licensing only applies to this file, and not this project as a + * whole. + * + * a) This file is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This file is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * Or, alternatively, + * + * b) Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +#include "skeleton.dtsi" +#include <dt-bindings/dma/at91.h> +#include <dt-bindings/interrupt-controller/irq.h> +#include <dt-bindings/clock/at91.h> + +/ { + model = "Atmel SAMA5D2 family SoC"; + compatible = "atmel,sama5d2"; + interrupt-parent = <&aic>; + + aliases { + serial0 = &uart1; + serial1 = &uart3; + tcb0 = &tcb0; + tcb1 = &tcb1; + }; + + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu at 0 { + device_type = "cpu"; + compatible = "arm,cortex-a5"; + reg = <0>; + next-level-cache = <&L2>; + }; + }; + + memory { + reg = <0x20000000 0x20000000>; + }; + + clocks { + slow_xtal: slow_xtal { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <0>; + }; + + main_xtal: main_xtal { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <0>; + }; + + adc_op_clk: adc_op_clk{ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <1000000>; + }; + }; + + ns_sram: sram at 00200000 { + compatible = "mmio-sram"; + reg = <0x00200000 0x20000>; + }; + + ahb { + compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <1>; + ranges; + + usb0: gadget at 00300000 { + #address-cells = <1>; + #size-cells = <0>; + compatible = "atmel,sama5d3-udc"; + reg = <0x00300000 0x100000 + 0xfc02c000 0x400>; + interrupts = <42 IRQ_TYPE_LEVEL_HIGH 2>; + clocks = <&udphs_clk>, <&utmi>; + clock-names = "pclk", "hclk"; + status = "disabled"; + + ep0 { + reg = <0>; + atmel,fifo-size = <64>; + atmel,nb-banks = <1>; + }; + + ep1 { + reg = <1>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <3>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep2 { + reg = <2>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <3>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep3 { + reg = <3>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep4 { + reg = <4>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep5 { + reg = <5>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep6 { + reg = <6>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep7 { + reg = <7>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-dma; + atmel,can-isoc; + }; + + ep8 { + reg = <8>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep9 { + reg = <9>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep10 { + reg = <10>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep11 { + reg = <11>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep12 { + reg = <12>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep13 { + reg = <13>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep14 { + reg = <14>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + + ep15 { + reg = <15>; + atmel,fifo-size = <1024>; + atmel,nb-banks = <2>; + atmel,can-isoc; + }; + }; + + usb1: ohci at 00400000 { + compatible = "atmel,at91rm9200-ohci", "usb-ohci"; + reg = <0x00400000 0x100000>; + interrupts = <41 IRQ_TYPE_LEVEL_HIGH 2>; + clocks = <&uhphs_clk>, <&uhphs_clk>, <&uhpck>; + clock-names = "ohci_clk", "hclk", "uhpck"; + status = "disabled"; + }; + + usb2: ehci at 00500000 { + compatible = "atmel,at91sam9g45-ehci", "usb-ehci"; + reg = <0x00500000 0x100000>; + interrupts = <41 IRQ_TYPE_LEVEL_HIGH 2>; + clocks = <&utmi>, <&uhphs_clk>; + clock-names = "usb_clk", "ehci_clk"; + status = "disabled"; + }; + + L2: cache-controller at 00a00000 { + compatible = "arm,pl310-cache"; + reg = <0x00a00000 0x1000>; + interrupts = <63 IRQ_TYPE_LEVEL_HIGH 4>; + cache-unified; + cache-level = <2>; + }; + + apb { + compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <1>; + ranges; + + ramc0: ramc at f000c000 { + compatible = "atmel,sama5d3-ddramc"; + reg = <0xf000c000 0x200>; + clocks = <&ddrck>, <&mpddr_clk>; + clock-names = "ddrck", "mpddr"; + }; + + dma0: dma-controller at f0010000 { + compatible = "atmel,sama5d4-dma"; + reg = <0xf0010000 0x1000>; + interrupts = <6 IRQ_TYPE_LEVEL_HIGH 0>; + #dma-cells = <1>; + clocks = <&dma0_clk>; + clock-names = "dma_clk"; + }; + + pmc: pmc at f0014000 { + compatible = "atmel,sama5d2-pmc"; + reg = <0xf0014000 0x160>; + interrupts = <74 IRQ_TYPE_LEVEL_HIGH 7>; + interrupt-controller; + #address-cells = <1>; + #size-cells = <0>; + #interrupt-cells = <1>; + + main_rc_osc: main_rc_osc { + compatible = "atmel,at91sam9x5-clk-main-rc-osc"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_MOSCRCS>; + clock-frequency = <12000000>; + clock-accuracy = <100000000>; + }; + + main_osc: main_osc { + compatible = "atmel,at91rm9200-clk-main-osc"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_MOSCS>; + clocks = <&main_xtal>; + }; + + main: mainck { + compatible = "atmel,at91sam9x5-clk-main"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_MOSCSELS>; + clocks = <&main_rc_osc &main_osc>; + }; + + plla: pllack { + compatible = "atmel,sama5d3-clk-pll"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_LOCKA>; + clocks = <&main>; + reg = <0>; + atmel,clk-input-range = <12000000 12000000>; + #atmel,pll-clk-output-range-cells = <4>; + atmel,pll-clk-output-ranges = <600000000 1200000000 0 0>; + }; + + plladiv: plladivck { + compatible = "atmel,at91sam9x5-clk-plldiv"; + #clock-cells = <0>; + clocks = <&plla>; + }; + + utmi: utmick { + compatible = "atmel,at91sam9x5-clk-utmi"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_LOCKU>; + clocks = <&main>; + }; + + mck: masterck { + compatible = "atmel,at91sam9x5-clk-master"; + #clock-cells = <0>; + interrupt-parent = <&pmc>; + interrupts = <AT91_PMC_MCKRDY>; + clocks = <&clk32k>, <&main>, <&plladiv>, <&utmi>; + atmel,clk-output-range = <124000000 166000000>; + atmel,clk-divisors = <1 2 4 3>; + }; + + h32ck: h32mxck { + #clock-cells = <0>; + compatible = "atmel,sama5d4-clk-h32mx"; + clocks = <&mck>; + }; + + usb: usbck { + compatible = "atmel,at91sam9x5-clk-usb"; + #clock-cells = <0>; + clocks = <&plladiv>, <&utmi>; + }; + + prog: progck { + compatible = "atmel,at91sam9x5-clk-programmable"; + #address-cells = <1>; + #size-cells = <0>; + interrupt-parent = <&pmc>; + clocks = <&clk32k>, <&main>, <&plladiv>, <&utmi>, <&mck>; + + prog0: prog0 { + #clock-cells = <0>; + reg = <0>; + interrupts = <AT91_PMC_PCKRDY(0)>; + }; + + prog1: prog1 { + #clock-cells = <0>; + reg = <1>; + interrupts = <AT91_PMC_PCKRDY(1)>; + }; + + prog2: prog2 { + #clock-cells = <0>; + reg = <2>; + interrupts = <AT91_PMC_PCKRDY(2)>; + }; + }; + + systemck { + compatible = "atmel,at91rm9200-clk-system"; + #address-cells = <1>; + #size-cells = <0>; + + ddrck: ddrck { + #clock-cells = <0>; + reg = <2>; + clocks = <&mck>; + }; + + lcdck: lcdck { + #clock-cells = <0>; + reg = <3>; + clocks = <&mck>; + }; + + uhpck: uhpck { + #clock-cells = <0>; + reg = <6>; + clocks = <&usb>; + }; + + udpck: udpck { + #clock-cells = <0>; + reg = <7>; + clocks = <&usb>; + }; + + pck0: pck0 { + #clock-cells = <0>; + reg = <8>; + clocks = <&prog0>; + }; + + pck1: pck1 { + #clock-cells = <0>; + reg = <9>; + clocks = <&prog1>; + }; + + pck2: pck2 { + #clock-cells = <0>; + reg = <10>; + clocks = <&prog2>; + }; + + iscck: iscck { + #clock-cells = <0>; + reg = <18>; + clocks = <&mck>; + }; + }; + + periph32ck { + compatible = "atmel,at91sam9x5-clk-peripheral"; + #address-cells = <1>; + #size-cells = <0>; + clocks = <&h32ck>; + + macb0_clk: macb0_clk { + #clock-cells = <0>; + reg = <5>; + atmel,clk-output-range = <0 83000000>; + }; + + tdes_clk: tdes_clk { + #clock-cells = <0>; + reg = <11>; + atmel,clk-output-range = <0 83000000>; + }; + + matrix1_clk: matrix1_clk { + #clock-cells = <0>; + reg = <14>; + }; + + hsmc_clk: hsmc_clk { + #clock-cells = <0>; + reg = <17>; + }; + + pioA_clk: pioA_clk { + #clock-cells = <0>; + reg = <18>; + atmel,clk-output-range = <0 83000000>; + }; + + flx0_clk: flx0_clk { + #clock-cells = <0>; + reg = <19>; + atmel,clk-output-range = <0 83000000>; + }; + + flx1_clk: flx1_clk { + #clock-cells = <0>; + reg = <20>; + atmel,clk-output-range = <0 83000000>; + }; + + flx2_clk: flx2_clk { + #clock-cells = <0>; + reg = <21>; + atmel,clk-output-range = <0 83000000>; + }; + + flx3_clk: flx3_clk { + #clock-cells = <0>; + reg = <22>; + atmel,clk-output-range = <0 83000000>; + }; + + flx4_clk: flx4_clk { + #clock-cells = <0>; + reg = <23>; + atmel,clk-output-range = <0 83000000>; + }; + + uart0_clk: uart0_clk { + #clock-cells = <0>; + reg = <24>; + atmel,clk-output-range = <0 83000000>; + }; + + uart1_clk: uart1_clk { + #clock-cells = <0>; + reg = <25>; + atmel,clk-output-range = <0 83000000>; + }; + + uart2_clk: uart2_clk { + #clock-cells = <0>; + reg = <26>; + atmel,clk-output-range = <0 83000000>; + }; + + uart3_clk: uart3_clk { + #clock-cells = <0>; + reg = <27>; + atmel,clk-output-range = <0 83000000>; + }; + + uart4_clk: uart4_clk { + #clock-cells = <0>; + reg = <28>; + atmel,clk-output-range = <0 83000000>; + }; + + twi0_clk: twi0_clk { + reg = <29>; + #clock-cells = <0>; + atmel,clk-output-range = <0 83000000>; + }; + + twi1_clk: twi1_clk { + #clock-cells = <0>; + reg = <30>; + atmel,clk-output-range = <0 83000000>; + }; + + spi0_clk: spi0_clk { + #clock-cells = <0>; + reg = <33>; + atmel,clk-output-range = <0 83000000>; + }; + + spi1_clk: spi1_clk { + #clock-cells = <0>; + reg = <34>; + atmel,clk-output-range = <0 83000000>; + }; + + tcb0_clk: tcb0_clk { + #clock-cells = <0>; + reg = <35>; + atmel,clk-output-range = <0 83000000>; + }; + + tcb1_clk: tcb1_clk { + #clock-cells = <0>; + reg = <36>; + atmel,clk-output-range = <0 83000000>; + }; + + pwm_clk: pwm_clk { + #clock-cells = <0>; + reg = <38>; + atmel,clk-output-range = <0 83000000>; + }; + + adc_clk: adc_clk { + #clock-cells = <0>; + reg = <40>; + atmel,clk-output-range = <0 83000000>; + }; + + uhphs_clk: uhphs_clk { + #clock-cells = <0>; + reg = <41>; + atmel,clk-output-range = <0 83000000>; + }; + + udphs_clk: udphs_clk { + #clock-cells = <0>; + reg = <42>; + atmel,clk-output-range = <0 83000000>; + }; + + ssc0_clk: ssc0_clk { + #clock-cells = <0>; + reg = <43>; + atmel,clk-output-range = <0 83000000>; + }; + + ssc1_clk: ssc1_clk { + #clock-cells = <0>; + reg = <44>; + atmel,clk-output-range = <0 83000000>; + }; + + trng_clk: trng_clk { + #clock-cells = <0>; + reg = <47>; + atmel,clk-output-range = <0 83000000>; + }; + + classd_clk: classd_clk { + #clock-cells = <0>; + reg = <59>; + atmel,clk-output-range = <0 83000000>; + }; + }; + + periph64ck { + compatible = "atmel,at91sam9x5-clk-peripheral"; + #address-cells = <1>; + #size-cells = <0>; + clocks = <&mck>; + + dma0_clk: dma0_clk { + #clock-cells = <0>; + reg = <6>; + }; + + dma1_clk: dma1_clk { + #clock-cells = <0>; + reg = <7>; + }; + + aes_clk: aes_clk { + #clock-cells = <0>; + reg = <9>; + }; + + aesb_clk: aesb_clk { + #clock-cells = <0>; + reg = <10>; + }; + + sha_clk: sha_clk { + #clock-cells = <0>; + reg = <12>; + }; + + mpddr_clk: mpddr_clk { + #clock-cells = <0>; + reg = <13>; + }; + + matrix0_clk: matrix0_clk { + #clock-cells = <0>; + reg = <15>; + }; + + sdmmc0_hclk: sdmmc0_hclk { + #clock-cells = <0>; + reg = <31>; + }; + + sdmmc1_hclk: sdmmc1_hclk { + #clock-cells = <0>; + reg = <32>; + }; + + lcdc_clk: lcdc_clk { + #clock-cells = <0>; + reg = <45>; + }; + + isc_clk: isc_clk { + #clock-cells = <0>; + reg = <46>; + }; + + qspi0_clk: qspi0_clk { + #clock-cells = <0>; + reg = <52>; + }; + + qspi1_clk: qspi1_clk { + #clock-cells = <0>; + reg = <53>; + }; + }; + }; + + sha at f0028000 { + compatible = "atmel,at91sam9g46-sha"; + reg = <0xf0028000 0x100>; + interrupts = <12 IRQ_TYPE_LEVEL_HIGH 0>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(30))>; + dma-names = "tx"; + clocks = <&sha_clk>; + clock-names = "sha_clk"; + status = "disabled"; + }; + + aes at f002c000 { + compatible = "atmel,at91sam9g46-aes"; + reg = <0xf002c000 0x100>; + interrupts = <9 IRQ_TYPE_LEVEL_HIGH 0>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(26))>, + <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(27))>; + dma-names = "tx", "rx"; + clocks = <&aes_clk>; + clock-names = "aes_clk"; + status = "disabled"; + }; + + spi0: spi at f8000000 { + compatible = "atmel,at91rm9200-spi"; + reg = <0xf8000000 0x100>; + interrupts = <33 IRQ_TYPE_LEVEL_HIGH 7>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(6))>, + <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(7))>; + dma-names = "tx", "rx"; + clocks = <&spi0_clk>; + clock-names = "spi_clk"; + atmel,fifo-size = <16>; + #address-cells = <1>; + #size-cells = <0>; + status = "disabled"; + }; + + macb0: ethernet at f8008000 { + compatible = "atmel,sama5d2-gem"; + reg = <0xf8008000 0x1000>; + interrupts = <5 IRQ_TYPE_LEVEL_HIGH 3 /* Queue 0 */ + 66 IRQ_TYPE_LEVEL_HIGH 3 /* Queue 1 */ + 67 IRQ_TYPE_LEVEL_HIGH 3>; /* Queue 2 */ + #address-cells = <1>; + #size-cells = <0>; + clocks = <&macb0_clk>, <&macb0_clk>; + clock-names = "hclk", "pclk"; + status = "disabled"; + }; + + tcb0: timer at f800c000 { + compatible = "atmel,at91sam9x5-tcb"; + reg = <0xf800c000 0x100>; + interrupts = <35 IRQ_TYPE_LEVEL_HIGH 0>; + clocks = <&tcb0_clk>; + clock-names = "t0_clk"; + }; + + tcb1: timer at f8010000 { + compatible = "atmel,at91sam9x5-tcb"; + reg = <0xf8010000 0x100>; + interrupts = <36 IRQ_TYPE_LEVEL_HIGH 0>; + clocks = <&tcb1_clk>; + clock-names = "t0_clk"; + }; + + uart0: serial at f801c000 { + compatible = "atmel,at91sam9260-usart"; + reg = <0xf801c000 0x100>; + interrupts = <24 IRQ_TYPE_LEVEL_HIGH 7>; + clocks = <&uart0_clk>; + clock-names = "usart"; + status = "disabled"; + }; + + uart1: serial at f8020000 { + compatible = "atmel,at91sam9260-usart"; + reg = <0xf8020000 0x100>; + interrupts = <25 IRQ_TYPE_LEVEL_HIGH 7>; + clocks = <&uart1_clk>; + clock-names = "usart"; + status = "disabled"; + }; + + uart2: serial at f8024000 { + compatible = "atmel,at91sam9260-usart"; + reg = <0xf8024000 0x100>; + interrupts = <26 IRQ_TYPE_LEVEL_HIGH 7>; + clocks = <&uart2_clk>; + clock-names = "usart"; + status = "disabled"; + }; + + i2c0: i2c at f8028000 { + compatible = "atmel,sama5d2-i2c"; + reg = <0xf8028000 0x100>; + interrupts = <29 IRQ_TYPE_LEVEL_HIGH 7>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(0))>, + <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(1))>; + dma-names = "tx", "rx"; + #address-cells = <1>; + #size-cells = <0>; + clocks = <&twi0_clk>; + status = "disabled"; + }; + + pit: timer at f8048030 { + compatible = "atmel,at91sam9260-pit"; + reg = <0xf8048030 0x10>; + interrupts = <3 IRQ_TYPE_LEVEL_HIGH 5>; + clocks = <&h32ck>; + }; + + sckc at f8048050 { + compatible = "atmel,at91sam9x5-sckc"; + reg = <0xf8048050 0x4>; + + slow_rc_osc: slow_rc_osc { + compatible = "atmel,at91sam9x5-clk-slow-rc-osc"; + #clock-cells = <0>; + clock-frequency = <32768>; + clock-accuracy = <250000000>; + atmel,startup-time-usec = <75>; + }; + + slow_osc: slow_osc { + compatible = "atmel,at91sam9x5-clk-slow-osc"; + #clock-cells = <0>; + clocks = <&slow_xtal>; + atmel,startup-time-usec = <1200000>; + }; + + clk32k: slowck { + compatible = "atmel,at91sam9x5-clk-slow"; + #clock-cells = <0>; + clocks = <&slow_rc_osc &slow_osc>; + }; + }; + + rtc at f80480b0 { + compatible = "atmel,at91rm9200-rtc"; + reg = <0xf80480b0 0x30>; + interrupts = <74 IRQ_TYPE_LEVEL_HIGH 7>; + }; + + spi1: spi at fc000000 { + compatible = "atmel,at91rm9200-spi"; + reg = <0xfc000000 0x100>; + interrupts = <34 IRQ_TYPE_LEVEL_HIGH 7>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(8))>, + <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(9))>; + dma-names = "tx", "rx"; + clocks = <&spi1_clk>; + clock-names = "spi_clk"; + atmel,fifo-size = <16>; + #address-cells = <1>; + #size-cells = <0>; + status = "disabled"; + }; + + uart3: serial at fc008000 { + compatible = "atmel,at91sam9260-usart"; + reg = <0xfc008000 0x100>; + interrupts = <27 IRQ_TYPE_LEVEL_HIGH 7>; + clocks = <&uart3_clk>; + clock-names = "usart"; + status = "disabled"; + }; + + uart4: serial at fc00c000 { + compatible = "atmel,at91sam9260-usart"; + reg = <0xfc00c000 0x100>; + interrupts = <28 IRQ_TYPE_LEVEL_HIGH 7>; + clocks = <&uart4_clk>; + clock-names = "usart"; + status = "disabled"; + }; + + aic: interrupt-controller at fc020000 { + #interrupt-cells = <3>; + compatible = "atmel,sama5d2-aic"; + interrupt-controller; + reg = <0xfc020000 0x200>; + atmel,external-irqs = <49>; + }; + + i2c1: i2c at fc028000 { + compatible = "atmel,sama5d2-i2c"; + reg = <0xfc028000 0x100>; + interrupts = <30 IRQ_TYPE_LEVEL_HIGH 7>; + dmas = <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(2))>, + <&dma0 + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | + AT91_XDMAC_DT_PERID(3))>; + dma-names = "tx", "rx"; + #address-cells = <1>; + #size-cells = <0>; + clocks = <&twi1_clk>; + status = "disabled"; + }; + }; + }; +}; -- 2.1.3 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for sama5d2 SoC 2015-07-30 11:55 ` [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for " Nicolas Ferre @ 2015-07-30 12:25 ` Nicolas Ferre 2015-07-30 15:51 ` Alexandre Belloni 1 sibling, 0 replies; 6+ messages in thread From: Nicolas Ferre @ 2015-07-30 12:25 UTC (permalink / raw) To: linux-arm-kernel Le 30/07/2015 13:55, Nicolas Ferre a ?crit : > From: Ludovic Desroches <ludovic.desroches@atmel.com> > > Only the basic support for this new Atmel Cortex-A5 SoC. A subset of the > peripherals is setup to allow booting. > IRQ, clocks, USB, crypto, timers, rtc, ethernet, spi/i2c and > uart/usart peripheral nodes are added. > > Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> > Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> > --- > > Changes in v3: > - remove sd/mmc nodes > - remove generated clock nodes Oh I forgot about this: - corrected the DMA HW handler interfaces for SHA and AES thanks to Leilei! Bye, > > Changes in v2: > - fix sdmmc clocks and memory range > - add flexcom and audio Class D amplifier peripheral clock definitions > - add qspi peripheral clock definitions > - add more generated clock definitions > - fix DMA definitions for crypto peripherals > - add spi, i2c and rtc nodes > > arch/arm/boot/dts/sama5d2.dtsi | 925 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 925 insertions(+) > create mode 100644 arch/arm/boot/dts/sama5d2.dtsi > > diff --git a/arch/arm/boot/dts/sama5d2.dtsi b/arch/arm/boot/dts/sama5d2.dtsi > new file mode 100644 > index 000000000000..f39258fa3815 > --- /dev/null > +++ b/arch/arm/boot/dts/sama5d2.dtsi > @@ -0,0 +1,925 @@ > +/* > + * sama5d2.dtsi - Device Tree Include file for SAMA5D2 family SoC > + * > + * Copyright (C) 2015 Atmel, > + * 2015 Ludovic Desroches <ludovic.desroches@atmel.com> > + * > + * This file is dual-licensed: you can use it either under the terms > + * of the GPL or the X11 license, at your option. Note that this dual > + * licensing only applies to this file, and not this project as a > + * whole. > + * > + * a) This file is free software; you can redistribute it and/or > + * modify it under the terms of the GNU General Public License as > + * published by the Free Software Foundation; either version 2 of the > + * License, or (at your option) any later version. > + * > + * This file is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + * Or, alternatively, > + * > + * b) Permission is hereby granted, free of charge, to any person > + * obtaining a copy of this software and associated documentation > + * files (the "Software"), to deal in the Software without > + * restriction, including without limitation the rights to use, > + * copy, modify, merge, publish, distribute, sublicense, and/or > + * sell copies of the Software, and to permit persons to whom the > + * Software is furnished to do so, subject to the following > + * conditions: > + * > + * The above copyright notice and this permission notice shall be > + * included in all copies or substantial portions of the Software. > + * > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, > + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES > + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND > + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT > + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, > + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING > + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR > + * OTHER DEALINGS IN THE SOFTWARE. > + */ > + > +#include "skeleton.dtsi" > +#include <dt-bindings/dma/at91.h> > +#include <dt-bindings/interrupt-controller/irq.h> > +#include <dt-bindings/clock/at91.h> > + > +/ { > + model = "Atmel SAMA5D2 family SoC"; > + compatible = "atmel,sama5d2"; > + interrupt-parent = <&aic>; > + > + aliases { > + serial0 = &uart1; > + serial1 = &uart3; > + tcb0 = &tcb0; > + tcb1 = &tcb1; > + }; > + > + cpus { > + #address-cells = <1>; > + #size-cells = <0>; > + > + cpu at 0 { > + device_type = "cpu"; > + compatible = "arm,cortex-a5"; > + reg = <0>; > + next-level-cache = <&L2>; > + }; > + }; > + > + memory { > + reg = <0x20000000 0x20000000>; > + }; > + > + clocks { > + slow_xtal: slow_xtal { > + compatible = "fixed-clock"; > + #clock-cells = <0>; > + clock-frequency = <0>; > + }; > + > + main_xtal: main_xtal { > + compatible = "fixed-clock"; > + #clock-cells = <0>; > + clock-frequency = <0>; > + }; > + > + adc_op_clk: adc_op_clk{ > + compatible = "fixed-clock"; > + #clock-cells = <0>; > + clock-frequency = <1000000>; > + }; > + }; > + > + ns_sram: sram at 00200000 { > + compatible = "mmio-sram"; > + reg = <0x00200000 0x20000>; > + }; > + > + ahb { > + compatible = "simple-bus"; > + #address-cells = <1>; > + #size-cells = <1>; > + ranges; > + > + usb0: gadget at 00300000 { > + #address-cells = <1>; > + #size-cells = <0>; > + compatible = "atmel,sama5d3-udc"; > + reg = <0x00300000 0x100000 > + 0xfc02c000 0x400>; > + interrupts = <42 IRQ_TYPE_LEVEL_HIGH 2>; > + clocks = <&udphs_clk>, <&utmi>; > + clock-names = "pclk", "hclk"; > + status = "disabled"; > + > + ep0 { > + reg = <0>; > + atmel,fifo-size = <64>; > + atmel,nb-banks = <1>; > + }; > + > + ep1 { > + reg = <1>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <3>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep2 { > + reg = <2>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <3>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep3 { > + reg = <3>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep4 { > + reg = <4>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep5 { > + reg = <5>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep6 { > + reg = <6>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep7 { > + reg = <7>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-dma; > + atmel,can-isoc; > + }; > + > + ep8 { > + reg = <8>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep9 { > + reg = <9>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep10 { > + reg = <10>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep11 { > + reg = <11>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep12 { > + reg = <12>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep13 { > + reg = <13>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep14 { > + reg = <14>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + > + ep15 { > + reg = <15>; > + atmel,fifo-size = <1024>; > + atmel,nb-banks = <2>; > + atmel,can-isoc; > + }; > + }; > + > + usb1: ohci at 00400000 { > + compatible = "atmel,at91rm9200-ohci", "usb-ohci"; > + reg = <0x00400000 0x100000>; > + interrupts = <41 IRQ_TYPE_LEVEL_HIGH 2>; > + clocks = <&uhphs_clk>, <&uhphs_clk>, <&uhpck>; > + clock-names = "ohci_clk", "hclk", "uhpck"; > + status = "disabled"; > + }; > + > + usb2: ehci at 00500000 { > + compatible = "atmel,at91sam9g45-ehci", "usb-ehci"; > + reg = <0x00500000 0x100000>; > + interrupts = <41 IRQ_TYPE_LEVEL_HIGH 2>; > + clocks = <&utmi>, <&uhphs_clk>; > + clock-names = "usb_clk", "ehci_clk"; > + status = "disabled"; > + }; > + > + L2: cache-controller at 00a00000 { > + compatible = "arm,pl310-cache"; > + reg = <0x00a00000 0x1000>; > + interrupts = <63 IRQ_TYPE_LEVEL_HIGH 4>; > + cache-unified; > + cache-level = <2>; > + }; > + > + apb { > + compatible = "simple-bus"; > + #address-cells = <1>; > + #size-cells = <1>; > + ranges; > + > + ramc0: ramc at f000c000 { > + compatible = "atmel,sama5d3-ddramc"; > + reg = <0xf000c000 0x200>; > + clocks = <&ddrck>, <&mpddr_clk>; > + clock-names = "ddrck", "mpddr"; > + }; > + > + dma0: dma-controller at f0010000 { > + compatible = "atmel,sama5d4-dma"; > + reg = <0xf0010000 0x1000>; > + interrupts = <6 IRQ_TYPE_LEVEL_HIGH 0>; > + #dma-cells = <1>; > + clocks = <&dma0_clk>; > + clock-names = "dma_clk"; > + }; > + > + pmc: pmc at f0014000 { > + compatible = "atmel,sama5d2-pmc"; > + reg = <0xf0014000 0x160>; > + interrupts = <74 IRQ_TYPE_LEVEL_HIGH 7>; > + interrupt-controller; > + #address-cells = <1>; > + #size-cells = <0>; > + #interrupt-cells = <1>; > + > + main_rc_osc: main_rc_osc { > + compatible = "atmel,at91sam9x5-clk-main-rc-osc"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_MOSCRCS>; > + clock-frequency = <12000000>; > + clock-accuracy = <100000000>; > + }; > + > + main_osc: main_osc { > + compatible = "atmel,at91rm9200-clk-main-osc"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_MOSCS>; > + clocks = <&main_xtal>; > + }; > + > + main: mainck { > + compatible = "atmel,at91sam9x5-clk-main"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_MOSCSELS>; > + clocks = <&main_rc_osc &main_osc>; > + }; > + > + plla: pllack { > + compatible = "atmel,sama5d3-clk-pll"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_LOCKA>; > + clocks = <&main>; > + reg = <0>; > + atmel,clk-input-range = <12000000 12000000>; > + #atmel,pll-clk-output-range-cells = <4>; > + atmel,pll-clk-output-ranges = <600000000 1200000000 0 0>; > + }; > + > + plladiv: plladivck { > + compatible = "atmel,at91sam9x5-clk-plldiv"; > + #clock-cells = <0>; > + clocks = <&plla>; > + }; > + > + utmi: utmick { > + compatible = "atmel,at91sam9x5-clk-utmi"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_LOCKU>; > + clocks = <&main>; > + }; > + > + mck: masterck { > + compatible = "atmel,at91sam9x5-clk-master"; > + #clock-cells = <0>; > + interrupt-parent = <&pmc>; > + interrupts = <AT91_PMC_MCKRDY>; > + clocks = <&clk32k>, <&main>, <&plladiv>, <&utmi>; > + atmel,clk-output-range = <124000000 166000000>; > + atmel,clk-divisors = <1 2 4 3>; > + }; > + > + h32ck: h32mxck { > + #clock-cells = <0>; > + compatible = "atmel,sama5d4-clk-h32mx"; > + clocks = <&mck>; > + }; > + > + usb: usbck { > + compatible = "atmel,at91sam9x5-clk-usb"; > + #clock-cells = <0>; > + clocks = <&plladiv>, <&utmi>; > + }; > + > + prog: progck { > + compatible = "atmel,at91sam9x5-clk-programmable"; > + #address-cells = <1>; > + #size-cells = <0>; > + interrupt-parent = <&pmc>; > + clocks = <&clk32k>, <&main>, <&plladiv>, <&utmi>, <&mck>; > + > + prog0: prog0 { > + #clock-cells = <0>; > + reg = <0>; > + interrupts = <AT91_PMC_PCKRDY(0)>; > + }; > + > + prog1: prog1 { > + #clock-cells = <0>; > + reg = <1>; > + interrupts = <AT91_PMC_PCKRDY(1)>; > + }; > + > + prog2: prog2 { > + #clock-cells = <0>; > + reg = <2>; > + interrupts = <AT91_PMC_PCKRDY(2)>; > + }; > + }; > + > + systemck { > + compatible = "atmel,at91rm9200-clk-system"; > + #address-cells = <1>; > + #size-cells = <0>; > + > + ddrck: ddrck { > + #clock-cells = <0>; > + reg = <2>; > + clocks = <&mck>; > + }; > + > + lcdck: lcdck { > + #clock-cells = <0>; > + reg = <3>; > + clocks = <&mck>; > + }; > + > + uhpck: uhpck { > + #clock-cells = <0>; > + reg = <6>; > + clocks = <&usb>; > + }; > + > + udpck: udpck { > + #clock-cells = <0>; > + reg = <7>; > + clocks = <&usb>; > + }; > + > + pck0: pck0 { > + #clock-cells = <0>; > + reg = <8>; > + clocks = <&prog0>; > + }; > + > + pck1: pck1 { > + #clock-cells = <0>; > + reg = <9>; > + clocks = <&prog1>; > + }; > + > + pck2: pck2 { > + #clock-cells = <0>; > + reg = <10>; > + clocks = <&prog2>; > + }; > + > + iscck: iscck { > + #clock-cells = <0>; > + reg = <18>; > + clocks = <&mck>; > + }; > + }; > + > + periph32ck { > + compatible = "atmel,at91sam9x5-clk-peripheral"; > + #address-cells = <1>; > + #size-cells = <0>; > + clocks = <&h32ck>; > + > + macb0_clk: macb0_clk { > + #clock-cells = <0>; > + reg = <5>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + tdes_clk: tdes_clk { > + #clock-cells = <0>; > + reg = <11>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + matrix1_clk: matrix1_clk { > + #clock-cells = <0>; > + reg = <14>; > + }; > + > + hsmc_clk: hsmc_clk { > + #clock-cells = <0>; > + reg = <17>; > + }; > + > + pioA_clk: pioA_clk { > + #clock-cells = <0>; > + reg = <18>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + flx0_clk: flx0_clk { > + #clock-cells = <0>; > + reg = <19>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + flx1_clk: flx1_clk { > + #clock-cells = <0>; > + reg = <20>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + flx2_clk: flx2_clk { > + #clock-cells = <0>; > + reg = <21>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + flx3_clk: flx3_clk { > + #clock-cells = <0>; > + reg = <22>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + flx4_clk: flx4_clk { > + #clock-cells = <0>; > + reg = <23>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uart0_clk: uart0_clk { > + #clock-cells = <0>; > + reg = <24>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uart1_clk: uart1_clk { > + #clock-cells = <0>; > + reg = <25>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uart2_clk: uart2_clk { > + #clock-cells = <0>; > + reg = <26>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uart3_clk: uart3_clk { > + #clock-cells = <0>; > + reg = <27>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uart4_clk: uart4_clk { > + #clock-cells = <0>; > + reg = <28>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + twi0_clk: twi0_clk { > + reg = <29>; > + #clock-cells = <0>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + twi1_clk: twi1_clk { > + #clock-cells = <0>; > + reg = <30>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + spi0_clk: spi0_clk { > + #clock-cells = <0>; > + reg = <33>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + spi1_clk: spi1_clk { > + #clock-cells = <0>; > + reg = <34>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + tcb0_clk: tcb0_clk { > + #clock-cells = <0>; > + reg = <35>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + tcb1_clk: tcb1_clk { > + #clock-cells = <0>; > + reg = <36>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + pwm_clk: pwm_clk { > + #clock-cells = <0>; > + reg = <38>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + adc_clk: adc_clk { > + #clock-cells = <0>; > + reg = <40>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + uhphs_clk: uhphs_clk { > + #clock-cells = <0>; > + reg = <41>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + udphs_clk: udphs_clk { > + #clock-cells = <0>; > + reg = <42>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + ssc0_clk: ssc0_clk { > + #clock-cells = <0>; > + reg = <43>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + ssc1_clk: ssc1_clk { > + #clock-cells = <0>; > + reg = <44>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + trng_clk: trng_clk { > + #clock-cells = <0>; > + reg = <47>; > + atmel,clk-output-range = <0 83000000>; > + }; > + > + classd_clk: classd_clk { > + #clock-cells = <0>; > + reg = <59>; > + atmel,clk-output-range = <0 83000000>; > + }; > + }; > + > + periph64ck { > + compatible = "atmel,at91sam9x5-clk-peripheral"; > + #address-cells = <1>; > + #size-cells = <0>; > + clocks = <&mck>; > + > + dma0_clk: dma0_clk { > + #clock-cells = <0>; > + reg = <6>; > + }; > + > + dma1_clk: dma1_clk { > + #clock-cells = <0>; > + reg = <7>; > + }; > + > + aes_clk: aes_clk { > + #clock-cells = <0>; > + reg = <9>; > + }; > + > + aesb_clk: aesb_clk { > + #clock-cells = <0>; > + reg = <10>; > + }; > + > + sha_clk: sha_clk { > + #clock-cells = <0>; > + reg = <12>; > + }; > + > + mpddr_clk: mpddr_clk { > + #clock-cells = <0>; > + reg = <13>; > + }; > + > + matrix0_clk: matrix0_clk { > + #clock-cells = <0>; > + reg = <15>; > + }; > + > + sdmmc0_hclk: sdmmc0_hclk { > + #clock-cells = <0>; > + reg = <31>; > + }; > + > + sdmmc1_hclk: sdmmc1_hclk { > + #clock-cells = <0>; > + reg = <32>; > + }; > + > + lcdc_clk: lcdc_clk { > + #clock-cells = <0>; > + reg = <45>; > + }; > + > + isc_clk: isc_clk { > + #clock-cells = <0>; > + reg = <46>; > + }; > + > + qspi0_clk: qspi0_clk { > + #clock-cells = <0>; > + reg = <52>; > + }; > + > + qspi1_clk: qspi1_clk { > + #clock-cells = <0>; > + reg = <53>; > + }; > + }; > + }; > + > + sha at f0028000 { > + compatible = "atmel,at91sam9g46-sha"; > + reg = <0xf0028000 0x100>; > + interrupts = <12 IRQ_TYPE_LEVEL_HIGH 0>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(30))>; > + dma-names = "tx"; > + clocks = <&sha_clk>; > + clock-names = "sha_clk"; > + status = "disabled"; > + }; > + > + aes at f002c000 { > + compatible = "atmel,at91sam9g46-aes"; > + reg = <0xf002c000 0x100>; > + interrupts = <9 IRQ_TYPE_LEVEL_HIGH 0>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(26))>, > + <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(27))>; > + dma-names = "tx", "rx"; > + clocks = <&aes_clk>; > + clock-names = "aes_clk"; > + status = "disabled"; > + }; > + > + spi0: spi at f8000000 { > + compatible = "atmel,at91rm9200-spi"; > + reg = <0xf8000000 0x100>; > + interrupts = <33 IRQ_TYPE_LEVEL_HIGH 7>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(6))>, > + <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(7))>; > + dma-names = "tx", "rx"; > + clocks = <&spi0_clk>; > + clock-names = "spi_clk"; > + atmel,fifo-size = <16>; > + #address-cells = <1>; > + #size-cells = <0>; > + status = "disabled"; > + }; > + > + macb0: ethernet at f8008000 { > + compatible = "atmel,sama5d2-gem"; > + reg = <0xf8008000 0x1000>; > + interrupts = <5 IRQ_TYPE_LEVEL_HIGH 3 /* Queue 0 */ > + 66 IRQ_TYPE_LEVEL_HIGH 3 /* Queue 1 */ > + 67 IRQ_TYPE_LEVEL_HIGH 3>; /* Queue 2 */ > + #address-cells = <1>; > + #size-cells = <0>; > + clocks = <&macb0_clk>, <&macb0_clk>; > + clock-names = "hclk", "pclk"; > + status = "disabled"; > + }; > + > + tcb0: timer at f800c000 { > + compatible = "atmel,at91sam9x5-tcb"; > + reg = <0xf800c000 0x100>; > + interrupts = <35 IRQ_TYPE_LEVEL_HIGH 0>; > + clocks = <&tcb0_clk>; > + clock-names = "t0_clk"; > + }; > + > + tcb1: timer at f8010000 { > + compatible = "atmel,at91sam9x5-tcb"; > + reg = <0xf8010000 0x100>; > + interrupts = <36 IRQ_TYPE_LEVEL_HIGH 0>; > + clocks = <&tcb1_clk>; > + clock-names = "t0_clk"; > + }; > + > + uart0: serial at f801c000 { > + compatible = "atmel,at91sam9260-usart"; > + reg = <0xf801c000 0x100>; > + interrupts = <24 IRQ_TYPE_LEVEL_HIGH 7>; > + clocks = <&uart0_clk>; > + clock-names = "usart"; > + status = "disabled"; > + }; > + > + uart1: serial at f8020000 { > + compatible = "atmel,at91sam9260-usart"; > + reg = <0xf8020000 0x100>; > + interrupts = <25 IRQ_TYPE_LEVEL_HIGH 7>; > + clocks = <&uart1_clk>; > + clock-names = "usart"; > + status = "disabled"; > + }; > + > + uart2: serial at f8024000 { > + compatible = "atmel,at91sam9260-usart"; > + reg = <0xf8024000 0x100>; > + interrupts = <26 IRQ_TYPE_LEVEL_HIGH 7>; > + clocks = <&uart2_clk>; > + clock-names = "usart"; > + status = "disabled"; > + }; > + > + i2c0: i2c at f8028000 { > + compatible = "atmel,sama5d2-i2c"; > + reg = <0xf8028000 0x100>; > + interrupts = <29 IRQ_TYPE_LEVEL_HIGH 7>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(0))>, > + <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(1))>; > + dma-names = "tx", "rx"; > + #address-cells = <1>; > + #size-cells = <0>; > + clocks = <&twi0_clk>; > + status = "disabled"; > + }; > + > + pit: timer at f8048030 { > + compatible = "atmel,at91sam9260-pit"; > + reg = <0xf8048030 0x10>; > + interrupts = <3 IRQ_TYPE_LEVEL_HIGH 5>; > + clocks = <&h32ck>; > + }; > + > + sckc at f8048050 { > + compatible = "atmel,at91sam9x5-sckc"; > + reg = <0xf8048050 0x4>; > + > + slow_rc_osc: slow_rc_osc { > + compatible = "atmel,at91sam9x5-clk-slow-rc-osc"; > + #clock-cells = <0>; > + clock-frequency = <32768>; > + clock-accuracy = <250000000>; > + atmel,startup-time-usec = <75>; > + }; > + > + slow_osc: slow_osc { > + compatible = "atmel,at91sam9x5-clk-slow-osc"; > + #clock-cells = <0>; > + clocks = <&slow_xtal>; > + atmel,startup-time-usec = <1200000>; > + }; > + > + clk32k: slowck { > + compatible = "atmel,at91sam9x5-clk-slow"; > + #clock-cells = <0>; > + clocks = <&slow_rc_osc &slow_osc>; > + }; > + }; > + > + rtc at f80480b0 { > + compatible = "atmel,at91rm9200-rtc"; > + reg = <0xf80480b0 0x30>; > + interrupts = <74 IRQ_TYPE_LEVEL_HIGH 7>; > + }; > + > + spi1: spi at fc000000 { > + compatible = "atmel,at91rm9200-spi"; > + reg = <0xfc000000 0x100>; > + interrupts = <34 IRQ_TYPE_LEVEL_HIGH 7>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(8))>, > + <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(9))>; > + dma-names = "tx", "rx"; > + clocks = <&spi1_clk>; > + clock-names = "spi_clk"; > + atmel,fifo-size = <16>; > + #address-cells = <1>; > + #size-cells = <0>; > + status = "disabled"; > + }; > + > + uart3: serial at fc008000 { > + compatible = "atmel,at91sam9260-usart"; > + reg = <0xfc008000 0x100>; > + interrupts = <27 IRQ_TYPE_LEVEL_HIGH 7>; > + clocks = <&uart3_clk>; > + clock-names = "usart"; > + status = "disabled"; > + }; > + > + uart4: serial at fc00c000 { > + compatible = "atmel,at91sam9260-usart"; > + reg = <0xfc00c000 0x100>; > + interrupts = <28 IRQ_TYPE_LEVEL_HIGH 7>; > + clocks = <&uart4_clk>; > + clock-names = "usart"; > + status = "disabled"; > + }; > + > + aic: interrupt-controller at fc020000 { > + #interrupt-cells = <3>; > + compatible = "atmel,sama5d2-aic"; > + interrupt-controller; > + reg = <0xfc020000 0x200>; > + atmel,external-irqs = <49>; > + }; > + > + i2c1: i2c at fc028000 { > + compatible = "atmel,sama5d2-i2c"; > + reg = <0xfc028000 0x100>; > + interrupts = <30 IRQ_TYPE_LEVEL_HIGH 7>; > + dmas = <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(2))>, > + <&dma0 > + (AT91_XDMAC_DT_MEM_IF(0) | AT91_XDMAC_DT_PER_IF(1) | > + AT91_XDMAC_DT_PERID(3))>; > + dma-names = "tx", "rx"; > + #address-cells = <1>; > + #size-cells = <0>; > + clocks = <&twi1_clk>; > + status = "disabled"; > + }; > + }; > + }; > +}; > -- Nicolas Ferre ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for sama5d2 SoC 2015-07-30 11:55 ` [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for " Nicolas Ferre 2015-07-30 12:25 ` Nicolas Ferre @ 2015-07-30 15:51 ` Alexandre Belloni 1 sibling, 0 replies; 6+ messages in thread From: Alexandre Belloni @ 2015-07-30 15:51 UTC (permalink / raw) To: linux-arm-kernel On 30/07/2015 at 13:55:05 +0200, Nicolas Ferre wrote : > From: Ludovic Desroches <ludovic.desroches@atmel.com> > > Only the basic support for this new Atmel Cortex-A5 SoC. A subset of the > peripherals is setup to allow booting. > IRQ, clocks, USB, crypto, timers, rtc, ethernet, spi/i2c and > uart/usart peripheral nodes are added. > > Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> > Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 3/3] ARM: at91/dt: add minimal sama5d2 Xplained board 2015-07-30 11:55 [PATCH v3 0/3] ARM: at91: introducing Atmel sama5d2 SoC Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 1/3] ARM: at91/soc: add basic support for new " Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for " Nicolas Ferre @ 2015-07-30 11:55 ` Nicolas Ferre 2 siblings, 0 replies; 6+ messages in thread From: Nicolas Ferre @ 2015-07-30 11:55 UTC (permalink / raw) To: linux-arm-kernel Add minimal support for the new sama5d2 Xplained board. Only USB, spi/i2c, ethernet and uart/usart peripherals added. With this DTS file you can boot the board and begin to play with it. Rootfs on NFS and sd card have successfully been tested. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> --- Changes in v3: - remove sd/mmc nodes Changes in v2: - enable spi and i2c nodes - enable sdmmc0 - move to stdout-path for console arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/at91-sama5d2_xplained.dts | 134 ++++++++++++++++++++++++++++ 2 files changed, 135 insertions(+) create mode 100644 arch/arm/boot/dts/at91-sama5d2_xplained.dts diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index 63e90c5ff679..db25557fa8b1 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile @@ -41,6 +41,7 @@ dtb-$(CONFIG_SOC_SAM_V4_V5) += \ at91sam9x35ek.dtb dtb-$(CONFIG_SOC_SAM_V7) += \ at91-kizbox2.dtb \ + at91-sama5d2_xplained.dtb \ at91-sama5d3_xplained.dtb \ sama5d31ek.dtb \ sama5d33ek.dtb \ diff --git a/arch/arm/boot/dts/at91-sama5d2_xplained.dts b/arch/arm/boot/dts/at91-sama5d2_xplained.dts new file mode 100644 index 000000000000..e8d63afdb135 --- /dev/null +++ b/arch/arm/boot/dts/at91-sama5d2_xplained.dts @@ -0,0 +1,134 @@ +/* + * at91-sama5d2_xplained.dts - Device Tree file for SAMA5D2 Xplained board + * + * Copyright (C) 2015 Atmel, + * 2015 Nicolas Ferre <nicolas.ferre@atmel.com> + * + * This file is dual-licensed: you can use it either under the terms + * of the GPL or the X11 license, at your option. Note that this dual + * licensing only applies to this file, and not this project as a + * whole. + * + * a) This file is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This file is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * Or, alternatively, + * + * b) Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, + * copy, modify, merge, publish, distribute, sublicense, and/or + * sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following + * conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ +/dts-v1/; +#include "sama5d2.dtsi" + +/ { + model = "Atmel SAMA5D2 Xplained"; + compatible = "atmel,sama5d2-xplained", "atmel,sama5d2", "atmel,sama5"; + + chosen { + stdout-path = "serial0:115200n8"; + }; + + memory { + reg = <0x20000000 0x80000>; + }; + + clocks { + #address-cells = <1>; + #size-cells = <1>; + ranges; + + main_clock: clock at 0 { + compatible = "atmel,osc", "fixed-clock"; + clock-frequency = <12000000>; + }; + + slow_xtal { + clock-frequency = <32768>; + }; + + main_xtal { + clock-frequency = <12000000>; + }; + }; + + ahb { + usb0: gadget at 00300000 { + status = "okay"; + }; + + usb1: ohci at 00400000 { + num-ports = <3>; + status = "okay"; + }; + + usb2: ehci at 00500000 { + status = "okay"; + }; + + apb { + spi0: spi at f8000000 { + status = "okay"; + + m25p80 at 0 { + compatible = "atmel,at25df321a"; + reg = <0>; + spi-max-frequency = <50000000>; + }; + }; + + macb0: ethernet at f8008000 { + phy-mode = "rmii"; + status = "okay"; + }; + + uart1: serial at f8020000 { + status = "okay"; + }; + + i2c0: i2c at f8028000 { + dmas = <0>, <0>; + status = "okay"; + }; + + uart3: serial at fc008000 { + status = "okay"; + }; + + i2c1: i2c at fc028000 { + dmas = <0>, <0>; + status = "okay"; + + at24 at 54 { + compatible = "atmel,24c02"; + reg = <0x54>; + pagesize = <16>; + }; + }; + }; + }; +}; -- 2.1.3 ^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-07-30 15:51 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-07-30 11:55 [PATCH v3 0/3] ARM: at91: introducing Atmel sama5d2 SoC Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 1/3] ARM: at91/soc: add basic support for new " Nicolas Ferre 2015-07-30 11:55 ` [PATCH v3 2/3] ARM: at91/dt: add basic dtsi for " Nicolas Ferre 2015-07-30 12:25 ` Nicolas Ferre 2015-07-30 15:51 ` Alexandre Belloni 2015-07-30 11:55 ` [PATCH v3 3/3] ARM: at91/dt: add minimal sama5d2 Xplained board Nicolas Ferre
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).