mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
738f2b148d
This enables the use of the MSCC serial GPIO driver, and add gpio-leds nodes to the 'luton' pcb090 and pcb091 DT. Signed-off-by: Lars Povlsen <lars.povlsen@microsemi.com>
57 lines
911 B
Text
57 lines
911 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (c) 2018 Microsemi Corporation
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "mscc,luton.dtsi"
|
|
|
|
/ {
|
|
model = "Luton26 PCB090 Reference Board";
|
|
compatible = "mscc,luton-pcb090", "mscc,luton";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
spi0 = &spi0;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
gpio-leds {
|
|
compatible = "gpio-leds";
|
|
|
|
status_green {
|
|
label = "pcb090:green:status";
|
|
gpios = <&sgpio 64 GPIO_ACTIVE_HIGH>; /* p0.2 */
|
|
default-state = "on";
|
|
};
|
|
|
|
status_red {
|
|
label = "pcb090:red:status";
|
|
gpios = <&sgpio 65 GPIO_ACTIVE_HIGH>; /* p1.2 */
|
|
default-state = "off";
|
|
};
|
|
};
|
|
};
|
|
|
|
&sgpio {
|
|
status = "okay";
|
|
gpio-ranges = <&sgpio 0 0 96>;
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&spi0 {
|
|
status = "okay";
|
|
spi-flash@0 {
|
|
compatible = "spi-flash";
|
|
spi-max-frequency = <18000000>; /* input clock */
|
|
reg = <0>; /* CS0 */
|
|
spi-cs-high;
|
|
};
|
|
};
|
|
|