<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/drivers/gpu/drm/rockchip/cdn-dp-reg.c, branch linux-4.17.y</title>
<subtitle>Hosts the 0x221E linux distro kernel.</subtitle>
<id>https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-4.17.y</id>
<link rel='self' href='https://universe.0xinfinity.dev/distro/kernel/atom?h=linux-4.17.y'/>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/'/>
<updated>2017-09-18T01:50:44Z</updated>
<entry>
<title>drm/rockchip: Replace dev_* with DRM_DEV_*</title>
<updated>2017-09-18T01:50:44Z</updated>
<author>
<name>Haneen Mohammed</name>
<email>hamohammed.sa@gmail.com</email>
</author>
<published>2017-09-15T08:36:03Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=d8dd68045c5879c40342050a476710e31c7cdfa7'/>
<id>urn:sha1:d8dd68045c5879c40342050a476710e31c7cdfa7</id>
<content type='text'>
This patch replace instances of dev_info/err/debug with
DRM_DEV_INFO/ERROR/WARN respectively inorder to use a drm-formatted
specific log messages. Issue corrected with the help of the following
Coccinelle script:

@r@
@@

(
-dev_info
+DRM_DEV_INFO
|
-dev_err
+DRM_DEV_ERROR
|
-dev_dbg
+DRM_DEV_DEBUG
)

Signed-off-by: Haneen Mohammed &lt;hamohammed.sa@gmail.com&gt;
Signed-off-by: Mark Yao &lt;mark.yao@rock-chips.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20170915083603.GA18992@Haneen
</content>
</entry>
<entry>
<title>drm/rockchip: cdn-dp: add more log for video config</title>
<updated>2017-03-13T19:59:35Z</updated>
<author>
<name>Chris Zhong</name>
<email>zyw@rock-chips.com</email>
</author>
<published>2017-03-08T02:27:57Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=9346ab7d72c0e0526bd9cea70fa4ad768fe27c20'/>
<id>urn:sha1:9346ab7d72c0e0526bd9cea70fa4ad768fe27c20</id>
<content type='text'>
In order to analyze some video config failed, add some useful
printouts.

Signed-off-by: Chris Zhong &lt;zyw@rock-chips.com&gt;
Signed-off-by: Sean Paul &lt;seanpaul@chromium.org&gt;
Link: http://patchwork.freedesktop.org/patch/msgid/1488940077-22297-4-git-send-email-zyw@rock-chips.com
</content>
</entry>
<entry>
<title>drm/rockchip: cdn-dp: return error code when clk_get_rate failed</title>
<updated>2017-03-13T19:59:10Z</updated>
<author>
<name>Chris Zhong</name>
<email>zyw@rock-chips.com</email>
</author>
<published>2017-03-08T02:27:55Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=a68b5bb6708e73d58b30680421df8166898e5cfc'/>
<id>urn:sha1:a68b5bb6708e73d58b30680421df8166898e5cfc</id>
<content type='text'>
The clk_get_rate return 0 if something goes wrong, so it can never be
less then zero, the ret should be set a error code, otherwise the
cdn_dp_clk_enable will return 0 when it failed at clk_get_rate.
In addition, clk_get_rate() returns an "unsigned long", so use
"unsigned long" instead of "u32" is better.

Signed-off-by: Chris Zhong &lt;zyw@rock-chips.com&gt;
Signed-off-by: Sean Paul &lt;seanpaul@chromium.org&gt;
Link: http://patchwork.freedesktop.org/patch/msgid/1488940077-22297-2-git-send-email-zyw@rock-chips.com
</content>
</entry>
<entry>
<title>drm/rockchip: cdn-dp: fix cdn-dp complie warning</title>
<updated>2017-02-07T03:06:01Z</updated>
<author>
<name>Mark Yao</name>
<email>mark.yao@rock-chips.com</email>
</author>
<published>2017-02-05T09:10:57Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=213c4b96639818a2dc8750d1b7a37672a9c9eaeb'/>
<id>urn:sha1:213c4b96639818a2dc8750d1b7a37672a9c9eaeb</id>
<content type='text'>
fix warning:

drivers/gpu/drm/rockchip/cdn-dp-reg.c:632:24: warning:
  'val[1]' may be used uninitialized in this function [-Wmaybe-uninitialized]
  msa_misc = 2 * val[0] + 32 * val[1] +

Signed-off-by: Mark Yao &lt;mark.yao@rock-chips.com&gt;
</content>
</entry>
<entry>
<title>drm/rockchip: cdn-dp: add cdn DP support for rk3399</title>
<updated>2017-02-05T08:29:29Z</updated>
<author>
<name>Chris Zhong</name>
<email>zyw@rock-chips.com</email>
</author>
<published>2017-02-05T07:54:56Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=1a0f7ed3abe29cff8e652c69a8ad89aec2c40f00'/>
<id>urn:sha1:1a0f7ed3abe29cff8e652c69a8ad89aec2c40f00</id>
<content type='text'>
Add support for cdn DP controller which is embedded in the rk3399
SoCs. The DP is compliant with DisplayPort Specification,
Version 1.3, This IP is compatible with the rockchip type-c PHY IP.
There is a uCPU in DP controller, it need a firmware to work,
please put the firmware file to /lib/firmware/rockchip/dptx.bin. The
uCPU in charge of aux communication and link training, the host use
mailbox to communicate with the ucpu.
The dclk pin_pol of vop must not be invert for DP.

Signed-off-by: Chris Zhong &lt;zyw@rock-chips.com&gt;
[seanpaul fixed up some races between the worker and modeset]
[seanpaul squashed ~15 commits from chromium.org gerrit]
Signed-off-by: Sean Paul &lt;seanpaul@chromium.org&gt;
[groeck fixed compilation errors when building as module]
Signed-off-by: Guenter Roeck &lt;groeck@chromium.org&gt;
</content>
</entry>
</feed>
