diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-09-26 02:32:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-26 11:48:54 -0400 |
commit | 5f97f7f9400de47ae837170bb274e90ad3934386 (patch) | |
tree | 514451e6dc6b46253293a00035d375e77b1c65ed /arch/avr32/boards/atstk1000 | |
parent | 53e62d3aaa60590d4a69b4e07c29f448b5151047 (diff) |
[PATCH] avr32 architecture
This adds support for the Atmel AVR32 architecture as well as the AT32AP7000
CPU and the AT32STK1000 development board.
AVR32 is a new high-performance 32-bit RISC microprocessor core, designed for
cost-sensitive embedded applications, with particular emphasis on low power
consumption and high code density. The AVR32 architecture is not binary
compatible with earlier 8-bit AVR architectures.
The AVR32 architecture, including the instruction set, is described by the
AVR32 Architecture Manual, available from
http://www.atmel.com/dyn/resources/prod_documents/doc32000.pdf
The Atmel AT32AP7000 is the first CPU implementing the AVR32 architecture. It
features a 7-stage pipeline, 16KB instruction and data caches and a full
Memory Management Unit. It also comes with a large set of integrated
peripherals, many of which are shared with the AT91 ARM-based controllers from
Atmel.
Full data sheet is available from
http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
while the CPU core implementation including caches and MMU is documented by
the AVR32 AP Technical Reference, available from
http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
Information about the AT32STK1000 development board can be found at
http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3918
including a BSP CD image with an earlier version of this patch, development
tools (binaries and source/patches) and a root filesystem image suitable for
booting from SD card.
Alternatively, there's a preliminary "getting started" guide available at
http://avr32linux.org/twiki/bin/view/Main/GettingStarted which provides links
to the sources and patches you will need in order to set up a cross-compiling
environment for avr32-linux.
This patch, as well as the other patches included with the BSP and the
toolchain patches, is actively supported by Atmel Corporation.
[dmccr@us.ibm.com: Fix more pxx_page macro locations]
[bunk@stusta.de: fix `make defconfig']
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dave McCracken <dmccr@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/avr32/boards/atstk1000')
-rw-r--r-- | arch/avr32/boards/atstk1000/Makefile | 2 | ||||
-rw-r--r-- | arch/avr32/boards/atstk1000/atstk1002.c | 37 | ||||
-rw-r--r-- | arch/avr32/boards/atstk1000/setup.c | 59 | ||||
-rw-r--r-- | arch/avr32/boards/atstk1000/spi.c | 27 |
4 files changed, 125 insertions, 0 deletions
diff --git a/arch/avr32/boards/atstk1000/Makefile b/arch/avr32/boards/atstk1000/Makefile new file mode 100644 index 000000000000..c3e36ece8651 --- /dev/null +++ b/arch/avr32/boards/atstk1000/Makefile | |||
@@ -0,0 +1,2 @@ | |||
1 | obj-y += setup.o spi.o | ||
2 | obj-$(CONFIG_BOARD_ATSTK1002) += atstk1002.o | ||
diff --git a/arch/avr32/boards/atstk1000/atstk1002.c b/arch/avr32/boards/atstk1000/atstk1002.c new file mode 100644 index 000000000000..49164e9aadd6 --- /dev/null +++ b/arch/avr32/boards/atstk1000/atstk1002.c | |||
@@ -0,0 +1,37 @@ | |||
1 | /* | ||
2 | * ATSTK1002 daughterboard-specific init code | ||
3 | * | ||
4 | * Copyright (C) 2005-2006 Atmel Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | |||
12 | #include <asm/arch/board.h> | ||
13 | |||
14 | struct eth_platform_data __initdata eth0_data = { | ||
15 | .valid = 1, | ||
16 | .mii_phy_addr = 0x10, | ||
17 | .is_rmii = 0, | ||
18 | .hw_addr = { 0x6a, 0x87, 0x71, 0x14, 0xcd, 0xcb }, | ||
19 | }; | ||
20 | |||
21 | extern struct lcdc_platform_data atstk1000_fb0_data; | ||
22 | |||
23 | static int __init atstk1002_init(void) | ||
24 | { | ||
25 | at32_add_system_devices(); | ||
26 | |||
27 | at32_add_device_usart(1); /* /dev/ttyS0 */ | ||
28 | at32_add_device_usart(2); /* /dev/ttyS1 */ | ||
29 | at32_add_device_usart(3); /* /dev/ttyS2 */ | ||
30 | |||
31 | at32_add_device_eth(0, ð0_data); | ||
32 | at32_add_device_spi(0); | ||
33 | at32_add_device_lcdc(0, &atstk1000_fb0_data); | ||
34 | |||
35 | return 0; | ||
36 | } | ||
37 | postcore_initcall(atstk1002_init); | ||
diff --git a/arch/avr32/boards/atstk1000/setup.c b/arch/avr32/boards/atstk1000/setup.c new file mode 100644 index 000000000000..191ab85de9a3 --- /dev/null +++ b/arch/avr32/boards/atstk1000/setup.c | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | * ATSTK1000 board-specific setup code. | ||
3 | * | ||
4 | * Copyright (C) 2005-2006 Atmel Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/bootmem.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/types.h> | ||
13 | #include <linux/linkage.h> | ||
14 | |||
15 | #include <asm/setup.h> | ||
16 | |||
17 | #include <asm/arch/board.h> | ||
18 | |||
19 | /* Initialized by bootloader-specific startup code. */ | ||
20 | struct tag *bootloader_tags __initdata; | ||
21 | |||
22 | struct lcdc_platform_data __initdata atstk1000_fb0_data; | ||
23 | |||
24 | asmlinkage void __init board_early_init(void) | ||
25 | { | ||
26 | extern void sdram_init(void); | ||
27 | |||
28 | #ifdef CONFIG_LOADER_STANDALONE | ||
29 | sdram_init(); | ||
30 | #endif | ||
31 | } | ||
32 | |||
33 | void __init board_setup_fbmem(unsigned long fbmem_start, | ||
34 | unsigned long fbmem_size) | ||
35 | { | ||
36 | if (!fbmem_size) | ||
37 | return; | ||
38 | |||
39 | if (!fbmem_start) { | ||
40 | void *fbmem; | ||
41 | |||
42 | fbmem = alloc_bootmem_low_pages(fbmem_size); | ||
43 | fbmem_start = __pa(fbmem); | ||
44 | } else { | ||
45 | pg_data_t *pgdat; | ||
46 | |||
47 | for_each_online_pgdat(pgdat) { | ||
48 | if (fbmem_start >= pgdat->bdata->node_boot_start | ||
49 | && fbmem_start <= pgdat->bdata->node_low_pfn) | ||
50 | reserve_bootmem_node(pgdat, fbmem_start, | ||
51 | fbmem_size); | ||
52 | } | ||
53 | } | ||
54 | |||
55 | printk("%luKiB framebuffer memory at address 0x%08lx\n", | ||
56 | fbmem_size >> 10, fbmem_start); | ||
57 | atstk1000_fb0_data.fbmem_start = fbmem_start; | ||
58 | atstk1000_fb0_data.fbmem_size = fbmem_size; | ||
59 | } | ||
diff --git a/arch/avr32/boards/atstk1000/spi.c b/arch/avr32/boards/atstk1000/spi.c new file mode 100644 index 000000000000..567726c82c6e --- /dev/null +++ b/arch/avr32/boards/atstk1000/spi.c | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | * ATSTK1000 SPI devices | ||
3 | * | ||
4 | * Copyright (C) 2005 Atmel Norway | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/device.h> | ||
11 | #include <linux/spi/spi.h> | ||
12 | |||
13 | static struct spi_board_info spi_board_info[] __initdata = { | ||
14 | { | ||
15 | .modalias = "ltv350qv", | ||
16 | .max_speed_hz = 16000000, | ||
17 | .bus_num = 0, | ||
18 | .chip_select = 1, | ||
19 | }, | ||
20 | }; | ||
21 | |||
22 | static int board_init_spi(void) | ||
23 | { | ||
24 | spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info)); | ||
25 | return 0; | ||
26 | } | ||
27 | arch_initcall(board_init_spi); | ||