aibou 发表于 2022-10-21 16:52:15

AIO3399J无法点亮LVDS屏幕

使用SDK包编译固件,参考官方文档:https://wiki.t-firefly.com/zh_CN/AIO-3399J/driver_lcd.html
根据步骤配置,但是在u-boot里面找不到rockchip-dw-mipi-dsi.c的文件。


升级完成之后,只有背光亮,屏幕显示黑屏。

aibou 发表于 2022-10-26 11:46:37

有dts有根据链接上面说的配了。

aibou 发表于 2022-10-26 13:11:31

abcxyztt 发表于 2022-10-24 11:16
dts没有配置吧

有的,dts在楼下。

aibou 发表于 2022-10-26 15:28:58

本帖最后由 aibou 于 2022-10-26 15:36 编辑

abcxyztt 发表于 2022-10-26 14:59
应该是dts配置不对
dts文件如下所示,可以帮忙看看哪里有问题吗?目前是板子上看DSI的接口有出来,背光也可以开关,就是没信号。
/*
* Copyright (c) 2016 Fuzhou Rockchip Electronics Co., Ltd
*
* This file is dual-licensed: you can use it either under the terms
* of the GPL or the X11 license, at your option. Note that this dual
* licensing only applies to this file, and not this project as a
* whole.
*
*a) This file is free software; you can redistribute it and/or
*   modify it under the terms of the GNU General Public License as
*   published by the Free Software Foundation; either version 2 of the
*   License, or (at your option) any later version.
*
*   This file is distributed in the hope that it will be useful,
*   but WITHOUT ANY WARRANTY; without even the implied warranty of
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
*   GNU General Public License for more details.
*
* Or, alternatively,
*   restriction, including without limitation the rights to use,
*   copy, modify, merge, publish, distribute, sublicense, and/or
*   sell copies of the Software, and to permit persons to whom the
*   Software is furnished to do so, subject to the following
*   conditions:
*
*   The above copyright notice and this permission notice shall be
*   included in all copies or substantial portions of the Software.
*
*   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
*   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
*   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
*   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
*   HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
*   WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
*   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
*   OTHER DEALINGS IN THE SOFTWARE.
*/

/dts-v1/;

#include "rk3399-firefly-port.dtsi"
#include <dt-bindings/sensor-dev.h>
#include <dt-bindings/display/media-bus-format.h>

/ {
      model = "AIO-3399J Board LVDS HSX101H40C (Linux Opensource)";
      compatible = "rockchip,rk3399-firefly", "rockchip,rk3399";

      test-power {
                status = "okay";
      };

      /delete-node/ vcc-sd;
      sdmmc_pwrseq: sdmmc-pwrseq {
                compatible = "mmc-pwrseq-simple";
                clocks = <&rk808 1>;
                clock-names = "ext_clock";
                pinctrl-names = "default";
                pinctrl-0 = <&sdcard_enable_h>;
                /*
                * On the module itself this is one of these (depending
                * on the actual card populated):
                * - SDIO_RESET_L_WL_REG_ON
                * - PDN (power down when low)
                */
                reset-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>; /* GPIO1_C4 */
      };

      lcd_en:lcd-en-regulator {
                compatible = "regulator-fixed";
                enable-active-high;
                gpio = <&gpio1 4 GPIO_ACTIVE_HIGH>;
                pinctrl-names = "default";
                pinctrl-0 = <&lcd_panel_lcd_en>;
                regulator-name = "lcd_en";
                regulator-always-on;
      };

      leds {
                compatible = "gpio-leds";

                work {
                        gpios = <&gpio2 7 GPIO_ACTIVE_HIGH>;
                        default-state = "on";
                };

                user {
                        gpios = <&gpio2 2 GPIO_ACTIVE_HIGH>;
                        default-state = "off";
                };
      };
};

&backlight {
      status = "okay";
      pwms = <&pwm0 0 25000 1>;
      enable-gpios = <&gpio1 1 GPIO_ACTIVE_HIGH>;
      brightness-levels = </*
                  0   1   2   3   4   5   6   7
                  8   9101112131415
               1617181920212223
               2425262728293031
               32333435*/36373839
               4041424344454647
               4849505152535455
               5657585960616263
               6465666768697071
               7273747576777879
               8081828384858687
               8889909192939495
               96979899 100 101 102 103
                104 105 106 107 108 109 110 111
                112 113 114 115 116 117 118 119
                120 121 122 123 124 125 126 127
                128 129 130 131 132 133 134 135
                136 137 138 139 140 141 142 143
                144 145 146 147 148 149 150 151
                152 153 154 155 156 157 158 159
                160 161 162 163 164 165 166 167
                168 169 170 171 172 173 174 175
                176 177 178 179 180 181 182 183
                184 185 186 187 188 189 190 191
                192 193 194 195 196 197 198 199
                200 201 202 203 204 205 206 207
                208 209 210 211 212 213 214 215
                216 217 218 219 220 221 222 223
                224 225 226 227 228 229 230 231
                232 233 234 235 236 237 238 239
                240 241 242 243 244 245 246 247
                248 249 250 251 252 253 254 255>;
      default-brightness-level = <200>;
};

&dsi {
      status = "okay";
      rockchip,lane-rate = <1000>;//lvds_clock*6*2
      dsi_panel: panel {
                compatible ="simple-panel-dsi";
                reg = <0>;
                backlight = <&backlight>;
                enable-gpios = <&gpio3 16 GPIO_ACTIVE_HIGH>;
                reset-gpios = <&gpio2 27 GPIO_ACTIVE_LOW>;
                dsi,flags = <(MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_EOT_PACKET)>;
                dsi,format = <MIPI_DSI_FMT_RGB888>;
                //bus-format = <MEDIA_BUS_FMT_RGB666_1X18>;
                dsi,lanes = <4>;
                dsi,channel = <0>;
                enable-delay-ms = <35>;
                prepare-delay-ms = <6>;
                unprepare-delay-ms = <0>;
                disable-delay-ms = <20>;
                size,width = <120>;
                size,height = <170>;
                power-supply = <&lcd_en>;
                status = "okay";

                panel-init-sequence = [
                        29 02 06 3C 01 09 00 07 00
                        29 02 06 14 01 06 00 00 00
                        29 02 06 64 01 0C 00 00 00
                        29 02 06 68 01 0C 00 00 00
                        29 02 06 6C 01 0C 00 00 00
                        29 02 06 70 01 0C 00 00 00
                        29 02 06 34 01 1F 00 00 00
                        29 02 06 10 02 1F 00 00 00
                        29 02 06 04 01 01 00 00 00
                        29 02 06 04 02 01 00 00 00
                        29 02 06 50 04 20 01 F0 03
                        29 02 06 54 04 20 00 50 00
                        29 02 06 58 04 00 05 30 00
                        29 02 06 5C 04 05 00 0D 00
                        29 02 06 60 04 D0 02 03 00
                        29 02 06 64 04 01 00 00 00
                        29 02 06 A0 04 06 80 44 00
                        29 02 06 A0 04 06 80 04 00
                        29 02 06 04 05 04 00 00 00
                        29 02 06 80 04 00 01 02 03
                        29 02 06 84 04 04 07 05 08
                        29 02 06 88 04 09 0A 0E 0F
                        29 02 06 8C 04 0B 0C 0D 10
                        29 02 06 90 04 16 17 11 12
                        29 02 06 94 04 13 14 15 1B
                        29 02 06 98 04 18 19 1A 06
                        29 02 06 9C 04 61 02 00 00
                ];

                panel-exit-sequence = [
                        05 05 01 28
                        05 78 01 10
                ];
               
                /*power_ctr: power_ctr {
                        rockchip,debug = <0>;
                        bl_en: bl_en {
                              gpios = <&gpio1 1 GPIO_ACTIVE_HIGH>;      //GPIO1_A1
                              pinctrl-names = "default";
                              pinctrl-0 = <&lcd_panel_bl_en>;
                              rockchip,delay = <0>;
                        };
                        lcd_en: lcd_en {
                              gpios = <&gpio1 4 GPIO_ACTIVE_HIGH>;      //GPIO1_A4
                              pinctrl-names = "default";
                              pinctrl-0 = <&lcd_panel_lcd_en>;
                              rockchip,delay = <10>;
                        };
                        lcd_pwr_en: lcd-pwr-en {
                              gpios = <&gpio3 16 GPIO_ACTIVE_HIGH>;      //GPIO3_C0
                              pinctrl-names = "default";
                              pinctrl-0 = <&lcd_panel_pwr_en>;
                              rockchip,delay = <10>;
                        };
                        lcd_rst: lcd-rst {
                              gpios = <&gpio2 27 GPIO_ACTIVE_LOW>;      //GPIO2_D3
                              pinctrl-names = "default";
                              pinctrl-0 = <&lcd_panel_reset>;
                              rockchip,delay = <6>;
                        };
                };*/

                disp_timings: display-timings {
                        native-mode = <&timing0>;
                        timing0: timing0 {
                              clock-frequency = <64000000>; //@60
                              hactive = <1280>;
                              vactive = <720>;
                              hsync-len = <32>;
                              hback-porch = <80>;
                              hfront-porch = <48>;
                              vsync-len = <5>;
                              vback-porch = <13>;
                              vfront-porch = <3>;
                              hsync-active = <0>;
                              vsync-active = <0>;
                              de-active = <0>;
                              pixelclk-active = <0>;
                        };
                };
      };
};

&route_dsi {
      status = "okay";
      logo,mode = "center";
};

&pwm0 {
      status = "okay";
};

&dsi_in_vopl {
      status = "okay";
};

&dsi_in_vopb {
      status = "disabled";
};

&cdn_dp {
      status = "disabled";
};

&hdmi_dp_sound {
      status = "okay";
};

&i2c4 {
      status = "okay";

      gsl3680: gsl3680@41 {
                compatible = "gslX680";
                reg = <0x41>;
                screen_max_x = <1280>;
                screen_max_y = <720>;
                touch-gpio = <&gpio2 2 IRQ_TYPE_LEVEL_LOW>;
                reset-gpio = <&gpio1 23 GPIO_ACTIVE_HIGH>;
                gsl,fw = <1>;
                flip-x = <1>;
                flip-y = <0>;
                swap-xy = <0>;
      };

      sensor@4c {
                status = "disabled";
                compatible = "gs_mc3230";
                reg = <0x4c>;
                type = <SENSOR_TYPE_ACCEL>;
                irq_enable = <0>;
                poll_delay_ms = <30>;
                layout = <1>;
      };
};

&rt5640 {
    aux-det-adc-value = <1000>;
    io-channels = <&saradc 4>, <&saradc 2>;
    io-channel-names = "hp-det", "aux-det";
};

&sdmmc {
      /delete-property/ vmmc-supply;
      mmc-pwrseq = <&sdmmc_pwrseq>;
};

&spi1 {
    status = "okay";
};

&spi_wk2xxx {
    status = "okay";
};

&fusb0 {
    status = "disabled";
};

&tcphy0 {
    status = "okay";
    /delete-property/ extcon;
};

&u2phy0 {
    status = "okay";
    /delete-property/ extcon;

    u2phy0_otg: otg-port {
      rockchip,vbus-always-on;
      vbus-5v-gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>;
      status = "okay";
    };
};

&usbdrd3_0 {
    status = "okay";
    /delete-property/ extcon;
};

&usbdrd_dwc3_0 {
      status = "okay";
      dr_mode = "host";
};

&vcc3v3_pcie {
    gpio = <&gpio0 13 GPIO_ACTIVE_HIGH>;
};

&pcie0 {
      ep-gpios = <&gpio4 25 GPIO_ACTIVE_HIGH>;
};

&vcc3v3_3g {
    gpio = <&gpio2 6 GPIO_ACTIVE_HIGH>;
};

&uart4 {
    status = "disabled";
};

&dp_in_vopb {
      status = "disabled";
};

&hdmi_in_vopb {
      status = "okay";
};

&hdmi_in_vopl {
      status = "disabled";
};

&wdt {
      status = "disabled";
};

&pinctrl {
      leds {
                led_power: led-power {
                        rockchip,pins =
                              <2 7 RK_FUNC_GPIO &pcfg_pull_none>;
                };

                led_user: led-user {
                        rockchip,pins =
                              <2 2 RK_FUNC_GPIO &pcfg_pull_none>;
                };
      };

      pcie {
                pcie_drv: pcie-drv {
                        rockchip,pins =
                              <0 13 RK_FUNC_GPIO &pcfg_pull_none>;
                };

                pcie_3g_drv: pcie-3g-drv {
                        rockchip,pins =
                              <2 6 RK_FUNC_GPIO &pcfg_pull_up>;
                };
      };

      sdmmc-pwrseq {
                sdcard_enable_h: sdcard-enable-h {
                        rockchip,pins =
                              <1 20 RK_FUNC_GPIO &pcfg_pull_none>;
                };
      };

      lcd-panel {
                /*lcd_panel_reset: lcd_panel_reset {
                        rockchip,pins = <2 27 RK_FUNC_GPIO &pcfg_pull_down>;
                };
               
                lcd_panel_pwr_en: lcd_panel_pwr_en {
                        rockchip,pins = <3 16 RK_FUNC_GPIO &pcfg_pull_down>;
                };*/
               
                lcd_panel_lcd_en: lcd-panel-lcd-en {
                        rockchip,pins = <1 4 RK_FUNC_GPIO &pcfg_pull_down>;
                };
               
                /*lcd_panel_bl_en: lcd_panel_bl_en {
                        rockchip,pins = <1 1 RK_FUNC_GPIO &pcfg_pull_down>;
                };*/
      };
};
页: [1]
查看完整版本: AIO3399J无法点亮LVDS屏幕