diff options
Diffstat (limited to 'arch')
24 files changed, 2776 insertions, 912 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index ce4013aee59b..3ec76586877e 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -57,9 +57,6 @@ config ARCH_HAS_ILOG2_U64 | |||
57 | bool | 57 | bool |
58 | default n | 58 | default n |
59 | 59 | ||
60 | config GENERIC_BUST_SPINLOCK | ||
61 | bool | ||
62 | |||
63 | config GENERIC_HWEIGHT | 60 | config GENERIC_HWEIGHT |
64 | bool | 61 | bool |
65 | default y | 62 | default y |
@@ -68,6 +65,11 @@ config GENERIC_CALIBRATE_DELAY | |||
68 | bool | 65 | bool |
69 | default y | 66 | default y |
70 | 67 | ||
68 | config GENERIC_BUG | ||
69 | bool | ||
70 | default y | ||
71 | depends on BUG | ||
72 | |||
71 | source "init/Kconfig" | 73 | source "init/Kconfig" |
72 | 74 | ||
73 | menu "System Type and features" | 75 | menu "System Type and features" |
@@ -106,6 +108,9 @@ choice | |||
106 | config BOARD_ATSTK1000 | 108 | config BOARD_ATSTK1000 |
107 | bool "ATSTK1000 evaluation board" | 109 | bool "ATSTK1000 evaluation board" |
108 | select BOARD_ATSTK1002 if CPU_AT32AP7000 | 110 | select BOARD_ATSTK1002 if CPU_AT32AP7000 |
111 | |||
112 | config BOARD_ATNGW100 | ||
113 | bool "ATNGW100 Network Gateway" | ||
109 | endchoice | 114 | endchoice |
110 | 115 | ||
111 | choice | 116 | choice |
@@ -116,6 +121,8 @@ config LOADER_U_BOOT | |||
116 | bool "U-Boot (or similar) bootloader" | 121 | bool "U-Boot (or similar) bootloader" |
117 | endchoice | 122 | endchoice |
118 | 123 | ||
124 | source "arch/avr32/mach-at32ap/Kconfig" | ||
125 | |||
119 | config LOAD_ADDRESS | 126 | config LOAD_ADDRESS |
120 | hex | 127 | hex |
121 | default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y | 128 | default 0x10000000 if LOADER_U_BOOT=y && CPU_AT32AP7000=y |
diff --git a/arch/avr32/Makefile b/arch/avr32/Makefile index 7b842e98efed..6115fc1f0cfa 100644 --- a/arch/avr32/Makefile +++ b/arch/avr32/Makefile | |||
@@ -27,6 +27,7 @@ head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o | |||
27 | head-y += arch/avr32/kernel/head.o | 27 | head-y += arch/avr32/kernel/head.o |
28 | core-$(CONFIG_PLATFORM_AT32AP) += arch/avr32/mach-at32ap/ | 28 | core-$(CONFIG_PLATFORM_AT32AP) += arch/avr32/mach-at32ap/ |
29 | core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/ | 29 | core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/ |
30 | core-$(CONFIG_BOARD_ATNGW100) += arch/avr32/boards/atngw100/ | ||
30 | core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/ | 31 | core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/ |
31 | core-y += arch/avr32/kernel/ | 32 | core-y += arch/avr32/kernel/ |
32 | core-y += arch/avr32/mm/ | 33 | core-y += arch/avr32/mm/ |
diff --git a/arch/avr32/boards/atngw100/Makefile b/arch/avr32/boards/atngw100/Makefile new file mode 100644 index 000000000000..c740aa116755 --- /dev/null +++ b/arch/avr32/boards/atngw100/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y += setup.o flash.o | |||
diff --git a/arch/avr32/boards/atngw100/flash.c b/arch/avr32/boards/atngw100/flash.c new file mode 100644 index 000000000000..f9b32a8eab9b --- /dev/null +++ b/arch/avr32/boards/atngw100/flash.c | |||
@@ -0,0 +1,95 @@ | |||
1 | /* | ||
2 | * ATNGW100 board-specific flash initialization | ||
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 | #include <linux/platform_device.h> | ||
12 | #include <linux/mtd/mtd.h> | ||
13 | #include <linux/mtd/partitions.h> | ||
14 | #include <linux/mtd/physmap.h> | ||
15 | |||
16 | #include <asm/arch/smc.h> | ||
17 | |||
18 | static struct smc_config flash_config __initdata = { | ||
19 | .ncs_read_setup = 0, | ||
20 | .nrd_setup = 40, | ||
21 | .ncs_write_setup = 0, | ||
22 | .nwe_setup = 10, | ||
23 | |||
24 | .ncs_read_pulse = 80, | ||
25 | .nrd_pulse = 40, | ||
26 | .ncs_write_pulse = 65, | ||
27 | .nwe_pulse = 55, | ||
28 | |||
29 | .read_cycle = 120, | ||
30 | .write_cycle = 120, | ||
31 | |||
32 | .bus_width = 2, | ||
33 | .nrd_controlled = 1, | ||
34 | .nwe_controlled = 1, | ||
35 | .byte_write = 1, | ||
36 | }; | ||
37 | |||
38 | static struct mtd_partition flash_parts[] = { | ||
39 | { | ||
40 | .name = "u-boot", | ||
41 | .offset = 0x00000000, | ||
42 | .size = 0x00020000, /* 128 KiB */ | ||
43 | .mask_flags = MTD_WRITEABLE, | ||
44 | }, | ||
45 | { | ||
46 | .name = "root", | ||
47 | .offset = 0x00020000, | ||
48 | .size = 0x007d0000, | ||
49 | }, | ||
50 | { | ||
51 | .name = "env", | ||
52 | .offset = 0x007f0000, | ||
53 | .size = 0x00010000, | ||
54 | .mask_flags = MTD_WRITEABLE, | ||
55 | }, | ||
56 | }; | ||
57 | |||
58 | static struct physmap_flash_data flash_data = { | ||
59 | .width = 2, | ||
60 | .nr_parts = ARRAY_SIZE(flash_parts), | ||
61 | .parts = flash_parts, | ||
62 | }; | ||
63 | |||
64 | static struct resource flash_resource = { | ||
65 | .start = 0x00000000, | ||
66 | .end = 0x007fffff, | ||
67 | .flags = IORESOURCE_MEM, | ||
68 | }; | ||
69 | |||
70 | static struct platform_device flash_device = { | ||
71 | .name = "physmap-flash", | ||
72 | .id = 0, | ||
73 | .resource = &flash_resource, | ||
74 | .num_resources = 1, | ||
75 | .dev = { | ||
76 | .platform_data = &flash_data, | ||
77 | }, | ||
78 | }; | ||
79 | |||
80 | /* This needs to be called after the SMC has been initialized */ | ||
81 | static int __init atngw100_flash_init(void) | ||
82 | { | ||
83 | int ret; | ||
84 | |||
85 | ret = smc_set_configuration(0, &flash_config); | ||
86 | if (ret < 0) { | ||
87 | printk(KERN_ERR "atngw100: failed to set NOR flash timing\n"); | ||
88 | return ret; | ||
89 | } | ||
90 | |||
91 | platform_device_register(&flash_device); | ||
92 | |||
93 | return 0; | ||
94 | } | ||
95 | device_initcall(atngw100_flash_init); | ||
diff --git a/arch/avr32/boards/atngw100/setup.c b/arch/avr32/boards/atngw100/setup.c new file mode 100644 index 000000000000..9bc37d4f6687 --- /dev/null +++ b/arch/avr32/boards/atngw100/setup.c | |||
@@ -0,0 +1,124 @@ | |||
1 | /* | ||
2 | * Board-specific setup code for the ATNGW100 Network Gateway | ||
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/clk.h> | ||
11 | #include <linux/etherdevice.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/linkage.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <linux/types.h> | ||
16 | #include <linux/spi/spi.h> | ||
17 | |||
18 | #include <asm/io.h> | ||
19 | #include <asm/setup.h> | ||
20 | |||
21 | #include <asm/arch/at32ap7000.h> | ||
22 | #include <asm/arch/board.h> | ||
23 | #include <asm/arch/init.h> | ||
24 | |||
25 | /* Initialized by bootloader-specific startup code. */ | ||
26 | struct tag *bootloader_tags __initdata; | ||
27 | |||
28 | struct eth_addr { | ||
29 | u8 addr[6]; | ||
30 | }; | ||
31 | static struct eth_addr __initdata hw_addr[2]; | ||
32 | static struct eth_platform_data __initdata eth_data[2]; | ||
33 | |||
34 | static struct spi_board_info spi0_board_info[] __initdata = { | ||
35 | { | ||
36 | .modalias = "mtd_dataflash", | ||
37 | .max_speed_hz = 10000000, | ||
38 | .chip_select = 0, | ||
39 | }, | ||
40 | }; | ||
41 | |||
42 | /* | ||
43 | * The next two functions should go away as the boot loader is | ||
44 | * supposed to initialize the macb address registers with a valid | ||
45 | * ethernet address. But we need to keep it around for a while until | ||
46 | * we can be reasonably sure the boot loader does this. | ||
47 | * | ||
48 | * The phy_id is ignored as the driver will probe for it. | ||
49 | */ | ||
50 | static int __init parse_tag_ethernet(struct tag *tag) | ||
51 | { | ||
52 | int i; | ||
53 | |||
54 | i = tag->u.ethernet.mac_index; | ||
55 | if (i < ARRAY_SIZE(hw_addr)) | ||
56 | memcpy(hw_addr[i].addr, tag->u.ethernet.hw_address, | ||
57 | sizeof(hw_addr[i].addr)); | ||
58 | |||
59 | return 0; | ||
60 | } | ||
61 | __tagtable(ATAG_ETHERNET, parse_tag_ethernet); | ||
62 | |||
63 | static void __init set_hw_addr(struct platform_device *pdev) | ||
64 | { | ||
65 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
66 | const u8 *addr; | ||
67 | void __iomem *regs; | ||
68 | struct clk *pclk; | ||
69 | |||
70 | if (!res) | ||
71 | return; | ||
72 | if (pdev->id >= ARRAY_SIZE(hw_addr)) | ||
73 | return; | ||
74 | |||
75 | addr = hw_addr[pdev->id].addr; | ||
76 | if (!is_valid_ether_addr(addr)) | ||
77 | return; | ||
78 | |||
79 | /* | ||
80 | * Since this is board-specific code, we'll cheat and use the | ||
81 | * physical address directly as we happen to know that it's | ||
82 | * the same as the virtual address. | ||
83 | */ | ||
84 | regs = (void __iomem __force *)res->start; | ||
85 | pclk = clk_get(&pdev->dev, "pclk"); | ||
86 | if (!pclk) | ||
87 | return; | ||
88 | |||
89 | clk_enable(pclk); | ||
90 | __raw_writel((addr[3] << 24) | (addr[2] << 16) | ||
91 | | (addr[1] << 8) | addr[0], regs + 0x98); | ||
92 | __raw_writel((addr[5] << 8) | addr[4], regs + 0x9c); | ||
93 | clk_disable(pclk); | ||
94 | clk_put(pclk); | ||
95 | } | ||
96 | |||
97 | struct platform_device *at32_usart_map[1]; | ||
98 | unsigned int at32_nr_usarts = 1; | ||
99 | |||
100 | void __init setup_board(void) | ||
101 | { | ||
102 | at32_map_usart(1, 0); /* USART 1: /dev/ttyS0, DB9 */ | ||
103 | at32_setup_serial_console(0); | ||
104 | } | ||
105 | |||
106 | static int __init atngw100_init(void) | ||
107 | { | ||
108 | /* | ||
109 | * ATNGW100 uses 16-bit SDRAM interface, so we don't need to | ||
110 | * reserve any pins for it. | ||
111 | */ | ||
112 | |||
113 | at32_add_system_devices(); | ||
114 | |||
115 | at32_add_device_usart(0); | ||
116 | |||
117 | set_hw_addr(at32_add_device_eth(0, ð_data[0])); | ||
118 | set_hw_addr(at32_add_device_eth(1, ð_data[1])); | ||
119 | |||
120 | at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info)); | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | postcore_initcall(atngw100_init); | ||
diff --git a/arch/avr32/boards/atstk1000/atstk1002.c b/arch/avr32/boards/atstk1000/atstk1002.c index 5974768a59e5..abe6ca203fa7 100644 --- a/arch/avr32/boards/atstk1000/atstk1002.c +++ b/arch/avr32/boards/atstk1000/atstk1002.c | |||
@@ -33,7 +33,7 @@ struct eth_addr { | |||
33 | static struct eth_addr __initdata hw_addr[2]; | 33 | static struct eth_addr __initdata hw_addr[2]; |
34 | 34 | ||
35 | static struct eth_platform_data __initdata eth_data[2]; | 35 | static struct eth_platform_data __initdata eth_data[2]; |
36 | extern struct lcdc_platform_data atstk1000_fb0_data; | 36 | static struct lcdc_platform_data atstk1000_fb0_data; |
37 | 37 | ||
38 | static struct spi_board_info spi0_board_info[] __initdata = { | 38 | static struct spi_board_info spi0_board_info[] __initdata = { |
39 | { | 39 | { |
@@ -148,6 +148,8 @@ static int __init atstk1002_init(void) | |||
148 | set_hw_addr(at32_add_device_eth(0, ð_data[0])); | 148 | set_hw_addr(at32_add_device_eth(0, ð_data[0])); |
149 | 149 | ||
150 | at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info)); | 150 | at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info)); |
151 | atstk1000_fb0_data.fbmem_start = fbmem_start; | ||
152 | atstk1000_fb0_data.fbmem_size = fbmem_size; | ||
151 | at32_add_device_lcdc(0, &atstk1000_fb0_data); | 153 | at32_add_device_lcdc(0, &atstk1000_fb0_data); |
152 | 154 | ||
153 | return 0; | 155 | return 0; |
diff --git a/arch/avr32/boards/atstk1000/setup.c b/arch/avr32/boards/atstk1000/setup.c index 272c011802a7..2bc4b88d7edb 100644 --- a/arch/avr32/boards/atstk1000/setup.c +++ b/arch/avr32/boards/atstk1000/setup.c | |||
@@ -18,33 +18,3 @@ | |||
18 | 18 | ||
19 | /* Initialized by bootloader-specific startup code. */ | 19 | /* Initialized by bootloader-specific startup code. */ |
20 | struct tag *bootloader_tags __initdata; | 20 | struct tag *bootloader_tags __initdata; |
21 | |||
22 | struct lcdc_platform_data __initdata atstk1000_fb0_data; | ||
23 | |||
24 | void __init board_setup_fbmem(unsigned long fbmem_start, | ||
25 | unsigned long fbmem_size) | ||
26 | { | ||
27 | if (!fbmem_size) | ||
28 | return; | ||
29 | |||
30 | if (!fbmem_start) { | ||
31 | void *fbmem; | ||
32 | |||
33 | fbmem = alloc_bootmem_low_pages(fbmem_size); | ||
34 | fbmem_start = __pa(fbmem); | ||
35 | } else { | ||
36 | pg_data_t *pgdat; | ||
37 | |||
38 | for_each_online_pgdat(pgdat) { | ||
39 | if (fbmem_start >= pgdat->bdata->node_boot_start | ||
40 | && fbmem_start <= pgdat->bdata->node_low_pfn) | ||
41 | reserve_bootmem_node(pgdat, fbmem_start, | ||
42 | fbmem_size); | ||
43 | } | ||
44 | } | ||
45 | |||
46 | printk("%luKiB framebuffer memory at address 0x%08lx\n", | ||
47 | fbmem_size >> 10, fbmem_start); | ||
48 | atstk1000_fb0_data.fbmem_start = fbmem_start; | ||
49 | atstk1000_fb0_data.fbmem_size = fbmem_size; | ||
50 | } | ||
diff --git a/arch/avr32/configs/atngw100_defconfig b/arch/avr32/configs/atngw100_defconfig new file mode 100644 index 000000000000..c254ffcfa458 --- /dev/null +++ b/arch/avr32/configs/atngw100_defconfig | |||
@@ -0,0 +1,1085 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.21-rc6 | ||
4 | # Thu Apr 12 16:35:07 2007 | ||
5 | # | ||
6 | CONFIG_AVR32=y | ||
7 | CONFIG_GENERIC_GPIO=y | ||
8 | CONFIG_GENERIC_HARDIRQS=y | ||
9 | CONFIG_HARDIRQS_SW_RESEND=y | ||
10 | CONFIG_GENERIC_IRQ_PROBE=y | ||
11 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
12 | CONFIG_GENERIC_TIME=y | ||
13 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
14 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
15 | CONFIG_GENERIC_HWEIGHT=y | ||
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
17 | CONFIG_GENERIC_BUG=y | ||
18 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
19 | |||
20 | # | ||
21 | # Code maturity level options | ||
22 | # | ||
23 | CONFIG_EXPERIMENTAL=y | ||
24 | CONFIG_BROKEN_ON_SMP=y | ||
25 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
26 | |||
27 | # | ||
28 | # General setup | ||
29 | # | ||
30 | CONFIG_LOCALVERSION="" | ||
31 | # CONFIG_LOCALVERSION_AUTO is not set | ||
32 | CONFIG_SWAP=y | ||
33 | CONFIG_SYSVIPC=y | ||
34 | # CONFIG_IPC_NS is not set | ||
35 | CONFIG_SYSVIPC_SYSCTL=y | ||
36 | CONFIG_POSIX_MQUEUE=y | ||
37 | CONFIG_BSD_PROCESS_ACCT=y | ||
38 | CONFIG_BSD_PROCESS_ACCT_V3=y | ||
39 | # CONFIG_TASKSTATS is not set | ||
40 | # CONFIG_UTS_NS is not set | ||
41 | # CONFIG_AUDIT is not set | ||
42 | # CONFIG_IKCONFIG is not set | ||
43 | CONFIG_SYSFS_DEPRECATED=y | ||
44 | # CONFIG_RELAY is not set | ||
45 | CONFIG_BLK_DEV_INITRD=y | ||
46 | CONFIG_INITRAMFS_SOURCE="" | ||
47 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
48 | CONFIG_SYSCTL=y | ||
49 | CONFIG_EMBEDDED=y | ||
50 | # CONFIG_SYSCTL_SYSCALL is not set | ||
51 | CONFIG_KALLSYMS=y | ||
52 | # CONFIG_KALLSYMS_ALL is not set | ||
53 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
54 | CONFIG_HOTPLUG=y | ||
55 | CONFIG_PRINTK=y | ||
56 | CONFIG_BUG=y | ||
57 | CONFIG_ELF_CORE=y | ||
58 | # CONFIG_BASE_FULL is not set | ||
59 | CONFIG_FUTEX=y | ||
60 | CONFIG_EPOLL=y | ||
61 | CONFIG_SHMEM=y | ||
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | ||
64 | CONFIG_RT_MUTEXES=y | ||
65 | # CONFIG_TINY_SHMEM is not set | ||
66 | CONFIG_BASE_SMALL=1 | ||
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | ||
73 | CONFIG_MODULE_UNLOAD=y | ||
74 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
75 | # CONFIG_MODVERSIONS is not set | ||
76 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
77 | CONFIG_KMOD=y | ||
78 | |||
79 | # | ||
80 | # Block layer | ||
81 | # | ||
82 | CONFIG_BLOCK=y | ||
83 | # CONFIG_LBD is not set | ||
84 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
85 | # CONFIG_LSF is not set | ||
86 | |||
87 | # | ||
88 | # IO Schedulers | ||
89 | # | ||
90 | CONFIG_IOSCHED_NOOP=y | ||
91 | # CONFIG_IOSCHED_AS is not set | ||
92 | # CONFIG_IOSCHED_DEADLINE is not set | ||
93 | CONFIG_IOSCHED_CFQ=y | ||
94 | # CONFIG_DEFAULT_AS is not set | ||
95 | # CONFIG_DEFAULT_DEADLINE is not set | ||
96 | CONFIG_DEFAULT_CFQ=y | ||
97 | # CONFIG_DEFAULT_NOOP is not set | ||
98 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
99 | |||
100 | # | ||
101 | # System Type and features | ||
102 | # | ||
103 | CONFIG_SUBARCH_AVR32B=y | ||
104 | CONFIG_MMU=y | ||
105 | CONFIG_PERFORMANCE_COUNTERS=y | ||
106 | CONFIG_PLATFORM_AT32AP=y | ||
107 | CONFIG_CPU_AT32AP7000=y | ||
108 | # CONFIG_BOARD_ATSTK1000 is not set | ||
109 | CONFIG_BOARD_ATNGW100=y | ||
110 | CONFIG_LOADER_U_BOOT=y | ||
111 | |||
112 | # | ||
113 | # Atmel AVR32 AP options | ||
114 | # | ||
115 | # CONFIG_AP7000_32_BIT_SMC is not set | ||
116 | CONFIG_AP7000_16_BIT_SMC=y | ||
117 | # CONFIG_AP7000_8_BIT_SMC is not set | ||
118 | CONFIG_LOAD_ADDRESS=0x10000000 | ||
119 | CONFIG_ENTRY_ADDRESS=0x90000000 | ||
120 | CONFIG_PHYS_OFFSET=0x10000000 | ||
121 | CONFIG_PREEMPT_NONE=y | ||
122 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
123 | # CONFIG_PREEMPT is not set | ||
124 | # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set | ||
125 | # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set | ||
126 | # CONFIG_NEED_NODE_MEMMAP_SIZE is not set | ||
127 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
128 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
129 | # CONFIG_ARCH_SPARSEMEM_ENABLE is not set | ||
130 | CONFIG_SELECT_MEMORY_MODEL=y | ||
131 | CONFIG_FLATMEM_MANUAL=y | ||
132 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
133 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
134 | CONFIG_FLATMEM=y | ||
135 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
136 | # CONFIG_SPARSEMEM_STATIC is not set | ||
137 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
138 | # CONFIG_RESOURCES_64BIT is not set | ||
139 | CONFIG_ZONE_DMA_FLAG=0 | ||
140 | # CONFIG_OWNERSHIP_TRACE is not set | ||
141 | # CONFIG_HZ_100 is not set | ||
142 | CONFIG_HZ_250=y | ||
143 | # CONFIG_HZ_300 is not set | ||
144 | # CONFIG_HZ_1000 is not set | ||
145 | CONFIG_HZ=250 | ||
146 | CONFIG_CMDLINE="" | ||
147 | |||
148 | # | ||
149 | # Bus options | ||
150 | # | ||
151 | |||
152 | # | ||
153 | # PCCARD (PCMCIA/CardBus) support | ||
154 | # | ||
155 | # CONFIG_PCCARD is not set | ||
156 | |||
157 | # | ||
158 | # Executable file formats | ||
159 | # | ||
160 | CONFIG_BINFMT_ELF=y | ||
161 | # CONFIG_BINFMT_MISC is not set | ||
162 | |||
163 | # | ||
164 | # Networking | ||
165 | # | ||
166 | CONFIG_NET=y | ||
167 | |||
168 | # | ||
169 | # Networking options | ||
170 | # | ||
171 | # CONFIG_NETDEBUG is not set | ||
172 | CONFIG_PACKET=y | ||
173 | CONFIG_PACKET_MMAP=y | ||
174 | CONFIG_UNIX=y | ||
175 | CONFIG_XFRM=y | ||
176 | CONFIG_XFRM_USER=y | ||
177 | # CONFIG_XFRM_SUB_POLICY is not set | ||
178 | # CONFIG_XFRM_MIGRATE is not set | ||
179 | CONFIG_NET_KEY=y | ||
180 | # CONFIG_NET_KEY_MIGRATE is not set | ||
181 | CONFIG_INET=y | ||
182 | CONFIG_IP_MULTICAST=y | ||
183 | CONFIG_IP_ADVANCED_ROUTER=y | ||
184 | CONFIG_ASK_IP_FIB_HASH=y | ||
185 | # CONFIG_IP_FIB_TRIE is not set | ||
186 | CONFIG_IP_FIB_HASH=y | ||
187 | # CONFIG_IP_MULTIPLE_TABLES is not set | ||
188 | # CONFIG_IP_ROUTE_MULTIPATH is not set | ||
189 | # CONFIG_IP_ROUTE_VERBOSE is not set | ||
190 | CONFIG_IP_PNP=y | ||
191 | CONFIG_IP_PNP_DHCP=y | ||
192 | # CONFIG_IP_PNP_BOOTP is not set | ||
193 | # CONFIG_IP_PNP_RARP is not set | ||
194 | # CONFIG_NET_IPIP is not set | ||
195 | # CONFIG_NET_IPGRE is not set | ||
196 | CONFIG_IP_MROUTE=y | ||
197 | CONFIG_IP_PIMSM_V1=y | ||
198 | # CONFIG_IP_PIMSM_V2 is not set | ||
199 | # CONFIG_ARPD is not set | ||
200 | CONFIG_SYN_COOKIES=y | ||
201 | CONFIG_INET_AH=y | ||
202 | CONFIG_INET_ESP=y | ||
203 | CONFIG_INET_IPCOMP=y | ||
204 | CONFIG_INET_XFRM_TUNNEL=y | ||
205 | CONFIG_INET_TUNNEL=y | ||
206 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
207 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
208 | CONFIG_INET_XFRM_MODE_BEET=y | ||
209 | CONFIG_INET_DIAG=y | ||
210 | CONFIG_INET_TCP_DIAG=y | ||
211 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
212 | CONFIG_TCP_CONG_CUBIC=y | ||
213 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
214 | # CONFIG_TCP_MD5SIG is not set | ||
215 | |||
216 | # | ||
217 | # IP: Virtual Server Configuration | ||
218 | # | ||
219 | # CONFIG_IP_VS is not set | ||
220 | CONFIG_IPV6=y | ||
221 | # CONFIG_IPV6_PRIVACY is not set | ||
222 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
223 | CONFIG_INET6_AH=y | ||
224 | CONFIG_INET6_ESP=y | ||
225 | CONFIG_INET6_IPCOMP=y | ||
226 | # CONFIG_IPV6_MIP6 is not set | ||
227 | CONFIG_INET6_XFRM_TUNNEL=y | ||
228 | CONFIG_INET6_TUNNEL=y | ||
229 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
230 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
231 | CONFIG_INET6_XFRM_MODE_BEET=y | ||
232 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | ||
233 | CONFIG_IPV6_SIT=y | ||
234 | # CONFIG_IPV6_TUNNEL is not set | ||
235 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | ||
236 | # CONFIG_NETWORK_SECMARK is not set | ||
237 | CONFIG_NETFILTER=y | ||
238 | # CONFIG_NETFILTER_DEBUG is not set | ||
239 | |||
240 | # | ||
241 | # Core Netfilter Configuration | ||
242 | # | ||
243 | # CONFIG_NETFILTER_NETLINK is not set | ||
244 | CONFIG_NF_CONNTRACK_ENABLED=m | ||
245 | CONFIG_NF_CONNTRACK_SUPPORT=y | ||
246 | # CONFIG_IP_NF_CONNTRACK_SUPPORT is not set | ||
247 | CONFIG_NF_CONNTRACK=m | ||
248 | CONFIG_NF_CT_ACCT=y | ||
249 | CONFIG_NF_CONNTRACK_MARK=y | ||
250 | # CONFIG_NF_CONNTRACK_EVENTS is not set | ||
251 | CONFIG_NF_CT_PROTO_GRE=m | ||
252 | # CONFIG_NF_CT_PROTO_SCTP is not set | ||
253 | CONFIG_NF_CONNTRACK_AMANDA=m | ||
254 | CONFIG_NF_CONNTRACK_FTP=m | ||
255 | CONFIG_NF_CONNTRACK_H323=m | ||
256 | CONFIG_NF_CONNTRACK_IRC=m | ||
257 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m | ||
258 | CONFIG_NF_CONNTRACK_PPTP=m | ||
259 | CONFIG_NF_CONNTRACK_SANE=m | ||
260 | CONFIG_NF_CONNTRACK_SIP=m | ||
261 | CONFIG_NF_CONNTRACK_TFTP=m | ||
262 | CONFIG_NETFILTER_XTABLES=y | ||
263 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | ||
264 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | ||
265 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | ||
266 | CONFIG_NETFILTER_XT_TARGET_MARK=m | ||
267 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | ||
268 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | ||
269 | # CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set | ||
270 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | ||
271 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | ||
272 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | ||
273 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | ||
274 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m | ||
275 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set | ||
276 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | ||
277 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
280 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
281 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
282 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
283 | CONFIG_NETFILTER_XT_MATCH_POLICY=m | ||
284 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
285 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
286 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
287 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
288 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | ||
289 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
290 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
291 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
292 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
293 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | ||
294 | |||
295 | # | ||
296 | # IP: Netfilter Configuration | ||
297 | # | ||
298 | CONFIG_NF_CONNTRACK_IPV4=m | ||
299 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | ||
300 | # CONFIG_IP_NF_QUEUE is not set | ||
301 | CONFIG_IP_NF_IPTABLES=m | ||
302 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
303 | CONFIG_IP_NF_MATCH_TOS=m | ||
304 | CONFIG_IP_NF_MATCH_RECENT=m | ||
305 | CONFIG_IP_NF_MATCH_ECN=m | ||
306 | CONFIG_IP_NF_MATCH_AH=m | ||
307 | CONFIG_IP_NF_MATCH_TTL=m | ||
308 | CONFIG_IP_NF_MATCH_OWNER=m | ||
309 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
310 | CONFIG_IP_NF_FILTER=m | ||
311 | CONFIG_IP_NF_TARGET_REJECT=m | ||
312 | CONFIG_IP_NF_TARGET_LOG=m | ||
313 | # CONFIG_IP_NF_TARGET_ULOG is not set | ||
314 | CONFIG_NF_NAT=m | ||
315 | CONFIG_NF_NAT_NEEDED=y | ||
316 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
317 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
318 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
319 | CONFIG_IP_NF_TARGET_SAME=m | ||
320 | CONFIG_NF_NAT_SNMP_BASIC=m | ||
321 | CONFIG_NF_NAT_PROTO_GRE=m | ||
322 | CONFIG_NF_NAT_FTP=m | ||
323 | CONFIG_NF_NAT_IRC=m | ||
324 | CONFIG_NF_NAT_TFTP=m | ||
325 | CONFIG_NF_NAT_AMANDA=m | ||
326 | CONFIG_NF_NAT_PPTP=m | ||
327 | CONFIG_NF_NAT_H323=m | ||
328 | CONFIG_NF_NAT_SIP=m | ||
329 | CONFIG_IP_NF_MANGLE=m | ||
330 | CONFIG_IP_NF_TARGET_TOS=m | ||
331 | CONFIG_IP_NF_TARGET_ECN=m | ||
332 | CONFIG_IP_NF_TARGET_TTL=m | ||
333 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
334 | CONFIG_IP_NF_RAW=m | ||
335 | CONFIG_IP_NF_ARPTABLES=m | ||
336 | CONFIG_IP_NF_ARPFILTER=m | ||
337 | CONFIG_IP_NF_ARP_MANGLE=m | ||
338 | |||
339 | # | ||
340 | # IPv6: Netfilter Configuration (EXPERIMENTAL) | ||
341 | # | ||
342 | CONFIG_NF_CONNTRACK_IPV6=m | ||
343 | CONFIG_IP6_NF_QUEUE=m | ||
344 | CONFIG_IP6_NF_IPTABLES=m | ||
345 | CONFIG_IP6_NF_MATCH_RT=m | ||
346 | CONFIG_IP6_NF_MATCH_OPTS=m | ||
347 | CONFIG_IP6_NF_MATCH_FRAG=m | ||
348 | CONFIG_IP6_NF_MATCH_HL=m | ||
349 | CONFIG_IP6_NF_MATCH_OWNER=m | ||
350 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | ||
351 | CONFIG_IP6_NF_MATCH_AH=m | ||
352 | CONFIG_IP6_NF_MATCH_MH=m | ||
353 | CONFIG_IP6_NF_MATCH_EUI64=m | ||
354 | CONFIG_IP6_NF_FILTER=m | ||
355 | CONFIG_IP6_NF_TARGET_LOG=m | ||
356 | CONFIG_IP6_NF_TARGET_REJECT=m | ||
357 | CONFIG_IP6_NF_MANGLE=m | ||
358 | CONFIG_IP6_NF_TARGET_HL=m | ||
359 | CONFIG_IP6_NF_RAW=m | ||
360 | |||
361 | # | ||
362 | # DCCP Configuration (EXPERIMENTAL) | ||
363 | # | ||
364 | # CONFIG_IP_DCCP is not set | ||
365 | |||
366 | # | ||
367 | # SCTP Configuration (EXPERIMENTAL) | ||
368 | # | ||
369 | # CONFIG_IP_SCTP is not set | ||
370 | |||
371 | # | ||
372 | # TIPC Configuration (EXPERIMENTAL) | ||
373 | # | ||
374 | # CONFIG_TIPC is not set | ||
375 | # CONFIG_ATM is not set | ||
376 | # CONFIG_BRIDGE is not set | ||
377 | CONFIG_VLAN_8021Q=m | ||
378 | # CONFIG_DECNET is not set | ||
379 | # CONFIG_LLC2 is not set | ||
380 | # CONFIG_IPX is not set | ||
381 | # CONFIG_ATALK is not set | ||
382 | # CONFIG_X25 is not set | ||
383 | # CONFIG_LAPB is not set | ||
384 | # CONFIG_ECONET is not set | ||
385 | # CONFIG_WAN_ROUTER is not set | ||
386 | |||
387 | # | ||
388 | # QoS and/or fair queueing | ||
389 | # | ||
390 | # CONFIG_NET_SCHED is not set | ||
391 | CONFIG_NET_CLS_ROUTE=y | ||
392 | |||
393 | # | ||
394 | # Network testing | ||
395 | # | ||
396 | # CONFIG_NET_PKTGEN is not set | ||
397 | # CONFIG_HAMRADIO is not set | ||
398 | # CONFIG_IRDA is not set | ||
399 | # CONFIG_BT is not set | ||
400 | # CONFIG_IEEE80211 is not set | ||
401 | |||
402 | # | ||
403 | # Device Drivers | ||
404 | # | ||
405 | |||
406 | # | ||
407 | # Generic Driver Options | ||
408 | # | ||
409 | CONFIG_STANDALONE=y | ||
410 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
411 | # CONFIG_FW_LOADER is not set | ||
412 | # CONFIG_DEBUG_DRIVER is not set | ||
413 | # CONFIG_DEBUG_DEVRES is not set | ||
414 | # CONFIG_SYS_HYPERVISOR is not set | ||
415 | |||
416 | # | ||
417 | # Connector - unified userspace <-> kernelspace linker | ||
418 | # | ||
419 | # CONFIG_CONNECTOR is not set | ||
420 | |||
421 | # | ||
422 | # Memory Technology Devices (MTD) | ||
423 | # | ||
424 | CONFIG_MTD=y | ||
425 | # CONFIG_MTD_DEBUG is not set | ||
426 | # CONFIG_MTD_CONCAT is not set | ||
427 | CONFIG_MTD_PARTITIONS=y | ||
428 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
429 | CONFIG_MTD_CMDLINE_PARTS=y | ||
430 | |||
431 | # | ||
432 | # User Modules And Translation Layers | ||
433 | # | ||
434 | CONFIG_MTD_CHAR=y | ||
435 | CONFIG_MTD_BLKDEVS=y | ||
436 | CONFIG_MTD_BLOCK=y | ||
437 | # CONFIG_FTL is not set | ||
438 | # CONFIG_NFTL is not set | ||
439 | # CONFIG_INFTL is not set | ||
440 | # CONFIG_RFD_FTL is not set | ||
441 | # CONFIG_SSFDC is not set | ||
442 | |||
443 | # | ||
444 | # RAM/ROM/Flash chip drivers | ||
445 | # | ||
446 | CONFIG_MTD_CFI=y | ||
447 | # CONFIG_MTD_JEDECPROBE is not set | ||
448 | CONFIG_MTD_GEN_PROBE=y | ||
449 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
450 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
451 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
452 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
453 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
454 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
455 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
456 | CONFIG_MTD_CFI_I1=y | ||
457 | CONFIG_MTD_CFI_I2=y | ||
458 | # CONFIG_MTD_CFI_I4 is not set | ||
459 | # CONFIG_MTD_CFI_I8 is not set | ||
460 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
461 | CONFIG_MTD_CFI_AMDSTD=y | ||
462 | # CONFIG_MTD_CFI_STAA is not set | ||
463 | CONFIG_MTD_CFI_UTIL=y | ||
464 | # CONFIG_MTD_RAM is not set | ||
465 | # CONFIG_MTD_ROM is not set | ||
466 | # CONFIG_MTD_ABSENT is not set | ||
467 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
468 | |||
469 | # | ||
470 | # Mapping drivers for chip access | ||
471 | # | ||
472 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
473 | CONFIG_MTD_PHYSMAP=y | ||
474 | CONFIG_MTD_PHYSMAP_START=0x80000000 | ||
475 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
476 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
477 | # CONFIG_MTD_PLATRAM is not set | ||
478 | |||
479 | # | ||
480 | # Self-contained MTD device drivers | ||
481 | # | ||
482 | CONFIG_MTD_DATAFLASH=y | ||
483 | # CONFIG_MTD_M25P80 is not set | ||
484 | # CONFIG_MTD_SLRAM is not set | ||
485 | # CONFIG_MTD_PHRAM is not set | ||
486 | # CONFIG_MTD_MTDRAM is not set | ||
487 | # CONFIG_MTD_BLOCK2MTD is not set | ||
488 | |||
489 | # | ||
490 | # Disk-On-Chip Device Drivers | ||
491 | # | ||
492 | # CONFIG_MTD_DOC2000 is not set | ||
493 | # CONFIG_MTD_DOC2001 is not set | ||
494 | # CONFIG_MTD_DOC2001PLUS is not set | ||
495 | |||
496 | # | ||
497 | # NAND Flash Device Drivers | ||
498 | # | ||
499 | # CONFIG_MTD_NAND is not set | ||
500 | |||
501 | # | ||
502 | # OneNAND Flash Device Drivers | ||
503 | # | ||
504 | # CONFIG_MTD_ONENAND is not set | ||
505 | |||
506 | # | ||
507 | # Parallel port support | ||
508 | # | ||
509 | # CONFIG_PARPORT is not set | ||
510 | |||
511 | # | ||
512 | # Plug and Play support | ||
513 | # | ||
514 | # CONFIG_PNPACPI is not set | ||
515 | |||
516 | # | ||
517 | # Block devices | ||
518 | # | ||
519 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
520 | CONFIG_BLK_DEV_LOOP=m | ||
521 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
522 | CONFIG_BLK_DEV_NBD=m | ||
523 | CONFIG_BLK_DEV_RAM=m | ||
524 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
525 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
526 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
527 | # CONFIG_CDROM_PKTCDVD is not set | ||
528 | # CONFIG_ATA_OVER_ETH is not set | ||
529 | |||
530 | # | ||
531 | # Misc devices | ||
532 | # | ||
533 | |||
534 | # | ||
535 | # ATA/ATAPI/MFM/RLL support | ||
536 | # | ||
537 | # CONFIG_IDE is not set | ||
538 | |||
539 | # | ||
540 | # SCSI device support | ||
541 | # | ||
542 | # CONFIG_RAID_ATTRS is not set | ||
543 | # CONFIG_SCSI is not set | ||
544 | # CONFIG_SCSI_NETLINK is not set | ||
545 | |||
546 | # | ||
547 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
548 | # | ||
549 | # CONFIG_ATA is not set | ||
550 | |||
551 | # | ||
552 | # Multi-device support (RAID and LVM) | ||
553 | # | ||
554 | # CONFIG_MD is not set | ||
555 | |||
556 | # | ||
557 | # Fusion MPT device support | ||
558 | # | ||
559 | # CONFIG_FUSION is not set | ||
560 | |||
561 | # | ||
562 | # IEEE 1394 (FireWire) support | ||
563 | # | ||
564 | |||
565 | # | ||
566 | # I2O device support | ||
567 | # | ||
568 | |||
569 | # | ||
570 | # Network device support | ||
571 | # | ||
572 | CONFIG_NETDEVICES=y | ||
573 | # CONFIG_DUMMY is not set | ||
574 | # CONFIG_BONDING is not set | ||
575 | # CONFIG_EQUALIZER is not set | ||
576 | CONFIG_TUN=m | ||
577 | |||
578 | # | ||
579 | # PHY device support | ||
580 | # | ||
581 | # CONFIG_PHYLIB is not set | ||
582 | |||
583 | # | ||
584 | # Ethernet (10 or 100Mbit) | ||
585 | # | ||
586 | CONFIG_NET_ETHERNET=y | ||
587 | CONFIG_MII=y | ||
588 | CONFIG_MACB=y | ||
589 | |||
590 | # | ||
591 | # Ethernet (1000 Mbit) | ||
592 | # | ||
593 | |||
594 | # | ||
595 | # Ethernet (10000 Mbit) | ||
596 | # | ||
597 | |||
598 | # | ||
599 | # Token Ring devices | ||
600 | # | ||
601 | |||
602 | # | ||
603 | # Wireless LAN (non-hamradio) | ||
604 | # | ||
605 | # CONFIG_NET_RADIO is not set | ||
606 | |||
607 | # | ||
608 | # Wan interfaces | ||
609 | # | ||
610 | # CONFIG_WAN is not set | ||
611 | CONFIG_PPP=m | ||
612 | # CONFIG_PPP_MULTILINK is not set | ||
613 | CONFIG_PPP_FILTER=y | ||
614 | CONFIG_PPP_ASYNC=m | ||
615 | # CONFIG_PPP_SYNC_TTY is not set | ||
616 | CONFIG_PPP_DEFLATE=m | ||
617 | CONFIG_PPP_BSDCOMP=m | ||
618 | CONFIG_PPP_MPPE=m | ||
619 | CONFIG_PPPOE=m | ||
620 | # CONFIG_SLIP is not set | ||
621 | CONFIG_SLHC=m | ||
622 | # CONFIG_SHAPER is not set | ||
623 | # CONFIG_NETCONSOLE is not set | ||
624 | # CONFIG_NETPOLL is not set | ||
625 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
626 | |||
627 | # | ||
628 | # ISDN subsystem | ||
629 | # | ||
630 | # CONFIG_ISDN is not set | ||
631 | |||
632 | # | ||
633 | # Telephony Support | ||
634 | # | ||
635 | # CONFIG_PHONE is not set | ||
636 | |||
637 | # | ||
638 | # Input device support | ||
639 | # | ||
640 | # CONFIG_INPUT is not set | ||
641 | |||
642 | # | ||
643 | # Hardware I/O ports | ||
644 | # | ||
645 | # CONFIG_SERIO is not set | ||
646 | # CONFIG_GAMEPORT is not set | ||
647 | |||
648 | # | ||
649 | # Character devices | ||
650 | # | ||
651 | # CONFIG_VT is not set | ||
652 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
653 | |||
654 | # | ||
655 | # Serial drivers | ||
656 | # | ||
657 | # CONFIG_SERIAL_8250 is not set | ||
658 | |||
659 | # | ||
660 | # Non-8250 serial port support | ||
661 | # | ||
662 | CONFIG_SERIAL_ATMEL=y | ||
663 | CONFIG_SERIAL_ATMEL_CONSOLE=y | ||
664 | # CONFIG_SERIAL_ATMEL_TTYAT is not set | ||
665 | CONFIG_SERIAL_CORE=y | ||
666 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
667 | CONFIG_UNIX98_PTYS=y | ||
668 | # CONFIG_LEGACY_PTYS is not set | ||
669 | |||
670 | # | ||
671 | # IPMI | ||
672 | # | ||
673 | # CONFIG_IPMI_HANDLER is not set | ||
674 | |||
675 | # | ||
676 | # Watchdog Cards | ||
677 | # | ||
678 | # CONFIG_WATCHDOG is not set | ||
679 | # CONFIG_HW_RANDOM is not set | ||
680 | # CONFIG_RTC is not set | ||
681 | # CONFIG_GEN_RTC is not set | ||
682 | # CONFIG_DTLK is not set | ||
683 | # CONFIG_R3964 is not set | ||
684 | # CONFIG_RAW_DRIVER is not set | ||
685 | |||
686 | # | ||
687 | # TPM devices | ||
688 | # | ||
689 | # CONFIG_TCG_TPM is not set | ||
690 | |||
691 | # | ||
692 | # I2C support | ||
693 | # | ||
694 | # CONFIG_I2C is not set | ||
695 | |||
696 | # | ||
697 | # SPI support | ||
698 | # | ||
699 | CONFIG_SPI=y | ||
700 | # CONFIG_SPI_DEBUG is not set | ||
701 | CONFIG_SPI_MASTER=y | ||
702 | |||
703 | # | ||
704 | # SPI Master Controller Drivers | ||
705 | # | ||
706 | CONFIG_SPI_ATMEL=y | ||
707 | # CONFIG_SPI_BITBANG is not set | ||
708 | |||
709 | # | ||
710 | # SPI Protocol Masters | ||
711 | # | ||
712 | # CONFIG_SPI_AT25 is not set | ||
713 | |||
714 | # | ||
715 | # Dallas's 1-wire bus | ||
716 | # | ||
717 | # CONFIG_W1 is not set | ||
718 | |||
719 | # | ||
720 | # Hardware Monitoring support | ||
721 | # | ||
722 | # CONFIG_HWMON is not set | ||
723 | # CONFIG_HWMON_VID is not set | ||
724 | |||
725 | # | ||
726 | # Multifunction device drivers | ||
727 | # | ||
728 | # CONFIG_MFD_SM501 is not set | ||
729 | |||
730 | # | ||
731 | # Multimedia devices | ||
732 | # | ||
733 | # CONFIG_VIDEO_DEV is not set | ||
734 | |||
735 | # | ||
736 | # Digital Video Broadcasting Devices | ||
737 | # | ||
738 | # CONFIG_DVB is not set | ||
739 | |||
740 | # | ||
741 | # Graphics support | ||
742 | # | ||
743 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
744 | # CONFIG_FB is not set | ||
745 | |||
746 | # | ||
747 | # Sound | ||
748 | # | ||
749 | # CONFIG_SOUND is not set | ||
750 | |||
751 | # | ||
752 | # USB support | ||
753 | # | ||
754 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
755 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
756 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
757 | |||
758 | # | ||
759 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
760 | # | ||
761 | |||
762 | # | ||
763 | # USB Gadget Support | ||
764 | # | ||
765 | # CONFIG_USB_GADGET is not set | ||
766 | |||
767 | # | ||
768 | # MMC/SD Card support | ||
769 | # | ||
770 | # CONFIG_MMC is not set | ||
771 | |||
772 | # | ||
773 | # LED devices | ||
774 | # | ||
775 | # CONFIG_NEW_LEDS is not set | ||
776 | |||
777 | # | ||
778 | # LED drivers | ||
779 | # | ||
780 | |||
781 | # | ||
782 | # LED Triggers | ||
783 | # | ||
784 | |||
785 | # | ||
786 | # InfiniBand support | ||
787 | # | ||
788 | |||
789 | # | ||
790 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
791 | # | ||
792 | |||
793 | # | ||
794 | # Real Time Clock | ||
795 | # | ||
796 | # CONFIG_RTC_CLASS is not set | ||
797 | |||
798 | # | ||
799 | # DMA Engine support | ||
800 | # | ||
801 | # CONFIG_DMA_ENGINE is not set | ||
802 | |||
803 | # | ||
804 | # DMA Clients | ||
805 | # | ||
806 | |||
807 | # | ||
808 | # DMA Devices | ||
809 | # | ||
810 | |||
811 | # | ||
812 | # Auxiliary Display support | ||
813 | # | ||
814 | |||
815 | # | ||
816 | # Virtualization | ||
817 | # | ||
818 | |||
819 | # | ||
820 | # File systems | ||
821 | # | ||
822 | CONFIG_EXT2_FS=y | ||
823 | # CONFIG_EXT2_FS_XATTR is not set | ||
824 | # CONFIG_EXT2_FS_XIP is not set | ||
825 | CONFIG_EXT3_FS=y | ||
826 | # CONFIG_EXT3_FS_XATTR is not set | ||
827 | # CONFIG_EXT4DEV_FS is not set | ||
828 | CONFIG_JBD=y | ||
829 | # CONFIG_JBD_DEBUG is not set | ||
830 | # CONFIG_REISERFS_FS is not set | ||
831 | # CONFIG_JFS_FS is not set | ||
832 | # CONFIG_FS_POSIX_ACL is not set | ||
833 | # CONFIG_XFS_FS is not set | ||
834 | # CONFIG_GFS2_FS is not set | ||
835 | # CONFIG_OCFS2_FS is not set | ||
836 | # CONFIG_MINIX_FS is not set | ||
837 | # CONFIG_ROMFS_FS is not set | ||
838 | # CONFIG_INOTIFY is not set | ||
839 | # CONFIG_QUOTA is not set | ||
840 | # CONFIG_DNOTIFY is not set | ||
841 | # CONFIG_AUTOFS_FS is not set | ||
842 | # CONFIG_AUTOFS4_FS is not set | ||
843 | CONFIG_FUSE_FS=m | ||
844 | |||
845 | # | ||
846 | # CD-ROM/DVD Filesystems | ||
847 | # | ||
848 | # CONFIG_ISO9660_FS is not set | ||
849 | # CONFIG_UDF_FS is not set | ||
850 | |||
851 | # | ||
852 | # DOS/FAT/NT Filesystems | ||
853 | # | ||
854 | CONFIG_FAT_FS=m | ||
855 | CONFIG_MSDOS_FS=m | ||
856 | CONFIG_VFAT_FS=m | ||
857 | CONFIG_FAT_DEFAULT_CODEPAGE=850 | ||
858 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
859 | # CONFIG_NTFS_FS is not set | ||
860 | |||
861 | # | ||
862 | # Pseudo filesystems | ||
863 | # | ||
864 | CONFIG_PROC_FS=y | ||
865 | # CONFIG_PROC_KCORE is not set | ||
866 | CONFIG_PROC_SYSCTL=y | ||
867 | CONFIG_SYSFS=y | ||
868 | CONFIG_TMPFS=y | ||
869 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
870 | # CONFIG_HUGETLB_PAGE is not set | ||
871 | CONFIG_RAMFS=y | ||
872 | CONFIG_CONFIGFS_FS=y | ||
873 | |||
874 | # | ||
875 | # Miscellaneous filesystems | ||
876 | # | ||
877 | # CONFIG_ADFS_FS is not set | ||
878 | # CONFIG_AFFS_FS is not set | ||
879 | # CONFIG_HFS_FS is not set | ||
880 | # CONFIG_HFSPLUS_FS is not set | ||
881 | # CONFIG_BEFS_FS is not set | ||
882 | # CONFIG_BFS_FS is not set | ||
883 | # CONFIG_EFS_FS is not set | ||
884 | CONFIG_JFFS2_FS=y | ||
885 | CONFIG_JFFS2_FS_DEBUG=0 | ||
886 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
887 | # CONFIG_JFFS2_SUMMARY is not set | ||
888 | # CONFIG_JFFS2_FS_XATTR is not set | ||
889 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
890 | CONFIG_JFFS2_ZLIB=y | ||
891 | CONFIG_JFFS2_RTIME=y | ||
892 | # CONFIG_JFFS2_RUBIN is not set | ||
893 | # CONFIG_CRAMFS is not set | ||
894 | # CONFIG_VXFS_FS is not set | ||
895 | # CONFIG_HPFS_FS is not set | ||
896 | # CONFIG_QNX4FS_FS is not set | ||
897 | # CONFIG_SYSV_FS is not set | ||
898 | # CONFIG_UFS_FS is not set | ||
899 | |||
900 | # | ||
901 | # Network File Systems | ||
902 | # | ||
903 | CONFIG_NFS_FS=y | ||
904 | CONFIG_NFS_V3=y | ||
905 | # CONFIG_NFS_V3_ACL is not set | ||
906 | # CONFIG_NFS_V4 is not set | ||
907 | # CONFIG_NFS_DIRECTIO is not set | ||
908 | # CONFIG_NFSD is not set | ||
909 | CONFIG_ROOT_NFS=y | ||
910 | CONFIG_LOCKD=y | ||
911 | CONFIG_LOCKD_V4=y | ||
912 | CONFIG_NFS_COMMON=y | ||
913 | CONFIG_SUNRPC=y | ||
914 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
915 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
916 | CONFIG_SMB_FS=m | ||
917 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
918 | CONFIG_CIFS=m | ||
919 | # CONFIG_CIFS_STATS is not set | ||
920 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
921 | # CONFIG_CIFS_XATTR is not set | ||
922 | # CONFIG_CIFS_DEBUG2 is not set | ||
923 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
924 | # CONFIG_NCP_FS is not set | ||
925 | # CONFIG_CODA_FS is not set | ||
926 | # CONFIG_AFS_FS is not set | ||
927 | # CONFIG_9P_FS is not set | ||
928 | |||
929 | # | ||
930 | # Partition Types | ||
931 | # | ||
932 | # CONFIG_PARTITION_ADVANCED is not set | ||
933 | CONFIG_MSDOS_PARTITION=y | ||
934 | |||
935 | # | ||
936 | # Native Language Support | ||
937 | # | ||
938 | CONFIG_NLS=y | ||
939 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
940 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
941 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
942 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
943 | CONFIG_NLS_CODEPAGE_850=y | ||
944 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
945 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
946 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
947 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
948 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
949 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
950 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
951 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
952 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
953 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
954 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
955 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
956 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
957 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
958 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
959 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
960 | # CONFIG_NLS_ISO8859_8 is not set | ||
961 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
962 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
963 | # CONFIG_NLS_ASCII is not set | ||
964 | CONFIG_NLS_ISO8859_1=y | ||
965 | # CONFIG_NLS_ISO8859_2 is not set | ||
966 | # CONFIG_NLS_ISO8859_3 is not set | ||
967 | # CONFIG_NLS_ISO8859_4 is not set | ||
968 | # CONFIG_NLS_ISO8859_5 is not set | ||
969 | # CONFIG_NLS_ISO8859_6 is not set | ||
970 | # CONFIG_NLS_ISO8859_7 is not set | ||
971 | # CONFIG_NLS_ISO8859_9 is not set | ||
972 | # CONFIG_NLS_ISO8859_13 is not set | ||
973 | # CONFIG_NLS_ISO8859_14 is not set | ||
974 | # CONFIG_NLS_ISO8859_15 is not set | ||
975 | # CONFIG_NLS_KOI8_R is not set | ||
976 | # CONFIG_NLS_KOI8_U is not set | ||
977 | CONFIG_NLS_UTF8=y | ||
978 | |||
979 | # | ||
980 | # Distributed Lock Manager | ||
981 | # | ||
982 | # CONFIG_DLM is not set | ||
983 | |||
984 | # | ||
985 | # Kernel hacking | ||
986 | # | ||
987 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
988 | # CONFIG_PRINTK_TIME is not set | ||
989 | CONFIG_ENABLE_MUST_CHECK=y | ||
990 | CONFIG_MAGIC_SYSRQ=y | ||
991 | # CONFIG_UNUSED_SYMBOLS is not set | ||
992 | # CONFIG_DEBUG_FS is not set | ||
993 | # CONFIG_HEADERS_CHECK is not set | ||
994 | CONFIG_DEBUG_KERNEL=y | ||
995 | # CONFIG_DEBUG_SHIRQ is not set | ||
996 | CONFIG_LOG_BUF_SHIFT=14 | ||
997 | CONFIG_DETECT_SOFTLOCKUP=y | ||
998 | # CONFIG_SCHEDSTATS is not set | ||
999 | # CONFIG_TIMER_STATS is not set | ||
1000 | # CONFIG_DEBUG_SLAB is not set | ||
1001 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1002 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1003 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1004 | # CONFIG_DEBUG_MUTEXES is not set | ||
1005 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1006 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1007 | # CONFIG_DEBUG_KOBJECT is not set | ||
1008 | CONFIG_DEBUG_BUGVERBOSE=y | ||
1009 | # CONFIG_DEBUG_INFO is not set | ||
1010 | # CONFIG_DEBUG_VM is not set | ||
1011 | # CONFIG_DEBUG_LIST is not set | ||
1012 | CONFIG_FRAME_POINTER=y | ||
1013 | # CONFIG_FORCED_INLINING is not set | ||
1014 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1015 | # CONFIG_FAULT_INJECTION is not set | ||
1016 | # CONFIG_KPROBES is not set | ||
1017 | |||
1018 | # | ||
1019 | # Security options | ||
1020 | # | ||
1021 | # CONFIG_KEYS is not set | ||
1022 | # CONFIG_SECURITY is not set | ||
1023 | |||
1024 | # | ||
1025 | # Cryptographic options | ||
1026 | # | ||
1027 | CONFIG_CRYPTO=y | ||
1028 | CONFIG_CRYPTO_ALGAPI=y | ||
1029 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1030 | CONFIG_CRYPTO_HASH=y | ||
1031 | CONFIG_CRYPTO_MANAGER=y | ||
1032 | CONFIG_CRYPTO_HMAC=y | ||
1033 | # CONFIG_CRYPTO_XCBC is not set | ||
1034 | # CONFIG_CRYPTO_NULL is not set | ||
1035 | # CONFIG_CRYPTO_MD4 is not set | ||
1036 | CONFIG_CRYPTO_MD5=y | ||
1037 | CONFIG_CRYPTO_SHA1=y | ||
1038 | # CONFIG_CRYPTO_SHA256 is not set | ||
1039 | # CONFIG_CRYPTO_SHA512 is not set | ||
1040 | # CONFIG_CRYPTO_WP512 is not set | ||
1041 | # CONFIG_CRYPTO_TGR192 is not set | ||
1042 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1043 | CONFIG_CRYPTO_ECB=m | ||
1044 | CONFIG_CRYPTO_CBC=y | ||
1045 | CONFIG_CRYPTO_PCBC=m | ||
1046 | # CONFIG_CRYPTO_LRW is not set | ||
1047 | CONFIG_CRYPTO_DES=y | ||
1048 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1049 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1050 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1051 | # CONFIG_CRYPTO_SERPENT is not set | ||
1052 | # CONFIG_CRYPTO_AES is not set | ||
1053 | # CONFIG_CRYPTO_CAST5 is not set | ||
1054 | # CONFIG_CRYPTO_CAST6 is not set | ||
1055 | # CONFIG_CRYPTO_TEA is not set | ||
1056 | CONFIG_CRYPTO_ARC4=m | ||
1057 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1058 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1059 | CONFIG_CRYPTO_DEFLATE=y | ||
1060 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1061 | # CONFIG_CRYPTO_CRC32C is not set | ||
1062 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1063 | # CONFIG_CRYPTO_TEST is not set | ||
1064 | |||
1065 | # | ||
1066 | # Hardware crypto devices | ||
1067 | # | ||
1068 | |||
1069 | # | ||
1070 | # Library routines | ||
1071 | # | ||
1072 | CONFIG_BITREVERSE=y | ||
1073 | CONFIG_CRC_CCITT=m | ||
1074 | # CONFIG_CRC16 is not set | ||
1075 | CONFIG_CRC32=y | ||
1076 | # CONFIG_LIBCRC32C is not set | ||
1077 | CONFIG_ZLIB_INFLATE=y | ||
1078 | CONFIG_ZLIB_DEFLATE=y | ||
1079 | CONFIG_TEXTSEARCH=y | ||
1080 | CONFIG_TEXTSEARCH_KMP=m | ||
1081 | CONFIG_TEXTSEARCH_BM=m | ||
1082 | CONFIG_TEXTSEARCH_FSM=m | ||
1083 | CONFIG_PLIST=y | ||
1084 | CONFIG_HAS_IOMEM=y | ||
1085 | CONFIG_HAS_IOPORT=y | ||
diff --git a/arch/avr32/kernel/cpu.c b/arch/avr32/kernel/cpu.c index 2e72fd2699df..2714cf6452b5 100644 --- a/arch/avr32/kernel/cpu.c +++ b/arch/avr32/kernel/cpu.c | |||
@@ -209,16 +209,17 @@ static const char *mmu_types[] = { | |||
209 | void __init setup_processor(void) | 209 | void __init setup_processor(void) |
210 | { | 210 | { |
211 | unsigned long config0, config1; | 211 | unsigned long config0, config1; |
212 | unsigned long features; | ||
212 | unsigned cpu_id, cpu_rev, arch_id, arch_rev, mmu_type; | 213 | unsigned cpu_id, cpu_rev, arch_id, arch_rev, mmu_type; |
213 | unsigned tmp; | 214 | unsigned tmp; |
214 | 215 | ||
215 | config0 = sysreg_read(CONFIG0); /* 0x0000013e; */ | 216 | config0 = sysreg_read(CONFIG0); |
216 | config1 = sysreg_read(CONFIG1); /* 0x01f689a2; */ | 217 | config1 = sysreg_read(CONFIG1); |
217 | cpu_id = config0 >> 24; | 218 | cpu_id = SYSREG_BFEXT(PROCESSORID, config0); |
218 | cpu_rev = (config0 >> 16) & 0xff; | 219 | cpu_rev = SYSREG_BFEXT(PROCESSORREVISION, config0); |
219 | arch_id = (config0 >> 13) & 0x07; | 220 | arch_id = SYSREG_BFEXT(AT, config0); |
220 | arch_rev = (config0 >> 10) & 0x07; | 221 | arch_rev = SYSREG_BFEXT(AR, config0); |
221 | mmu_type = (config0 >> 7) & 0x03; | 222 | mmu_type = SYSREG_BFEXT(MMUT, config0); |
222 | 223 | ||
223 | boot_cpu_data.arch_type = arch_id; | 224 | boot_cpu_data.arch_type = arch_id; |
224 | boot_cpu_data.cpu_type = cpu_id; | 225 | boot_cpu_data.cpu_type = cpu_id; |
@@ -226,16 +227,16 @@ void __init setup_processor(void) | |||
226 | boot_cpu_data.cpu_revision = cpu_rev; | 227 | boot_cpu_data.cpu_revision = cpu_rev; |
227 | boot_cpu_data.tlb_config = mmu_type; | 228 | boot_cpu_data.tlb_config = mmu_type; |
228 | 229 | ||
229 | tmp = (config1 >> 13) & 0x07; | 230 | tmp = SYSREG_BFEXT(ILSZ, config1); |
230 | if (tmp) { | 231 | if (tmp) { |
231 | boot_cpu_data.icache.ways = 1 << ((config1 >> 10) & 0x07); | 232 | boot_cpu_data.icache.ways = 1 << SYSREG_BFEXT(IASS, config1); |
232 | boot_cpu_data.icache.sets = 1 << ((config1 >> 16) & 0x0f); | 233 | boot_cpu_data.icache.sets = 1 << SYSREG_BFEXT(ISET, config1); |
233 | boot_cpu_data.icache.linesz = 1 << (tmp + 1); | 234 | boot_cpu_data.icache.linesz = 1 << (tmp + 1); |
234 | } | 235 | } |
235 | tmp = (config1 >> 3) & 0x07; | 236 | tmp = SYSREG_BFEXT(DLSZ, config1); |
236 | if (tmp) { | 237 | if (tmp) { |
237 | boot_cpu_data.dcache.ways = 1 << (config1 & 0x07); | 238 | boot_cpu_data.dcache.ways = 1 << SYSREG_BFEXT(DASS, config1); |
238 | boot_cpu_data.dcache.sets = 1 << ((config1 >> 6) & 0x0f); | 239 | boot_cpu_data.dcache.sets = 1 << SYSREG_BFEXT(DSET, config1); |
239 | boot_cpu_data.dcache.linesz = 1 << (tmp + 1); | 240 | boot_cpu_data.dcache.linesz = 1 << (tmp + 1); |
240 | } | 241 | } |
241 | 242 | ||
@@ -250,16 +251,39 @@ void __init setup_processor(void) | |||
250 | cpu_names[cpu_id], cpu_id, cpu_rev, | 251 | cpu_names[cpu_id], cpu_id, cpu_rev, |
251 | arch_names[arch_id], arch_rev); | 252 | arch_names[arch_id], arch_rev); |
252 | printk ("CPU: MMU configuration: %s\n", mmu_types[mmu_type]); | 253 | printk ("CPU: MMU configuration: %s\n", mmu_types[mmu_type]); |
254 | |||
253 | printk ("CPU: features:"); | 255 | printk ("CPU: features:"); |
254 | if (config0 & (1 << 6)) | 256 | features = 0; |
255 | printk(" fpu"); | 257 | if (config0 & SYSREG_BIT(CONFIG0_R)) { |
256 | if (config0 & (1 << 5)) | 258 | features |= AVR32_FEATURE_RMW; |
257 | printk(" java"); | 259 | printk(" rmw"); |
258 | if (config0 & (1 << 4)) | 260 | } |
259 | printk(" perfctr"); | 261 | if (config0 & SYSREG_BIT(CONFIG0_D)) { |
260 | if (config0 & (1 << 3)) | 262 | features |= AVR32_FEATURE_DSP; |
263 | printk(" dsp"); | ||
264 | } | ||
265 | if (config0 & SYSREG_BIT(CONFIG0_S)) { | ||
266 | features |= AVR32_FEATURE_SIMD; | ||
267 | printk(" simd"); | ||
268 | } | ||
269 | if (config0 & SYSREG_BIT(CONFIG0_O)) { | ||
270 | features |= AVR32_FEATURE_OCD; | ||
261 | printk(" ocd"); | 271 | printk(" ocd"); |
272 | } | ||
273 | if (config0 & SYSREG_BIT(CONFIG0_P)) { | ||
274 | features |= AVR32_FEATURE_PCTR; | ||
275 | printk(" perfctr"); | ||
276 | } | ||
277 | if (config0 & SYSREG_BIT(CONFIG0_J)) { | ||
278 | features |= AVR32_FEATURE_JAVA; | ||
279 | printk(" java"); | ||
280 | } | ||
281 | if (config0 & SYSREG_BIT(CONFIG0_F)) { | ||
282 | features |= AVR32_FEATURE_FPU; | ||
283 | printk(" fpu"); | ||
284 | } | ||
262 | printk("\n"); | 285 | printk("\n"); |
286 | boot_cpu_data.features = features; | ||
263 | } | 287 | } |
264 | 288 | ||
265 | #ifdef CONFIG_PROC_FS | 289 | #ifdef CONFIG_PROC_FS |
diff --git a/arch/avr32/kernel/entry-avr32b.S b/arch/avr32/kernel/entry-avr32b.S index eeb66792bc37..42657f1703b2 100644 --- a/arch/avr32/kernel/entry-avr32b.S +++ b/arch/avr32/kernel/entry-avr32b.S | |||
@@ -100,55 +100,49 @@ dtlb_miss_write: | |||
100 | 100 | ||
101 | .global tlb_miss_common | 101 | .global tlb_miss_common |
102 | tlb_miss_common: | 102 | tlb_miss_common: |
103 | mfsr r0, SYSREG_PTBR | 103 | mfsr r0, SYSREG_TLBEAR |
104 | mfsr r1, SYSREG_TLBEAR | 104 | mfsr r1, SYSREG_PTBR |
105 | 105 | ||
106 | /* Is it the vmalloc space? */ | 106 | /* Is it the vmalloc space? */ |
107 | bld r1, 31 | 107 | bld r0, 31 |
108 | brcs handle_vmalloc_miss | 108 | brcs handle_vmalloc_miss |
109 | 109 | ||
110 | /* First level lookup */ | 110 | /* First level lookup */ |
111 | pgtbl_lookup: | 111 | pgtbl_lookup: |
112 | lsr r2, r1, PGDIR_SHIFT | 112 | lsr r2, r0, PGDIR_SHIFT |
113 | ld.w r0, r0[r2 << 2] | 113 | ld.w r3, r1[r2 << 2] |
114 | bld r0, _PAGE_BIT_PRESENT | 114 | bfextu r1, r0, PAGE_SHIFT, PGDIR_SHIFT - PAGE_SHIFT |
115 | bld r3, _PAGE_BIT_PRESENT | ||
115 | brcc page_table_not_present | 116 | brcc page_table_not_present |
116 | 117 | ||
117 | /* TODO: Check access rights on page table if necessary */ | ||
118 | |||
119 | /* Translate to virtual address in P1. */ | 118 | /* Translate to virtual address in P1. */ |
120 | andl r0, 0xf000 | 119 | andl r3, 0xf000 |
121 | sbr r0, 31 | 120 | sbr r3, 31 |
122 | 121 | ||
123 | /* Second level lookup */ | 122 | /* Second level lookup */ |
124 | lsl r1, (32 - PGDIR_SHIFT) | 123 | ld.w r2, r3[r1 << 2] |
125 | lsr r1, (32 - PGDIR_SHIFT) + PAGE_SHIFT | 124 | mfsr r0, SYSREG_TLBARLO |
126 | add r2, r0, r1 << 2 | 125 | bld r2, _PAGE_BIT_PRESENT |
127 | ld.w r1, r2[0] | ||
128 | bld r1, _PAGE_BIT_PRESENT | ||
129 | brcc page_not_present | 126 | brcc page_not_present |
130 | 127 | ||
131 | /* Mark the page as accessed */ | 128 | /* Mark the page as accessed */ |
132 | sbr r1, _PAGE_BIT_ACCESSED | 129 | sbr r2, _PAGE_BIT_ACCESSED |
133 | st.w r2[0], r1 | 130 | st.w r3[r1 << 2], r2 |
134 | 131 | ||
135 | /* Drop software flags */ | 132 | /* Drop software flags */ |
136 | andl r1, _PAGE_FLAGS_HARDWARE_MASK & 0xffff | 133 | andl r2, _PAGE_FLAGS_HARDWARE_MASK & 0xffff |
137 | mtsr SYSREG_TLBELO, r1 | 134 | mtsr SYSREG_TLBELO, r2 |
138 | 135 | ||
139 | /* Figure out which entry we want to replace */ | 136 | /* Figure out which entry we want to replace */ |
140 | mfsr r0, SYSREG_TLBARLO | 137 | mfsr r1, SYSREG_MMUCR |
141 | clz r2, r0 | 138 | clz r2, r0 |
142 | brcc 1f | 139 | brcc 1f |
143 | mov r1, -1 /* All entries have been accessed, */ | 140 | mov r3, -1 /* All entries have been accessed, */ |
144 | mtsr SYSREG_TLBARLO, r1 /* so reset TLBAR */ | 141 | mov r2, 0 /* so start at 0 */ |
145 | mov r2, 0 /* and start at 0 */ | 142 | mtsr SYSREG_TLBARLO, r3 /* and reset TLBAR */ |
146 | 1: mfsr r1, SYSREG_MMUCR | ||
147 | lsl r2, 14 | ||
148 | andl r1, 0x3fff, COH | ||
149 | or r1, r2 | ||
150 | mtsr SYSREG_MMUCR, r1 | ||
151 | 143 | ||
144 | 1: bfins r1, r2, SYSREG_DRP_OFFSET, SYSREG_DRP_SIZE | ||
145 | mtsr SYSREG_MMUCR, r1 | ||
152 | tlbw | 146 | tlbw |
153 | 147 | ||
154 | tlbmiss_restore | 148 | tlbmiss_restore |
@@ -156,8 +150,8 @@ pgtbl_lookup: | |||
156 | 150 | ||
157 | handle_vmalloc_miss: | 151 | handle_vmalloc_miss: |
158 | /* Simply do the lookup in init's page table */ | 152 | /* Simply do the lookup in init's page table */ |
159 | mov r0, lo(swapper_pg_dir) | 153 | mov r1, lo(swapper_pg_dir) |
160 | orh r0, hi(swapper_pg_dir) | 154 | orh r1, hi(swapper_pg_dir) |
161 | rjmp pgtbl_lookup | 155 | rjmp pgtbl_lookup |
162 | 156 | ||
163 | 157 | ||
@@ -340,12 +334,34 @@ do_bus_error_read: | |||
340 | do_nmi_ll: | 334 | do_nmi_ll: |
341 | sub sp, 4 | 335 | sub sp, 4 |
342 | stmts --sp, r0-lr | 336 | stmts --sp, r0-lr |
343 | /* FIXME: Make sure RAR_NMI and RSR_NMI are pushed instead of *_EX */ | 337 | mfsr r9, SYSREG_RSR_NMI |
344 | rcall save_full_context_ex | 338 | mfsr r8, SYSREG_RAR_NMI |
339 | bfextu r0, r9, MODE_SHIFT, 3 | ||
340 | brne 2f | ||
341 | |||
342 | 1: pushm r8, r9 /* PC and SR */ | ||
345 | mfsr r12, SYSREG_ECR | 343 | mfsr r12, SYSREG_ECR |
346 | mov r11, sp | 344 | mov r11, sp |
347 | rcall do_nmi | 345 | rcall do_nmi |
348 | rjmp bad_return | 346 | popm r8-r9 |
347 | mtsr SYSREG_RAR_NMI, r8 | ||
348 | tst r0, r0 | ||
349 | mtsr SYSREG_RSR_NMI, r9 | ||
350 | brne 3f | ||
351 | |||
352 | ldmts sp++, r0-lr | ||
353 | sub sp, -4 /* skip r12_orig */ | ||
354 | rete | ||
355 | |||
356 | 2: sub r10, sp, -(FRAME_SIZE_FULL - REG_LR) | ||
357 | stdsp sp[4], r10 /* replace saved SP */ | ||
358 | rjmp 1b | ||
359 | |||
360 | 3: popm lr | ||
361 | sub sp, -4 /* skip sp */ | ||
362 | popm r0-r12 | ||
363 | sub sp, -4 /* skip r12_orig */ | ||
364 | rete | ||
349 | 365 | ||
350 | handle_address_fault: | 366 | handle_address_fault: |
351 | sub sp, 4 | 367 | sub sp, 4 |
@@ -630,9 +646,12 @@ irq_level\level: | |||
630 | rcall do_IRQ | 646 | rcall do_IRQ |
631 | 647 | ||
632 | lddsp r4, sp[REG_SR] | 648 | lddsp r4, sp[REG_SR] |
633 | andh r4, (MODE_MASK >> 16), COH | 649 | bfextu r4, r4, SYSREG_M0_OFFSET, 3 |
650 | cp.w r4, MODE_SUPERVISOR >> SYSREG_M0_OFFSET | ||
651 | breq 2f | ||
652 | cp.w r4, MODE_USER >> SYSREG_M0_OFFSET | ||
634 | #ifdef CONFIG_PREEMPT | 653 | #ifdef CONFIG_PREEMPT |
635 | brne 2f | 654 | brne 3f |
636 | #else | 655 | #else |
637 | brne 1f | 656 | brne 1f |
638 | #endif | 657 | #endif |
@@ -649,9 +668,18 @@ irq_level\level: | |||
649 | sub sp, -4 /* ignore r12_orig */ | 668 | sub sp, -4 /* ignore r12_orig */ |
650 | rete | 669 | rete |
651 | 670 | ||
671 | 2: get_thread_info r0 | ||
672 | ld.w r1, r0[TI_flags] | ||
673 | bld r1, TIF_CPU_GOING_TO_SLEEP | ||
652 | #ifdef CONFIG_PREEMPT | 674 | #ifdef CONFIG_PREEMPT |
653 | 2: | 675 | brcc 3f |
654 | get_thread_info r0 | 676 | #else |
677 | brcc 1b | ||
678 | #endif | ||
679 | sub r1, pc, . - cpu_idle_skip_sleep | ||
680 | stdsp sp[REG_PC], r1 | ||
681 | #ifdef CONFIG_PREEMPT | ||
682 | 3: get_thread_info r0 | ||
655 | ld.w r2, r0[TI_preempt_count] | 683 | ld.w r2, r0[TI_preempt_count] |
656 | cp.w r2, 0 | 684 | cp.w r2, 0 |
657 | brne 1b | 685 | brne 1b |
@@ -662,12 +690,32 @@ irq_level\level: | |||
662 | bld r4, SYSREG_GM_OFFSET | 690 | bld r4, SYSREG_GM_OFFSET |
663 | brcs 1b | 691 | brcs 1b |
664 | rcall preempt_schedule_irq | 692 | rcall preempt_schedule_irq |
665 | rjmp 1b | ||
666 | #endif | 693 | #endif |
694 | rjmp 1b | ||
667 | .endm | 695 | .endm |
668 | 696 | ||
669 | .section .irq.text,"ax",@progbits | 697 | .section .irq.text,"ax",@progbits |
670 | 698 | ||
699 | .global cpu_idle_sleep | ||
700 | cpu_idle_sleep: | ||
701 | mask_interrupts | ||
702 | get_thread_info r8 | ||
703 | ld.w r9, r8[TI_flags] | ||
704 | bld r9, TIF_NEED_RESCHED | ||
705 | brcs cpu_idle_enable_int_and_exit | ||
706 | sbr r9, TIF_CPU_GOING_TO_SLEEP | ||
707 | st.w r8[TI_flags], r9 | ||
708 | unmask_interrupts | ||
709 | sleep 0 | ||
710 | cpu_idle_skip_sleep: | ||
711 | mask_interrupts | ||
712 | ld.w r9, r8[TI_flags] | ||
713 | cbr r9, TIF_CPU_GOING_TO_SLEEP | ||
714 | st.w r8[TI_flags], r9 | ||
715 | cpu_idle_enable_int_and_exit: | ||
716 | unmask_interrupts | ||
717 | retal r12 | ||
718 | |||
671 | .global irq_level0 | 719 | .global irq_level0 |
672 | .global irq_level1 | 720 | .global irq_level1 |
673 | .global irq_level2 | 721 | .global irq_level2 |
diff --git a/arch/avr32/kernel/module.c b/arch/avr32/kernel/module.c index b599eae64576..1167fe9cf6c4 100644 --- a/arch/avr32/kernel/module.c +++ b/arch/avr32/kernel/module.c | |||
@@ -12,10 +12,11 @@ | |||
12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <linux/moduleloader.h> | 15 | #include <linux/bug.h> |
16 | #include <linux/module.h> | ||
17 | #include <linux/kernel.h> | ||
18 | #include <linux/elf.h> | 16 | #include <linux/elf.h> |
17 | #include <linux/kernel.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/moduleloader.h> | ||
19 | #include <linux/vmalloc.h> | 20 | #include <linux/vmalloc.h> |
20 | 21 | ||
21 | void *module_alloc(unsigned long size) | 22 | void *module_alloc(unsigned long size) |
@@ -315,10 +316,10 @@ int module_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs, | |||
315 | vfree(module->arch.syminfo); | 316 | vfree(module->arch.syminfo); |
316 | module->arch.syminfo = NULL; | 317 | module->arch.syminfo = NULL; |
317 | 318 | ||
318 | return 0; | 319 | return module_bug_finalize(hdr, sechdrs, module); |
319 | } | 320 | } |
320 | 321 | ||
321 | void module_arch_cleanup(struct module *module) | 322 | void module_arch_cleanup(struct module *module) |
322 | { | 323 | { |
323 | 324 | module_bug_cleanup(module); | |
324 | } | 325 | } |
diff --git a/arch/avr32/kernel/process.c b/arch/avr32/kernel/process.c index 0b4325946a41..4e4181ed1c6d 100644 --- a/arch/avr32/kernel/process.c +++ b/arch/avr32/kernel/process.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/fs.h> | 11 | #include <linux/fs.h> |
12 | #include <linux/ptrace.h> | 12 | #include <linux/ptrace.h> |
13 | #include <linux/reboot.h> | 13 | #include <linux/reboot.h> |
14 | #include <linux/uaccess.h> | ||
14 | #include <linux/unistd.h> | 15 | #include <linux/unistd.h> |
15 | 16 | ||
16 | #include <asm/sysreg.h> | 17 | #include <asm/sysreg.h> |
@@ -19,6 +20,8 @@ | |||
19 | void (*pm_power_off)(void) = NULL; | 20 | void (*pm_power_off)(void) = NULL; |
20 | EXPORT_SYMBOL(pm_power_off); | 21 | EXPORT_SYMBOL(pm_power_off); |
21 | 22 | ||
23 | extern void cpu_idle_sleep(void); | ||
24 | |||
22 | /* | 25 | /* |
23 | * This file handles the architecture-dependent parts of process handling.. | 26 | * This file handles the architecture-dependent parts of process handling.. |
24 | */ | 27 | */ |
@@ -27,9 +30,8 @@ void cpu_idle(void) | |||
27 | { | 30 | { |
28 | /* endless idle loop with no priority at all */ | 31 | /* endless idle loop with no priority at all */ |
29 | while (1) { | 32 | while (1) { |
30 | /* TODO: Enter sleep mode */ | ||
31 | while (!need_resched()) | 33 | while (!need_resched()) |
32 | cpu_relax(); | 34 | cpu_idle_sleep(); |
33 | preempt_enable_no_resched(); | 35 | preempt_enable_no_resched(); |
34 | schedule(); | 36 | schedule(); |
35 | preempt_disable(); | 37 | preempt_disable(); |
@@ -114,39 +116,178 @@ void release_thread(struct task_struct *dead_task) | |||
114 | /* do nothing */ | 116 | /* do nothing */ |
115 | } | 117 | } |
116 | 118 | ||
119 | static void dump_mem(const char *str, const char *log_lvl, | ||
120 | unsigned long bottom, unsigned long top) | ||
121 | { | ||
122 | unsigned long p; | ||
123 | int i; | ||
124 | |||
125 | printk("%s%s(0x%08lx to 0x%08lx)\n", log_lvl, str, bottom, top); | ||
126 | |||
127 | for (p = bottom & ~31; p < top; ) { | ||
128 | printk("%s%04lx: ", log_lvl, p & 0xffff); | ||
129 | |||
130 | for (i = 0; i < 8; i++, p += 4) { | ||
131 | unsigned int val; | ||
132 | |||
133 | if (p < bottom || p >= top) | ||
134 | printk(" "); | ||
135 | else { | ||
136 | if (__get_user(val, (unsigned int __user *)p)) { | ||
137 | printk("\n"); | ||
138 | goto out; | ||
139 | } | ||
140 | printk("%08x ", val); | ||
141 | } | ||
142 | } | ||
143 | printk("\n"); | ||
144 | } | ||
145 | |||
146 | out: | ||
147 | return; | ||
148 | } | ||
149 | |||
150 | static inline int valid_stack_ptr(struct thread_info *tinfo, unsigned long p) | ||
151 | { | ||
152 | return (p > (unsigned long)tinfo) | ||
153 | && (p < (unsigned long)tinfo + THREAD_SIZE - 3); | ||
154 | } | ||
155 | |||
156 | #ifdef CONFIG_FRAME_POINTER | ||
157 | static void show_trace_log_lvl(struct task_struct *tsk, unsigned long *sp, | ||
158 | struct pt_regs *regs, const char *log_lvl) | ||
159 | { | ||
160 | unsigned long lr, fp; | ||
161 | struct thread_info *tinfo; | ||
162 | |||
163 | if (regs) | ||
164 | fp = regs->r7; | ||
165 | else if (tsk == current) | ||
166 | asm("mov %0, r7" : "=r"(fp)); | ||
167 | else | ||
168 | fp = tsk->thread.cpu_context.r7; | ||
169 | |||
170 | /* | ||
171 | * Walk the stack as long as the frame pointer (a) is within | ||
172 | * the kernel stack of the task, and (b) it doesn't move | ||
173 | * downwards. | ||
174 | */ | ||
175 | tinfo = task_thread_info(tsk); | ||
176 | printk("%sCall trace:\n", log_lvl); | ||
177 | while (valid_stack_ptr(tinfo, fp)) { | ||
178 | unsigned long new_fp; | ||
179 | |||
180 | lr = *(unsigned long *)fp; | ||
181 | #ifdef CONFIG_KALLSYMS | ||
182 | printk("%s [<%08lx>] ", log_lvl, lr); | ||
183 | #else | ||
184 | printk(" [<%08lx>] ", lr); | ||
185 | #endif | ||
186 | print_symbol("%s\n", lr); | ||
187 | |||
188 | new_fp = *(unsigned long *)(fp + 4); | ||
189 | if (new_fp <= fp) | ||
190 | break; | ||
191 | fp = new_fp; | ||
192 | } | ||
193 | printk("\n"); | ||
194 | } | ||
195 | #else | ||
196 | static void show_trace_log_lvl(struct task_struct *tsk, unsigned long *sp, | ||
197 | struct pt_regs *regs, const char *log_lvl) | ||
198 | { | ||
199 | unsigned long addr; | ||
200 | |||
201 | printk("%sCall trace:\n", log_lvl); | ||
202 | |||
203 | while (!kstack_end(sp)) { | ||
204 | addr = *sp++; | ||
205 | if (kernel_text_address(addr)) { | ||
206 | #ifdef CONFIG_KALLSYMS | ||
207 | printk("%s [<%08lx>] ", log_lvl, addr); | ||
208 | #else | ||
209 | printk(" [<%08lx>] ", addr); | ||
210 | #endif | ||
211 | print_symbol("%s\n", addr); | ||
212 | } | ||
213 | } | ||
214 | printk("\n"); | ||
215 | } | ||
216 | #endif | ||
217 | |||
218 | void show_stack_log_lvl(struct task_struct *tsk, unsigned long sp, | ||
219 | struct pt_regs *regs, const char *log_lvl) | ||
220 | { | ||
221 | struct thread_info *tinfo; | ||
222 | |||
223 | if (sp == 0) { | ||
224 | if (tsk) | ||
225 | sp = tsk->thread.cpu_context.ksp; | ||
226 | else | ||
227 | sp = (unsigned long)&tinfo; | ||
228 | } | ||
229 | if (!tsk) | ||
230 | tsk = current; | ||
231 | |||
232 | tinfo = task_thread_info(tsk); | ||
233 | |||
234 | if (valid_stack_ptr(tinfo, sp)) { | ||
235 | dump_mem("Stack: ", log_lvl, sp, | ||
236 | THREAD_SIZE + (unsigned long)tinfo); | ||
237 | show_trace_log_lvl(tsk, (unsigned long *)sp, regs, log_lvl); | ||
238 | } | ||
239 | } | ||
240 | |||
241 | void show_stack(struct task_struct *tsk, unsigned long *stack) | ||
242 | { | ||
243 | show_stack_log_lvl(tsk, (unsigned long)stack, NULL, ""); | ||
244 | } | ||
245 | |||
246 | void dump_stack(void) | ||
247 | { | ||
248 | unsigned long stack; | ||
249 | |||
250 | show_trace_log_lvl(current, &stack, NULL, ""); | ||
251 | } | ||
252 | EXPORT_SYMBOL(dump_stack); | ||
253 | |||
117 | static const char *cpu_modes[] = { | 254 | static const char *cpu_modes[] = { |
118 | "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1", | 255 | "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1", |
119 | "Interrupt level 2", "Interrupt level 3", "Exception", "NMI" | 256 | "Interrupt level 2", "Interrupt level 3", "Exception", "NMI" |
120 | }; | 257 | }; |
121 | 258 | ||
122 | void show_regs(struct pt_regs *regs) | 259 | void show_regs_log_lvl(struct pt_regs *regs, const char *log_lvl) |
123 | { | 260 | { |
124 | unsigned long sp = regs->sp; | 261 | unsigned long sp = regs->sp; |
125 | unsigned long lr = regs->lr; | 262 | unsigned long lr = regs->lr; |
126 | unsigned long mode = (regs->sr & MODE_MASK) >> MODE_SHIFT; | 263 | unsigned long mode = (regs->sr & MODE_MASK) >> MODE_SHIFT; |
127 | 264 | ||
128 | if (!user_mode(regs)) | 265 | if (!user_mode(regs)) { |
129 | sp = (unsigned long)regs + FRAME_SIZE_FULL; | 266 | sp = (unsigned long)regs + FRAME_SIZE_FULL; |
130 | 267 | ||
131 | print_symbol("PC is at %s\n", instruction_pointer(regs)); | 268 | printk("%s", log_lvl); |
132 | print_symbol("LR is at %s\n", lr); | 269 | print_symbol("PC is at %s\n", instruction_pointer(regs)); |
133 | printk("pc : [<%08lx>] lr : [<%08lx>] %s\n" | 270 | printk("%s", log_lvl); |
134 | "sp : %08lx r12: %08lx r11: %08lx\n", | 271 | print_symbol("LR is at %s\n", lr); |
135 | instruction_pointer(regs), | 272 | } |
136 | lr, print_tainted(), sp, regs->r12, regs->r11); | 273 | |
137 | printk("r10: %08lx r9 : %08lx r8 : %08lx\n", | 274 | printk("%spc : [<%08lx>] lr : [<%08lx>] %s\n" |
138 | regs->r10, regs->r9, regs->r8); | 275 | "%ssp : %08lx r12: %08lx r11: %08lx\n", |
139 | printk("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n", | 276 | log_lvl, instruction_pointer(regs), lr, print_tainted(), |
140 | regs->r7, regs->r6, regs->r5, regs->r4); | 277 | log_lvl, sp, regs->r12, regs->r11); |
141 | printk("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n", | 278 | printk("%sr10: %08lx r9 : %08lx r8 : %08lx\n", |
142 | regs->r3, regs->r2, regs->r1, regs->r0); | 279 | log_lvl, regs->r10, regs->r9, regs->r8); |
143 | printk("Flags: %c%c%c%c%c\n", | 280 | printk("%sr7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n", |
281 | log_lvl, regs->r7, regs->r6, regs->r5, regs->r4); | ||
282 | printk("%sr3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n", | ||
283 | log_lvl, regs->r3, regs->r2, regs->r1, regs->r0); | ||
284 | printk("%sFlags: %c%c%c%c%c\n", log_lvl, | ||
144 | regs->sr & SR_Q ? 'Q' : 'q', | 285 | regs->sr & SR_Q ? 'Q' : 'q', |
145 | regs->sr & SR_V ? 'V' : 'v', | 286 | regs->sr & SR_V ? 'V' : 'v', |
146 | regs->sr & SR_N ? 'N' : 'n', | 287 | regs->sr & SR_N ? 'N' : 'n', |
147 | regs->sr & SR_Z ? 'Z' : 'z', | 288 | regs->sr & SR_Z ? 'Z' : 'z', |
148 | regs->sr & SR_C ? 'C' : 'c'); | 289 | regs->sr & SR_C ? 'C' : 'c'); |
149 | printk("Mode bits: %c%c%c%c%c%c%c%c%c\n", | 290 | printk("%sMode bits: %c%c%c%c%c%c%c%c%c\n", log_lvl, |
150 | regs->sr & SR_H ? 'H' : 'h', | 291 | regs->sr & SR_H ? 'H' : 'h', |
151 | regs->sr & SR_R ? 'R' : 'r', | 292 | regs->sr & SR_R ? 'R' : 'r', |
152 | regs->sr & SR_J ? 'J' : 'j', | 293 | regs->sr & SR_J ? 'J' : 'j', |
@@ -156,9 +297,21 @@ void show_regs(struct pt_regs *regs) | |||
156 | regs->sr & SR_I1M ? '1' : '.', | 297 | regs->sr & SR_I1M ? '1' : '.', |
157 | regs->sr & SR_I0M ? '0' : '.', | 298 | regs->sr & SR_I0M ? '0' : '.', |
158 | regs->sr & SR_GM ? 'G' : 'g'); | 299 | regs->sr & SR_GM ? 'G' : 'g'); |
159 | printk("CPU Mode: %s\n", cpu_modes[mode]); | 300 | printk("%sCPU Mode: %s\n", log_lvl, cpu_modes[mode]); |
301 | printk("%sProcess: %s [%d] (task: %p thread: %p)\n", | ||
302 | log_lvl, current->comm, current->pid, current, | ||
303 | task_thread_info(current)); | ||
304 | } | ||
305 | |||
306 | void show_regs(struct pt_regs *regs) | ||
307 | { | ||
308 | unsigned long sp = regs->sp; | ||
309 | |||
310 | if (!user_mode(regs)) | ||
311 | sp = (unsigned long)regs + FRAME_SIZE_FULL; | ||
160 | 312 | ||
161 | show_trace(NULL, (unsigned long *)sp, regs); | 313 | show_regs_log_lvl(regs, ""); |
314 | show_trace_log_lvl(current, (unsigned long *)sp, regs, ""); | ||
162 | } | 315 | } |
163 | EXPORT_SYMBOL(show_regs); | 316 | EXPORT_SYMBOL(show_regs); |
164 | 317 | ||
diff --git a/arch/avr32/kernel/setup.c b/arch/avr32/kernel/setup.c index a1a7c3c3f522..b279d66acf5f 100644 --- a/arch/avr32/kernel/setup.c +++ b/arch/avr32/kernel/setup.c | |||
@@ -8,12 +8,14 @@ | |||
8 | 8 | ||
9 | #include <linux/clk.h> | 9 | #include <linux/clk.h> |
10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
11 | #include <linux/initrd.h> | ||
11 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
12 | #include <linux/console.h> | 13 | #include <linux/console.h> |
13 | #include <linux/ioport.h> | 14 | #include <linux/ioport.h> |
14 | #include <linux/bootmem.h> | 15 | #include <linux/bootmem.h> |
15 | #include <linux/fs.h> | 16 | #include <linux/fs.h> |
16 | #include <linux/module.h> | 17 | #include <linux/module.h> |
18 | #include <linux/pfn.h> | ||
17 | #include <linux/root_dev.h> | 19 | #include <linux/root_dev.h> |
18 | #include <linux/cpu.h> | 20 | #include <linux/cpu.h> |
19 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
@@ -30,13 +32,6 @@ | |||
30 | extern int root_mountflags; | 32 | extern int root_mountflags; |
31 | 33 | ||
32 | /* | 34 | /* |
33 | * Bootloader-provided information about physical memory | ||
34 | */ | ||
35 | struct tag_mem_range *mem_phys; | ||
36 | struct tag_mem_range *mem_reserved; | ||
37 | struct tag_mem_range *mem_ramdisk; | ||
38 | |||
39 | /* | ||
40 | * Initialize loops_per_jiffy as 5000000 (500MIPS). | 35 | * Initialize loops_per_jiffy as 5000000 (500MIPS). |
41 | * Better make it too large than too small... | 36 | * Better make it too large than too small... |
42 | */ | 37 | */ |
@@ -48,48 +43,193 @@ EXPORT_SYMBOL(boot_cpu_data); | |||
48 | static char __initdata command_line[COMMAND_LINE_SIZE]; | 43 | static char __initdata command_line[COMMAND_LINE_SIZE]; |
49 | 44 | ||
50 | /* | 45 | /* |
51 | * Should be more than enough, but if you have a _really_ complex | 46 | * Standard memory resources |
52 | * setup, you might need to increase the size of this... | ||
53 | */ | 47 | */ |
54 | static struct tag_mem_range __initdata mem_range_cache[32]; | 48 | static struct resource __initdata kernel_data = { |
55 | static unsigned mem_range_next_free; | 49 | .name = "Kernel data", |
50 | .start = 0, | ||
51 | .end = 0, | ||
52 | .flags = IORESOURCE_MEM, | ||
53 | }; | ||
54 | static struct resource __initdata kernel_code = { | ||
55 | .name = "Kernel code", | ||
56 | .start = 0, | ||
57 | .end = 0, | ||
58 | .flags = IORESOURCE_MEM, | ||
59 | .sibling = &kernel_data, | ||
60 | }; | ||
56 | 61 | ||
57 | /* | 62 | /* |
58 | * Standard memory resources | 63 | * Available system RAM and reserved regions as singly linked |
64 | * lists. These lists are traversed using the sibling pointer in | ||
65 | * struct resource and are kept sorted at all times. | ||
59 | */ | 66 | */ |
60 | static struct resource mem_res[] = { | 67 | static struct resource *__initdata system_ram; |
61 | { | 68 | static struct resource *__initdata reserved = &kernel_code; |
62 | .name = "Kernel code", | 69 | |
63 | .start = 0, | 70 | /* |
64 | .end = 0, | 71 | * We need to allocate these before the bootmem allocator is up and |
65 | .flags = IORESOURCE_MEM | 72 | * running, so we need this "cache". 32 entries are probably enough |
66 | }, | 73 | * for all but the most insanely complex systems. |
67 | { | 74 | */ |
68 | .name = "Kernel data", | 75 | static struct resource __initdata res_cache[32]; |
69 | .start = 0, | 76 | static unsigned int __initdata res_cache_next_free; |
70 | .end = 0, | 77 | |
71 | .flags = IORESOURCE_MEM, | 78 | static void __init resource_init(void) |
72 | }, | 79 | { |
73 | }; | 80 | struct resource *mem, *res; |
81 | struct resource *new; | ||
82 | |||
83 | kernel_code.start = __pa(init_mm.start_code); | ||
84 | |||
85 | for (mem = system_ram; mem; mem = mem->sibling) { | ||
86 | new = alloc_bootmem_low(sizeof(struct resource)); | ||
87 | memcpy(new, mem, sizeof(struct resource)); | ||
88 | |||
89 | new->sibling = NULL; | ||
90 | if (request_resource(&iomem_resource, new)) | ||
91 | printk(KERN_WARNING "Bad RAM resource %08x-%08x\n", | ||
92 | mem->start, mem->end); | ||
93 | } | ||
94 | |||
95 | for (res = reserved; res; res = res->sibling) { | ||
96 | new = alloc_bootmem_low(sizeof(struct resource)); | ||
97 | memcpy(new, res, sizeof(struct resource)); | ||
98 | |||
99 | new->sibling = NULL; | ||
100 | if (insert_resource(&iomem_resource, new)) | ||
101 | printk(KERN_WARNING | ||
102 | "Bad reserved resource %s (%08x-%08x)\n", | ||
103 | res->name, res->start, res->end); | ||
104 | } | ||
105 | } | ||
106 | |||
107 | static void __init | ||
108 | add_physical_memory(resource_size_t start, resource_size_t end) | ||
109 | { | ||
110 | struct resource *new, *next, **pprev; | ||
111 | |||
112 | for (pprev = &system_ram, next = system_ram; next; | ||
113 | pprev = &next->sibling, next = next->sibling) { | ||
114 | if (end < next->start) | ||
115 | break; | ||
116 | if (start <= next->end) { | ||
117 | printk(KERN_WARNING | ||
118 | "Warning: Physical memory map is broken\n"); | ||
119 | printk(KERN_WARNING | ||
120 | "Warning: %08x-%08x overlaps %08x-%08x\n", | ||
121 | start, end, next->start, next->end); | ||
122 | return; | ||
123 | } | ||
124 | } | ||
125 | |||
126 | if (res_cache_next_free >= ARRAY_SIZE(res_cache)) { | ||
127 | printk(KERN_WARNING | ||
128 | "Warning: Failed to add physical memory %08x-%08x\n", | ||
129 | start, end); | ||
130 | return; | ||
131 | } | ||
132 | |||
133 | new = &res_cache[res_cache_next_free++]; | ||
134 | new->start = start; | ||
135 | new->end = end; | ||
136 | new->name = "System RAM"; | ||
137 | new->flags = IORESOURCE_MEM; | ||
138 | |||
139 | *pprev = new; | ||
140 | } | ||
141 | |||
142 | static int __init | ||
143 | add_reserved_region(resource_size_t start, resource_size_t end, | ||
144 | const char *name) | ||
145 | { | ||
146 | struct resource *new, *next, **pprev; | ||
147 | |||
148 | if (end < start) | ||
149 | return -EINVAL; | ||
150 | |||
151 | if (res_cache_next_free >= ARRAY_SIZE(res_cache)) | ||
152 | return -ENOMEM; | ||
153 | |||
154 | for (pprev = &reserved, next = reserved; next; | ||
155 | pprev = &next->sibling, next = next->sibling) { | ||
156 | if (end < next->start) | ||
157 | break; | ||
158 | if (start <= next->end) | ||
159 | return -EBUSY; | ||
160 | } | ||
161 | |||
162 | new = &res_cache[res_cache_next_free++]; | ||
163 | new->start = start; | ||
164 | new->end = end; | ||
165 | new->name = name; | ||
166 | new->flags = IORESOURCE_MEM; | ||
167 | |||
168 | *pprev = new; | ||
169 | |||
170 | return 0; | ||
171 | } | ||
172 | |||
173 | static unsigned long __init | ||
174 | find_free_region(const struct resource *mem, resource_size_t size, | ||
175 | resource_size_t align) | ||
176 | { | ||
177 | struct resource *res; | ||
178 | unsigned long target; | ||
179 | |||
180 | target = ALIGN(mem->start, align); | ||
181 | for (res = reserved; res; res = res->sibling) { | ||
182 | if ((target + size) <= res->start) | ||
183 | break; | ||
184 | if (target <= res->end) | ||
185 | target = ALIGN(res->end + 1, align); | ||
186 | } | ||
187 | |||
188 | if ((target + size) > (mem->end + 1)) | ||
189 | return mem->end + 1; | ||
190 | |||
191 | return target; | ||
192 | } | ||
193 | |||
194 | static int __init | ||
195 | alloc_reserved_region(resource_size_t *start, resource_size_t size, | ||
196 | resource_size_t align, const char *name) | ||
197 | { | ||
198 | struct resource *mem; | ||
199 | resource_size_t target; | ||
200 | int ret; | ||
201 | |||
202 | for (mem = system_ram; mem; mem = mem->sibling) { | ||
203 | target = find_free_region(mem, size, align); | ||
204 | if (target <= mem->end) { | ||
205 | ret = add_reserved_region(target, target + size - 1, | ||
206 | name); | ||
207 | if (!ret) | ||
208 | *start = target; | ||
209 | return ret; | ||
210 | } | ||
211 | } | ||
74 | 212 | ||
75 | #define kernel_code mem_res[0] | 213 | return -ENOMEM; |
76 | #define kernel_data mem_res[1] | 214 | } |
77 | 215 | ||
78 | /* | 216 | /* |
79 | * Early framebuffer allocation. Works as follows: | 217 | * Early framebuffer allocation. Works as follows: |
80 | * - If fbmem_size is zero, nothing will be allocated or reserved. | 218 | * - If fbmem_size is zero, nothing will be allocated or reserved. |
81 | * - If fbmem_start is zero when setup_bootmem() is called, | 219 | * - If fbmem_start is zero when setup_bootmem() is called, |
82 | * fbmem_size bytes will be allocated from the bootmem allocator. | 220 | * a block of fbmem_size bytes will be reserved before bootmem |
221 | * initialization. It will be aligned to the largest page size | ||
222 | * that fbmem_size is a multiple of. | ||
83 | * - If fbmem_start is nonzero, an area of size fbmem_size will be | 223 | * - If fbmem_start is nonzero, an area of size fbmem_size will be |
84 | * reserved at the physical address fbmem_start if necessary. If | 224 | * reserved at the physical address fbmem_start if possible. If |
85 | * the area isn't in a memory region known to the kernel, it will | 225 | * it collides with other reserved memory, a different block of |
86 | * be left alone. | 226 | * same size will be allocated, just as if fbmem_start was zero. |
87 | * | 227 | * |
88 | * Board-specific code may use these variables to set up platform data | 228 | * Board-specific code may use these variables to set up platform data |
89 | * for the framebuffer driver if fbmem_size is nonzero. | 229 | * for the framebuffer driver if fbmem_size is nonzero. |
90 | */ | 230 | */ |
91 | static unsigned long __initdata fbmem_start; | 231 | resource_size_t __initdata fbmem_start; |
92 | static unsigned long __initdata fbmem_size; | 232 | resource_size_t __initdata fbmem_size; |
93 | 233 | ||
94 | /* | 234 | /* |
95 | * "fbmem=xxx[kKmM]" allocates the specified amount of boot memory for | 235 | * "fbmem=xxx[kKmM]" allocates the specified amount of boot memory for |
@@ -103,48 +243,42 @@ static unsigned long __initdata fbmem_size; | |||
103 | */ | 243 | */ |
104 | static int __init early_parse_fbmem(char *p) | 244 | static int __init early_parse_fbmem(char *p) |
105 | { | 245 | { |
246 | int ret; | ||
247 | unsigned long align; | ||
248 | |||
106 | fbmem_size = memparse(p, &p); | 249 | fbmem_size = memparse(p, &p); |
107 | if (*p == '@') | 250 | if (*p == '@') { |
108 | fbmem_start = memparse(p, &p); | 251 | fbmem_start = memparse(p, &p); |
109 | return 0; | 252 | ret = add_reserved_region(fbmem_start, |
110 | } | 253 | fbmem_start + fbmem_size - 1, |
111 | early_param("fbmem", early_parse_fbmem); | 254 | "Framebuffer"); |
112 | 255 | if (ret) { | |
113 | static inline void __init resource_init(void) | 256 | printk(KERN_WARNING |
114 | { | 257 | "Failed to reserve framebuffer memory\n"); |
115 | struct tag_mem_range *region; | 258 | fbmem_start = 0; |
116 | 259 | } | |
117 | kernel_code.start = __pa(init_mm.start_code); | 260 | } |
118 | kernel_code.end = __pa(init_mm.end_code - 1); | ||
119 | kernel_data.start = __pa(init_mm.end_code); | ||
120 | kernel_data.end = __pa(init_mm.brk - 1); | ||
121 | |||
122 | for (region = mem_phys; region; region = region->next) { | ||
123 | struct resource *res; | ||
124 | unsigned long phys_start, phys_end; | ||
125 | |||
126 | if (region->size == 0) | ||
127 | continue; | ||
128 | |||
129 | phys_start = region->addr; | ||
130 | phys_end = phys_start + region->size - 1; | ||
131 | |||
132 | res = alloc_bootmem_low(sizeof(*res)); | ||
133 | res->name = "System RAM"; | ||
134 | res->start = phys_start; | ||
135 | res->end = phys_end; | ||
136 | res->flags = IORESOURCE_MEM | IORESOURCE_BUSY; | ||
137 | |||
138 | request_resource (&iomem_resource, res); | ||
139 | 261 | ||
140 | if (kernel_code.start >= res->start && | 262 | if (!fbmem_start) { |
141 | kernel_code.end <= res->end) | 263 | if ((fbmem_size & 0x000fffffUL) == 0) |
142 | request_resource (res, &kernel_code); | 264 | align = 0x100000; /* 1 MiB */ |
143 | if (kernel_data.start >= res->start && | 265 | else if ((fbmem_size & 0x0000ffffUL) == 0) |
144 | kernel_data.end <= res->end) | 266 | align = 0x10000; /* 64 KiB */ |
145 | request_resource (res, &kernel_data); | 267 | else |
268 | align = 0x1000; /* 4 KiB */ | ||
269 | |||
270 | ret = alloc_reserved_region(&fbmem_start, fbmem_size, | ||
271 | align, "Framebuffer"); | ||
272 | if (ret) { | ||
273 | printk(KERN_WARNING | ||
274 | "Failed to allocate framebuffer memory\n"); | ||
275 | fbmem_size = 0; | ||
276 | } | ||
146 | } | 277 | } |
278 | |||
279 | return 0; | ||
147 | } | 280 | } |
281 | early_param("fbmem", early_parse_fbmem); | ||
148 | 282 | ||
149 | static int __init parse_tag_core(struct tag *tag) | 283 | static int __init parse_tag_core(struct tag *tag) |
150 | { | 284 | { |
@@ -157,11 +291,9 @@ static int __init parse_tag_core(struct tag *tag) | |||
157 | } | 291 | } |
158 | __tagtable(ATAG_CORE, parse_tag_core); | 292 | __tagtable(ATAG_CORE, parse_tag_core); |
159 | 293 | ||
160 | static int __init parse_tag_mem_range(struct tag *tag, | 294 | static int __init parse_tag_mem(struct tag *tag) |
161 | struct tag_mem_range **root) | ||
162 | { | 295 | { |
163 | struct tag_mem_range *cur, **pprev; | 296 | unsigned long start, end; |
164 | struct tag_mem_range *new; | ||
165 | 297 | ||
166 | /* | 298 | /* |
167 | * Ignore zero-sized entries. If we're running standalone, the | 299 | * Ignore zero-sized entries. If we're running standalone, the |
@@ -171,34 +303,53 @@ static int __init parse_tag_mem_range(struct tag *tag, | |||
171 | if (tag->u.mem_range.size == 0) | 303 | if (tag->u.mem_range.size == 0) |
172 | return 0; | 304 | return 0; |
173 | 305 | ||
174 | /* | 306 | start = tag->u.mem_range.addr; |
175 | * Copy the data so the bootmem init code doesn't need to care | 307 | end = tag->u.mem_range.addr + tag->u.mem_range.size - 1; |
176 | * about it. | 308 | |
177 | */ | 309 | add_physical_memory(start, end); |
178 | if (mem_range_next_free >= ARRAY_SIZE(mem_range_cache)) | 310 | return 0; |
179 | panic("Physical memory map too complex!\n"); | 311 | } |
312 | __tagtable(ATAG_MEM, parse_tag_mem); | ||
313 | |||
314 | static int __init parse_tag_rdimg(struct tag *tag) | ||
315 | { | ||
316 | #ifdef CONFIG_INITRD | ||
317 | struct tag_mem_range *mem = &tag->u.mem_range; | ||
318 | int ret; | ||
180 | 319 | ||
181 | new = &mem_range_cache[mem_range_next_free++]; | 320 | if (initrd_start) { |
182 | *new = tag->u.mem_range; | 321 | printk(KERN_WARNING |
322 | "Warning: Only the first initrd image will be used\n"); | ||
323 | return 0; | ||
324 | } | ||
183 | 325 | ||
184 | pprev = root; | 326 | ret = add_reserved_region(mem->start, mem->start + mem->size - 1, |
185 | cur = *root; | 327 | "initrd"); |
186 | while (cur) { | 328 | if (ret) { |
187 | pprev = &cur->next; | 329 | printk(KERN_WARNING |
188 | cur = cur->next; | 330 | "Warning: Failed to reserve initrd memory\n"); |
331 | return ret; | ||
189 | } | 332 | } |
190 | 333 | ||
191 | *pprev = new; | 334 | initrd_start = (unsigned long)__va(mem->addr); |
192 | new->next = NULL; | 335 | initrd_end = initrd_start + mem->size; |
336 | #else | ||
337 | printk(KERN_WARNING "RAM disk image present, but " | ||
338 | "no initrd support in kernel, ignoring\n"); | ||
339 | #endif | ||
193 | 340 | ||
194 | return 0; | 341 | return 0; |
195 | } | 342 | } |
343 | __tagtable(ATAG_RDIMG, parse_tag_rdimg); | ||
196 | 344 | ||
197 | static int __init parse_tag_mem(struct tag *tag) | 345 | static int __init parse_tag_rsvd_mem(struct tag *tag) |
198 | { | 346 | { |
199 | return parse_tag_mem_range(tag, &mem_phys); | 347 | struct tag_mem_range *mem = &tag->u.mem_range; |
348 | |||
349 | return add_reserved_region(mem->addr, mem->addr + mem->size - 1, | ||
350 | "Reserved"); | ||
200 | } | 351 | } |
201 | __tagtable(ATAG_MEM, parse_tag_mem); | 352 | __tagtable(ATAG_RSVD_MEM, parse_tag_rsvd_mem); |
202 | 353 | ||
203 | static int __init parse_tag_cmdline(struct tag *tag) | 354 | static int __init parse_tag_cmdline(struct tag *tag) |
204 | { | 355 | { |
@@ -207,12 +358,6 @@ static int __init parse_tag_cmdline(struct tag *tag) | |||
207 | } | 358 | } |
208 | __tagtable(ATAG_CMDLINE, parse_tag_cmdline); | 359 | __tagtable(ATAG_CMDLINE, parse_tag_cmdline); |
209 | 360 | ||
210 | static int __init parse_tag_rdimg(struct tag *tag) | ||
211 | { | ||
212 | return parse_tag_mem_range(tag, &mem_ramdisk); | ||
213 | } | ||
214 | __tagtable(ATAG_RDIMG, parse_tag_rdimg); | ||
215 | |||
216 | static int __init parse_tag_clock(struct tag *tag) | 361 | static int __init parse_tag_clock(struct tag *tag) |
217 | { | 362 | { |
218 | /* | 363 | /* |
@@ -223,12 +368,6 @@ static int __init parse_tag_clock(struct tag *tag) | |||
223 | } | 368 | } |
224 | __tagtable(ATAG_CLOCK, parse_tag_clock); | 369 | __tagtable(ATAG_CLOCK, parse_tag_clock); |
225 | 370 | ||
226 | static int __init parse_tag_rsvd_mem(struct tag *tag) | ||
227 | { | ||
228 | return parse_tag_mem_range(tag, &mem_reserved); | ||
229 | } | ||
230 | __tagtable(ATAG_RSVD_MEM, parse_tag_rsvd_mem); | ||
231 | |||
232 | /* | 371 | /* |
233 | * Scan the tag table for this tag, and call its parse function. The | 372 | * Scan the tag table for this tag, and call its parse function. The |
234 | * tag table is built by the linker from all the __tagtable | 373 | * tag table is built by the linker from all the __tagtable |
@@ -260,10 +399,137 @@ static void __init parse_tags(struct tag *t) | |||
260 | t->hdr.tag); | 399 | t->hdr.tag); |
261 | } | 400 | } |
262 | 401 | ||
402 | /* | ||
403 | * Find a free memory region large enough for storing the | ||
404 | * bootmem bitmap. | ||
405 | */ | ||
406 | static unsigned long __init | ||
407 | find_bootmap_pfn(const struct resource *mem) | ||
408 | { | ||
409 | unsigned long bootmap_pages, bootmap_len; | ||
410 | unsigned long node_pages = PFN_UP(mem->end - mem->start + 1); | ||
411 | unsigned long bootmap_start; | ||
412 | |||
413 | bootmap_pages = bootmem_bootmap_pages(node_pages); | ||
414 | bootmap_len = bootmap_pages << PAGE_SHIFT; | ||
415 | |||
416 | /* | ||
417 | * Find a large enough region without reserved pages for | ||
418 | * storing the bootmem bitmap. We can take advantage of the | ||
419 | * fact that all lists have been sorted. | ||
420 | * | ||
421 | * We have to check that we don't collide with any reserved | ||
422 | * regions, which includes the kernel image and any RAMDISK | ||
423 | * images. | ||
424 | */ | ||
425 | bootmap_start = find_free_region(mem, bootmap_len, PAGE_SIZE); | ||
426 | |||
427 | return bootmap_start >> PAGE_SHIFT; | ||
428 | } | ||
429 | |||
430 | #define MAX_LOWMEM HIGHMEM_START | ||
431 | #define MAX_LOWMEM_PFN PFN_DOWN(MAX_LOWMEM) | ||
432 | |||
433 | static void __init setup_bootmem(void) | ||
434 | { | ||
435 | unsigned bootmap_size; | ||
436 | unsigned long first_pfn, bootmap_pfn, pages; | ||
437 | unsigned long max_pfn, max_low_pfn; | ||
438 | unsigned node = 0; | ||
439 | struct resource *res; | ||
440 | |||
441 | printk(KERN_INFO "Physical memory:\n"); | ||
442 | for (res = system_ram; res; res = res->sibling) | ||
443 | printk(" %08x-%08x\n", res->start, res->end); | ||
444 | printk(KERN_INFO "Reserved memory:\n"); | ||
445 | for (res = reserved; res; res = res->sibling) | ||
446 | printk(" %08x-%08x: %s\n", | ||
447 | res->start, res->end, res->name); | ||
448 | |||
449 | nodes_clear(node_online_map); | ||
450 | |||
451 | if (system_ram->sibling) | ||
452 | printk(KERN_WARNING "Only using first memory bank\n"); | ||
453 | |||
454 | for (res = system_ram; res; res = NULL) { | ||
455 | first_pfn = PFN_UP(res->start); | ||
456 | max_low_pfn = max_pfn = PFN_DOWN(res->end + 1); | ||
457 | bootmap_pfn = find_bootmap_pfn(res); | ||
458 | if (bootmap_pfn > max_pfn) | ||
459 | panic("No space for bootmem bitmap!\n"); | ||
460 | |||
461 | if (max_low_pfn > MAX_LOWMEM_PFN) { | ||
462 | max_low_pfn = MAX_LOWMEM_PFN; | ||
463 | #ifndef CONFIG_HIGHMEM | ||
464 | /* | ||
465 | * Lowmem is memory that can be addressed | ||
466 | * directly through P1/P2 | ||
467 | */ | ||
468 | printk(KERN_WARNING | ||
469 | "Node %u: Only %ld MiB of memory will be used.\n", | ||
470 | node, MAX_LOWMEM >> 20); | ||
471 | printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n"); | ||
472 | #else | ||
473 | #error HIGHMEM is not supported by AVR32 yet | ||
474 | #endif | ||
475 | } | ||
476 | |||
477 | /* Initialize the boot-time allocator with low memory only. */ | ||
478 | bootmap_size = init_bootmem_node(NODE_DATA(node), bootmap_pfn, | ||
479 | first_pfn, max_low_pfn); | ||
480 | |||
481 | /* | ||
482 | * Register fully available RAM pages with the bootmem | ||
483 | * allocator. | ||
484 | */ | ||
485 | pages = max_low_pfn - first_pfn; | ||
486 | free_bootmem_node (NODE_DATA(node), PFN_PHYS(first_pfn), | ||
487 | PFN_PHYS(pages)); | ||
488 | |||
489 | /* Reserve space for the bootmem bitmap... */ | ||
490 | reserve_bootmem_node(NODE_DATA(node), | ||
491 | PFN_PHYS(bootmap_pfn), | ||
492 | bootmap_size); | ||
493 | |||
494 | /* ...and any other reserved regions. */ | ||
495 | for (res = reserved; res; res = res->sibling) { | ||
496 | if (res->start > PFN_PHYS(max_pfn)) | ||
497 | break; | ||
498 | |||
499 | /* | ||
500 | * resource_init will complain about partial | ||
501 | * overlaps, so we'll just ignore such | ||
502 | * resources for now. | ||
503 | */ | ||
504 | if (res->start >= PFN_PHYS(first_pfn) | ||
505 | && res->end < PFN_PHYS(max_pfn)) | ||
506 | reserve_bootmem_node( | ||
507 | NODE_DATA(node), res->start, | ||
508 | res->end - res->start + 1); | ||
509 | } | ||
510 | |||
511 | node_set_online(node); | ||
512 | } | ||
513 | } | ||
514 | |||
263 | void __init setup_arch (char **cmdline_p) | 515 | void __init setup_arch (char **cmdline_p) |
264 | { | 516 | { |
265 | struct clk *cpu_clk; | 517 | struct clk *cpu_clk; |
266 | 518 | ||
519 | init_mm.start_code = (unsigned long)_text; | ||
520 | init_mm.end_code = (unsigned long)_etext; | ||
521 | init_mm.end_data = (unsigned long)_edata; | ||
522 | init_mm.brk = (unsigned long)_end; | ||
523 | |||
524 | /* | ||
525 | * Include .init section to make allocations easier. It will | ||
526 | * be removed before the resource is actually requested. | ||
527 | */ | ||
528 | kernel_code.start = __pa(__init_begin); | ||
529 | kernel_code.end = __pa(init_mm.end_code - 1); | ||
530 | kernel_data.start = __pa(init_mm.end_code); | ||
531 | kernel_data.end = __pa(init_mm.brk - 1); | ||
532 | |||
267 | parse_tags(bootloader_tags); | 533 | parse_tags(bootloader_tags); |
268 | 534 | ||
269 | setup_processor(); | 535 | setup_processor(); |
@@ -289,24 +555,16 @@ void __init setup_arch (char **cmdline_p) | |||
289 | ((cpu_hz + 500) / 1000) % 1000); | 555 | ((cpu_hz + 500) / 1000) % 1000); |
290 | } | 556 | } |
291 | 557 | ||
292 | init_mm.start_code = (unsigned long) &_text; | ||
293 | init_mm.end_code = (unsigned long) &_etext; | ||
294 | init_mm.end_data = (unsigned long) &_edata; | ||
295 | init_mm.brk = (unsigned long) &_end; | ||
296 | |||
297 | strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); | 558 | strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); |
298 | *cmdline_p = command_line; | 559 | *cmdline_p = command_line; |
299 | parse_early_param(); | 560 | parse_early_param(); |
300 | 561 | ||
301 | setup_bootmem(); | 562 | setup_bootmem(); |
302 | 563 | ||
303 | board_setup_fbmem(fbmem_start, fbmem_size); | ||
304 | |||
305 | #ifdef CONFIG_VT | 564 | #ifdef CONFIG_VT |
306 | conswitchp = &dummy_con; | 565 | conswitchp = &dummy_con; |
307 | #endif | 566 | #endif |
308 | 567 | ||
309 | paging_init(); | 568 | paging_init(); |
310 | |||
311 | resource_init(); | 569 | resource_init(); |
312 | } | 570 | } |
diff --git a/arch/avr32/kernel/time.c b/arch/avr32/kernel/time.c index c10833f2ee0c..7014a3571ec0 100644 --- a/arch/avr32/kernel/time.c +++ b/arch/avr32/kernel/time.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2004-2006 Atmel Corporation | 2 | * Copyright (C) 2004-2007 Atmel Corporation |
3 | * | 3 | * |
4 | * Based on MIPS implementation arch/mips/kernel/time.c | 4 | * Based on MIPS implementation arch/mips/kernel/time.c |
5 | * Copyright 2001 MontaVista Software Inc. | 5 | * Copyright 2001 MontaVista Software Inc. |
@@ -20,18 +20,25 @@ | |||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/profile.h> | 21 | #include <linux/profile.h> |
22 | #include <linux/sysdev.h> | 22 | #include <linux/sysdev.h> |
23 | #include <linux/err.h> | ||
23 | 24 | ||
24 | #include <asm/div64.h> | 25 | #include <asm/div64.h> |
25 | #include <asm/sysreg.h> | 26 | #include <asm/sysreg.h> |
26 | #include <asm/io.h> | 27 | #include <asm/io.h> |
27 | #include <asm/sections.h> | 28 | #include <asm/sections.h> |
28 | 29 | ||
29 | static cycle_t read_cycle_count(void) | 30 | /* how many counter cycles in a jiffy? */ |
31 | static u32 cycles_per_jiffy; | ||
32 | |||
33 | /* the count value for the next timer interrupt */ | ||
34 | static u32 expirelo; | ||
35 | |||
36 | cycle_t __weak read_cycle_count(void) | ||
30 | { | 37 | { |
31 | return (cycle_t)sysreg_read(COUNT); | 38 | return (cycle_t)sysreg_read(COUNT); |
32 | } | 39 | } |
33 | 40 | ||
34 | static struct clocksource clocksource_avr32 = { | 41 | struct clocksource __weak clocksource_avr32 = { |
35 | .name = "avr32", | 42 | .name = "avr32", |
36 | .rating = 350, | 43 | .rating = 350, |
37 | .read = read_cycle_count, | 44 | .read = read_cycle_count, |
@@ -40,12 +47,20 @@ static struct clocksource clocksource_avr32 = { | |||
40 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 47 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
41 | }; | 48 | }; |
42 | 49 | ||
50 | irqreturn_t __weak timer_interrupt(int irq, void *dev_id); | ||
51 | |||
52 | struct irqaction timer_irqaction = { | ||
53 | .handler = timer_interrupt, | ||
54 | .flags = IRQF_DISABLED, | ||
55 | .name = "timer", | ||
56 | }; | ||
57 | |||
43 | /* | 58 | /* |
44 | * By default we provide the null RTC ops | 59 | * By default we provide the null RTC ops |
45 | */ | 60 | */ |
46 | static unsigned long null_rtc_get_time(void) | 61 | static unsigned long null_rtc_get_time(void) |
47 | { | 62 | { |
48 | return mktime(2004, 1, 1, 0, 0, 0); | 63 | return mktime(2007, 1, 1, 0, 0, 0); |
49 | } | 64 | } |
50 | 65 | ||
51 | static int null_rtc_set_time(unsigned long sec) | 66 | static int null_rtc_set_time(unsigned long sec) |
@@ -56,23 +71,14 @@ static int null_rtc_set_time(unsigned long sec) | |||
56 | static unsigned long (*rtc_get_time)(void) = null_rtc_get_time; | 71 | static unsigned long (*rtc_get_time)(void) = null_rtc_get_time; |
57 | static int (*rtc_set_time)(unsigned long) = null_rtc_set_time; | 72 | static int (*rtc_set_time)(unsigned long) = null_rtc_set_time; |
58 | 73 | ||
59 | /* how many counter cycles in a jiffy? */ | ||
60 | static unsigned long cycles_per_jiffy; | ||
61 | |||
62 | /* cycle counter value at the previous timer interrupt */ | ||
63 | static unsigned int timerhi, timerlo; | ||
64 | |||
65 | /* the count value for the next timer interrupt */ | ||
66 | static unsigned int expirelo; | ||
67 | |||
68 | static void avr32_timer_ack(void) | 74 | static void avr32_timer_ack(void) |
69 | { | 75 | { |
70 | unsigned int count; | 76 | u32 count; |
71 | 77 | ||
72 | /* Ack this timer interrupt and set the next one */ | 78 | /* Ack this timer interrupt and set the next one */ |
73 | expirelo += cycles_per_jiffy; | 79 | expirelo += cycles_per_jiffy; |
80 | /* setting COMPARE to 0 stops the COUNT-COMPARE */ | ||
74 | if (expirelo == 0) { | 81 | if (expirelo == 0) { |
75 | printk(KERN_DEBUG "expirelo == 0\n"); | ||
76 | sysreg_write(COMPARE, expirelo + 1); | 82 | sysreg_write(COMPARE, expirelo + 1); |
77 | } else { | 83 | } else { |
78 | sysreg_write(COMPARE, expirelo); | 84 | sysreg_write(COMPARE, expirelo); |
@@ -86,27 +92,56 @@ static void avr32_timer_ack(void) | |||
86 | } | 92 | } |
87 | } | 93 | } |
88 | 94 | ||
89 | static unsigned int avr32_hpt_read(void) | 95 | int __weak avr32_hpt_init(void) |
90 | { | 96 | { |
91 | return sysreg_read(COUNT); | 97 | int ret; |
98 | unsigned long mult, shift, count_hz; | ||
99 | |||
100 | count_hz = clk_get_rate(boot_cpu_data.clk); | ||
101 | shift = clocksource_avr32.shift; | ||
102 | mult = clocksource_hz2mult(count_hz, shift); | ||
103 | clocksource_avr32.mult = mult; | ||
104 | |||
105 | { | ||
106 | u64 tmp; | ||
107 | |||
108 | tmp = TICK_NSEC; | ||
109 | tmp <<= shift; | ||
110 | tmp += mult / 2; | ||
111 | do_div(tmp, mult); | ||
112 | |||
113 | cycles_per_jiffy = tmp; | ||
114 | } | ||
115 | |||
116 | ret = setup_irq(0, &timer_irqaction); | ||
117 | if (ret) { | ||
118 | pr_debug("timer: could not request IRQ 0: %d\n", ret); | ||
119 | return -ENODEV; | ||
120 | } | ||
121 | |||
122 | printk(KERN_INFO "timer: AT32AP COUNT-COMPARE at irq 0, " | ||
123 | "%lu.%03lu MHz\n", | ||
124 | ((count_hz + 500) / 1000) / 1000, | ||
125 | ((count_hz + 500) / 1000) % 1000); | ||
126 | |||
127 | return 0; | ||
92 | } | 128 | } |
93 | 129 | ||
94 | /* | 130 | /* |
95 | * Taken from MIPS c0_hpt_timer_init(). | 131 | * Taken from MIPS c0_hpt_timer_init(). |
96 | * | 132 | * |
97 | * Why is it so complicated, and what is "count"? My assumption is | 133 | * The reason COUNT is written twice is probably to make sure we don't get any |
98 | * that `count' specifies the "reference cycle", i.e. the cycle since | 134 | * timer interrupts while we are messing with the counter. |
99 | * reset that should mean "zero". The reason COUNT is written twice is | ||
100 | * probably to make sure we don't get any timer interrupts while we | ||
101 | * are messing with the counter. | ||
102 | */ | 135 | */ |
103 | static void avr32_hpt_init(unsigned int count) | 136 | int __weak avr32_hpt_start(void) |
104 | { | 137 | { |
105 | count = sysreg_read(COUNT) - count; | 138 | u32 count = sysreg_read(COUNT); |
106 | expirelo = (count / cycles_per_jiffy + 1) * cycles_per_jiffy; | 139 | expirelo = (count / cycles_per_jiffy + 1) * cycles_per_jiffy; |
107 | sysreg_write(COUNT, expirelo - cycles_per_jiffy); | 140 | sysreg_write(COUNT, expirelo - cycles_per_jiffy); |
108 | sysreg_write(COMPARE, expirelo); | 141 | sysreg_write(COMPARE, expirelo); |
109 | sysreg_write(COUNT, count); | 142 | sysreg_write(COUNT, count); |
143 | |||
144 | return 0; | ||
110 | } | 145 | } |
111 | 146 | ||
112 | /* | 147 | /* |
@@ -115,26 +150,18 @@ static void avr32_hpt_init(unsigned int count) | |||
115 | * | 150 | * |
116 | * In UP mode, it is invoked from the (global) timer_interrupt. | 151 | * In UP mode, it is invoked from the (global) timer_interrupt. |
117 | */ | 152 | */ |
118 | static void local_timer_interrupt(int irq, void *dev_id) | 153 | void local_timer_interrupt(int irq, void *dev_id) |
119 | { | 154 | { |
120 | if (current->pid) | 155 | if (current->pid) |
121 | profile_tick(CPU_PROFILING); | 156 | profile_tick(CPU_PROFILING); |
122 | update_process_times(user_mode(get_irq_regs())); | 157 | update_process_times(user_mode(get_irq_regs())); |
123 | } | 158 | } |
124 | 159 | ||
125 | static irqreturn_t | 160 | irqreturn_t __weak timer_interrupt(int irq, void *dev_id) |
126 | timer_interrupt(int irq, void *dev_id) | ||
127 | { | 161 | { |
128 | unsigned int count; | ||
129 | |||
130 | /* ack timer interrupt and try to set next interrupt */ | 162 | /* ack timer interrupt and try to set next interrupt */ |
131 | count = avr32_hpt_read(); | ||
132 | avr32_timer_ack(); | 163 | avr32_timer_ack(); |
133 | 164 | ||
134 | /* Update timerhi/timerlo for intra-jiffy calibration */ | ||
135 | timerhi += count < timerlo; /* Wrap around */ | ||
136 | timerlo = count; | ||
137 | |||
138 | /* | 165 | /* |
139 | * Call the generic timer interrupt handler | 166 | * Call the generic timer interrupt handler |
140 | */ | 167 | */ |
@@ -153,60 +180,37 @@ timer_interrupt(int irq, void *dev_id) | |||
153 | return IRQ_HANDLED; | 180 | return IRQ_HANDLED; |
154 | } | 181 | } |
155 | 182 | ||
156 | static struct irqaction timer_irqaction = { | ||
157 | .handler = timer_interrupt, | ||
158 | .flags = IRQF_DISABLED, | ||
159 | .name = "timer", | ||
160 | }; | ||
161 | |||
162 | void __init time_init(void) | 183 | void __init time_init(void) |
163 | { | 184 | { |
164 | unsigned long mult, shift, count_hz; | ||
165 | int ret; | 185 | int ret; |
166 | 186 | ||
187 | /* | ||
188 | * Make sure we don't get any COMPARE interrupts before we can | ||
189 | * handle them. | ||
190 | */ | ||
191 | sysreg_write(COMPARE, 0); | ||
192 | |||
167 | xtime.tv_sec = rtc_get_time(); | 193 | xtime.tv_sec = rtc_get_time(); |
168 | xtime.tv_nsec = 0; | 194 | xtime.tv_nsec = 0; |
169 | 195 | ||
170 | set_normalized_timespec(&wall_to_monotonic, | 196 | set_normalized_timespec(&wall_to_monotonic, |
171 | -xtime.tv_sec, -xtime.tv_nsec); | 197 | -xtime.tv_sec, -xtime.tv_nsec); |
172 | 198 | ||
173 | printk("Before time_init: count=%08lx, compare=%08lx\n", | 199 | ret = avr32_hpt_init(); |
174 | (unsigned long)sysreg_read(COUNT), | 200 | if (ret) { |
175 | (unsigned long)sysreg_read(COMPARE)); | 201 | pr_debug("timer: failed setup: %d\n", ret); |
176 | 202 | return; | |
177 | count_hz = clk_get_rate(boot_cpu_data.clk); | ||
178 | shift = clocksource_avr32.shift; | ||
179 | mult = clocksource_hz2mult(count_hz, shift); | ||
180 | clocksource_avr32.mult = mult; | ||
181 | |||
182 | printk("Cycle counter: mult=%lu, shift=%lu\n", mult, shift); | ||
183 | |||
184 | { | ||
185 | u64 tmp; | ||
186 | |||
187 | tmp = TICK_NSEC; | ||
188 | tmp <<= shift; | ||
189 | tmp += mult / 2; | ||
190 | do_div(tmp, mult); | ||
191 | |||
192 | cycles_per_jiffy = tmp; | ||
193 | } | 203 | } |
194 | 204 | ||
195 | /* This sets up the high precision timer for the first interrupt. */ | ||
196 | avr32_hpt_init(avr32_hpt_read()); | ||
197 | |||
198 | printk("After time_init: count=%08lx, compare=%08lx\n", | ||
199 | (unsigned long)sysreg_read(COUNT), | ||
200 | (unsigned long)sysreg_read(COMPARE)); | ||
201 | |||
202 | ret = clocksource_register(&clocksource_avr32); | 205 | ret = clocksource_register(&clocksource_avr32); |
203 | if (ret) | 206 | if (ret) |
204 | printk(KERN_ERR | 207 | pr_debug("timer: could not register clocksource: %d\n", ret); |
205 | "timer: could not register clocksource: %d\n", ret); | ||
206 | 208 | ||
207 | ret = setup_irq(0, &timer_irqaction); | 209 | ret = avr32_hpt_start(); |
208 | if (ret) | 210 | if (ret) { |
209 | printk("timer: could not request IRQ 0: %d\n", ret); | 211 | pr_debug("timer: failed starting: %d\n", ret); |
212 | return; | ||
213 | } | ||
210 | } | 214 | } |
211 | 215 | ||
212 | static struct sysdev_class timer_class = { | 216 | static struct sysdev_class timer_class = { |
diff --git a/arch/avr32/kernel/traps.c b/arch/avr32/kernel/traps.c index adc01a12d154..4f0382d8483f 100644 --- a/arch/avr32/kernel/traps.c +++ b/arch/avr32/kernel/traps.c | |||
@@ -5,158 +5,25 @@ | |||
5 | * it under the terms of the GNU General Public License version 2 as | 5 | * it under the terms of the GNU General Public License version 2 as |
6 | * published by the Free Software Foundation. | 6 | * published by the Free Software Foundation. |
7 | */ | 7 | */ |
8 | #undef DEBUG | 8 | |
9 | #include <linux/sched.h> | 9 | #include <linux/bug.h> |
10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
11 | #include <linux/module.h> | ||
12 | #include <linux/kallsyms.h> | 11 | #include <linux/kallsyms.h> |
12 | #include <linux/module.h> | ||
13 | #include <linux/notifier.h> | 13 | #include <linux/notifier.h> |
14 | #include <linux/sched.h> | ||
15 | #include <linux/uaccess.h> | ||
14 | 16 | ||
15 | #include <asm/traps.h> | ||
16 | #include <asm/sysreg.h> | ||
17 | #include <asm/addrspace.h> | 17 | #include <asm/addrspace.h> |
18 | #include <asm/ocd.h> | ||
19 | #include <asm/mmu_context.h> | 18 | #include <asm/mmu_context.h> |
20 | #include <asm/uaccess.h> | 19 | #include <asm/ocd.h> |
21 | 20 | #include <asm/sysreg.h> | |
22 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top) | 21 | #include <asm/traps.h> |
23 | { | ||
24 | unsigned long p; | ||
25 | int i; | ||
26 | |||
27 | printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top); | ||
28 | |||
29 | for (p = bottom & ~31; p < top; ) { | ||
30 | printk("%04lx: ", p & 0xffff); | ||
31 | |||
32 | for (i = 0; i < 8; i++, p += 4) { | ||
33 | unsigned int val; | ||
34 | |||
35 | if (p < bottom || p >= top) | ||
36 | printk(" "); | ||
37 | else { | ||
38 | if (__get_user(val, (unsigned int __user *)p)) { | ||
39 | printk("\n"); | ||
40 | goto out; | ||
41 | } | ||
42 | printk("%08x ", val); | ||
43 | } | ||
44 | } | ||
45 | printk("\n"); | ||
46 | } | ||
47 | |||
48 | out: | ||
49 | return; | ||
50 | } | ||
51 | |||
52 | static inline int valid_stack_ptr(struct thread_info *tinfo, unsigned long p) | ||
53 | { | ||
54 | return (p > (unsigned long)tinfo) | ||
55 | && (p < (unsigned long)tinfo + THREAD_SIZE - 3); | ||
56 | } | ||
57 | |||
58 | #ifdef CONFIG_FRAME_POINTER | ||
59 | static inline void __show_trace(struct task_struct *tsk, unsigned long *sp, | ||
60 | struct pt_regs *regs) | ||
61 | { | ||
62 | unsigned long lr, fp; | ||
63 | struct thread_info *tinfo; | ||
64 | |||
65 | tinfo = (struct thread_info *) | ||
66 | ((unsigned long)sp & ~(THREAD_SIZE - 1)); | ||
67 | |||
68 | if (regs) | ||
69 | fp = regs->r7; | ||
70 | else if (tsk == current) | ||
71 | asm("mov %0, r7" : "=r"(fp)); | ||
72 | else | ||
73 | fp = tsk->thread.cpu_context.r7; | ||
74 | |||
75 | /* | ||
76 | * Walk the stack as long as the frame pointer (a) is within | ||
77 | * the kernel stack of the task, and (b) it doesn't move | ||
78 | * downwards. | ||
79 | */ | ||
80 | while (valid_stack_ptr(tinfo, fp)) { | ||
81 | unsigned long new_fp; | ||
82 | |||
83 | lr = *(unsigned long *)fp; | ||
84 | printk(" [<%08lx>] ", lr); | ||
85 | print_symbol("%s\n", lr); | ||
86 | |||
87 | new_fp = *(unsigned long *)(fp + 4); | ||
88 | if (new_fp <= fp) | ||
89 | break; | ||
90 | fp = new_fp; | ||
91 | } | ||
92 | printk("\n"); | ||
93 | } | ||
94 | #else | ||
95 | static inline void __show_trace(struct task_struct *tsk, unsigned long *sp, | ||
96 | struct pt_regs *regs) | ||
97 | { | ||
98 | unsigned long addr; | ||
99 | |||
100 | while (!kstack_end(sp)) { | ||
101 | addr = *sp++; | ||
102 | if (kernel_text_address(addr)) { | ||
103 | printk(" [<%08lx>] ", addr); | ||
104 | print_symbol("%s\n", addr); | ||
105 | } | ||
106 | } | ||
107 | } | ||
108 | #endif | ||
109 | |||
110 | void show_trace(struct task_struct *tsk, unsigned long *sp, | ||
111 | struct pt_regs *regs) | ||
112 | { | ||
113 | if (regs && | ||
114 | (((regs->sr & MODE_MASK) == MODE_EXCEPTION) || | ||
115 | ((regs->sr & MODE_MASK) == MODE_USER))) | ||
116 | return; | ||
117 | |||
118 | printk ("Call trace:"); | ||
119 | #ifdef CONFIG_KALLSYMS | ||
120 | printk("\n"); | ||
121 | #endif | ||
122 | |||
123 | __show_trace(tsk, sp, regs); | ||
124 | printk("\n"); | ||
125 | } | ||
126 | |||
127 | void show_stack(struct task_struct *tsk, unsigned long *sp) | ||
128 | { | ||
129 | unsigned long stack; | ||
130 | |||
131 | if (!tsk) | ||
132 | tsk = current; | ||
133 | if (sp == 0) { | ||
134 | if (tsk == current) { | ||
135 | register unsigned long *real_sp __asm__("sp"); | ||
136 | sp = real_sp; | ||
137 | } else { | ||
138 | sp = (unsigned long *)tsk->thread.cpu_context.ksp; | ||
139 | } | ||
140 | } | ||
141 | |||
142 | stack = (unsigned long)sp; | ||
143 | dump_mem("Stack: ", stack, | ||
144 | THREAD_SIZE + (unsigned long)tsk->thread_info); | ||
145 | show_trace(tsk, sp, NULL); | ||
146 | } | ||
147 | |||
148 | void dump_stack(void) | ||
149 | { | ||
150 | show_stack(NULL, NULL); | ||
151 | } | ||
152 | EXPORT_SYMBOL(dump_stack); | ||
153 | 22 | ||
154 | ATOMIC_NOTIFIER_HEAD(avr32_die_chain); | 23 | ATOMIC_NOTIFIER_HEAD(avr32_die_chain); |
155 | 24 | ||
156 | int register_die_notifier(struct notifier_block *nb) | 25 | int register_die_notifier(struct notifier_block *nb) |
157 | { | 26 | { |
158 | pr_debug("register_die_notifier: %p\n", nb); | ||
159 | |||
160 | return atomic_notifier_chain_register(&avr32_die_chain, nb); | 27 | return atomic_notifier_chain_register(&avr32_die_chain, nb); |
161 | } | 28 | } |
162 | EXPORT_SYMBOL(register_die_notifier); | 29 | EXPORT_SYMBOL(register_die_notifier); |
@@ -169,93 +36,103 @@ EXPORT_SYMBOL(unregister_die_notifier); | |||
169 | 36 | ||
170 | static DEFINE_SPINLOCK(die_lock); | 37 | static DEFINE_SPINLOCK(die_lock); |
171 | 38 | ||
172 | void __die(const char *str, struct pt_regs *regs, unsigned long err, | 39 | void NORET_TYPE die(const char *str, struct pt_regs *regs, long err) |
173 | const char *file, const char *func, unsigned long line) | ||
174 | { | 40 | { |
175 | struct task_struct *tsk = current; | ||
176 | static int die_counter; | 41 | static int die_counter; |
177 | 42 | ||
178 | console_verbose(); | 43 | console_verbose(); |
179 | spin_lock_irq(&die_lock); | 44 | spin_lock_irq(&die_lock); |
180 | bust_spinlocks(1); | 45 | bust_spinlocks(1); |
181 | 46 | ||
182 | printk(KERN_ALERT "%s", str); | 47 | printk(KERN_ALERT "Oops: %s, sig: %ld [#%d]\n" KERN_EMERG, |
183 | if (file && func) | 48 | str, err, ++die_counter); |
184 | printk(" in %s:%s, line %ld", file, func, line); | 49 | #ifdef CONFIG_PREEMPT |
185 | printk("[#%d]:\n", ++die_counter); | 50 | printk("PREEMPT "); |
186 | print_modules(); | 51 | #endif |
187 | show_regs(regs); | 52 | #ifdef CONFIG_FRAME_POINTER |
188 | printk("Process %s (pid: %d, stack limit = 0x%p)\n", | 53 | printk("FRAME_POINTER "); |
189 | tsk->comm, tsk->pid, tsk->thread_info + 1); | 54 | #endif |
190 | 55 | if (current_cpu_data.features & AVR32_FEATURE_OCD) { | |
191 | if (!user_mode(regs) || in_interrupt()) { | 56 | unsigned long did = __mfdr(DBGREG_DID); |
192 | dump_mem("Stack: ", regs->sp, | 57 | printk("chip: 0x%03lx:0x%04lx rev %lu\n", |
193 | THREAD_SIZE + (unsigned long)tsk->thread_info); | 58 | (did >> 1) & 0x7ff, |
59 | (did >> 12) & 0x7fff, | ||
60 | (did >> 28) & 0xf); | ||
61 | } else { | ||
62 | printk("cpu: arch %u r%u / core %u r%u\n", | ||
63 | current_cpu_data.arch_type, | ||
64 | current_cpu_data.arch_revision, | ||
65 | current_cpu_data.cpu_type, | ||
66 | current_cpu_data.cpu_revision); | ||
194 | } | 67 | } |
195 | 68 | ||
69 | print_modules(); | ||
70 | show_regs_log_lvl(regs, KERN_EMERG); | ||
71 | show_stack_log_lvl(current, regs->sp, regs, KERN_EMERG); | ||
196 | bust_spinlocks(0); | 72 | bust_spinlocks(0); |
197 | spin_unlock_irq(&die_lock); | 73 | spin_unlock_irq(&die_lock); |
198 | do_exit(SIGSEGV); | 74 | |
75 | if (in_interrupt()) | ||
76 | panic("Fatal exception in interrupt"); | ||
77 | |||
78 | if (panic_on_oops) | ||
79 | panic("Fatal exception"); | ||
80 | |||
81 | do_exit(err); | ||
199 | } | 82 | } |
200 | 83 | ||
201 | void __die_if_kernel(const char *str, struct pt_regs *regs, unsigned long err, | 84 | void _exception(long signr, struct pt_regs *regs, int code, |
202 | const char *file, const char *func, unsigned long line) | 85 | unsigned long addr) |
203 | { | 86 | { |
87 | siginfo_t info; | ||
88 | |||
204 | if (!user_mode(regs)) | 89 | if (!user_mode(regs)) |
205 | __die(str, regs, err, file, func, line); | 90 | die("Unhandled exception in kernel mode", regs, signr); |
206 | } | 91 | |
92 | memset(&info, 0, sizeof(info)); | ||
93 | info.si_signo = signr; | ||
94 | info.si_code = code; | ||
95 | info.si_addr = (void __user *)addr; | ||
96 | force_sig_info(signr, &info, current); | ||
207 | 97 | ||
208 | asmlinkage void do_nmi(unsigned long ecr, struct pt_regs *regs) | ||
209 | { | ||
210 | #ifdef CONFIG_SUBARCH_AVR32B | ||
211 | /* | 98 | /* |
212 | * The exception entry always saves RSR_EX. For NMI, this is | 99 | * Init gets no signals that it doesn't have a handler for. |
213 | * wrong; it should be RSR_NMI | 100 | * That's all very well, but if it has caused a synchronous |
101 | * exception and we ignore the resulting signal, it will just | ||
102 | * generate the same exception over and over again and we get | ||
103 | * nowhere. Better to kill it and let the kernel panic. | ||
214 | */ | 104 | */ |
215 | regs->sr = sysreg_read(RSR_NMI); | 105 | if (is_init(current)) { |
216 | #endif | 106 | __sighandler_t handler; |
107 | |||
108 | spin_lock_irq(¤t->sighand->siglock); | ||
109 | handler = current->sighand->action[signr-1].sa.sa_handler; | ||
110 | spin_unlock_irq(¤t->sighand->siglock); | ||
111 | if (handler == SIG_DFL) { | ||
112 | /* init has generated a synchronous exception | ||
113 | and it doesn't have a handler for the signal */ | ||
114 | printk(KERN_CRIT "init has generated signal %ld " | ||
115 | "but has no handler for it\n", signr); | ||
116 | do_exit(signr); | ||
117 | } | ||
118 | } | ||
119 | } | ||
217 | 120 | ||
218 | printk("NMI taken!!!!\n"); | 121 | asmlinkage void do_nmi(unsigned long ecr, struct pt_regs *regs) |
219 | die("NMI", regs, ecr); | 122 | { |
220 | BUG(); | 123 | printk(KERN_ALERT "Got Non-Maskable Interrupt, dumping regs\n"); |
124 | show_regs_log_lvl(regs, KERN_ALERT); | ||
125 | show_stack_log_lvl(current, regs->sp, regs, KERN_ALERT); | ||
221 | } | 126 | } |
222 | 127 | ||
223 | asmlinkage void do_critical_exception(unsigned long ecr, struct pt_regs *regs) | 128 | asmlinkage void do_critical_exception(unsigned long ecr, struct pt_regs *regs) |
224 | { | 129 | { |
225 | printk("Unable to handle critical exception %lu at pc = %08lx!\n", | 130 | die("Critical exception", regs, SIGKILL); |
226 | ecr, regs->pc); | ||
227 | die("Oops", regs, ecr); | ||
228 | BUG(); | ||
229 | } | 131 | } |
230 | 132 | ||
231 | asmlinkage void do_address_exception(unsigned long ecr, struct pt_regs *regs) | 133 | asmlinkage void do_address_exception(unsigned long ecr, struct pt_regs *regs) |
232 | { | 134 | { |
233 | siginfo_t info; | 135 | _exception(SIGBUS, regs, BUS_ADRALN, regs->pc); |
234 | |||
235 | die_if_kernel("Oops: Address exception in kernel mode", regs, ecr); | ||
236 | |||
237 | #ifdef DEBUG | ||
238 | if (ecr == ECR_ADDR_ALIGN_X) | ||
239 | pr_debug("Instruction Address Exception at pc = %08lx\n", | ||
240 | regs->pc); | ||
241 | else if (ecr == ECR_ADDR_ALIGN_R) | ||
242 | pr_debug("Data Address Exception (Read) at pc = %08lx\n", | ||
243 | regs->pc); | ||
244 | else if (ecr == ECR_ADDR_ALIGN_W) | ||
245 | pr_debug("Data Address Exception (Write) at pc = %08lx\n", | ||
246 | regs->pc); | ||
247 | else | ||
248 | BUG(); | ||
249 | |||
250 | show_regs(regs); | ||
251 | #endif | ||
252 | |||
253 | info.si_signo = SIGBUS; | ||
254 | info.si_errno = 0; | ||
255 | info.si_code = BUS_ADRALN; | ||
256 | info.si_addr = (void __user *)regs->pc; | ||
257 | |||
258 | force_sig_info(SIGBUS, &info, current); | ||
259 | } | 136 | } |
260 | 137 | ||
261 | /* This way of handling undefined instructions is stolen from ARM */ | 138 | /* This way of handling undefined instructions is stolen from ARM */ |
@@ -280,7 +157,8 @@ static int do_cop_absent(u32 insn) | |||
280 | { | 157 | { |
281 | int cop_nr; | 158 | int cop_nr; |
282 | u32 cpucr; | 159 | u32 cpucr; |
283 | if ( (insn & 0xfdf00000) == 0xf1900000 ) | 160 | |
161 | if ((insn & 0xfdf00000) == 0xf1900000) | ||
284 | /* LDC0 */ | 162 | /* LDC0 */ |
285 | cop_nr = 0; | 163 | cop_nr = 0; |
286 | else | 164 | else |
@@ -292,136 +170,91 @@ static int do_cop_absent(u32 insn) | |||
292 | sysreg_write(CPUCR, cpucr); | 170 | sysreg_write(CPUCR, cpucr); |
293 | 171 | ||
294 | cpucr = sysreg_read(CPUCR); | 172 | cpucr = sysreg_read(CPUCR); |
295 | if ( !(cpucr & (1 << (24 + cop_nr))) ){ | 173 | if (!(cpucr & (1 << (24 + cop_nr)))) |
296 | printk("Coprocessor #%i not found!\n", cop_nr); | 174 | return -ENODEV; |
297 | return -1; | ||
298 | } | ||
299 | 175 | ||
300 | return 0; | 176 | return 0; |
301 | } | 177 | } |
302 | 178 | ||
303 | #ifdef CONFIG_BUG | 179 | int is_valid_bugaddr(unsigned long pc) |
304 | #ifdef CONFIG_DEBUG_BUGVERBOSE | ||
305 | static inline void do_bug_verbose(struct pt_regs *regs, u32 insn) | ||
306 | { | ||
307 | char *file; | ||
308 | u16 line; | ||
309 | char c; | ||
310 | |||
311 | if (__get_user(line, (u16 __user *)(regs->pc + 2))) | ||
312 | return; | ||
313 | if (__get_user(file, (char * __user *)(regs->pc + 4)) | ||
314 | || (unsigned long)file < PAGE_OFFSET | ||
315 | || __get_user(c, file)) | ||
316 | file = "<bad filename>"; | ||
317 | |||
318 | printk(KERN_ALERT "kernel BUG at %s:%d!\n", file, line); | ||
319 | } | ||
320 | #else | ||
321 | static inline void do_bug_verbose(struct pt_regs *regs, u32 insn) | ||
322 | { | 180 | { |
181 | unsigned short opcode; | ||
182 | |||
183 | if (pc < PAGE_OFFSET) | ||
184 | return 0; | ||
185 | if (probe_kernel_address((u16 *)pc, opcode)) | ||
186 | return 0; | ||
323 | 187 | ||
188 | return opcode == AVR32_BUG_OPCODE; | ||
324 | } | 189 | } |
325 | #endif | ||
326 | #endif | ||
327 | 190 | ||
328 | asmlinkage void do_illegal_opcode(unsigned long ecr, struct pt_regs *regs) | 191 | asmlinkage void do_illegal_opcode(unsigned long ecr, struct pt_regs *regs) |
329 | { | 192 | { |
330 | u32 insn; | 193 | u32 insn; |
331 | struct undef_hook *hook; | 194 | struct undef_hook *hook; |
332 | siginfo_t info; | ||
333 | void __user *pc; | 195 | void __user *pc; |
196 | long code; | ||
334 | 197 | ||
335 | if (!user_mode(regs)) | 198 | if (!user_mode(regs) && (ecr == ECR_ILLEGAL_OPCODE)) { |
336 | goto kernel_trap; | 199 | enum bug_trap_type type; |
200 | |||
201 | type = report_bug(regs->pc); | ||
202 | switch (type) { | ||
203 | case BUG_TRAP_TYPE_NONE: | ||
204 | break; | ||
205 | case BUG_TRAP_TYPE_WARN: | ||
206 | regs->pc += 2; | ||
207 | return; | ||
208 | case BUG_TRAP_TYPE_BUG: | ||
209 | die("Kernel BUG", regs, SIGKILL); | ||
210 | } | ||
211 | } | ||
337 | 212 | ||
338 | local_irq_enable(); | 213 | local_irq_enable(); |
339 | 214 | ||
340 | pc = (void __user *)instruction_pointer(regs); | 215 | if (user_mode(regs)) { |
341 | if (__get_user(insn, (u32 __user *)pc)) | 216 | pc = (void __user *)instruction_pointer(regs); |
342 | goto invalid_area; | 217 | if (get_user(insn, (u32 __user *)pc)) |
218 | goto invalid_area; | ||
343 | 219 | ||
344 | if (ecr == ECR_COPROC_ABSENT) { | 220 | if (ecr == ECR_COPROC_ABSENT && !do_cop_absent(insn)) |
345 | if (do_cop_absent(insn) == 0) | ||
346 | return; | 221 | return; |
347 | } | ||
348 | 222 | ||
349 | spin_lock_irq(&undef_lock); | 223 | spin_lock_irq(&undef_lock); |
350 | list_for_each_entry(hook, &undef_hook, node) { | 224 | list_for_each_entry(hook, &undef_hook, node) { |
351 | if ((insn & hook->insn_mask) == hook->insn_val) { | 225 | if ((insn & hook->insn_mask) == hook->insn_val) { |
352 | if (hook->fn(regs, insn) == 0) { | 226 | if (hook->fn(regs, insn) == 0) { |
353 | spin_unlock_irq(&undef_lock); | 227 | spin_unlock_irq(&undef_lock); |
354 | return; | 228 | return; |
229 | } | ||
355 | } | 230 | } |
356 | } | 231 | } |
232 | spin_unlock_irq(&undef_lock); | ||
357 | } | 233 | } |
358 | spin_unlock_irq(&undef_lock); | ||
359 | |||
360 | invalid_area: | ||
361 | 234 | ||
362 | #ifdef DEBUG | ||
363 | printk("Illegal instruction at pc = %08lx\n", regs->pc); | ||
364 | if (regs->pc < TASK_SIZE) { | ||
365 | unsigned long ptbr, pgd, pte, *p; | ||
366 | |||
367 | ptbr = sysreg_read(PTBR); | ||
368 | p = (unsigned long *)ptbr; | ||
369 | pgd = p[regs->pc >> 22]; | ||
370 | p = (unsigned long *)((pgd & 0x1ffff000) | 0x80000000); | ||
371 | pte = p[(regs->pc >> 12) & 0x3ff]; | ||
372 | printk("page table: 0x%08lx -> 0x%08lx -> 0x%08lx\n", ptbr, pgd, pte); | ||
373 | } | ||
374 | #endif | ||
375 | |||
376 | info.si_signo = SIGILL; | ||
377 | info.si_errno = 0; | ||
378 | info.si_addr = (void __user *)regs->pc; | ||
379 | switch (ecr) { | 235 | switch (ecr) { |
380 | case ECR_ILLEGAL_OPCODE: | ||
381 | case ECR_UNIMPL_INSTRUCTION: | ||
382 | info.si_code = ILL_ILLOPC; | ||
383 | break; | ||
384 | case ECR_PRIVILEGE_VIOLATION: | 236 | case ECR_PRIVILEGE_VIOLATION: |
385 | info.si_code = ILL_PRVOPC; | 237 | code = ILL_PRVOPC; |
386 | break; | 238 | break; |
387 | case ECR_COPROC_ABSENT: | 239 | case ECR_COPROC_ABSENT: |
388 | info.si_code = ILL_COPROC; | 240 | code = ILL_COPROC; |
389 | break; | 241 | break; |
390 | default: | 242 | default: |
391 | BUG(); | 243 | code = ILL_ILLOPC; |
244 | break; | ||
392 | } | 245 | } |
393 | 246 | ||
394 | force_sig_info(SIGILL, &info, current); | 247 | _exception(SIGILL, regs, code, regs->pc); |
395 | return; | 248 | return; |
396 | 249 | ||
397 | kernel_trap: | 250 | invalid_area: |
398 | #ifdef CONFIG_BUG | 251 | _exception(SIGSEGV, regs, SEGV_MAPERR, regs->pc); |
399 | if (__kernel_text_address(instruction_pointer(regs))) { | ||
400 | insn = *(u16 *)instruction_pointer(regs); | ||
401 | if (insn == AVR32_BUG_OPCODE) { | ||
402 | do_bug_verbose(regs, insn); | ||
403 | die("Kernel BUG", regs, 0); | ||
404 | return; | ||
405 | } | ||
406 | } | ||
407 | #endif | ||
408 | |||
409 | die("Oops: Illegal instruction in kernel code", regs, ecr); | ||
410 | } | 252 | } |
411 | 253 | ||
412 | asmlinkage void do_fpe(unsigned long ecr, struct pt_regs *regs) | 254 | asmlinkage void do_fpe(unsigned long ecr, struct pt_regs *regs) |
413 | { | 255 | { |
414 | siginfo_t info; | 256 | /* We have no FPU yet */ |
415 | 257 | _exception(SIGILL, regs, ILL_COPROC, regs->pc); | |
416 | printk("Floating-point exception at pc = %08lx\n", regs->pc); | ||
417 | |||
418 | /* We have no FPU... */ | ||
419 | info.si_signo = SIGILL; | ||
420 | info.si_errno = 0; | ||
421 | info.si_addr = (void __user *)regs->pc; | ||
422 | info.si_code = ILL_COPROC; | ||
423 | |||
424 | force_sig_info(SIGILL, &info, current); | ||
425 | } | 258 | } |
426 | 259 | ||
427 | 260 | ||
diff --git a/arch/avr32/kernel/vmlinux.lds.c b/arch/avr32/kernel/vmlinux.lds.c index ef13b7c78935..7ad20cfb48a8 100644 --- a/arch/avr32/kernel/vmlinux.lds.c +++ b/arch/avr32/kernel/vmlinux.lds.c | |||
@@ -26,6 +26,12 @@ SECTIONS | |||
26 | _sinittext = .; | 26 | _sinittext = .; |
27 | *(.text.reset) | 27 | *(.text.reset) |
28 | *(.init.text) | 28 | *(.init.text) |
29 | /* | ||
30 | * .exit.text is discarded at runtime, not | ||
31 | * link time, to deal with references from | ||
32 | * __bug_table | ||
33 | */ | ||
34 | *(.exit.text) | ||
29 | _einittext = .; | 35 | _einittext = .; |
30 | . = ALIGN(4); | 36 | . = ALIGN(4); |
31 | __tagtable_begin = .; | 37 | __tagtable_begin = .; |
@@ -86,6 +92,8 @@ SECTIONS | |||
86 | __stop___ex_table = .; | 92 | __stop___ex_table = .; |
87 | } | 93 | } |
88 | 94 | ||
95 | BUG_TABLE | ||
96 | |||
89 | RODATA | 97 | RODATA |
90 | 98 | ||
91 | . = ALIGN(8192); | 99 | . = ALIGN(8192); |
@@ -126,7 +134,6 @@ SECTIONS | |||
126 | * thrown away, as cleanup code is never called unless it's a module. | 134 | * thrown away, as cleanup code is never called unless it's a module. |
127 | */ | 135 | */ |
128 | /DISCARD/ : { | 136 | /DISCARD/ : { |
129 | *(.exit.text) | ||
130 | *(.exit.data) | 137 | *(.exit.data) |
131 | *(.exitcall.exit) | 138 | *(.exitcall.exit) |
132 | } | 139 | } |
diff --git a/arch/avr32/mach-at32ap/Kconfig b/arch/avr32/mach-at32ap/Kconfig new file mode 100644 index 000000000000..eb307838457b --- /dev/null +++ b/arch/avr32/mach-at32ap/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | if PLATFORM_AT32AP | ||
2 | |||
3 | menu "Atmel AVR32 AP options" | ||
4 | |||
5 | choice | ||
6 | prompt "AT32AP7000 static memory bus width" | ||
7 | depends on CPU_AT32AP7000 | ||
8 | default AP7000_16_BIT_SMC | ||
9 | help | ||
10 | Define the width of the AP7000 external static memory interface. | ||
11 | This is used to determine how to mangle the address and/or data | ||
12 | when doing little-endian port access. | ||
13 | |||
14 | The current code can only support a single external memory bus | ||
15 | width for all chip selects, excluding the flash (which is using | ||
16 | raw access and is thus not affected by any of this.) | ||
17 | |||
18 | config AP7000_32_BIT_SMC | ||
19 | bool "32 bit" | ||
20 | |||
21 | config AP7000_16_BIT_SMC | ||
22 | bool "16 bit" | ||
23 | |||
24 | config AP7000_8_BIT_SMC | ||
25 | bool "8 bit" | ||
26 | |||
27 | endchoice | ||
28 | |||
29 | endmenu | ||
30 | |||
31 | endif # PLATFORM_AT32AP | ||
diff --git a/arch/avr32/mach-at32ap/Makefile b/arch/avr32/mach-at32ap/Makefile index b21bea9af8b1..f1d395724ac6 100644 --- a/arch/avr32/mach-at32ap/Makefile +++ b/arch/avr32/mach-at32ap/Makefile | |||
@@ -1,2 +1,3 @@ | |||
1 | obj-y += at32ap.o clock.o intc.o extint.o pio.o hsmc.o | 1 | obj-y += at32ap.o clock.o intc.o extint.o pio.o hsmc.o |
2 | obj-$(CONFIG_CPU_AT32AP7000) += at32ap7000.o | 2 | obj-$(CONFIG_CPU_AT32AP7000) += at32ap7000.o |
3 | obj-$(CONFIG_CPU_AT32AP7000) += time-tc.o | ||
diff --git a/arch/avr32/mach-at32ap/at32ap7000.c b/arch/avr32/mach-at32ap/at32ap7000.c index 472703f90c22..56db45b99a0f 100644 --- a/arch/avr32/mach-at32ap/at32ap7000.c +++ b/arch/avr32/mach-at32ap/at32ap7000.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <asm/arch/sm.h> | 18 | #include <asm/arch/sm.h> |
19 | 19 | ||
20 | #include "clock.h" | 20 | #include "clock.h" |
21 | #include "hmatrix.h" | ||
21 | #include "pio.h" | 22 | #include "pio.h" |
22 | #include "sm.h" | 23 | #include "sm.h" |
23 | 24 | ||
@@ -416,7 +417,15 @@ struct platform_device at32_sm_device = { | |||
416 | .resource = sm_resource, | 417 | .resource = sm_resource, |
417 | .num_resources = ARRAY_SIZE(sm_resource), | 418 | .num_resources = ARRAY_SIZE(sm_resource), |
418 | }; | 419 | }; |
419 | DEV_CLK(pclk, at32_sm, pbb, 0); | 420 | static struct clk at32_sm_pclk = { |
421 | .name = "pclk", | ||
422 | .dev = &at32_sm_device.dev, | ||
423 | .parent = &pbb_clk, | ||
424 | .mode = pbb_clk_mode, | ||
425 | .get_rate = pbb_clk_get_rate, | ||
426 | .users = 1, | ||
427 | .index = 0, | ||
428 | }; | ||
420 | 429 | ||
421 | static struct resource intc0_resource[] = { | 430 | static struct resource intc0_resource[] = { |
422 | PBMEM(0xfff00400), | 431 | PBMEM(0xfff00400), |
@@ -442,6 +451,7 @@ static struct clk hramc_clk = { | |||
442 | .mode = hsb_clk_mode, | 451 | .mode = hsb_clk_mode, |
443 | .get_rate = hsb_clk_get_rate, | 452 | .get_rate = hsb_clk_get_rate, |
444 | .users = 1, | 453 | .users = 1, |
454 | .index = 3, | ||
445 | }; | 455 | }; |
446 | 456 | ||
447 | static struct resource smc0_resource[] = { | 457 | static struct resource smc0_resource[] = { |
@@ -467,6 +477,57 @@ static struct clk pico_clk = { | |||
467 | }; | 477 | }; |
468 | 478 | ||
469 | /* -------------------------------------------------------------------- | 479 | /* -------------------------------------------------------------------- |
480 | * HMATRIX | ||
481 | * -------------------------------------------------------------------- */ | ||
482 | |||
483 | static struct clk hmatrix_clk = { | ||
484 | .name = "hmatrix_clk", | ||
485 | .parent = &pbb_clk, | ||
486 | .mode = pbb_clk_mode, | ||
487 | .get_rate = pbb_clk_get_rate, | ||
488 | .index = 2, | ||
489 | .users = 1, | ||
490 | }; | ||
491 | #define HMATRIX_BASE ((void __iomem *)0xfff00800) | ||
492 | |||
493 | #define hmatrix_readl(reg) \ | ||
494 | __raw_readl((HMATRIX_BASE) + HMATRIX_##reg) | ||
495 | #define hmatrix_writel(reg,value) \ | ||
496 | __raw_writel((value), (HMATRIX_BASE) + HMATRIX_##reg) | ||
497 | |||
498 | /* | ||
499 | * Set bits in the HMATRIX Special Function Register (SFR) used by the | ||
500 | * External Bus Interface (EBI). This can be used to enable special | ||
501 | * features like CompactFlash support, NAND Flash support, etc. on | ||
502 | * certain chipselects. | ||
503 | */ | ||
504 | static inline void set_ebi_sfr_bits(u32 mask) | ||
505 | { | ||
506 | u32 sfr; | ||
507 | |||
508 | clk_enable(&hmatrix_clk); | ||
509 | sfr = hmatrix_readl(SFR4); | ||
510 | sfr |= mask; | ||
511 | hmatrix_writel(SFR4, sfr); | ||
512 | clk_disable(&hmatrix_clk); | ||
513 | } | ||
514 | |||
515 | /* -------------------------------------------------------------------- | ||
516 | * System Timer/Counter (TC) | ||
517 | * -------------------------------------------------------------------- */ | ||
518 | static struct resource at32_systc0_resource[] = { | ||
519 | PBMEM(0xfff00c00), | ||
520 | IRQ(22), | ||
521 | }; | ||
522 | struct platform_device at32_systc0_device = { | ||
523 | .name = "systc", | ||
524 | .id = 0, | ||
525 | .resource = at32_systc0_resource, | ||
526 | .num_resources = ARRAY_SIZE(at32_systc0_resource), | ||
527 | }; | ||
528 | DEV_CLK(pclk, at32_systc0, pbb, 3); | ||
529 | |||
530 | /* -------------------------------------------------------------------- | ||
470 | * PIO | 531 | * PIO |
471 | * -------------------------------------------------------------------- */ | 532 | * -------------------------------------------------------------------- */ |
472 | 533 | ||
@@ -514,6 +575,8 @@ void __init at32_add_system_devices(void) | |||
514 | platform_device_register(&smc0_device); | 575 | platform_device_register(&smc0_device); |
515 | platform_device_register(&pdc_device); | 576 | platform_device_register(&pdc_device); |
516 | 577 | ||
578 | platform_device_register(&at32_systc0_device); | ||
579 | |||
517 | platform_device_register(&pio0_device); | 580 | platform_device_register(&pio0_device); |
518 | platform_device_register(&pio1_device); | 581 | platform_device_register(&pio1_device); |
519 | platform_device_register(&pio2_device); | 582 | platform_device_register(&pio2_device); |
@@ -950,6 +1013,7 @@ struct clk *at32_clock_list[] = { | |||
950 | &pbb_clk, | 1013 | &pbb_clk, |
951 | &at32_sm_pclk, | 1014 | &at32_sm_pclk, |
952 | &at32_intc0_pclk, | 1015 | &at32_intc0_pclk, |
1016 | &hmatrix_clk, | ||
953 | &ebi_clk, | 1017 | &ebi_clk, |
954 | &hramc_clk, | 1018 | &hramc_clk, |
955 | &smc0_pclk, | 1019 | &smc0_pclk, |
@@ -962,6 +1026,7 @@ struct clk *at32_clock_list[] = { | |||
962 | &pio2_mck, | 1026 | &pio2_mck, |
963 | &pio3_mck, | 1027 | &pio3_mck, |
964 | &pio4_mck, | 1028 | &pio4_mck, |
1029 | &at32_systc0_pclk, | ||
965 | &atmel_usart0_usart, | 1030 | &atmel_usart0_usart, |
966 | &atmel_usart1_usart, | 1031 | &atmel_usart1_usart, |
967 | &atmel_usart2_usart, | 1032 | &atmel_usart2_usart, |
@@ -1024,6 +1089,9 @@ void __init at32_clock_init(void) | |||
1024 | for (i = 0; i < ARRAY_SIZE(at32_clock_list); i++) { | 1089 | for (i = 0; i < ARRAY_SIZE(at32_clock_list); i++) { |
1025 | struct clk *clk = at32_clock_list[i]; | 1090 | struct clk *clk = at32_clock_list[i]; |
1026 | 1091 | ||
1092 | if (clk->users == 0) | ||
1093 | continue; | ||
1094 | |||
1027 | if (clk->mode == &cpu_clk_mode) | 1095 | if (clk->mode == &cpu_clk_mode) |
1028 | cpu_mask |= 1 << clk->index; | 1096 | cpu_mask |= 1 << clk->index; |
1029 | else if (clk->mode == &hsb_clk_mode) | 1097 | else if (clk->mode == &hsb_clk_mode) |
diff --git a/arch/avr32/mach-at32ap/hmatrix.h b/arch/avr32/mach-at32ap/hmatrix.h new file mode 100644 index 000000000000..d10bfb60d68d --- /dev/null +++ b/arch/avr32/mach-at32ap/hmatrix.h | |||
@@ -0,0 +1,182 @@ | |||
1 | /* | ||
2 | * Register definitions for High-Speed Bus Matrix | ||
3 | */ | ||
4 | #ifndef __HMATRIX_H | ||
5 | #define __HMATRIX_H | ||
6 | |||
7 | /* HMATRIX register offsets */ | ||
8 | #define HMATRIX_MCFG0 0x0000 | ||
9 | #define HMATRIX_MCFG1 0x0004 | ||
10 | #define HMATRIX_MCFG2 0x0008 | ||
11 | #define HMATRIX_MCFG3 0x000c | ||
12 | #define HMATRIX_MCFG4 0x0010 | ||
13 | #define HMATRIX_MCFG5 0x0014 | ||
14 | #define HMATRIX_MCFG6 0x0018 | ||
15 | #define HMATRIX_MCFG7 0x001c | ||
16 | #define HMATRIX_MCFG8 0x0020 | ||
17 | #define HMATRIX_MCFG9 0x0024 | ||
18 | #define HMATRIX_MCFG10 0x0028 | ||
19 | #define HMATRIX_MCFG11 0x002c | ||
20 | #define HMATRIX_MCFG12 0x0030 | ||
21 | #define HMATRIX_MCFG13 0x0034 | ||
22 | #define HMATRIX_MCFG14 0x0038 | ||
23 | #define HMATRIX_MCFG15 0x003c | ||
24 | #define HMATRIX_SCFG0 0x0040 | ||
25 | #define HMATRIX_SCFG1 0x0044 | ||
26 | #define HMATRIX_SCFG2 0x0048 | ||
27 | #define HMATRIX_SCFG3 0x004c | ||
28 | #define HMATRIX_SCFG4 0x0050 | ||
29 | #define HMATRIX_SCFG5 0x0054 | ||
30 | #define HMATRIX_SCFG6 0x0058 | ||
31 | #define HMATRIX_SCFG7 0x005c | ||
32 | #define HMATRIX_SCFG8 0x0060 | ||
33 | #define HMATRIX_SCFG9 0x0064 | ||
34 | #define HMATRIX_SCFG10 0x0068 | ||
35 | #define HMATRIX_SCFG11 0x006c | ||
36 | #define HMATRIX_SCFG12 0x0070 | ||
37 | #define HMATRIX_SCFG13 0x0074 | ||
38 | #define HMATRIX_SCFG14 0x0078 | ||
39 | #define HMATRIX_SCFG15 0x007c | ||
40 | #define HMATRIX_PRAS0 0x0080 | ||
41 | #define HMATRIX_PRBS0 0x0084 | ||
42 | #define HMATRIX_PRAS1 0x0088 | ||
43 | #define HMATRIX_PRBS1 0x008c | ||
44 | #define HMATRIX_PRAS2 0x0090 | ||
45 | #define HMATRIX_PRBS2 0x0094 | ||
46 | #define HMATRIX_PRAS3 0x0098 | ||
47 | #define HMATRIX_PRBS3 0x009c | ||
48 | #define HMATRIX_PRAS4 0x00a0 | ||
49 | #define HMATRIX_PRBS4 0x00a4 | ||
50 | #define HMATRIX_PRAS5 0x00a8 | ||
51 | #define HMATRIX_PRBS5 0x00ac | ||
52 | #define HMATRIX_PRAS6 0x00b0 | ||
53 | #define HMATRIX_PRBS6 0x00b4 | ||
54 | #define HMATRIX_PRAS7 0x00b8 | ||
55 | #define HMATRIX_PRBS7 0x00bc | ||
56 | #define HMATRIX_PRAS8 0x00c0 | ||
57 | #define HMATRIX_PRBS8 0x00c4 | ||
58 | #define HMATRIX_PRAS9 0x00c8 | ||
59 | #define HMATRIX_PRBS9 0x00cc | ||
60 | #define HMATRIX_PRAS10 0x00d0 | ||
61 | #define HMATRIX_PRBS10 0x00d4 | ||
62 | #define HMATRIX_PRAS11 0x00d8 | ||
63 | #define HMATRIX_PRBS11 0x00dc | ||
64 | #define HMATRIX_PRAS12 0x00e0 | ||
65 | #define HMATRIX_PRBS12 0x00e4 | ||
66 | #define HMATRIX_PRAS13 0x00e8 | ||
67 | #define HMATRIX_PRBS13 0x00ec | ||
68 | #define HMATRIX_PRAS14 0x00f0 | ||
69 | #define HMATRIX_PRBS14 0x00f4 | ||
70 | #define HMATRIX_PRAS15 0x00f8 | ||
71 | #define HMATRIX_PRBS15 0x00fc | ||
72 | #define HMATRIX_MRCR 0x0100 | ||
73 | #define HMATRIX_SFR0 0x0110 | ||
74 | #define HMATRIX_SFR1 0x0114 | ||
75 | #define HMATRIX_SFR2 0x0118 | ||
76 | #define HMATRIX_SFR3 0x011c | ||
77 | #define HMATRIX_SFR4 0x0120 | ||
78 | #define HMATRIX_SFR5 0x0124 | ||
79 | #define HMATRIX_SFR6 0x0128 | ||
80 | #define HMATRIX_SFR7 0x012c | ||
81 | #define HMATRIX_SFR8 0x0130 | ||
82 | #define HMATRIX_SFR9 0x0134 | ||
83 | #define HMATRIX_SFR10 0x0138 | ||
84 | #define HMATRIX_SFR11 0x013c | ||
85 | #define HMATRIX_SFR12 0x0140 | ||
86 | #define HMATRIX_SFR13 0x0144 | ||
87 | #define HMATRIX_SFR14 0x0148 | ||
88 | #define HMATRIX_SFR15 0x014c | ||
89 | |||
90 | /* Bitfields in MCFGx */ | ||
91 | #define HMATRIX_ULBT_OFFSET 0 | ||
92 | #define HMATRIX_ULBT_SIZE 3 | ||
93 | |||
94 | /* Bitfields in SCFGx */ | ||
95 | #define HMATRIX_SLOT_CYCLE_OFFSET 0 | ||
96 | #define HMATRIX_SLOT_CYCLE_SIZE 8 | ||
97 | #define HMATRIX_DEFMSTR_TYPE_OFFSET 16 | ||
98 | #define HMATRIX_DEFMSTR_TYPE_SIZE 2 | ||
99 | #define HMATRIX_FIXED_DEFMSTR_OFFSET 18 | ||
100 | #define HMATRIX_FIXED_DEFMSTR_SIZE 4 | ||
101 | #define HMATRIX_ARBT_OFFSET 24 | ||
102 | #define HMATRIX_ARBT_SIZE 2 | ||
103 | |||
104 | /* Bitfields in PRASx */ | ||
105 | #define HMATRIX_M0PR_OFFSET 0 | ||
106 | #define HMATRIX_M0PR_SIZE 4 | ||
107 | #define HMATRIX_M1PR_OFFSET 4 | ||
108 | #define HMATRIX_M1PR_SIZE 4 | ||
109 | #define HMATRIX_M2PR_OFFSET 8 | ||
110 | #define HMATRIX_M2PR_SIZE 4 | ||
111 | #define HMATRIX_M3PR_OFFSET 12 | ||
112 | #define HMATRIX_M3PR_SIZE 4 | ||
113 | #define HMATRIX_M4PR_OFFSET 16 | ||
114 | #define HMATRIX_M4PR_SIZE 4 | ||
115 | #define HMATRIX_M5PR_OFFSET 20 | ||
116 | #define HMATRIX_M5PR_SIZE 4 | ||
117 | #define HMATRIX_M6PR_OFFSET 24 | ||
118 | #define HMATRIX_M6PR_SIZE 4 | ||
119 | #define HMATRIX_M7PR_OFFSET 28 | ||
120 | #define HMATRIX_M7PR_SIZE 4 | ||
121 | |||
122 | /* Bitfields in PRBSx */ | ||
123 | #define HMATRIX_M8PR_OFFSET 0 | ||
124 | #define HMATRIX_M8PR_SIZE 4 | ||
125 | #define HMATRIX_M9PR_OFFSET 4 | ||
126 | #define HMATRIX_M9PR_SIZE 4 | ||
127 | #define HMATRIX_M10PR_OFFSET 8 | ||
128 | #define HMATRIX_M10PR_SIZE 4 | ||
129 | #define HMATRIX_M11PR_OFFSET 12 | ||
130 | #define HMATRIX_M11PR_SIZE 4 | ||
131 | #define HMATRIX_M12PR_OFFSET 16 | ||
132 | #define HMATRIX_M12PR_SIZE 4 | ||
133 | #define HMATRIX_M13PR_OFFSET 20 | ||
134 | #define HMATRIX_M13PR_SIZE 4 | ||
135 | #define HMATRIX_M14PR_OFFSET 24 | ||
136 | #define HMATRIX_M14PR_SIZE 4 | ||
137 | #define HMATRIX_M15PR_OFFSET 28 | ||
138 | #define HMATRIX_M15PR_SIZE 4 | ||
139 | |||
140 | /* Bitfields in SFR4 */ | ||
141 | #define HMATRIX_CS1A_OFFSET 1 | ||
142 | #define HMATRIX_CS1A_SIZE 1 | ||
143 | #define HMATRIX_CS3A_OFFSET 3 | ||
144 | #define HMATRIX_CS3A_SIZE 1 | ||
145 | #define HMATRIX_CS4A_OFFSET 4 | ||
146 | #define HMATRIX_CS4A_SIZE 1 | ||
147 | #define HMATRIX_CS5A_OFFSET 5 | ||
148 | #define HMATRIX_CS5A_SIZE 1 | ||
149 | #define HMATRIX_DBPUC_OFFSET 8 | ||
150 | #define HMATRIX_DBPUC_SIZE 1 | ||
151 | |||
152 | /* Constants for ULBT */ | ||
153 | #define HMATRIX_ULBT_INFINITE 0 | ||
154 | #define HMATRIX_ULBT_SINGLE 1 | ||
155 | #define HMATRIX_ULBT_FOUR_BEAT 2 | ||
156 | #define HMATRIX_ULBT_EIGHT_BEAT 3 | ||
157 | #define HMATRIX_ULBT_SIXTEEN_BEAT 4 | ||
158 | |||
159 | /* Constants for DEFMSTR_TYPE */ | ||
160 | #define HMATRIX_DEFMSTR_TYPE_NO_DEFAULT 0 | ||
161 | #define HMATRIX_DEFMSTR_TYPE_LAST_DEFAULT 1 | ||
162 | #define HMATRIX_DEFMSTR_TYPE_FIXED_DEFAULT 2 | ||
163 | |||
164 | /* Constants for ARBT */ | ||
165 | #define HMATRIX_ARBT_ROUND_ROBIN 0 | ||
166 | #define HMATRIX_ARBT_FIXED_PRIORITY 1 | ||
167 | |||
168 | /* Bit manipulation macros */ | ||
169 | #define HMATRIX_BIT(name) \ | ||
170 | (1 << HMATRIX_##name##_OFFSET) | ||
171 | #define HMATRIX_BF(name,value) \ | ||
172 | (((value) & ((1 << HMATRIX_##name##_SIZE) - 1)) \ | ||
173 | << HMATRIX_##name##_OFFSET) | ||
174 | #define HMATRIX_BFEXT(name,value) \ | ||
175 | (((value) >> HMATRIX_##name##_OFFSET) \ | ||
176 | & ((1 << HMATRIX_##name##_SIZE) - 1)) | ||
177 | #define HMATRIX_BFINS(name,value,old) \ | ||
178 | (((old) & ~(((1 << HMATRIX_##name##_SIZE) - 1) \ | ||
179 | << HMATRIX_##name##_OFFSET)) \ | ||
180 | | HMATRIX_BF(name,value)) | ||
181 | |||
182 | #endif /* __HMATRIX_H */ | ||
diff --git a/arch/avr32/mach-at32ap/hsmc.c b/arch/avr32/mach-at32ap/hsmc.c index 7691721928a7..5e22a750632b 100644 --- a/arch/avr32/mach-at32ap/hsmc.c +++ b/arch/avr32/mach-at32ap/hsmc.c | |||
@@ -75,12 +75,35 @@ int smc_set_configuration(int cs, const struct smc_config *config) | |||
75 | return -EINVAL; | 75 | return -EINVAL; |
76 | } | 76 | } |
77 | 77 | ||
78 | switch (config->nwait_mode) { | ||
79 | case 0: | ||
80 | mode |= HSMC_BF(EXNW_MODE, HSMC_EXNW_MODE_DISABLED); | ||
81 | break; | ||
82 | case 1: | ||
83 | mode |= HSMC_BF(EXNW_MODE, HSMC_EXNW_MODE_RESERVED); | ||
84 | break; | ||
85 | case 2: | ||
86 | mode |= HSMC_BF(EXNW_MODE, HSMC_EXNW_MODE_FROZEN); | ||
87 | break; | ||
88 | case 3: | ||
89 | mode |= HSMC_BF(EXNW_MODE, HSMC_EXNW_MODE_READY); | ||
90 | break; | ||
91 | default: | ||
92 | return -EINVAL; | ||
93 | } | ||
94 | |||
95 | if (config->tdf_cycles) { | ||
96 | mode |= HSMC_BF(TDF_CYCLES, config->tdf_cycles); | ||
97 | } | ||
98 | |||
78 | if (config->nrd_controlled) | 99 | if (config->nrd_controlled) |
79 | mode |= HSMC_BIT(READ_MODE); | 100 | mode |= HSMC_BIT(READ_MODE); |
80 | if (config->nwe_controlled) | 101 | if (config->nwe_controlled) |
81 | mode |= HSMC_BIT(WRITE_MODE); | 102 | mode |= HSMC_BIT(WRITE_MODE); |
82 | if (config->byte_write) | 103 | if (config->byte_write) |
83 | mode |= HSMC_BIT(BAT); | 104 | mode |= HSMC_BIT(BAT); |
105 | if (config->tdf_mode) | ||
106 | mode |= HSMC_BIT(TDF_MODE); | ||
84 | 107 | ||
85 | pr_debug("smc cs%d: setup/%08x pulse/%08x cycle/%08x mode/%08x\n", | 108 | pr_debug("smc cs%d: setup/%08x pulse/%08x cycle/%08x mode/%08x\n", |
86 | cs, setup, pulse, cycle, mode); | 109 | cs, setup, pulse, cycle, mode); |
diff --git a/arch/avr32/mach-at32ap/time-tc.c b/arch/avr32/mach-at32ap/time-tc.c new file mode 100644 index 000000000000..e3070bdd4bb9 --- /dev/null +++ b/arch/avr32/mach-at32ap/time-tc.c | |||
@@ -0,0 +1,218 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2004-2007 Atmel Corporation | ||
3 | * | ||
4 | * Based on MIPS implementation arch/mips/kernel/time.c | ||
5 | * Copyright 2001 MontaVista Software Inc. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/clk.h> | ||
13 | #include <linux/clocksource.h> | ||
14 | #include <linux/time.h> | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/interrupt.h> | ||
17 | #include <linux/irq.h> | ||
18 | #include <linux/kernel_stat.h> | ||
19 | #include <linux/errno.h> | ||
20 | #include <linux/init.h> | ||
21 | #include <linux/profile.h> | ||
22 | #include <linux/sysdev.h> | ||
23 | #include <linux/err.h> | ||
24 | |||
25 | #include <asm/div64.h> | ||
26 | #include <asm/sysreg.h> | ||
27 | #include <asm/io.h> | ||
28 | #include <asm/sections.h> | ||
29 | |||
30 | #include <asm/arch/time.h> | ||
31 | |||
32 | /* how many counter cycles in a jiffy? */ | ||
33 | static u32 cycles_per_jiffy; | ||
34 | |||
35 | /* the count value for the next timer interrupt */ | ||
36 | static u32 expirelo; | ||
37 | |||
38 | /* the I/O registers of the TC module */ | ||
39 | static void __iomem *ioregs; | ||
40 | |||
41 | cycle_t read_cycle_count(void) | ||
42 | { | ||
43 | return (cycle_t)timer_read(ioregs, 0, CV); | ||
44 | } | ||
45 | |||
46 | struct clocksource clocksource_avr32 = { | ||
47 | .name = "avr32", | ||
48 | .rating = 342, | ||
49 | .read = read_cycle_count, | ||
50 | .mask = CLOCKSOURCE_MASK(16), | ||
51 | .shift = 16, | ||
52 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
53 | }; | ||
54 | |||
55 | static void avr32_timer_ack(void) | ||
56 | { | ||
57 | u16 count = expirelo; | ||
58 | |||
59 | /* Ack this timer interrupt and set the next one, use a u16 | ||
60 | * variable so it will wrap around correctly */ | ||
61 | count += cycles_per_jiffy; | ||
62 | expirelo = count; | ||
63 | timer_write(ioregs, 0, RC, expirelo); | ||
64 | |||
65 | /* Check to see if we have missed any timer interrupts */ | ||
66 | count = timer_read(ioregs, 0, CV); | ||
67 | if ((count - expirelo) < 0x7fff) { | ||
68 | expirelo = count + cycles_per_jiffy; | ||
69 | timer_write(ioregs, 0, RC, expirelo); | ||
70 | } | ||
71 | } | ||
72 | |||
73 | u32 avr32_hpt_read(void) | ||
74 | { | ||
75 | return timer_read(ioregs, 0, CV); | ||
76 | } | ||
77 | |||
78 | static int avr32_timer_calc_div_and_set_jiffies(struct clk *pclk) | ||
79 | { | ||
80 | unsigned int cycles_max = (clocksource_avr32.mask + 1) / 2; | ||
81 | unsigned int divs[] = { 4, 8, 16, 32 }; | ||
82 | int divs_size = sizeof(divs) / sizeof(*divs); | ||
83 | int i = 0; | ||
84 | unsigned long count_hz; | ||
85 | unsigned long shift; | ||
86 | unsigned long mult; | ||
87 | int clock_div = -1; | ||
88 | u64 tmp; | ||
89 | |||
90 | shift = clocksource_avr32.shift; | ||
91 | |||
92 | do { | ||
93 | count_hz = clk_get_rate(pclk) / divs[i]; | ||
94 | mult = clocksource_hz2mult(count_hz, shift); | ||
95 | clocksource_avr32.mult = mult; | ||
96 | |||
97 | tmp = TICK_NSEC; | ||
98 | tmp <<= shift; | ||
99 | tmp += mult / 2; | ||
100 | do_div(tmp, mult); | ||
101 | |||
102 | cycles_per_jiffy = tmp; | ||
103 | } while (cycles_per_jiffy > cycles_max && ++i < divs_size); | ||
104 | |||
105 | clock_div = i + 1; | ||
106 | |||
107 | if (clock_div > divs_size) { | ||
108 | pr_debug("timer: could not calculate clock divider\n"); | ||
109 | return -EFAULT; | ||
110 | } | ||
111 | |||
112 | /* Set the clock divider */ | ||
113 | timer_write(ioregs, 0, CMR, TIMER_BF(CMR_TCCLKS, clock_div)); | ||
114 | |||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | int avr32_hpt_init(unsigned int count) | ||
119 | { | ||
120 | struct resource *regs; | ||
121 | struct clk *pclk; | ||
122 | int irq = -1; | ||
123 | int ret = 0; | ||
124 | |||
125 | ret = -ENXIO; | ||
126 | |||
127 | irq = platform_get_irq(&at32_systc0_device, 0); | ||
128 | if (irq < 0) { | ||
129 | pr_debug("timer: could not get irq\n"); | ||
130 | goto out_error; | ||
131 | } | ||
132 | |||
133 | pclk = clk_get(&at32_systc0_device.dev, "pclk"); | ||
134 | if (IS_ERR(pclk)) { | ||
135 | pr_debug("timer: could not get clk: %ld\n", PTR_ERR(pclk)); | ||
136 | goto out_error; | ||
137 | } | ||
138 | clk_enable(pclk); | ||
139 | |||
140 | regs = platform_get_resource(&at32_systc0_device, IORESOURCE_MEM, 0); | ||
141 | if (!regs) { | ||
142 | pr_debug("timer: could not get resource\n"); | ||
143 | goto out_error_clk; | ||
144 | } | ||
145 | |||
146 | ioregs = ioremap(regs->start, regs->end - regs->start + 1); | ||
147 | if (!ioregs) { | ||
148 | pr_debug("timer: could not get ioregs\n"); | ||
149 | goto out_error_clk; | ||
150 | } | ||
151 | |||
152 | ret = avr32_timer_calc_div_and_set_jiffies(pclk); | ||
153 | if (ret) | ||
154 | goto out_error_io; | ||
155 | |||
156 | ret = setup_irq(irq, &timer_irqaction); | ||
157 | if (ret) { | ||
158 | pr_debug("timer: could not request irq %d: %d\n", | ||
159 | irq, ret); | ||
160 | goto out_error_io; | ||
161 | } | ||
162 | |||
163 | expirelo = (timer_read(ioregs, 0, CV) / cycles_per_jiffy + 1) | ||
164 | * cycles_per_jiffy; | ||
165 | |||
166 | /* Enable clock and interrupts on RC compare */ | ||
167 | timer_write(ioregs, 0, CCR, TIMER_BIT(CCR_CLKEN)); | ||
168 | timer_write(ioregs, 0, IER, TIMER_BIT(IER_CPCS)); | ||
169 | /* Set cycles to first interrupt */ | ||
170 | timer_write(ioregs, 0, RC, expirelo); | ||
171 | |||
172 | printk(KERN_INFO "timer: AT32AP system timer/counter at 0x%p irq %d\n", | ||
173 | ioregs, irq); | ||
174 | |||
175 | return 0; | ||
176 | |||
177 | out_error_io: | ||
178 | iounmap(ioregs); | ||
179 | out_error_clk: | ||
180 | clk_put(pclk); | ||
181 | out_error: | ||
182 | return ret; | ||
183 | } | ||
184 | |||
185 | int avr32_hpt_start(void) | ||
186 | { | ||
187 | timer_write(ioregs, 0, CCR, TIMER_BIT(CCR_SWTRG)); | ||
188 | return 0; | ||
189 | } | ||
190 | |||
191 | irqreturn_t timer_interrupt(int irq, void *dev_id) | ||
192 | { | ||
193 | unsigned int sr = timer_read(ioregs, 0, SR); | ||
194 | |||
195 | if (sr & TIMER_BIT(SR_CPCS)) { | ||
196 | /* ack timer interrupt and try to set next interrupt */ | ||
197 | avr32_timer_ack(); | ||
198 | |||
199 | /* | ||
200 | * Call the generic timer interrupt handler | ||
201 | */ | ||
202 | write_seqlock(&xtime_lock); | ||
203 | do_timer(1); | ||
204 | write_sequnlock(&xtime_lock); | ||
205 | |||
206 | /* | ||
207 | * In UP mode, we call local_timer_interrupt() to do profiling | ||
208 | * and process accounting. | ||
209 | * | ||
210 | * SMP is not supported yet. | ||
211 | */ | ||
212 | local_timer_interrupt(irq, dev_id); | ||
213 | |||
214 | return IRQ_HANDLED; | ||
215 | } | ||
216 | |||
217 | return IRQ_NONE; | ||
218 | } | ||
diff --git a/arch/avr32/mm/fault.c b/arch/avr32/mm/fault.c index 678557260a35..146ebdbdc302 100644 --- a/arch/avr32/mm/fault.c +++ b/arch/avr32/mm/fault.c | |||
@@ -16,26 +16,8 @@ | |||
16 | #include <asm/kdebug.h> | 16 | #include <asm/kdebug.h> |
17 | #include <asm/mmu_context.h> | 17 | #include <asm/mmu_context.h> |
18 | #include <asm/sysreg.h> | 18 | #include <asm/sysreg.h> |
19 | #include <asm/uaccess.h> | ||
20 | #include <asm/tlb.h> | 19 | #include <asm/tlb.h> |
21 | 20 | #include <asm/uaccess.h> | |
22 | #ifdef DEBUG | ||
23 | static void dump_code(unsigned long pc) | ||
24 | { | ||
25 | char *p = (char *)pc; | ||
26 | char val; | ||
27 | int i; | ||
28 | |||
29 | |||
30 | printk(KERN_DEBUG "Code:"); | ||
31 | for (i = 0; i < 16; i++) { | ||
32 | if (__get_user(val, p + i)) | ||
33 | break; | ||
34 | printk(" %02x", val); | ||
35 | } | ||
36 | printk("\n"); | ||
37 | } | ||
38 | #endif | ||
39 | 21 | ||
40 | #ifdef CONFIG_KPROBES | 22 | #ifdef CONFIG_KPROBES |
41 | ATOMIC_NOTIFIER_HEAD(notify_page_fault_chain); | 23 | ATOMIC_NOTIFIER_HEAD(notify_page_fault_chain); |
@@ -68,17 +50,19 @@ static inline int notify_page_fault(enum die_val val, struct pt_regs *regs, | |||
68 | } | 50 | } |
69 | #endif | 51 | #endif |
70 | 52 | ||
53 | int exception_trace = 1; | ||
54 | |||
71 | /* | 55 | /* |
72 | * This routine handles page faults. It determines the address and the | 56 | * This routine handles page faults. It determines the address and the |
73 | * problem, and then passes it off to one of the appropriate routines. | 57 | * problem, and then passes it off to one of the appropriate routines. |
74 | * | 58 | * |
75 | * ecr is the Exception Cause Register. Possible values are: | 59 | * ecr is the Exception Cause Register. Possible values are: |
76 | * 5: Page not found (instruction access) | ||
77 | * 6: Protection fault (instruction access) | 60 | * 6: Protection fault (instruction access) |
78 | * 12: Page not found (read access) | 61 | * 15: Protection fault (read access) |
79 | * 13: Page not found (write access) | 62 | * 16: Protection fault (write access) |
80 | * 14: Protection fault (read access) | 63 | * 20: Page not found (instruction access) |
81 | * 15: Protection fault (write access) | 64 | * 24: Page not found (read access) |
65 | * 28: Page not found (write access) | ||
82 | */ | 66 | */ |
83 | asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | 67 | asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) |
84 | { | 68 | { |
@@ -88,7 +72,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
88 | const struct exception_table_entry *fixup; | 72 | const struct exception_table_entry *fixup; |
89 | unsigned long address; | 73 | unsigned long address; |
90 | unsigned long page; | 74 | unsigned long page; |
91 | int writeaccess = 0; | 75 | int writeaccess; |
76 | long signr; | ||
77 | int code; | ||
92 | 78 | ||
93 | if (notify_page_fault(DIE_PAGE_FAULT, regs, | 79 | if (notify_page_fault(DIE_PAGE_FAULT, regs, |
94 | ecr, SIGSEGV) == NOTIFY_STOP) | 80 | ecr, SIGSEGV) == NOTIFY_STOP) |
@@ -99,6 +85,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
99 | tsk = current; | 85 | tsk = current; |
100 | mm = tsk->mm; | 86 | mm = tsk->mm; |
101 | 87 | ||
88 | signr = SIGSEGV; | ||
89 | code = SEGV_MAPERR; | ||
90 | |||
102 | /* | 91 | /* |
103 | * If we're in an interrupt or have no user context, we must | 92 | * If we're in an interrupt or have no user context, we must |
104 | * not take the fault... | 93 | * not take the fault... |
@@ -125,7 +114,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
125 | * can handle it... | 114 | * can handle it... |
126 | */ | 115 | */ |
127 | good_area: | 116 | good_area: |
128 | //pr_debug("good area: vm_flags = 0x%lx\n", vma->vm_flags); | 117 | code = SEGV_ACCERR; |
118 | writeaccess = 0; | ||
119 | |||
129 | switch (ecr) { | 120 | switch (ecr) { |
130 | case ECR_PROTECTION_X: | 121 | case ECR_PROTECTION_X: |
131 | case ECR_TLB_MISS_X: | 122 | case ECR_TLB_MISS_X: |
@@ -176,46 +167,24 @@ survive: | |||
176 | * map. Fix it, but check if it's kernel or user first... | 167 | * map. Fix it, but check if it's kernel or user first... |
177 | */ | 168 | */ |
178 | bad_area: | 169 | bad_area: |
179 | pr_debug("Bad area [%s:%u]: addr %08lx, ecr %lu\n", | ||
180 | tsk->comm, tsk->pid, address, ecr); | ||
181 | |||
182 | up_read(&mm->mmap_sem); | 170 | up_read(&mm->mmap_sem); |
183 | 171 | ||
184 | if (user_mode(regs)) { | 172 | if (user_mode(regs)) { |
185 | /* Hmm...we have to pass address and ecr somehow... */ | 173 | if (exception_trace) |
186 | /* tsk->thread.address = address; | 174 | printk("%s%s[%d]: segfault at %08lx pc %08lx " |
187 | tsk->thread.error_code = ecr; */ | 175 | "sp %08lx ecr %lu\n", |
188 | #ifdef DEBUG | 176 | is_init(tsk) ? KERN_EMERG : KERN_INFO, |
189 | show_regs(regs); | 177 | tsk->comm, tsk->pid, address, regs->pc, |
190 | dump_code(regs->pc); | 178 | regs->sp, ecr); |
191 | 179 | _exception(SIGSEGV, regs, code, address); | |
192 | page = sysreg_read(PTBR); | ||
193 | printk("ptbr = %08lx", page); | ||
194 | if (page) { | ||
195 | page = ((unsigned long *)page)[address >> 22]; | ||
196 | printk(" pgd = %08lx", page); | ||
197 | if (page & _PAGE_PRESENT) { | ||
198 | page &= PAGE_MASK; | ||
199 | address &= 0x003ff000; | ||
200 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; | ||
201 | printk(" pte = %08lx\n", page); | ||
202 | } | ||
203 | } | ||
204 | #endif | ||
205 | pr_debug("Sending SIGSEGV to PID %d...\n", | ||
206 | tsk->pid); | ||
207 | force_sig(SIGSEGV, tsk); | ||
208 | return; | 180 | return; |
209 | } | 181 | } |
210 | 182 | ||
211 | no_context: | 183 | no_context: |
212 | pr_debug("No context\n"); | ||
213 | |||
214 | /* Are we prepared to handle this kernel fault? */ | 184 | /* Are we prepared to handle this kernel fault? */ |
215 | fixup = search_exception_tables(regs->pc); | 185 | fixup = search_exception_tables(regs->pc); |
216 | if (fixup) { | 186 | if (fixup) { |
217 | regs->pc = fixup->fixup; | 187 | regs->pc = fixup->fixup; |
218 | pr_debug("Found fixup at %08lx\n", fixup->fixup); | ||
219 | return; | 188 | return; |
220 | } | 189 | } |
221 | 190 | ||
@@ -230,7 +199,6 @@ no_context: | |||
230 | printk(KERN_ALERT | 199 | printk(KERN_ALERT |
231 | "Unable to handle kernel paging request"); | 200 | "Unable to handle kernel paging request"); |
232 | printk(" at virtual address %08lx\n", address); | 201 | printk(" at virtual address %08lx\n", address); |
233 | printk(KERN_ALERT "pc = %08lx\n", regs->pc); | ||
234 | 202 | ||
235 | page = sysreg_read(PTBR); | 203 | page = sysreg_read(PTBR); |
236 | printk(KERN_ALERT "ptbr = %08lx", page); | 204 | printk(KERN_ALERT "ptbr = %08lx", page); |
@@ -241,20 +209,20 @@ no_context: | |||
241 | page &= PAGE_MASK; | 209 | page &= PAGE_MASK; |
242 | address &= 0x003ff000; | 210 | address &= 0x003ff000; |
243 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; | 211 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; |
244 | printk(" pte = %08lx\n", page); | 212 | printk(" pte = %08lx", page); |
245 | } | 213 | } |
246 | } | 214 | } |
247 | die("\nOops", regs, ecr); | 215 | printk("\n"); |
248 | do_exit(SIGKILL); | 216 | die("Kernel access of bad area", regs, signr); |
217 | return; | ||
249 | 218 | ||
250 | /* | 219 | /* |
251 | * We ran out of memory, or some other thing happened to us | 220 | * We ran out of memory, or some other thing happened to us |
252 | * that made us unable to handle the page fault gracefully. | 221 | * that made us unable to handle the page fault gracefully. |
253 | */ | 222 | */ |
254 | out_of_memory: | 223 | out_of_memory: |
255 | printk("Out of memory\n"); | ||
256 | up_read(&mm->mmap_sem); | 224 | up_read(&mm->mmap_sem); |
257 | if (current->pid == 1) { | 225 | if (is_init(current)) { |
258 | yield(); | 226 | yield(); |
259 | down_read(&mm->mmap_sem); | 227 | down_read(&mm->mmap_sem); |
260 | goto survive; | 228 | goto survive; |
@@ -267,21 +235,20 @@ out_of_memory: | |||
267 | do_sigbus: | 235 | do_sigbus: |
268 | up_read(&mm->mmap_sem); | 236 | up_read(&mm->mmap_sem); |
269 | 237 | ||
270 | /* | ||
271 | * Send a sigbus, regardless of whether we were in kernel or | ||
272 | * user mode. | ||
273 | */ | ||
274 | /* address, error_code, trap_no, ... */ | ||
275 | #ifdef DEBUG | ||
276 | show_regs(regs); | ||
277 | dump_code(regs->pc); | ||
278 | #endif | ||
279 | pr_debug("Sending SIGBUS to PID %d...\n", tsk->pid); | ||
280 | force_sig(SIGBUS, tsk); | ||
281 | |||
282 | /* Kernel mode? Handle exceptions or die */ | 238 | /* Kernel mode? Handle exceptions or die */ |
239 | signr = SIGBUS; | ||
240 | code = BUS_ADRERR; | ||
283 | if (!user_mode(regs)) | 241 | if (!user_mode(regs)) |
284 | goto no_context; | 242 | goto no_context; |
243 | |||
244 | if (exception_trace) | ||
245 | printk("%s%s[%d]: bus error at %08lx pc %08lx " | ||
246 | "sp %08lx ecr %lu\n", | ||
247 | is_init(tsk) ? KERN_EMERG : KERN_INFO, | ||
248 | tsk->comm, tsk->pid, address, regs->pc, | ||
249 | regs->sp, ecr); | ||
250 | |||
251 | _exception(SIGBUS, regs, BUS_ADRERR, address); | ||
285 | } | 252 | } |
286 | 253 | ||
287 | asmlinkage void do_bus_error(unsigned long addr, int write_access, | 254 | asmlinkage void do_bus_error(unsigned long addr, int write_access, |
@@ -292,8 +259,7 @@ asmlinkage void do_bus_error(unsigned long addr, int write_access, | |||
292 | addr, write_access ? "write" : "read"); | 259 | addr, write_access ? "write" : "read"); |
293 | printk(KERN_INFO "DTLB dump:\n"); | 260 | printk(KERN_INFO "DTLB dump:\n"); |
294 | dump_dtlb(); | 261 | dump_dtlb(); |
295 | die("Bus Error", regs, write_access); | 262 | die("Bus Error", regs, SIGKILL); |
296 | do_exit(SIGKILL); | ||
297 | } | 263 | } |
298 | 264 | ||
299 | /* | 265 | /* |
diff --git a/arch/avr32/mm/init.c b/arch/avr32/mm/init.c index 70da6894acc1..82cf70854b90 100644 --- a/arch/avr32/mm/init.c +++ b/arch/avr32/mm/init.c | |||
@@ -10,11 +10,9 @@ | |||
10 | #include <linux/mm.h> | 10 | #include <linux/mm.h> |
11 | #include <linux/swap.h> | 11 | #include <linux/swap.h> |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/initrd.h> | ||
14 | #include <linux/mmzone.h> | 13 | #include <linux/mmzone.h> |
15 | #include <linux/bootmem.h> | 14 | #include <linux/bootmem.h> |
16 | #include <linux/pagemap.h> | 15 | #include <linux/pagemap.h> |
17 | #include <linux/pfn.h> | ||
18 | #include <linux/nodemask.h> | 16 | #include <linux/nodemask.h> |
19 | 17 | ||
20 | #include <asm/page.h> | 18 | #include <asm/page.h> |
@@ -78,242 +76,6 @@ void show_mem(void) | |||
78 | printk ("%d pages swap cached\n", cached); | 76 | printk ("%d pages swap cached\n", cached); |
79 | } | 77 | } |
80 | 78 | ||
81 | static void __init print_memory_map(const char *what, | ||
82 | struct tag_mem_range *mem) | ||
83 | { | ||
84 | printk ("%s:\n", what); | ||
85 | for (; mem; mem = mem->next) { | ||
86 | printk (" %08lx - %08lx\n", | ||
87 | (unsigned long)mem->addr, | ||
88 | (unsigned long)(mem->addr + mem->size)); | ||
89 | } | ||
90 | } | ||
91 | |||
92 | #define MAX_LOWMEM HIGHMEM_START | ||
93 | #define MAX_LOWMEM_PFN PFN_DOWN(MAX_LOWMEM) | ||
94 | |||
95 | /* | ||
96 | * Sort a list of memory regions in-place by ascending address. | ||
97 | * | ||
98 | * We're using bubble sort because we only have singly linked lists | ||
99 | * with few elements. | ||
100 | */ | ||
101 | static void __init sort_mem_list(struct tag_mem_range **pmem) | ||
102 | { | ||
103 | int done; | ||
104 | struct tag_mem_range **a, **b; | ||
105 | |||
106 | if (!*pmem) | ||
107 | return; | ||
108 | |||
109 | do { | ||
110 | done = 1; | ||
111 | a = pmem, b = &(*pmem)->next; | ||
112 | while (*b) { | ||
113 | if ((*a)->addr > (*b)->addr) { | ||
114 | struct tag_mem_range *tmp; | ||
115 | tmp = (*b)->next; | ||
116 | (*b)->next = *a; | ||
117 | *a = *b; | ||
118 | *b = tmp; | ||
119 | done = 0; | ||
120 | } | ||
121 | a = &(*a)->next; | ||
122 | b = &(*a)->next; | ||
123 | } | ||
124 | } while (!done); | ||
125 | } | ||
126 | |||
127 | /* | ||
128 | * Find a free memory region large enough for storing the | ||
129 | * bootmem bitmap. | ||
130 | */ | ||
131 | static unsigned long __init | ||
132 | find_bootmap_pfn(const struct tag_mem_range *mem) | ||
133 | { | ||
134 | unsigned long bootmap_pages, bootmap_len; | ||
135 | unsigned long node_pages = PFN_UP(mem->size); | ||
136 | unsigned long bootmap_addr = mem->addr; | ||
137 | struct tag_mem_range *reserved = mem_reserved; | ||
138 | struct tag_mem_range *ramdisk = mem_ramdisk; | ||
139 | unsigned long kern_start = virt_to_phys(_stext); | ||
140 | unsigned long kern_end = virt_to_phys(_end); | ||
141 | |||
142 | bootmap_pages = bootmem_bootmap_pages(node_pages); | ||
143 | bootmap_len = bootmap_pages << PAGE_SHIFT; | ||
144 | |||
145 | /* | ||
146 | * Find a large enough region without reserved pages for | ||
147 | * storing the bootmem bitmap. We can take advantage of the | ||
148 | * fact that all lists have been sorted. | ||
149 | * | ||
150 | * We have to check explicitly reserved regions as well as the | ||
151 | * kernel image and any RAMDISK images... | ||
152 | * | ||
153 | * Oh, and we have to make sure we don't overwrite the taglist | ||
154 | * since we're going to use it until the bootmem allocator is | ||
155 | * fully up and running. | ||
156 | */ | ||
157 | while (1) { | ||
158 | if ((bootmap_addr < kern_end) && | ||
159 | ((bootmap_addr + bootmap_len) > kern_start)) | ||
160 | bootmap_addr = kern_end; | ||
161 | |||
162 | while (reserved && | ||
163 | (bootmap_addr >= (reserved->addr + reserved->size))) | ||
164 | reserved = reserved->next; | ||
165 | |||
166 | if (reserved && | ||
167 | ((bootmap_addr + bootmap_len) >= reserved->addr)) { | ||
168 | bootmap_addr = reserved->addr + reserved->size; | ||
169 | continue; | ||
170 | } | ||
171 | |||
172 | while (ramdisk && | ||
173 | (bootmap_addr >= (ramdisk->addr + ramdisk->size))) | ||
174 | ramdisk = ramdisk->next; | ||
175 | |||
176 | if (!ramdisk || | ||
177 | ((bootmap_addr + bootmap_len) < ramdisk->addr)) | ||
178 | break; | ||
179 | |||
180 | bootmap_addr = ramdisk->addr + ramdisk->size; | ||
181 | } | ||
182 | |||
183 | if ((PFN_UP(bootmap_addr) + bootmap_len) >= (mem->addr + mem->size)) | ||
184 | return ~0UL; | ||
185 | |||
186 | return PFN_UP(bootmap_addr); | ||
187 | } | ||
188 | |||
189 | void __init setup_bootmem(void) | ||
190 | { | ||
191 | unsigned bootmap_size; | ||
192 | unsigned long first_pfn, bootmap_pfn, pages; | ||
193 | unsigned long max_pfn, max_low_pfn; | ||
194 | unsigned long kern_start = virt_to_phys(_stext); | ||
195 | unsigned long kern_end = virt_to_phys(_end); | ||
196 | unsigned node = 0; | ||
197 | struct tag_mem_range *bank, *res; | ||
198 | |||
199 | sort_mem_list(&mem_phys); | ||
200 | sort_mem_list(&mem_reserved); | ||
201 | |||
202 | print_memory_map("Physical memory", mem_phys); | ||
203 | print_memory_map("Reserved memory", mem_reserved); | ||
204 | |||
205 | nodes_clear(node_online_map); | ||
206 | |||
207 | if (mem_ramdisk) { | ||
208 | #ifdef CONFIG_BLK_DEV_INITRD | ||
209 | initrd_start = (unsigned long)__va(mem_ramdisk->addr); | ||
210 | initrd_end = initrd_start + mem_ramdisk->size; | ||
211 | |||
212 | print_memory_map("RAMDISK images", mem_ramdisk); | ||
213 | if (mem_ramdisk->next) | ||
214 | printk(KERN_WARNING | ||
215 | "Warning: Only the first RAMDISK image " | ||
216 | "will be used\n"); | ||
217 | sort_mem_list(&mem_ramdisk); | ||
218 | #else | ||
219 | printk(KERN_WARNING "RAM disk image present, but " | ||
220 | "no initrd support in kernel!\n"); | ||
221 | #endif | ||
222 | } | ||
223 | |||
224 | if (mem_phys->next) | ||
225 | printk(KERN_WARNING "Only using first memory bank\n"); | ||
226 | |||
227 | for (bank = mem_phys; bank; bank = NULL) { | ||
228 | first_pfn = PFN_UP(bank->addr); | ||
229 | max_low_pfn = max_pfn = PFN_DOWN(bank->addr + bank->size); | ||
230 | bootmap_pfn = find_bootmap_pfn(bank); | ||
231 | if (bootmap_pfn > max_pfn) | ||
232 | panic("No space for bootmem bitmap!\n"); | ||
233 | |||
234 | if (max_low_pfn > MAX_LOWMEM_PFN) { | ||
235 | max_low_pfn = MAX_LOWMEM_PFN; | ||
236 | #ifndef CONFIG_HIGHMEM | ||
237 | /* | ||
238 | * Lowmem is memory that can be addressed | ||
239 | * directly through P1/P2 | ||
240 | */ | ||
241 | printk(KERN_WARNING | ||
242 | "Node %u: Only %ld MiB of memory will be used.\n", | ||
243 | node, MAX_LOWMEM >> 20); | ||
244 | printk(KERN_WARNING "Use a HIGHMEM enabled kernel.\n"); | ||
245 | #else | ||
246 | #error HIGHMEM is not supported by AVR32 yet | ||
247 | #endif | ||
248 | } | ||
249 | |||
250 | /* Initialize the boot-time allocator with low memory only. */ | ||
251 | bootmap_size = init_bootmem_node(NODE_DATA(node), bootmap_pfn, | ||
252 | first_pfn, max_low_pfn); | ||
253 | |||
254 | printk("Node %u: bdata = %p, bdata->node_bootmem_map = %p\n", | ||
255 | node, NODE_DATA(node)->bdata, | ||
256 | NODE_DATA(node)->bdata->node_bootmem_map); | ||
257 | |||
258 | /* | ||
259 | * Register fully available RAM pages with the bootmem | ||
260 | * allocator. | ||
261 | */ | ||
262 | pages = max_low_pfn - first_pfn; | ||
263 | free_bootmem_node (NODE_DATA(node), PFN_PHYS(first_pfn), | ||
264 | PFN_PHYS(pages)); | ||
265 | |||
266 | /* | ||
267 | * Reserve space for the kernel image (if present in | ||
268 | * this node)... | ||
269 | */ | ||
270 | if ((kern_start >= PFN_PHYS(first_pfn)) && | ||
271 | (kern_start < PFN_PHYS(max_pfn))) { | ||
272 | printk("Node %u: Kernel image %08lx - %08lx\n", | ||
273 | node, kern_start, kern_end); | ||
274 | reserve_bootmem_node(NODE_DATA(node), kern_start, | ||
275 | kern_end - kern_start); | ||
276 | } | ||
277 | |||
278 | /* ...the bootmem bitmap... */ | ||
279 | reserve_bootmem_node(NODE_DATA(node), | ||
280 | PFN_PHYS(bootmap_pfn), | ||
281 | bootmap_size); | ||
282 | |||
283 | /* ...any RAMDISK images... */ | ||
284 | for (res = mem_ramdisk; res; res = res->next) { | ||
285 | if (res->addr > PFN_PHYS(max_pfn)) | ||
286 | break; | ||
287 | |||
288 | if (res->addr >= PFN_PHYS(first_pfn)) { | ||
289 | printk("Node %u: RAMDISK %08lx - %08lx\n", | ||
290 | node, | ||
291 | (unsigned long)res->addr, | ||
292 | (unsigned long)(res->addr + res->size)); | ||
293 | reserve_bootmem_node(NODE_DATA(node), | ||
294 | res->addr, res->size); | ||
295 | } | ||
296 | } | ||
297 | |||
298 | /* ...and any other reserved regions. */ | ||
299 | for (res = mem_reserved; res; res = res->next) { | ||
300 | if (res->addr > PFN_PHYS(max_pfn)) | ||
301 | break; | ||
302 | |||
303 | if (res->addr >= PFN_PHYS(first_pfn)) { | ||
304 | printk("Node %u: Reserved %08lx - %08lx\n", | ||
305 | node, | ||
306 | (unsigned long)res->addr, | ||
307 | (unsigned long)(res->addr + res->size)); | ||
308 | reserve_bootmem_node(NODE_DATA(node), | ||
309 | res->addr, res->size); | ||
310 | } | ||
311 | } | ||
312 | |||
313 | node_set_online(node); | ||
314 | } | ||
315 | } | ||
316 | |||
317 | /* | 79 | /* |
318 | * paging_init() sets up the page tables | 80 | * paging_init() sets up the page tables |
319 | * | 81 | * |