]> Git Repo - J-u-boot.git/commitdiff
mips: bmips: add bcm63xx-hsspi driver support for BCM6328
authorÁlvaro Fernández Rojas <[email protected]>
Sat, 20 Jan 2018 01:13:39 +0000 (02:13 +0100)
committerJagan Teki <[email protected]>
Wed, 24 Jan 2018 06:34:07 +0000 (12:04 +0530)
This driver manages the SPI controller present on this SoC.

Signed-off-by: Álvaro Fernández Rojas <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Daniel Schwierzeck <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
arch/mips/dts/brcm,bcm6328.dtsi

index a99607574357bfd68a7cd0b5a9a537441defd3e2..67d9278be49b5d7fc8e73477b588a6b48a995955 100644 (file)
 / {
        compatible = "brcm,bcm6328";
 
+       aliases {
+               spi0 = &spi;
+       };
+
        cpus {
                reg = <0x10000000 0x4>;
                #address-cells = <1>;
                #size-cells = <1>;
                u-boot,dm-pre-reloc;
 
+               hsspi_pll: hsspi-pll {
+                       compatible = "fixed-clock";
+                       #clock-cells = <0>;
+                       clock-frequency = <133333333>;
+               };
+
                periph_osc: periph-osc {
                        compatible = "fixed-clock";
                        #clock-cells = <0>;
                        status = "disabled";
                };
 
+               spi: spi@10001000 {
+                       compatible = "brcm,bcm6328-hsspi";
+                       #address-cells = <1>;
+                       #size-cells = <0>;
+                       reg = <0x10001000 0x600>;
+                       clocks = <&periph_clk BCM6328_CLK_HSSPI>, <&hsspi_pll>;
+                       clock-names = "hsspi", "pll";
+                       resets = <&periph_rst BCM6328_RST_SPI>;
+                       spi-max-frequency = <33333334>;
+                       num-cs = <3>;
+
+                       status = "disabled";
+               };
+
                periph_pwr: power-controller@10001848 {
                        compatible = "brcm,bcm6328-power-domain";
                        reg = <0x10001848 0x4>;
This page took 0.038421 seconds and 4 git commands to generate.