1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- * at91-linea.dtsi - Device Tree Include file for the Axentia Linea Module.
- *
- * Copyright (C) 2017 Axentia Technologies AB
- *
- * Author: Peter Rosin <[email protected]>
- */
- #include "sama5d31.dtsi"
- / {
- compatible = "axentia,linea",
- "atmel,sama5d31", "atmel,sama5d3", "atmel,sama5";
- memory@20000000 {
- reg = <0x20000000 0x4000000>;
- };
- };
- &slow_xtal {
- clock-frequency = <32768>;
- };
- &main_xtal {
- clock-frequency = <12000000>;
- };
- &tcb0 {
- timer@0 {
- compatible = "atmel,tcb-timer";
- reg = <0>;
- };
- timer@1 {
- compatible = "atmel,tcb-timer";
- reg = <1>;
- };
- };
- &i2c0 {
- status = "okay";
- eeprom@51 {
- compatible = "st,24c64", "atmel,24c64";
- reg = <0x51>;
- pagesize = <32>;
- };
- };
- &ebi {
- pinctrl-0 = <&pinctrl_ebi_nand_addr>;
- pinctrl-names = "default";
- status = "okay";
- };
- &nand_controller {
- status = "okay";
- nand: nand@3 {
- reg = <0x3 0x0 0x2>;
- atmel,rb = <0>;
- nand-bus-width = <8>;
- nand-ecc-mode = "hw";
- nand-ecc-strength = <4>;
- nand-ecc-step-size = <512>;
- nand-on-flash-bbt;
- label = "atmel_nand";
- };
- };
|