<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/git/stable/linux.git/include/asm-avr32/arch-at32ap/cpu.h, branch master</title>
<subtitle>Linux kernel stable tree</subtitle>
<id>https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/atom?h=master</id>
<link rel='self' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/'/>
<updated>2008-08-08T10:31:55+00:00</updated>
<entry>
<title>avr32: Remove include/asm-avr32/arch-at32ap</title>
<updated>2008-08-08T10:31:55+00:00</updated>
<author>
<name>Haavard Skinnemoen</name>
<email>haavard.skinnemoen@atmel.com</email>
</author>
<published>2008-08-05T12:50:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=a7448db4826efb097e94f601f4cd9b37053e81bf'/>
<id>urn:sha1:a7448db4826efb097e94f601f4cd9b37053e81bf</id>
<content type='text'>
Since all users have been converted over to use &lt;mach/foo.h&gt;, there's no
need for the arch-at32ap directory and associated symlink anymore.

Signed-off-by: Haavard Skinnemoen &lt;haavard.skinnemoen@atmel.com&gt;
</content>
</entry>
<entry>
<title>[ARM] 4764/1: [AT91] AT91CAP9 core support</title>
<updated>2008-01-26T15:01:13+00:00</updated>
<author>
<name>Andrew Victor</name>
<email>linux@maxim.org.za</email>
</author>
<published>2008-01-24T14:10:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=2b3b3516b6eeea1464e205b2dde9ebc9b7dd2ec8'/>
<id>urn:sha1:2b3b3516b6eeea1464e205b2dde9ebc9b7dd2ec8</id>
<content type='text'>
Add support for Atmel's AT91CAP9 Customizable Microcontroller family.
  &lt;http://www.atmel.com/products/AT91CAP/Default.asp&gt;

Signed-off-by: Stelian Pop &lt;stelian@popies.net&gt;
Signed-off-by: Andrew Victor &lt;linux@maxim.org.za&gt;
Signed-off-by: Russell King &lt;rmk+kernel@arm.linux.org.uk&gt;
</content>
</entry>
<entry>
<title>[AVR32] Add support for AT32AP7001 and AT32AP7002</title>
<updated>2008-01-25T07:31:41+00:00</updated>
<author>
<name>Haavard Skinnemoen</name>
<email>hskinnemoen@atmel.com</email>
</author>
<published>2007-10-29T14:28:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=438ff3f3cc33833206a48492e9d6674e4e82bed8'/>
<id>urn:sha1:438ff3f3cc33833206a48492e9d6674e4e82bed8</id>
<content type='text'>
These are derivatives of the AT32AP7000 chip, which means that most of
the code stays the same. Rename a few files, functions, definitions
and config symbols to reflect that they apply to all AP700x chips, and
exclude some platform devices from chips where they aren't present.

Signed-off-by: Haavard Skinnemoen &lt;hskinnemoen@atmel.com&gt;
</content>
</entry>
<entry>
<title>[ARM] 4370/3: AT91: Support for Atmel AT91SAM9RL processors.</title>
<updated>2007-05-11T20:07:54+00:00</updated>
<author>
<name>Andrew Victor</name>
<email>andrew@sanpeople.com</email>
</author>
<published>2007-05-11T19:49:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=877d7720f5f67793b9b6027840d2c88ea25dc4c8'/>
<id>urn:sha1:877d7720f5f67793b9b6027840d2c88ea25dc4c8</id>
<content type='text'>
Add support for Atmel's new AT91SAM9RL range of processors.
Includes similar peripherals as other AT91SAM9 processors, but with a
High-speed USB controller and various sizes of internal SRAM.

Signed-off-by: Nicolas Ferre &lt;nicolas.ferre@rfo.atmel.com&gt;
Signed-off-by: Andrew Victor &lt;andrew@sanpeople.com&gt;
Signed-off-by: Russell King &lt;rmk+kernel@arm.linux.org.uk&gt;
</content>
</entry>
<entry>
<title>Use common cpu_is_xxx() macros on AT91 and AVR32</title>
<updated>2007-05-09T19:30:50+00:00</updated>
<author>
<name>Haavard Skinnemoen</name>
<email>hskinnemoen@atmel.com</email>
</author>
<published>2007-05-09T09:33:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rulkc.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e7498281d3caec1141d7542ec494c4e4a1d404c9'/>
<id>urn:sha1:e7498281d3caec1141d7542ec494c4e4a1d404c9</id>
<content type='text'>
Several drivers shared between AT91 and AVR32 chips use cpu_is_xxx()
to handle CPU-specific differences. Currently, such code needs to be
inside #ifdef CONFIG_ARCH_AT91 because the macros don't exist on AVR32.

By defining the same macros on both AT91 and AVR32, these #ifdefs can
be eliminated. Since the macros will evaluate to a constant value for
CPUs that aren't supported by the current architecture, any code that
is only needed on AT91 will be optimized away on AVR32 and vice versa.

Signed-off-by: Haavard Skinnemoen &lt;hskinnemoen@atmel.com&gt;
Cc: David Brownell &lt;david-b@pacbell.net&gt;
Acked-by: Andrew Victor &lt;andrew@sanpeople.com&gt;
Cc: Nicolas Ferre &lt;nicolas.ferre@rfo.atmel.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>
</feed>
