<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/arch, branch v2013.04-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/arch?h=v2013.04-rc2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/arch?h=v2013.04-rc2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2013-04-01T20:33:52Z</updated>
<entry>
<title>Consolidate bool type</title>
<updated>2013-04-01T20:33:52Z</updated>
<author>
<name>York Sun</name>
<email>yorksun@freescale.com</email>
</author>
<published>2013-04-01T18:29:11Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=472d546054dadacca91530bad42ad06f6408124e'/>
<id>urn:sha1:472d546054dadacca91530bad42ad06f6408124e</id>
<content type='text'>
'bool' is defined in random places. This patch consolidates them into a
single header file include/linux/types.h, using stdbool.h introduced in C99.

All other #define, typedef and enum are removed. They are all consistent with
true = 1, false = 0.

Replace FALSE, False with false. Replace TRUE, True with true.
Skip *.py, *.php, lib/* files.

Signed-off-by: York Sun &lt;yorksun@freescale.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'for-v2013.04'</title>
<updated>2013-03-29T12:54:10Z</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2013-03-29T12:54:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d0f34f10f14853ebe3f75371533708aa0639d830'/>
<id>urn:sha1:d0f34f10f14853ebe3f75371533708aa0639d830</id>
<content type='text'>
Conflicts:
	drivers/video/Makefile

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>Merge branch 'u-boot/master' into 'u-boot-arm/master'</title>
<updated>2013-03-28T17:50:01Z</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2013-03-28T17:50:01Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=009d75ccc11d27b9a083375a88bb93cb746b4800'/>
<id>urn:sha1:009d75ccc11d27b9a083375a88bb93cb746b4800</id>
<content type='text'>
Conflicts:
	drivers/spi/tegra20_sflash.c
	include/fdtdec.h
	lib/fdtdec.c
</content>
</entry>
<entry>
<title>armv7: do not relocate _start twice</title>
<updated>2013-03-28T09:15:06Z</updated>
<author>
<name>Vincent Stehlé</name>
<email>v-stehle@ti.com</email>
</author>
<published>2013-03-15T06:54:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d53e340edf65ff253d3a7b06ebe60501045892e3'/>
<id>urn:sha1:d53e340edf65ff253d3a7b06ebe60501045892e3</id>
<content type='text'>
The _start symbol is already relocated, so do not add the relocation the second
time in c_runtime_cpu_setup.

This fixes e.g. the abort exception handling path, which ended in double fault
due to bad address in VBAR.

Signed-off-by: Vincent Stehlé &lt;v-stehle@ti.com&gt;
Reported-by: Lubomir Popov &lt;lpopov@mm-sol.com&gt;
</content>
</entry>
<entry>
<title>ARM: mmu: Set domain permissions to client access</title>
<updated>2013-03-28T08:10:58Z</updated>
<author>
<name>R Sricharan</name>
<email>r.sricharan@ti.com</email>
</author>
<published>2013-03-04T20:04:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=de63ac278cbaaa387da3efaf0b21b819c2b0c496'/>
<id>urn:sha1:de63ac278cbaaa387da3efaf0b21b819c2b0c496</id>
<content type='text'>
 The 'XN' execute never bit is set in the pagetables. This will
 prevent speculative prefetches to non executable regions. But the
 domain permissions are set as master in the DACR register.
 So the pagetable attribute for 'XN' is not effective. Change the
 permissions to client.

 This fixes lot of speculative prefetch aborts seen on OMAP5
 secure devices.

Signed-off-by: R Sricharan &lt;r.sricharan@ti.com&gt;
Tested-by: Vincent Stehle &lt;v-stehle@ti.com&gt;
Cc: Vincent Stehle &lt;v-stehle@ti.com&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
Cc: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
</content>
</entry>
<entry>
<title>ARM: mmu: Introduce weak dram_bank_setup function</title>
<updated>2013-03-28T08:06:49Z</updated>
<author>
<name>R Sricharan</name>
<email>r.sricharan@ti.com</email>
</author>
<published>2013-03-04T20:04:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=96fdbec2f96c9e11758c8742409069eeef841722'/>
<id>urn:sha1:96fdbec2f96c9e11758c8742409069eeef841722</id>
<content type='text'>
Introduce a weak version of dram_bank_setup function
to allow a platform specific function.

This is used in the subsequent patch to setup dram region
without 'XN' attribute in order to enable the region
under client permissions.

Signed-off-by: R Sricharan &lt;r.sricharan@ti.com&gt;
Cc: Vincent Stehle &lt;v-stehle@ti.com&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
Cc: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
</content>
</entry>
<entry>
<title>ARM: cache: declare set_section_dcache</title>
<updated>2013-03-28T08:06:43Z</updated>
<author>
<name>Vincent Stehlé</name>
<email>v-stehle@ti.com</email>
</author>
<published>2013-03-04T20:04:43Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=dfa41387155daed35cc6b294b2390641aa887a1d'/>
<id>urn:sha1:dfa41387155daed35cc6b294b2390641aa887a1d</id>
<content type='text'>
We declare the set_section_dcache function globally in the cache header, for
later use by e.g. machine specific code.

Signed-off-by: Vincent Stehlé &lt;v-stehle &lt;at&gt; ti.com&gt;
Cc: Tom Rini &lt;trini &lt;at&gt; ti.com&gt;
Cc: Albert ARIBAUD &lt;albert.u.boot@aribaud.net&gt;
</content>
</entry>
<entry>
<title>Merge branch 'u-boot-tegra/master' into 'u-boot-arm/master'</title>
<updated>2013-03-26T09:40:13Z</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2013-03-26T09:40:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ebd749da69f423a26222d2cdde9a77007fd8b4b7'/>
<id>urn:sha1:ebd749da69f423a26222d2cdde9a77007fd8b4b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'</title>
<updated>2013-03-26T08:51:09Z</updated>
<author>
<name>Albert ARIBAUD</name>
<email>albert.u.boot@aribaud.net</email>
</author>
<published>2013-03-26T08:51:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=412665b46134f93464c09405e02f08ac9c62526d'/>
<id>urn:sha1:412665b46134f93464c09405e02f08ac9c62526d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Tegra114: Dalmore: Add SDIO3 pad config to pinctrl_config table</title>
<updated>2013-03-25T16:56:07Z</updated>
<author>
<name>Tom Warren</name>
<email>twarren@nvidia.com</email>
</author>
<published>2013-03-18T21:47:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2a04a317911a550e55c2943d59063b621ea5f4ee'/>
<id>urn:sha1:2a04a317911a550e55c2943d59063b621ea5f4ee</id>
<content type='text'>
SDIO1 (the SD-card slot on Dalmore) needs to have its pads setup
before the MMC driver is added.

Signed-off-by: Tom Warren &lt;twarren@nvidia.com&gt;
Reviewed-by: Stephen Warren &lt;swarren@nvidia.com&gt;
</content>
</entry>
</feed>
