1/* 2 * Copyright (c) 2020 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&pinctrl { 8 spi1_default_alt: spi1_default_alt { 9 group1 { 10 psels = <NRF_PSEL(SPIS_SCK, 0, 6)>, 11 <NRF_PSEL(SPIS_MOSI, 0, 5)>, 12 <NRF_PSEL(SPIS_MISO, 0, 4)>, 13 <NRF_PSEL(SPIS_CSN, 0, 3)>; 14 }; 15 }; 16}; 17 18&spi1 { 19 compatible = "nordic,nrf-spis"; 20 status = "okay"; 21 def-char = <0x00>; 22 pinctrl-0 = <&spi1_default_alt>; 23 /delete-property/ pinctrl-1; 24 pinctrl-names = "default"; 25 26 bt-hci@0 { 27 compatible = "zephyr,bt-hci-spi-slave"; 28 reg = <0>; 29 irq-gpios = <&gpio0 2 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>; 30 }; 31}; 32