Commit Graph

1280703 Commits

Author SHA1 Message Date
Damon Ding
f486e2b73d drm/rockchip: analogix_dp: update the check for clearing old output_if
In order to cover more application scenarios, when the crtc changes,
the old output_if should be cleared, rather than when the flag
&drm_crtc_state.active_changed is set to 1.

In addition, it would be more reasonable to name new crtc to 'new_crtc'
rather than 'crtc'.

Change-Id: I5376c44eb5deab75acdbae95782cc5de2e2757d5
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-24 09:12:55 +00:00
Damon Ding
f897ad4b39 drm/rockchip: analogix_dp: use the unified function to get new crtc from encoder
Replace the rockchip_dp_drm_get_new_crtc() by the existing function
drm_atomic_get_new_crtc_for_encoder(), which defined in common Rockchip
DRM driver file 'drivers/gpu/drm/rockchip/rockchip_drm_drv.c'.

Change-Id: I011dc70b5e7e927a201c80cc8ecb15dbef446631
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-24 09:12:55 +00:00
Sandy Huang
d02a383e7c drm/rockchip: drv: remove unused commit_lock
struct mutex commit_lock is only used by kernel 4.19,
use ovl_lock now.

Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: Id7eb81fac31026956eeb9b8799b7d8281e4de4c2
2025-03-24 09:00:21 +00:00
Damon Ding
b0d79ebe70 drm/rockchip: logo: support to use the win scale to configure overscan parameters
For some platforms, such as RK3576, use the win scale instead
of the post scale to configure overscan parameters, because the
sharp/post scale/split functions are mutually exclusice.

Change-Id: If422749ed8defc553924f14f24ab173913b2dcad
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-21 18:39:35 +08:00
XiaoDong Huang
703b39bceb soc: rockchip: pm_debug: support to dump common registers
Change-Id: If1a731248fb332f6e22a9a9c8708cec53d52216f
Signed-off-by: XiaoDong Huang <derrick.huang@rock-chips.com>
2025-03-21 17:43:05 +08:00
Liang Chen
6e62a23828 arm64: dts: rockchip: rk3576s: enable usb30 port1
Change-Id: I72b325103b67414f24af2177374a217d4ac8f7df
Signed-off-by: Liang Chen <cl@rock-chips.com>
2025-03-21 08:41:34 +00:00
Sandy Huang
1c2dcc6d2b arm64: dts: rockchip: rk3576-vehicle-evb-v20-serdes-mfd-display-maxim: remove assigned VPLL clk rate
VPLL is initialized at uboot for dclk, If kernel assigned VPLL clk rate
and different with uboot set rate, this will lead to VPLL reinitialized
and lead to splash screen.

Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: I501bf982b6016841ea046325d692aee73618357b
2025-03-21 08:41:03 +00:00
Damon Ding
635a7a4081 drm/rockchip: vop2: fix the default one display policy for RK3588
If only one VP is enabled and the plane mask is not assigned in DTS, all
main windows will be assigned to the enabled VPx, and all splice windows
will be assigned to the VPx+1, in order to ensure that the splice mode
work well.

Fixes: a3d2c5d99a ("drm/rockchip: vop2: fix the default plane_make configurations for RK3588")
Change-Id: I37905fb2d2f186f0da503e0cd410a7f620e34bb1
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-20 11:38:34 +00:00
Damon Ding
e5ce22e75e drm/rockchip: vop2: add support for primary plane check
If the plane mask and primary plane both are assigned in DTS, the
primary plane should be included in the plane mask of VPx.

Change-Id: Ie282782aa6f71a177fd61b507893b256261d4dc3
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-20 11:38:34 +00:00
Damon Ding
c8de2ce6ad drm/rockchip: vop2: set default primary plane id to ROCKCHIP_VOP2_PHY_ID_INVALID
If the property 'rockchip,plane-mask' exists but the
property 'rockchip,primary-plane' is not set in DTS, the
default &vop2_video_port.primary_plane_phy_id should be
ROCKCHIP_VOP2_PHY_ID_INVALID to avoid unexpected logs.

For RK3576 as example, if the plane_mask is configured as
follows:

&vp0 {
	rockchip,plane-mask = <(1 << ROCKCHIP_VOP2_CLUSTER0 | 1 << ROCKCHIP_VOP2_ESMART0)>;
};

&vp1 {
	rockchip,plane-mask = <(1 << ROCKCHIP_VOP2_CLUSTER1 | 1 << ROCKCHIP_VOP2_ESMART1)>;
};

&vp2 {
	rockchip,plane-mask = <(1 << ROCKCHIP_VOP2_ESMART3 | 1 << ROCKCHIP_VOP2_ESMART2)>;
};

The unexpected logs may appear:
......
[    2.457617][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp0 assign plane mask: Cluster0 | Esmart0[0x5], primary plane phy id: Cluster0[0]
[    2.457652][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp1 assign plane mask: Cluster1 | Esmart1[0xa], primary plane phy id: Cluster0[0]
[    2.457666][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp2 assign plane mask: Esmart2 | Esmart3[0x300], primary plane phy id: Cluster0[0]
......

It is better to be like:
[    2.473158][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp0 assign plane mask: Cluster0 | Esmart0[0x5], primary plane phy id: INVALID[-1]
[    2.473189][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp1 assign plane mask: Cluster1 | Esmart1[0xa], primary plane phy id: INVALID[-1]
[    2.473204][   T80] rockchip-vop2 27d00000.vop: [drm:vop2_bind] vp2 assign plane mask: Esmart2 | Esmart3[0x300], primary plane phy id: INVALID[-1]

Change-Id: I28d221cce9baa6c1f73e6d73acdd030e92cc88bc
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-20 11:38:34 +00:00
Damon Ding
63eaeee18e drm/rockchip: vop2: add possible_crtcs check for cursor plane initialization
It makes sense to check whether the assigned cursor plane can be
attached to a specific VP, as there may be an invalid DTS assignment
for 'cursor-win-id'.

The logs may be like:
......
[    2.178737][   T81] rockchip-vop2 27d00000.vop: [drm:vop2_create_crtc] *ERROR* Assigned cursor plane: Esmart3 can not attach to VP0
[    2.178753][   T81] [drm] failed to init cursor plane for vp0
[    2.178823][   T81] rockchip-vop2 27d00000.vop: [drm:vop2_create_crtc] *ERROR* Assigned cursor plane: Esmart2 can not attach to VP1
[    2.178838][   T81] [drm] failed to init cursor plane for vp1
......

Change-Id: If18c4db1e8b295e72dae0c23bd0dd41203c4e3ac
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-20 11:38:34 +00:00
Damon Ding
708010d987 drm/rockchip: vop2: add support to assign plane_mask for RK3528/RK3562/RK3576
RK3528/RK3562/RK3576 use the VOP3 architecture, which supports
flexible switching of planes between different VP. User can switch
planes between different CRTCs based on the &drm_plane.possible_crtcs
in userspace, and the plane-mask does not need to be assigned by
default in DTS.

However, for some Linux systems, there may still be scenarios where
it is necessary to specify the primary and cursor planes specifically
used on a VP.

Therefore, the valid plane-mask assignment will change the
&drm_plane.possible_crtcs and establish a fixed binding relationship
between planes and CRTCs, which means that the flexible switching of
planes is not available in the case.

Change-Id: I156f71ceb238c5945a92f48c0024f398711ea811
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-20 11:38:34 +00:00
Ye Zhang
5043d1a786 soc: rockchip: pm_debug: Fix rk3506_table
Signed-off-by: Ye Zhang <ye.zhang@rock-chips.com>
Change-Id: I4afb7a9f051d400ce59a833dbddb4a363f8a9b66
2025-03-20 08:55:41 +00:00
Wesley Yao
70ddbe74d3 iio: dac: rockchip-flexbus-dac: Add resume
Add resume for rockchip-flexbus-dac.

Change-Id: Iee7095fb626f8a759d353958bcb74151482adaea
Signed-off-by: Wesley Yao <wesley.yao@rock-chips.com>
2025-03-20 03:41:19 +00:00
Wesley Yao
c9b483027e iio: adc: rockchip-flexbus-adc: Add resume
Add resume for rockchip-flexbus-adc.

Change-Id: Ieac70ecffa68bbb940f6a837cdbb3b7d5e4a4637
Signed-off-by: Wesley Yao <wesley.yao@rock-chips.com>
2025-03-20 03:41:19 +00:00
Wesley Yao
ba1c3b949b mfd: rockchip-flexbus: Add resume
Add resume for rockchip-flexbus.

Change-Id: I2a87064e4267839f2daccbcc2e28b9d5786bf6f4
Signed-off-by: Wesley Yao <wesley.yao@rock-chips.com>
2025-03-20 03:41:19 +00:00
Tao Huang
a26e159e16 usb: gadget: uvc: Add MODULE_IMPORT_NS(DMA_BUF)
Adds the proper MODULE_IMPORT_NS(DMA_BUF) line to the file to get it to
build properly.

Fixes: 5452a06eed ("usb: gadget: uvc: support zero copy with rockchip encoder")
Signed-off-by: Tao Huang <huangtao@rock-chips.com>
Change-Id: Iab7fe8977389cd7b3e624a231011ea07d7b6d936
2025-03-20 10:15:40 +08:00
Sandy Huang
2de761a61d drm/rockchip: drv: Constify struct drm_driver
Add const qualifier to rockchip_drm_driver for immutability and safety.

Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: I9d461c702432cf976a0c1413ae1c257faf405f10
2025-03-19 11:30:53 +00:00
Damon Ding
3f74be339b drm/bridge: analogix_dp: fix the disabling process of ASSR function
The DP_EDP_CONFIGURATION_SET should be configured instead of the
DP_LANE_COUNT_SET register to disable ASSR.

Fixes: 3ae279210e ("drm/bridge: analogix_dp: add support for ASSR mode")
Change-Id: I1dc36bd3dbfdeb09cde761c6905e22feba52558a
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-19 11:27:12 +00:00
Jon Lin
bf69e15bdc phy: rockchip: naneng-combphy: Set rk3562 gate_tx_pck_sel length select work for L1SS
Change-Id: I18a163b70d9387a9b8b9ca2cb24dc95780592761
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
2025-03-19 11:26:41 +00:00
Jon Lin
7ce9fd357d phy: rockchip: naneng-combphy: Set rk3528 gate_tx_pck_sel length select work for L1SS
Change-Id: Icfdd47d3cce5c112bd366f5b82327f67c863590d
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
2025-03-19 11:26:15 +00:00
Joseph Chen
1dfea63d6f ARM: dts: rockchip: rk3506g-demo-display-control: Update system suspend config
- Mode add: RKPM_PWM0_CH0_CORE_PWREN
- Update pwrctrl

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: I413a57ffab294f080ece58b273667ad7ca3dd0e1
2025-03-19 07:12:31 +00:00
Finley Xiao
b6535e57a2 arm64: dts: rockchip: rk3518: Change mbist vmin for cpu
Change-Id: Ib44cb574bbdcfd2cc4c8b9de24ea149a0bccc95e
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-18 03:23:56 +00:00
Jon Lin
cd6dd0098a drivers: rkflash: Fix the method to get GD5FXGM7xxG ecc status register
Change-Id: Ie8797e91b24bf3dae95b98ff7d04e5639019a04c
Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
2025-03-17 10:23:21 +00:00
Huang zhibao
6c4bafdb4b arm64: dts: rockchip: add rk3562 project demo Devicetree
Signed-off-by: Huang zhibao <hzb@rock-chips.com>
Change-Id: I7e0aa5e16cb3d678d0be43605c0c957f1914102d
2025-03-17 17:49:43 +08:00
Zefa Chen
032de5f2b3 media: i2c: add gc32e1 driver
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
Change-Id: I39717f9956da197099ebc78ecb1181784c5beb44
2025-03-17 11:02:57 +08:00
Zefa Chen
8e4a7e85a7 media: i2c: add gc16b3c driver
Change-Id: I2785bf29b36d377e159fb9431cdedbcf9d456ad9
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
2025-03-17 11:02:42 +08:00
Johnson Ding
4a3914c3a6 video: rockchip: mpp: check status after soft reset
If clock is directly turned off during doing soft resetting, NOC may
encountering error, and other IPs will issue some error.

Signed-off-by: Johnson Ding <johnson.ding@rock-chips.com>
Change-Id: I5df74c68faa042a231bc84df3de4d362830bc7c5
2025-03-17 02:18:26 +00:00
Zefa Chen
5bb7b93ed4 media: rockchip: vicap fixes error proc info of reg debug for rk3576
Change-Id: I6604f4218e9e4954e852f94d4334fb1d319b9b8f
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
2025-03-14 18:11:40 +08:00
Zefa Chen
d689024559 media: rockchip: vicap send sof toisp with toisp fs intr when chip is rk3588
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
Change-Id: I4eef08e7a9f8a94c23f28b8c75f8dea41965a064
2025-03-14 17:46:53 +08:00
Zefa Chen
1105490b4b media: rockchip: vicap remove chip limit of send sof to isp
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
Change-Id: I0deff3d59afe50e8459b5741e91b3bd40e66fa0c
2025-03-14 17:31:27 +08:00
XiaoDong Huang
67507eac79 firmware: rockchip_sip: support cpu_pm_config
Change-Id: I803f23acc98251743dd5f1e4906492c730320fd9
Signed-off-by: XiaoDong Huang <derrick.huang@rock-chips.com>
2025-03-14 08:55:16 +00:00
Algea Cao
2eeed1b87d drm/rockchip: dw_hdmi: Fix hdmi does not switch seamlessly when hdr colorspace isn't bt2020
Even if colorspace of hdr video is not bt2020, it can be
seamlessly switched to yuv422 10bit in scenarios where
sink supports yuv422.

Change-Id: Ieb2c9a3c17183349caa70d5a3ba07ccf1b14252a
Signed-off-by: Algea Cao <algea.cao@rock-chips.com>
2025-03-14 07:39:19 +00:00
Finley Xiao
b9e7be7146 arm64: dts: rockchip: rk3588: Add more hardware version for opp table
Change-Id: Ic2c87cd70427819577daedaddf77f50429204498
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-14 15:17:26 +08:00
Finley Xiao
23717a4748 soc: rockchip: opp_select: Add support to parse nvmem cell customer demand
Change-Id: I3b13c89517f9b115be4cbce983217c30c1dcb86b
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-14 15:17:20 +08:00
Finley Xiao
64857f0587 driver: rknpu: Add support to parse nvmem cell customer demand for rk3588
Change-Id: Id2b52a372c869f45f4de10d0ed00eee79a843964
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-14 15:17:14 +08:00
Finley Xiao
d0dba012f4 MALI: bifrost: Add support to parse nvmem cell customer demand for rk3588
Change-Id: I1b8a429d3917010e2907e97237f2d598a120844e
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-14 15:17:08 +08:00
Finley Xiao
c5b7468a67 cpufreq: rockchip: Add support to parse nvmem cell customer demand for rk3588
Change-Id: Iff6b13f612db95037c28123337701bfe61ba2348
Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
2025-03-14 15:17:02 +08:00
Shengfei Xu
0d9081da07 arm64: dts: rockchip: rk35xx-eink: Add system shutdown/suspend requece
Added power sequence control for shutdown, suspend and wakeup.
These configurations are hardware-dependent, any modifications should be
consulted with hardware engineers for recommendations.

Change-Id: Id3f72f27e952b4cc2573a45f1a3363b6923daf87
Signed-off-by: Shengfei Xu <xsf@rock-chips.com>
2025-03-14 14:21:27 +08:00
Mark Huang
c4db852059 arm64: dts: rockchip: rk3576-evb-input-keymap: update more stb ir keys
Signed-off-by: Mark Huang <huangjc@rock-chips.com>
Change-Id: Icd302e54eb4e63e0bbe9eab27cb5afd7307a5d6d
2025-03-14 01:10:32 +00:00
Liang Chen
21d8fc9546 drm/rockchip: modify priority of error_thread with sched_set_fifo_low()
(sched_priority = MAX_RT_PRIO - 1) is highest priority of the RT
thread, it may affect RT performance, so use sched_set_fifo_low()
will be better.

Change-Id: I1de7aa5fbc20bd40fbc68956863dfd8c76e7f363
Signed-off-by: Liang Chen <cl@rock-chips.com>
2025-03-13 18:30:16 +08:00
Zefa Chen
fb12fb01d8 media: i2c: imx386 modify setting for use same hb
Change-Id: If4713db316d5eeac9836dee916c43eb423d41443
Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
2025-03-13 07:53:13 +00:00
Zitong Cai
4e9d669102 mfd: display-serdes: Fix pinctrl node shutdown crash
Resolve the crash issue caused by closing serdes pinctrl configuration
in dts.

Change-Id: I0473785d128bf655df9117dc819c502267ffec1e
Signed-off-by: Zitong Cai <zitong.cai@rock-chips.com>
2025-03-13 02:33:06 +00:00
Sandy Huang
9e48a75254 drm/rockchip: vop2: use rkiommu 2.0 for vop axi0 by default
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: Ia09b174474eb87f14a7643abbc826356548e8cc4
2025-03-12 08:50:37 +00:00
Algea Cao
b84c5d0c81 drm/bridge: synopsys: dw-hdmi-qp: Only set extcon status when hdmi plug/unplug
If an extcon event is reported when hdmi is enabled/disabled
while playing hdr videos, Some player app will self-destruct
and restart after receiving the event. This leads to an endless
loop of switching hdmi enable and disable.

The extcon event is normally sent when hdmi plug. Previously,
the extcon event reporting was placed in hdmi enable/disable
to resolve issues related to audio transparent transmission.
The current code has hdmi_codec_plugged_cb has solved the audio
transmission problem, so extcon event is changed back to be
called only when hdmi plug/unplug

Change-Id: I613a0c99a0d33e133280cc6ba3d74760532c7f2f
Signed-off-by: Algea Cao <algea.cao@rock-chips.com>
2025-03-12 07:29:05 +00:00
Algea Cao
78b9e8a196 drm/rockchip: dw_hdmi: Fix crash when hdmi is disabled in kernel logo
crash log:
[   11.867212][   T80] Unable to handle kernel read from unreadable memory at virtual address 0000000000000090
[   11.868072][   T80] Mem abort info:
[   11.868390][   T80]   ESR = 0x0000000096000005
[   11.868795][   T80]   EC = 0x25: DABT (current EL), IL = 32 bits
[   11.869326][   T80]   SET = 0, FnV = 0
[   11.869667][   T80]   EA = 0, S1PTW = 0
[   11.870008][   T80]   FSC = 0x05: level 1 translation fault
[   11.870504][   T80] Data abort info:
[   11.870822][   T80]   ISV = 0, ISS = 0x00000005
[   11.871228][   T80]   CM = 0, WnR = 0
[   11.871558][   T80] [0000000000000090] user address but active_mm is swapper
[   11.872178][   T80] Internal error: Oops: 0000000096000005 [#1] PREEMPT SMP
[   11.872798][   T80] Modules linked in:
[   11.873142][   T80] CPU: 4 PID: 80 Comm: kworker/u16:2 Not tainted 6.1.118 #70
[   11.873787][   T80] Hardware name: Rockchip RK3576 EVB1 V10 Board (DT)
[   11.874362][   T80] Workqueue: events_unbound deferred_probe_work_func
[   11.874947][   T80] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[   11.875625][   T80] pc : rockchip_drm_crtc_output_pre_disable+0xc/0x44
[   11.876205][   T80] lr : dw_hdmi_rockchip_crtc_pre_disable+0x34/0x54
[   11.876772][   T80] sp : ffffffc00ab7b5f0
[   11.877134][   T80] x29: ffffffc00ab7b5f0 x28: ffffffc009633ea8 x27: ffffff80c6014240
[   11.877838][   T80] x26: 0000000000000038 x25: 0000000000000001 x24: 0000000000000028
[   11.878531][   T80] x23: 0000000000000000 x22: ffffff80c6014240 x21: ffffff80c1b157b8
[   11.879222][   T80] x20: ffffff80c2b7e840 x19: ffffff80c1b15040 x18: ffffffc00ab650f0
[   11.879915][   T80] x17: 0000000000000068 x16: 00000000000000c4 x15: ffffffc009502784
[   11.880607][   T80] x14: 0000000000003738 x13: ffffffc00ab7b272 x12: 0000000000000000
[   11.881300][   T80] x11: 0000000000000001 x10: 0000000000000001 x9 : ffffff80c2b7e868
[   11.882002][   T80] x8 : 0000000000000800 x7 : 3d45505954564544 x6 : 000000004e514553
[   11.882694][   T80] x5 : 0000000000000000 x4 : 0000000000000000 x3 : ffffffc00a32e3c0
[   11.883396][   T80] x2 : 0000000000000000 x1 : 0000000000000800 x0 : 0000000000000000
[   11.884088][   T80] Call trace:
[   11.884373][   T80]  rockchip_drm_crtc_output_pre_disable+0xc/0x44
[   11.884928][   T80]  dw_hdmi_rockchip_crtc_pre_disable+0x34/0x54
[   11.885461][   T80]  dw_hdmi_qp_bridge_atomic_disable+0xc8/0x1d4
[   11.885994][   T80]  drm_atomic_bridge_chain_disable+0x6c/0xb4
[   11.886518][   T80]  drm_atomic_helper_commit_modeset_disables+0x174/0x57c
[   11.887129][   T80]  rockchip_drm_atomic_helper_commit_tail_rpm+0x4c/0x304
[   11.887741][   T80]  commit_tail+0xa4/0x154
[   11.888117][   T80]  drm_atomic_helper_commit+0x1c4/0x1e4
[   11.888604][   T80]  drm_atomic_commit+0xa4/0xd0
[   11.889016][   T80]  rockchip_drm_show_logo+0x1a48/0x1d64
[   11.889505][   T80]  rockchip_drm_bind+0x1d8/0x298
[   11.889937][   T80]  try_to_bring_up_aggregate_device+0x168/0x1b4
[   11.890481][   T80]  __component_add+0xd0/0x17c
[   11.890891][   T80]  component_add+0x14/0x20
[   11.891279][   T80]  dw_mipi_dsi2_host_attach+0x158/0x1d4
[   11.891768][   T80]  mipi_dsi_attach+0x28/0x3c
[   11.892171][   T80]  panel_simple_dsi_probe+0x1a8/0x22c
[   11.892638][   T80]  mipi_dsi_drv_probe+0x20/0x2c
[   11.893059][   T80]  really_probe+0x174/0x350
[   11.893447][   T80]  __driver_probe_device+0xa0/0x128
[   11.893901][   T80]  driver_probe_device+0x44/0x210
[   11.894333][   T80]  __device_attach_driver+0x12c/0x154
[   11.894798][   T80]  bus_for_each_drv+0x84/0xd0
[   11.895211][   T80]  __device_attach+0xf0/0x170
[   11.895621][   T80]  device_initial_probe+0x14/0x20
[   11.896063][   T80]  bus_probe_device+0x34/0x98
[   11.896475][   T80]  deferred_probe_work_func+0x7c/0xd8
[   11.896940][   T80]  process_one_work+0x1a8/0x3b8
[   11.897365][   T80]  worker_thread+0x300/0x430
[   11.897766][   T80]  kthread+0xec/0x1b8
[   11.898110][   T80]  ret_from_fork+0x10/0x20

Change-Id: Ie336d9b7a06970284589f79a955173a44ab41636
Signed-off-by: Algea Cao <algea.cao@rock-chips.com>
2025-03-12 07:28:44 +00:00
Damon Ding
2585fced1c arm64: dts: rockchip: rk3562-evb: remove invalid property 'reset-value' for rgb display board
Change-Id: Icdbfa017a8359af181c1b75a603e42f9b3df887a
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-12 07:25:12 +00:00
Damon Ding
e7e7e1b0ef arm64: dts: rockchip: rk3308-evb: remove invalid property 'reset-value' for panel nodes
Change-Id: I76178c9f34da131cf3e84f6b6a34d4bf28b2d947
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-12 07:24:51 +00:00
Damon Ding
52059734da arm64: dts: rockchip: remove invalid property 'reset-value' for panel Q7050ITH2641AA1T related DTS
Change-Id: Iaf8063323716c29074f3aee290ea4cc69764828f
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-12 14:55:50 +08:00
Damon Ding
5f1fee0288 ARM: dts: rockchip: remove invalid property 'reset-value' for panel Q7050ITH2641AA1T related DTS
Change-Id: I3fd27c8a9f1fda563e526e8503e231a92997bd66
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
2025-03-12 14:55:50 +08:00