mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
tegra20: fdt: add SPI SFLASH node
Add node for tegra20 SPI SFLASH controller to fdt. Signed-off-by: Allen Martin <amartin@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:
parent
c35eb56a0e
commit
c98f03fae0
2 changed files with 17 additions and 0 deletions
|
@ -236,6 +236,18 @@
|
|||
clocks = <&tegra_car 12>, <&tegra_car 124>;
|
||||
};
|
||||
|
||||
spi@7000c380 {
|
||||
compatible = "nvidia,tegra20-sflash";
|
||||
reg = <0x7000c380 0x80>;
|
||||
interrupts = <0 39 0x04>;
|
||||
nvidia,dma-request-selector = <&apbdma 11>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
status = "disabled";
|
||||
/* PERIPH_ID_SPI1, PLLP_OUT0 */
|
||||
clocks = <&tegra_car 43>;
|
||||
};
|
||||
|
||||
i2c@7000c400 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
|
|
|
@ -23,6 +23,11 @@
|
|||
status = "disabled";
|
||||
};
|
||||
|
||||
spi@7000c380 {
|
||||
status = "okay";
|
||||
spi-max-frequency = <25000000>;
|
||||
};
|
||||
|
||||
i2c@7000c400 {
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue