| 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
 | | // SPDX-License-Identifier: (GPL-2.0+ OR MIT) |  | /* |  |  * Copyright (c) 2020 Rockchip Electronics Co., Ltd. |  |  */ |  |   |  | /* |  |  * Turn off modules which is not in use for Robot devices. |  |  */ |  |   |  | &backlight { |  |     status = "disabled"; |  | }; |  |   |  | /* |  |  * Userland need drm buffer, so keep display_subsystem and vop enabled, |  |  * But dsi can be disabled. |  |  */ |  | &dsi { |  |     status = "disabled"; |  | }; |  |   |  | &vcc18_lcd_n { |  |     status = "disabled"; |  | }; |  |   |  | &gmac { |  |     status = "disabled"; |  | }; |  |   |  | &i2c5 { |  |     status = "disabled"; |  | }; |  |   |  | &mdio { |  |     status = "disabled"; |  | }; |  |   |  | &route_dsi { |  |     status = "disabled"; |  | }; |  |   |  | &sdmmc { |  |     status = "disabled"; |  | }; | 
 |