blob: b057e037f940775dbcd3e2af342e21a2759c1fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2021 Maxim Kutnij <gtk3@inbox.ru>
*/
/dts-v1/;
#include "mt6582.dtsi"
/ {
model = "Prestigio PMT5008 3G";
compatible = "prestigio,pmt5008-3g", "mediatek,mt6582";
aliases {
bootargs = "console=ttyS0,921600n8 earlyprintk";
serial0 = &uart0;
serial3 = &uart3;
};
chosen {
stdout-path = "serial0:921600n8";
};
memory {
device_type = "memory";
reg = <0x80000000 0x40000000>;
};
};
&uart0 {
status = "okay";
};
&uart1 {
status = "okay";
};
&uart2 {
status = "okay";
};
&uart3 {
status = "okay";
};
|