zephyr/dts/arm/atmel/same5x.dtsi
Henrik Brix Andersen 41960ab366 dts: bindings: can: remove optional sample point properties
Remove all optional, initial CAN sample point properties and rely on the
CAN timing calculations to automatically pick the preferred sample point
location based on the initial bitrate.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
2024-03-17 15:36:19 +01:00

55 lines
1.2 KiB
Plaintext

/*
* Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
* Copyright (c) 2023 Sebastian Schlupp
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <atmel/samd5x.dtsi>
/ {
soc {
gmac: ethernet@42000800 {
compatible = "atmel,sam0-gmac";
reg = <0x42000800 0x400>;
interrupts = <84 0>;
interrupt-names = "gmac";
num-queues = <1>;
local-mac-address = [00 00 00 00 00 00];
status = "disabled";
};
mdio: mdio@42000800 {
compatible = "atmel,sam-mdio";
reg = <0x42000800 0x400>;
status = "disabled";
#address-cells = <1>;
#size-cells = <0>;
};
can0: can@42000000 {
compatible = "atmel,sam0-can";
reg = <0x42000000 0x400>;
interrupts = <78 0>, <78 0>;
interrupt-names = "int0", "int1";
clocks = <&gclk 27>, <&mclk 0x10 17>;
clock-names = "GCLK", "MCLK";
bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
divider = <12>;
status = "disabled";
};
can1: can@42000400 {
compatible = "atmel,sam0-can";
reg = <0x42000400 0x400>;
interrupts = <79 0>, <79 0>;
interrupt-names = "int0", "int1";
clocks = <&gclk 28>, <&mclk 0x10 18>;
clock-names = "GCLK", "MCLK";
bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>;
divider = <12>;
status = "disabled";
};
};
};