hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/*
 * Copyright (C) 2017 Hamster Tian <haotia@gmail.com>
 * Copyright (C) 2019 Hao Dong <halbertdong@gmail.com>
 */
 
/dts-v1/;
 
#include "bcm47094.dtsi"
#include "bcm5301x-nand-cs0-bch4.dtsi"
 
/ {
   compatible = "phicomm,k3", "brcm,bcm47094", "brcm,bcm4708";
   model = "Phicomm K3";
 
   memory@0 {
       device_type = "memory";
       reg = <0x00000000 0x08000000>,
             <0x88000000 0x18000000>;
   };
 
   gpio-keys {
       compatible = "gpio-keys";
 
       restart {
           label = "Reset";
           linux,code = <KEY_RESTART>;
           gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
       };
   };
};
 
&uart1 {
   status = "okay";
};
 
&usb3_phy {
   status = "okay";
};
 
&nandcs {
   partitions {
       compatible = "fixed-partitions";
       #address-cells = <1>;
       #size-cells = <1>;
 
       partition@0 {
           label = "boot";
           reg = <0x0000000 0x0080000>;
           read-only;
       };
 
       partition@80000 {
           label = "nvram";
           reg = <0x0080000 0x0100000>;
       };
 
       partition@180000{
           label = "phicomm";
           reg = <0x0180000 0x0280000>;
           read-only;
       };
 
       partition@400000 {
           label = "firmware";
           reg = <0x0400000 0x7C00000>;
           compatible = "brcm,trx";
       };
   };
};