blob: 06ba998d544fe9690804a2da2b6555dff995f738 [file] [log] [blame]
Joachim Eastwood56bd3772015-05-12 00:00:51 +02001/*
2 * Embedded Artist LPC4357 Developer's Kit
3 *
4 * Copyright 2015 Joachim Eastwood <manabian@gmail.com>
5 *
6 * This code is released using a dual license strategy: BSD/GPL
7 * You can choose the licence that better fits your requirements.
8 *
9 * Released under the terms of 3-clause BSD License
10 * Released under the terms of GNU General Public License Version 2.0
11 *
12 */
13/dts-v1/;
14
15#include "lpc18xx.dtsi"
16#include "lpc4357.dtsi"
17
18/ {
19 model = "Embedded Artists' LPC4357 Developer's Kit";
20 compatible = "ea,lpc4357-developers-kit", "nxp,lpc4357", "nxp,lpc4350";
21
22 aliases {
23 serial0 = &uart0;
24 serial1 = &uart1;
25 serial2 = &uart2;
26 serial3 = &uart3;
27 };
28
29 chosen {
30 stdout-path = &uart0;
31 };
32
33 memory {
34 device_type = "memory";
35 reg = <0x28000000 0x2000000>; /* 32 MB */
36 };
37};
38
Joachim Eastwoodc97a63c2015-04-02 05:51:20 +020039&pinctrl {
40 uart0_pins: uart0-pins {
41 uart0_rx_cfg {
42 pins = "pf_11";
43 function = "uart0";
44 input-schmitt-disable;
45 bias-disable;
46 input-enable;
47 };
48
49 uart0_tx_cfg {
50 pins = "pf_10";
51 function = "uart0";
52 bias-pull-down;
53 };
54 };
55};
56
Joachim Eastwood56bd3772015-05-12 00:00:51 +020057&uart0 {
58 status = "okay";
Joachim Eastwoodc97a63c2015-04-02 05:51:20 +020059 pinctrl-names = "default";
60 pinctrl-0 = <&uart0_pins>;
Joachim Eastwood56bd3772015-05-12 00:00:51 +020061};