| /* SPDX-License-Identifier: Apache-2.0 */ |
| |
| /dts-v1/; |
| |
| #include <nxp/nxp_k6x.dtsi> |
| #include <dt-bindings/pwm/pwm.h> |
| |
| / { |
| model = "Hexiwear K64 board"; |
| compatible = "nxp,hexiwear", "nxp,k64f", "nxp,k6x"; |
| |
| aliases { |
| led0 = &green_led; |
| led1 = &blue_led; |
| led2 = &red_led; |
| pwm-led0 = &green_pwm_led; |
| red-pwm-led = &red_pwm_led; |
| green-pwm-led = &green_pwm_led; |
| blue-pwm-led = &blue_pwm_led; |
| }; |
| |
| chosen { |
| zephyr,sram = &sram0; |
| zephyr,flash = &flash0; |
| zephyr,code-partition = &slot0_partition; |
| zephyr,console = &uart0; |
| zephyr,shell-uart = &uart0; |
| zephyr,bt-uart = &uart4; |
| }; |
| |
| leds { |
| compatible = "gpio-leds"; |
| red_led: led_0 { |
| gpios = <&gpioc 8 GPIO_ACTIVE_LOW>; |
| label = "User LD1"; |
| }; |
| green_led: led_1 { |
| gpios = <&gpiod 0 GPIO_ACTIVE_LOW>; |
| label = "User LD2"; |
| }; |
| blue_led: led_2 { |
| gpios = <&gpioc 9 GPIO_ACTIVE_LOW>; |
| label = "User LD3"; |
| }; |
| }; |
| |
| pwmleds { |
| compatible = "pwm-leds"; |
| |
| red_pwm_led: red_pwm_led { |
| pwms = <&pwm3 4 15625000 PWM_POLARITY_INVERTED>; |
| }; |
| green_pwm_led: green_pwm_led { |
| pwms = <&pwm3 0 15625000 PWM_POLARITY_INVERTED>; |
| }; |
| blue_pwm_led: blue_pwm_led { |
| pwms = <&pwm3 5 15625000 PWM_POLARITY_INVERTED>; |
| }; |
| }; |
| }; |
| |
| &cpu0 { |
| clock-frequency = <120000000>; |
| }; |
| |
| &adc0 { |
| status = "okay"; |
| }; |
| |
| &adc1 { |
| status = "okay"; |
| }; |
| |
| &pwm3 { |
| status = "okay"; |
| }; |
| |
| &i2c0 { |
| status = "okay"; |
| |
| max30101@57 { |
| compatible = "max,max30101"; |
| reg = <0x57>; |
| label = "MAX30101"; |
| }; |
| }; |
| |
| &i2c1 { |
| status = "okay"; |
| |
| fxos8700@1e { |
| compatible = "nxp,fxos8700"; |
| reg = <0x1e>; |
| label = "FXOS8700"; |
| int1-gpios = <&gpioc 1 0>; |
| int2-gpios = <&gpiod 13 0>; |
| }; |
| |
| fxas21002@20 { |
| compatible = "nxp,fxas21002"; |
| reg = <0x20>; |
| label = "FXAS21002"; |
| int1-gpios = <&gpiod 1 0>; |
| int2-gpios = <&gpioc 18 0>; |
| }; |
| }; |
| |
| &uart0 { |
| status = "okay"; |
| current-speed = <115200>; |
| }; |
| |
| &uart4 { |
| status = "okay"; |
| current-speed = <115200>; |
| }; |
| |
| &flash0 { |
| /* |
| * For more information, see: |
| * http://docs.zephyrproject.org/latest/guides/dts/index.html#flash-partitions |
| */ |
| partitions { |
| compatible = "fixed-partitions"; |
| #address-cells = <1>; |
| #size-cells = <1>; |
| |
| boot_partition: partition@0 { |
| label = "mcuboot"; |
| reg = <0x00000000 0x00010000>; |
| read-only; |
| }; |
| |
| /* |
| * The flash starting at 0x00010000 and ending at |
| * 0x0001ffff (sectors 16-31) is reserved for use |
| * by the application. |
| */ |
| |
| slot0_partition: partition@20000 { |
| label = "image-0"; |
| reg = <0x00020000 0x00060000>; |
| }; |
| slot1_partition: partition@80000 { |
| label = "image-1"; |
| reg = <0x00080000 0x00060000>; |
| }; |
| scratch_partition: partition@e0000 { |
| label = "image-scratch"; |
| reg = <0x000e0000 0x00020000>; |
| }; |
| }; |
| }; |