mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
2cd7d393f4
There are 3 instances of McSPI in MCU domain and 4 instances in Main domain. Add DT nodes for all McSPI instances present on AM654 SoC. Signed-off-by: Vignesh R <vigneshr@ti.com> Signed-off-by: Tero Kristo <t-kristo@ti.com>
61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Device Tree Source for AM6 SoC Family MCU Domain peripherals
|
|
*
|
|
* Copyright (C) 2016-2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
&cbass_mcu {
|
|
mcu_uart0: serial@40a00000 {
|
|
compatible = "ti,am654-uart";
|
|
reg = <0x00 0x40a00000 0x00 0x100>;
|
|
reg-shift = <2>;
|
|
reg-io-width = <4>;
|
|
interrupts = <GIC_SPI 565 IRQ_TYPE_LEVEL_HIGH>;
|
|
clock-frequency = <96000000>;
|
|
current-speed = <115200>;
|
|
power-domains = <&k3_pds 149>;
|
|
};
|
|
|
|
mcu_i2c0: i2c@40b00000 {
|
|
compatible = "ti,am654-i2c", "ti,omap4-i2c";
|
|
reg = <0x0 0x40b00000 0x0 0x100>;
|
|
interrupts = <GIC_SPI 564 IRQ_TYPE_LEVEL_HIGH>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
clock-names = "fck";
|
|
clocks = <&k3_clks 114 1>;
|
|
power-domains = <&k3_pds 114>;
|
|
};
|
|
|
|
mcu_spi0: spi@40300000 {
|
|
compatible = "ti,am654-mcspi","ti,omap4-mcspi";
|
|
reg = <0x0 0x40300000 0x0 0x400>;
|
|
interrupts = <GIC_SPI 560 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&k3_clks 142 1>;
|
|
power-domains = <&k3_pds 142>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|
|
mcu_spi1: spi@40310000 {
|
|
compatible = "ti,am654-mcspi","ti,omap4-mcspi";
|
|
reg = <0x0 0x40310000 0x0 0x400>;
|
|
interrupts = <GIC_SPI 561 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&k3_clks 143 1>;
|
|
power-domains = <&k3_pds 143>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
|
|
mcu_spi2: spi@40320000 {
|
|
compatible = "ti,am654-mcspi","ti,omap4-mcspi";
|
|
reg = <0x0 0x40320000 0x0 0x400>;
|
|
interrupts = <GIC_SPI 562 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&k3_clks 144 1>;
|
|
power-domains = <&k3_pds 144>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|
|
};
|