1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * ge863_pro3.dtsi - Device Tree file for Telit GE863-PRO3 4*f126890aSEmmanuel Vadot * 5*f126890aSEmmanuel Vadot * Copyright (C) 2012 Telit, 6*f126890aSEmmanuel Vadot * 2012 Fabio Porcedda <fabio.porcedda@gmail.com> 7*f126890aSEmmanuel Vadot */ 8*f126890aSEmmanuel Vadot 9*f126890aSEmmanuel Vadot#include "at91sam9260.dtsi" 10*f126890aSEmmanuel Vadot 11*f126890aSEmmanuel Vadot/ { 12*f126890aSEmmanuel Vadot clocks { 13*f126890aSEmmanuel Vadot main_xtal { 14*f126890aSEmmanuel Vadot clock-frequency = <6000000>; 15*f126890aSEmmanuel Vadot }; 16*f126890aSEmmanuel Vadot }; 17*f126890aSEmmanuel Vadot 18*f126890aSEmmanuel Vadot ahb { 19*f126890aSEmmanuel Vadot apb { 20*f126890aSEmmanuel Vadot tcb0: timer@fffa0000 { 21*f126890aSEmmanuel Vadot timer@0 { 22*f126890aSEmmanuel Vadot compatible = "atmel,tcb-timer"; 23*f126890aSEmmanuel Vadot reg = <0>, <1>; 24*f126890aSEmmanuel Vadot }; 25*f126890aSEmmanuel Vadot 26*f126890aSEmmanuel Vadot timer@2 { 27*f126890aSEmmanuel Vadot compatible = "atmel,tcb-timer"; 28*f126890aSEmmanuel Vadot reg = <2>; 29*f126890aSEmmanuel Vadot }; 30*f126890aSEmmanuel Vadot }; 31*f126890aSEmmanuel Vadot 32*f126890aSEmmanuel Vadot dbgu: serial@fffff200 { 33*f126890aSEmmanuel Vadot status = "okay"; 34*f126890aSEmmanuel Vadot }; 35*f126890aSEmmanuel Vadot }; 36*f126890aSEmmanuel Vadot 37*f126890aSEmmanuel Vadot ebi: ebi@10000000 { 38*f126890aSEmmanuel Vadot status = "okay"; 39*f126890aSEmmanuel Vadot 40*f126890aSEmmanuel Vadot nand_controller: nand-controller { 41*f126890aSEmmanuel Vadot status = "okay"; 42*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_nand_cs &pinctrl_nand_rb>; 43*f126890aSEmmanuel Vadot pinctrl-names = "default"; 44*f126890aSEmmanuel Vadot 45*f126890aSEmmanuel Vadot nand@3 { 46*f126890aSEmmanuel Vadot reg = <0x3 0x0 0x800000>; 47*f126890aSEmmanuel Vadot rb-gpios = <&pioC 13 GPIO_ACTIVE_HIGH>; 48*f126890aSEmmanuel Vadot cs-gpios = <&pioC 14 GPIO_ACTIVE_HIGH>; 49*f126890aSEmmanuel Vadot nand-bus-width = <8>; 50*f126890aSEmmanuel Vadot nand-ecc-mode = "soft"; 51*f126890aSEmmanuel Vadot nand-on-flash-bbt; 52*f126890aSEmmanuel Vadot label = "atmel_nand"; 53*f126890aSEmmanuel Vadot 54*f126890aSEmmanuel Vadot partitions { 55*f126890aSEmmanuel Vadot compatible = "fixed-partitions"; 56*f126890aSEmmanuel Vadot #address-cells = <1>; 57*f126890aSEmmanuel Vadot #size-cells = <1>; 58*f126890aSEmmanuel Vadot 59*f126890aSEmmanuel Vadot boot@0 { 60*f126890aSEmmanuel Vadot label = "boot"; 61*f126890aSEmmanuel Vadot reg = <0x0 0x7c0000>; 62*f126890aSEmmanuel Vadot }; 63*f126890aSEmmanuel Vadot 64*f126890aSEmmanuel Vadot root@7c0000 { 65*f126890aSEmmanuel Vadot label = "root"; 66*f126890aSEmmanuel Vadot reg = <0x7c0000 0x7840000>; 67*f126890aSEmmanuel Vadot }; 68*f126890aSEmmanuel Vadot }; 69*f126890aSEmmanuel Vadot }; 70*f126890aSEmmanuel Vadot }; 71*f126890aSEmmanuel Vadot }; 72*f126890aSEmmanuel Vadot }; 73*f126890aSEmmanuel Vadot 74*f126890aSEmmanuel Vadot chosen { 75*f126890aSEmmanuel Vadot bootargs = "console=ttyS0,115200 root=ubi0:rootfs ubi.mtd=1 rootfstype=ubifs"; 76*f126890aSEmmanuel Vadot }; 77*f126890aSEmmanuel Vadot}; 78