| /* |
| * Copyright (c) 2020 TriaGnoSys GmbH |
| * Copyright (c) 2021 Safran Passenger Innovations Germany GmbH |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <arm/armv8-m.dtsi> |
| #include <zephyr/dt-bindings/gpio/gpio.h> |
| #include <zephyr/dt-bindings/i2c/i2c.h> |
| #include <dt-bindings/clock/silabs/xg21-clock.h> |
| #include <freq.h> |
| #include "gpio_gecko.h" |
| |
| / { |
| chosen { |
| zephyr,entropy = &se; |
| zephyr,flash-controller = &msc; |
| }; |
| |
| clocks { |
| sysclk: sysclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&hfrcodpll>; |
| }; |
| hclk: hclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&sysclk>; |
| /* Divider 1, 2, or 4 */ |
| clock-div = <1>; |
| }; |
| pclk: pclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&hclk>; |
| /* Divider 1 or 2 */ |
| clock-div = <2>; |
| }; |
| lspclk: lspclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&pclk>; |
| /* Divider 1 or 2 */ |
| clock-div = <2>; |
| }; |
| hclkdiv1024: hclkdiv1024 { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&hclk>; |
| /* Fixed divider of 1024 */ |
| clock-div = <1024>; |
| }; |
| traceclk: traceclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&hclk>; |
| }; |
| em01grpaclk: em01grpaclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&hfrcodpll>; |
| }; |
| iadcclk: iadcclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&em01grpaclk>; |
| }; |
| em23grpaclk: em23grpaclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&lfrco>; |
| }; |
| em4grpaclk: em4grpaclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&lfrco>; |
| }; |
| rtccclk: rtccclk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&lfrco>; |
| }; |
| wdog0clk: wdog0clk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&lfrco>; |
| }; |
| wdog1clk: wdog1clk { |
| #clock-cells = <0>; |
| compatible = "fixed-factor-clock"; |
| clocks = <&lfrco>; |
| }; |
| }; |
| |
| cpus { |
| #address-cells = <1>; |
| #size-cells = <0>; |
| |
| cpu0: cpu@0 { |
| device_type = "cpu"; |
| compatible = "arm,cortex-m33f"; |
| reg = <0>; |
| #address-cells = <1>; |
| #size-cells = <1>; |
| |
| mpu: mpu@e000ed90 { |
| compatible = "arm,armv8m-mpu"; |
| reg = <0xe000ed90 0x40>; |
| }; |
| }; |
| }; |
| |
| sram0: memory@20000000 { |
| device_type = "memory"; |
| compatible = "mmio-sram"; |
| }; |
| |
| soc { |
| cmu: clock@50008000 { |
| compatible = "silabs,series-clock"; |
| reg = <0x50008000 0x4000>; |
| interrupts = <48 0>; |
| interrupt-names = "cmu"; |
| status = "okay"; |
| #clock-cells = <2>; |
| }; |
| |
| fsrco: fsrco@50018000 { |
| #clock-cells = <0>; |
| compatible = "fixed-clock"; |
| reg = <0x50018000 0x4000>; |
| clock-frequency = <DT_FREQ_M(20)>; |
| }; |
| |
| clk_hfxo: hfxo: hfxo@5000c000 { |
| #clock-cells = <0>; |
| compatible = "silabs,hfxo"; |
| reg = <0x5000c000 0x4000>; |
| interrupts = <45 0>; |
| interrupt-names = "hfxo"; |
| clock-frequency = <DT_FREQ_K(38400)>; |
| ctune = <140>; |
| precision = <50>; |
| }; |
| |
| lfxo: lfxo@50020000 { |
| #clock-cells = <0>; |
| compatible = "silabs,series2-lfxo"; |
| reg = <0x50020000 0x4000>; |
| clock-frequency = <32768>; |
| ctune = <63>; |
| precision = <50>; |
| timeout = <4096>; |
| status = "disabled"; |
| }; |
| |
| hfrcodpll: hfrcodpll@50010000 { |
| #clock-cells = <0>; |
| compatible = "silabs,series2-hfrcodpll"; |
| reg = <0x50010000 0x4000>; |
| clock-frequency = <DT_FREQ_M(19)>; |
| }; |
| |
| hfrcoem23: hfrcoem23@5a014000 { |
| #clock-cells = <0>; |
| compatible = "silabs,series2-hfrcoem23"; |
| reg = <0x5a014000 0x4000>; |
| clock-frequency = <DT_FREQ_M(19)>; |
| }; |
| |
| lfrco: lfrco@50024000 { |
| #clock-cells = <0>; |
| compatible = "silabs,series2-lfrco"; |
| reg = <0x50024000 0x4000>; |
| clock-frequency = <32768>; |
| }; |
| |
| ulfrco: ulfrco@50028000 { |
| #clock-cells = <0>; |
| compatible = "fixed-clock"; |
| reg = <0x50028000 0x4000>; |
| clock-frequency = <1000>; |
| }; |
| |
| clkin0: clkin0@5003c46c { |
| #clock-cells = <0>; |
| compatible = "fixed-clock"; |
| reg = <0x5003c46c 0x4>; |
| clock-frequency = <DT_FREQ_M(38)>; |
| }; |
| |
| msc: flash-controller@50030000 { |
| compatible = "silabs,gecko-flash-controller"; |
| reg = <0x50030000 0x31a4>; |
| interrupts = <51 0>; |
| |
| #address-cells = <1>; |
| #size-cells = <1>; |
| |
| flash0: flash@0 { |
| compatible = "soc-nv-flash"; |
| write-block-size = <4>; |
| erase-block-size = <8192>; |
| }; |
| }; |
| |
| usart0: usart@50058000 { /* USART0 */ |
| compatible = "silabs,gecko-usart"; |
| reg = <0x50058000 0x400>; |
| interrupts = <11 0>, <12 0>; |
| interrupt-names = "rx", "tx"; |
| peripheral-id = <0>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_PCLK>; |
| status = "disabled"; |
| }; |
| |
| usart1: usart@5005c000 { /* USART1 */ |
| compatible = "silabs,gecko-usart"; |
| reg = <0x5005c000 0x400>; |
| interrupts = <13 0>, <14 0>; |
| interrupt-names = "rx", "tx"; |
| peripheral-id = <1>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_PCLK>; |
| status = "disabled"; |
| }; |
| |
| usart2: usart@50060000 { /* USART2 */ |
| compatible = "silabs,gecko-usart"; |
| reg = <0x50060000 0x400>; |
| interrupts = <15 0>, <16 0>; |
| interrupt-names = "rx", "tx"; |
| peripheral-id = <2>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_PCLK>; |
| status = "disabled"; |
| }; |
| |
| i2c0: i2c@5a010000 { |
| compatible = "silabs,gecko-i2c"; |
| clock-frequency = <I2C_BITRATE_STANDARD>; |
| #address-cells = <1>; |
| #size-cells = <0>; |
| reg = <0x5a010000 0x400>; |
| interrupts = <27 0>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_LSPCLK>; |
| status = "disabled"; |
| }; |
| |
| i2c1: i2c@50068000 { |
| compatible = "silabs,gecko-i2c"; |
| clock-frequency = <I2C_BITRATE_STANDARD>; |
| #address-cells = <1>; |
| #size-cells = <0>; |
| reg = <0x50068000 0x400>; |
| interrupts = <28 0>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_PCLK>; |
| status = "disabled"; |
| }; |
| |
| rtcc0: rtcc@58000000 { |
| compatible = "silabs,gecko-stimer"; |
| reg = <0x58000000 0x400>; |
| interrupts = <10 0>; |
| interrupt-names = "rtcc"; |
| clock-frequency = <32768>; |
| prescaler = <1>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_RTCCCLK>; |
| status = "disabled"; |
| }; |
| |
| gpio: gpio@5003c300 { |
| compatible = "silabs,gecko-gpio"; |
| reg = <0x5003c300 0x3c00>; |
| interrupts = <26 2>, <25 2>; |
| interrupt-names = "GPIO_EVEN", "GPIO_ODD"; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_PCLK>; |
| |
| ranges; |
| #address-cells = <1>; |
| #size-cells = <1>; |
| |
| gpioa: gpio@5003c000 { |
| compatible = "silabs,gecko-gpio-port"; |
| reg = <0x5003c000 0x30>; |
| peripheral-id = <0>; |
| gpio-controller; |
| #gpio-cells = <2>; |
| status = "disabled"; |
| }; |
| |
| gpiob: gpio@5003c030 { |
| compatible = "silabs,gecko-gpio-port"; |
| reg = <0x5003c030 0x30>; |
| peripheral-id = <1>; |
| gpio-controller; |
| #gpio-cells = <2>; |
| status = "disabled"; |
| }; |
| |
| gpioc: gpio@5003c060 { |
| compatible = "silabs,gecko-gpio-port"; |
| reg = <0x5003c060 0x30>; |
| peripheral-id = <2>; |
| gpio-controller; |
| #gpio-cells = <2>; |
| status = "disabled"; |
| }; |
| |
| gpiod: gpio@5003c090 { |
| compatible = "silabs,gecko-gpio-port"; |
| reg = <0x5003c090 0x30>; |
| peripheral-id = <3>; |
| gpio-controller; |
| #gpio-cells = <2>; |
| status = "disabled"; |
| }; |
| }; |
| |
| se: semailbox@5c000000 { |
| compatible = "silabs,gecko-semailbox"; |
| reg = <0x5c000000 0x80>; |
| interrupts = <0 3>, <1 3>, <2 3>; |
| interrupt-names = "SETAMPERHOST", "SEMBRX", "SEMBTX"; |
| status = "okay"; |
| }; |
| |
| wdog0: wdog@5a018000 { |
| compatible = "silabs,gecko-wdog"; |
| reg = <0x5a018000 0x2C>; |
| peripheral-id = <0>; |
| interrupts = <43 0>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_WDOG0CLK>; |
| status = "disabled"; |
| }; |
| |
| wdog1: wdog@5a01c000 { |
| compatible = "silabs,gecko-wdog"; |
| reg = <0x5a01c000 0x2C>; |
| peripheral-id = <1>; |
| interrupts = <44 0>; |
| clocks = <&cmu CLOCK_AUTO CLOCK_BRANCH_WDOG1CLK>; |
| status = "disabled"; |
| }; |
| |
| pinctrl: pin-controller { |
| /* Pin controller is a "virtual" device since SiLabs SoCs do pin |
| * control in a distributed way (GPIO registers and PSEL |
| * registers on each peripheral). |
| */ |
| compatible = "silabs,gecko-pinctrl"; |
| }; |
| }; |
| }; |
| |
| &nvic { |
| arm,num-irq-priority-bits = <4>; |
| }; |