/* * sama5d3_mci2.dtsi - Device Tree Include file for SAMA5D3 SoC with * 3 MMC ports * * Copyright (C) 2013 Boris BREZILLON * * Licensed under GPLv2. */ #include #include #include / { ahb { apb { pinctrl@fffff200 { mmc2 { pinctrl_mmc2_clk_cmd_dat0: mmc2_clk_cmd_dat0 { atmel,pins = ; /* PC11 periph A MCI2_DA0 with pullup */ }; pinctrl_mmc2_dat1_3: mmc2_dat1_3 { atmel,pins = ; /* PC14 periph A MCI2_DA3 with pullup, conflicts with TCLK1 */ }; }; }; pmc: pmc@fffffc00 { periphck { mci2_clk: mci2_clk { #clock-cells = <0>; reg = <23>; }; }; }; mmc2: mmc@f8004000 { compatible = "atmel,hsmci"; reg = <0xf8004000 0x600>; interrupts = <23 IRQ_TYPE_LEVEL_HIGH 0>; dmas = <&dma1 2 AT91_DMA_CFG_PER_ID(1)>; dma-names = "rxtx"; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_mmc2_clk_cmd_dat0 &pinctrl_mmc2_dat1_3>; clocks = <&mci2_clk>; clock-names = "mci_clk"; status = "disabled"; #address-cells = <1>; #size-cells = <0>; }; }; }; };