<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/drivers/gpu/drm/sti/sti_awg_utils.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-12-06T14:51:23Z</updated>
<entry>
<title>gpu: drm: sti: Adopt SPDX identifiers</title>
<updated>2017-12-06T14:51:23Z</updated>
<author>
<name>Benjamin Gaignard</name>
<email>benjamin.gaignard@linaro.org</email>
</author>
<published>2017-12-06T11:29:47Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=e28425702715dea9593a7d929f0bc64400c70368'/>
<id>urn:sha1:e28425702715dea9593a7d929f0bc64400c70368</id>
<content type='text'>
Add SPDX identifiers to files under sti directory

Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@st.com&gt;
Acked-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;
Link: https://patchwork.freedesktop.org/patch/msgid/20171206112947.9569-2-benjamin.gaignard@st.com
</content>
</entry>
<entry>
<title>drm/sti: adjust delay for AWG</title>
<updated>2016-06-27T08:18:25Z</updated>
<author>
<name>Bich Hemon</name>
<email>bich.hemon@st.com</email>
</author>
<published>2016-03-15T16:11:14Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=4d7037708a357f5dbe9a51cc1aacf4dcb65b7192'/>
<id>urn:sha1:4d7037708a357f5dbe9a51cc1aacf4dcb65b7192</id>
<content type='text'>
Compensate delay introduced by AWG IP during DE generation

Signed-off-by: Bich Hemon &lt;bich.hemon@st.com&gt;
Reviewed-by: Vincent ABRIOU &lt;vincent.abriou@st.com&gt;
</content>
</entry>
<entry>
<title>drm/sti: fix dvo data_enable signal</title>
<updated>2016-02-26T09:06:18Z</updated>
<author>
<name>Bich Hemon</name>
<email>bich.hemon@st.com</email>
</author>
<published>2016-02-10T09:56:47Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=b6bb679b5f807c5df002b2b9ef8fb651e23d932a'/>
<id>urn:sha1:b6bb679b5f807c5df002b2b9ef8fb651e23d932a</id>
<content type='text'>
Modify AWG algorithm in order to handle more than 1023 lines

Signed-off-by: Bich Hemon &lt;bich.hemon@st.com&gt;
Reviewed-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;
Reviewed-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;
</content>
</entry>
<entry>
<title>drm/sti: awg_utils code cleanup</title>
<updated>2016-02-26T09:03:57Z</updated>
<author>
<name>Bich Hemon</name>
<email>bich.hemon@st.com</email>
</author>
<published>2016-01-12T08:28:43Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=bfbaf631bda0181e6ca47d9c049966daf6206c55'/>
<id>urn:sha1:bfbaf631bda0181e6ca47d9c049966daf6206c55</id>
<content type='text'>
data_en is a local variable that doesn't need to be set as
awg_generate_instr can be called directly with the requested value.

Signed-off-by: Bich Hemon &lt;bich.hemon@st.com&gt;
Reviewed-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;
Reviewed-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;
</content>
</entry>
<entry>
<title>drm/sti: remove redundant sign extensions</title>
<updated>2015-11-03T12:04:55Z</updated>
<author>
<name>Rasmus Villemoes</name>
<email>linux@rasmusvillemoes.dk</email>
</author>
<published>2015-10-16T13:14:55Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=cebd6fbeb2fc9e7c4f10f3656fe9f1ba863a8549'/>
<id>urn:sha1:cebd6fbeb2fc9e7c4f10f3656fe9f1ba863a8549</id>
<content type='text'>
arg is long int, so arg = (arg &lt;&lt; 22) &gt;&gt; 22 makes the upper 22 bits of
arg equal to bit 9 (or bit 41). But we then mask away all but bits 0-9, so
this is entirely redundant.

Signed-off-by: Rasmus Villemoes &lt;linux@rasmusvillemoes.dk&gt;
Reviewed-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;
</content>
</entry>
<entry>
<title>drm: sti: fix static checker warning in sti_awg_utils</title>
<updated>2015-02-04T16:52:28Z</updated>
<author>
<name>Vincent Abriou</name>
<email>vincent.abriou@st.com</email>
</author>
<published>2015-02-04T15:54:13Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=17ba9810ec4c8f95bfde516653e81d435809eb6b'/>
<id>urn:sha1:17ba9810ec4c8f95bfde516653e81d435809eb6b</id>
<content type='text'>
The shift and the mask done on arg value is useless
since arg is null.

Signed-off-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;
</content>
</entry>
<entry>
<title>drm: sti: add DVO output connector</title>
<updated>2014-12-30T14:08:16Z</updated>
<author>
<name>Benjamin Gaignard</name>
<email>benjamin.gaignard@linaro.org</email>
</author>
<published>2014-12-30T14:08:16Z</published>
<link rel='alternate' type='text/html' href='https://universe.0xinfinity.dev/distro/kernel/commit/?id=f32c4c506f9b197f24d4be4ee7283bd549e3a30f'/>
<id>urn:sha1:f32c4c506f9b197f24d4be4ee7283bd549e3a30f</id>
<content type='text'>
Digital Video Out connector driver LCD panels.
Like HDMI and HDA it create bridge, encoder and connector
drm object.
Add binding description.

Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;
</content>
</entry>
</feed>
