1/*
2 * Copyright (c) 2020 Actinius
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	feather_header: feather_connector {
9		compatible = "adafruit-feather-header";
10		#gpio-cells = <2>;
11		gpio-map-mask = <0xffffffff 0xffffffc0>;
12		gpio-map-pass-thru = <0 0x3f>;
13		gpio-map = <0 0 &gpio0 14 0>,	/* A1 */
14			   <1 0 &gpio0 15 0>,	/* A2 */
15			   <2 0 &gpio0 16 0>,	/* A3 */
16			   <3 0 &gpio0 17 0>,	/* A4 */
17			   <4 0 &gpio0 18 0>,	/* A5 */
18			   <5 0 &gpio0 19 0>,	/* A6 */
19			   <6 0 &gpio0 20 0>,	/* SCK */
20			   <7 0 &gpio0 21 0>,	/* MOSI */
21			   <8 0 &gpio0 22 0>,	/* MISO */
22			   <9 0 &gpio0 23 0>,	/* RX */
23			   <10 0 &gpio0 24 0>,	/* TX */
24			   /* 11 is VIN */
25			   <12 0 &gpio0 26 0>,	/* SDA */
26			   <13 0 &gpio0 27 0>,	/* SCL */
27			   <14 0 &gpio0 31 0>,	/* 31 */
28			   <15 0 &gpio0 30 0>,	/* 30 */
29			   <16 0 &gpio0 0 0>,	/* 0 */
30			   <17 0 &gpio0 1 0>,	/* 1 */
31			   <18 0 &gpio0 2 0>,	/* 2 */
32			   <19 0 &gpio0 3 0>,	/* 3 */
33			   <20 0 &gpio0 4 0>;	/* 4 */
34	};
35};
36
37feather_adc: &adc { };
38feather_serial: &uart0 { };
39feather_i2c: &i2c2 { };
40feather_spi: &spi3 { };
41
42arduino_adc: &adc { };
43arduino_serial: &uart0 { };
44arduino_i2c: &i2c2 { };
45arduino_spi: &spi3 { };
46