完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
问题描述及复现步骤: 使用的core-rk3399-jd4核心板 + AIO载板,因为要使用eDP显示屏,修改了rk3399-firefly-aiojd4.dtsi。 但是修改后,系统在启动过程中会崩溃,请问应该如何排查???? 使用硬件如图所示 rk3399-firefly-aiojd4.dtsi文件内容如下: /dts-v1/; #include "rk3399-firefly-port.dtsi" #include <dt-bindings/sensor-dev.h> #include <dt-bindings/display/media-bus-format.h> / {
}; &gmac {
}; &vcc_sd_h {
}; &vcc_sd {
}; &hdmi_dp_sound {
}; &i2c2 {
}; &rt5640 {
}; &rt5640_hpcon{
}; &vcca1v8_codec {
}; &spi1 {
}; &spi_wk2xxx {
}; // &spi2 { // status = "okay"; // max-freq = <48000000>; // spidev@00 { // compatible = "linux,spidev"; // reg = <0x00>; // spi-max-frequency = <48000000>; // status = "okay"; // }; // }; &vcc3v3_3g {
}; &vcc3v3_pcie {
}; &pcie0 {
}; &uart4 {
}; &dp_in_vopb {
}; &hdmi_in_vopl {
}; &wdt {
}; &io_domains {
}; &vcc2v8_dvp {
}; &vcca1v8_codec {
}; &fusb0 {
}; &cdn_dp {
}; &tcphy0 {
}; &u2phy0 {
}; &usbdrd3_0 {
}; &usbdrd_dwc3_0 {
}; &route_hdmi {
}; // 20220802 edp &hdmi_in_vopb {
}; &hdmi {
}; &edp_in_vopb {
}; &edp_in_vopl {
}; &route_edp {
}; &backlight {
}; &edp_panel {
}; &edp {
}; // &uart0 { // status = "disabled"; // }; // 20220802 edp &rk808 {
}; &vcc_mipi {
}; &dvdd_1v2 {
}; &ov13850 {
}; &ov13850_1 {
}; &rkisp1_0 {
}; &mipi_dphy_rx0 {
}; &isp0_mmu {
}; &rkisp1_1 {
}; &mipi_dphy_tx1rx1 {
}; &isp1_mmu {
}; &pinctrl {
}; |
|
相关推荐
2个回答
|
|
panel dts配置有问题,SDK中应该有edp相关dts配置,可以参考配置
|
|
|
|
谢谢回复。确实是panel的问题,panel部分注释掉,系统就可以正常启动。
但是参照SDK中的rk3399-firefly-edp.dts修改,还有同样的问题。 rk3399-firefly-edp.dts是这样的 /* * 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, * * b) Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * 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" / { model = "Firefly-RK3399 Board EDP LP079QX1 (Linux Opensource)"; compatible = "rockchip,rk3399-firefly", "rockchip,rk3399"; test-power { status = "okay"; }; vcc_lcd: vcc-lcd { compatible = "regulator-fixed"; enable-active-high; gpio = <&gpio1 1 GPIO_ACTIVE_HIGH>; regulator-always-on; regulator-boot-on; regulator-name = "vcc_lcd"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; startup-delay-us = <20000>; vin-supply = <&vcc_3v0>; }; }; &backlight { status = "okay"; }; &edp_panel { compatible = "sharp,lcd-f402", "panel-simple"; backlight = <&backlight>; power-supply = <&vcc_lcd>; reset-gpios = <&gpio4 29 GPIO_ACTIVE_LOW>; status = "okay"; }; &edp { status = "okay"; }; &route_edp { status = "okay"; logo,mode = "center"; }; &edp_in_vopl { status = "disabled"; }; &hdmi_dp_sound { status = "okay"; }; &i2c4 { status = "okay"; gsl3680: gsl3680@41 { compatible = "gslX680"; reg = <0x41>; screen_max_x = <1536>; screen_max_y = <2048>; touch-gpio = <&gpio1 20 IRQ_TYPE_LEVEL_LOW>; reset-gpio = <&gpio0 12 GPIO_ACTIVE_HIGH>; }; mpu6050: mpu@68 { compatible = "invensense,mpu6050"; reg = <0x68>; irq-gpio = <&gpio1 4 IRQ_TYPE_LEVEL_LOW>; mpu-debug = <1>; mpu-int_config = <0x10>; mpu-level_shifter = <0>; mpu-orientation = <0 1 0 1 0 0 0 0 1>; orientation-x= <1>; orientation-y= <1>; orientation-z= <1>; }; }; &uart4 { status = "okay"; }; &dp_in_vopb { status = "disabled"; }; &hdmi_in_vopb { status = "disabled"; }; &wdt { status = "disabled"; }; |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
349 浏览 0 评论
2240 浏览 1 评论
synopsys 的design ware:DW_fpv_div,浮点数除法器,默认32位下,想提升覆盖率(TMAX),如果用功能case去提升覆盖率呢?
2943 浏览 1 评论
RK3588 GStreamer调试四路鱼眼摄像头四宫格显示报错
5720 浏览 1 评论
【飞凌嵌入式OK3576-C开发板体验】RKNN神经网络-YOLO图像识别
254 浏览 0 评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-3 13:05 , Processed in 0.509137 second(s), Total 41, Slave 34 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号