2019-06-25 16:28:44 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 SEAL AG
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
2022-02-28 18:02:36 -06:00
|
|
|
#include <nxp/nxp_kv58f1m0vlx24.dtsi>
|
|
|
|
#include "twr_kv58f220m-pinctrl.dtsi"
|
2023-08-03 10:52:22 +00:00
|
|
|
#include <zephyr/dt-bindings/input/input-event-codes.h>
|
2019-06-25 16:28:44 +02:00
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "NXP Kinetis KV58 MCU Tower System Module";
|
|
|
|
compatible = "nxp,mkv58f24", "nxp,kv58", "nxp,kv5x";
|
|
|
|
|
|
|
|
aliases {
|
|
|
|
led0 = &red_led;
|
|
|
|
led1 = &green_led;
|
|
|
|
led2 = &blue_led;
|
|
|
|
led3 = &orange_led;
|
|
|
|
sw0 = &user_button_0;
|
|
|
|
sw1 = &user_button_1;
|
|
|
|
sw2 = &user_button_2;
|
|
|
|
sw3 = &user_button_3;
|
2022-06-29 16:15:53 -05:00
|
|
|
magn0 = &fxos8700;
|
2022-07-22 00:45:23 +09:00
|
|
|
accel0 = &fxos8700;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,sram = &sram0;
|
|
|
|
zephyr,flash = &flash0;
|
|
|
|
zephyr,code-partition = &slot0_partition;
|
|
|
|
zephyr,console = &uart0;
|
|
|
|
zephyr,shell-uart = &uart0;
|
|
|
|
zephyr,uart-pipe = &uart0;
|
|
|
|
};
|
|
|
|
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
red_led: led_0 {
|
|
|
|
gpios = <&gpioe 11 0>;
|
|
|
|
label = "User LED D4";
|
|
|
|
};
|
|
|
|
green_led: led_1 {
|
|
|
|
gpios = <&gpioe 12 0>;
|
|
|
|
label = "User LED D3";
|
|
|
|
};
|
|
|
|
blue_led: led_2 {
|
|
|
|
gpios = <&gpioe 29 0>;
|
|
|
|
label = "User LED D2";
|
|
|
|
};
|
|
|
|
orange_led: led_3 {
|
|
|
|
gpios = <&gpioe 30 0>;
|
|
|
|
label = "User LED D1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
gpio_keys {
|
|
|
|
compatible = "gpio-keys";
|
|
|
|
user_button_0: button_0 {
|
|
|
|
label = "User SW2";
|
2020-01-26 09:58:46 -06:00
|
|
|
gpios = <&gpioa 4 GPIO_ACTIVE_LOW>;
|
2023-08-03 10:52:22 +00:00
|
|
|
zephyr,code = <INPUT_KEY_0>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
user_button_1: button_1 {
|
|
|
|
label = "User SW3";
|
2020-01-26 09:58:46 -06:00
|
|
|
gpios = <&gpioe 4 GPIO_ACTIVE_LOW>;
|
2023-08-03 10:52:22 +00:00
|
|
|
zephyr,code = <INPUT_KEY_1>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
user_button_2: button_2 {
|
|
|
|
label = "User SW4";
|
2020-01-26 09:58:46 -06:00
|
|
|
gpios = <&gpiob 5 GPIO_ACTIVE_LOW>;
|
2023-08-03 10:52:22 +00:00
|
|
|
zephyr,code = <INPUT_KEY_2>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
user_button_3: button_3 {
|
|
|
|
label = "User SW5";
|
2020-01-26 09:58:46 -06:00
|
|
|
gpios = <&gpiob 4 GPIO_ACTIVE_LOW>;
|
2023-08-03 10:52:22 +00:00
|
|
|
zephyr,code = <INPUT_KEY_3>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-07-02 14:14:18 +02:00
|
|
|
&sim {
|
|
|
|
pllfll-select = <KINETIS_SIM_PLLFLLSEL_MCGPLLCLK>;
|
|
|
|
er32k-select = <KINETIS_SIM_ER32KSEL_OSC32KCLK>;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-02-12 12:34:35 -06:00
|
|
|
&gpioa {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpiob {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpioc {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpiod {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&gpioe {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
2019-06-25 16:28:44 +02:00
|
|
|
&flash0 {
|
2020-10-27 12:14:59 +01:00
|
|
|
|
2019-06-25 16:28:44 +02:00
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
boot_partition: partition@0 {
|
|
|
|
label = "mcuboot";
|
|
|
|
reg = <0x00000000 0x10000>;
|
|
|
|
};
|
2024-04-18 15:32:05 +02:00
|
|
|
/* Note slot 0 has one additional sector,
|
|
|
|
* this is intended for use with the swap move algorithm
|
|
|
|
*/
|
|
|
|
slot0_partition: partition@10000 {
|
2019-06-25 16:28:44 +02:00
|
|
|
label = "image-0";
|
2024-04-18 15:32:05 +02:00
|
|
|
reg = <0x00010000 0x68000>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
2024-04-18 15:32:05 +02:00
|
|
|
slot1_partition: partition@78000 {
|
2019-06-25 16:28:44 +02:00
|
|
|
label = "image-1";
|
2024-04-18 15:32:05 +02:00
|
|
|
reg = <0x00078000 0x66000>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
2024-04-18 15:32:05 +02:00
|
|
|
storage_partition: partition@de000 {
|
2019-06-25 16:28:44 +02:00
|
|
|
label = "image-scratch";
|
2024-04-18 15:32:05 +02:00
|
|
|
reg = <0x000de000 0x22000>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&i2c1 {
|
|
|
|
status = "okay";
|
2022-02-28 18:02:36 -06:00
|
|
|
pinctrl-0 = <&i2c1_default>;
|
2021-09-16 17:15:41 -05:00
|
|
|
pinctrl-names = "default";
|
2019-06-25 16:28:44 +02:00
|
|
|
|
2022-06-29 16:15:53 -05:00
|
|
|
fxos8700: fxos8700@1c {
|
2019-06-25 16:28:44 +02:00
|
|
|
compatible = "nxp,fxos8700";
|
|
|
|
reg = <0x1c>;
|
2019-12-11 15:14:11 -06:00
|
|
|
int1-gpios = <&gpioc 18 GPIO_ACTIVE_LOW>;
|
|
|
|
int2-gpios = <&gpioc 19 GPIO_ACTIVE_LOW>;
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&uart0 {
|
|
|
|
status = "okay";
|
|
|
|
current-speed = <115200>;
|
2022-02-28 18:02:36 -06:00
|
|
|
pinctrl-0 = <&uart0_default>;
|
2021-09-16 17:15:41 -05:00
|
|
|
pinctrl-names = "default";
|
2019-06-25 16:28:44 +02:00
|
|
|
};
|