<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git/drivers/mtd/devices, branch v3.15.2</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=v3.15.2</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=v3.15.2'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2014-04-18T23:40:08+00:00</updated>
<entry>
<title>Shiraz has moved</title>
<updated>2014-04-18T23:40:08+00:00</updated>
<author>
<name>Viresh Kumar</name>
<email>viresh.kumar@linaro.org</email>
</author>
<published>2014-04-18T22:07:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=9cc236827fde5e254fd995a0023c05c5ee3a3ba6'/>
<id>urn:sha1:9cc236827fde5e254fd995a0023c05c5ee3a3ba6</id>
<content type='text'>
shiraz.hashim@st.com email-id doesn't exist anymore as he has left the
company.  Replace ST's id with shiraz.linux.kernel@gmail.com.

It also updates .mailmap file to fix address for 'git shortlog'.

Signed-off-by: Viresh Kumar &lt;viresh.kumar@linaro.org&gt;
Cc: Shiraz Hashim &lt;shiraz.linux.kernel@gmail.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
<entry>
<title>mtd: devices: elm: update DRIVER_NAME as "omap-elm"</title>
<updated>2014-03-26T06:09:06+00:00</updated>
<author>
<name>Pekon Gupta</name>
<email>pekon@ti.com</email>
</author>
<published>2014-03-20T13:18:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=c7ea95a377921efd0f0fa3e64852f5cc3d7ffc47'/>
<id>urn:sha1:c7ea95a377921efd0f0fa3e64852f5cc3d7ffc47</id>
<content type='text'>
use "omap-elm" as DRIVER_NAME

Signed-off-by: Pekon Gupta &lt;pekon@ti.com&gt;
Reviewed-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: devices: elm: configure parallel channels based on ecc_steps</title>
<updated>2014-03-26T06:09:02+00:00</updated>
<author>
<name>Pekon Gupta</name>
<email>pekon@ti.com</email>
</author>
<published>2014-03-20T13:18:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=79f013518d435e238e6bddd0073de631bbefb556'/>
<id>urn:sha1:79f013518d435e238e6bddd0073de631bbefb556</id>
<content type='text'>
ELM hardware can process up to maximum of 8 hannels in parallel for
ECC error detection. Currently the number of channels getting configured for
processing is static determined by macro ERROR_VECTOR_MAX. However, the actual
number of channels that need to be processed is the ECC step number.
This patch just avoids configuring extra unused channels.

Signed-off-by: Pekon Gupta &lt;pekon@ti.com&gt;
Reviewed-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: devices: elm: clean elm_load_syndrome</title>
<updated>2014-03-26T06:08:57+00:00</updated>
<author>
<name>Pekon Gupta</name>
<email>pekon@ti.com</email>
</author>
<published>2014-03-20T13:18:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=ea0760244d235688b5fae4e5cdd9412c1fb1c2fe'/>
<id>urn:sha1:ea0760244d235688b5fae4e5cdd9412c1fb1c2fe</id>
<content type='text'>
This patch refactors elm_load_syndrome() to make it scalable for newer
ECC schemes by removing scheme specific macros (like ECC_BYTES*xx),
and instead using ECC control information passed during elm_config.

Signed-off-by: Pekon Gupta &lt;pekon@ti.com&gt;
Reviewed-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: devices: elm: check for hardware engine's design constraints</title>
<updated>2014-03-26T06:08:52+00:00</updated>
<author>
<name>Pekon Gupta</name>
<email>pekon@ti.com</email>
</author>
<published>2014-03-20T13:18:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=3f4eb14bdbe148fcc3a8e02f506ccc9b8c955ad4'/>
<id>urn:sha1:3f4eb14bdbe148fcc3a8e02f506ccc9b8c955ad4</id>
<content type='text'>
ELM hardware engine is used by BCH ecc-schemes for detecting and locating ECC
errors. This patch adds the following checks for ELM hardware engine:

 - ELM internal buffers are of 1K,
   so it cannot process data with ecc-step-size &gt; 1K.

 - ELM engine can execute upto maximum of 8 threads in parallel,
   so in *page-mode* (when complete page is processed in single iteration),
   ELM cannot support ecc-steps &gt; 8.

Signed-off-by: Pekon Gupta &lt;pekon@ti.com&gt;
Reviewed-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: st_spi_fsm: Succinctly reorganise .remove()</title>
<updated>2014-03-20T11:56:53+00:00</updated>
<author>
<name>Lee Jones</name>
<email>lee.jones@linaro.org</email>
</author>
<published>2014-03-20T11:11:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=d9ba46d32c0edc5207fec424230dfa786a24a117'/>
<id>urn:sha1:d9ba46d32c0edc5207fec424230dfa786a24a117</id>
<content type='text'>
Reported-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: st_spi_fsm: Allow loop to run at least once before giving up CPU</title>
<updated>2014-03-20T11:56:52+00:00</updated>
<author>
<name>Lee Jones</name>
<email>lee.jones@linaro.org</email>
</author>
<published>2014-03-20T11:11:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=ea7864bf44e1638c34b9eef95477a72ae68fbdc6'/>
<id>urn:sha1:ea7864bf44e1638c34b9eef95477a72ae68fbdc6</id>
<content type='text'>
Reported-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: st_spi_fsm: Correct vendor name spelling issue - missing "M"</title>
<updated>2014-03-20T11:56:52+00:00</updated>
<author>
<name>Lee Jones</name>
<email>lee.jones@linaro.org</email>
</author>
<published>2014-03-20T11:11:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=f1919cb852c8f9e7fa667a446f253258a8a599f2'/>
<id>urn:sha1:f1919cb852c8f9e7fa667a446f253258a8a599f2</id>
<content type='text'>
Reported-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: st_spi_fsm: Avoid duplicating MTD core code</title>
<updated>2014-03-20T11:56:51+00:00</updated>
<author>
<name>Lee Jones</name>
<email>lee.jones@linaro.org</email>
</author>
<published>2014-03-20T11:11:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=0419a203f865603654953f407cf062309330f37e'/>
<id>urn:sha1:0419a203f865603654953f407cf062309330f37e</id>
<content type='text'>
Reported-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>mtd: st_spi_fsm: Remove useless consts from function arguments</title>
<updated>2014-03-20T11:56:51+00:00</updated>
<author>
<name>Lee Jones</name>
<email>lee.jones@linaro.org</email>
</author>
<published>2014-03-20T11:11:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=3f9d720a4d29834b8362d820537acb042c17e33c'/>
<id>urn:sha1:3f9d720a4d29834b8362d820537acb042c17e33c</id>
<content type='text'>
Reported-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;
[Brian: tweaked a bit]
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
</feed>
