mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
d7d1d45cc4
This patch splits the sama5d3 SoCs definition: - a common base for all sama5d3 SoCs (sama5d3.dtsi) - several optional peripheral definitions which will be included by sama5d3 specific SoCs (sama5d3_'periph name'.dtsi) - sama5d3 specific SoC definitions (sama5d3x.dtsi) This provides a better representation of the real hardware (drop unneed dt nodes) and avoids peripheral id conflict (which is not the case for current sama5d3 SoCs, but could be if other SoCs of this family are released). Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com> [nicolas.ferre@atmel.com: add more "sama5d3?" compatibility strings] Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
28 lines
495 B
Plaintext
28 lines
495 B
Plaintext
/*
|
|
* at91sama5d3_tcb1.dtsi - Device Tree Include file for AT91SAM9x5 SoC with
|
|
* 2 TC blocks.
|
|
*
|
|
* Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
|
|
*
|
|
* Licensed under GPLv2.
|
|
*/
|
|
|
|
#include <dt-bindings/pinctrl/at91.h>
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
/ {
|
|
aliases {
|
|
tcb1 = &tcb1;
|
|
};
|
|
|
|
ahb {
|
|
apb {
|
|
tcb1: timer@f8014000 {
|
|
compatible = "atmel,at91sam9x5-tcb";
|
|
reg = <0xf8014000 0x100>;
|
|
interrupts = <27 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
};
|
|
};
|
|
};
|
|
};
|