1// SPDX-License-Identifier: GPL-2.0-or-later OR MIT 2/* 3 * Copyright 2016 Luxul Inc. 4 */ 5 6/dts-v1/; 7 8#include "bcm4708.dtsi" 9 10/ { 11 compatible = "luxul,xap-1510v1", "brcm,bcm4708"; 12 model = "Luxul XAP-1510 V1"; 13 14 chosen { 15 bootargs = "console=ttyS0,115200 earlycon"; 16 }; 17 18 memory { 19 reg = <0x00000000 0x08000000>; 20 }; 21 22 leds { 23 compatible = "gpio-leds"; 24 25 5ghz { 26 label = "bcm53xx:blue:5ghz"; 27 gpios = <&chipcommon 13 GPIO_ACTIVE_LOW>; 28 linux,default-trigger = "none"; 29 }; 30 31 2ghz { 32 label = "bcm53xx:blue:2ghz"; 33 gpios = <&chipcommon 14 GPIO_ACTIVE_LOW>; 34 linux,default-trigger = "none"; 35 }; 36 37 status { 38 label = "bcm53xx:green:status"; 39 gpios = <&chipcommon 15 GPIO_ACTIVE_LOW>; 40 linux,default-trigger = "timer"; 41 }; 42 }; 43 44 gpio-keys { 45 compatible = "gpio-keys"; 46 #address-cells = <1>; 47 #size-cells = <0>; 48 49 restart { 50 label = "Reset"; 51 linux,code = <KEY_RESTART>; 52 gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>; 53 }; 54 }; 55}; 56 57&spi_nor { 58 status = "okay"; 59}; 60 61&usb3_phy { 62 status = "okay"; 63}; 64