Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | /* * Copyright (c) 2020 Alexander Falb <fal3xx@gmail.com> * * SPDX-License-Identifier: Apache-2.0 */ /dts-v1/; #include <atmel/samd21.dtsi> #include "serpente-pinctrl.dtsi" / { model = "Serpente"; compatible = "arturo182,serpente"; chosen { zephyr,console = &sercom2; zephyr,shell-uart = &sercom2; zephyr,sram = &sram0; zephyr,flash = &flash0; zephyr,code-partition = &code_partition; }; aliases { led0 = &red_led; led1 = &green_led; led2 = &blue_led; red-led = &red_led; green-led = &green_led; blue-led = &blue_led; pwm-led0 = &red_pwm_led; pwm-led1 = &green_pwm_led; pwm-led2 = &blue_pwm_led; red-pwm-led = &red_pwm_led; green-pwm-led = &green_pwm_led; blue-pwm-led = &blue_pwm_led; }; leds { compatible = "gpio-leds"; red_led: led_0 { gpios = <&porta 22 GPIO_ACTIVE_LOW>; label = "Red LED"; }; green_led: led_1 { gpios = <&porta 19 GPIO_ACTIVE_LOW>; label = "Green LED"; }; blue_led: led_2 { gpios = <&porta 23 GPIO_ACTIVE_LOW>; label = "Blue LED"; }; }; pwmleds { compatible = "pwm-leds"; red_pwm_led: pwm_led_0 { pwms = <&tcc0 0 PWM_MSEC(20)>; label = "Red PWM LED"; }; green_pwm_led: pwm_led_1 { pwms = <&tcc0 3 PWM_MSEC(20)>; label = "Green PWM LED"; }; blue_pwm_led: pwm_led_2 { pwms = <&tcc0 1 PWM_MSEC(20)>; label = "Blue PWM LED"; }; }; }; &cpu0 { clock-frequency = <48000000>; }; &sercom0 { status = "okay"; }; &sercom2 { status = "okay"; compatible = "atmel,sam0-uart"; current-speed = <115200>; rxpo = <1>; txpo = <0>; pinctrl-0 = <&sercom2_uart_default>; pinctrl-names = "default"; }; &sercom3 { status = "okay"; compatible = "atmel,sam0-spi"; dipo = <1>; dopo = <1>; #address-cells = <1>; #size-cells = <0>; pinctrl-0 = <&sercom3_spi_default>; pinctrl-names = "default"; }; zephyr_udc0: &usb0 { status = "okay"; pinctrl-0 = <&usb_dc_default>; pinctrl-names = "default"; }; &tcc0 { status = "okay"; compatible = "atmel,sam0-tcc-pwm"; prescaler = <4>; #pwm-cells = <2>; pinctrl-0 = <&pwm_default>; pinctrl-names = "default"; }; &flash0 { partitions { compatible = "fixed-partitions"; #address-cells = <1>; #size-cells = <1>; boot_partition: partition@0 { label = "uf2"; reg = <0x00000000 DT_SIZE_K(8)>; read-only; }; code_partition: partition@2000 { label = "code"; reg = <0x2000 DT_SIZE_K(256-8)>; read-only; }; }; }; |