<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-toradex.git/include, branch 2.6.35-mx51-201011290953</title>
<subtitle>Linux kernel for Apalis and Colibri modules</subtitle>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/'/>
<entry>
<title>ENGR00133954-2 ipuv3: remove FB_SYNC_EXT flag</title>
<updated>2010-12-14T15:44:34+00:00</updated>
<author>
<name>Jason Chen</name>
<email>b02280@freescale.com</email>
</author>
<published>2010-11-24T02:59:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=f02a3325ef0eea1f82855232e1c2d16bdef7dbb2'/>
<id>f02a3325ef0eea1f82855232e1c2d16bdef7dbb2</id>
<content type='text'>
FB_SYNC_EXT was used to represent ext clk, but actually, it represent ext sync.
Some applications do not recognize it, during fb_set_var ioctl may miss it,
which will cause fb display fail, for example X window startup.
Remove FB_SYNC_EXT flag, and choose ext clk support by ipu driver.
If you want to use ipu internal clk only, you can add int_clk to your video
option like below:
video=mxcdi0fb:RGB565,800x480M@55,int_clk

Signed-off-by: Jason Chen &lt;b02280@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
FB_SYNC_EXT was used to represent ext clk, but actually, it represent ext sync.
Some applications do not recognize it, during fb_set_var ioctl may miss it,
which will cause fb display fail, for example X window startup.
Remove FB_SYNC_EXT flag, and choose ext clk support by ipu driver.
If you want to use ipu internal clk only, you can add int_clk to your video
option like below:
video=mxcdi0fb:RGB565,800x480M@55,int_clk

Signed-off-by: Jason Chen &lt;b02280@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00122167-1 ipuv3: adding VGA support.</title>
<updated>2010-12-13T21:10:48+00:00</updated>
<author>
<name>Jason Chen</name>
<email>b02280@freescale.com</email>
</author>
<published>2010-11-17T09:29:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=3b127e619889fb1c97f50d2da116270b64cdcce4'/>
<id>3b127e619889fb1c97f50d2da116270b64cdcce4</id>
<content type='text'>
Add VGA support for ipu basic driver and fb driver.

Signed-off-by: Jason Chen &lt;b02280@freescale.com&gt;
(cherry picked from commit 214d8593acc37e2d5ed32e75a6518a8e306a1246)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add VGA support for ipu basic driver and fb driver.

Signed-off-by: Jason Chen &lt;b02280@freescale.com&gt;
(cherry picked from commit 214d8593acc37e2d5ed32e75a6518a8e306a1246)
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00133318-1 IPUv3 CSI:Support SMFC channel interlaced scan order</title>
<updated>2010-12-13T21:10:47+00:00</updated>
<author>
<name>Liu Ying</name>
<email>b17645@freescale.com</email>
</author>
<published>2010-11-10T10:10:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=5f58c42178d8e6bce405a00629bb8bb747ce001c'/>
<id>5f58c42178d8e6bce405a00629bb8bb747ce001c</id>
<content type='text'>
This patch supports interlaced scan order for CSI-&gt;SMFCx-&gt;MEM
channels.

Signed-off-by: Liu Ying &lt;b17645@freescale.com&gt;
(cherry picked from commit c3b90654b76654911a2e132dd387ef9a9422e114)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch supports interlaced scan order for CSI-&gt;SMFCx-&gt;MEM
channels.

Signed-off-by: Liu Ying &lt;b17645@freescale.com&gt;
(cherry picked from commit c3b90654b76654911a2e132dd387ef9a9422e114)
</pre>
</div>
</content>
</entry>
<entry>
<title>mtd: add init_size hook for NAND driver</title>
<updated>2010-12-13T21:10:46+00:00</updated>
<author>
<name>Huang Shijie</name>
<email>shijie8@gmail.com</email>
</author>
<published>2010-09-27T02:43:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=cf0bcff68db63514e7a43280f548e4d469e35581'/>
<id>cf0bcff68db63514e7a43280f548e4d469e35581</id>
<content type='text'>
Not all the NAND devices have all the information in additional
id bytes.

So add a hook in the nand_chip{} is a good method to calculate the
right value of oobsize, erasesize and so on.

Without the hook,you will get the wrong value, and you have to hack
in the -&gt;scan_bbt() to change the wrong value which make the code
mess.

Signed-off-by: Huang Shijie &lt;shijie8@gmail.com&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Not all the NAND devices have all the information in additional
id bytes.

So add a hook in the nand_chip{} is a good method to calculate the
right value of oobsize, erasesize and so on.

Without the hook,you will get the wrong value, and you have to hack
in the -&gt;scan_bbt() to change the wrong value which make the code
mess.

Signed-off-by: Huang Shijie &lt;shijie8@gmail.com&gt;
Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00132537-1 - EPDC fb/PxP: Support conversion from grayscale to monochrome</title>
<updated>2010-12-13T21:10:43+00:00</updated>
<author>
<name>Danny Nold</name>
<email>dannynold@freescale.com</email>
</author>
<published>2010-10-21T15:03:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=df549610a116421c81e4fb074709461249d3457d'/>
<id>df549610a116421c81e4fb074709461249d3457d</id>
<content type='text'>
- User can specify a flag (EPDC_FLAG_FORCE_MONOCHROME) to have 8-bit grayscale
converted to monochrome (black or white) via processing in the PxP
(using the LUT).
- Added logic to check against the full videomode when identifying the
desired FB mode.  This allows support for multiple modes with the same
dimensions.

Signed-off-by: Danny Nold &lt;dannynold@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- User can specify a flag (EPDC_FLAG_FORCE_MONOCHROME) to have 8-bit grayscale
converted to monochrome (black or white) via processing in the PxP
(using the LUT).
- Added logic to check against the full videomode when identifying the
desired FB mode.  This allows support for multiple modes with the same
dimensions.

Signed-off-by: Danny Nold &lt;dannynold@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00133478-2 IMX USB:move clk_enable from irq context to thread context</title>
<updated>2010-12-13T21:10:43+00:00</updated>
<author>
<name>Hu hui</name>
<email>b29976@freescale.com</email>
</author>
<published>2010-11-08T02:31:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=0c4f4b7fa33cf97d772f922f31c01c2781d5662f'/>
<id>0c4f4b7fa33cf97d772f922f31c01c2781d5662f</id>
<content type='text'>
Driver Part
move the usb clk_enable from irq context to a kernel thread context, so
that the voltage can be changed in clk_enable function.

Signed-off-by: Hu Hui &lt;b29976@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Driver Part
move the usb clk_enable from irq context to a kernel thread context, so
that the voltage can be changed in clk_enable function.

Signed-off-by: Hu Hui &lt;b29976@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00133178-8 NAND : add ONFI NAND commands</title>
<updated>2010-12-13T21:10:42+00:00</updated>
<author>
<name>Huang Shijie</name>
<email>b32955@freescale.com</email>
</author>
<published>2010-11-02T04:43:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=3bad0f8f22c551590d5c9e1c6aced46126def493'/>
<id>3bad0f8f22c551590d5c9e1c6aced46126def493</id>
<content type='text'>
add the new ONFI NAND commands to the common header file.

Signed-off-by: Huang Shijie &lt;b32955@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add the new ONFI NAND commands to the common header file.

Signed-off-by: Huang Shijie &lt;b32955@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00132935-1 fsl dev:Add pwm enable/disable pad functions</title>
<updated>2010-12-13T21:10:36+00:00</updated>
<author>
<name>Liu Ying</name>
<email>b17645@freescale.com</email>
</author>
<published>2010-10-25T09:30:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=7e9b08b49d35b776175c6dc3656b6c8591a7a77b'/>
<id>7e9b08b49d35b776175c6dc3656b6c8591a7a77b</id>
<content type='text'>
This patch adds pwm enable/disable pad functions declaration
to pwm platform data in fsl_device.h.

Signed-off-by: Liu Ying &lt;b17645@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds pwm enable/disable pad functions declaration
to pwm platform data in fsl_device.h.

Signed-off-by: Liu Ying &lt;b17645@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00132875-1: Fix EIM IOMUX settings that break keypad</title>
<updated>2010-12-13T21:10:35+00:00</updated>
<author>
<name>Ranjani Vaidyanathan</name>
<email>ra5478@freescale.com</email>
</author>
<published>2010-10-22T12:51:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=544291991515d0e29bc9a30b7b52ed4a558fa90e'/>
<id>544291991515d0e29bc9a30b7b52ed4a558fa90e</id>
<content type='text'>
Create a platform specific power management data structure that will
facilitate platform specific functions to be called during suspend/resume.

Signed-off-by: Ranjani Vaidyanathan &lt;ra5478@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create a platform specific power management data structure that will
facilitate platform specific functions to be called during suspend/resume.

Signed-off-by: Ranjani Vaidyanathan &lt;ra5478@freescale.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ENGR00124788-1 Add Linear PMIC support</title>
<updated>2010-12-13T21:10:30+00:00</updated>
<author>
<name>Nancy Chen</name>
<email>Nancy.Chen@freescale.com</email>
</author>
<published>2010-10-11T21:03:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=50c7936543a9d2b8798ebbc4aa292338a55c5261'/>
<id>50c7936543a9d2b8798ebbc4aa292338a55c5261</id>
<content type='text'>
Add Linear PMIC support.

Signed-off-by: Nancy Chen &lt;Nancy.Chen@freescale.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add Linear PMIC support.

Signed-off-by: Nancy Chen &lt;Nancy.Chen@freescale.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
