hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
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
71
72
73
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2020 Rockchip Electronics Co., Ltd.
 *
 */
 
/dts-v1/;
 
#include "rk3568.dtsi"
#include <dt-bindings/gpio/gpio.h>
 
/ {
   model = "Rockchip RK3568 IOTEST DDR3 V10 Board";
   compatible = "rockchip,rk3568-iotest-ddr3-v10", "rockchip,rk3568";
 
   chosen: chosen {
       bootargs = "earlycon=uart8250,mmio32,0xfe660000 console=ttyFIQ0 root=PARTUUID=614e0000-0000 rw rootwait";
   };
 
   fiq-debugger {
       compatible = "rockchip,fiq-debugger";
       rockchip,serial-id = <2>;
       rockchip,wake-irq = <0>;
       /* If enable uart uses irq instead of fiq */
       rockchip,irq-mode-enable = <1>;
       rockchip,baudrate = <1500000>;  /* Only 115200 and 1500000 */
       interrupts = <GIC_SPI 252 IRQ_TYPE_LEVEL_LOW>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart2m0_xfer>;
       status = "okay";
   };
 
   test-power {
       status = "okay";
   };
};
 
&rkvdec {
   /delete-property/ vdec-supply;
};
 
&sdhci {
   bus-width = <8>;
   no-sdio;
   no-sd;
   non-removable;
   max-frequency = <200000000>;
   status = "okay";
};
 
&u2phy0_otg {
   status = "okay";
};
 
&usb2phy0 {
   status = "okay";
};
 
&usbdrd_dwc3 {
   dr_mode = "otg";
   phys = <&u2phy0_otg>;
   phy-names = "usb2-phy";
   extcon = <&usb2phy0>;
   maximum-speed = "high-speed";
   snps,dis_u2_susphy_quirk;
   status = "okay";
};
 
&usbdrd30 {
   status = "okay";
};
 
/delete-node/ &display_subsystem;