Gregory CLEMENT | dc253e2 | 2018-12-14 16:16:50 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: (GPL-2.0+ OR MIT) |
| 2 | /* |
| 3 | * Copyright (c) 2018 Microsemi Corporation |
| 4 | */ |
| 5 | |
| 6 | #include <dt-bindings/gpio/gpio.h> |
| 7 | |
| 8 | / { |
| 9 | #address-cells = <1>; |
| 10 | #size-cells = <1>; |
| 11 | compatible = "mscc,luton"; |
| 12 | |
| 13 | cpus { |
| 14 | #address-cells = <1>; |
| 15 | #size-cells = <0>; |
| 16 | |
| 17 | cpu@0 { |
| 18 | compatible = "mips,mips24KEc"; |
| 19 | device_type = "cpu"; |
| 20 | reg = <0>; |
| 21 | }; |
| 22 | }; |
| 23 | |
| 24 | aliases { |
| 25 | serial0 = &uart0; |
| 26 | }; |
| 27 | |
Lars Povlsen | 2a6db6c | 2019-01-02 09:52:23 +0100 | [diff] [blame^] | 28 | sys_clk: sys-clk { |
| 29 | compatible = "fixed-clock"; |
| 30 | #clock-cells = <0>; |
| 31 | clock-frequency = <250000000>; |
| 32 | }; |
Gregory CLEMENT | dc253e2 | 2018-12-14 16:16:50 +0100 | [diff] [blame] | 33 | ahb_clk: ahb-clk { |
| 34 | compatible = "fixed-clock"; |
| 35 | #clock-cells = <0>; |
| 36 | clock-frequency = <208333333>; |
| 37 | }; |
| 38 | |
| 39 | ahb { |
| 40 | compatible = "simple-bus"; |
| 41 | #address-cells = <1>; |
| 42 | #size-cells = <1>; |
| 43 | ranges = <0 0x60000000 0x10200000>; |
| 44 | |
| 45 | uart0: serial@10100000 { |
| 46 | pinctrl-0 = <&uart_pins>; |
| 47 | pinctrl-names = "default"; |
| 48 | |
| 49 | compatible = "ns16550a"; |
| 50 | reg = <0x10100000 0x20>; |
| 51 | clocks = <&ahb_clk>; |
| 52 | reg-io-width = <4>; |
| 53 | reg-shift = <2>; |
| 54 | |
| 55 | status = "disabled"; |
| 56 | }; |
| 57 | |
| 58 | gpio: pinctrl@70068 { |
| 59 | compatible = "mscc,luton-pinctrl"; |
| 60 | reg = <0x70068 0x68>; |
| 61 | gpio-controller; |
| 62 | #gpio-cells = <2>; |
| 63 | gpio-ranges = <&gpio 0 0 32>; |
| 64 | |
Lars Povlsen | 2a6db6c | 2019-01-02 09:52:23 +0100 | [diff] [blame^] | 65 | sgpio_pins: sgpio-pins { |
| 66 | pins = "GPIO_0", "GPIO_1", "GPIO_2", "GPIO_3"; |
| 67 | function = "sio"; |
| 68 | }; |
Gregory CLEMENT | dc253e2 | 2018-12-14 16:16:50 +0100 | [diff] [blame] | 69 | uart_pins: uart-pins { |
| 70 | pins = "GPIO_30", "GPIO_31"; |
| 71 | function = "uart"; |
| 72 | }; |
Lars Povlsen | 2a6db6c | 2019-01-02 09:52:23 +0100 | [diff] [blame^] | 73 | }; |
Gregory CLEMENT | dc253e2 | 2018-12-14 16:16:50 +0100 | [diff] [blame] | 74 | |
Lars Povlsen | 2a6db6c | 2019-01-02 09:52:23 +0100 | [diff] [blame^] | 75 | sgpio: gpio@70130 { |
| 76 | compatible = "mscc,luton-sgpio"; |
| 77 | status = "disabled"; |
| 78 | clocks = <&sys_clk>; |
| 79 | pinctrl-0 = <&sgpio_pins>; |
| 80 | pinctrl-names = "default"; |
| 81 | reg = <0x0070130 0x100>; |
| 82 | gpio-controller; |
| 83 | #gpio-cells = <2>; |
| 84 | gpio-ranges = <&sgpio 0 0 64>; |
Gregory CLEMENT | dc253e2 | 2018-12-14 16:16:50 +0100 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | gpio_spi_bitbang: gpio@10000064 { |
| 88 | compatible = "mscc,spi-bitbang-gpio"; |
| 89 | reg = <0x10000064 0x4>; |
| 90 | gpio-controller; |
| 91 | #gpio-cells = <2>; |
| 92 | |
| 93 | }; |
| 94 | |
| 95 | spi0: spi-bitbang { |
| 96 | compatible = "spi-gpio"; |
| 97 | status = "okay"; |
| 98 | gpio-sck = <&gpio_spi_bitbang 6 0>; |
| 99 | gpio-miso = <&gpio_spi_bitbang 0 0>; |
| 100 | gpio-mosi = <&gpio_spi_bitbang 5 0>; |
| 101 | cs-gpios = <&gpio_spi_bitbang 1 0>; |
| 102 | num-chipselects = <1>; |
| 103 | #address-cells = <1>; |
| 104 | #size-cells = <0>; |
| 105 | }; |
| 106 | }; |
| 107 | }; |