<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lwn.git/arch/arm/mach-omap2/omap3-iommu.c, branch v3.10.3</title>
<subtitle>Linux kernel documentation tree maintained by Jonathan Corbet</subtitle>
<id>http://mirrors.hust.edu.cn/git/lwn.git/atom?h=v3.10.3</id>
<link rel='self' href='http://mirrors.hust.edu.cn/git/lwn.git/atom?h=v3.10.3'/>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/'/>
<updated>2010-05-14T07:23:19+00:00</updated>
<entry>
<title>omap iommu: renamed omap3-iommu to omap-iommu</title>
<updated>2010-05-14T07:23:19+00:00</updated>
<author>
<name>Kanigeri, Hari</name>
<email>h-kanigeri2@ti.com</email>
</author>
<published>2010-04-22T23:26:08+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=44da397fadf19928838aaa58317a5827dd6c1ec6'/>
<id>urn:sha1:44da397fadf19928838aaa58317a5827dd6c1ec6</id>
<content type='text'>
This patch includes changes to omap3-iommu.c file to make it generic
for all OMAPs. Renamed omap3-iommu.c to omap-iommu.c

[Hiroshi DOYU: Remove unnecessary "iommu-y" in Makefile]

Signed-off-by: Hari Kanigeri &lt;h-kanigeri2@ti.com&gt;
Signed-off-by: Hiroshi DOYU &lt;Hiroshi.DOYU@nokia.com&gt;
</content>
</entry>
<entry>
<title>omap: iommu: reorganize</title>
<updated>2009-11-22T18:24:32+00:00</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2009-11-22T18:11:04+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=a76e9a90e8dc0c8ca641a077780c6e05270d25ff'/>
<id>urn:sha1:a76e9a90e8dc0c8ca641a077780c6e05270d25ff</id>
<content type='text'>
This way it's more object oriented and easier to see what is happening.
No functional changes.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
Signed-off-by: Tony Lindgren &lt;tony@atomide.com&gt;
</content>
</entry>
<entry>
<title>omap: headers: Move remaining headers from include/mach to include/plat</title>
<updated>2009-10-20T16:40:47+00:00</updated>
<author>
<name>Tony Lindgren</name>
<email>tony@atomide.com</email>
</author>
<published>2009-10-20T16:40:47+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=ce491cf85466c3377228c5a852ea627ec5136956'/>
<id>urn:sha1:ce491cf85466c3377228c5a852ea627ec5136956</id>
<content type='text'>
Move the remaining headers under plat-omap/include/mach
to plat-omap/include/plat. Also search and replace the
files using these headers to include using the right path.

This was done with:

#!/bin/bash
mach_dir_old="arch/arm/plat-omap/include/mach"
plat_dir_new="arch/arm/plat-omap/include/plat"
headers=$(cd $mach_dir_old &amp;&amp; ls *.h)
omap_dirs="arch/arm/*omap*/ \
drivers/video/omap \
sound/soc/omap"
other_files="drivers/leds/leds-ams-delta.c \
drivers/mfd/menelaus.c \
drivers/mfd/twl4030-core.c \
drivers/mtd/nand/ams-delta.c"

for header in $headers; do
	old="#include &lt;mach\/$header"
	new="#include &lt;plat\/$header"
	for dir in $omap_dirs; do
		find $dir -type f -name \*.[chS] | \
			xargs sed -i "s/$old/$new/"
	done
	find drivers/ -type f -name \*omap*.[chS] | \
		xargs sed -i "s/$old/$new/"
	for file in $other_files; do
		sed -i "s/$old/$new/" $file
	done
done

for header in $(ls $mach_dir_old/*.h); do
	git mv $header $plat_dir_new/
done

Signed-off-by: Tony Lindgren &lt;tony@atomide.com&gt;
</content>
</entry>
<entry>
<title>omap iommu: add MPU_BRIDGE_IOMMU for tidspbridge migration</title>
<updated>2009-05-22T07:17:02+00:00</updated>
<author>
<name>Hiroshi DOYU</name>
<email>Hiroshi.DOYU@nokia.com</email>
</author>
<published>2009-05-19T06:07:55+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=5c651ffaee6f07aa1f5e6d0763845a2ee606b6bd'/>
<id>urn:sha1:5c651ffaee6f07aa1f5e6d0763845a2ee606b6bd</id>
<content type='text'>
Currently "tidspbridge" driver uses its own mmu implementation and
will migrate to use this "omap iommu" eventually. This config is
provided to make this migration happen smoothly.

Signed-off-by: Hiroshi DOYU &lt;Hiroshi.DOYU@nokia.com&gt;
</content>
</entry>
<entry>
<title>omap iommu: omap3 iommu device registration</title>
<updated>2009-05-19T05:23:37+00:00</updated>
<author>
<name>Hiroshi DOYU</name>
<email>Hiroshi.DOYU@nokia.com</email>
</author>
<published>2009-01-28T19:32:04+00:00</published>
<link rel='alternate' type='text/html' href='http://mirrors.hust.edu.cn/git/lwn.git/commit/?id=066aa9c1e3d0af52619fe26f05810990ff381d8c'/>
<id>urn:sha1:066aa9c1e3d0af52619fe26f05810990ff381d8c</id>
<content type='text'>
Signed-off-by: Hiroshi DOYU &lt;Hiroshi.DOYU@nokia.com&gt;
</content>
</entry>
</feed>
