diff options
Diffstat (limited to 'arch')
455 files changed, 9567 insertions, 6447 deletions
diff --git a/arch/Kconfig b/arch/Kconfig new file mode 100644 index 000000000000..3d72dc3fc8f5 --- /dev/null +++ b/arch/Kconfig | |||
@@ -0,0 +1,31 @@ | |||
1 | # | ||
2 | # General architecture dependent options | ||
3 | # | ||
4 | |||
5 | config OPROFILE | ||
6 | tristate "OProfile system profiling (EXPERIMENTAL)" | ||
7 | depends on PROFILING | ||
8 | depends on HAVE_OPROFILE | ||
9 | help | ||
10 | OProfile is a profiling system capable of profiling the | ||
11 | whole system, include the kernel, kernel modules, libraries, | ||
12 | and applications. | ||
13 | |||
14 | If unsure, say N. | ||
15 | |||
16 | config HAVE_OPROFILE | ||
17 | def_bool n | ||
18 | |||
19 | config KPROBES | ||
20 | bool "Kprobes" | ||
21 | depends on KALLSYMS && MODULES | ||
22 | depends on HAVE_KPROBES | ||
23 | help | ||
24 | Kprobes allows you to trap at almost any kernel address and | ||
25 | execute a callback function. register_kprobe() establishes | ||
26 | a probepoint and specifies the callback. Kprobes is useful | ||
27 | for kernel debugging, non-intrusive instrumentation and testing. | ||
28 | If in doubt, say "N". | ||
29 | |||
30 | config HAVE_KPROBES | ||
31 | def_bool n | ||
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index 4c002ba37e50..01b10ab588a6 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
@@ -5,6 +5,7 @@ | |||
5 | config ALPHA | 5 | config ALPHA |
6 | bool | 6 | bool |
7 | default y | 7 | default y |
8 | select HAVE_OPROFILE | ||
8 | help | 9 | help |
9 | The Alpha is a 64-bit general-purpose processor designed and | 10 | The Alpha is a 64-bit general-purpose processor designed and |
10 | marketed by the Digital Equipment Corporation of blessed memory, | 11 | marketed by the Digital Equipment Corporation of blessed memory, |
@@ -318,11 +319,6 @@ config PCI | |||
318 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 319 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
319 | VESA. If you have PCI, say Y, otherwise N. | 320 | VESA. If you have PCI, say Y, otherwise N. |
320 | 321 | ||
321 | The PCI-HOWTO, available from | ||
322 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
323 | information about which PCI hardware does work under Linux and which | ||
324 | doesn't. | ||
325 | |||
326 | config PCI_DOMAINS | 322 | config PCI_DOMAINS |
327 | bool | 323 | bool |
328 | default y | 324 | default y |
@@ -536,8 +532,8 @@ config SMP | |||
536 | singleprocessor machines. On a singleprocessor machine, the kernel | 532 | singleprocessor machines. On a singleprocessor machine, the kernel |
537 | will run faster if you say N here. | 533 | will run faster if you say N here. |
538 | 534 | ||
539 | See also the <file:Documentation/smp.txt>, and the SMP-HOWTO | 535 | See also the SMP-HOWTO available at |
540 | available at <http://www.tldp.org/docs.html#howto>. | 536 | <http://www.tldp.org/docs.html#howto>. |
541 | 537 | ||
542 | If you don't know what to do here, say N. | 538 | If you don't know what to do here, say N. |
543 | 539 | ||
@@ -654,8 +650,6 @@ source "drivers/Kconfig" | |||
654 | 650 | ||
655 | source "fs/Kconfig" | 651 | source "fs/Kconfig" |
656 | 652 | ||
657 | source "kernel/Kconfig.instrumentation" | ||
658 | |||
659 | source "arch/alpha/Kconfig.debug" | 653 | source "arch/alpha/Kconfig.debug" |
660 | 654 | ||
661 | # DUMMY_CONSOLE may be defined in drivers/video/console/Kconfig | 655 | # DUMMY_CONSOLE may be defined in drivers/video/console/Kconfig |
diff --git a/arch/alpha/kernel/pci-noop.c b/arch/alpha/kernel/pci-noop.c index 468b76ce66a1..8ac08311f5a5 100644 --- a/arch/alpha/kernel/pci-noop.c +++ b/arch/alpha/kernel/pci-noop.c | |||
@@ -165,7 +165,7 @@ dma_alloc_coherent(struct device *dev, size_t size, | |||
165 | ret = (void *)__get_free_pages(gfp, get_order(size)); | 165 | ret = (void *)__get_free_pages(gfp, get_order(size)); |
166 | if (ret) { | 166 | if (ret) { |
167 | memset(ret, 0, size); | 167 | memset(ret, 0, size); |
168 | *dma_handle = virt_to_bus(ret); | 168 | *dma_handle = virt_to_phys(ret); |
169 | } | 169 | } |
170 | return ret; | 170 | return ret; |
171 | } | 171 | } |
@@ -184,7 +184,7 @@ dma_map_sg(struct device *dev, struct scatterlist *sgl, int nents, | |||
184 | 184 | ||
185 | BUG_ON(!sg_page(sg)); | 185 | BUG_ON(!sg_page(sg)); |
186 | va = sg_virt(sg); | 186 | va = sg_virt(sg); |
187 | sg_dma_address(sg) = (dma_addr_t)virt_to_bus(va); | 187 | sg_dma_address(sg) = (dma_addr_t)virt_to_phys(va); |
188 | sg_dma_len(sg) = sg->length; | 188 | sg_dma_len(sg) = sg->length; |
189 | } | 189 | } |
190 | 190 | ||
diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c index 2d00a08d3f08..26d3789dfdd0 100644 --- a/arch/alpha/kernel/pci_iommu.c +++ b/arch/alpha/kernel/pci_iommu.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/bootmem.h> | 9 | #include <linux/bootmem.h> |
10 | #include <linux/scatterlist.h> | 10 | #include <linux/scatterlist.h> |
11 | #include <linux/log2.h> | 11 | #include <linux/log2.h> |
12 | #include <linux/dma-mapping.h> | ||
12 | 13 | ||
13 | #include <asm/io.h> | 14 | #include <asm/io.h> |
14 | #include <asm/hwrpb.h> | 15 | #include <asm/hwrpb.h> |
@@ -470,22 +471,29 @@ EXPORT_SYMBOL(pci_free_consistent); | |||
470 | #define SG_ENT_PHYS_ADDRESS(SG) __pa(SG_ENT_VIRT_ADDRESS(SG)) | 471 | #define SG_ENT_PHYS_ADDRESS(SG) __pa(SG_ENT_VIRT_ADDRESS(SG)) |
471 | 472 | ||
472 | static void | 473 | static void |
473 | sg_classify(struct scatterlist *sg, struct scatterlist *end, int virt_ok) | 474 | sg_classify(struct device *dev, struct scatterlist *sg, struct scatterlist *end, |
475 | int virt_ok) | ||
474 | { | 476 | { |
475 | unsigned long next_paddr; | 477 | unsigned long next_paddr; |
476 | struct scatterlist *leader; | 478 | struct scatterlist *leader; |
477 | long leader_flag, leader_length; | 479 | long leader_flag, leader_length; |
480 | unsigned int max_seg_size; | ||
478 | 481 | ||
479 | leader = sg; | 482 | leader = sg; |
480 | leader_flag = 0; | 483 | leader_flag = 0; |
481 | leader_length = leader->length; | 484 | leader_length = leader->length; |
482 | next_paddr = SG_ENT_PHYS_ADDRESS(leader) + leader_length; | 485 | next_paddr = SG_ENT_PHYS_ADDRESS(leader) + leader_length; |
483 | 486 | ||
487 | /* we will not marge sg without device. */ | ||
488 | max_seg_size = dev ? dma_get_max_seg_size(dev) : 0; | ||
484 | for (++sg; sg < end; ++sg) { | 489 | for (++sg; sg < end; ++sg) { |
485 | unsigned long addr, len; | 490 | unsigned long addr, len; |
486 | addr = SG_ENT_PHYS_ADDRESS(sg); | 491 | addr = SG_ENT_PHYS_ADDRESS(sg); |
487 | len = sg->length; | 492 | len = sg->length; |
488 | 493 | ||
494 | if (leader_length + len > max_seg_size) | ||
495 | goto new_segment; | ||
496 | |||
489 | if (next_paddr == addr) { | 497 | if (next_paddr == addr) { |
490 | sg->dma_address = -1; | 498 | sg->dma_address = -1; |
491 | leader_length += len; | 499 | leader_length += len; |
@@ -494,6 +502,7 @@ sg_classify(struct scatterlist *sg, struct scatterlist *end, int virt_ok) | |||
494 | leader_flag = 1; | 502 | leader_flag = 1; |
495 | leader_length += len; | 503 | leader_length += len; |
496 | } else { | 504 | } else { |
505 | new_segment: | ||
497 | leader->dma_address = leader_flag; | 506 | leader->dma_address = leader_flag; |
498 | leader->dma_length = leader_length; | 507 | leader->dma_length = leader_length; |
499 | leader = sg; | 508 | leader = sg; |
@@ -512,7 +521,7 @@ sg_classify(struct scatterlist *sg, struct scatterlist *end, int virt_ok) | |||
512 | in the blanks. */ | 521 | in the blanks. */ |
513 | 522 | ||
514 | static int | 523 | static int |
515 | sg_fill(struct scatterlist *leader, struct scatterlist *end, | 524 | sg_fill(struct device *dev, struct scatterlist *leader, struct scatterlist *end, |
516 | struct scatterlist *out, struct pci_iommu_arena *arena, | 525 | struct scatterlist *out, struct pci_iommu_arena *arena, |
517 | dma_addr_t max_dma, int dac_allowed) | 526 | dma_addr_t max_dma, int dac_allowed) |
518 | { | 527 | { |
@@ -562,8 +571,8 @@ sg_fill(struct scatterlist *leader, struct scatterlist *end, | |||
562 | 571 | ||
563 | /* Otherwise, break up the remaining virtually contiguous | 572 | /* Otherwise, break up the remaining virtually contiguous |
564 | hunks into individual direct maps and retry. */ | 573 | hunks into individual direct maps and retry. */ |
565 | sg_classify(leader, end, 0); | 574 | sg_classify(dev, leader, end, 0); |
566 | return sg_fill(leader, end, out, arena, max_dma, dac_allowed); | 575 | return sg_fill(dev, leader, end, out, arena, max_dma, dac_allowed); |
567 | } | 576 | } |
568 | 577 | ||
569 | out->dma_address = arena->dma_base + dma_ofs*PAGE_SIZE + paddr; | 578 | out->dma_address = arena->dma_base + dma_ofs*PAGE_SIZE + paddr; |
@@ -619,12 +628,15 @@ pci_map_sg(struct pci_dev *pdev, struct scatterlist *sg, int nents, | |||
619 | struct pci_iommu_arena *arena; | 628 | struct pci_iommu_arena *arena; |
620 | dma_addr_t max_dma; | 629 | dma_addr_t max_dma; |
621 | int dac_allowed; | 630 | int dac_allowed; |
631 | struct device *dev; | ||
622 | 632 | ||
623 | if (direction == PCI_DMA_NONE) | 633 | if (direction == PCI_DMA_NONE) |
624 | BUG(); | 634 | BUG(); |
625 | 635 | ||
626 | dac_allowed = pdev ? pci_dac_dma_supported(pdev, pdev->dma_mask) : 0; | 636 | dac_allowed = pdev ? pci_dac_dma_supported(pdev, pdev->dma_mask) : 0; |
627 | 637 | ||
638 | dev = pdev ? &pdev->dev : NULL; | ||
639 | |||
628 | /* Fast path single entry scatterlists. */ | 640 | /* Fast path single entry scatterlists. */ |
629 | if (nents == 1) { | 641 | if (nents == 1) { |
630 | sg->dma_length = sg->length; | 642 | sg->dma_length = sg->length; |
@@ -638,7 +650,7 @@ pci_map_sg(struct pci_dev *pdev, struct scatterlist *sg, int nents, | |||
638 | end = sg + nents; | 650 | end = sg + nents; |
639 | 651 | ||
640 | /* First, prepare information about the entries. */ | 652 | /* First, prepare information about the entries. */ |
641 | sg_classify(sg, end, alpha_mv.mv_pci_tbi != 0); | 653 | sg_classify(dev, sg, end, alpha_mv.mv_pci_tbi != 0); |
642 | 654 | ||
643 | /* Second, figure out where we're going to map things. */ | 655 | /* Second, figure out where we're going to map things. */ |
644 | if (alpha_mv.mv_pci_tbi) { | 656 | if (alpha_mv.mv_pci_tbi) { |
@@ -658,7 +670,7 @@ pci_map_sg(struct pci_dev *pdev, struct scatterlist *sg, int nents, | |||
658 | for (out = sg; sg < end; ++sg) { | 670 | for (out = sg; sg < end; ++sg) { |
659 | if ((int) sg->dma_address < 0) | 671 | if ((int) sg->dma_address < 0) |
660 | continue; | 672 | continue; |
661 | if (sg_fill(sg, end, out, arena, max_dma, dac_allowed) < 0) | 673 | if (sg_fill(dev, sg, end, out, arena, max_dma, dac_allowed) < 0) |
662 | goto error; | 674 | goto error; |
663 | out++; | 675 | out++; |
664 | } | 676 | } |
diff --git a/arch/alpha/kernel/setup.c b/arch/alpha/kernel/setup.c index bd5e68cd61e8..beff6297f788 100644 --- a/arch/alpha/kernel/setup.c +++ b/arch/alpha/kernel/setup.c | |||
@@ -58,7 +58,6 @@ static struct notifier_block alpha_panic_block = { | |||
58 | #include <asm/system.h> | 58 | #include <asm/system.h> |
59 | #include <asm/hwrpb.h> | 59 | #include <asm/hwrpb.h> |
60 | #include <asm/dma.h> | 60 | #include <asm/dma.h> |
61 | #include <asm/io.h> | ||
62 | #include <asm/mmu_context.h> | 61 | #include <asm/mmu_context.h> |
63 | #include <asm/console.h> | 62 | #include <asm/console.h> |
64 | 63 | ||
diff --git a/arch/alpha/kernel/systbls.S b/arch/alpha/kernel/systbls.S index 79de99e32c35..ba914af18c4f 100644 --- a/arch/alpha/kernel/systbls.S +++ b/arch/alpha/kernel/systbls.S | |||
@@ -495,7 +495,7 @@ sys_call_table: | |||
495 | .quad sys_epoll_pwait | 495 | .quad sys_epoll_pwait |
496 | .quad sys_utimensat /* 475 */ | 496 | .quad sys_utimensat /* 475 */ |
497 | .quad sys_signalfd | 497 | .quad sys_signalfd |
498 | .quad sys_timerfd | 498 | .quad sys_ni_syscall |
499 | .quad sys_eventfd | 499 | .quad sys_eventfd |
500 | 500 | ||
501 | .size sys_call_table, . - sys_call_table | 501 | .size sys_call_table, . - sys_call_table |
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 77201d3f7479..e19e7744e366 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -10,6 +10,8 @@ config ARM | |||
10 | default y | 10 | default y |
11 | select RTC_LIB | 11 | select RTC_LIB |
12 | select SYS_SUPPORTS_APM_EMULATION | 12 | select SYS_SUPPORTS_APM_EMULATION |
13 | select HAVE_OPROFILE | ||
14 | select HAVE_KPROBES if (!XIP_KERNEL) | ||
13 | help | 15 | help |
14 | The ARM series is a line of low-power-consumption RISC chip designs | 16 | The ARM series is a line of low-power-consumption RISC chip designs |
15 | licensed by ARM Ltd and targeted at embedded applications and | 17 | licensed by ARM Ltd and targeted at embedded applications and |
@@ -33,6 +35,11 @@ config GENERIC_CLOCKEVENTS | |||
33 | bool | 35 | bool |
34 | default n | 36 | default n |
35 | 37 | ||
38 | config GENERIC_CLOCKEVENTS_BROADCAST | ||
39 | bool | ||
40 | depends on GENERIC_CLOCKEVENTS | ||
41 | default y if SMP && !LOCAL_TIMERS | ||
42 | |||
36 | config MMU | 43 | config MMU |
37 | bool | 44 | bool |
38 | default y | 45 | default y |
@@ -135,6 +142,23 @@ config FIQ | |||
135 | config ARCH_MTD_XIP | 142 | config ARCH_MTD_XIP |
136 | bool | 143 | bool |
137 | 144 | ||
145 | if OPROFILE | ||
146 | |||
147 | config OPROFILE_ARMV6 | ||
148 | def_bool y | ||
149 | depends on CPU_V6 && !SMP | ||
150 | select OPROFILE_ARM11_CORE | ||
151 | |||
152 | config OPROFILE_MPCORE | ||
153 | def_bool y | ||
154 | depends on CPU_V6 && SMP | ||
155 | select OPROFILE_ARM11_CORE | ||
156 | |||
157 | config OPROFILE_ARM11_CORE | ||
158 | bool | ||
159 | |||
160 | endif | ||
161 | |||
138 | config VECTORS_BASE | 162 | config VECTORS_BASE |
139 | hex | 163 | hex |
140 | default 0xffff0000 if MMU || CPU_HIGH_VECTOR | 164 | default 0xffff0000 if MMU || CPU_HIGH_VECTOR |
@@ -168,6 +192,8 @@ config ARCH_REALVIEW | |||
168 | bool "ARM Ltd. RealView family" | 192 | bool "ARM Ltd. RealView family" |
169 | select ARM_AMBA | 193 | select ARM_AMBA |
170 | select ICST307 | 194 | select ICST307 |
195 | select GENERIC_TIME | ||
196 | select GENERIC_CLOCKEVENTS | ||
171 | help | 197 | help |
172 | This enables support for ARM Ltd RealView boards. | 198 | This enables support for ARM Ltd RealView boards. |
173 | 199 | ||
@@ -359,6 +385,7 @@ config ARCH_PXA | |||
359 | depends on MMU | 385 | depends on MMU |
360 | select ARCH_MTD_XIP | 386 | select ARCH_MTD_XIP |
361 | select GENERIC_GPIO | 387 | select GENERIC_GPIO |
388 | select HAVE_GPIO_LIB | ||
362 | select GENERIC_TIME | 389 | select GENERIC_TIME |
363 | select GENERIC_CLOCKEVENTS | 390 | select GENERIC_CLOCKEVENTS |
364 | select TICK_ONESHOT | 391 | select TICK_ONESHOT |
@@ -577,11 +604,6 @@ config PCI | |||
577 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 604 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
578 | VESA. If you have PCI, say Y, otherwise N. | 605 | VESA. If you have PCI, say Y, otherwise N. |
579 | 606 | ||
580 | The PCI-HOWTO, available from | ||
581 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
582 | information about which PCI hardware does work under Linux and which | ||
583 | doesn't. | ||
584 | |||
585 | config PCI_SYSCALL | 607 | config PCI_SYSCALL |
586 | def_bool PCI | 608 | def_bool PCI |
587 | 609 | ||
@@ -609,7 +631,7 @@ source "kernel/time/Kconfig" | |||
609 | 631 | ||
610 | config SMP | 632 | config SMP |
611 | bool "Symmetric Multi-Processing (EXPERIMENTAL)" | 633 | bool "Symmetric Multi-Processing (EXPERIMENTAL)" |
612 | depends on EXPERIMENTAL && REALVIEW_MPCORE | 634 | depends on EXPERIMENTAL && REALVIEW_EB_ARM11MP |
613 | help | 635 | help |
614 | This enables support for systems with more than one CPU. If you have | 636 | This enables support for systems with more than one CPU. If you have |
615 | a system with only one CPU, like most personal computers, say N. If | 637 | a system with only one CPU, like most personal computers, say N. If |
@@ -621,8 +643,7 @@ config SMP | |||
621 | processor machines. On a single processor machine, the kernel will | 643 | processor machines. On a single processor machine, the kernel will |
622 | run faster if you say N here. | 644 | run faster if you say N here. |
623 | 645 | ||
624 | See also the <file:Documentation/smp.txt>, | 646 | See also <file:Documentation/i386/IO-APIC.txt>, |
625 | <file:Documentation/i386/IO-APIC.txt>, | ||
626 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at | 647 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at |
627 | <http://www.linuxdoc.org/docs.html#howto>. | 648 | <http://www.linuxdoc.org/docs.html#howto>. |
628 | 649 | ||
@@ -643,7 +664,7 @@ config HOTPLUG_CPU | |||
643 | 664 | ||
644 | config LOCAL_TIMERS | 665 | config LOCAL_TIMERS |
645 | bool "Use local timer interrupts" | 666 | bool "Use local timer interrupts" |
646 | depends on SMP && REALVIEW_MPCORE | 667 | depends on SMP && REALVIEW_EB_ARM11MP |
647 | default y | 668 | default y |
648 | help | 669 | help |
649 | Enable support for local timers on SMP platforms, rather then the | 670 | Enable support for local timers on SMP platforms, rather then the |
@@ -899,6 +920,13 @@ config KEXEC | |||
899 | initially work for you. It may help to enable device hotplugging | 920 | initially work for you. It may help to enable device hotplugging |
900 | support. | 921 | support. |
901 | 922 | ||
923 | config ATAGS_PROC | ||
924 | bool "Export atags in procfs" | ||
925 | default n | ||
926 | help | ||
927 | Should the atags used to boot the kernel be exported in an "atags" | ||
928 | file in procfs. Useful with kexec. | ||
929 | |||
902 | endmenu | 930 | endmenu |
903 | 931 | ||
904 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX || ARCH_PXA) | 932 | if (ARCH_SA1100 || ARCH_INTEGRATOR || ARCH_OMAP || ARCH_IMX || ARCH_PXA) |
@@ -1035,6 +1063,9 @@ menu "Power management options" | |||
1035 | 1063 | ||
1036 | source "kernel/power/Kconfig" | 1064 | source "kernel/power/Kconfig" |
1037 | 1065 | ||
1066 | config ARCH_SUSPEND_POSSIBLE | ||
1067 | def_bool y | ||
1068 | |||
1038 | endmenu | 1069 | endmenu |
1039 | 1070 | ||
1040 | source "net/Kconfig" | 1071 | source "net/Kconfig" |
@@ -1092,6 +1123,8 @@ source "drivers/i2c/Kconfig" | |||
1092 | 1123 | ||
1093 | source "drivers/spi/Kconfig" | 1124 | source "drivers/spi/Kconfig" |
1094 | 1125 | ||
1126 | source "drivers/gpio/Kconfig" | ||
1127 | |||
1095 | source "drivers/w1/Kconfig" | 1128 | source "drivers/w1/Kconfig" |
1096 | 1129 | ||
1097 | source "drivers/power/Kconfig" | 1130 | source "drivers/power/Kconfig" |
@@ -1130,8 +1163,6 @@ endmenu | |||
1130 | 1163 | ||
1131 | source "fs/Kconfig" | 1164 | source "fs/Kconfig" |
1132 | 1165 | ||
1133 | source "arch/arm/Kconfig.instrumentation" | ||
1134 | |||
1135 | source "arch/arm/Kconfig.debug" | 1166 | source "arch/arm/Kconfig.debug" |
1136 | 1167 | ||
1137 | source "security/Kconfig" | 1168 | source "security/Kconfig" |
diff --git a/arch/arm/Kconfig.instrumentation b/arch/arm/Kconfig.instrumentation deleted file mode 100644 index 453ad8e15d69..000000000000 --- a/arch/arm/Kconfig.instrumentation +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | menuconfig INSTRUMENTATION | ||
2 | bool "Instrumentation Support" | ||
3 | default y | ||
4 | ---help--- | ||
5 | Say Y here to get to see options related to performance measurement, | ||
6 | system-wide debugging, and testing. This option alone does not add any | ||
7 | kernel code. | ||
8 | |||
9 | If you say N, all options in this submenu will be skipped and | ||
10 | disabled. If you're trying to debug the kernel itself, go see the | ||
11 | Kernel Hacking menu. | ||
12 | |||
13 | if INSTRUMENTATION | ||
14 | |||
15 | config PROFILING | ||
16 | bool "Profiling support (EXPERIMENTAL)" | ||
17 | help | ||
18 | Say Y here to enable the extended profiling support mechanisms used | ||
19 | by profilers such as OProfile. | ||
20 | |||
21 | config OPROFILE | ||
22 | tristate "OProfile system profiling (EXPERIMENTAL)" | ||
23 | depends on PROFILING && !UML | ||
24 | help | ||
25 | OProfile is a profiling system capable of profiling the | ||
26 | whole system, include the kernel, kernel modules, libraries, | ||
27 | and applications. | ||
28 | |||
29 | If unsure, say N. | ||
30 | |||
31 | config OPROFILE_ARMV6 | ||
32 | bool | ||
33 | depends on OPROFILE && CPU_V6 && !SMP | ||
34 | default y | ||
35 | select OPROFILE_ARM11_CORE | ||
36 | |||
37 | config OPROFILE_MPCORE | ||
38 | bool | ||
39 | depends on OPROFILE && CPU_V6 && SMP | ||
40 | default y | ||
41 | select OPROFILE_ARM11_CORE | ||
42 | |||
43 | config OPROFILE_ARM11_CORE | ||
44 | bool | ||
45 | |||
46 | config KPROBES | ||
47 | bool "Kprobes" | ||
48 | depends on KALLSYMS && MODULES && !UML && !XIP_KERNEL | ||
49 | help | ||
50 | Kprobes allows you to trap at almost any kernel address and | ||
51 | execute a callback function. register_kprobe() establishes | ||
52 | a probepoint and specifies the callback. Kprobes is useful | ||
53 | for kernel debugging, non-intrusive instrumentation and testing. | ||
54 | If in doubt, say "N". | ||
55 | |||
56 | config MARKERS | ||
57 | bool "Activate markers" | ||
58 | help | ||
59 | Place an empty function call at each marker site. Can be | ||
60 | dynamically changed for a probe function. | ||
61 | |||
62 | endif # INSTRUMENTATION | ||
diff --git a/arch/arm/common/time-acorn.c b/arch/arm/common/time-acorn.c index 34038eccbba9..d544da414731 100644 --- a/arch/arm/common/time-acorn.c +++ b/arch/arm/common/time-acorn.c | |||
@@ -69,9 +69,7 @@ void __init ioctime_init(void) | |||
69 | static irqreturn_t | 69 | static irqreturn_t |
70 | ioc_timer_interrupt(int irq, void *dev_id) | 70 | ioc_timer_interrupt(int irq, void *dev_id) |
71 | { | 71 | { |
72 | write_seqlock(&xtime_lock); | ||
73 | timer_tick(); | 72 | timer_tick(); |
74 | write_sequnlock(&xtime_lock); | ||
75 | return IRQ_HANDLED; | 73 | return IRQ_HANDLED; |
76 | } | 74 | } |
77 | 75 | ||
diff --git a/arch/arm/configs/ixp4xx_defconfig b/arch/arm/configs/ixp4xx_defconfig index db850a5689eb..efa0485d2f7e 100644 --- a/arch/arm/configs/ixp4xx_defconfig +++ b/arch/arm/configs/ixp4xx_defconfig | |||
@@ -1,69 +1,96 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.15 | 3 | # Linux kernel version: 2.6.24 |
4 | # Tue Jan 3 03:20:40 2006 | 4 | # Sun Jan 27 07:33:38 2008 |
5 | # | 5 | # |
6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | ||
8 | CONFIG_GENERIC_GPIO=y | ||
9 | CONFIG_GENERIC_TIME=y | ||
10 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
7 | CONFIG_MMU=y | 11 | CONFIG_MMU=y |
8 | CONFIG_UID16=y | 12 | # CONFIG_NO_IOPORT is not set |
13 | CONFIG_GENERIC_HARDIRQS=y | ||
14 | CONFIG_STACKTRACE_SUPPORT=y | ||
15 | CONFIG_LOCKDEP_SUPPORT=y | ||
16 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
17 | CONFIG_HARDIRQS_SW_RESEND=y | ||
18 | CONFIG_GENERIC_IRQ_PROBE=y | ||
9 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 19 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
22 | CONFIG_GENERIC_HWEIGHT=y | ||
10 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 23 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
24 | CONFIG_ZONE_DMA=y | ||
25 | CONFIG_VECTORS_BASE=0xffff0000 | ||
26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
11 | 27 | ||
12 | # | 28 | # |
13 | # Code maturity level options | 29 | # General setup |
14 | # | 30 | # |
15 | CONFIG_EXPERIMENTAL=y | 31 | CONFIG_EXPERIMENTAL=y |
16 | CONFIG_CLEAN_COMPILE=y | ||
17 | CONFIG_BROKEN_ON_SMP=y | 32 | CONFIG_BROKEN_ON_SMP=y |
18 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 33 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
19 | |||
20 | # | ||
21 | # General setup | ||
22 | # | ||
23 | CONFIG_LOCALVERSION="" | 34 | CONFIG_LOCALVERSION="" |
24 | CONFIG_LOCALVERSION_AUTO=y | 35 | CONFIG_LOCALVERSION_AUTO=y |
25 | CONFIG_SWAP=y | 36 | CONFIG_SWAP=y |
26 | CONFIG_SYSVIPC=y | 37 | CONFIG_SYSVIPC=y |
38 | CONFIG_SYSVIPC_SYSCTL=y | ||
27 | # CONFIG_POSIX_MQUEUE is not set | 39 | # CONFIG_POSIX_MQUEUE is not set |
28 | CONFIG_BSD_PROCESS_ACCT=y | 40 | CONFIG_BSD_PROCESS_ACCT=y |
29 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 41 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
30 | CONFIG_SYSCTL=y | 42 | # CONFIG_TASKSTATS is not set |
43 | # CONFIG_USER_NS is not set | ||
44 | # CONFIG_PID_NS is not set | ||
31 | # CONFIG_AUDIT is not set | 45 | # CONFIG_AUDIT is not set |
32 | # CONFIG_HOTPLUG is not set | ||
33 | CONFIG_KOBJECT_UEVENT=y | ||
34 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
47 | CONFIG_LOG_BUF_SHIFT=14 | ||
48 | # CONFIG_CGROUPS is not set | ||
49 | CONFIG_FAIR_GROUP_SCHED=y | ||
50 | CONFIG_FAIR_USER_SCHED=y | ||
51 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
52 | CONFIG_SYSFS_DEPRECATED=y | ||
53 | # CONFIG_RELAY is not set | ||
54 | CONFIG_BLK_DEV_INITRD=y | ||
35 | CONFIG_INITRAMFS_SOURCE="" | 55 | CONFIG_INITRAMFS_SOURCE="" |
36 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 56 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
57 | CONFIG_SYSCTL=y | ||
37 | CONFIG_EMBEDDED=y | 58 | CONFIG_EMBEDDED=y |
59 | CONFIG_UID16=y | ||
60 | CONFIG_SYSCTL_SYSCALL=y | ||
38 | CONFIG_KALLSYMS=y | 61 | CONFIG_KALLSYMS=y |
39 | # CONFIG_KALLSYMS_ALL is not set | 62 | # CONFIG_KALLSYMS_ALL is not set |
40 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 63 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
64 | CONFIG_HOTPLUG=y | ||
41 | CONFIG_PRINTK=y | 65 | CONFIG_PRINTK=y |
42 | CONFIG_BUG=y | 66 | CONFIG_BUG=y |
67 | CONFIG_ELF_CORE=y | ||
43 | CONFIG_BASE_FULL=y | 68 | CONFIG_BASE_FULL=y |
44 | CONFIG_FUTEX=y | 69 | CONFIG_FUTEX=y |
70 | CONFIG_ANON_INODES=y | ||
45 | CONFIG_EPOLL=y | 71 | CONFIG_EPOLL=y |
72 | CONFIG_SIGNALFD=y | ||
73 | CONFIG_EVENTFD=y | ||
46 | CONFIG_SHMEM=y | 74 | CONFIG_SHMEM=y |
47 | CONFIG_CC_ALIGN_FUNCTIONS=0 | 75 | CONFIG_VM_EVENT_COUNTERS=y |
48 | CONFIG_CC_ALIGN_LABELS=0 | 76 | CONFIG_SLUB_DEBUG=y |
49 | CONFIG_CC_ALIGN_LOOPS=0 | 77 | # CONFIG_SLAB is not set |
50 | CONFIG_CC_ALIGN_JUMPS=0 | 78 | CONFIG_SLUB=y |
79 | # CONFIG_SLOB is not set | ||
80 | CONFIG_SLABINFO=y | ||
81 | CONFIG_RT_MUTEXES=y | ||
51 | # CONFIG_TINY_SHMEM is not set | 82 | # CONFIG_TINY_SHMEM is not set |
52 | CONFIG_BASE_SMALL=0 | 83 | CONFIG_BASE_SMALL=0 |
53 | |||
54 | # | ||
55 | # Loadable module support | ||
56 | # | ||
57 | CONFIG_MODULES=y | 84 | CONFIG_MODULES=y |
58 | # CONFIG_MODULE_UNLOAD is not set | 85 | # CONFIG_MODULE_UNLOAD is not set |
59 | CONFIG_OBSOLETE_MODPARM=y | ||
60 | CONFIG_MODVERSIONS=y | 86 | CONFIG_MODVERSIONS=y |
61 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 87 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
62 | CONFIG_KMOD=y | 88 | CONFIG_KMOD=y |
63 | 89 | CONFIG_BLOCK=y | |
64 | # | 90 | # CONFIG_LBD is not set |
65 | # Block layer | 91 | # CONFIG_BLK_DEV_IO_TRACE is not set |
66 | # | 92 | # CONFIG_LSF is not set |
93 | # CONFIG_BLK_DEV_BSG is not set | ||
67 | 94 | ||
68 | # | 95 | # |
69 | # IO Schedulers | 96 | # IO Schedulers |
@@ -81,28 +108,39 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
81 | # | 108 | # |
82 | # System Type | 109 | # System Type |
83 | # | 110 | # |
111 | # CONFIG_ARCH_AAEC2000 is not set | ||
112 | # CONFIG_ARCH_INTEGRATOR is not set | ||
113 | # CONFIG_ARCH_REALVIEW is not set | ||
114 | # CONFIG_ARCH_VERSATILE is not set | ||
115 | # CONFIG_ARCH_AT91 is not set | ||
84 | # CONFIG_ARCH_CLPS7500 is not set | 116 | # CONFIG_ARCH_CLPS7500 is not set |
85 | # CONFIG_ARCH_CLPS711X is not set | 117 | # CONFIG_ARCH_CLPS711X is not set |
86 | # CONFIG_ARCH_CO285 is not set | 118 | # CONFIG_ARCH_CO285 is not set |
87 | # CONFIG_ARCH_EBSA110 is not set | 119 | # CONFIG_ARCH_EBSA110 is not set |
120 | # CONFIG_ARCH_EP93XX is not set | ||
88 | # CONFIG_ARCH_FOOTBRIDGE is not set | 121 | # CONFIG_ARCH_FOOTBRIDGE is not set |
89 | # CONFIG_ARCH_INTEGRATOR is not set | 122 | # CONFIG_ARCH_NETX is not set |
90 | # CONFIG_ARCH_IOP3XX is not set | 123 | # CONFIG_ARCH_H720X is not set |
91 | CONFIG_ARCH_IXP4XX=y | 124 | # CONFIG_ARCH_IMX is not set |
125 | # CONFIG_ARCH_IOP13XX is not set | ||
126 | # CONFIG_ARCH_IOP32X is not set | ||
127 | # CONFIG_ARCH_IOP33X is not set | ||
128 | # CONFIG_ARCH_IXP23XX is not set | ||
92 | # CONFIG_ARCH_IXP2000 is not set | 129 | # CONFIG_ARCH_IXP2000 is not set |
130 | CONFIG_ARCH_IXP4XX=y | ||
93 | # CONFIG_ARCH_L7200 is not set | 131 | # CONFIG_ARCH_L7200 is not set |
132 | # CONFIG_ARCH_KS8695 is not set | ||
133 | # CONFIG_ARCH_NS9XXX is not set | ||
134 | # CONFIG_ARCH_MXC is not set | ||
135 | # CONFIG_ARCH_PNX4008 is not set | ||
94 | # CONFIG_ARCH_PXA is not set | 136 | # CONFIG_ARCH_PXA is not set |
95 | # CONFIG_ARCH_RPC is not set | 137 | # CONFIG_ARCH_RPC is not set |
96 | # CONFIG_ARCH_SA1100 is not set | 138 | # CONFIG_ARCH_SA1100 is not set |
97 | # CONFIG_ARCH_S3C2410 is not set | 139 | # CONFIG_ARCH_S3C2410 is not set |
98 | # CONFIG_ARCH_SHARK is not set | 140 | # CONFIG_ARCH_SHARK is not set |
99 | # CONFIG_ARCH_LH7A40X is not set | 141 | # CONFIG_ARCH_LH7A40X is not set |
142 | # CONFIG_ARCH_DAVINCI is not set | ||
100 | # CONFIG_ARCH_OMAP is not set | 143 | # CONFIG_ARCH_OMAP is not set |
101 | # CONFIG_ARCH_VERSATILE is not set | ||
102 | # CONFIG_ARCH_REALVIEW is not set | ||
103 | # CONFIG_ARCH_IMX is not set | ||
104 | # CONFIG_ARCH_H720X is not set | ||
105 | # CONFIG_ARCH_AAEC2000 is not set | ||
106 | CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y | 144 | CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y |
107 | 145 | ||
108 | # | 146 | # |
@@ -112,8 +150,12 @@ CONFIG_ARCH_SUPPORTS_BIG_ENDIAN=y | |||
112 | # | 150 | # |
113 | # IXP4xx Platforms | 151 | # IXP4xx Platforms |
114 | # | 152 | # |
115 | CONFIG_ARCH_AVILA=y | 153 | CONFIG_MACH_NSLU2=y |
154 | CONFIG_MACH_AVILA=y | ||
155 | CONFIG_MACH_LOFT=y | ||
116 | CONFIG_ARCH_ADI_COYOTE=y | 156 | CONFIG_ARCH_ADI_COYOTE=y |
157 | CONFIG_MACH_GATEWAY7001=y | ||
158 | CONFIG_MACH_WG302V2=y | ||
117 | CONFIG_ARCH_IXDP425=y | 159 | CONFIG_ARCH_IXDP425=y |
118 | CONFIG_MACH_IXDPG425=y | 160 | CONFIG_MACH_IXDPG425=y |
119 | CONFIG_MACH_IXDP465=y | 161 | CONFIG_MACH_IXDP465=y |
@@ -121,15 +163,27 @@ CONFIG_MACH_KIXRP435=y | |||
121 | CONFIG_ARCH_IXCDP1100=y | 163 | CONFIG_ARCH_IXCDP1100=y |
122 | CONFIG_ARCH_PRPMC1100=y | 164 | CONFIG_ARCH_PRPMC1100=y |
123 | CONFIG_MACH_NAS100D=y | 165 | CONFIG_MACH_NAS100D=y |
166 | CONFIG_MACH_DSMG600=y | ||
124 | CONFIG_ARCH_IXDP4XX=y | 167 | CONFIG_ARCH_IXDP4XX=y |
125 | CONFIG_CPU_IXP46X=y | 168 | CONFIG_CPU_IXP46X=y |
126 | CONFIG_CPU_IXP43X=y | 169 | CONFIG_CPU_IXP43X=y |
127 | # CONFIG_MACH_GTWX5715 is not set | 170 | CONFIG_MACH_GTWX5715=y |
128 | 171 | ||
129 | # | 172 | # |
130 | # IXP4xx Options | 173 | # IXP4xx Options |
131 | # | 174 | # |
175 | CONFIG_DMABOUNCE=y | ||
132 | # CONFIG_IXP4XX_INDIRECT_PCI is not set | 176 | # CONFIG_IXP4XX_INDIRECT_PCI is not set |
177 | CONFIG_IXP4XX_QMGR=y | ||
178 | CONFIG_IXP4XX_NPE=y | ||
179 | |||
180 | # | ||
181 | # Boot options | ||
182 | # | ||
183 | |||
184 | # | ||
185 | # Power management | ||
186 | # | ||
133 | 187 | ||
134 | # | 188 | # |
135 | # Processor Type | 189 | # Processor Type |
@@ -140,33 +194,40 @@ CONFIG_CPU_32v5=y | |||
140 | CONFIG_CPU_ABRT_EV5T=y | 194 | CONFIG_CPU_ABRT_EV5T=y |
141 | CONFIG_CPU_CACHE_VIVT=y | 195 | CONFIG_CPU_CACHE_VIVT=y |
142 | CONFIG_CPU_TLB_V4WBI=y | 196 | CONFIG_CPU_TLB_V4WBI=y |
197 | CONFIG_CPU_CP15=y | ||
198 | CONFIG_CPU_CP15_MMU=y | ||
143 | 199 | ||
144 | # | 200 | # |
145 | # Processor Features | 201 | # Processor Features |
146 | # | 202 | # |
147 | # CONFIG_ARM_THUMB is not set | 203 | # CONFIG_ARM_THUMB is not set |
148 | CONFIG_CPU_BIG_ENDIAN=y | 204 | CONFIG_CPU_BIG_ENDIAN=y |
205 | # CONFIG_CPU_DCACHE_DISABLE is not set | ||
206 | # CONFIG_OUTER_CACHE is not set | ||
207 | # CONFIG_IWMMXT is not set | ||
149 | CONFIG_XSCALE_PMU=y | 208 | CONFIG_XSCALE_PMU=y |
150 | CONFIG_DMABOUNCE=y | ||
151 | 209 | ||
152 | # | 210 | # |
153 | # Bus support | 211 | # Bus support |
154 | # | 212 | # |
155 | CONFIG_ISA_DMA_API=y | ||
156 | CONFIG_PCI=y | 213 | CONFIG_PCI=y |
157 | CONFIG_PCI_LEGACY_PROC=y | 214 | CONFIG_PCI_SYSCALL=y |
215 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
216 | CONFIG_PCI_LEGACY=y | ||
158 | # CONFIG_PCI_DEBUG is not set | 217 | # CONFIG_PCI_DEBUG is not set |
159 | |||
160 | # | ||
161 | # PCCARD (PCMCIA/CardBus) support | ||
162 | # | ||
163 | # CONFIG_PCCARD is not set | 218 | # CONFIG_PCCARD is not set |
164 | 219 | ||
165 | # | 220 | # |
166 | # Kernel Features | 221 | # Kernel Features |
167 | # | 222 | # |
223 | # CONFIG_TICK_ONESHOT is not set | ||
224 | # CONFIG_NO_HZ is not set | ||
225 | # CONFIG_HIGH_RES_TIMERS is not set | ||
226 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
168 | # CONFIG_PREEMPT is not set | 227 | # CONFIG_PREEMPT is not set |
169 | # CONFIG_NO_IDLE_HZ is not set | 228 | CONFIG_HZ=100 |
229 | CONFIG_AEABI=y | ||
230 | CONFIG_OABI_COMPAT=y | ||
170 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | 231 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set |
171 | CONFIG_SELECT_MEMORY_MODEL=y | 232 | CONFIG_SELECT_MEMORY_MODEL=y |
172 | CONFIG_FLATMEM_MANUAL=y | 233 | CONFIG_FLATMEM_MANUAL=y |
@@ -175,7 +236,12 @@ CONFIG_FLATMEM_MANUAL=y | |||
175 | CONFIG_FLATMEM=y | 236 | CONFIG_FLATMEM=y |
176 | CONFIG_FLAT_NODE_MEM_MAP=y | 237 | CONFIG_FLAT_NODE_MEM_MAP=y |
177 | # CONFIG_SPARSEMEM_STATIC is not set | 238 | # CONFIG_SPARSEMEM_STATIC is not set |
239 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
178 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | 240 | CONFIG_SPLIT_PTLOCK_CPUS=4096 |
241 | # CONFIG_RESOURCES_64BIT is not set | ||
242 | CONFIG_ZONE_DMA_FLAG=1 | ||
243 | CONFIG_BOUNCE=y | ||
244 | CONFIG_VIRT_TO_BUS=y | ||
179 | CONFIG_ALIGNMENT_TRAP=y | 245 | CONFIG_ALIGNMENT_TRAP=y |
180 | 246 | ||
181 | # | 247 | # |
@@ -185,6 +251,7 @@ CONFIG_ZBOOT_ROM_TEXT=0x0 | |||
185 | CONFIG_ZBOOT_ROM_BSS=0x0 | 251 | CONFIG_ZBOOT_ROM_BSS=0x0 |
186 | CONFIG_CMDLINE="console=ttyS0,115200 ip=bootp root=/dev/nfs" | 252 | CONFIG_CMDLINE="console=ttyS0,115200 ip=bootp root=/dev/nfs" |
187 | # CONFIG_XIP_KERNEL is not set | 253 | # CONFIG_XIP_KERNEL is not set |
254 | # CONFIG_KEXEC is not set | ||
188 | 255 | ||
189 | # | 256 | # |
190 | # Floating point emulation | 257 | # Floating point emulation |
@@ -203,13 +270,12 @@ CONFIG_FPE_NWFPE=y | |||
203 | CONFIG_BINFMT_ELF=y | 270 | CONFIG_BINFMT_ELF=y |
204 | # CONFIG_BINFMT_AOUT is not set | 271 | # CONFIG_BINFMT_AOUT is not set |
205 | # CONFIG_BINFMT_MISC is not set | 272 | # CONFIG_BINFMT_MISC is not set |
206 | # CONFIG_ARTHUR is not set | ||
207 | 273 | ||
208 | # | 274 | # |
209 | # Power management options | 275 | # Power management options |
210 | # | 276 | # |
211 | # CONFIG_PM is not set | 277 | # CONFIG_PM is not set |
212 | # CONFIG_APM is not set | 278 | CONFIG_SUSPEND_UP_POSSIBLE=y |
213 | 279 | ||
214 | # | 280 | # |
215 | # Networking | 281 | # Networking |
@@ -219,11 +285,13 @@ CONFIG_NET=y | |||
219 | # | 285 | # |
220 | # Networking options | 286 | # Networking options |
221 | # | 287 | # |
222 | CONFIG_PACKET=m | 288 | CONFIG_PACKET=y |
223 | CONFIG_PACKET_MMAP=y | 289 | CONFIG_PACKET_MMAP=y |
224 | CONFIG_UNIX=y | 290 | CONFIG_UNIX=y |
225 | CONFIG_XFRM=y | 291 | CONFIG_XFRM=y |
226 | # CONFIG_XFRM_USER is not set | 292 | # CONFIG_XFRM_USER is not set |
293 | # CONFIG_XFRM_SUB_POLICY is not set | ||
294 | # CONFIG_XFRM_MIGRATE is not set | ||
227 | # CONFIG_NET_KEY is not set | 295 | # CONFIG_NET_KEY is not set |
228 | CONFIG_INET=y | 296 | CONFIG_INET=y |
229 | CONFIG_IP_MULTICAST=y | 297 | CONFIG_IP_MULTICAST=y |
@@ -232,9 +300,7 @@ CONFIG_ASK_IP_FIB_HASH=y | |||
232 | # CONFIG_IP_FIB_TRIE is not set | 300 | # CONFIG_IP_FIB_TRIE is not set |
233 | CONFIG_IP_FIB_HASH=y | 301 | CONFIG_IP_FIB_HASH=y |
234 | CONFIG_IP_MULTIPLE_TABLES=y | 302 | CONFIG_IP_MULTIPLE_TABLES=y |
235 | CONFIG_IP_ROUTE_FWMARK=y | ||
236 | CONFIG_IP_ROUTE_MULTIPATH=y | 303 | CONFIG_IP_ROUTE_MULTIPATH=y |
237 | # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set | ||
238 | CONFIG_IP_ROUTE_VERBOSE=y | 304 | CONFIG_IP_ROUTE_VERBOSE=y |
239 | CONFIG_IP_PNP=y | 305 | CONFIG_IP_PNP=y |
240 | CONFIG_IP_PNP_DHCP=y | 306 | CONFIG_IP_PNP_DHCP=y |
@@ -251,15 +317,18 @@ CONFIG_SYN_COOKIES=y | |||
251 | # CONFIG_INET_AH is not set | 317 | # CONFIG_INET_AH is not set |
252 | # CONFIG_INET_ESP is not set | 318 | # CONFIG_INET_ESP is not set |
253 | # CONFIG_INET_IPCOMP is not set | 319 | # CONFIG_INET_IPCOMP is not set |
254 | CONFIG_INET_TUNNEL=m | 320 | # CONFIG_INET_XFRM_TUNNEL is not set |
321 | # CONFIG_INET_TUNNEL is not set | ||
322 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
323 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
324 | CONFIG_INET_XFRM_MODE_BEET=y | ||
325 | # CONFIG_INET_LRO is not set | ||
255 | CONFIG_INET_DIAG=y | 326 | CONFIG_INET_DIAG=y |
256 | CONFIG_INET_TCP_DIAG=y | 327 | CONFIG_INET_TCP_DIAG=y |
257 | # CONFIG_TCP_CONG_ADVANCED is not set | 328 | # CONFIG_TCP_CONG_ADVANCED is not set |
258 | CONFIG_TCP_CONG_BIC=y | 329 | CONFIG_TCP_CONG_CUBIC=y |
259 | 330 | CONFIG_DEFAULT_TCP_CONG="cubic" | |
260 | # | 331 | # CONFIG_TCP_MD5SIG is not set |
261 | # IP: Virtual Server Configuration | ||
262 | # | ||
263 | CONFIG_IP_VS=m | 332 | CONFIG_IP_VS=m |
264 | CONFIG_IP_VS_DEBUG=y | 333 | CONFIG_IP_VS_DEBUG=y |
265 | CONFIG_IP_VS_TAB_BITS=12 | 334 | CONFIG_IP_VS_TAB_BITS=12 |
@@ -290,6 +359,9 @@ CONFIG_IP_VS_SH=m | |||
290 | # IPVS application helper | 359 | # IPVS application helper |
291 | # | 360 | # |
292 | # CONFIG_IPV6 is not set | 361 | # CONFIG_IPV6 is not set |
362 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
363 | # CONFIG_INET6_TUNNEL is not set | ||
364 | # CONFIG_NETWORK_SECMARK is not set | ||
293 | CONFIG_NETFILTER=y | 365 | CONFIG_NETFILTER=y |
294 | # CONFIG_NETFILTER_DEBUG is not set | 366 | # CONFIG_NETFILTER_DEBUG is not set |
295 | CONFIG_BRIDGE_NETFILTER=y | 367 | CONFIG_BRIDGE_NETFILTER=y |
@@ -298,70 +370,57 @@ CONFIG_BRIDGE_NETFILTER=y | |||
298 | # Core Netfilter Configuration | 370 | # Core Netfilter Configuration |
299 | # | 371 | # |
300 | # CONFIG_NETFILTER_NETLINK is not set | 372 | # CONFIG_NETFILTER_NETLINK is not set |
373 | # CONFIG_NF_CONNTRACK_ENABLED is not set | ||
374 | # CONFIG_NF_CONNTRACK is not set | ||
375 | CONFIG_NETFILTER_XTABLES=m | ||
376 | # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set | ||
377 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | ||
378 | # CONFIG_NETFILTER_XT_TARGET_MARK is not set | ||
379 | # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set | ||
380 | # CONFIG_NETFILTER_XT_TARGET_NFLOG is not set | ||
381 | # CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set | ||
382 | # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set | ||
383 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set | ||
384 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | ||
385 | # CONFIG_NETFILTER_XT_MATCH_ESP is not set | ||
386 | # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set | ||
387 | # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set | ||
388 | # CONFIG_NETFILTER_XT_MATCH_MAC is not set | ||
389 | # CONFIG_NETFILTER_XT_MATCH_MARK is not set | ||
390 | # CONFIG_NETFILTER_XT_MATCH_POLICY is not set | ||
391 | # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set | ||
392 | # CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set | ||
393 | # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set | ||
394 | # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set | ||
395 | # CONFIG_NETFILTER_XT_MATCH_REALM is not set | ||
396 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | ||
397 | # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set | ||
398 | # CONFIG_NETFILTER_XT_MATCH_STRING is not set | ||
399 | # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set | ||
400 | # CONFIG_NETFILTER_XT_MATCH_TIME is not set | ||
401 | # CONFIG_NETFILTER_XT_MATCH_U32 is not set | ||
402 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | ||
301 | 403 | ||
302 | # | 404 | # |
303 | # IP: Netfilter Configuration | 405 | # IP: Netfilter Configuration |
304 | # | 406 | # |
305 | CONFIG_IP_NF_CONNTRACK=m | ||
306 | # CONFIG_IP_NF_CT_ACCT is not set | ||
307 | # CONFIG_IP_NF_CONNTRACK_MARK is not set | ||
308 | # CONFIG_IP_NF_CONNTRACK_EVENTS is not set | ||
309 | # CONFIG_IP_NF_CT_PROTO_SCTP is not set | ||
310 | CONFIG_IP_NF_FTP=m | ||
311 | CONFIG_IP_NF_IRC=m | ||
312 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
313 | # CONFIG_IP_NF_TFTP is not set | ||
314 | # CONFIG_IP_NF_AMANDA is not set | ||
315 | # CONFIG_IP_NF_PPTP is not set | ||
316 | CONFIG_IP_NF_QUEUE=m | 407 | CONFIG_IP_NF_QUEUE=m |
317 | CONFIG_IP_NF_IPTABLES=m | 408 | CONFIG_IP_NF_IPTABLES=m |
318 | CONFIG_IP_NF_MATCH_LIMIT=m | ||
319 | # CONFIG_IP_NF_MATCH_IPRANGE is not set | 409 | # CONFIG_IP_NF_MATCH_IPRANGE is not set |
320 | CONFIG_IP_NF_MATCH_MAC=m | ||
321 | # CONFIG_IP_NF_MATCH_PKTTYPE is not set | ||
322 | CONFIG_IP_NF_MATCH_MARK=m | ||
323 | CONFIG_IP_NF_MATCH_MULTIPORT=m | ||
324 | CONFIG_IP_NF_MATCH_TOS=m | 410 | CONFIG_IP_NF_MATCH_TOS=m |
325 | # CONFIG_IP_NF_MATCH_RECENT is not set | 411 | # CONFIG_IP_NF_MATCH_RECENT is not set |
326 | # CONFIG_IP_NF_MATCH_ECN is not set | 412 | # CONFIG_IP_NF_MATCH_ECN is not set |
327 | # CONFIG_IP_NF_MATCH_DSCP is not set | 413 | # CONFIG_IP_NF_MATCH_AH is not set |
328 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
329 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
330 | CONFIG_IP_NF_MATCH_TTL=m | 414 | CONFIG_IP_NF_MATCH_TTL=m |
331 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
332 | # CONFIG_IP_NF_MATCH_HELPER is not set | ||
333 | CONFIG_IP_NF_MATCH_STATE=m | ||
334 | # CONFIG_IP_NF_MATCH_CONNTRACK is not set | ||
335 | CONFIG_IP_NF_MATCH_OWNER=m | 415 | CONFIG_IP_NF_MATCH_OWNER=m |
336 | # CONFIG_IP_NF_MATCH_PHYSDEV is not set | ||
337 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set | 416 | # CONFIG_IP_NF_MATCH_ADDRTYPE is not set |
338 | # CONFIG_IP_NF_MATCH_REALM is not set | ||
339 | # CONFIG_IP_NF_MATCH_SCTP is not set | ||
340 | # CONFIG_IP_NF_MATCH_DCCP is not set | ||
341 | # CONFIG_IP_NF_MATCH_COMMENT is not set | ||
342 | # CONFIG_IP_NF_MATCH_HASHLIMIT is not set | ||
343 | # CONFIG_IP_NF_MATCH_STRING is not set | ||
344 | CONFIG_IP_NF_FILTER=m | 417 | CONFIG_IP_NF_FILTER=m |
345 | CONFIG_IP_NF_TARGET_REJECT=m | 418 | CONFIG_IP_NF_TARGET_REJECT=m |
346 | CONFIG_IP_NF_TARGET_LOG=m | 419 | CONFIG_IP_NF_TARGET_LOG=m |
347 | CONFIG_IP_NF_TARGET_ULOG=m | 420 | CONFIG_IP_NF_TARGET_ULOG=m |
348 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
349 | # CONFIG_IP_NF_TARGET_NFQUEUE is not set | ||
350 | CONFIG_IP_NF_NAT=m | ||
351 | CONFIG_IP_NF_NAT_NEEDED=y | ||
352 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
353 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
354 | # CONFIG_IP_NF_TARGET_NETMAP is not set | ||
355 | # CONFIG_IP_NF_TARGET_SAME is not set | ||
356 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
357 | CONFIG_IP_NF_NAT_IRC=m | ||
358 | CONFIG_IP_NF_NAT_FTP=m | ||
359 | CONFIG_IP_NF_MANGLE=m | 421 | CONFIG_IP_NF_MANGLE=m |
360 | CONFIG_IP_NF_TARGET_TOS=m | 422 | CONFIG_IP_NF_TARGET_TOS=m |
361 | # CONFIG_IP_NF_TARGET_ECN is not set | 423 | # CONFIG_IP_NF_TARGET_ECN is not set |
362 | # CONFIG_IP_NF_TARGET_DSCP is not set | ||
363 | CONFIG_IP_NF_TARGET_MARK=m | ||
364 | # CONFIG_IP_NF_TARGET_CLASSIFY is not set | ||
365 | # CONFIG_IP_NF_TARGET_TTL is not set | 424 | # CONFIG_IP_NF_TARGET_TTL is not set |
366 | # CONFIG_IP_NF_RAW is not set | 425 | # CONFIG_IP_NF_RAW is not set |
367 | CONFIG_IP_NF_ARPTABLES=m | 426 | CONFIG_IP_NF_ARPTABLES=m |
@@ -372,16 +431,9 @@ CONFIG_IP_NF_ARPFILTER=m | |||
372 | # Bridge: Netfilter Configuration | 431 | # Bridge: Netfilter Configuration |
373 | # | 432 | # |
374 | # CONFIG_BRIDGE_NF_EBTABLES is not set | 433 | # CONFIG_BRIDGE_NF_EBTABLES is not set |
375 | |||
376 | # | ||
377 | # DCCP Configuration (EXPERIMENTAL) | ||
378 | # | ||
379 | # CONFIG_IP_DCCP is not set | 434 | # CONFIG_IP_DCCP is not set |
380 | |||
381 | # | ||
382 | # SCTP Configuration (EXPERIMENTAL) | ||
383 | # | ||
384 | # CONFIG_IP_SCTP is not set | 435 | # CONFIG_IP_SCTP is not set |
436 | # CONFIG_TIPC is not set | ||
385 | CONFIG_ATM=y | 437 | CONFIG_ATM=y |
386 | CONFIG_ATM_CLIP=y | 438 | CONFIG_ATM_CLIP=y |
387 | # CONFIG_ATM_CLIP_NO_ICMP is not set | 439 | # CONFIG_ATM_CLIP_NO_ICMP is not set |
@@ -397,25 +449,17 @@ CONFIG_LLC=m | |||
397 | CONFIG_IPX=m | 449 | CONFIG_IPX=m |
398 | # CONFIG_IPX_INTERN is not set | 450 | # CONFIG_IPX_INTERN is not set |
399 | CONFIG_ATALK=m | 451 | CONFIG_ATALK=m |
400 | CONFIG_DEV_APPLETALK=y | 452 | CONFIG_DEV_APPLETALK=m |
401 | CONFIG_IPDDP=m | 453 | CONFIG_IPDDP=m |
402 | CONFIG_IPDDP_ENCAP=y | 454 | CONFIG_IPDDP_ENCAP=y |
403 | CONFIG_IPDDP_DECAP=y | 455 | CONFIG_IPDDP_DECAP=y |
404 | CONFIG_X25=m | 456 | CONFIG_X25=m |
405 | CONFIG_LAPB=m | 457 | CONFIG_LAPB=m |
406 | # CONFIG_NET_DIVERT is not set | ||
407 | CONFIG_ECONET=m | 458 | CONFIG_ECONET=m |
408 | CONFIG_ECONET_AUNUDP=y | 459 | CONFIG_ECONET_AUNUDP=y |
409 | CONFIG_ECONET_NATIVE=y | 460 | CONFIG_ECONET_NATIVE=y |
410 | CONFIG_WAN_ROUTER=m | 461 | CONFIG_WAN_ROUTER=m |
411 | |||
412 | # | ||
413 | # QoS and/or fair queueing | ||
414 | # | ||
415 | CONFIG_NET_SCHED=y | 462 | CONFIG_NET_SCHED=y |
416 | CONFIG_NET_SCH_CLK_JIFFIES=y | ||
417 | # CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set | ||
418 | # CONFIG_NET_SCH_CLK_CPU is not set | ||
419 | 463 | ||
420 | # | 464 | # |
421 | # Queueing/Scheduling | 465 | # Queueing/Scheduling |
@@ -425,6 +469,7 @@ CONFIG_NET_SCH_HTB=m | |||
425 | # CONFIG_NET_SCH_HFSC is not set | 469 | # CONFIG_NET_SCH_HFSC is not set |
426 | # CONFIG_NET_SCH_ATM is not set | 470 | # CONFIG_NET_SCH_ATM is not set |
427 | CONFIG_NET_SCH_PRIO=m | 471 | CONFIG_NET_SCH_PRIO=m |
472 | # CONFIG_NET_SCH_RR is not set | ||
428 | CONFIG_NET_SCH_RED=m | 473 | CONFIG_NET_SCH_RED=m |
429 | CONFIG_NET_SCH_SFQ=m | 474 | CONFIG_NET_SCH_SFQ=m |
430 | CONFIG_NET_SCH_TEQL=m | 475 | CONFIG_NET_SCH_TEQL=m |
@@ -449,10 +494,17 @@ CONFIG_NET_CLS_U32=m | |||
449 | CONFIG_NET_CLS_RSVP=m | 494 | CONFIG_NET_CLS_RSVP=m |
450 | CONFIG_NET_CLS_RSVP6=m | 495 | CONFIG_NET_CLS_RSVP6=m |
451 | # CONFIG_NET_EMATCH is not set | 496 | # CONFIG_NET_EMATCH is not set |
452 | # CONFIG_NET_CLS_ACT is not set | 497 | CONFIG_NET_CLS_ACT=y |
498 | CONFIG_NET_ACT_POLICE=y | ||
499 | # CONFIG_NET_ACT_GACT is not set | ||
500 | # CONFIG_NET_ACT_MIRRED is not set | ||
501 | # CONFIG_NET_ACT_IPT is not set | ||
502 | # CONFIG_NET_ACT_NAT is not set | ||
503 | # CONFIG_NET_ACT_PEDIT is not set | ||
504 | # CONFIG_NET_ACT_SIMP is not set | ||
453 | CONFIG_NET_CLS_POLICE=y | 505 | CONFIG_NET_CLS_POLICE=y |
454 | # CONFIG_NET_CLS_IND is not set | 506 | # CONFIG_NET_CLS_IND is not set |
455 | CONFIG_NET_ESTIMATOR=y | 507 | CONFIG_NET_SCH_FIFO=y |
456 | 508 | ||
457 | # | 509 | # |
458 | # Network testing | 510 | # Network testing |
@@ -461,7 +513,18 @@ CONFIG_NET_PKTGEN=m | |||
461 | # CONFIG_HAMRADIO is not set | 513 | # CONFIG_HAMRADIO is not set |
462 | # CONFIG_IRDA is not set | 514 | # CONFIG_IRDA is not set |
463 | # CONFIG_BT is not set | 515 | # CONFIG_BT is not set |
516 | # CONFIG_AF_RXRPC is not set | ||
517 | CONFIG_FIB_RULES=y | ||
518 | |||
519 | # | ||
520 | # Wireless | ||
521 | # | ||
522 | # CONFIG_CFG80211 is not set | ||
523 | # CONFIG_WIRELESS_EXT is not set | ||
524 | # CONFIG_MAC80211 is not set | ||
464 | # CONFIG_IEEE80211 is not set | 525 | # CONFIG_IEEE80211 is not set |
526 | # CONFIG_RFKILL is not set | ||
527 | # CONFIG_NET_9P is not set | ||
465 | 528 | ||
466 | # | 529 | # |
467 | # Device Drivers | 530 | # Device Drivers |
@@ -470,19 +533,14 @@ CONFIG_NET_PKTGEN=m | |||
470 | # | 533 | # |
471 | # Generic Driver Options | 534 | # Generic Driver Options |
472 | # | 535 | # |
536 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
473 | CONFIG_STANDALONE=y | 537 | CONFIG_STANDALONE=y |
474 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 538 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
475 | # CONFIG_FW_LOADER is not set | 539 | CONFIG_FW_LOADER=y |
476 | # CONFIG_DEBUG_DRIVER is not set | 540 | # CONFIG_DEBUG_DRIVER is not set |
477 | 541 | # CONFIG_DEBUG_DEVRES is not set | |
478 | # | 542 | # CONFIG_SYS_HYPERVISOR is not set |
479 | # Connector - unified userspace <-> kernelspace linker | ||
480 | # | ||
481 | # CONFIG_CONNECTOR is not set | 543 | # CONFIG_CONNECTOR is not set |
482 | |||
483 | # | ||
484 | # Memory Technology Devices (MTD) | ||
485 | # | ||
486 | CONFIG_MTD=y | 544 | CONFIG_MTD=y |
487 | # CONFIG_MTD_DEBUG is not set | 545 | # CONFIG_MTD_DEBUG is not set |
488 | # CONFIG_MTD_CONCAT is not set | 546 | # CONFIG_MTD_CONCAT is not set |
@@ -498,11 +556,14 @@ CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | |||
498 | # User Modules And Translation Layers | 556 | # User Modules And Translation Layers |
499 | # | 557 | # |
500 | CONFIG_MTD_CHAR=y | 558 | CONFIG_MTD_CHAR=y |
559 | CONFIG_MTD_BLKDEVS=y | ||
501 | CONFIG_MTD_BLOCK=y | 560 | CONFIG_MTD_BLOCK=y |
502 | # CONFIG_FTL is not set | 561 | # CONFIG_FTL is not set |
503 | # CONFIG_NFTL is not set | 562 | # CONFIG_NFTL is not set |
504 | # CONFIG_INFTL is not set | 563 | # CONFIG_INFTL is not set |
505 | # CONFIG_RFD_FTL is not set | 564 | # CONFIG_RFD_FTL is not set |
565 | # CONFIG_SSFDC is not set | ||
566 | # CONFIG_MTD_OOPS is not set | ||
506 | 567 | ||
507 | # | 568 | # |
508 | # RAM/ROM/Flash chip drivers | 569 | # RAM/ROM/Flash chip drivers |
@@ -528,7 +589,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
528 | # CONFIG_MTD_RAM is not set | 589 | # CONFIG_MTD_RAM is not set |
529 | # CONFIG_MTD_ROM is not set | 590 | # CONFIG_MTD_ROM is not set |
530 | # CONFIG_MTD_ABSENT is not set | 591 | # CONFIG_MTD_ABSENT is not set |
531 | # CONFIG_MTD_XIP is not set | ||
532 | 592 | ||
533 | # | 593 | # |
534 | # Mapping drivers for chip access | 594 | # Mapping drivers for chip access |
@@ -538,6 +598,7 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y | |||
538 | # CONFIG_MTD_ARM_INTEGRATOR is not set | 598 | # CONFIG_MTD_ARM_INTEGRATOR is not set |
539 | CONFIG_MTD_IXP4XX=y | 599 | CONFIG_MTD_IXP4XX=y |
540 | # CONFIG_MTD_PCI is not set | 600 | # CONFIG_MTD_PCI is not set |
601 | # CONFIG_MTD_INTEL_VR_NOR is not set | ||
541 | # CONFIG_MTD_PLATRAM is not set | 602 | # CONFIG_MTD_PLATRAM is not set |
542 | 603 | ||
543 | # | 604 | # |
@@ -547,7 +608,6 @@ CONFIG_MTD_IXP4XX=y | |||
547 | # CONFIG_MTD_SLRAM is not set | 608 | # CONFIG_MTD_SLRAM is not set |
548 | # CONFIG_MTD_PHRAM is not set | 609 | # CONFIG_MTD_PHRAM is not set |
549 | # CONFIG_MTD_MTDRAM is not set | 610 | # CONFIG_MTD_MTDRAM is not set |
550 | # CONFIG_MTD_BLKMTD is not set | ||
551 | # CONFIG_MTD_BLOCK2MTD is not set | 611 | # CONFIG_MTD_BLOCK2MTD is not set |
552 | 612 | ||
553 | # | 613 | # |
@@ -556,33 +616,24 @@ CONFIG_MTD_IXP4XX=y | |||
556 | # CONFIG_MTD_DOC2000 is not set | 616 | # CONFIG_MTD_DOC2000 is not set |
557 | # CONFIG_MTD_DOC2001 is not set | 617 | # CONFIG_MTD_DOC2001 is not set |
558 | # CONFIG_MTD_DOC2001PLUS is not set | 618 | # CONFIG_MTD_DOC2001PLUS is not set |
559 | |||
560 | # | ||
561 | # NAND Flash Device Drivers | ||
562 | # | ||
563 | CONFIG_MTD_NAND=m | 619 | CONFIG_MTD_NAND=m |
564 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | 620 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set |
621 | # CONFIG_MTD_NAND_ECC_SMC is not set | ||
622 | # CONFIG_MTD_NAND_MUSEUM_IDS is not set | ||
565 | CONFIG_MTD_NAND_IDS=m | 623 | CONFIG_MTD_NAND_IDS=m |
566 | # CONFIG_MTD_NAND_DISKONCHIP is not set | 624 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
625 | # CONFIG_MTD_NAND_CAFE is not set | ||
567 | # CONFIG_MTD_NAND_NANDSIM is not set | 626 | # CONFIG_MTD_NAND_NANDSIM is not set |
568 | 627 | # CONFIG_MTD_NAND_PLATFORM is not set | |
569 | # | 628 | # CONFIG_MTD_ALAUDA is not set |
570 | # OneNAND Flash Device Drivers | ||
571 | # | ||
572 | # CONFIG_MTD_ONENAND is not set | 629 | # CONFIG_MTD_ONENAND is not set |
573 | 630 | ||
574 | # | 631 | # |
575 | # Parallel port support | 632 | # UBI - Unsorted block images |
576 | # | 633 | # |
634 | # CONFIG_MTD_UBI is not set | ||
577 | # CONFIG_PARPORT is not set | 635 | # CONFIG_PARPORT is not set |
578 | 636 | CONFIG_BLK_DEV=y | |
579 | # | ||
580 | # Plug and Play support | ||
581 | # | ||
582 | |||
583 | # | ||
584 | # Block devices | ||
585 | # | ||
586 | # CONFIG_BLK_CPQ_DA is not set | 637 | # CONFIG_BLK_CPQ_DA is not set |
587 | # CONFIG_BLK_CPQ_CISS_DA is not set | 638 | # CONFIG_BLK_CPQ_CISS_DA is not set |
588 | # CONFIG_BLK_DEV_DAC960 is not set | 639 | # CONFIG_BLK_DEV_DAC960 is not set |
@@ -592,17 +643,20 @@ CONFIG_BLK_DEV_LOOP=y | |||
592 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 643 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
593 | # CONFIG_BLK_DEV_NBD is not set | 644 | # CONFIG_BLK_DEV_NBD is not set |
594 | # CONFIG_BLK_DEV_SX8 is not set | 645 | # CONFIG_BLK_DEV_SX8 is not set |
646 | # CONFIG_BLK_DEV_UB is not set | ||
595 | CONFIG_BLK_DEV_RAM=y | 647 | CONFIG_BLK_DEV_RAM=y |
596 | CONFIG_BLK_DEV_RAM_COUNT=16 | 648 | CONFIG_BLK_DEV_RAM_COUNT=16 |
597 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 649 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
598 | CONFIG_BLK_DEV_INITRD=y | 650 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 |
599 | # CONFIG_CDROM_PKTCDVD is not set | 651 | # CONFIG_CDROM_PKTCDVD is not set |
600 | # CONFIG_ATA_OVER_ETH is not set | 652 | # CONFIG_ATA_OVER_ETH is not set |
601 | 653 | CONFIG_MISC_DEVICES=y | |
602 | # | 654 | # CONFIG_PHANTOM is not set |
603 | # ATA/ATAPI/MFM/RLL support | 655 | # CONFIG_EEPROM_93CX6 is not set |
604 | # | 656 | # CONFIG_SGI_IOC4 is not set |
657 | # CONFIG_TIFM_CORE is not set | ||
605 | CONFIG_IDE=y | 658 | CONFIG_IDE=y |
659 | CONFIG_IDE_MAX_HWIFS=4 | ||
606 | CONFIG_BLK_DEV_IDE=y | 660 | CONFIG_BLK_DEV_IDE=y |
607 | 661 | ||
608 | # | 662 | # |
@@ -614,24 +668,28 @@ CONFIG_BLK_DEV_IDEDISK=y | |||
614 | # CONFIG_BLK_DEV_IDECD is not set | 668 | # CONFIG_BLK_DEV_IDECD is not set |
615 | # CONFIG_BLK_DEV_IDETAPE is not set | 669 | # CONFIG_BLK_DEV_IDETAPE is not set |
616 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | 670 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
671 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
617 | # CONFIG_IDE_TASK_IOCTL is not set | 672 | # CONFIG_IDE_TASK_IOCTL is not set |
673 | CONFIG_IDE_PROC_FS=y | ||
618 | 674 | ||
619 | # | 675 | # |
620 | # IDE chipset support/bugfixes | 676 | # IDE chipset support/bugfixes |
621 | # | 677 | # |
622 | CONFIG_IDE_GENERIC=y | 678 | CONFIG_IDE_GENERIC=y |
679 | # CONFIG_BLK_DEV_PLATFORM is not set | ||
680 | |||
681 | # | ||
682 | # PCI IDE chipsets support | ||
683 | # | ||
623 | CONFIG_BLK_DEV_IDEPCI=y | 684 | CONFIG_BLK_DEV_IDEPCI=y |
624 | # CONFIG_IDEPCI_SHARE_IRQ is not set | 685 | # CONFIG_IDEPCI_SHARE_IRQ is not set |
686 | CONFIG_IDEPCI_PCIBUS_ORDER=y | ||
625 | # CONFIG_BLK_DEV_OFFBOARD is not set | 687 | # CONFIG_BLK_DEV_OFFBOARD is not set |
626 | # CONFIG_BLK_DEV_GENERIC is not set | 688 | # CONFIG_BLK_DEV_GENERIC is not set |
627 | # CONFIG_BLK_DEV_OPTI621 is not set | 689 | # CONFIG_BLK_DEV_OPTI621 is not set |
628 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
629 | CONFIG_BLK_DEV_IDEDMA_PCI=y | 690 | CONFIG_BLK_DEV_IDEDMA_PCI=y |
630 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
631 | # CONFIG_IDEDMA_PCI_AUTO is not set | ||
632 | # CONFIG_BLK_DEV_AEC62XX is not set | 691 | # CONFIG_BLK_DEV_AEC62XX is not set |
633 | # CONFIG_BLK_DEV_ALI15X3 is not set | 692 | # CONFIG_BLK_DEV_ALI15X3 is not set |
634 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
635 | CONFIG_BLK_DEV_CMD64X=y | 693 | CONFIG_BLK_DEV_CMD64X=y |
636 | # CONFIG_BLK_DEV_TRIFLEX is not set | 694 | # CONFIG_BLK_DEV_TRIFLEX is not set |
637 | # CONFIG_BLK_DEV_CY82C693 is not set | 695 | # CONFIG_BLK_DEV_CY82C693 is not set |
@@ -639,93 +697,163 @@ CONFIG_BLK_DEV_CMD64X=y | |||
639 | # CONFIG_BLK_DEV_CS5530 is not set | 697 | # CONFIG_BLK_DEV_CS5530 is not set |
640 | # CONFIG_BLK_DEV_HPT34X is not set | 698 | # CONFIG_BLK_DEV_HPT34X is not set |
641 | CONFIG_BLK_DEV_HPT366=y | 699 | CONFIG_BLK_DEV_HPT366=y |
700 | # CONFIG_BLK_DEV_JMICRON is not set | ||
642 | # CONFIG_BLK_DEV_SC1200 is not set | 701 | # CONFIG_BLK_DEV_SC1200 is not set |
643 | # CONFIG_BLK_DEV_PIIX is not set | 702 | # CONFIG_BLK_DEV_PIIX is not set |
703 | # CONFIG_BLK_DEV_IT8213 is not set | ||
644 | # CONFIG_BLK_DEV_IT821X is not set | 704 | # CONFIG_BLK_DEV_IT821X is not set |
645 | # CONFIG_BLK_DEV_NS87415 is not set | 705 | # CONFIG_BLK_DEV_NS87415 is not set |
646 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | 706 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set |
647 | CONFIG_BLK_DEV_PDC202XX_NEW=y | 707 | CONFIG_BLK_DEV_PDC202XX_NEW=y |
648 | # CONFIG_PDC202XX_FORCE is not set | ||
649 | # CONFIG_BLK_DEV_SVWKS is not set | 708 | # CONFIG_BLK_DEV_SVWKS is not set |
650 | # CONFIG_BLK_DEV_SIIMAGE is not set | 709 | # CONFIG_BLK_DEV_SIIMAGE is not set |
710 | # CONFIG_BLK_DEV_SL82C105 is not set | ||
651 | # CONFIG_BLK_DEV_SLC90E66 is not set | 711 | # CONFIG_BLK_DEV_SLC90E66 is not set |
652 | # CONFIG_BLK_DEV_TRM290 is not set | 712 | # CONFIG_BLK_DEV_TRM290 is not set |
653 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 713 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
714 | # CONFIG_BLK_DEV_TC86C001 is not set | ||
654 | # CONFIG_IDE_ARM is not set | 715 | # CONFIG_IDE_ARM is not set |
655 | CONFIG_BLK_DEV_IDEDMA=y | 716 | CONFIG_BLK_DEV_IDEDMA=y |
656 | # CONFIG_IDEDMA_IVB is not set | 717 | CONFIG_IDE_ARCH_OBSOLETE_INIT=y |
657 | # CONFIG_IDEDMA_AUTO is not set | ||
658 | # CONFIG_BLK_DEV_HD is not set | 718 | # CONFIG_BLK_DEV_HD is not set |
659 | 719 | ||
660 | # | 720 | # |
661 | # SCSI device support | 721 | # SCSI device support |
662 | # | 722 | # |
663 | # CONFIG_RAID_ATTRS is not set | 723 | # CONFIG_RAID_ATTRS is not set |
664 | # CONFIG_SCSI is not set | 724 | CONFIG_SCSI=y |
665 | 725 | CONFIG_SCSI_DMA=y | |
666 | # | 726 | # CONFIG_SCSI_TGT is not set |
667 | # Multi-device support (RAID and LVM) | 727 | # CONFIG_SCSI_NETLINK is not set |
668 | # | 728 | # CONFIG_SCSI_PROC_FS is not set |
729 | |||
730 | # | ||
731 | # SCSI support type (disk, tape, CD-ROM) | ||
732 | # | ||
733 | CONFIG_BLK_DEV_SD=y | ||
734 | # CONFIG_CHR_DEV_ST is not set | ||
735 | # CONFIG_CHR_DEV_OSST is not set | ||
736 | # CONFIG_BLK_DEV_SR is not set | ||
737 | # CONFIG_CHR_DEV_SG is not set | ||
738 | # CONFIG_CHR_DEV_SCH is not set | ||
739 | |||
740 | # | ||
741 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
742 | # | ||
743 | # CONFIG_SCSI_MULTI_LUN is not set | ||
744 | # CONFIG_SCSI_CONSTANTS is not set | ||
745 | # CONFIG_SCSI_LOGGING is not set | ||
746 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
747 | CONFIG_SCSI_WAIT_SCAN=m | ||
748 | |||
749 | # | ||
750 | # SCSI Transports | ||
751 | # | ||
752 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
753 | # CONFIG_SCSI_FC_ATTRS is not set | ||
754 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
755 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
756 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
757 | # CONFIG_SCSI_LOWLEVEL is not set | ||
758 | CONFIG_ATA=y | ||
759 | # CONFIG_ATA_NONSTANDARD is not set | ||
760 | # CONFIG_SATA_AHCI is not set | ||
761 | # CONFIG_SATA_SVW is not set | ||
762 | # CONFIG_ATA_PIIX is not set | ||
763 | # CONFIG_SATA_MV is not set | ||
764 | # CONFIG_SATA_NV is not set | ||
765 | # CONFIG_PDC_ADMA is not set | ||
766 | # CONFIG_SATA_QSTOR is not set | ||
767 | # CONFIG_SATA_PROMISE is not set | ||
768 | # CONFIG_SATA_SX4 is not set | ||
769 | # CONFIG_SATA_SIL is not set | ||
770 | # CONFIG_SATA_SIL24 is not set | ||
771 | # CONFIG_SATA_SIS is not set | ||
772 | # CONFIG_SATA_ULI is not set | ||
773 | # CONFIG_SATA_VIA is not set | ||
774 | # CONFIG_SATA_VITESSE is not set | ||
775 | # CONFIG_SATA_INIC162X is not set | ||
776 | # CONFIG_PATA_ALI is not set | ||
777 | # CONFIG_PATA_AMD is not set | ||
778 | CONFIG_PATA_ARTOP=y | ||
779 | # CONFIG_PATA_ATIIXP is not set | ||
780 | # CONFIG_PATA_CMD640_PCI is not set | ||
781 | # CONFIG_PATA_CMD64X is not set | ||
782 | # CONFIG_PATA_CS5520 is not set | ||
783 | # CONFIG_PATA_CS5530 is not set | ||
784 | # CONFIG_PATA_CYPRESS is not set | ||
785 | # CONFIG_PATA_EFAR is not set | ||
786 | # CONFIG_ATA_GENERIC is not set | ||
787 | # CONFIG_PATA_HPT366 is not set | ||
788 | # CONFIG_PATA_HPT37X is not set | ||
789 | # CONFIG_PATA_HPT3X2N is not set | ||
790 | # CONFIG_PATA_HPT3X3 is not set | ||
791 | # CONFIG_PATA_IT821X is not set | ||
792 | # CONFIG_PATA_IT8213 is not set | ||
793 | # CONFIG_PATA_JMICRON is not set | ||
794 | # CONFIG_PATA_TRIFLEX is not set | ||
795 | # CONFIG_PATA_MARVELL is not set | ||
796 | # CONFIG_PATA_MPIIX is not set | ||
797 | # CONFIG_PATA_OLDPIIX is not set | ||
798 | # CONFIG_PATA_NETCELL is not set | ||
799 | # CONFIG_PATA_NS87410 is not set | ||
800 | # CONFIG_PATA_NS87415 is not set | ||
801 | # CONFIG_PATA_OPTI is not set | ||
802 | # CONFIG_PATA_OPTIDMA is not set | ||
803 | # CONFIG_PATA_PDC_OLD is not set | ||
804 | # CONFIG_PATA_RADISYS is not set | ||
805 | # CONFIG_PATA_RZ1000 is not set | ||
806 | # CONFIG_PATA_SC1200 is not set | ||
807 | # CONFIG_PATA_SERVERWORKS is not set | ||
808 | # CONFIG_PATA_PDC2027X is not set | ||
809 | # CONFIG_PATA_SIL680 is not set | ||
810 | # CONFIG_PATA_SIS is not set | ||
811 | # CONFIG_PATA_VIA is not set | ||
812 | # CONFIG_PATA_WINBOND is not set | ||
813 | # CONFIG_PATA_PLATFORM is not set | ||
814 | CONFIG_PATA_IXP4XX_CF=y | ||
669 | # CONFIG_MD is not set | 815 | # CONFIG_MD is not set |
670 | |||
671 | # | ||
672 | # Fusion MPT device support | ||
673 | # | ||
674 | # CONFIG_FUSION is not set | 816 | # CONFIG_FUSION is not set |
675 | 817 | ||
676 | # | 818 | # |
677 | # IEEE 1394 (FireWire) support | 819 | # IEEE 1394 (FireWire) support |
678 | # | 820 | # |
821 | # CONFIG_FIREWIRE is not set | ||
679 | # CONFIG_IEEE1394 is not set | 822 | # CONFIG_IEEE1394 is not set |
680 | |||
681 | # | ||
682 | # I2O device support | ||
683 | # | ||
684 | # CONFIG_I2O is not set | 823 | # CONFIG_I2O is not set |
685 | |||
686 | # | ||
687 | # Network device support | ||
688 | # | ||
689 | CONFIG_NETDEVICES=y | 824 | CONFIG_NETDEVICES=y |
825 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
826 | # CONFIG_IFB is not set | ||
690 | CONFIG_DUMMY=y | 827 | CONFIG_DUMMY=y |
691 | # CONFIG_BONDING is not set | 828 | # CONFIG_BONDING is not set |
829 | # CONFIG_MACVLAN is not set | ||
692 | # CONFIG_EQUALIZER is not set | 830 | # CONFIG_EQUALIZER is not set |
693 | # CONFIG_TUN is not set | 831 | # CONFIG_TUN is not set |
694 | 832 | # CONFIG_VETH is not set | |
695 | # | ||
696 | # ARCnet devices | ||
697 | # | ||
698 | # CONFIG_ARCNET is not set | 833 | # CONFIG_ARCNET is not set |
699 | |||
700 | # | ||
701 | # PHY device support | ||
702 | # | ||
703 | # CONFIG_PHYLIB is not set | 834 | # CONFIG_PHYLIB is not set |
704 | |||
705 | # | ||
706 | # Ethernet (10 or 100Mbit) | ||
707 | # | ||
708 | CONFIG_NET_ETHERNET=y | 835 | CONFIG_NET_ETHERNET=y |
709 | CONFIG_MII=y | 836 | CONFIG_MII=y |
837 | CONFIG_IXP4XX_ETH=y | ||
838 | # CONFIG_AX88796 is not set | ||
710 | # CONFIG_HAPPYMEAL is not set | 839 | # CONFIG_HAPPYMEAL is not set |
711 | # CONFIG_SUNGEM is not set | 840 | # CONFIG_SUNGEM is not set |
712 | # CONFIG_CASSINI is not set | 841 | # CONFIG_CASSINI is not set |
713 | # CONFIG_NET_VENDOR_3COM is not set | 842 | # CONFIG_NET_VENDOR_3COM is not set |
714 | # CONFIG_SMC91X is not set | 843 | # CONFIG_SMC91X is not set |
715 | # CONFIG_DM9000 is not set | 844 | # CONFIG_DM9000 is not set |
716 | |||
717 | # | ||
718 | # Tulip family network device support | ||
719 | # | ||
720 | # CONFIG_NET_TULIP is not set | 845 | # CONFIG_NET_TULIP is not set |
721 | # CONFIG_HP100 is not set | 846 | # CONFIG_HP100 is not set |
847 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
848 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
849 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
850 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
722 | CONFIG_NET_PCI=y | 851 | CONFIG_NET_PCI=y |
723 | # CONFIG_PCNET32 is not set | 852 | # CONFIG_PCNET32 is not set |
724 | # CONFIG_AMD8111_ETH is not set | 853 | # CONFIG_AMD8111_ETH is not set |
725 | # CONFIG_ADAPTEC_STARFIRE is not set | 854 | # CONFIG_ADAPTEC_STARFIRE is not set |
726 | # CONFIG_B44 is not set | 855 | # CONFIG_B44 is not set |
727 | # CONFIG_FORCEDETH is not set | 856 | # CONFIG_FORCEDETH is not set |
728 | # CONFIG_DGRS is not set | ||
729 | CONFIG_EEPRO100=y | 857 | CONFIG_EEPRO100=y |
730 | # CONFIG_E100 is not set | 858 | # CONFIG_E100 is not set |
731 | # CONFIG_FEALNX is not set | 859 | # CONFIG_FEALNX is not set |
@@ -738,93 +866,76 @@ CONFIG_EEPRO100=y | |||
738 | # CONFIG_SUNDANCE is not set | 866 | # CONFIG_SUNDANCE is not set |
739 | # CONFIG_TLAN is not set | 867 | # CONFIG_TLAN is not set |
740 | # CONFIG_VIA_RHINE is not set | 868 | # CONFIG_VIA_RHINE is not set |
741 | 869 | # CONFIG_SC92031 is not set | |
742 | # | 870 | CONFIG_NETDEV_1000=y |
743 | # Ethernet (1000 Mbit) | ||
744 | # | ||
745 | # CONFIG_ACENIC is not set | 871 | # CONFIG_ACENIC is not set |
746 | # CONFIG_DL2K is not set | 872 | # CONFIG_DL2K is not set |
747 | # CONFIG_E1000 is not set | 873 | # CONFIG_E1000 is not set |
874 | # CONFIG_E1000E is not set | ||
875 | # CONFIG_IP1000 is not set | ||
748 | # CONFIG_NS83820 is not set | 876 | # CONFIG_NS83820 is not set |
749 | # CONFIG_HAMACHI is not set | 877 | # CONFIG_HAMACHI is not set |
750 | # CONFIG_YELLOWFIN is not set | 878 | # CONFIG_YELLOWFIN is not set |
751 | # CONFIG_R8169 is not set | 879 | # CONFIG_R8169 is not set |
752 | # CONFIG_SIS190 is not set | 880 | # CONFIG_SIS190 is not set |
753 | # CONFIG_SKGE is not set | 881 | # CONFIG_SKGE is not set |
882 | # CONFIG_SKY2 is not set | ||
754 | # CONFIG_SK98LIN is not set | 883 | # CONFIG_SK98LIN is not set |
755 | # CONFIG_VIA_VELOCITY is not set | 884 | # CONFIG_VIA_VELOCITY is not set |
756 | # CONFIG_TIGON3 is not set | 885 | # CONFIG_TIGON3 is not set |
757 | # CONFIG_BNX2 is not set | 886 | # CONFIG_BNX2 is not set |
758 | 887 | # CONFIG_QLA3XXX is not set | |
759 | # | 888 | # CONFIG_ATL1 is not set |
760 | # Ethernet (10000 Mbit) | 889 | CONFIG_NETDEV_10000=y |
761 | # | ||
762 | # CONFIG_CHELSIO_T1 is not set | 890 | # CONFIG_CHELSIO_T1 is not set |
891 | # CONFIG_CHELSIO_T3 is not set | ||
892 | # CONFIG_IXGBE is not set | ||
763 | # CONFIG_IXGB is not set | 893 | # CONFIG_IXGB is not set |
764 | # CONFIG_S2IO is not set | 894 | # CONFIG_S2IO is not set |
765 | 895 | # CONFIG_MYRI10GE is not set | |
766 | # | 896 | # CONFIG_NETXEN_NIC is not set |
767 | # Token Ring devices | 897 | # CONFIG_NIU is not set |
768 | # | 898 | # CONFIG_MLX4_CORE is not set |
899 | # CONFIG_TEHUTI is not set | ||
769 | # CONFIG_TR is not set | 900 | # CONFIG_TR is not set |
770 | 901 | ||
771 | # | 902 | # |
772 | # Wireless LAN (non-hamradio) | 903 | # Wireless LAN |
773 | # | ||
774 | CONFIG_NET_RADIO=y | ||
775 | |||
776 | # | ||
777 | # Obsolete Wireless cards support (pre-802.11) | ||
778 | # | ||
779 | # CONFIG_STRIP is not set | ||
780 | |||
781 | # | ||
782 | # Wireless 802.11b ISA/PCI cards support | ||
783 | # | ||
784 | # CONFIG_AIRO is not set | ||
785 | CONFIG_HERMES=y | ||
786 | # CONFIG_PLX_HERMES is not set | ||
787 | # CONFIG_TMD_HERMES is not set | ||
788 | # CONFIG_NORTEL_HERMES is not set | ||
789 | CONFIG_PCI_HERMES=y | ||
790 | # CONFIG_ATMEL is not set | ||
791 | |||
792 | # | ||
793 | # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support | ||
794 | # | 904 | # |
795 | # CONFIG_PRISM54 is not set | 905 | # CONFIG_WLAN_PRE80211 is not set |
796 | # CONFIG_HOSTAP is not set | 906 | # CONFIG_WLAN_80211 is not set |
797 | CONFIG_NET_WIRELESS=y | ||
798 | 907 | ||
799 | # | 908 | # |
800 | # Wan interfaces | 909 | # USB Network Adapters |
801 | # | 910 | # |
911 | # CONFIG_USB_CATC is not set | ||
912 | # CONFIG_USB_KAWETH is not set | ||
913 | # CONFIG_USB_PEGASUS is not set | ||
914 | # CONFIG_USB_RTL8150 is not set | ||
915 | # CONFIG_USB_USBNET is not set | ||
802 | CONFIG_WAN=y | 916 | CONFIG_WAN=y |
803 | # CONFIG_DSCC4 is not set | ||
804 | # CONFIG_LANMEDIA is not set | 917 | # CONFIG_LANMEDIA is not set |
805 | # CONFIG_SYNCLINK_SYNCPPP is not set | ||
806 | CONFIG_HDLC=m | 918 | CONFIG_HDLC=m |
807 | CONFIG_HDLC_RAW=y | 919 | CONFIG_HDLC_RAW=m |
808 | # CONFIG_HDLC_RAW_ETH is not set | 920 | # CONFIG_HDLC_RAW_ETH is not set |
809 | CONFIG_HDLC_CISCO=y | 921 | CONFIG_HDLC_CISCO=m |
810 | CONFIG_HDLC_FR=y | 922 | CONFIG_HDLC_FR=m |
811 | CONFIG_HDLC_PPP=y | 923 | CONFIG_HDLC_PPP=m |
812 | CONFIG_HDLC_X25=y | 924 | CONFIG_HDLC_X25=m |
813 | # CONFIG_PCI200SYN is not set | 925 | # CONFIG_PCI200SYN is not set |
814 | # CONFIG_WANXL is not set | 926 | # CONFIG_WANXL is not set |
815 | # CONFIG_PC300 is not set | 927 | # CONFIG_PC300 is not set |
928 | # CONFIG_PC300TOO is not set | ||
816 | # CONFIG_FARSYNC is not set | 929 | # CONFIG_FARSYNC is not set |
930 | # CONFIG_DSCC4 is not set | ||
931 | # CONFIG_IXP4XX_HSS is not set | ||
817 | CONFIG_DLCI=m | 932 | CONFIG_DLCI=m |
818 | CONFIG_DLCI_COUNT=24 | ||
819 | CONFIG_DLCI_MAX=8 | 933 | CONFIG_DLCI_MAX=8 |
820 | CONFIG_WAN_ROUTER_DRIVERS=y | 934 | CONFIG_WAN_ROUTER_DRIVERS=m |
821 | # CONFIG_CYCLADES_SYNC is not set | 935 | # CONFIG_CYCLADES_SYNC is not set |
822 | # CONFIG_LAPBETHER is not set | 936 | # CONFIG_LAPBETHER is not set |
823 | # CONFIG_X25_ASY is not set | 937 | # CONFIG_X25_ASY is not set |
824 | 938 | CONFIG_ATM_DRIVERS=y | |
825 | # | ||
826 | # ATM drivers | ||
827 | # | ||
828 | # CONFIG_ATM_DUMMY is not set | 939 | # CONFIG_ATM_DUMMY is not set |
829 | CONFIG_ATM_TCP=m | 940 | CONFIG_ATM_TCP=m |
830 | # CONFIG_ATM_LANAI is not set | 941 | # CONFIG_ATM_LANAI is not set |
@@ -842,20 +953,19 @@ CONFIG_ATM_TCP=m | |||
842 | # CONFIG_HIPPI is not set | 953 | # CONFIG_HIPPI is not set |
843 | # CONFIG_PPP is not set | 954 | # CONFIG_PPP is not set |
844 | # CONFIG_SLIP is not set | 955 | # CONFIG_SLIP is not set |
956 | # CONFIG_NET_FC is not set | ||
845 | # CONFIG_SHAPER is not set | 957 | # CONFIG_SHAPER is not set |
846 | # CONFIG_NETCONSOLE is not set | 958 | # CONFIG_NETCONSOLE is not set |
847 | # CONFIG_NETPOLL is not set | 959 | # CONFIG_NETPOLL is not set |
848 | # CONFIG_NET_POLL_CONTROLLER is not set | 960 | # CONFIG_NET_POLL_CONTROLLER is not set |
849 | |||
850 | # | ||
851 | # ISDN subsystem | ||
852 | # | ||
853 | # CONFIG_ISDN is not set | 961 | # CONFIG_ISDN is not set |
854 | 962 | ||
855 | # | 963 | # |
856 | # Input device support | 964 | # Input device support |
857 | # | 965 | # |
858 | CONFIG_INPUT=y | 966 | CONFIG_INPUT=y |
967 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
968 | # CONFIG_INPUT_POLLDEV is not set | ||
859 | 969 | ||
860 | # | 970 | # |
861 | # Userland interfaces | 971 | # Userland interfaces |
@@ -865,7 +975,6 @@ CONFIG_INPUT_MOUSEDEV_PSAUX=y | |||
865 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | 975 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 |
866 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | 976 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 |
867 | # CONFIG_INPUT_JOYDEV is not set | 977 | # CONFIG_INPUT_JOYDEV is not set |
868 | # CONFIG_INPUT_TSDEV is not set | ||
869 | # CONFIG_INPUT_EVDEV is not set | 978 | # CONFIG_INPUT_EVDEV is not set |
870 | # CONFIG_INPUT_EVBUG is not set | 979 | # CONFIG_INPUT_EVBUG is not set |
871 | 980 | ||
@@ -875,8 +984,16 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
875 | # CONFIG_INPUT_KEYBOARD is not set | 984 | # CONFIG_INPUT_KEYBOARD is not set |
876 | # CONFIG_INPUT_MOUSE is not set | 985 | # CONFIG_INPUT_MOUSE is not set |
877 | # CONFIG_INPUT_JOYSTICK is not set | 986 | # CONFIG_INPUT_JOYSTICK is not set |
987 | # CONFIG_INPUT_TABLET is not set | ||
878 | # CONFIG_INPUT_TOUCHSCREEN is not set | 988 | # CONFIG_INPUT_TOUCHSCREEN is not set |
879 | # CONFIG_INPUT_MISC is not set | 989 | CONFIG_INPUT_MISC=y |
990 | CONFIG_INPUT_IXP4XX_BEEPER=y | ||
991 | # CONFIG_INPUT_ATI_REMOTE is not set | ||
992 | # CONFIG_INPUT_ATI_REMOTE2 is not set | ||
993 | # CONFIG_INPUT_KEYSPAN_REMOTE is not set | ||
994 | # CONFIG_INPUT_POWERMATE is not set | ||
995 | # CONFIG_INPUT_YEALINK is not set | ||
996 | # CONFIG_INPUT_UINPUT is not set | ||
880 | 997 | ||
881 | # | 998 | # |
882 | # Hardware I/O ports | 999 | # Hardware I/O ports |
@@ -895,7 +1012,9 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | |||
895 | # | 1012 | # |
896 | CONFIG_SERIAL_8250=y | 1013 | CONFIG_SERIAL_8250=y |
897 | CONFIG_SERIAL_8250_CONSOLE=y | 1014 | CONFIG_SERIAL_8250_CONSOLE=y |
1015 | CONFIG_SERIAL_8250_PCI=y | ||
898 | CONFIG_SERIAL_8250_NR_UARTS=2 | 1016 | CONFIG_SERIAL_8250_NR_UARTS=2 |
1017 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
899 | # CONFIG_SERIAL_8250_EXTENDED is not set | 1018 | # CONFIG_SERIAL_8250_EXTENDED is not set |
900 | 1019 | ||
901 | # | 1020 | # |
@@ -907,51 +1026,17 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
907 | CONFIG_UNIX98_PTYS=y | 1026 | CONFIG_UNIX98_PTYS=y |
908 | CONFIG_LEGACY_PTYS=y | 1027 | CONFIG_LEGACY_PTYS=y |
909 | CONFIG_LEGACY_PTY_COUNT=256 | 1028 | CONFIG_LEGACY_PTY_COUNT=256 |
910 | |||
911 | # | ||
912 | # IPMI | ||
913 | # | ||
914 | # CONFIG_IPMI_HANDLER is not set | 1029 | # CONFIG_IPMI_HANDLER is not set |
915 | 1030 | CONFIG_HW_RANDOM=m | |
916 | # | 1031 | CONFIG_HW_RANDOM_IXP4XX=m |
917 | # Watchdog Cards | ||
918 | # | ||
919 | CONFIG_WATCHDOG=y | ||
920 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
921 | |||
922 | # | ||
923 | # Watchdog Device Drivers | ||
924 | # | ||
925 | # CONFIG_SOFT_WATCHDOG is not set | ||
926 | CONFIG_IXP4XX_WATCHDOG=y | ||
927 | |||
928 | # | ||
929 | # PCI-based Watchdog Cards | ||
930 | # | ||
931 | # CONFIG_PCIPCWATCHDOG is not set | ||
932 | # CONFIG_WDTPCI is not set | ||
933 | # CONFIG_NVRAM is not set | 1032 | # CONFIG_NVRAM is not set |
934 | # CONFIG_RTC is not set | ||
935 | # CONFIG_DTLK is not set | ||
936 | # CONFIG_R3964 is not set | 1033 | # CONFIG_R3964 is not set |
937 | # CONFIG_APPLICOM is not set | 1034 | # CONFIG_APPLICOM is not set |
938 | |||
939 | # | ||
940 | # Ftape, the floppy tape device driver | ||
941 | # | ||
942 | # CONFIG_DRM is not set | ||
943 | # CONFIG_RAW_DRIVER is not set | 1035 | # CONFIG_RAW_DRIVER is not set |
944 | |||
945 | # | ||
946 | # TPM devices | ||
947 | # | ||
948 | # CONFIG_TCG_TPM is not set | 1036 | # CONFIG_TCG_TPM is not set |
949 | # CONFIG_TELCLOCK is not set | 1037 | CONFIG_DEVPORT=y |
950 | |||
951 | # | ||
952 | # I2C support | ||
953 | # | ||
954 | CONFIG_I2C=y | 1038 | CONFIG_I2C=y |
1039 | CONFIG_I2C_BOARDINFO=y | ||
955 | CONFIG_I2C_CHARDEV=y | 1040 | CONFIG_I2C_CHARDEV=y |
956 | 1041 | ||
957 | # | 1042 | # |
@@ -969,57 +1054,68 @@ CONFIG_I2C_ALGOBIT=y | |||
969 | # CONFIG_I2C_ALI15X3 is not set | 1054 | # CONFIG_I2C_ALI15X3 is not set |
970 | # CONFIG_I2C_AMD756 is not set | 1055 | # CONFIG_I2C_AMD756 is not set |
971 | # CONFIG_I2C_AMD8111 is not set | 1056 | # CONFIG_I2C_AMD8111 is not set |
1057 | # CONFIG_I2C_GPIO is not set | ||
972 | # CONFIG_I2C_I801 is not set | 1058 | # CONFIG_I2C_I801 is not set |
973 | # CONFIG_I2C_I810 is not set | 1059 | # CONFIG_I2C_I810 is not set |
974 | # CONFIG_I2C_PIIX4 is not set | 1060 | # CONFIG_I2C_PIIX4 is not set |
975 | # CONFIG_I2C_IOP3XX is not set | 1061 | # CONFIG_I2C_IOP3XX is not set |
976 | CONFIG_I2C_IXP4XX=y | 1062 | CONFIG_I2C_IXP4XX=y |
977 | # CONFIG_I2C_NFORCE2 is not set | 1063 | # CONFIG_I2C_NFORCE2 is not set |
1064 | # CONFIG_I2C_OCORES is not set | ||
978 | # CONFIG_I2C_PARPORT_LIGHT is not set | 1065 | # CONFIG_I2C_PARPORT_LIGHT is not set |
979 | # CONFIG_I2C_PROSAVAGE is not set | 1066 | # CONFIG_I2C_PROSAVAGE is not set |
980 | # CONFIG_I2C_SAVAGE4 is not set | 1067 | # CONFIG_I2C_SAVAGE4 is not set |
981 | # CONFIG_SCx200_ACB is not set | 1068 | # CONFIG_I2C_SIMTEC is not set |
982 | # CONFIG_I2C_SIS5595 is not set | 1069 | # CONFIG_I2C_SIS5595 is not set |
983 | # CONFIG_I2C_SIS630 is not set | 1070 | # CONFIG_I2C_SIS630 is not set |
984 | # CONFIG_I2C_SIS96X is not set | 1071 | # CONFIG_I2C_SIS96X is not set |
1072 | # CONFIG_I2C_TAOS_EVM is not set | ||
985 | # CONFIG_I2C_STUB is not set | 1073 | # CONFIG_I2C_STUB is not set |
1074 | # CONFIG_I2C_TINY_USB is not set | ||
986 | # CONFIG_I2C_VIA is not set | 1075 | # CONFIG_I2C_VIA is not set |
987 | # CONFIG_I2C_VIAPRO is not set | 1076 | # CONFIG_I2C_VIAPRO is not set |
988 | # CONFIG_I2C_VOODOO3 is not set | 1077 | # CONFIG_I2C_VOODOO3 is not set |
989 | # CONFIG_I2C_PCA_ISA is not set | ||
990 | 1078 | ||
991 | # | 1079 | # |
992 | # Miscellaneous I2C Chip support | 1080 | # Miscellaneous I2C Chip support |
993 | # | 1081 | # |
994 | # CONFIG_SENSORS_DS1337 is not set | 1082 | # CONFIG_SENSORS_DS1337 is not set |
995 | # CONFIG_SENSORS_DS1374 is not set | 1083 | # CONFIG_SENSORS_DS1374 is not set |
1084 | # CONFIG_DS1682 is not set | ||
996 | CONFIG_SENSORS_EEPROM=y | 1085 | CONFIG_SENSORS_EEPROM=y |
997 | # CONFIG_SENSORS_PCF8574 is not set | 1086 | # CONFIG_SENSORS_PCF8574 is not set |
998 | # CONFIG_SENSORS_PCA9539 is not set | 1087 | # CONFIG_SENSORS_PCA9539 is not set |
999 | # CONFIG_SENSORS_PCF8591 is not set | 1088 | # CONFIG_SENSORS_PCF8591 is not set |
1000 | # CONFIG_SENSORS_RTC8564 is not set | ||
1001 | # CONFIG_SENSORS_MAX6875 is not set | 1089 | # CONFIG_SENSORS_MAX6875 is not set |
1002 | # CONFIG_RTC_X1205_I2C is not set | 1090 | # CONFIG_SENSORS_TSL2550 is not set |
1003 | # CONFIG_I2C_DEBUG_CORE is not set | 1091 | # CONFIG_I2C_DEBUG_CORE is not set |
1004 | # CONFIG_I2C_DEBUG_ALGO is not set | 1092 | # CONFIG_I2C_DEBUG_ALGO is not set |
1005 | # CONFIG_I2C_DEBUG_BUS is not set | 1093 | # CONFIG_I2C_DEBUG_BUS is not set |
1006 | # CONFIG_I2C_DEBUG_CHIP is not set | 1094 | # CONFIG_I2C_DEBUG_CHIP is not set |
1007 | 1095 | ||
1008 | # | 1096 | # |
1009 | # Hardware Monitoring support | 1097 | # SPI support |
1010 | # | 1098 | # |
1099 | # CONFIG_SPI is not set | ||
1100 | # CONFIG_SPI_MASTER is not set | ||
1101 | # CONFIG_W1 is not set | ||
1102 | # CONFIG_POWER_SUPPLY is not set | ||
1011 | CONFIG_HWMON=y | 1103 | CONFIG_HWMON=y |
1012 | # CONFIG_HWMON_VID is not set | 1104 | # CONFIG_HWMON_VID is not set |
1105 | # CONFIG_SENSORS_AD7418 is not set | ||
1013 | # CONFIG_SENSORS_ADM1021 is not set | 1106 | # CONFIG_SENSORS_ADM1021 is not set |
1014 | # CONFIG_SENSORS_ADM1025 is not set | 1107 | # CONFIG_SENSORS_ADM1025 is not set |
1015 | # CONFIG_SENSORS_ADM1026 is not set | 1108 | # CONFIG_SENSORS_ADM1026 is not set |
1109 | # CONFIG_SENSORS_ADM1029 is not set | ||
1016 | # CONFIG_SENSORS_ADM1031 is not set | 1110 | # CONFIG_SENSORS_ADM1031 is not set |
1017 | # CONFIG_SENSORS_ADM9240 is not set | 1111 | # CONFIG_SENSORS_ADM9240 is not set |
1018 | # CONFIG_SENSORS_ASB100 is not set | 1112 | # CONFIG_SENSORS_ADT7470 is not set |
1019 | # CONFIG_SENSORS_ATXP1 is not set | 1113 | # CONFIG_SENSORS_ATXP1 is not set |
1020 | # CONFIG_SENSORS_DS1621 is not set | 1114 | # CONFIG_SENSORS_DS1621 is not set |
1021 | # CONFIG_SENSORS_FSCHER is not set | 1115 | # CONFIG_SENSORS_I5K_AMB is not set |
1022 | # CONFIG_SENSORS_FSCPOS is not set | 1116 | # CONFIG_SENSORS_F71805F is not set |
1117 | # CONFIG_SENSORS_F71882FG is not set | ||
1118 | # CONFIG_SENSORS_F75375S is not set | ||
1023 | # CONFIG_SENSORS_GL518SM is not set | 1119 | # CONFIG_SENSORS_GL518SM is not set |
1024 | # CONFIG_SENSORS_GL520SM is not set | 1120 | # CONFIG_SENSORS_GL520SM is not set |
1025 | # CONFIG_SENSORS_IT87 is not set | 1121 | # CONFIG_SENSORS_IT87 is not set |
@@ -1033,67 +1129,268 @@ CONFIG_HWMON=y | |||
1033 | # CONFIG_SENSORS_LM87 is not set | 1129 | # CONFIG_SENSORS_LM87 is not set |
1034 | # CONFIG_SENSORS_LM90 is not set | 1130 | # CONFIG_SENSORS_LM90 is not set |
1035 | # CONFIG_SENSORS_LM92 is not set | 1131 | # CONFIG_SENSORS_LM92 is not set |
1132 | # CONFIG_SENSORS_LM93 is not set | ||
1036 | # CONFIG_SENSORS_MAX1619 is not set | 1133 | # CONFIG_SENSORS_MAX1619 is not set |
1134 | # CONFIG_SENSORS_MAX6650 is not set | ||
1037 | # CONFIG_SENSORS_PC87360 is not set | 1135 | # CONFIG_SENSORS_PC87360 is not set |
1136 | # CONFIG_SENSORS_PC87427 is not set | ||
1038 | # CONFIG_SENSORS_SIS5595 is not set | 1137 | # CONFIG_SENSORS_SIS5595 is not set |
1138 | # CONFIG_SENSORS_DME1737 is not set | ||
1039 | # CONFIG_SENSORS_SMSC47M1 is not set | 1139 | # CONFIG_SENSORS_SMSC47M1 is not set |
1140 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
1040 | # CONFIG_SENSORS_SMSC47B397 is not set | 1141 | # CONFIG_SENSORS_SMSC47B397 is not set |
1142 | # CONFIG_SENSORS_THMC50 is not set | ||
1041 | # CONFIG_SENSORS_VIA686A is not set | 1143 | # CONFIG_SENSORS_VIA686A is not set |
1144 | # CONFIG_SENSORS_VT1211 is not set | ||
1145 | # CONFIG_SENSORS_VT8231 is not set | ||
1042 | # CONFIG_SENSORS_W83781D is not set | 1146 | # CONFIG_SENSORS_W83781D is not set |
1147 | # CONFIG_SENSORS_W83791D is not set | ||
1043 | # CONFIG_SENSORS_W83792D is not set | 1148 | # CONFIG_SENSORS_W83792D is not set |
1149 | # CONFIG_SENSORS_W83793 is not set | ||
1044 | # CONFIG_SENSORS_W83L785TS is not set | 1150 | # CONFIG_SENSORS_W83L785TS is not set |
1045 | # CONFIG_SENSORS_W83627HF is not set | 1151 | # CONFIG_SENSORS_W83627HF is not set |
1046 | # CONFIG_SENSORS_W83627EHF is not set | 1152 | # CONFIG_SENSORS_W83627EHF is not set |
1047 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1153 | # CONFIG_HWMON_DEBUG_CHIP is not set |
1154 | CONFIG_WATCHDOG=y | ||
1155 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
1048 | 1156 | ||
1049 | # | 1157 | # |
1050 | # Misc devices | 1158 | # Watchdog Device Drivers |
1051 | # | 1159 | # |
1160 | # CONFIG_SOFT_WATCHDOG is not set | ||
1161 | CONFIG_IXP4XX_WATCHDOG=y | ||
1052 | 1162 | ||
1053 | # | 1163 | # |
1054 | # Multimedia Capabilities Port drivers | 1164 | # PCI-based Watchdog Cards |
1055 | # | 1165 | # |
1166 | # CONFIG_PCIPCWATCHDOG is not set | ||
1167 | # CONFIG_WDTPCI is not set | ||
1056 | 1168 | ||
1057 | # | 1169 | # |
1058 | # Multimedia devices | 1170 | # USB-based Watchdog Cards |
1059 | # | 1171 | # |
1060 | # CONFIG_VIDEO_DEV is not set | 1172 | # CONFIG_USBPCWATCHDOG is not set |
1061 | 1173 | ||
1062 | # | 1174 | # |
1063 | # Digital Video Broadcasting Devices | 1175 | # Sonics Silicon Backplane |
1064 | # | 1176 | # |
1065 | # CONFIG_DVB is not set | 1177 | CONFIG_SSB_POSSIBLE=y |
1178 | # CONFIG_SSB is not set | ||
1179 | |||
1180 | # | ||
1181 | # Multifunction device drivers | ||
1182 | # | ||
1183 | # CONFIG_MFD_SM501 is not set | ||
1184 | |||
1185 | # | ||
1186 | # Multimedia devices | ||
1187 | # | ||
1188 | # CONFIG_VIDEO_DEV is not set | ||
1189 | # CONFIG_DVB_CORE is not set | ||
1190 | CONFIG_DAB=y | ||
1191 | # CONFIG_USB_DABUSB is not set | ||
1066 | 1192 | ||
1067 | # | 1193 | # |
1068 | # Graphics support | 1194 | # Graphics support |
1069 | # | 1195 | # |
1196 | # CONFIG_DRM is not set | ||
1197 | # CONFIG_VGASTATE is not set | ||
1198 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
1070 | # CONFIG_FB is not set | 1199 | # CONFIG_FB is not set |
1200 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1201 | |||
1202 | # | ||
1203 | # Display device support | ||
1204 | # | ||
1205 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1071 | 1206 | ||
1072 | # | 1207 | # |
1073 | # Sound | 1208 | # Sound |
1074 | # | 1209 | # |
1075 | # CONFIG_SOUND is not set | 1210 | # CONFIG_SOUND is not set |
1211 | CONFIG_HID_SUPPORT=y | ||
1212 | CONFIG_HID=y | ||
1213 | # CONFIG_HID_DEBUG is not set | ||
1214 | # CONFIG_HIDRAW is not set | ||
1076 | 1215 | ||
1077 | # | 1216 | # |
1078 | # USB support | 1217 | # USB Input Devices |
1079 | # | 1218 | # |
1219 | CONFIG_USB_HID=y | ||
1220 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
1221 | # CONFIG_HID_FF is not set | ||
1222 | # CONFIG_USB_HIDDEV is not set | ||
1223 | CONFIG_USB_SUPPORT=y | ||
1080 | CONFIG_USB_ARCH_HAS_HCD=y | 1224 | CONFIG_USB_ARCH_HAS_HCD=y |
1081 | CONFIG_USB_ARCH_HAS_OHCI=y | 1225 | CONFIG_USB_ARCH_HAS_OHCI=y |
1082 | # CONFIG_USB is not set | 1226 | CONFIG_USB_ARCH_HAS_EHCI=y |
1227 | CONFIG_USB=y | ||
1228 | # CONFIG_USB_DEBUG is not set | ||
1229 | |||
1230 | # | ||
1231 | # Miscellaneous USB options | ||
1232 | # | ||
1233 | CONFIG_USB_DEVICEFS=y | ||
1234 | # CONFIG_USB_DEVICE_CLASS is not set | ||
1235 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1236 | # CONFIG_USB_OTG is not set | ||
1237 | |||
1238 | # | ||
1239 | # USB Host Controller Drivers | ||
1240 | # | ||
1241 | CONFIG_USB_EHCI_HCD=y | ||
1242 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
1243 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
1244 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
1245 | # CONFIG_USB_ISP116X_HCD is not set | ||
1246 | CONFIG_USB_OHCI_HCD=y | ||
1247 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
1248 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
1249 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1250 | CONFIG_USB_UHCI_HCD=y | ||
1251 | # CONFIG_USB_SL811_HCD is not set | ||
1252 | # CONFIG_USB_R8A66597_HCD is not set | ||
1253 | |||
1254 | # | ||
1255 | # USB Device Class drivers | ||
1256 | # | ||
1257 | # CONFIG_USB_ACM is not set | ||
1258 | # CONFIG_USB_PRINTER is not set | ||
1083 | 1259 | ||
1084 | # | 1260 | # |
1085 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1261 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
1086 | # | 1262 | # |
1087 | 1263 | ||
1088 | # | 1264 | # |
1265 | # may also be needed; see USB_STORAGE Help for more information | ||
1266 | # | ||
1267 | CONFIG_USB_STORAGE=y | ||
1268 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1269 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1270 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1271 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1272 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1273 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1274 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1275 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1276 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1277 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1278 | # CONFIG_USB_STORAGE_KARMA is not set | ||
1279 | # CONFIG_USB_LIBUSUAL is not set | ||
1280 | |||
1281 | # | ||
1282 | # USB Imaging devices | ||
1283 | # | ||
1284 | # CONFIG_USB_MDC800 is not set | ||
1285 | # CONFIG_USB_MICROTEK is not set | ||
1286 | # CONFIG_USB_MON is not set | ||
1287 | |||
1288 | # | ||
1289 | # USB port drivers | ||
1290 | # | ||
1291 | |||
1292 | # | ||
1293 | # USB Serial Converter support | ||
1294 | # | ||
1295 | # CONFIG_USB_SERIAL is not set | ||
1296 | |||
1297 | # | ||
1298 | # USB Miscellaneous drivers | ||
1299 | # | ||
1300 | # CONFIG_USB_EMI62 is not set | ||
1301 | # CONFIG_USB_EMI26 is not set | ||
1302 | # CONFIG_USB_ADUTUX is not set | ||
1303 | # CONFIG_USB_AUERSWALD is not set | ||
1304 | # CONFIG_USB_RIO500 is not set | ||
1305 | # CONFIG_USB_LEGOTOWER is not set | ||
1306 | # CONFIG_USB_LCD is not set | ||
1307 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1308 | # CONFIG_USB_LED is not set | ||
1309 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1310 | # CONFIG_USB_CYTHERM is not set | ||
1311 | # CONFIG_USB_PHIDGET is not set | ||
1312 | # CONFIG_USB_IDMOUSE is not set | ||
1313 | # CONFIG_USB_FTDI_ELAN is not set | ||
1314 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1315 | # CONFIG_USB_SISUSBVGA is not set | ||
1316 | # CONFIG_USB_LD is not set | ||
1317 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1318 | # CONFIG_USB_IOWARRIOR is not set | ||
1319 | # CONFIG_USB_TEST is not set | ||
1320 | |||
1321 | # | ||
1322 | # USB DSL modem support | ||
1323 | # | ||
1324 | # CONFIG_USB_ATM is not set | ||
1325 | |||
1326 | # | ||
1089 | # USB Gadget Support | 1327 | # USB Gadget Support |
1090 | # | 1328 | # |
1091 | # CONFIG_USB_GADGET is not set | 1329 | # CONFIG_USB_GADGET is not set |
1330 | # CONFIG_MMC is not set | ||
1331 | CONFIG_NEW_LEDS=y | ||
1332 | CONFIG_LEDS_CLASS=y | ||
1092 | 1333 | ||
1093 | # | 1334 | # |
1094 | # MMC/SD Card support | 1335 | # LED drivers |
1336 | # | ||
1337 | # CONFIG_LEDS_IXP4XX is not set | ||
1338 | CONFIG_LEDS_GPIO=y | ||
1339 | |||
1340 | # | ||
1341 | # LED Triggers | ||
1342 | # | ||
1343 | CONFIG_LEDS_TRIGGERS=y | ||
1344 | CONFIG_LEDS_TRIGGER_TIMER=y | ||
1345 | CONFIG_LEDS_TRIGGER_IDE_DISK=y | ||
1346 | CONFIG_LEDS_TRIGGER_HEARTBEAT=y | ||
1347 | CONFIG_RTC_LIB=y | ||
1348 | CONFIG_RTC_CLASS=y | ||
1349 | CONFIG_RTC_HCTOSYS=y | ||
1350 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1351 | # CONFIG_RTC_DEBUG is not set | ||
1352 | |||
1353 | # | ||
1354 | # RTC interfaces | ||
1355 | # | ||
1356 | CONFIG_RTC_INTF_SYSFS=y | ||
1357 | CONFIG_RTC_INTF_PROC=y | ||
1358 | CONFIG_RTC_INTF_DEV=y | ||
1359 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1360 | # CONFIG_RTC_DRV_TEST is not set | ||
1361 | |||
1362 | # | ||
1363 | # I2C RTC drivers | ||
1364 | # | ||
1365 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1366 | # CONFIG_RTC_DRV_DS1374 is not set | ||
1367 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1368 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
1369 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1370 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1371 | CONFIG_RTC_DRV_X1205=y | ||
1372 | CONFIG_RTC_DRV_PCF8563=y | ||
1373 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1374 | # CONFIG_RTC_DRV_M41T80 is not set | ||
1375 | |||
1376 | # | ||
1377 | # SPI RTC drivers | ||
1378 | # | ||
1379 | |||
1380 | # | ||
1381 | # Platform RTC drivers | ||
1382 | # | ||
1383 | # CONFIG_RTC_DRV_CMOS is not set | ||
1384 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1385 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1386 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1387 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1388 | # CONFIG_RTC_DRV_M48T59 is not set | ||
1389 | # CONFIG_RTC_DRV_V3020 is not set | ||
1390 | |||
1391 | # | ||
1392 | # on-CPU RTC drivers | ||
1095 | # | 1393 | # |
1096 | # CONFIG_MMC is not set | ||
1097 | 1394 | ||
1098 | # | 1395 | # |
1099 | # File systems | 1396 | # File systems |
@@ -1107,16 +1404,19 @@ CONFIG_EXT3_FS=y | |||
1107 | CONFIG_EXT3_FS_XATTR=y | 1404 | CONFIG_EXT3_FS_XATTR=y |
1108 | CONFIG_EXT3_FS_POSIX_ACL=y | 1405 | CONFIG_EXT3_FS_POSIX_ACL=y |
1109 | # CONFIG_EXT3_FS_SECURITY is not set | 1406 | # CONFIG_EXT3_FS_SECURITY is not set |
1407 | # CONFIG_EXT4DEV_FS is not set | ||
1110 | CONFIG_JBD=y | 1408 | CONFIG_JBD=y |
1111 | # CONFIG_JBD_DEBUG is not set | ||
1112 | CONFIG_FS_MBCACHE=y | 1409 | CONFIG_FS_MBCACHE=y |
1113 | # CONFIG_REISERFS_FS is not set | 1410 | # CONFIG_REISERFS_FS is not set |
1114 | # CONFIG_JFS_FS is not set | 1411 | # CONFIG_JFS_FS is not set |
1115 | CONFIG_FS_POSIX_ACL=y | 1412 | CONFIG_FS_POSIX_ACL=y |
1116 | # CONFIG_XFS_FS is not set | 1413 | # CONFIG_XFS_FS is not set |
1414 | # CONFIG_GFS2_FS is not set | ||
1415 | # CONFIG_OCFS2_FS is not set | ||
1117 | # CONFIG_MINIX_FS is not set | 1416 | # CONFIG_MINIX_FS is not set |
1118 | # CONFIG_ROMFS_FS is not set | 1417 | # CONFIG_ROMFS_FS is not set |
1119 | CONFIG_INOTIFY=y | 1418 | CONFIG_INOTIFY=y |
1419 | CONFIG_INOTIFY_USER=y | ||
1120 | # CONFIG_QUOTA is not set | 1420 | # CONFIG_QUOTA is not set |
1121 | CONFIG_DNOTIFY=y | 1421 | CONFIG_DNOTIFY=y |
1122 | # CONFIG_AUTOFS_FS is not set | 1422 | # CONFIG_AUTOFS_FS is not set |
@@ -1140,11 +1440,12 @@ CONFIG_DNOTIFY=y | |||
1140 | # Pseudo filesystems | 1440 | # Pseudo filesystems |
1141 | # | 1441 | # |
1142 | CONFIG_PROC_FS=y | 1442 | CONFIG_PROC_FS=y |
1443 | CONFIG_PROC_SYSCTL=y | ||
1143 | CONFIG_SYSFS=y | 1444 | CONFIG_SYSFS=y |
1144 | CONFIG_TMPFS=y | 1445 | CONFIG_TMPFS=y |
1446 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
1145 | # CONFIG_HUGETLB_PAGE is not set | 1447 | # CONFIG_HUGETLB_PAGE is not set |
1146 | CONFIG_RAMFS=y | 1448 | # CONFIG_CONFIGFS_FS is not set |
1147 | # CONFIG_RELAYFS_FS is not set | ||
1148 | 1449 | ||
1149 | # | 1450 | # |
1150 | # Miscellaneous filesystems | 1451 | # Miscellaneous filesystems |
@@ -1156,13 +1457,15 @@ CONFIG_RAMFS=y | |||
1156 | # CONFIG_BEFS_FS is not set | 1457 | # CONFIG_BEFS_FS is not set |
1157 | # CONFIG_BFS_FS is not set | 1458 | # CONFIG_BFS_FS is not set |
1158 | # CONFIG_EFS_FS is not set | 1459 | # CONFIG_EFS_FS is not set |
1159 | # CONFIG_JFFS_FS is not set | ||
1160 | CONFIG_JFFS2_FS=y | 1460 | CONFIG_JFFS2_FS=y |
1161 | CONFIG_JFFS2_FS_DEBUG=0 | 1461 | CONFIG_JFFS2_FS_DEBUG=0 |
1162 | CONFIG_JFFS2_FS_WRITEBUFFER=y | 1462 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
1463 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
1163 | # CONFIG_JFFS2_SUMMARY is not set | 1464 | # CONFIG_JFFS2_SUMMARY is not set |
1465 | # CONFIG_JFFS2_FS_XATTR is not set | ||
1164 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | 1466 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set |
1165 | CONFIG_JFFS2_ZLIB=y | 1467 | CONFIG_JFFS2_ZLIB=y |
1468 | # CONFIG_JFFS2_LZO is not set | ||
1166 | CONFIG_JFFS2_RTIME=y | 1469 | CONFIG_JFFS2_RTIME=y |
1167 | # CONFIG_JFFS2_RUBIN is not set | 1470 | # CONFIG_JFFS2_RUBIN is not set |
1168 | # CONFIG_CRAMFS is not set | 1471 | # CONFIG_CRAMFS is not set |
@@ -1171,10 +1474,7 @@ CONFIG_JFFS2_RTIME=y | |||
1171 | # CONFIG_QNX4FS_FS is not set | 1474 | # CONFIG_QNX4FS_FS is not set |
1172 | # CONFIG_SYSV_FS is not set | 1475 | # CONFIG_SYSV_FS is not set |
1173 | # CONFIG_UFS_FS is not set | 1476 | # CONFIG_UFS_FS is not set |
1174 | 1477 | CONFIG_NETWORK_FILESYSTEMS=y | |
1175 | # | ||
1176 | # Network File Systems | ||
1177 | # | ||
1178 | CONFIG_NFS_FS=y | 1478 | CONFIG_NFS_FS=y |
1179 | CONFIG_NFS_V3=y | 1479 | CONFIG_NFS_V3=y |
1180 | # CONFIG_NFS_V3_ACL is not set | 1480 | # CONFIG_NFS_V3_ACL is not set |
@@ -1186,6 +1486,7 @@ CONFIG_LOCKD=y | |||
1186 | CONFIG_LOCKD_V4=y | 1486 | CONFIG_LOCKD_V4=y |
1187 | CONFIG_NFS_COMMON=y | 1487 | CONFIG_NFS_COMMON=y |
1188 | CONFIG_SUNRPC=y | 1488 | CONFIG_SUNRPC=y |
1489 | # CONFIG_SUNRPC_BIND34 is not set | ||
1189 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1490 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1190 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1491 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1191 | # CONFIG_SMB_FS is not set | 1492 | # CONFIG_SMB_FS is not set |
@@ -1193,7 +1494,6 @@ CONFIG_SUNRPC=y | |||
1193 | # CONFIG_NCP_FS is not set | 1494 | # CONFIG_NCP_FS is not set |
1194 | # CONFIG_CODA_FS is not set | 1495 | # CONFIG_CODA_FS is not set |
1195 | # CONFIG_AFS_FS is not set | 1496 | # CONFIG_AFS_FS is not set |
1196 | # CONFIG_9P_FS is not set | ||
1197 | 1497 | ||
1198 | # | 1498 | # |
1199 | # Partition Types | 1499 | # Partition Types |
@@ -1213,37 +1513,53 @@ CONFIG_MSDOS_PARTITION=y | |||
1213 | # CONFIG_SGI_PARTITION is not set | 1513 | # CONFIG_SGI_PARTITION is not set |
1214 | # CONFIG_ULTRIX_PARTITION is not set | 1514 | # CONFIG_ULTRIX_PARTITION is not set |
1215 | # CONFIG_SUN_PARTITION is not set | 1515 | # CONFIG_SUN_PARTITION is not set |
1516 | # CONFIG_KARMA_PARTITION is not set | ||
1216 | # CONFIG_EFI_PARTITION is not set | 1517 | # CONFIG_EFI_PARTITION is not set |
1217 | 1518 | # CONFIG_SYSV68_PARTITION is not set | |
1218 | # | ||
1219 | # Native Language Support | ||
1220 | # | ||
1221 | # CONFIG_NLS is not set | 1519 | # CONFIG_NLS is not set |
1222 | 1520 | # CONFIG_DLM is not set | |
1223 | # | 1521 | CONFIG_INSTRUMENTATION=y |
1224 | # Profiling support | ||
1225 | # | ||
1226 | # CONFIG_PROFILING is not set | 1522 | # CONFIG_PROFILING is not set |
1523 | # CONFIG_MARKERS is not set | ||
1227 | 1524 | ||
1228 | # | 1525 | # |
1229 | # Kernel hacking | 1526 | # Kernel hacking |
1230 | # | 1527 | # |
1231 | # CONFIG_PRINTK_TIME is not set | 1528 | # CONFIG_PRINTK_TIME is not set |
1232 | CONFIG_DEBUG_KERNEL=y | 1529 | CONFIG_ENABLE_WARN_DEPRECATED=y |
1530 | CONFIG_ENABLE_MUST_CHECK=y | ||
1233 | CONFIG_MAGIC_SYSRQ=y | 1531 | CONFIG_MAGIC_SYSRQ=y |
1234 | CONFIG_LOG_BUF_SHIFT=14 | 1532 | # CONFIG_UNUSED_SYMBOLS is not set |
1533 | # CONFIG_DEBUG_FS is not set | ||
1534 | # CONFIG_HEADERS_CHECK is not set | ||
1535 | CONFIG_DEBUG_KERNEL=y | ||
1536 | # CONFIG_DEBUG_SHIRQ is not set | ||
1235 | CONFIG_DETECT_SOFTLOCKUP=y | 1537 | CONFIG_DETECT_SOFTLOCKUP=y |
1538 | CONFIG_SCHED_DEBUG=y | ||
1236 | # CONFIG_SCHEDSTATS is not set | 1539 | # CONFIG_SCHEDSTATS is not set |
1237 | # CONFIG_DEBUG_SLAB is not set | 1540 | # CONFIG_TIMER_STATS is not set |
1541 | # CONFIG_SLUB_DEBUG_ON is not set | ||
1542 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1543 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1238 | # CONFIG_DEBUG_SPINLOCK is not set | 1544 | # CONFIG_DEBUG_SPINLOCK is not set |
1545 | # CONFIG_DEBUG_MUTEXES is not set | ||
1546 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
1547 | # CONFIG_PROVE_LOCKING is not set | ||
1548 | # CONFIG_LOCK_STAT is not set | ||
1239 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1549 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1550 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1240 | # CONFIG_DEBUG_KOBJECT is not set | 1551 | # CONFIG_DEBUG_KOBJECT is not set |
1241 | CONFIG_DEBUG_BUGVERBOSE=y | 1552 | CONFIG_DEBUG_BUGVERBOSE=y |
1242 | # CONFIG_DEBUG_INFO is not set | 1553 | # CONFIG_DEBUG_INFO is not set |
1243 | # CONFIG_DEBUG_FS is not set | ||
1244 | # CONFIG_DEBUG_VM is not set | 1554 | # CONFIG_DEBUG_VM is not set |
1555 | # CONFIG_DEBUG_LIST is not set | ||
1556 | # CONFIG_DEBUG_SG is not set | ||
1245 | CONFIG_FRAME_POINTER=y | 1557 | CONFIG_FRAME_POINTER=y |
1558 | CONFIG_FORCED_INLINING=y | ||
1559 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1246 | # CONFIG_RCU_TORTURE_TEST is not set | 1560 | # CONFIG_RCU_TORTURE_TEST is not set |
1561 | # CONFIG_FAULT_INJECTION is not set | ||
1562 | # CONFIG_SAMPLES is not set | ||
1247 | # CONFIG_DEBUG_USER is not set | 1563 | # CONFIG_DEBUG_USER is not set |
1248 | CONFIG_DEBUG_ERRORS=y | 1564 | CONFIG_DEBUG_ERRORS=y |
1249 | CONFIG_DEBUG_LL=y | 1565 | CONFIG_DEBUG_LL=y |
@@ -1254,22 +1570,22 @@ CONFIG_DEBUG_LL=y | |||
1254 | # | 1570 | # |
1255 | # CONFIG_KEYS is not set | 1571 | # CONFIG_KEYS is not set |
1256 | # CONFIG_SECURITY is not set | 1572 | # CONFIG_SECURITY is not set |
1257 | 1573 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | |
1258 | # | ||
1259 | # Cryptographic options | ||
1260 | # | ||
1261 | # CONFIG_CRYPTO is not set | 1574 | # CONFIG_CRYPTO is not set |
1262 | 1575 | ||
1263 | # | 1576 | # |
1264 | # Hardware crypto devices | ||
1265 | # | ||
1266 | |||
1267 | # | ||
1268 | # Library routines | 1577 | # Library routines |
1269 | # | 1578 | # |
1579 | CONFIG_BITREVERSE=y | ||
1270 | # CONFIG_CRC_CCITT is not set | 1580 | # CONFIG_CRC_CCITT is not set |
1271 | # CONFIG_CRC16 is not set | 1581 | # CONFIG_CRC16 is not set |
1582 | # CONFIG_CRC_ITU_T is not set | ||
1272 | CONFIG_CRC32=y | 1583 | CONFIG_CRC32=y |
1584 | # CONFIG_CRC7 is not set | ||
1273 | # CONFIG_LIBCRC32C is not set | 1585 | # CONFIG_LIBCRC32C is not set |
1274 | CONFIG_ZLIB_INFLATE=y | 1586 | CONFIG_ZLIB_INFLATE=y |
1275 | CONFIG_ZLIB_DEFLATE=y | 1587 | CONFIG_ZLIB_DEFLATE=y |
1588 | CONFIG_PLIST=y | ||
1589 | CONFIG_HAS_IOMEM=y | ||
1590 | CONFIG_HAS_IOPORT=y | ||
1591 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index faa761921153..00d44c6fbfe9 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile | |||
@@ -20,6 +20,7 @@ obj-$(CONFIG_PCI) += bios32.o isa.o | |||
20 | obj-$(CONFIG_SMP) += smp.o | 20 | obj-$(CONFIG_SMP) += smp.o |
21 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o | 21 | obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel.o |
22 | obj-$(CONFIG_KPROBES) += kprobes.o kprobes-decode.o | 22 | obj-$(CONFIG_KPROBES) += kprobes.o kprobes-decode.o |
23 | obj-$(CONFIG_ATAGS_PROC) += atags.o | ||
23 | obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o | 24 | obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o |
24 | 25 | ||
25 | obj-$(CONFIG_CRUNCH) += crunch.o crunch-bits.o | 26 | obj-$(CONFIG_CRUNCH) += crunch.o crunch-bits.o |
diff --git a/arch/arm/kernel/atags.c b/arch/arm/kernel/atags.c new file mode 100644 index 000000000000..e2e934c38080 --- /dev/null +++ b/arch/arm/kernel/atags.c | |||
@@ -0,0 +1,86 @@ | |||
1 | #include <linux/slab.h> | ||
2 | #include <linux/kexec.h> | ||
3 | #include <linux/proc_fs.h> | ||
4 | #include <asm/setup.h> | ||
5 | #include <asm/types.h> | ||
6 | #include <asm/page.h> | ||
7 | |||
8 | struct buffer { | ||
9 | size_t size; | ||
10 | char *data; | ||
11 | }; | ||
12 | static struct buffer tags_buffer; | ||
13 | |||
14 | static int | ||
15 | read_buffer(char* page, char** start, off_t off, int count, | ||
16 | int* eof, void* data) | ||
17 | { | ||
18 | struct buffer *buffer = (struct buffer *)data; | ||
19 | |||
20 | if (off >= buffer->size) { | ||
21 | *eof = 1; | ||
22 | return 0; | ||
23 | } | ||
24 | |||
25 | count = min((int) (buffer->size - off), count); | ||
26 | |||
27 | memcpy(page, &buffer->data[off], count); | ||
28 | |||
29 | return count; | ||
30 | } | ||
31 | |||
32 | |||
33 | static int | ||
34 | create_proc_entries(void) | ||
35 | { | ||
36 | struct proc_dir_entry* tags_entry; | ||
37 | |||
38 | tags_entry = create_proc_read_entry("atags", 0400, &proc_root, read_buffer, &tags_buffer); | ||
39 | if (!tags_entry) | ||
40 | return -ENOMEM; | ||
41 | |||
42 | return 0; | ||
43 | } | ||
44 | |||
45 | |||
46 | static char __initdata atags_copy_buf[KEXEC_BOOT_PARAMS_SIZE]; | ||
47 | static char __initdata *atags_copy; | ||
48 | |||
49 | void __init save_atags(const struct tag *tags) | ||
50 | { | ||
51 | atags_copy = atags_copy_buf; | ||
52 | memcpy(atags_copy, tags, KEXEC_BOOT_PARAMS_SIZE); | ||
53 | } | ||
54 | |||
55 | |||
56 | static int __init init_atags_procfs(void) | ||
57 | { | ||
58 | struct tag *tag; | ||
59 | int error; | ||
60 | |||
61 | if (!atags_copy) { | ||
62 | printk(KERN_WARNING "Exporting ATAGs: No saved tags found\n"); | ||
63 | return -EIO; | ||
64 | } | ||
65 | |||
66 | for (tag = (struct tag *) atags_copy; tag->hdr.size; tag = tag_next(tag)) | ||
67 | ; | ||
68 | |||
69 | tags_buffer.size = ((char *) tag - atags_copy) + sizeof(tag->hdr); | ||
70 | tags_buffer.data = kmalloc(tags_buffer.size, GFP_KERNEL); | ||
71 | if (tags_buffer.data == NULL) | ||
72 | return -ENOMEM; | ||
73 | memcpy(tags_buffer.data, atags_copy, tags_buffer.size); | ||
74 | |||
75 | error = create_proc_entries(); | ||
76 | if (error) { | ||
77 | printk(KERN_ERR "Exporting ATAGs: not enough memory\n"); | ||
78 | kfree(tags_buffer.data); | ||
79 | tags_buffer.size = 0; | ||
80 | tags_buffer.data = NULL; | ||
81 | } | ||
82 | |||
83 | return error; | ||
84 | } | ||
85 | |||
86 | arch_initcall(init_atags_procfs); | ||
diff --git a/arch/arm/kernel/atags.h b/arch/arm/kernel/atags.h new file mode 100644 index 000000000000..e5f028d214a1 --- /dev/null +++ b/arch/arm/kernel/atags.h | |||
@@ -0,0 +1,5 @@ | |||
1 | #ifdef CONFIG_ATAGS_PROC | ||
2 | extern void save_atags(struct tag *tags); | ||
3 | #else | ||
4 | static inline void save_atags(struct tag *tags) { } | ||
5 | #endif | ||
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index cecf658e3625..283e14fff993 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S | |||
@@ -359,7 +359,7 @@ | |||
359 | CALL(sys_kexec_load) | 359 | CALL(sys_kexec_load) |
360 | CALL(sys_utimensat) | 360 | CALL(sys_utimensat) |
361 | CALL(sys_signalfd) | 361 | CALL(sys_signalfd) |
362 | /* 350 */ CALL(sys_timerfd) | 362 | /* 350 */ CALL(sys_ni_syscall) |
363 | CALL(sys_eventfd) | 363 | CALL(sys_eventfd) |
364 | CALL(sys_fallocate) | 364 | CALL(sys_fallocate) |
365 | #ifndef syscalls_counted | 365 | #ifndef syscalls_counted |
diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index 863c66454f2b..db8f54a3451f 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c | |||
@@ -21,6 +21,7 @@ extern void setup_mm_for_reboot(char mode); | |||
21 | extern unsigned long kexec_start_address; | 21 | extern unsigned long kexec_start_address; |
22 | extern unsigned long kexec_indirection_page; | 22 | extern unsigned long kexec_indirection_page; |
23 | extern unsigned long kexec_mach_type; | 23 | extern unsigned long kexec_mach_type; |
24 | extern unsigned long kexec_boot_atags; | ||
24 | 25 | ||
25 | /* | 26 | /* |
26 | * Provide a dummy crash_notes definition while crash dump arrives to arm. | 27 | * Provide a dummy crash_notes definition while crash dump arrives to arm. |
@@ -62,6 +63,7 @@ void machine_kexec(struct kimage *image) | |||
62 | kexec_start_address = image->start; | 63 | kexec_start_address = image->start; |
63 | kexec_indirection_page = page_list; | 64 | kexec_indirection_page = page_list; |
64 | kexec_mach_type = machine_arch_type; | 65 | kexec_mach_type = machine_arch_type; |
66 | kexec_boot_atags = image->start - KEXEC_ARM_ZIMAGE_OFFSET + KEXEC_ARM_ATAGS_OFFSET; | ||
65 | 67 | ||
66 | /* copy our kernel relocation code to the control code page */ | 68 | /* copy our kernel relocation code to the control code page */ |
67 | memcpy(reboot_code_buffer, | 69 | memcpy(reboot_code_buffer, |
diff --git a/arch/arm/kernel/relocate_kernel.S b/arch/arm/kernel/relocate_kernel.S index 062c111c572f..61930eb09029 100644 --- a/arch/arm/kernel/relocate_kernel.S +++ b/arch/arm/kernel/relocate_kernel.S | |||
@@ -7,23 +7,6 @@ | |||
7 | .globl relocate_new_kernel | 7 | .globl relocate_new_kernel |
8 | relocate_new_kernel: | 8 | relocate_new_kernel: |
9 | 9 | ||
10 | /* Move boot params back to where the kernel expects them */ | ||
11 | |||
12 | ldr r0,kexec_boot_params_address | ||
13 | teq r0,#0 | ||
14 | beq 8f | ||
15 | |||
16 | ldr r1,kexec_boot_params_copy | ||
17 | mov r6,#KEXEC_BOOT_PARAMS_SIZE/4 | ||
18 | 7: | ||
19 | ldr r5,[r1],#4 | ||
20 | str r5,[r0],#4 | ||
21 | subs r6,r6,#1 | ||
22 | bne 7b | ||
23 | |||
24 | 8: | ||
25 | /* Boot params moved, now go on with the kernel */ | ||
26 | |||
27 | ldr r0,kexec_indirection_page | 10 | ldr r0,kexec_indirection_page |
28 | ldr r1,kexec_start_address | 11 | ldr r1,kexec_start_address |
29 | 12 | ||
@@ -67,7 +50,7 @@ relocate_new_kernel: | |||
67 | mov lr,r1 | 50 | mov lr,r1 |
68 | mov r0,#0 | 51 | mov r0,#0 |
69 | ldr r1,kexec_mach_type | 52 | ldr r1,kexec_mach_type |
70 | ldr r2,kexec_boot_params_address | 53 | ldr r2,kexec_boot_atags |
71 | mov pc,lr | 54 | mov pc,lr |
72 | 55 | ||
73 | .globl kexec_start_address | 56 | .globl kexec_start_address |
@@ -82,14 +65,9 @@ kexec_indirection_page: | |||
82 | kexec_mach_type: | 65 | kexec_mach_type: |
83 | .long 0x0 | 66 | .long 0x0 |
84 | 67 | ||
85 | /* phy addr where new kernel will expect to find boot params */ | 68 | /* phy addr of the atags for the new kernel */ |
86 | .globl kexec_boot_params_address | 69 | .globl kexec_boot_atags |
87 | kexec_boot_params_address: | 70 | kexec_boot_atags: |
88 | .long 0x0 | ||
89 | |||
90 | /* phy addr where old kernel put a copy of orig boot params */ | ||
91 | .globl kexec_boot_params_copy | ||
92 | kexec_boot_params_copy: | ||
93 | .long 0x0 | 71 | .long 0x0 |
94 | 72 | ||
95 | relocate_new_kernel_end: | 73 | relocate_new_kernel_end: |
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index bf56eb337df1..d3941a7b0455 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
25 | #include <linux/smp.h> | 25 | #include <linux/smp.h> |
26 | #include <linux/fs.h> | 26 | #include <linux/fs.h> |
27 | #include <linux/kexec.h> | ||
28 | 27 | ||
29 | #include <asm/cpu.h> | 28 | #include <asm/cpu.h> |
30 | #include <asm/elf.h> | 29 | #include <asm/elf.h> |
@@ -39,6 +38,7 @@ | |||
39 | #include <asm/mach/time.h> | 38 | #include <asm/mach/time.h> |
40 | 39 | ||
41 | #include "compat.h" | 40 | #include "compat.h" |
41 | #include "atags.h" | ||
42 | 42 | ||
43 | #ifndef MEM_SIZE | 43 | #ifndef MEM_SIZE |
44 | #define MEM_SIZE (16*1024*1024) | 44 | #define MEM_SIZE (16*1024*1024) |
@@ -62,6 +62,7 @@ extern int root_mountflags; | |||
62 | extern void _stext, _text, _etext, __data_start, _edata, _end; | 62 | extern void _stext, _text, _etext, __data_start, _edata, _end; |
63 | 63 | ||
64 | unsigned int processor_id; | 64 | unsigned int processor_id; |
65 | EXPORT_SYMBOL(processor_id); | ||
65 | unsigned int __machine_arch_type; | 66 | unsigned int __machine_arch_type; |
66 | EXPORT_SYMBOL(__machine_arch_type); | 67 | EXPORT_SYMBOL(__machine_arch_type); |
67 | 68 | ||
@@ -784,23 +785,6 @@ static int __init customize_machine(void) | |||
784 | } | 785 | } |
785 | arch_initcall(customize_machine); | 786 | arch_initcall(customize_machine); |
786 | 787 | ||
787 | #ifdef CONFIG_KEXEC | ||
788 | |||
789 | /* Physical addr of where the boot params should be for this machine */ | ||
790 | extern unsigned long kexec_boot_params_address; | ||
791 | |||
792 | /* Physical addr of the buffer into which the boot params are copied */ | ||
793 | extern unsigned long kexec_boot_params_copy; | ||
794 | |||
795 | /* Pointer to the boot params buffer, for manipulation and display */ | ||
796 | unsigned long kexec_boot_params; | ||
797 | EXPORT_SYMBOL(kexec_boot_params); | ||
798 | |||
799 | /* The buffer itself - make sure it is sized correctly */ | ||
800 | static unsigned long kexec_boot_params_buf[(KEXEC_BOOT_PARAMS_SIZE + 3) / 4]; | ||
801 | |||
802 | #endif | ||
803 | |||
804 | void __init setup_arch(char **cmdline_p) | 788 | void __init setup_arch(char **cmdline_p) |
805 | { | 789 | { |
806 | struct tag *tags = (struct tag *)&init_tags; | 790 | struct tag *tags = (struct tag *)&init_tags; |
@@ -819,18 +803,6 @@ void __init setup_arch(char **cmdline_p) | |||
819 | else if (mdesc->boot_params) | 803 | else if (mdesc->boot_params) |
820 | tags = phys_to_virt(mdesc->boot_params); | 804 | tags = phys_to_virt(mdesc->boot_params); |
821 | 805 | ||
822 | #ifdef CONFIG_KEXEC | ||
823 | kexec_boot_params_copy = virt_to_phys(kexec_boot_params_buf); | ||
824 | kexec_boot_params = (unsigned long)kexec_boot_params_buf; | ||
825 | if (__atags_pointer) { | ||
826 | kexec_boot_params_address = __atags_pointer; | ||
827 | memcpy((void *)kexec_boot_params, tags, KEXEC_BOOT_PARAMS_SIZE); | ||
828 | } else if (mdesc->boot_params) { | ||
829 | kexec_boot_params_address = mdesc->boot_params; | ||
830 | memcpy((void *)kexec_boot_params, tags, KEXEC_BOOT_PARAMS_SIZE); | ||
831 | } | ||
832 | #endif | ||
833 | |||
834 | /* | 806 | /* |
835 | * If we have the old style parameters, convert them to | 807 | * If we have the old style parameters, convert them to |
836 | * a tag list. | 808 | * a tag list. |
@@ -846,6 +818,7 @@ void __init setup_arch(char **cmdline_p) | |||
846 | if (tags->hdr.tag == ATAG_CORE) { | 818 | if (tags->hdr.tag == ATAG_CORE) { |
847 | if (meminfo.nr_banks != 0) | 819 | if (meminfo.nr_banks != 0) |
848 | squash_mem_tags(tags); | 820 | squash_mem_tags(tags); |
821 | save_atags(tags); | ||
849 | parse_tags(tags); | 822 | parse_tags(tags); |
850 | } | 823 | } |
851 | 824 | ||
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index eafbb2b05eb8..eefae1de334c 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
@@ -150,7 +150,7 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
150 | secondary_data.pgdir = 0; | 150 | secondary_data.pgdir = 0; |
151 | 151 | ||
152 | *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0); | 152 | *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0); |
153 | pgd_free(pgd); | 153 | pgd_free(&init_mm, pgd); |
154 | 154 | ||
155 | if (ret) { | 155 | if (ret) { |
156 | printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu); | 156 | printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu); |
@@ -290,6 +290,11 @@ asmlinkage void __cpuinit secondary_start_kernel(void) | |||
290 | local_irq_enable(); | 290 | local_irq_enable(); |
291 | local_fiq_enable(); | 291 | local_fiq_enable(); |
292 | 292 | ||
293 | /* | ||
294 | * Setup local timer for this CPU. | ||
295 | */ | ||
296 | local_timer_setup(cpu); | ||
297 | |||
293 | calibrate_delay(); | 298 | calibrate_delay(); |
294 | 299 | ||
295 | smp_store_cpu_info(cpu); | 300 | smp_store_cpu_info(cpu); |
@@ -300,11 +305,6 @@ asmlinkage void __cpuinit secondary_start_kernel(void) | |||
300 | cpu_set(cpu, cpu_online_map); | 305 | cpu_set(cpu, cpu_online_map); |
301 | 306 | ||
302 | /* | 307 | /* |
303 | * Setup local timer for this CPU. | ||
304 | */ | ||
305 | local_timer_setup(cpu); | ||
306 | |||
307 | /* | ||
308 | * OK, it's off to the idle thread for us | 308 | * OK, it's off to the idle thread for us |
309 | */ | 309 | */ |
310 | cpu_idle(); | 310 | cpu_idle(); |
@@ -454,6 +454,27 @@ int smp_call_function(void (*func)(void *info), void *info, int retry, | |||
454 | } | 454 | } |
455 | EXPORT_SYMBOL_GPL(smp_call_function); | 455 | EXPORT_SYMBOL_GPL(smp_call_function); |
456 | 456 | ||
457 | int smp_call_function_single(int cpu, void (*func)(void *info), void *info, | ||
458 | int retry, int wait) | ||
459 | { | ||
460 | /* prevent preemption and reschedule on another processor */ | ||
461 | int current_cpu = get_cpu(); | ||
462 | int ret = 0; | ||
463 | |||
464 | if (cpu == current_cpu) { | ||
465 | local_irq_disable(); | ||
466 | func(info); | ||
467 | local_irq_enable(); | ||
468 | } else | ||
469 | ret = smp_call_function_on_cpu(func, info, retry, wait, | ||
470 | cpumask_of_cpu(cpu)); | ||
471 | |||
472 | put_cpu(); | ||
473 | |||
474 | return ret; | ||
475 | } | ||
476 | EXPORT_SYMBOL_GPL(smp_call_function_single); | ||
477 | |||
457 | void show_ipi_list(struct seq_file *p) | 478 | void show_ipi_list(struct seq_file *p) |
458 | { | 479 | { |
459 | unsigned int cpu; | 480 | unsigned int cpu; |
@@ -481,8 +502,7 @@ void show_local_irqs(struct seq_file *p) | |||
481 | static void ipi_timer(void) | 502 | static void ipi_timer(void) |
482 | { | 503 | { |
483 | irq_enter(); | 504 | irq_enter(); |
484 | profile_tick(CPU_PROFILING); | 505 | local_timer_interrupt(); |
485 | update_process_times(user_mode(get_irq_regs())); | ||
486 | irq_exit(); | 506 | irq_exit(); |
487 | } | 507 | } |
488 | 508 | ||
@@ -621,6 +641,11 @@ void smp_send_timer(void) | |||
621 | send_ipi_message(mask, IPI_TIMER); | 641 | send_ipi_message(mask, IPI_TIMER); |
622 | } | 642 | } |
623 | 643 | ||
644 | void smp_timer_broadcast(cpumask_t mask) | ||
645 | { | ||
646 | send_ipi_message(mask, IPI_TIMER); | ||
647 | } | ||
648 | |||
624 | void smp_send_stop(void) | 649 | void smp_send_stop(void) |
625 | { | 650 | { |
626 | cpumask_t mask = cpu_online_map; | 651 | cpumask_t mask = cpu_online_map; |
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 5b0422cdde76..074dcd5d9a7e 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig | |||
@@ -253,6 +253,36 @@ config AT91_TIMER_HZ | |||
253 | system clock (of at least several MHz), rounding is less of a | 253 | system clock (of at least several MHz), rounding is less of a |
254 | problem so it can be safer to use a decimal values like 100. | 254 | problem so it can be safer to use a decimal values like 100. |
255 | 255 | ||
256 | choice | ||
257 | prompt "Select a UART for early kernel messages" | ||
258 | |||
259 | config AT91_EARLY_DBGU | ||
260 | bool "DBGU" | ||
261 | |||
262 | config AT91_EARLY_USART0 | ||
263 | bool "USART0" | ||
264 | |||
265 | config AT91_EARLY_USART1 | ||
266 | bool "USART1" | ||
267 | |||
268 | config AT91_EARLY_USART2 | ||
269 | bool "USART2" | ||
270 | depends on ! ARCH_AT91X40 | ||
271 | |||
272 | config AT91_EARLY_USART3 | ||
273 | bool "USART3" | ||
274 | depends on (ARCH_AT91RM9200 || ARCH_AT91SAM9RL || ARCH_AT91SAM9260) | ||
275 | |||
276 | config AT91_EARLY_USART4 | ||
277 | bool "USART4" | ||
278 | depends on ARCH_AT91SAM9260 | ||
279 | |||
280 | config AT91_EARLY_USART5 | ||
281 | bool "USART5" | ||
282 | depends on ARCH_AT91SAM9260 | ||
283 | |||
284 | endchoice | ||
285 | |||
256 | endmenu | 286 | endmenu |
257 | 287 | ||
258 | endif | 288 | endif |
diff --git a/arch/arm/mach-at91/at91sam926x_time.c b/arch/arm/mach-at91/at91sam926x_time.c index 5c090c9442f5..e38d23770992 100644 --- a/arch/arm/mach-at91/at91sam926x_time.c +++ b/arch/arm/mach-at91/at91sam926x_time.c | |||
@@ -49,8 +49,6 @@ static irqreturn_t at91sam926x_timer_interrupt(int irq, void *dev_id) | |||
49 | volatile long nr_ticks; | 49 | volatile long nr_ticks; |
50 | 50 | ||
51 | if (at91_sys_read(AT91_PIT_SR) & AT91_PIT_PITS) { /* This is a shared interrupt */ | 51 | if (at91_sys_read(AT91_PIT_SR) & AT91_PIT_PITS) { /* This is a shared interrupt */ |
52 | write_seqlock(&xtime_lock); | ||
53 | |||
54 | /* Get number to ticks performed before interrupt and clear PIT interrupt */ | 52 | /* Get number to ticks performed before interrupt and clear PIT interrupt */ |
55 | nr_ticks = PIT_PICNT(at91_sys_read(AT91_PIT_PIVR)); | 53 | nr_ticks = PIT_PICNT(at91_sys_read(AT91_PIT_PIVR)); |
56 | do { | 54 | do { |
@@ -58,7 +56,6 @@ static irqreturn_t at91sam926x_timer_interrupt(int irq, void *dev_id) | |||
58 | nr_ticks--; | 56 | nr_ticks--; |
59 | } while (nr_ticks); | 57 | } while (nr_ticks); |
60 | 58 | ||
61 | write_sequnlock(&xtime_lock); | ||
62 | return IRQ_HANDLED; | 59 | return IRQ_HANDLED; |
63 | } else | 60 | } else |
64 | return IRQ_NONE; /* not handled */ | 61 | return IRQ_NONE; /* not handled */ |
diff --git a/arch/arm/mach-at91/generic.h b/arch/arm/mach-at91/generic.h index b5daf7f5e011..7b9ce7a336b0 100644 --- a/arch/arm/mach-at91/generic.h +++ b/arch/arm/mach-at91/generic.h | |||
@@ -47,6 +47,9 @@ extern void at91_irq_resume(void); | |||
47 | #define AT91RM9200_BGA 4 /* AT91RM9200 BGA package has 4 banks */ | 47 | #define AT91RM9200_BGA 4 /* AT91RM9200 BGA package has 4 banks */ |
48 | 48 | ||
49 | struct at91_gpio_bank { | 49 | struct at91_gpio_bank { |
50 | unsigned chipbase; /* bank's first GPIO number */ | ||
51 | void __iomem *regbase; /* base of register bank */ | ||
52 | struct at91_gpio_bank *next; /* bank sharing same IRQ/clock/... */ | ||
50 | unsigned short id; /* peripheral ID */ | 53 | unsigned short id; /* peripheral ID */ |
51 | unsigned long offset; /* offset from system peripheral base */ | 54 | unsigned long offset; /* offset from system peripheral base */ |
52 | struct clk *clock; /* associated clock */ | 55 | struct clk *clock; /* associated clock */ |
diff --git a/arch/arm/mach-at91/gpio.c b/arch/arm/mach-at91/gpio.c index 6aeddd68d8af..f629c2b5f0c5 100644 --- a/arch/arm/mach-at91/gpio.c +++ b/arch/arm/mach-at91/gpio.c | |||
@@ -33,12 +33,10 @@ static int gpio_banks; | |||
33 | 33 | ||
34 | static inline void __iomem *pin_to_controller(unsigned pin) | 34 | static inline void __iomem *pin_to_controller(unsigned pin) |
35 | { | 35 | { |
36 | void __iomem *sys_base = (void __iomem *) AT91_VA_BASE_SYS; | ||
37 | |||
38 | pin -= PIN_BASE; | 36 | pin -= PIN_BASE; |
39 | pin /= 32; | 37 | pin /= 32; |
40 | if (likely(pin < gpio_banks)) | 38 | if (likely(pin < gpio_banks)) |
41 | return sys_base + gpio[pin].offset; | 39 | return gpio[pin].regbase; |
42 | 40 | ||
43 | return NULL; | 41 | return NULL; |
44 | } | 42 | } |
@@ -294,11 +292,11 @@ void at91_gpio_suspend(void) | |||
294 | int i; | 292 | int i; |
295 | 293 | ||
296 | for (i = 0; i < gpio_banks; i++) { | 294 | for (i = 0; i < gpio_banks; i++) { |
297 | u32 pio = gpio[i].offset; | 295 | void __iomem *pio = gpio[i].regbase; |
298 | 296 | ||
299 | backups[i] = at91_sys_read(pio + PIO_IMR); | 297 | backups[i] = __raw_readl(pio + PIO_IMR); |
300 | at91_sys_write(pio + PIO_IDR, backups[i]); | 298 | __raw_writel(backups[i], pio + PIO_IDR); |
301 | at91_sys_write(pio + PIO_IER, wakeups[i]); | 299 | __raw_writel(wakeups[i], pio + PIO_IER); |
302 | 300 | ||
303 | if (!wakeups[i]) | 301 | if (!wakeups[i]) |
304 | clk_disable(gpio[i].clock); | 302 | clk_disable(gpio[i].clock); |
@@ -315,13 +313,13 @@ void at91_gpio_resume(void) | |||
315 | int i; | 313 | int i; |
316 | 314 | ||
317 | for (i = 0; i < gpio_banks; i++) { | 315 | for (i = 0; i < gpio_banks; i++) { |
318 | u32 pio = gpio[i].offset; | 316 | void __iomem *pio = gpio[i].regbase; |
319 | 317 | ||
320 | if (!wakeups[i]) | 318 | if (!wakeups[i]) |
321 | clk_enable(gpio[i].clock); | 319 | clk_enable(gpio[i].clock); |
322 | 320 | ||
323 | at91_sys_write(pio + PIO_IDR, wakeups[i]); | 321 | __raw_writel(wakeups[i], pio + PIO_IDR); |
324 | at91_sys_write(pio + PIO_IER, backups[i]); | 322 | __raw_writel(backups[i], pio + PIO_IER); |
325 | } | 323 | } |
326 | } | 324 | } |
327 | 325 | ||
@@ -361,7 +359,13 @@ static void gpio_irq_unmask(unsigned pin) | |||
361 | 359 | ||
362 | static int gpio_irq_type(unsigned pin, unsigned type) | 360 | static int gpio_irq_type(unsigned pin, unsigned type) |
363 | { | 361 | { |
364 | return (type == IRQT_BOTHEDGE) ? 0 : -EINVAL; | 362 | switch (type) { |
363 | case IRQ_TYPE_NONE: | ||
364 | case IRQ_TYPE_EDGE_BOTH: | ||
365 | return 0; | ||
366 | default: | ||
367 | return -EINVAL; | ||
368 | } | ||
365 | } | 369 | } |
366 | 370 | ||
367 | static struct irq_chip gpio_irqchip = { | 371 | static struct irq_chip gpio_irqchip = { |
@@ -376,20 +380,30 @@ static void gpio_irq_handler(unsigned irq, struct irq_desc *desc) | |||
376 | { | 380 | { |
377 | unsigned pin; | 381 | unsigned pin; |
378 | struct irq_desc *gpio; | 382 | struct irq_desc *gpio; |
383 | struct at91_gpio_bank *bank; | ||
379 | void __iomem *pio; | 384 | void __iomem *pio; |
380 | u32 isr; | 385 | u32 isr; |
381 | 386 | ||
382 | pio = get_irq_chip_data(irq); | 387 | bank = get_irq_chip_data(irq); |
388 | pio = bank->regbase; | ||
383 | 389 | ||
384 | /* temporarily mask (level sensitive) parent IRQ */ | 390 | /* temporarily mask (level sensitive) parent IRQ */ |
385 | desc->chip->ack(irq); | 391 | desc->chip->ack(irq); |
386 | for (;;) { | 392 | for (;;) { |
387 | /* reading ISR acks the pending (edge triggered) GPIO interrupt */ | 393 | /* Reading ISR acks pending (edge triggered) GPIO interrupts. |
394 | * When there none are pending, we're finished unless we need | ||
395 | * to process multiple banks (like ID_PIOCDE on sam9263). | ||
396 | */ | ||
388 | isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR); | 397 | isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR); |
389 | if (!isr) | 398 | if (!isr) { |
390 | break; | 399 | if (!bank->next) |
400 | break; | ||
401 | bank = bank->next; | ||
402 | pio = bank->regbase; | ||
403 | continue; | ||
404 | } | ||
391 | 405 | ||
392 | pin = (unsigned) get_irq_data(irq); | 406 | pin = bank->chipbase; |
393 | gpio = &irq_desc[pin]; | 407 | gpio = &irq_desc[pin]; |
394 | 408 | ||
395 | while (isr) { | 409 | while (isr) { |
@@ -481,24 +495,21 @@ postcore_initcall(at91_gpio_debugfs_init); | |||
481 | */ | 495 | */ |
482 | void __init at91_gpio_irq_setup(void) | 496 | void __init at91_gpio_irq_setup(void) |
483 | { | 497 | { |
484 | unsigned pioc, pin; | 498 | unsigned pioc, pin; |
499 | struct at91_gpio_bank *this, *prev; | ||
485 | 500 | ||
486 | for (pioc = 0, pin = PIN_BASE; | 501 | for (pioc = 0, pin = PIN_BASE, this = gpio, prev = NULL; |
487 | pioc < gpio_banks; | 502 | pioc++ < gpio_banks; |
488 | pioc++) { | 503 | prev = this, this++) { |
489 | void __iomem *controller; | 504 | unsigned id = this->id; |
490 | unsigned id = gpio[pioc].id; | ||
491 | unsigned i; | 505 | unsigned i; |
492 | 506 | ||
493 | clk_enable(gpio[pioc].clock); /* enable PIO controller's clock */ | 507 | /* enable PIO controller's clock */ |
494 | 508 | clk_enable(this->clock); | |
495 | controller = (void __iomem *) AT91_VA_BASE_SYS + gpio[pioc].offset; | ||
496 | __raw_writel(~0, controller + PIO_IDR); | ||
497 | 509 | ||
498 | set_irq_data(id, (void *) pin); | 510 | __raw_writel(~0, this->regbase + PIO_IDR); |
499 | set_irq_chip_data(id, controller); | ||
500 | 511 | ||
501 | for (i = 0; i < 32; i++, pin++) { | 512 | for (i = 0, pin = this->chipbase; i < 32; i++, pin++) { |
502 | /* | 513 | /* |
503 | * Can use the "simple" and not "edge" handler since it's | 514 | * Can use the "simple" and not "edge" handler since it's |
504 | * shorter, and the AIC handles interrupts sanely. | 515 | * shorter, and the AIC handles interrupts sanely. |
@@ -508,6 +519,14 @@ void __init at91_gpio_irq_setup(void) | |||
508 | set_irq_flags(pin, IRQF_VALID); | 519 | set_irq_flags(pin, IRQF_VALID); |
509 | } | 520 | } |
510 | 521 | ||
522 | /* The toplevel handler handles one bank of GPIOs, except | ||
523 | * AT91SAM9263_ID_PIOCDE handles three... PIOC is first in | ||
524 | * the list, so we only set up that handler. | ||
525 | */ | ||
526 | if (prev && prev->next == this) | ||
527 | continue; | ||
528 | |||
529 | set_irq_chip_data(id, this); | ||
511 | set_irq_chained_handler(id, gpio_irq_handler); | 530 | set_irq_chained_handler(id, gpio_irq_handler); |
512 | } | 531 | } |
513 | pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks); | 532 | pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks); |
@@ -518,8 +537,20 @@ void __init at91_gpio_irq_setup(void) | |||
518 | */ | 537 | */ |
519 | void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks) | 538 | void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks) |
520 | { | 539 | { |
540 | unsigned i; | ||
541 | struct at91_gpio_bank *last; | ||
542 | |||
521 | BUG_ON(nr_banks > MAX_GPIO_BANKS); | 543 | BUG_ON(nr_banks > MAX_GPIO_BANKS); |
522 | 544 | ||
523 | gpio = data; | 545 | gpio = data; |
524 | gpio_banks = nr_banks; | 546 | gpio_banks = nr_banks; |
547 | |||
548 | for (i = 0, last = NULL; i < nr_banks; i++, last = data, data++) { | ||
549 | data->chipbase = PIN_BASE + i * 32; | ||
550 | data->regbase = data->offset + (void __iomem *)AT91_VA_BASE_SYS; | ||
551 | |||
552 | /* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */ | ||
553 | if (last && last->id == data->id) | ||
554 | last->next = data; | ||
555 | } | ||
525 | } | 556 | } |
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index 4b120cc36135..a67defd50438 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c | |||
@@ -52,7 +52,7 @@ static suspend_state_t target_state; | |||
52 | /* | 52 | /* |
53 | * Called after processes are frozen, but before we shutdown devices. | 53 | * Called after processes are frozen, but before we shutdown devices. |
54 | */ | 54 | */ |
55 | static int at91_pm_set_target(suspend_state_t state) | 55 | static int at91_pm_begin(suspend_state_t state) |
56 | { | 56 | { |
57 | target_state = state; | 57 | target_state = state; |
58 | return 0; | 58 | return 0; |
@@ -202,11 +202,20 @@ error: | |||
202 | return 0; | 202 | return 0; |
203 | } | 203 | } |
204 | 204 | ||
205 | /* | ||
206 | * Called right prior to thawing processes. | ||
207 | */ | ||
208 | static void at91_pm_end(void) | ||
209 | { | ||
210 | target_state = PM_SUSPEND_ON; | ||
211 | } | ||
212 | |||
205 | 213 | ||
206 | static struct platform_suspend_ops at91_pm_ops ={ | 214 | static struct platform_suspend_ops at91_pm_ops ={ |
207 | .valid = at91_pm_valid_state, | 215 | .valid = at91_pm_valid_state, |
208 | .set_target = at91_pm_set_target, | 216 | .begin = at91_pm_begin, |
209 | .enter = at91_pm_enter, | 217 | .enter = at91_pm_enter, |
218 | .end = at91_pm_end, | ||
210 | }; | 219 | }; |
211 | 220 | ||
212 | static int __init at91_pm_init(void) | 221 | static int __init at91_pm_init(void) |
diff --git a/arch/arm/mach-ixp4xx/Kconfig b/arch/arm/mach-ixp4xx/Kconfig index 61b2dfcb89d6..e774447c0592 100644 --- a/arch/arm/mach-ixp4xx/Kconfig +++ b/arch/arm/mach-ixp4xx/Kconfig | |||
@@ -189,6 +189,20 @@ config IXP4XX_INDIRECT_PCI | |||
189 | need to use the indirect method instead. If you don't know | 189 | need to use the indirect method instead. If you don't know |
190 | what you need, leave this option unselected. | 190 | what you need, leave this option unselected. |
191 | 191 | ||
192 | config IXP4XX_QMGR | ||
193 | tristate "IXP4xx Queue Manager support" | ||
194 | help | ||
195 | This driver supports IXP4xx built-in hardware queue manager | ||
196 | and is automatically selected by Ethernet and HSS drivers. | ||
197 | |||
198 | config IXP4XX_NPE | ||
199 | tristate "IXP4xx Network Processor Engine support" | ||
200 | select HOTPLUG | ||
201 | select FW_LOADER | ||
202 | help | ||
203 | This driver supports IXP4xx built-in network coprocessors | ||
204 | and is automatically selected by Ethernet and HSS drivers. | ||
205 | |||
192 | endmenu | 206 | endmenu |
193 | 207 | ||
194 | endif | 208 | endif |
diff --git a/arch/arm/mach-ixp4xx/Makefile b/arch/arm/mach-ixp4xx/Makefile index 77e00ade5585..c1956882c48b 100644 --- a/arch/arm/mach-ixp4xx/Makefile +++ b/arch/arm/mach-ixp4xx/Makefile | |||
@@ -23,10 +23,12 @@ obj-$(CONFIG_MACH_AVILA) += avila-setup.o | |||
23 | obj-$(CONFIG_MACH_IXDPG425) += coyote-setup.o | 23 | obj-$(CONFIG_MACH_IXDPG425) += coyote-setup.o |
24 | obj-$(CONFIG_ARCH_ADI_COYOTE) += coyote-setup.o | 24 | obj-$(CONFIG_ARCH_ADI_COYOTE) += coyote-setup.o |
25 | obj-$(CONFIG_MACH_GTWX5715) += gtwx5715-setup.o | 25 | obj-$(CONFIG_MACH_GTWX5715) += gtwx5715-setup.o |
26 | obj-$(CONFIG_MACH_NSLU2) += nslu2-setup.o nslu2-power.o | 26 | obj-$(CONFIG_MACH_NSLU2) += nslu2-setup.o |
27 | obj-$(CONFIG_MACH_NAS100D) += nas100d-setup.o nas100d-power.o | 27 | obj-$(CONFIG_MACH_NAS100D) += nas100d-setup.o |
28 | obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o dsmg600-power.o | 28 | obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o |
29 | obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o | 29 | obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o |
30 | obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o | 30 | obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o |
31 | 31 | ||
32 | obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o | 32 | obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o |
33 | obj-$(CONFIG_IXP4XX_QMGR) += ixp4xx_qmgr.o | ||
34 | obj-$(CONFIG_IXP4XX_NPE) += ixp4xx_npe.o | ||
diff --git a/arch/arm/mach-ixp4xx/dsmg600-power.c b/arch/arm/mach-ixp4xx/dsmg600-power.c deleted file mode 100644 index 34717872d076..000000000000 --- a/arch/arm/mach-ixp4xx/dsmg600-power.c +++ /dev/null | |||
@@ -1,125 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-ixp4xx/dsmg600-power.c | ||
3 | * | ||
4 | * DSM-G600 Power/Reset driver | ||
5 | * Author: Michael Westerhof <mwester@dls.net> | ||
6 | * | ||
7 | * Based on nslu2-power.c | ||
8 | * Copyright (C) 2005 Tower Technologies | ||
9 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
10 | * | ||
11 | * which was based on nslu2-io.c | ||
12 | * Copyright (C) 2004 Karen Spearel | ||
13 | * | ||
14 | * Maintainers: http://www.nslu2-linux.org/ | ||
15 | * | ||
16 | * This program is free software; you can redistribute it and/or modify | ||
17 | * it under the terms of the GNU General Public License version 2 as | ||
18 | * published by the Free Software Foundation. | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/reboot.h> | ||
24 | #include <linux/interrupt.h> | ||
25 | #include <linux/irq.h> | ||
26 | #include <linux/jiffies.h> | ||
27 | #include <linux/timer.h> | ||
28 | |||
29 | #include <asm/mach-types.h> | ||
30 | |||
31 | extern void ctrl_alt_del(void); | ||
32 | |||
33 | /* This is used to make sure the power-button pusher is serious. The button | ||
34 | * must be held until the value of this counter reaches zero. | ||
35 | */ | ||
36 | static volatile int power_button_countdown; | ||
37 | |||
38 | /* Must hold the button down for at least this many counts to be processed */ | ||
39 | #define PBUTTON_HOLDDOWN_COUNT 4 /* 2 secs */ | ||
40 | |||
41 | static void dsmg600_power_handler(unsigned long data); | ||
42 | static DEFINE_TIMER(dsmg600_power_timer, dsmg600_power_handler, 0, 0); | ||
43 | |||
44 | static void dsmg600_power_handler(unsigned long data) | ||
45 | { | ||
46 | /* This routine is called twice per second to check the | ||
47 | * state of the power button. | ||
48 | */ | ||
49 | |||
50 | if (*IXP4XX_GPIO_GPINR & DSMG600_PB_BM) { | ||
51 | |||
52 | /* IO Pin is 1 (button pushed) */ | ||
53 | if (power_button_countdown == 0) { | ||
54 | /* Signal init to do the ctrlaltdel action, this will bypass | ||
55 | * init if it hasn't started and do a kernel_restart. | ||
56 | */ | ||
57 | ctrl_alt_del(); | ||
58 | |||
59 | /* Change the state of the power LED to "blink" */ | ||
60 | gpio_line_set(DSMG600_LED_PWR_GPIO, IXP4XX_GPIO_LOW); | ||
61 | } | ||
62 | power_button_countdown--; | ||
63 | |||
64 | } else { | ||
65 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
66 | } | ||
67 | |||
68 | mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500)); | ||
69 | } | ||
70 | |||
71 | static irqreturn_t dsmg600_reset_handler(int irq, void *dev_id) | ||
72 | { | ||
73 | /* This is the paper-clip reset, it shuts the machine down directly. */ | ||
74 | machine_power_off(); | ||
75 | |||
76 | return IRQ_HANDLED; | ||
77 | } | ||
78 | |||
79 | static int __init dsmg600_power_init(void) | ||
80 | { | ||
81 | if (!(machine_is_dsmg600())) | ||
82 | return 0; | ||
83 | |||
84 | if (request_irq(DSMG600_RB_IRQ, &dsmg600_reset_handler, | ||
85 | IRQF_DISABLED | IRQF_TRIGGER_LOW, "DSM-G600 reset button", | ||
86 | NULL) < 0) { | ||
87 | |||
88 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
89 | DSMG600_RB_IRQ); | ||
90 | |||
91 | return -EIO; | ||
92 | } | ||
93 | |||
94 | /* The power button on the D-Link DSM-G600 is on GPIO 15, but | ||
95 | * it cannot handle interrupts on that GPIO line. So we'll | ||
96 | * have to poll it with a kernel timer. | ||
97 | */ | ||
98 | |||
99 | /* Make sure that the power button GPIO is set up as an input */ | ||
100 | gpio_line_config(DSMG600_PB_GPIO, IXP4XX_GPIO_IN); | ||
101 | |||
102 | /* Set the initial value for the power button IRQ handler */ | ||
103 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
104 | |||
105 | mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500)); | ||
106 | |||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | static void __exit dsmg600_power_exit(void) | ||
111 | { | ||
112 | if (!(machine_is_dsmg600())) | ||
113 | return; | ||
114 | |||
115 | del_timer_sync(&dsmg600_power_timer); | ||
116 | |||
117 | free_irq(DSMG600_RB_IRQ, NULL); | ||
118 | } | ||
119 | |||
120 | module_init(dsmg600_power_init); | ||
121 | module_exit(dsmg600_power_exit); | ||
122 | |||
123 | MODULE_AUTHOR("Michael Westerhof <mwester@dls.net>"); | ||
124 | MODULE_DESCRIPTION("DSM-G600 Power/Reset driver"); | ||
125 | MODULE_LICENSE("GPL"); | ||
diff --git a/arch/arm/mach-ixp4xx/dsmg600-setup.c b/arch/arm/mach-ixp4xx/dsmg600-setup.c index c473d408aa7c..688659668bdf 100644 --- a/arch/arm/mach-ixp4xx/dsmg600-setup.c +++ b/arch/arm/mach-ixp4xx/dsmg600-setup.c | |||
@@ -1,25 +1,37 @@ | |||
1 | /* | 1 | /* |
2 | * DSM-G600 board-setup | 2 | * DSM-G600 board-setup |
3 | * | 3 | * |
4 | * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au> | ||
4 | * Copyright (C) 2006 Tower Technologies | 5 | * Copyright (C) 2006 Tower Technologies |
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | 6 | * |
7 | * based ixdp425-setup.c: | 7 | * based on ixdp425-setup.c: |
8 | * Copyright (C) 2003-2004 MontaVista Software, Inc. | 8 | * Copyright (C) 2003-2004 MontaVista Software, Inc. |
9 | * based on nslu2-power.c: | ||
10 | * Copyright (C) 2005 Tower Technologies | ||
11 | * based on nslu2-io.c: | ||
12 | * Copyright (C) 2004 Karen Spearel | ||
9 | * | 13 | * |
10 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 14 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
15 | * Author: Michael Westerhof <mwester@dls.net> | ||
16 | * Author: Rod Whitby <rod@whitby.id.au> | ||
11 | * Maintainers: http://www.nslu2-linux.org/ | 17 | * Maintainers: http://www.nslu2-linux.org/ |
12 | */ | 18 | */ |
13 | 19 | ||
14 | #include <linux/kernel.h> | 20 | #include <linux/irq.h> |
21 | #include <linux/jiffies.h> | ||
22 | #include <linux/timer.h> | ||
15 | #include <linux/serial.h> | 23 | #include <linux/serial.h> |
16 | #include <linux/serial_8250.h> | 24 | #include <linux/serial_8250.h> |
25 | #include <linux/leds.h> | ||
26 | #include <linux/reboot.h> | ||
27 | #include <linux/i2c.h> | ||
17 | #include <linux/i2c-gpio.h> | 28 | #include <linux/i2c-gpio.h> |
18 | 29 | ||
19 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
20 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
21 | #include <asm/mach/flash.h> | 32 | #include <asm/mach/flash.h> |
22 | #include <asm/mach/time.h> | 33 | #include <asm/mach/time.h> |
34 | #include <asm/gpio.h> | ||
23 | 35 | ||
24 | static struct flash_platform_data dsmg600_flash_data = { | 36 | static struct flash_platform_data dsmg600_flash_data = { |
25 | .map_name = "cfi_probe", | 37 | .map_name = "cfi_probe", |
@@ -51,29 +63,34 @@ static struct platform_device dsmg600_i2c_gpio = { | |||
51 | }, | 63 | }, |
52 | }; | 64 | }; |
53 | 65 | ||
54 | #ifdef CONFIG_LEDS_CLASS | 66 | static struct i2c_board_info __initdata dsmg600_i2c_board_info [] = { |
55 | static struct resource dsmg600_led_resources[] = { | 67 | { |
68 | I2C_BOARD_INFO("rtc-pcf8563", 0x51), | ||
69 | }, | ||
70 | }; | ||
71 | |||
72 | static struct gpio_led dsmg600_led_pins[] = { | ||
56 | { | 73 | { |
57 | .name = "power", | 74 | .name = "power", |
58 | .start = DSMG600_LED_PWR_GPIO, | 75 | .gpio = DSMG600_LED_PWR_GPIO, |
59 | .end = DSMG600_LED_PWR_GPIO, | ||
60 | .flags = IXP4XX_GPIO_HIGH, | ||
61 | }, | 76 | }, |
62 | { | 77 | { |
63 | .name = "wlan", | 78 | .name = "wlan", |
64 | .start = DSMG600_LED_WLAN_GPIO, | 79 | .gpio = DSMG600_LED_WLAN_GPIO, |
65 | .end = DSMG600_LED_WLAN_GPIO, | 80 | .active_low = true, |
66 | .flags = IXP4XX_GPIO_LOW, | ||
67 | }, | 81 | }, |
68 | }; | 82 | }; |
69 | 83 | ||
84 | static struct gpio_led_platform_data dsmg600_led_data = { | ||
85 | .num_leds = ARRAY_SIZE(dsmg600_led_pins), | ||
86 | .leds = dsmg600_led_pins, | ||
87 | }; | ||
88 | |||
70 | static struct platform_device dsmg600_leds = { | 89 | static struct platform_device dsmg600_leds = { |
71 | .name = "IXP4XX-GPIO-LED", | 90 | .name = "leds-gpio", |
72 | .id = -1, | 91 | .id = -1, |
73 | .num_resources = ARRAY_SIZE(dsmg600_led_resources), | 92 | .dev.platform_data = &dsmg600_led_data, |
74 | .resource = dsmg600_led_resources, | ||
75 | }; | 93 | }; |
76 | #endif | ||
77 | 94 | ||
78 | static struct resource dsmg600_uart_resources[] = { | 95 | static struct resource dsmg600_uart_resources[] = { |
79 | { | 96 | { |
@@ -121,6 +138,7 @@ static struct platform_device dsmg600_uart = { | |||
121 | static struct platform_device *dsmg600_devices[] __initdata = { | 138 | static struct platform_device *dsmg600_devices[] __initdata = { |
122 | &dsmg600_i2c_gpio, | 139 | &dsmg600_i2c_gpio, |
123 | &dsmg600_flash, | 140 | &dsmg600_flash, |
141 | &dsmg600_leds, | ||
124 | }; | 142 | }; |
125 | 143 | ||
126 | static void dsmg600_power_off(void) | 144 | static void dsmg600_power_off(void) |
@@ -132,6 +150,57 @@ static void dsmg600_power_off(void) | |||
132 | gpio_line_set(DSMG600_PO_GPIO, IXP4XX_GPIO_HIGH); | 150 | gpio_line_set(DSMG600_PO_GPIO, IXP4XX_GPIO_HIGH); |
133 | } | 151 | } |
134 | 152 | ||
153 | /* This is used to make sure the power-button pusher is serious. The button | ||
154 | * must be held until the value of this counter reaches zero. | ||
155 | */ | ||
156 | static int power_button_countdown; | ||
157 | |||
158 | /* Must hold the button down for at least this many counts to be processed */ | ||
159 | #define PBUTTON_HOLDDOWN_COUNT 4 /* 2 secs */ | ||
160 | |||
161 | static void dsmg600_power_handler(unsigned long data); | ||
162 | static DEFINE_TIMER(dsmg600_power_timer, dsmg600_power_handler, 0, 0); | ||
163 | |||
164 | static void dsmg600_power_handler(unsigned long data) | ||
165 | { | ||
166 | /* This routine is called twice per second to check the | ||
167 | * state of the power button. | ||
168 | */ | ||
169 | |||
170 | if (gpio_get_value(DSMG600_PB_GPIO)) { | ||
171 | |||
172 | /* IO Pin is 1 (button pushed) */ | ||
173 | if (power_button_countdown > 0) | ||
174 | power_button_countdown--; | ||
175 | |||
176 | } else { | ||
177 | |||
178 | /* Done on button release, to allow for auto-power-on mods. */ | ||
179 | if (power_button_countdown == 0) { | ||
180 | /* Signal init to do the ctrlaltdel action, | ||
181 | * this will bypass init if it hasn't started | ||
182 | * and do a kernel_restart. | ||
183 | */ | ||
184 | ctrl_alt_del(); | ||
185 | |||
186 | /* Change the state of the power LED to "blink" */ | ||
187 | gpio_line_set(DSMG600_LED_PWR_GPIO, IXP4XX_GPIO_LOW); | ||
188 | } else { | ||
189 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
190 | } | ||
191 | } | ||
192 | |||
193 | mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500)); | ||
194 | } | ||
195 | |||
196 | static irqreturn_t dsmg600_reset_handler(int irq, void *dev_id) | ||
197 | { | ||
198 | /* This is the paper-clip reset, it shuts the machine down directly. */ | ||
199 | machine_power_off(); | ||
200 | |||
201 | return IRQ_HANDLED; | ||
202 | } | ||
203 | |||
135 | static void __init dsmg600_timer_init(void) | 204 | static void __init dsmg600_timer_init(void) |
136 | { | 205 | { |
137 | /* The xtal on this machine is non-standard. */ | 206 | /* The xtal on this machine is non-standard. */ |
@@ -156,7 +225,8 @@ static void __init dsmg600_init(void) | |||
156 | dsmg600_flash_resource.end = | 225 | dsmg600_flash_resource.end = |
157 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; | 226 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; |
158 | 227 | ||
159 | pm_power_off = dsmg600_power_off; | 228 | i2c_register_board_info(0, dsmg600_i2c_board_info, |
229 | ARRAY_SIZE(dsmg600_i2c_board_info)); | ||
160 | 230 | ||
161 | /* The UART is required on the DSM-G600 (Redboot cannot use the | 231 | /* The UART is required on the DSM-G600 (Redboot cannot use the |
162 | * NIC) -- do it here so that it does *not* get removed if | 232 | * NIC) -- do it here so that it does *not* get removed if |
@@ -166,10 +236,28 @@ static void __init dsmg600_init(void) | |||
166 | 236 | ||
167 | platform_add_devices(dsmg600_devices, ARRAY_SIZE(dsmg600_devices)); | 237 | platform_add_devices(dsmg600_devices, ARRAY_SIZE(dsmg600_devices)); |
168 | 238 | ||
169 | #ifdef CONFIG_LEDS_CLASS | 239 | pm_power_off = dsmg600_power_off; |
170 | /* We don't care whether or not this works. */ | 240 | |
171 | (void)platform_device_register(&dsmg600_leds); | 241 | if (request_irq(gpio_to_irq(DSMG600_RB_GPIO), &dsmg600_reset_handler, |
172 | #endif | 242 | IRQF_DISABLED | IRQF_TRIGGER_LOW, |
243 | "DSM-G600 reset button", NULL) < 0) { | ||
244 | |||
245 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
246 | gpio_to_irq(DSMG600_RB_GPIO)); | ||
247 | } | ||
248 | |||
249 | /* The power button on the D-Link DSM-G600 is on GPIO 15, but | ||
250 | * it cannot handle interrupts on that GPIO line. So we'll | ||
251 | * have to poll it with a kernel timer. | ||
252 | */ | ||
253 | |||
254 | /* Make sure that the power button GPIO is set up as an input */ | ||
255 | gpio_line_config(DSMG600_PB_GPIO, IXP4XX_GPIO_IN); | ||
256 | |||
257 | /* Set the initial value for the power button IRQ handler */ | ||
258 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
259 | |||
260 | mod_timer(&dsmg600_power_timer, jiffies + msecs_to_jiffies(500)); | ||
173 | } | 261 | } |
174 | 262 | ||
175 | MACHINE_START(DSMG600, "D-Link DSM-G600 RevA") | 263 | MACHINE_START(DSMG600, "D-Link DSM-G600 RevA") |
diff --git a/arch/arm/mach-ixp4xx/ixdp425-setup.c b/arch/arm/mach-ixp4xx/ixdp425-setup.c index e89070da28bf..44584afb34a3 100644 --- a/arch/arm/mach-ixp4xx/ixdp425-setup.c +++ b/arch/arm/mach-ixp4xx/ixdp425-setup.c | |||
@@ -177,6 +177,31 @@ static struct platform_device ixdp425_uart = { | |||
177 | .resource = ixdp425_uart_resources | 177 | .resource = ixdp425_uart_resources |
178 | }; | 178 | }; |
179 | 179 | ||
180 | /* Built-in 10/100 Ethernet MAC interfaces */ | ||
181 | static struct eth_plat_info ixdp425_plat_eth[] = { | ||
182 | { | ||
183 | .phy = 0, | ||
184 | .rxq = 3, | ||
185 | .txreadyq = 20, | ||
186 | }, { | ||
187 | .phy = 1, | ||
188 | .rxq = 4, | ||
189 | .txreadyq = 21, | ||
190 | } | ||
191 | }; | ||
192 | |||
193 | static struct platform_device ixdp425_eth[] = { | ||
194 | { | ||
195 | .name = "ixp4xx_eth", | ||
196 | .id = IXP4XX_ETH_NPEB, | ||
197 | .dev.platform_data = ixdp425_plat_eth, | ||
198 | }, { | ||
199 | .name = "ixp4xx_eth", | ||
200 | .id = IXP4XX_ETH_NPEC, | ||
201 | .dev.platform_data = ixdp425_plat_eth + 1, | ||
202 | } | ||
203 | }; | ||
204 | |||
180 | static struct platform_device *ixdp425_devices[] __initdata = { | 205 | static struct platform_device *ixdp425_devices[] __initdata = { |
181 | &ixdp425_i2c_gpio, | 206 | &ixdp425_i2c_gpio, |
182 | &ixdp425_flash, | 207 | &ixdp425_flash, |
@@ -184,7 +209,9 @@ static struct platform_device *ixdp425_devices[] __initdata = { | |||
184 | defined(CONFIG_MTD_NAND_PLATFORM_MODULE) | 209 | defined(CONFIG_MTD_NAND_PLATFORM_MODULE) |
185 | &ixdp425_flash_nand, | 210 | &ixdp425_flash_nand, |
186 | #endif | 211 | #endif |
187 | &ixdp425_uart | 212 | &ixdp425_uart, |
213 | &ixdp425_eth[0], | ||
214 | &ixdp425_eth[1], | ||
188 | }; | 215 | }; |
189 | 216 | ||
190 | static void __init ixdp425_init(void) | 217 | static void __init ixdp425_init(void) |
diff --git a/arch/arm/mach-ixp4xx/ixp4xx_npe.c b/arch/arm/mach-ixp4xx/ixp4xx_npe.c new file mode 100644 index 000000000000..83c137ec582c --- /dev/null +++ b/arch/arm/mach-ixp4xx/ixp4xx_npe.c | |||
@@ -0,0 +1,741 @@ | |||
1 | /* | ||
2 | * Intel IXP4xx Network Processor Engine driver for Linux | ||
3 | * | ||
4 | * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of version 2 of the GNU General Public License | ||
8 | * as published by the Free Software Foundation. | ||
9 | * | ||
10 | * The code is based on publicly available information: | ||
11 | * - Intel IXP4xx Developer's Manual and other e-papers | ||
12 | * - Intel IXP400 Access Library Software (BSD license) | ||
13 | * - previous works by Christian Hohnstaedt <chohnstaedt@innominate.com> | ||
14 | * Thanks, Christian. | ||
15 | */ | ||
16 | |||
17 | #include <linux/delay.h> | ||
18 | #include <linux/dma-mapping.h> | ||
19 | #include <linux/firmware.h> | ||
20 | #include <linux/io.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/slab.h> | ||
24 | #include <asm/arch/npe.h> | ||
25 | |||
26 | #define DEBUG_MSG 0 | ||
27 | #define DEBUG_FW 0 | ||
28 | |||
29 | #define NPE_COUNT 3 | ||
30 | #define MAX_RETRIES 1000 /* microseconds */ | ||
31 | #define NPE_42X_DATA_SIZE 0x800 /* in dwords */ | ||
32 | #define NPE_46X_DATA_SIZE 0x1000 | ||
33 | #define NPE_A_42X_INSTR_SIZE 0x1000 | ||
34 | #define NPE_B_AND_C_42X_INSTR_SIZE 0x800 | ||
35 | #define NPE_46X_INSTR_SIZE 0x1000 | ||
36 | #define REGS_SIZE 0x1000 | ||
37 | |||
38 | #define NPE_PHYS_REG 32 | ||
39 | |||
40 | #define FW_MAGIC 0xFEEDF00D | ||
41 | #define FW_BLOCK_TYPE_INSTR 0x0 | ||
42 | #define FW_BLOCK_TYPE_DATA 0x1 | ||
43 | #define FW_BLOCK_TYPE_EOF 0xF | ||
44 | |||
45 | /* NPE exec status (read) and command (write) */ | ||
46 | #define CMD_NPE_STEP 0x01 | ||
47 | #define CMD_NPE_START 0x02 | ||
48 | #define CMD_NPE_STOP 0x03 | ||
49 | #define CMD_NPE_CLR_PIPE 0x04 | ||
50 | #define CMD_CLR_PROFILE_CNT 0x0C | ||
51 | #define CMD_RD_INS_MEM 0x10 /* instruction memory */ | ||
52 | #define CMD_WR_INS_MEM 0x11 | ||
53 | #define CMD_RD_DATA_MEM 0x12 /* data memory */ | ||
54 | #define CMD_WR_DATA_MEM 0x13 | ||
55 | #define CMD_RD_ECS_REG 0x14 /* exec access register */ | ||
56 | #define CMD_WR_ECS_REG 0x15 | ||
57 | |||
58 | #define STAT_RUN 0x80000000 | ||
59 | #define STAT_STOP 0x40000000 | ||
60 | #define STAT_CLEAR 0x20000000 | ||
61 | #define STAT_ECS_K 0x00800000 /* pipeline clean */ | ||
62 | |||
63 | #define NPE_STEVT 0x1B | ||
64 | #define NPE_STARTPC 0x1C | ||
65 | #define NPE_REGMAP 0x1E | ||
66 | #define NPE_CINDEX 0x1F | ||
67 | |||
68 | #define INSTR_WR_REG_SHORT 0x0000C000 | ||
69 | #define INSTR_WR_REG_BYTE 0x00004000 | ||
70 | #define INSTR_RD_FIFO 0x0F888220 | ||
71 | #define INSTR_RESET_MBOX 0x0FAC8210 | ||
72 | |||
73 | #define ECS_BG_CTXT_REG_0 0x00 /* Background Executing Context */ | ||
74 | #define ECS_BG_CTXT_REG_1 0x01 /* Stack level */ | ||
75 | #define ECS_BG_CTXT_REG_2 0x02 | ||
76 | #define ECS_PRI_1_CTXT_REG_0 0x04 /* Priority 1 Executing Context */ | ||
77 | #define ECS_PRI_1_CTXT_REG_1 0x05 /* Stack level */ | ||
78 | #define ECS_PRI_1_CTXT_REG_2 0x06 | ||
79 | #define ECS_PRI_2_CTXT_REG_0 0x08 /* Priority 2 Executing Context */ | ||
80 | #define ECS_PRI_2_CTXT_REG_1 0x09 /* Stack level */ | ||
81 | #define ECS_PRI_2_CTXT_REG_2 0x0A | ||
82 | #define ECS_DBG_CTXT_REG_0 0x0C /* Debug Executing Context */ | ||
83 | #define ECS_DBG_CTXT_REG_1 0x0D /* Stack level */ | ||
84 | #define ECS_DBG_CTXT_REG_2 0x0E | ||
85 | #define ECS_INSTRUCT_REG 0x11 /* NPE Instruction Register */ | ||
86 | |||
87 | #define ECS_REG_0_ACTIVE 0x80000000 /* all levels */ | ||
88 | #define ECS_REG_0_NEXTPC_MASK 0x1FFF0000 /* BG/PRI1/PRI2 levels */ | ||
89 | #define ECS_REG_0_LDUR_BITS 8 | ||
90 | #define ECS_REG_0_LDUR_MASK 0x00000700 /* all levels */ | ||
91 | #define ECS_REG_1_CCTXT_BITS 16 | ||
92 | #define ECS_REG_1_CCTXT_MASK 0x000F0000 /* all levels */ | ||
93 | #define ECS_REG_1_SELCTXT_BITS 0 | ||
94 | #define ECS_REG_1_SELCTXT_MASK 0x0000000F /* all levels */ | ||
95 | #define ECS_DBG_REG_2_IF 0x00100000 /* debug level */ | ||
96 | #define ECS_DBG_REG_2_IE 0x00080000 /* debug level */ | ||
97 | |||
98 | /* NPE watchpoint_fifo register bit */ | ||
99 | #define WFIFO_VALID 0x80000000 | ||
100 | |||
101 | /* NPE messaging_status register bit definitions */ | ||
102 | #define MSGSTAT_OFNE 0x00010000 /* OutFifoNotEmpty */ | ||
103 | #define MSGSTAT_IFNF 0x00020000 /* InFifoNotFull */ | ||
104 | #define MSGSTAT_OFNF 0x00040000 /* OutFifoNotFull */ | ||
105 | #define MSGSTAT_IFNE 0x00080000 /* InFifoNotEmpty */ | ||
106 | #define MSGSTAT_MBINT 0x00100000 /* Mailbox interrupt */ | ||
107 | #define MSGSTAT_IFINT 0x00200000 /* InFifo interrupt */ | ||
108 | #define MSGSTAT_OFINT 0x00400000 /* OutFifo interrupt */ | ||
109 | #define MSGSTAT_WFINT 0x00800000 /* WatchFifo interrupt */ | ||
110 | |||
111 | /* NPE messaging_control register bit definitions */ | ||
112 | #define MSGCTL_OUT_FIFO 0x00010000 /* enable output FIFO */ | ||
113 | #define MSGCTL_IN_FIFO 0x00020000 /* enable input FIFO */ | ||
114 | #define MSGCTL_OUT_FIFO_WRITE 0x01000000 /* enable FIFO + WRITE */ | ||
115 | #define MSGCTL_IN_FIFO_WRITE 0x02000000 | ||
116 | |||
117 | /* NPE mailbox_status value for reset */ | ||
118 | #define RESET_MBOX_STAT 0x0000F0F0 | ||
119 | |||
120 | const char *npe_names[] = { "NPE-A", "NPE-B", "NPE-C" }; | ||
121 | |||
122 | #define print_npe(pri, npe, fmt, ...) \ | ||
123 | printk(pri "%s: " fmt, npe_name(npe), ## __VA_ARGS__) | ||
124 | |||
125 | #if DEBUG_MSG | ||
126 | #define debug_msg(npe, fmt, ...) \ | ||
127 | print_npe(KERN_DEBUG, npe, fmt, ## __VA_ARGS__) | ||
128 | #else | ||
129 | #define debug_msg(npe, fmt, ...) | ||
130 | #endif | ||
131 | |||
132 | static struct { | ||
133 | u32 reg, val; | ||
134 | } ecs_reset[] = { | ||
135 | { ECS_BG_CTXT_REG_0, 0xA0000000 }, | ||
136 | { ECS_BG_CTXT_REG_1, 0x01000000 }, | ||
137 | { ECS_BG_CTXT_REG_2, 0x00008000 }, | ||
138 | { ECS_PRI_1_CTXT_REG_0, 0x20000080 }, | ||
139 | { ECS_PRI_1_CTXT_REG_1, 0x01000000 }, | ||
140 | { ECS_PRI_1_CTXT_REG_2, 0x00008000 }, | ||
141 | { ECS_PRI_2_CTXT_REG_0, 0x20000080 }, | ||
142 | { ECS_PRI_2_CTXT_REG_1, 0x01000000 }, | ||
143 | { ECS_PRI_2_CTXT_REG_2, 0x00008000 }, | ||
144 | { ECS_DBG_CTXT_REG_0, 0x20000000 }, | ||
145 | { ECS_DBG_CTXT_REG_1, 0x00000000 }, | ||
146 | { ECS_DBG_CTXT_REG_2, 0x001E0000 }, | ||
147 | { ECS_INSTRUCT_REG, 0x1003C00F }, | ||
148 | }; | ||
149 | |||
150 | static struct npe npe_tab[NPE_COUNT] = { | ||
151 | { | ||
152 | .id = 0, | ||
153 | .regs = (struct npe_regs __iomem *)IXP4XX_NPEA_BASE_VIRT, | ||
154 | .regs_phys = IXP4XX_NPEA_BASE_PHYS, | ||
155 | }, { | ||
156 | .id = 1, | ||
157 | .regs = (struct npe_regs __iomem *)IXP4XX_NPEB_BASE_VIRT, | ||
158 | .regs_phys = IXP4XX_NPEB_BASE_PHYS, | ||
159 | }, { | ||
160 | .id = 2, | ||
161 | .regs = (struct npe_regs __iomem *)IXP4XX_NPEC_BASE_VIRT, | ||
162 | .regs_phys = IXP4XX_NPEC_BASE_PHYS, | ||
163 | } | ||
164 | }; | ||
165 | |||
166 | int npe_running(struct npe *npe) | ||
167 | { | ||
168 | return (__raw_readl(&npe->regs->exec_status_cmd) & STAT_RUN) != 0; | ||
169 | } | ||
170 | |||
171 | static void npe_cmd_write(struct npe *npe, u32 addr, int cmd, u32 data) | ||
172 | { | ||
173 | __raw_writel(data, &npe->regs->exec_data); | ||
174 | __raw_writel(addr, &npe->regs->exec_addr); | ||
175 | __raw_writel(cmd, &npe->regs->exec_status_cmd); | ||
176 | } | ||
177 | |||
178 | static u32 npe_cmd_read(struct npe *npe, u32 addr, int cmd) | ||
179 | { | ||
180 | __raw_writel(addr, &npe->regs->exec_addr); | ||
181 | __raw_writel(cmd, &npe->regs->exec_status_cmd); | ||
182 | /* Iintroduce extra read cycles after issuing read command to NPE | ||
183 | so that we read the register after the NPE has updated it. | ||
184 | This is to overcome race condition between XScale and NPE */ | ||
185 | __raw_readl(&npe->regs->exec_data); | ||
186 | __raw_readl(&npe->regs->exec_data); | ||
187 | return __raw_readl(&npe->regs->exec_data); | ||
188 | } | ||
189 | |||
190 | static void npe_clear_active(struct npe *npe, u32 reg) | ||
191 | { | ||
192 | u32 val = npe_cmd_read(npe, reg, CMD_RD_ECS_REG); | ||
193 | npe_cmd_write(npe, reg, CMD_WR_ECS_REG, val & ~ECS_REG_0_ACTIVE); | ||
194 | } | ||
195 | |||
196 | static void npe_start(struct npe *npe) | ||
197 | { | ||
198 | /* ensure only Background Context Stack Level is active */ | ||
199 | npe_clear_active(npe, ECS_PRI_1_CTXT_REG_0); | ||
200 | npe_clear_active(npe, ECS_PRI_2_CTXT_REG_0); | ||
201 | npe_clear_active(npe, ECS_DBG_CTXT_REG_0); | ||
202 | |||
203 | __raw_writel(CMD_NPE_CLR_PIPE, &npe->regs->exec_status_cmd); | ||
204 | __raw_writel(CMD_NPE_START, &npe->regs->exec_status_cmd); | ||
205 | } | ||
206 | |||
207 | static void npe_stop(struct npe *npe) | ||
208 | { | ||
209 | __raw_writel(CMD_NPE_STOP, &npe->regs->exec_status_cmd); | ||
210 | __raw_writel(CMD_NPE_CLR_PIPE, &npe->regs->exec_status_cmd); /*FIXME?*/ | ||
211 | } | ||
212 | |||
213 | static int __must_check npe_debug_instr(struct npe *npe, u32 instr, u32 ctx, | ||
214 | u32 ldur) | ||
215 | { | ||
216 | u32 wc; | ||
217 | int i; | ||
218 | |||
219 | /* set the Active bit, and the LDUR, in the debug level */ | ||
220 | npe_cmd_write(npe, ECS_DBG_CTXT_REG_0, CMD_WR_ECS_REG, | ||
221 | ECS_REG_0_ACTIVE | (ldur << ECS_REG_0_LDUR_BITS)); | ||
222 | |||
223 | /* set CCTXT at ECS DEBUG L3 to specify in which context to execute | ||
224 | the instruction, and set SELCTXT at ECS DEBUG Level to specify | ||
225 | which context store to access. | ||
226 | Debug ECS Level Reg 1 has form 0x000n000n, where n = context number | ||
227 | */ | ||
228 | npe_cmd_write(npe, ECS_DBG_CTXT_REG_1, CMD_WR_ECS_REG, | ||
229 | (ctx << ECS_REG_1_CCTXT_BITS) | | ||
230 | (ctx << ECS_REG_1_SELCTXT_BITS)); | ||
231 | |||
232 | /* clear the pipeline */ | ||
233 | __raw_writel(CMD_NPE_CLR_PIPE, &npe->regs->exec_status_cmd); | ||
234 | |||
235 | /* load NPE instruction into the instruction register */ | ||
236 | npe_cmd_write(npe, ECS_INSTRUCT_REG, CMD_WR_ECS_REG, instr); | ||
237 | |||
238 | /* we need this value later to wait for completion of NPE execution | ||
239 | step */ | ||
240 | wc = __raw_readl(&npe->regs->watch_count); | ||
241 | |||
242 | /* issue a Step One command via the Execution Control register */ | ||
243 | __raw_writel(CMD_NPE_STEP, &npe->regs->exec_status_cmd); | ||
244 | |||
245 | /* Watch Count register increments when NPE completes an instruction */ | ||
246 | for (i = 0; i < MAX_RETRIES; i++) { | ||
247 | if (wc != __raw_readl(&npe->regs->watch_count)) | ||
248 | return 0; | ||
249 | udelay(1); | ||
250 | } | ||
251 | |||
252 | print_npe(KERN_ERR, npe, "reset: npe_debug_instr(): timeout\n"); | ||
253 | return -ETIMEDOUT; | ||
254 | } | ||
255 | |||
256 | static int __must_check npe_logical_reg_write8(struct npe *npe, u32 addr, | ||
257 | u8 val, u32 ctx) | ||
258 | { | ||
259 | /* here we build the NPE assembler instruction: mov8 d0, #0 */ | ||
260 | u32 instr = INSTR_WR_REG_BYTE | /* OpCode */ | ||
261 | addr << 9 | /* base Operand */ | ||
262 | (val & 0x1F) << 4 | /* lower 5 bits to immediate data */ | ||
263 | (val & ~0x1F) << (18 - 5);/* higher 3 bits to CoProc instr. */ | ||
264 | return npe_debug_instr(npe, instr, ctx, 1); /* execute it */ | ||
265 | } | ||
266 | |||
267 | static int __must_check npe_logical_reg_write16(struct npe *npe, u32 addr, | ||
268 | u16 val, u32 ctx) | ||
269 | { | ||
270 | /* here we build the NPE assembler instruction: mov16 d0, #0 */ | ||
271 | u32 instr = INSTR_WR_REG_SHORT | /* OpCode */ | ||
272 | addr << 9 | /* base Operand */ | ||
273 | (val & 0x1F) << 4 | /* lower 5 bits to immediate data */ | ||
274 | (val & ~0x1F) << (18 - 5);/* higher 11 bits to CoProc instr. */ | ||
275 | return npe_debug_instr(npe, instr, ctx, 1); /* execute it */ | ||
276 | } | ||
277 | |||
278 | static int __must_check npe_logical_reg_write32(struct npe *npe, u32 addr, | ||
279 | u32 val, u32 ctx) | ||
280 | { | ||
281 | /* write in 16 bit steps first the high and then the low value */ | ||
282 | if (npe_logical_reg_write16(npe, addr, val >> 16, ctx)) | ||
283 | return -ETIMEDOUT; | ||
284 | return npe_logical_reg_write16(npe, addr + 2, val & 0xFFFF, ctx); | ||
285 | } | ||
286 | |||
287 | static int npe_reset(struct npe *npe) | ||
288 | { | ||
289 | u32 val, ctl, exec_count, ctx_reg2; | ||
290 | int i; | ||
291 | |||
292 | ctl = (__raw_readl(&npe->regs->messaging_control) | 0x3F000000) & | ||
293 | 0x3F3FFFFF; | ||
294 | |||
295 | /* disable parity interrupt */ | ||
296 | __raw_writel(ctl & 0x3F00FFFF, &npe->regs->messaging_control); | ||
297 | |||
298 | /* pre exec - debug instruction */ | ||
299 | /* turn off the halt bit by clearing Execution Count register. */ | ||
300 | exec_count = __raw_readl(&npe->regs->exec_count); | ||
301 | __raw_writel(0, &npe->regs->exec_count); | ||
302 | /* ensure that IF and IE are on (temporarily), so that we don't end up | ||
303 | stepping forever */ | ||
304 | ctx_reg2 = npe_cmd_read(npe, ECS_DBG_CTXT_REG_2, CMD_RD_ECS_REG); | ||
305 | npe_cmd_write(npe, ECS_DBG_CTXT_REG_2, CMD_WR_ECS_REG, ctx_reg2 | | ||
306 | ECS_DBG_REG_2_IF | ECS_DBG_REG_2_IE); | ||
307 | |||
308 | /* clear the FIFOs */ | ||
309 | while (__raw_readl(&npe->regs->watchpoint_fifo) & WFIFO_VALID) | ||
310 | ; | ||
311 | while (__raw_readl(&npe->regs->messaging_status) & MSGSTAT_OFNE) | ||
312 | /* read from the outFIFO until empty */ | ||
313 | print_npe(KERN_DEBUG, npe, "npe_reset: read FIFO = 0x%X\n", | ||
314 | __raw_readl(&npe->regs->in_out_fifo)); | ||
315 | |||
316 | while (__raw_readl(&npe->regs->messaging_status) & MSGSTAT_IFNE) | ||
317 | /* step execution of the NPE intruction to read inFIFO using | ||
318 | the Debug Executing Context stack */ | ||
319 | if (npe_debug_instr(npe, INSTR_RD_FIFO, 0, 0)) | ||
320 | return -ETIMEDOUT; | ||
321 | |||
322 | /* reset the mailbox reg from the XScale side */ | ||
323 | __raw_writel(RESET_MBOX_STAT, &npe->regs->mailbox_status); | ||
324 | /* from NPE side */ | ||
325 | if (npe_debug_instr(npe, INSTR_RESET_MBOX, 0, 0)) | ||
326 | return -ETIMEDOUT; | ||
327 | |||
328 | /* Reset the physical registers in the NPE register file */ | ||
329 | for (val = 0; val < NPE_PHYS_REG; val++) { | ||
330 | if (npe_logical_reg_write16(npe, NPE_REGMAP, val >> 1, 0)) | ||
331 | return -ETIMEDOUT; | ||
332 | /* address is either 0 or 4 */ | ||
333 | if (npe_logical_reg_write32(npe, (val & 1) * 4, 0, 0)) | ||
334 | return -ETIMEDOUT; | ||
335 | } | ||
336 | |||
337 | /* Reset the context store = each context's Context Store registers */ | ||
338 | |||
339 | /* Context 0 has no STARTPC. Instead, this value is used to set NextPC | ||
340 | for Background ECS, to set where NPE starts executing code */ | ||
341 | val = npe_cmd_read(npe, ECS_BG_CTXT_REG_0, CMD_RD_ECS_REG); | ||
342 | val &= ~ECS_REG_0_NEXTPC_MASK; | ||
343 | val |= (0 /* NextPC */ << 16) & ECS_REG_0_NEXTPC_MASK; | ||
344 | npe_cmd_write(npe, ECS_BG_CTXT_REG_0, CMD_WR_ECS_REG, val); | ||
345 | |||
346 | for (i = 0; i < 16; i++) { | ||
347 | if (i) { /* Context 0 has no STEVT nor STARTPC */ | ||
348 | /* STEVT = off, 0x80 */ | ||
349 | if (npe_logical_reg_write8(npe, NPE_STEVT, 0x80, i)) | ||
350 | return -ETIMEDOUT; | ||
351 | if (npe_logical_reg_write16(npe, NPE_STARTPC, 0, i)) | ||
352 | return -ETIMEDOUT; | ||
353 | } | ||
354 | /* REGMAP = d0->p0, d8->p2, d16->p4 */ | ||
355 | if (npe_logical_reg_write16(npe, NPE_REGMAP, 0x820, i)) | ||
356 | return -ETIMEDOUT; | ||
357 | if (npe_logical_reg_write8(npe, NPE_CINDEX, 0, i)) | ||
358 | return -ETIMEDOUT; | ||
359 | } | ||
360 | |||
361 | /* post exec */ | ||
362 | /* clear active bit in debug level */ | ||
363 | npe_cmd_write(npe, ECS_DBG_CTXT_REG_0, CMD_WR_ECS_REG, 0); | ||
364 | /* clear the pipeline */ | ||
365 | __raw_writel(CMD_NPE_CLR_PIPE, &npe->regs->exec_status_cmd); | ||
366 | /* restore previous values */ | ||
367 | __raw_writel(exec_count, &npe->regs->exec_count); | ||
368 | npe_cmd_write(npe, ECS_DBG_CTXT_REG_2, CMD_WR_ECS_REG, ctx_reg2); | ||
369 | |||
370 | /* write reset values to Execution Context Stack registers */ | ||
371 | for (val = 0; val < ARRAY_SIZE(ecs_reset); val++) | ||
372 | npe_cmd_write(npe, ecs_reset[val].reg, CMD_WR_ECS_REG, | ||
373 | ecs_reset[val].val); | ||
374 | |||
375 | /* clear the profile counter */ | ||
376 | __raw_writel(CMD_CLR_PROFILE_CNT, &npe->regs->exec_status_cmd); | ||
377 | |||
378 | __raw_writel(0, &npe->regs->exec_count); | ||
379 | __raw_writel(0, &npe->regs->action_points[0]); | ||
380 | __raw_writel(0, &npe->regs->action_points[1]); | ||
381 | __raw_writel(0, &npe->regs->action_points[2]); | ||
382 | __raw_writel(0, &npe->regs->action_points[3]); | ||
383 | __raw_writel(0, &npe->regs->watch_count); | ||
384 | |||
385 | val = ixp4xx_read_feature_bits(); | ||
386 | /* reset the NPE */ | ||
387 | ixp4xx_write_feature_bits(val & | ||
388 | ~(IXP4XX_FEATURE_RESET_NPEA << npe->id)); | ||
389 | for (i = 0; i < MAX_RETRIES; i++) { | ||
390 | if (!(ixp4xx_read_feature_bits() & | ||
391 | (IXP4XX_FEATURE_RESET_NPEA << npe->id))) | ||
392 | break; /* reset completed */ | ||
393 | udelay(1); | ||
394 | } | ||
395 | if (i == MAX_RETRIES) | ||
396 | return -ETIMEDOUT; | ||
397 | |||
398 | /* deassert reset */ | ||
399 | ixp4xx_write_feature_bits(val | | ||
400 | (IXP4XX_FEATURE_RESET_NPEA << npe->id)); | ||
401 | for (i = 0; i < MAX_RETRIES; i++) { | ||
402 | if (ixp4xx_read_feature_bits() & | ||
403 | (IXP4XX_FEATURE_RESET_NPEA << npe->id)) | ||
404 | break; /* NPE is back alive */ | ||
405 | udelay(1); | ||
406 | } | ||
407 | if (i == MAX_RETRIES) | ||
408 | return -ETIMEDOUT; | ||
409 | |||
410 | npe_stop(npe); | ||
411 | |||
412 | /* restore NPE configuration bus Control Register - parity settings */ | ||
413 | __raw_writel(ctl, &npe->regs->messaging_control); | ||
414 | return 0; | ||
415 | } | ||
416 | |||
417 | |||
418 | int npe_send_message(struct npe *npe, const void *msg, const char *what) | ||
419 | { | ||
420 | const u32 *send = msg; | ||
421 | int cycles = 0; | ||
422 | |||
423 | debug_msg(npe, "Trying to send message %s [%08X:%08X]\n", | ||
424 | what, send[0], send[1]); | ||
425 | |||
426 | if (__raw_readl(&npe->regs->messaging_status) & MSGSTAT_IFNE) { | ||
427 | debug_msg(npe, "NPE input FIFO not empty\n"); | ||
428 | return -EIO; | ||
429 | } | ||
430 | |||
431 | __raw_writel(send[0], &npe->regs->in_out_fifo); | ||
432 | |||
433 | if (!(__raw_readl(&npe->regs->messaging_status) & MSGSTAT_IFNF)) { | ||
434 | debug_msg(npe, "NPE input FIFO full\n"); | ||
435 | return -EIO; | ||
436 | } | ||
437 | |||
438 | __raw_writel(send[1], &npe->regs->in_out_fifo); | ||
439 | |||
440 | while ((cycles < MAX_RETRIES) && | ||
441 | (__raw_readl(&npe->regs->messaging_status) & MSGSTAT_IFNE)) { | ||
442 | udelay(1); | ||
443 | cycles++; | ||
444 | } | ||
445 | |||
446 | if (cycles == MAX_RETRIES) { | ||
447 | debug_msg(npe, "Timeout sending message\n"); | ||
448 | return -ETIMEDOUT; | ||
449 | } | ||
450 | |||
451 | debug_msg(npe, "Sending a message took %i cycles\n", cycles); | ||
452 | return 0; | ||
453 | } | ||
454 | |||
455 | int npe_recv_message(struct npe *npe, void *msg, const char *what) | ||
456 | { | ||
457 | u32 *recv = msg; | ||
458 | int cycles = 0, cnt = 0; | ||
459 | |||
460 | debug_msg(npe, "Trying to receive message %s\n", what); | ||
461 | |||
462 | while (cycles < MAX_RETRIES) { | ||
463 | if (__raw_readl(&npe->regs->messaging_status) & MSGSTAT_OFNE) { | ||
464 | recv[cnt++] = __raw_readl(&npe->regs->in_out_fifo); | ||
465 | if (cnt == 2) | ||
466 | break; | ||
467 | } else { | ||
468 | udelay(1); | ||
469 | cycles++; | ||
470 | } | ||
471 | } | ||
472 | |||
473 | switch(cnt) { | ||
474 | case 1: | ||
475 | debug_msg(npe, "Received [%08X]\n", recv[0]); | ||
476 | break; | ||
477 | case 2: | ||
478 | debug_msg(npe, "Received [%08X:%08X]\n", recv[0], recv[1]); | ||
479 | break; | ||
480 | } | ||
481 | |||
482 | if (cycles == MAX_RETRIES) { | ||
483 | debug_msg(npe, "Timeout waiting for message\n"); | ||
484 | return -ETIMEDOUT; | ||
485 | } | ||
486 | |||
487 | debug_msg(npe, "Receiving a message took %i cycles\n", cycles); | ||
488 | return 0; | ||
489 | } | ||
490 | |||
491 | int npe_send_recv_message(struct npe *npe, void *msg, const char *what) | ||
492 | { | ||
493 | int result; | ||
494 | u32 *send = msg, recv[2]; | ||
495 | |||
496 | if ((result = npe_send_message(npe, msg, what)) != 0) | ||
497 | return result; | ||
498 | if ((result = npe_recv_message(npe, recv, what)) != 0) | ||
499 | return result; | ||
500 | |||
501 | if ((recv[0] != send[0]) || (recv[1] != send[1])) { | ||
502 | debug_msg(npe, "Message %s: unexpected message received\n", | ||
503 | what); | ||
504 | return -EIO; | ||
505 | } | ||
506 | return 0; | ||
507 | } | ||
508 | |||
509 | |||
510 | int npe_load_firmware(struct npe *npe, const char *name, struct device *dev) | ||
511 | { | ||
512 | const struct firmware *fw_entry; | ||
513 | |||
514 | struct dl_block { | ||
515 | u32 type; | ||
516 | u32 offset; | ||
517 | } *blk; | ||
518 | |||
519 | struct dl_image { | ||
520 | u32 magic; | ||
521 | u32 id; | ||
522 | u32 size; | ||
523 | union { | ||
524 | u32 data[0]; | ||
525 | struct dl_block blocks[0]; | ||
526 | }; | ||
527 | } *image; | ||
528 | |||
529 | struct dl_codeblock { | ||
530 | u32 npe_addr; | ||
531 | u32 size; | ||
532 | u32 data[0]; | ||
533 | } *cb; | ||
534 | |||
535 | int i, j, err, data_size, instr_size, blocks, table_end; | ||
536 | u32 cmd; | ||
537 | |||
538 | if ((err = request_firmware(&fw_entry, name, dev)) != 0) | ||
539 | return err; | ||
540 | |||
541 | err = -EINVAL; | ||
542 | if (fw_entry->size < sizeof(struct dl_image)) { | ||
543 | print_npe(KERN_ERR, npe, "incomplete firmware file\n"); | ||
544 | goto err; | ||
545 | } | ||
546 | image = (struct dl_image*)fw_entry->data; | ||
547 | |||
548 | #if DEBUG_FW | ||
549 | print_npe(KERN_DEBUG, npe, "firmware: %08X %08X %08X (0x%X bytes)\n", | ||
550 | image->magic, image->id, image->size, image->size * 4); | ||
551 | #endif | ||
552 | |||
553 | if (image->magic == swab32(FW_MAGIC)) { /* swapped file */ | ||
554 | image->id = swab32(image->id); | ||
555 | image->size = swab32(image->size); | ||
556 | } else if (image->magic != FW_MAGIC) { | ||
557 | print_npe(KERN_ERR, npe, "bad firmware file magic: 0x%X\n", | ||
558 | image->magic); | ||
559 | goto err; | ||
560 | } | ||
561 | if ((image->size * 4 + sizeof(struct dl_image)) != fw_entry->size) { | ||
562 | print_npe(KERN_ERR, npe, | ||
563 | "inconsistent size of firmware file\n"); | ||
564 | goto err; | ||
565 | } | ||
566 | if (((image->id >> 24) & 0xF /* NPE ID */) != npe->id) { | ||
567 | print_npe(KERN_ERR, npe, "firmware file NPE ID mismatch\n"); | ||
568 | goto err; | ||
569 | } | ||
570 | if (image->magic == swab32(FW_MAGIC)) | ||
571 | for (i = 0; i < image->size; i++) | ||
572 | image->data[i] = swab32(image->data[i]); | ||
573 | |||
574 | if (!cpu_is_ixp46x() && ((image->id >> 28) & 0xF /* device ID */)) { | ||
575 | print_npe(KERN_INFO, npe, "IXP46x firmware ignored on " | ||
576 | "IXP42x\n"); | ||
577 | goto err; | ||
578 | } | ||
579 | |||
580 | if (npe_running(npe)) { | ||
581 | print_npe(KERN_INFO, npe, "unable to load firmware, NPE is " | ||
582 | "already running\n"); | ||
583 | err = -EBUSY; | ||
584 | goto err; | ||
585 | } | ||
586 | #if 0 | ||
587 | npe_stop(npe); | ||
588 | npe_reset(npe); | ||
589 | #endif | ||
590 | |||
591 | print_npe(KERN_INFO, npe, "firmware functionality 0x%X, " | ||
592 | "revision 0x%X:%X\n", (image->id >> 16) & 0xFF, | ||
593 | (image->id >> 8) & 0xFF, image->id & 0xFF); | ||
594 | |||
595 | if (!cpu_is_ixp46x()) { | ||
596 | if (!npe->id) | ||
597 | instr_size = NPE_A_42X_INSTR_SIZE; | ||
598 | else | ||
599 | instr_size = NPE_B_AND_C_42X_INSTR_SIZE; | ||
600 | data_size = NPE_42X_DATA_SIZE; | ||
601 | } else { | ||
602 | instr_size = NPE_46X_INSTR_SIZE; | ||
603 | data_size = NPE_46X_DATA_SIZE; | ||
604 | } | ||
605 | |||
606 | for (blocks = 0; blocks * sizeof(struct dl_block) / 4 < image->size; | ||
607 | blocks++) | ||
608 | if (image->blocks[blocks].type == FW_BLOCK_TYPE_EOF) | ||
609 | break; | ||
610 | if (blocks * sizeof(struct dl_block) / 4 >= image->size) { | ||
611 | print_npe(KERN_INFO, npe, "firmware EOF block marker not " | ||
612 | "found\n"); | ||
613 | goto err; | ||
614 | } | ||
615 | |||
616 | #if DEBUG_FW | ||
617 | print_npe(KERN_DEBUG, npe, "%i firmware blocks found\n", blocks); | ||
618 | #endif | ||
619 | |||
620 | table_end = blocks * sizeof(struct dl_block) / 4 + 1 /* EOF marker */; | ||
621 | for (i = 0, blk = image->blocks; i < blocks; i++, blk++) { | ||
622 | if (blk->offset > image->size - sizeof(struct dl_codeblock) / 4 | ||
623 | || blk->offset < table_end) { | ||
624 | print_npe(KERN_INFO, npe, "invalid offset 0x%X of " | ||
625 | "firmware block #%i\n", blk->offset, i); | ||
626 | goto err; | ||
627 | } | ||
628 | |||
629 | cb = (struct dl_codeblock*)&image->data[blk->offset]; | ||
630 | if (blk->type == FW_BLOCK_TYPE_INSTR) { | ||
631 | if (cb->npe_addr + cb->size > instr_size) | ||
632 | goto too_big; | ||
633 | cmd = CMD_WR_INS_MEM; | ||
634 | } else if (blk->type == FW_BLOCK_TYPE_DATA) { | ||
635 | if (cb->npe_addr + cb->size > data_size) | ||
636 | goto too_big; | ||
637 | cmd = CMD_WR_DATA_MEM; | ||
638 | } else { | ||
639 | print_npe(KERN_INFO, npe, "invalid firmware block #%i " | ||
640 | "type 0x%X\n", i, blk->type); | ||
641 | goto err; | ||
642 | } | ||
643 | if (blk->offset + sizeof(*cb) / 4 + cb->size > image->size) { | ||
644 | print_npe(KERN_INFO, npe, "firmware block #%i doesn't " | ||
645 | "fit in firmware image: type %c, start 0x%X," | ||
646 | " length 0x%X\n", i, | ||
647 | blk->type == FW_BLOCK_TYPE_INSTR ? 'I' : 'D', | ||
648 | cb->npe_addr, cb->size); | ||
649 | goto err; | ||
650 | } | ||
651 | |||
652 | for (j = 0; j < cb->size; j++) | ||
653 | npe_cmd_write(npe, cb->npe_addr + j, cmd, cb->data[j]); | ||
654 | } | ||
655 | |||
656 | npe_start(npe); | ||
657 | if (!npe_running(npe)) | ||
658 | print_npe(KERN_ERR, npe, "unable to start\n"); | ||
659 | release_firmware(fw_entry); | ||
660 | return 0; | ||
661 | |||
662 | too_big: | ||
663 | print_npe(KERN_INFO, npe, "firmware block #%i doesn't fit in NPE " | ||
664 | "memory: type %c, start 0x%X, length 0x%X\n", i, | ||
665 | blk->type == FW_BLOCK_TYPE_INSTR ? 'I' : 'D', | ||
666 | cb->npe_addr, cb->size); | ||
667 | err: | ||
668 | release_firmware(fw_entry); | ||
669 | return err; | ||
670 | } | ||
671 | |||
672 | |||
673 | struct npe *npe_request(int id) | ||
674 | { | ||
675 | if (id < NPE_COUNT) | ||
676 | if (npe_tab[id].valid) | ||
677 | if (try_module_get(THIS_MODULE)) | ||
678 | return &npe_tab[id]; | ||
679 | return NULL; | ||
680 | } | ||
681 | |||
682 | void npe_release(struct npe *npe) | ||
683 | { | ||
684 | module_put(THIS_MODULE); | ||
685 | } | ||
686 | |||
687 | |||
688 | static int __init npe_init_module(void) | ||
689 | { | ||
690 | |||
691 | int i, found = 0; | ||
692 | |||
693 | for (i = 0; i < NPE_COUNT; i++) { | ||
694 | struct npe *npe = &npe_tab[i]; | ||
695 | if (!(ixp4xx_read_feature_bits() & | ||
696 | (IXP4XX_FEATURE_RESET_NPEA << i))) | ||
697 | continue; /* NPE already disabled or not present */ | ||
698 | if (!(npe->mem_res = request_mem_region(npe->regs_phys, | ||
699 | REGS_SIZE, | ||
700 | npe_name(npe)))) { | ||
701 | print_npe(KERN_ERR, npe, | ||
702 | "failed to request memory region\n"); | ||
703 | continue; | ||
704 | } | ||
705 | |||
706 | if (npe_reset(npe)) | ||
707 | continue; | ||
708 | npe->valid = 1; | ||
709 | found++; | ||
710 | } | ||
711 | |||
712 | if (!found) | ||
713 | return -ENOSYS; | ||
714 | return 0; | ||
715 | } | ||
716 | |||
717 | static void __exit npe_cleanup_module(void) | ||
718 | { | ||
719 | int i; | ||
720 | |||
721 | for (i = 0; i < NPE_COUNT; i++) | ||
722 | if (npe_tab[i].mem_res) { | ||
723 | npe_reset(&npe_tab[i]); | ||
724 | release_resource(npe_tab[i].mem_res); | ||
725 | } | ||
726 | } | ||
727 | |||
728 | module_init(npe_init_module); | ||
729 | module_exit(npe_cleanup_module); | ||
730 | |||
731 | MODULE_AUTHOR("Krzysztof Halasa"); | ||
732 | MODULE_LICENSE("GPL v2"); | ||
733 | |||
734 | EXPORT_SYMBOL(npe_names); | ||
735 | EXPORT_SYMBOL(npe_running); | ||
736 | EXPORT_SYMBOL(npe_request); | ||
737 | EXPORT_SYMBOL(npe_release); | ||
738 | EXPORT_SYMBOL(npe_load_firmware); | ||
739 | EXPORT_SYMBOL(npe_send_message); | ||
740 | EXPORT_SYMBOL(npe_recv_message); | ||
741 | EXPORT_SYMBOL(npe_send_recv_message); | ||
diff --git a/arch/arm/mach-ixp4xx/ixp4xx_qmgr.c b/arch/arm/mach-ixp4xx/ixp4xx_qmgr.c new file mode 100644 index 000000000000..e83301325301 --- /dev/null +++ b/arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |||
@@ -0,0 +1,274 @@ | |||
1 | /* | ||
2 | * Intel IXP4xx Queue Manager driver for Linux | ||
3 | * | ||
4 | * Copyright (C) 2007 Krzysztof Halasa <khc@pm.waw.pl> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of version 2 of the GNU General Public License | ||
8 | * as published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #include <linux/ioport.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/module.h> | ||
15 | #include <asm/arch/qmgr.h> | ||
16 | |||
17 | #define DEBUG 0 | ||
18 | |||
19 | struct qmgr_regs __iomem *qmgr_regs; | ||
20 | static struct resource *mem_res; | ||
21 | static spinlock_t qmgr_lock; | ||
22 | static u32 used_sram_bitmap[4]; /* 128 16-dword pages */ | ||
23 | static void (*irq_handlers[HALF_QUEUES])(void *pdev); | ||
24 | static void *irq_pdevs[HALF_QUEUES]; | ||
25 | |||
26 | void qmgr_set_irq(unsigned int queue, int src, | ||
27 | void (*handler)(void *pdev), void *pdev) | ||
28 | { | ||
29 | u32 __iomem *reg = &qmgr_regs->irqsrc[queue / 8]; /* 8 queues / u32 */ | ||
30 | int bit = (queue % 8) * 4; /* 3 bits + 1 reserved bit per queue */ | ||
31 | unsigned long flags; | ||
32 | |||
33 | src &= 7; | ||
34 | spin_lock_irqsave(&qmgr_lock, flags); | ||
35 | __raw_writel((__raw_readl(reg) & ~(7 << bit)) | (src << bit), reg); | ||
36 | irq_handlers[queue] = handler; | ||
37 | irq_pdevs[queue] = pdev; | ||
38 | spin_unlock_irqrestore(&qmgr_lock, flags); | ||
39 | } | ||
40 | |||
41 | |||
42 | static irqreturn_t qmgr_irq1(int irq, void *pdev) | ||
43 | { | ||
44 | int i; | ||
45 | u32 val = __raw_readl(&qmgr_regs->irqstat[0]); | ||
46 | __raw_writel(val, &qmgr_regs->irqstat[0]); /* ACK */ | ||
47 | |||
48 | for (i = 0; i < HALF_QUEUES; i++) | ||
49 | if (val & (1 << i)) | ||
50 | irq_handlers[i](irq_pdevs[i]); | ||
51 | |||
52 | return val ? IRQ_HANDLED : 0; | ||
53 | } | ||
54 | |||
55 | |||
56 | void qmgr_enable_irq(unsigned int queue) | ||
57 | { | ||
58 | unsigned long flags; | ||
59 | |||
60 | spin_lock_irqsave(&qmgr_lock, flags); | ||
61 | __raw_writel(__raw_readl(&qmgr_regs->irqen[0]) | (1 << queue), | ||
62 | &qmgr_regs->irqen[0]); | ||
63 | spin_unlock_irqrestore(&qmgr_lock, flags); | ||
64 | } | ||
65 | |||
66 | void qmgr_disable_irq(unsigned int queue) | ||
67 | { | ||
68 | unsigned long flags; | ||
69 | |||
70 | spin_lock_irqsave(&qmgr_lock, flags); | ||
71 | __raw_writel(__raw_readl(&qmgr_regs->irqen[0]) & ~(1 << queue), | ||
72 | &qmgr_regs->irqen[0]); | ||
73 | spin_unlock_irqrestore(&qmgr_lock, flags); | ||
74 | } | ||
75 | |||
76 | static inline void shift_mask(u32 *mask) | ||
77 | { | ||
78 | mask[3] = mask[3] << 1 | mask[2] >> 31; | ||
79 | mask[2] = mask[2] << 1 | mask[1] >> 31; | ||
80 | mask[1] = mask[1] << 1 | mask[0] >> 31; | ||
81 | mask[0] <<= 1; | ||
82 | } | ||
83 | |||
84 | int qmgr_request_queue(unsigned int queue, unsigned int len /* dwords */, | ||
85 | unsigned int nearly_empty_watermark, | ||
86 | unsigned int nearly_full_watermark) | ||
87 | { | ||
88 | u32 cfg, addr = 0, mask[4]; /* in 16-dwords */ | ||
89 | int err; | ||
90 | |||
91 | if (queue >= HALF_QUEUES) | ||
92 | return -ERANGE; | ||
93 | |||
94 | if ((nearly_empty_watermark | nearly_full_watermark) & ~7) | ||
95 | return -EINVAL; | ||
96 | |||
97 | switch (len) { | ||
98 | case 16: | ||
99 | cfg = 0 << 24; | ||
100 | mask[0] = 0x1; | ||
101 | break; | ||
102 | case 32: | ||
103 | cfg = 1 << 24; | ||
104 | mask[0] = 0x3; | ||
105 | break; | ||
106 | case 64: | ||
107 | cfg = 2 << 24; | ||
108 | mask[0] = 0xF; | ||
109 | break; | ||
110 | case 128: | ||
111 | cfg = 3 << 24; | ||
112 | mask[0] = 0xFF; | ||
113 | break; | ||
114 | default: | ||
115 | return -EINVAL; | ||
116 | } | ||
117 | |||
118 | cfg |= nearly_empty_watermark << 26; | ||
119 | cfg |= nearly_full_watermark << 29; | ||
120 | len /= 16; /* in 16-dwords: 1, 2, 4 or 8 */ | ||
121 | mask[1] = mask[2] = mask[3] = 0; | ||
122 | |||
123 | if (!try_module_get(THIS_MODULE)) | ||
124 | return -ENODEV; | ||
125 | |||
126 | spin_lock_irq(&qmgr_lock); | ||
127 | if (__raw_readl(&qmgr_regs->sram[queue])) { | ||
128 | err = -EBUSY; | ||
129 | goto err; | ||
130 | } | ||
131 | |||
132 | while (1) { | ||
133 | if (!(used_sram_bitmap[0] & mask[0]) && | ||
134 | !(used_sram_bitmap[1] & mask[1]) && | ||
135 | !(used_sram_bitmap[2] & mask[2]) && | ||
136 | !(used_sram_bitmap[3] & mask[3])) | ||
137 | break; /* found free space */ | ||
138 | |||
139 | addr++; | ||
140 | shift_mask(mask); | ||
141 | if (addr + len > ARRAY_SIZE(qmgr_regs->sram)) { | ||
142 | printk(KERN_ERR "qmgr: no free SRAM space for" | ||
143 | " queue %i\n", queue); | ||
144 | err = -ENOMEM; | ||
145 | goto err; | ||
146 | } | ||
147 | } | ||
148 | |||
149 | used_sram_bitmap[0] |= mask[0]; | ||
150 | used_sram_bitmap[1] |= mask[1]; | ||
151 | used_sram_bitmap[2] |= mask[2]; | ||
152 | used_sram_bitmap[3] |= mask[3]; | ||
153 | __raw_writel(cfg | (addr << 14), &qmgr_regs->sram[queue]); | ||
154 | spin_unlock_irq(&qmgr_lock); | ||
155 | |||
156 | #if DEBUG | ||
157 | printk(KERN_DEBUG "qmgr: requested queue %i, addr = 0x%02X\n", | ||
158 | queue, addr); | ||
159 | #endif | ||
160 | return 0; | ||
161 | |||
162 | err: | ||
163 | spin_unlock_irq(&qmgr_lock); | ||
164 | module_put(THIS_MODULE); | ||
165 | return err; | ||
166 | } | ||
167 | |||
168 | void qmgr_release_queue(unsigned int queue) | ||
169 | { | ||
170 | u32 cfg, addr, mask[4]; | ||
171 | |||
172 | BUG_ON(queue >= HALF_QUEUES); /* not in valid range */ | ||
173 | |||
174 | spin_lock_irq(&qmgr_lock); | ||
175 | cfg = __raw_readl(&qmgr_regs->sram[queue]); | ||
176 | addr = (cfg >> 14) & 0xFF; | ||
177 | |||
178 | BUG_ON(!addr); /* not requested */ | ||
179 | |||
180 | switch ((cfg >> 24) & 3) { | ||
181 | case 0: mask[0] = 0x1; break; | ||
182 | case 1: mask[0] = 0x3; break; | ||
183 | case 2: mask[0] = 0xF; break; | ||
184 | case 3: mask[0] = 0xFF; break; | ||
185 | } | ||
186 | |||
187 | while (addr--) | ||
188 | shift_mask(mask); | ||
189 | |||
190 | __raw_writel(0, &qmgr_regs->sram[queue]); | ||
191 | |||
192 | used_sram_bitmap[0] &= ~mask[0]; | ||
193 | used_sram_bitmap[1] &= ~mask[1]; | ||
194 | used_sram_bitmap[2] &= ~mask[2]; | ||
195 | used_sram_bitmap[3] &= ~mask[3]; | ||
196 | irq_handlers[queue] = NULL; /* catch IRQ bugs */ | ||
197 | spin_unlock_irq(&qmgr_lock); | ||
198 | |||
199 | module_put(THIS_MODULE); | ||
200 | #if DEBUG | ||
201 | printk(KERN_DEBUG "qmgr: released queue %i\n", queue); | ||
202 | #endif | ||
203 | } | ||
204 | |||
205 | static int qmgr_init(void) | ||
206 | { | ||
207 | int i, err; | ||
208 | mem_res = request_mem_region(IXP4XX_QMGR_BASE_PHYS, | ||
209 | IXP4XX_QMGR_REGION_SIZE, | ||
210 | "IXP4xx Queue Manager"); | ||
211 | if (mem_res == NULL) | ||
212 | return -EBUSY; | ||
213 | |||
214 | qmgr_regs = ioremap(IXP4XX_QMGR_BASE_PHYS, IXP4XX_QMGR_REGION_SIZE); | ||
215 | if (qmgr_regs == NULL) { | ||
216 | err = -ENOMEM; | ||
217 | goto error_map; | ||
218 | } | ||
219 | |||
220 | /* reset qmgr registers */ | ||
221 | for (i = 0; i < 4; i++) { | ||
222 | __raw_writel(0x33333333, &qmgr_regs->stat1[i]); | ||
223 | __raw_writel(0, &qmgr_regs->irqsrc[i]); | ||
224 | } | ||
225 | for (i = 0; i < 2; i++) { | ||
226 | __raw_writel(0, &qmgr_regs->stat2[i]); | ||
227 | __raw_writel(0xFFFFFFFF, &qmgr_regs->irqstat[i]); /* clear */ | ||
228 | __raw_writel(0, &qmgr_regs->irqen[i]); | ||
229 | } | ||
230 | |||
231 | for (i = 0; i < QUEUES; i++) | ||
232 | __raw_writel(0, &qmgr_regs->sram[i]); | ||
233 | |||
234 | err = request_irq(IRQ_IXP4XX_QM1, qmgr_irq1, 0, | ||
235 | "IXP4xx Queue Manager", NULL); | ||
236 | if (err) { | ||
237 | printk(KERN_ERR "qmgr: failed to request IRQ%i\n", | ||
238 | IRQ_IXP4XX_QM1); | ||
239 | goto error_irq; | ||
240 | } | ||
241 | |||
242 | used_sram_bitmap[0] = 0xF; /* 4 first pages reserved for config */ | ||
243 | spin_lock_init(&qmgr_lock); | ||
244 | |||
245 | printk(KERN_INFO "IXP4xx Queue Manager initialized.\n"); | ||
246 | return 0; | ||
247 | |||
248 | error_irq: | ||
249 | iounmap(qmgr_regs); | ||
250 | error_map: | ||
251 | release_mem_region(IXP4XX_QMGR_BASE_PHYS, IXP4XX_QMGR_REGION_SIZE); | ||
252 | return err; | ||
253 | } | ||
254 | |||
255 | static void qmgr_remove(void) | ||
256 | { | ||
257 | free_irq(IRQ_IXP4XX_QM1, NULL); | ||
258 | synchronize_irq(IRQ_IXP4XX_QM1); | ||
259 | iounmap(qmgr_regs); | ||
260 | release_mem_region(IXP4XX_QMGR_BASE_PHYS, IXP4XX_QMGR_REGION_SIZE); | ||
261 | } | ||
262 | |||
263 | module_init(qmgr_init); | ||
264 | module_exit(qmgr_remove); | ||
265 | |||
266 | MODULE_LICENSE("GPL v2"); | ||
267 | MODULE_AUTHOR("Krzysztof Halasa"); | ||
268 | |||
269 | EXPORT_SYMBOL(qmgr_regs); | ||
270 | EXPORT_SYMBOL(qmgr_set_irq); | ||
271 | EXPORT_SYMBOL(qmgr_enable_irq); | ||
272 | EXPORT_SYMBOL(qmgr_disable_irq); | ||
273 | EXPORT_SYMBOL(qmgr_request_queue); | ||
274 | EXPORT_SYMBOL(qmgr_release_queue); | ||
diff --git a/arch/arm/mach-ixp4xx/nas100d-power.c b/arch/arm/mach-ixp4xx/nas100d-power.c deleted file mode 100644 index 29aa98d3a7fa..000000000000 --- a/arch/arm/mach-ixp4xx/nas100d-power.c +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-ixp4xx/nas100d-power.c | ||
3 | * | ||
4 | * NAS 100d Power/Reset driver | ||
5 | * | ||
6 | * Copyright (C) 2005 Tower Technologies | ||
7 | * | ||
8 | * based on nas100d-io.c | ||
9 | * Copyright (C) 2004 Karen Spearel | ||
10 | * | ||
11 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
12 | * Maintainers: http://www.nslu2-linux.org/ | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License version 2 as | ||
16 | * published by the Free Software Foundation. | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #include <linux/interrupt.h> | ||
21 | #include <linux/irq.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/reboot.h> | ||
24 | |||
25 | #include <asm/mach-types.h> | ||
26 | |||
27 | static irqreturn_t nas100d_reset_handler(int irq, void *dev_id) | ||
28 | { | ||
29 | /* Signal init to do the ctrlaltdel action, this will bypass init if | ||
30 | * it hasn't started and do a kernel_restart. | ||
31 | */ | ||
32 | ctrl_alt_del(); | ||
33 | |||
34 | return IRQ_HANDLED; | ||
35 | } | ||
36 | |||
37 | static int __init nas100d_power_init(void) | ||
38 | { | ||
39 | if (!(machine_is_nas100d())) | ||
40 | return 0; | ||
41 | |||
42 | set_irq_type(NAS100D_RB_IRQ, IRQT_LOW); | ||
43 | |||
44 | if (request_irq(NAS100D_RB_IRQ, &nas100d_reset_handler, | ||
45 | IRQF_DISABLED, "NAS100D reset button", NULL) < 0) { | ||
46 | |||
47 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
48 | NAS100D_RB_IRQ); | ||
49 | |||
50 | return -EIO; | ||
51 | } | ||
52 | |||
53 | return 0; | ||
54 | } | ||
55 | |||
56 | static void __exit nas100d_power_exit(void) | ||
57 | { | ||
58 | if (!(machine_is_nas100d())) | ||
59 | return; | ||
60 | |||
61 | free_irq(NAS100D_RB_IRQ, NULL); | ||
62 | } | ||
63 | |||
64 | module_init(nas100d_power_init); | ||
65 | module_exit(nas100d_power_exit); | ||
66 | |||
67 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
68 | MODULE_DESCRIPTION("NAS100D Power/Reset driver"); | ||
69 | MODULE_LICENSE("GPL"); | ||
diff --git a/arch/arm/mach-ixp4xx/nas100d-setup.c b/arch/arm/mach-ixp4xx/nas100d-setup.c index 54d884fb2517..4cecae84837b 100644 --- a/arch/arm/mach-ixp4xx/nas100d-setup.c +++ b/arch/arm/mach-ixp4xx/nas100d-setup.c | |||
@@ -3,8 +3,14 @@ | |||
3 | * | 3 | * |
4 | * NAS 100d board-setup | 4 | * NAS 100d board-setup |
5 | * | 5 | * |
6 | * based ixdp425-setup.c: | 6 | * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au> |
7 | * | ||
8 | * based on ixdp425-setup.c: | ||
7 | * Copyright (C) 2003-2004 MontaVista Software, Inc. | 9 | * Copyright (C) 2003-2004 MontaVista Software, Inc. |
10 | * based on nas100d-power.c: | ||
11 | * Copyright (C) 2005 Tower Technologies | ||
12 | * based on nas100d-io.c | ||
13 | * Copyright (C) 2004 Karen Spearel | ||
8 | * | 14 | * |
9 | * Author: Alessandro Zummo <a.zummo@towertech.it> | 15 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
10 | * Author: Rod Whitby <rod@whitby.id.au> | 16 | * Author: Rod Whitby <rod@whitby.id.au> |
@@ -12,15 +18,22 @@ | |||
12 | * | 18 | * |
13 | */ | 19 | */ |
14 | 20 | ||
15 | #include <linux/kernel.h> | 21 | #include <linux/if_ether.h> |
22 | #include <linux/irq.h> | ||
23 | #include <linux/jiffies.h> | ||
24 | #include <linux/timer.h> | ||
16 | #include <linux/serial.h> | 25 | #include <linux/serial.h> |
17 | #include <linux/serial_8250.h> | 26 | #include <linux/serial_8250.h> |
18 | #include <linux/leds.h> | 27 | #include <linux/leds.h> |
28 | #include <linux/reboot.h> | ||
29 | #include <linux/i2c.h> | ||
19 | #include <linux/i2c-gpio.h> | 30 | #include <linux/i2c-gpio.h> |
20 | 31 | ||
21 | #include <asm/mach-types.h> | 32 | #include <asm/mach-types.h> |
22 | #include <asm/mach/arch.h> | 33 | #include <asm/mach/arch.h> |
23 | #include <asm/mach/flash.h> | 34 | #include <asm/mach/flash.h> |
35 | #include <asm/io.h> | ||
36 | #include <asm/gpio.h> | ||
24 | 37 | ||
25 | static struct flash_platform_data nas100d_flash_data = { | 38 | static struct flash_platform_data nas100d_flash_data = { |
26 | .map_name = "cfi_probe", | 39 | .map_name = "cfi_probe", |
@@ -39,35 +52,40 @@ static struct platform_device nas100d_flash = { | |||
39 | .resource = &nas100d_flash_resource, | 52 | .resource = &nas100d_flash_resource, |
40 | }; | 53 | }; |
41 | 54 | ||
42 | #ifdef CONFIG_LEDS_IXP4XX | 55 | static struct i2c_board_info __initdata nas100d_i2c_board_info [] = { |
43 | static struct resource nas100d_led_resources[] = { | 56 | { |
57 | I2C_BOARD_INFO("rtc-pcf8563", 0x51), | ||
58 | }, | ||
59 | }; | ||
60 | |||
61 | static struct gpio_led nas100d_led_pins[] = { | ||
44 | { | 62 | { |
45 | .name = "wlan", /* green led */ | 63 | .name = "wlan", /* green led */ |
46 | .start = 0, | 64 | .gpio = NAS100D_LED_WLAN_GPIO, |
47 | .end = 0, | 65 | .active_low = true, |
48 | .flags = IXP4XX_GPIO_LOW, | ||
49 | }, | 66 | }, |
50 | { | 67 | { |
51 | .name = "ready", /* blue power led (off is flashing!) */ | 68 | .name = "power", /* blue power led (off=flashing) */ |
52 | .start = 15, | 69 | .gpio = NAS100D_LED_PWR_GPIO, |
53 | .end = 15, | 70 | .active_low = true, |
54 | .flags = IXP4XX_GPIO_LOW, | ||
55 | }, | 71 | }, |
56 | { | 72 | { |
57 | .name = "disk", /* yellow led */ | 73 | .name = "disk", /* yellow led */ |
58 | .start = 3, | 74 | .gpio = NAS100D_LED_DISK_GPIO, |
59 | .end = 3, | 75 | .active_low = true, |
60 | .flags = IXP4XX_GPIO_LOW, | ||
61 | }, | 76 | }, |
62 | }; | 77 | }; |
63 | 78 | ||
79 | static struct gpio_led_platform_data nas100d_led_data = { | ||
80 | .num_leds = ARRAY_SIZE(nas100d_led_pins), | ||
81 | .leds = nas100d_led_pins, | ||
82 | }; | ||
83 | |||
64 | static struct platform_device nas100d_leds = { | 84 | static struct platform_device nas100d_leds = { |
65 | .name = "IXP4XX-GPIO-LED", | 85 | .name = "leds-gpio", |
66 | .id = -1, | 86 | .id = -1, |
67 | .num_resources = ARRAY_SIZE(nas100d_led_resources), | 87 | .dev.platform_data = &nas100d_led_data, |
68 | .resource = nas100d_led_resources, | ||
69 | }; | 88 | }; |
70 | #endif | ||
71 | 89 | ||
72 | static struct i2c_gpio_platform_data nas100d_i2c_gpio_data = { | 90 | static struct i2c_gpio_platform_data nas100d_i2c_gpio_data = { |
73 | .sda_pin = NAS100D_SDA_PIN, | 91 | .sda_pin = NAS100D_SDA_PIN, |
@@ -125,12 +143,28 @@ static struct platform_device nas100d_uart = { | |||
125 | .resource = nas100d_uart_resources, | 143 | .resource = nas100d_uart_resources, |
126 | }; | 144 | }; |
127 | 145 | ||
146 | /* Built-in 10/100 Ethernet MAC interfaces */ | ||
147 | static struct eth_plat_info nas100d_plat_eth[] = { | ||
148 | { | ||
149 | .phy = 0, | ||
150 | .rxq = 3, | ||
151 | .txreadyq = 20, | ||
152 | } | ||
153 | }; | ||
154 | |||
155 | static struct platform_device nas100d_eth[] = { | ||
156 | { | ||
157 | .name = "ixp4xx_eth", | ||
158 | .id = IXP4XX_ETH_NPEB, | ||
159 | .dev.platform_data = nas100d_plat_eth, | ||
160 | } | ||
161 | }; | ||
162 | |||
128 | static struct platform_device *nas100d_devices[] __initdata = { | 163 | static struct platform_device *nas100d_devices[] __initdata = { |
129 | &nas100d_i2c_gpio, | 164 | &nas100d_i2c_gpio, |
130 | &nas100d_flash, | 165 | &nas100d_flash, |
131 | #ifdef CONFIG_LEDS_IXP4XX | ||
132 | &nas100d_leds, | 166 | &nas100d_leds, |
133 | #endif | 167 | &nas100d_eth[0], |
134 | }; | 168 | }; |
135 | 169 | ||
136 | static void nas100d_power_off(void) | 170 | static void nas100d_power_off(void) |
@@ -144,8 +178,63 @@ static void nas100d_power_off(void) | |||
144 | gpio_line_set(NAS100D_PO_GPIO, IXP4XX_GPIO_HIGH); | 178 | gpio_line_set(NAS100D_PO_GPIO, IXP4XX_GPIO_HIGH); |
145 | } | 179 | } |
146 | 180 | ||
181 | /* This is used to make sure the power-button pusher is serious. The button | ||
182 | * must be held until the value of this counter reaches zero. | ||
183 | */ | ||
184 | static int power_button_countdown; | ||
185 | |||
186 | /* Must hold the button down for at least this many counts to be processed */ | ||
187 | #define PBUTTON_HOLDDOWN_COUNT 4 /* 2 secs */ | ||
188 | |||
189 | static void nas100d_power_handler(unsigned long data); | ||
190 | static DEFINE_TIMER(nas100d_power_timer, nas100d_power_handler, 0, 0); | ||
191 | |||
192 | static void nas100d_power_handler(unsigned long data) | ||
193 | { | ||
194 | /* This routine is called twice per second to check the | ||
195 | * state of the power button. | ||
196 | */ | ||
197 | |||
198 | if (gpio_get_value(NAS100D_PB_GPIO)) { | ||
199 | |||
200 | /* IO Pin is 1 (button pushed) */ | ||
201 | if (power_button_countdown > 0) | ||
202 | power_button_countdown--; | ||
203 | |||
204 | } else { | ||
205 | |||
206 | /* Done on button release, to allow for auto-power-on mods. */ | ||
207 | if (power_button_countdown == 0) { | ||
208 | /* Signal init to do the ctrlaltdel action, | ||
209 | * this will bypass init if it hasn't started | ||
210 | * and do a kernel_restart. | ||
211 | */ | ||
212 | ctrl_alt_del(); | ||
213 | |||
214 | /* Change the state of the power LED to "blink" */ | ||
215 | gpio_line_set(NAS100D_LED_PWR_GPIO, IXP4XX_GPIO_LOW); | ||
216 | } else { | ||
217 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
218 | } | ||
219 | } | ||
220 | |||
221 | mod_timer(&nas100d_power_timer, jiffies + msecs_to_jiffies(500)); | ||
222 | } | ||
223 | |||
224 | static irqreturn_t nas100d_reset_handler(int irq, void *dev_id) | ||
225 | { | ||
226 | /* This is the paper-clip reset, it shuts the machine down directly. */ | ||
227 | machine_power_off(); | ||
228 | |||
229 | return IRQ_HANDLED; | ||
230 | } | ||
231 | |||
147 | static void __init nas100d_init(void) | 232 | static void __init nas100d_init(void) |
148 | { | 233 | { |
234 | DECLARE_MAC_BUF(mac_buf); | ||
235 | uint8_t __iomem *f; | ||
236 | int i; | ||
237 | |||
149 | ixp4xx_sys_init(); | 238 | ixp4xx_sys_init(); |
150 | 239 | ||
151 | /* gpio 14 and 15 are _not_ clocks */ | 240 | /* gpio 14 and 15 are _not_ clocks */ |
@@ -155,7 +244,8 @@ static void __init nas100d_init(void) | |||
155 | nas100d_flash_resource.end = | 244 | nas100d_flash_resource.end = |
156 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; | 245 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; |
157 | 246 | ||
158 | pm_power_off = nas100d_power_off; | 247 | i2c_register_board_info(0, nas100d_i2c_board_info, |
248 | ARRAY_SIZE(nas100d_i2c_board_info)); | ||
159 | 249 | ||
160 | /* | 250 | /* |
161 | * This is only useful on a modified machine, but it is valuable | 251 | * This is only useful on a modified machine, but it is valuable |
@@ -165,6 +255,48 @@ static void __init nas100d_init(void) | |||
165 | (void)platform_device_register(&nas100d_uart); | 255 | (void)platform_device_register(&nas100d_uart); |
166 | 256 | ||
167 | platform_add_devices(nas100d_devices, ARRAY_SIZE(nas100d_devices)); | 257 | platform_add_devices(nas100d_devices, ARRAY_SIZE(nas100d_devices)); |
258 | |||
259 | pm_power_off = nas100d_power_off; | ||
260 | |||
261 | if (request_irq(gpio_to_irq(NAS100D_RB_GPIO), &nas100d_reset_handler, | ||
262 | IRQF_DISABLED | IRQF_TRIGGER_LOW, | ||
263 | "NAS100D reset button", NULL) < 0) { | ||
264 | |||
265 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
266 | gpio_to_irq(NAS100D_RB_GPIO)); | ||
267 | } | ||
268 | |||
269 | /* The power button on the Iomega NAS100d is on GPIO 14, but | ||
270 | * it cannot handle interrupts on that GPIO line. So we'll | ||
271 | * have to poll it with a kernel timer. | ||
272 | */ | ||
273 | |||
274 | /* Make sure that the power button GPIO is set up as an input */ | ||
275 | gpio_line_config(NAS100D_PB_GPIO, IXP4XX_GPIO_IN); | ||
276 | |||
277 | /* Set the initial value for the power button IRQ handler */ | ||
278 | power_button_countdown = PBUTTON_HOLDDOWN_COUNT; | ||
279 | |||
280 | mod_timer(&nas100d_power_timer, jiffies + msecs_to_jiffies(500)); | ||
281 | |||
282 | /* | ||
283 | * Map in a portion of the flash and read the MAC address. | ||
284 | * Since it is stored in BE in the flash itself, we need to | ||
285 | * byteswap it if we're in LE mode. | ||
286 | */ | ||
287 | f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x1000000); | ||
288 | if (f) { | ||
289 | for (i = 0; i < 6; i++) | ||
290 | #ifdef __ARMEB__ | ||
291 | nas100d_plat_eth[0].hwaddr[i] = readb(f + 0xFC0FD8 + i); | ||
292 | #else | ||
293 | nas100d_plat_eth[0].hwaddr[i] = readb(f + 0xFC0FD8 + (i^3)); | ||
294 | #endif | ||
295 | iounmap(f); | ||
296 | } | ||
297 | printk(KERN_INFO "NAS100D: Using MAC address %s for port 0\n", | ||
298 | print_mac(mac_buf, nas100d_plat_eth[0].hwaddr)); | ||
299 | |||
168 | } | 300 | } |
169 | 301 | ||
170 | MACHINE_START(NAS100D, "Iomega NAS 100d") | 302 | MACHINE_START(NAS100D, "Iomega NAS 100d") |
diff --git a/arch/arm/mach-ixp4xx/nslu2-power.c b/arch/arm/mach-ixp4xx/nslu2-power.c deleted file mode 100644 index 6f10dc208320..000000000000 --- a/arch/arm/mach-ixp4xx/nslu2-power.c +++ /dev/null | |||
@@ -1,91 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-ixp4xx/nslu2-power.c | ||
3 | * | ||
4 | * NSLU2 Power/Reset driver | ||
5 | * | ||
6 | * Copyright (C) 2005 Tower Technologies | ||
7 | * | ||
8 | * based on nslu2-io.c | ||
9 | * Copyright (C) 2004 Karen Spearel | ||
10 | * | ||
11 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
12 | * Maintainers: http://www.nslu2-linux.org/ | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License version 2 as | ||
16 | * published by the Free Software Foundation. | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #include <linux/module.h> | ||
21 | #include <linux/reboot.h> | ||
22 | #include <linux/irq.h> | ||
23 | #include <linux/interrupt.h> | ||
24 | |||
25 | #include <asm/mach-types.h> | ||
26 | |||
27 | static irqreturn_t nslu2_power_handler(int irq, void *dev_id) | ||
28 | { | ||
29 | /* Signal init to do the ctrlaltdel action, this will bypass init if | ||
30 | * it hasn't started and do a kernel_restart. | ||
31 | */ | ||
32 | ctrl_alt_del(); | ||
33 | |||
34 | return IRQ_HANDLED; | ||
35 | } | ||
36 | |||
37 | static irqreturn_t nslu2_reset_handler(int irq, void *dev_id) | ||
38 | { | ||
39 | /* This is the paper-clip reset, it shuts the machine down directly. | ||
40 | */ | ||
41 | machine_power_off(); | ||
42 | |||
43 | return IRQ_HANDLED; | ||
44 | } | ||
45 | |||
46 | static int __init nslu2_power_init(void) | ||
47 | { | ||
48 | if (!(machine_is_nslu2())) | ||
49 | return 0; | ||
50 | |||
51 | *IXP4XX_GPIO_GPISR = 0x20400000; /* read the 2 irqs to clr */ | ||
52 | |||
53 | set_irq_type(NSLU2_RB_IRQ, IRQT_LOW); | ||
54 | set_irq_type(NSLU2_PB_IRQ, IRQT_HIGH); | ||
55 | |||
56 | if (request_irq(NSLU2_RB_IRQ, &nslu2_reset_handler, | ||
57 | IRQF_DISABLED, "NSLU2 reset button", NULL) < 0) { | ||
58 | |||
59 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
60 | NSLU2_RB_IRQ); | ||
61 | |||
62 | return -EIO; | ||
63 | } | ||
64 | |||
65 | if (request_irq(NSLU2_PB_IRQ, &nslu2_power_handler, | ||
66 | IRQF_DISABLED, "NSLU2 power button", NULL) < 0) { | ||
67 | |||
68 | printk(KERN_DEBUG "Power Button IRQ %d not available\n", | ||
69 | NSLU2_PB_IRQ); | ||
70 | |||
71 | return -EIO; | ||
72 | } | ||
73 | |||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | static void __exit nslu2_power_exit(void) | ||
78 | { | ||
79 | if (!(machine_is_nslu2())) | ||
80 | return; | ||
81 | |||
82 | free_irq(NSLU2_RB_IRQ, NULL); | ||
83 | free_irq(NSLU2_PB_IRQ, NULL); | ||
84 | } | ||
85 | |||
86 | module_init(nslu2_power_init); | ||
87 | module_exit(nslu2_power_exit); | ||
88 | |||
89 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
90 | MODULE_DESCRIPTION("NSLU2 Power/Reset driver"); | ||
91 | MODULE_LICENSE("GPL"); | ||
diff --git a/arch/arm/mach-ixp4xx/nslu2-setup.c b/arch/arm/mach-ixp4xx/nslu2-setup.c index 77277d27fcc5..acaebcbce53a 100644 --- a/arch/arm/mach-ixp4xx/nslu2-setup.c +++ b/arch/arm/mach-ixp4xx/nslu2-setup.c | |||
@@ -3,27 +3,35 @@ | |||
3 | * | 3 | * |
4 | * NSLU2 board-setup | 4 | * NSLU2 board-setup |
5 | * | 5 | * |
6 | * based ixdp425-setup.c: | 6 | * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au> |
7 | * | ||
8 | * based on ixdp425-setup.c: | ||
7 | * Copyright (C) 2003-2004 MontaVista Software, Inc. | 9 | * Copyright (C) 2003-2004 MontaVista Software, Inc. |
10 | * based on nslu2-power.c: | ||
11 | * Copyright (C) 2005 Tower Technologies | ||
8 | * | 12 | * |
9 | * Author: Mark Rakes <mrakes at mac.com> | 13 | * Author: Mark Rakes <mrakes at mac.com> |
10 | * Author: Rod Whitby <rod@whitby.id.au> | 14 | * Author: Rod Whitby <rod@whitby.id.au> |
15 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
11 | * Maintainers: http://www.nslu2-linux.org/ | 16 | * Maintainers: http://www.nslu2-linux.org/ |
12 | * | 17 | * |
13 | * Fixed missing init_time in MACHINE_START kas11 10/22/04 | ||
14 | * Changed to conform to new style __init ixdp425 kas11 10/22/04 | ||
15 | */ | 18 | */ |
16 | 19 | ||
17 | #include <linux/kernel.h> | 20 | #include <linux/if_ether.h> |
21 | #include <linux/irq.h> | ||
18 | #include <linux/serial.h> | 22 | #include <linux/serial.h> |
19 | #include <linux/serial_8250.h> | 23 | #include <linux/serial_8250.h> |
20 | #include <linux/leds.h> | 24 | #include <linux/leds.h> |
25 | #include <linux/reboot.h> | ||
26 | #include <linux/i2c.h> | ||
21 | #include <linux/i2c-gpio.h> | 27 | #include <linux/i2c-gpio.h> |
22 | 28 | ||
23 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
24 | #include <asm/mach/arch.h> | 30 | #include <asm/mach/arch.h> |
25 | #include <asm/mach/flash.h> | 31 | #include <asm/mach/flash.h> |
26 | #include <asm/mach/time.h> | 32 | #include <asm/mach/time.h> |
33 | #include <asm/io.h> | ||
34 | #include <asm/gpio.h> | ||
27 | 35 | ||
28 | static struct flash_platform_data nslu2_flash_data = { | 36 | static struct flash_platform_data nslu2_flash_data = { |
29 | .map_name = "cfi_probe", | 37 | .map_name = "cfi_probe", |
@@ -47,41 +55,43 @@ static struct i2c_gpio_platform_data nslu2_i2c_gpio_data = { | |||
47 | .scl_pin = NSLU2_SCL_PIN, | 55 | .scl_pin = NSLU2_SCL_PIN, |
48 | }; | 56 | }; |
49 | 57 | ||
50 | #ifdef CONFIG_LEDS_IXP4XX | 58 | static struct i2c_board_info __initdata nslu2_i2c_board_info [] = { |
51 | static struct resource nslu2_led_resources[] = { | 59 | { |
60 | I2C_BOARD_INFO("rtc-x1205", 0x6f), | ||
61 | }, | ||
62 | }; | ||
63 | |||
64 | static struct gpio_led nslu2_led_pins[] = { | ||
52 | { | 65 | { |
53 | .name = "ready", /* green led */ | 66 | .name = "ready", /* green led */ |
54 | .start = NSLU2_LED_GRN_GPIO, | 67 | .gpio = NSLU2_LED_GRN_GPIO, |
55 | .end = NSLU2_LED_GRN_GPIO, | ||
56 | .flags = IXP4XX_GPIO_HIGH, | ||
57 | }, | 68 | }, |
58 | { | 69 | { |
59 | .name = "status", /* red led */ | 70 | .name = "status", /* red led */ |
60 | .start = NSLU2_LED_RED_GPIO, | 71 | .gpio = NSLU2_LED_RED_GPIO, |
61 | .end = NSLU2_LED_RED_GPIO, | ||
62 | .flags = IXP4XX_GPIO_HIGH, | ||
63 | }, | 72 | }, |
64 | { | 73 | { |
65 | .name = "disk-1", | 74 | .name = "disk-1", |
66 | .start = NSLU2_LED_DISK1_GPIO, | 75 | .gpio = NSLU2_LED_DISK1_GPIO, |
67 | .end = NSLU2_LED_DISK1_GPIO, | 76 | .active_low = true, |
68 | .flags = IXP4XX_GPIO_LOW, | ||
69 | }, | 77 | }, |
70 | { | 78 | { |
71 | .name = "disk-2", | 79 | .name = "disk-2", |
72 | .start = NSLU2_LED_DISK2_GPIO, | 80 | .gpio = NSLU2_LED_DISK2_GPIO, |
73 | .end = NSLU2_LED_DISK2_GPIO, | 81 | .active_low = true, |
74 | .flags = IXP4XX_GPIO_LOW, | ||
75 | }, | 82 | }, |
76 | }; | 83 | }; |
77 | 84 | ||
85 | static struct gpio_led_platform_data nslu2_led_data = { | ||
86 | .num_leds = ARRAY_SIZE(nslu2_led_pins), | ||
87 | .leds = nslu2_led_pins, | ||
88 | }; | ||
89 | |||
78 | static struct platform_device nslu2_leds = { | 90 | static struct platform_device nslu2_leds = { |
79 | .name = "IXP4XX-GPIO-LED", | 91 | .name = "leds-gpio", |
80 | .id = -1, | 92 | .id = -1, |
81 | .num_resources = ARRAY_SIZE(nslu2_led_resources), | 93 | .dev.platform_data = &nslu2_led_data, |
82 | .resource = nslu2_led_resources, | ||
83 | }; | 94 | }; |
84 | #endif | ||
85 | 95 | ||
86 | static struct platform_device nslu2_i2c_gpio = { | 96 | static struct platform_device nslu2_i2c_gpio = { |
87 | .name = "i2c-gpio", | 97 | .name = "i2c-gpio", |
@@ -140,13 +150,29 @@ static struct platform_device nslu2_uart = { | |||
140 | .resource = nslu2_uart_resources, | 150 | .resource = nslu2_uart_resources, |
141 | }; | 151 | }; |
142 | 152 | ||
153 | /* Built-in 10/100 Ethernet MAC interfaces */ | ||
154 | static struct eth_plat_info nslu2_plat_eth[] = { | ||
155 | { | ||
156 | .phy = 1, | ||
157 | .rxq = 3, | ||
158 | .txreadyq = 20, | ||
159 | } | ||
160 | }; | ||
161 | |||
162 | static struct platform_device nslu2_eth[] = { | ||
163 | { | ||
164 | .name = "ixp4xx_eth", | ||
165 | .id = IXP4XX_ETH_NPEB, | ||
166 | .dev.platform_data = nslu2_plat_eth, | ||
167 | } | ||
168 | }; | ||
169 | |||
143 | static struct platform_device *nslu2_devices[] __initdata = { | 170 | static struct platform_device *nslu2_devices[] __initdata = { |
144 | &nslu2_i2c_gpio, | 171 | &nslu2_i2c_gpio, |
145 | &nslu2_flash, | 172 | &nslu2_flash, |
146 | &nslu2_beeper, | 173 | &nslu2_beeper, |
147 | #ifdef CONFIG_LEDS_IXP4XX | ||
148 | &nslu2_leds, | 174 | &nslu2_leds, |
149 | #endif | 175 | &nslu2_eth[0], |
150 | }; | 176 | }; |
151 | 177 | ||
152 | static void nslu2_power_off(void) | 178 | static void nslu2_power_off(void) |
@@ -160,6 +186,25 @@ static void nslu2_power_off(void) | |||
160 | gpio_line_set(NSLU2_PO_GPIO, IXP4XX_GPIO_HIGH); | 186 | gpio_line_set(NSLU2_PO_GPIO, IXP4XX_GPIO_HIGH); |
161 | } | 187 | } |
162 | 188 | ||
189 | static irqreturn_t nslu2_power_handler(int irq, void *dev_id) | ||
190 | { | ||
191 | /* Signal init to do the ctrlaltdel action, this will bypass init if | ||
192 | * it hasn't started and do a kernel_restart. | ||
193 | */ | ||
194 | ctrl_alt_del(); | ||
195 | |||
196 | return IRQ_HANDLED; | ||
197 | } | ||
198 | |||
199 | static irqreturn_t nslu2_reset_handler(int irq, void *dev_id) | ||
200 | { | ||
201 | /* This is the paper-clip reset, it shuts the machine down directly. | ||
202 | */ | ||
203 | machine_power_off(); | ||
204 | |||
205 | return IRQ_HANDLED; | ||
206 | } | ||
207 | |||
163 | static void __init nslu2_timer_init(void) | 208 | static void __init nslu2_timer_init(void) |
164 | { | 209 | { |
165 | /* The xtal on this machine is non-standard. */ | 210 | /* The xtal on this machine is non-standard. */ |
@@ -175,13 +220,18 @@ static struct sys_timer nslu2_timer = { | |||
175 | 220 | ||
176 | static void __init nslu2_init(void) | 221 | static void __init nslu2_init(void) |
177 | { | 222 | { |
223 | DECLARE_MAC_BUF(mac_buf); | ||
224 | uint8_t __iomem *f; | ||
225 | int i; | ||
226 | |||
178 | ixp4xx_sys_init(); | 227 | ixp4xx_sys_init(); |
179 | 228 | ||
180 | nslu2_flash_resource.start = IXP4XX_EXP_BUS_BASE(0); | 229 | nslu2_flash_resource.start = IXP4XX_EXP_BUS_BASE(0); |
181 | nslu2_flash_resource.end = | 230 | nslu2_flash_resource.end = |
182 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; | 231 | IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1; |
183 | 232 | ||
184 | pm_power_off = nslu2_power_off; | 233 | i2c_register_board_info(0, nslu2_i2c_board_info, |
234 | ARRAY_SIZE(nslu2_i2c_board_info)); | ||
185 | 235 | ||
186 | /* | 236 | /* |
187 | * This is only useful on a modified machine, but it is valuable | 237 | * This is only useful on a modified machine, but it is valuable |
@@ -191,6 +241,43 @@ static void __init nslu2_init(void) | |||
191 | (void)platform_device_register(&nslu2_uart); | 241 | (void)platform_device_register(&nslu2_uart); |
192 | 242 | ||
193 | platform_add_devices(nslu2_devices, ARRAY_SIZE(nslu2_devices)); | 243 | platform_add_devices(nslu2_devices, ARRAY_SIZE(nslu2_devices)); |
244 | |||
245 | pm_power_off = nslu2_power_off; | ||
246 | |||
247 | if (request_irq(gpio_to_irq(NSLU2_RB_GPIO), &nslu2_reset_handler, | ||
248 | IRQF_DISABLED | IRQF_TRIGGER_LOW, | ||
249 | "NSLU2 reset button", NULL) < 0) { | ||
250 | |||
251 | printk(KERN_DEBUG "Reset Button IRQ %d not available\n", | ||
252 | gpio_to_irq(NSLU2_RB_GPIO)); | ||
253 | } | ||
254 | |||
255 | if (request_irq(gpio_to_irq(NSLU2_PB_GPIO), &nslu2_power_handler, | ||
256 | IRQF_DISABLED | IRQF_TRIGGER_HIGH, | ||
257 | "NSLU2 power button", NULL) < 0) { | ||
258 | |||
259 | printk(KERN_DEBUG "Power Button IRQ %d not available\n", | ||
260 | gpio_to_irq(NSLU2_PB_GPIO)); | ||
261 | } | ||
262 | |||
263 | /* | ||
264 | * Map in a portion of the flash and read the MAC address. | ||
265 | * Since it is stored in BE in the flash itself, we need to | ||
266 | * byteswap it if we're in LE mode. | ||
267 | */ | ||
268 | f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x40000); | ||
269 | if (f) { | ||
270 | for (i = 0; i < 6; i++) | ||
271 | #ifdef __ARMEB__ | ||
272 | nslu2_plat_eth[0].hwaddr[i] = readb(f + 0x3FFB0 + i); | ||
273 | #else | ||
274 | nslu2_plat_eth[0].hwaddr[i] = readb(f + 0x3FFB0 + (i^3)); | ||
275 | #endif | ||
276 | iounmap(f); | ||
277 | } | ||
278 | printk(KERN_INFO "NSLU2: Using MAC address %s for port 0\n", | ||
279 | print_mac(mac_buf, nslu2_plat_eth[0].hwaddr)); | ||
280 | |||
194 | } | 281 | } |
195 | 282 | ||
196 | MACHINE_START(NSLU2, "Linksys NSLU2") | 283 | MACHINE_START(NSLU2, "Linksys NSLU2") |
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile index b5c916c0747d..6e0c4f5b5ae6 100644 --- a/arch/arm/mach-pxa/Makefile +++ b/arch/arm/mach-pxa/Makefile | |||
@@ -3,10 +3,11 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | # Common support (must be linked before board specific support) | 5 | # Common support (must be linked before board specific support) |
6 | obj-y += clock.o devices.o generic.o irq.o dma.o time.o | 6 | obj-y += clock.o devices.o generic.o irq.o dma.o \ |
7 | time.o gpio.o | ||
7 | obj-$(CONFIG_PXA25x) += pxa25x.o | 8 | obj-$(CONFIG_PXA25x) += pxa25x.o |
8 | obj-$(CONFIG_PXA27x) += pxa27x.o | 9 | obj-$(CONFIG_PXA27x) += pxa27x.o |
9 | obj-$(CONFIG_PXA3xx) += pxa3xx.o mfp.o | 10 | obj-$(CONFIG_PXA3xx) += pxa3xx.o mfp.o smemc.o |
10 | obj-$(CONFIG_CPU_PXA300) += pxa300.o | 11 | obj-$(CONFIG_CPU_PXA300) += pxa300.o |
11 | obj-$(CONFIG_CPU_PXA320) += pxa320.o | 12 | obj-$(CONFIG_CPU_PXA320) += pxa320.o |
12 | 13 | ||
diff --git a/arch/arm/mach-pxa/cm-x270.c b/arch/arm/mach-pxa/cm-x270.c index 28cfd71c032d..6012177a29a3 100644 --- a/arch/arm/mach-pxa/cm-x270.c +++ b/arch/arm/mach-pxa/cm-x270.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/mach/map.h> | 29 | #include <asm/mach/map.h> |
30 | 30 | ||
31 | #include <asm/arch/pxa-regs.h> | 31 | #include <asm/arch/pxa-regs.h> |
32 | #include <asm/arch/pxa2xx-regs.h> | ||
32 | #include <asm/arch/pxafb.h> | 33 | #include <asm/arch/pxafb.h> |
33 | #include <asm/arch/ohci.h> | 34 | #include <asm/arch/ohci.h> |
34 | #include <asm/arch/mmc.h> | 35 | #include <asm/arch/mmc.h> |
diff --git a/arch/arm/mach-pxa/corgi_ssp.c b/arch/arm/mach-pxa/corgi_ssp.c index efba65edcd51..31706224a04c 100644 --- a/arch/arm/mach-pxa/corgi_ssp.c +++ b/arch/arm/mach-pxa/corgi_ssp.c | |||
@@ -32,7 +32,7 @@ static struct corgissp_machinfo *ssp_machinfo; | |||
32 | /* | 32 | /* |
33 | * There are three devices connected to the SSP interface: | 33 | * There are three devices connected to the SSP interface: |
34 | * 1. A touchscreen controller (TI ADS7846 compatible) | 34 | * 1. A touchscreen controller (TI ADS7846 compatible) |
35 | * 2. An LCD contoller (with some Backlight functionality) | 35 | * 2. An LCD controller (with some Backlight functionality) |
36 | * 3. A battery monitoring IC (Maxim MAX1111) | 36 | * 3. A battery monitoring IC (Maxim MAX1111) |
37 | * | 37 | * |
38 | * Each device uses a different speed/mode of communication. | 38 | * Each device uses a different speed/mode of communication. |
diff --git a/arch/arm/mach-pxa/devices.c b/arch/arm/mach-pxa/devices.c index 50ff453ad370..bfccb80ac8ef 100644 --- a/arch/arm/mach-pxa/devices.c +++ b/arch/arm/mach-pxa/devices.c | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <asm/arch/mmc.h> | 10 | #include <asm/arch/mmc.h> |
11 | #include <asm/arch/irda.h> | 11 | #include <asm/arch/irda.h> |
12 | #include <asm/arch/i2c.h> | 12 | #include <asm/arch/i2c.h> |
13 | #include <asm/arch/ohci.h> | ||
13 | 14 | ||
14 | #include "devices.h" | 15 | #include "devices.h" |
15 | 16 | ||
diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 698aeec52961..80721c610d41 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/ioport.h> | 23 | #include <linux/ioport.h> |
24 | #include <linux/pm.h> | 24 | #include <linux/pm.h> |
25 | #include <linux/string.h> | 25 | #include <linux/string.h> |
26 | #include <linux/sysdev.h> | ||
26 | 27 | ||
27 | #include <asm/hardware.h> | 28 | #include <asm/hardware.h> |
28 | #include <asm/irq.h> | 29 | #include <asm/irq.h> |
@@ -31,7 +32,6 @@ | |||
31 | #include <asm/mach/map.h> | 32 | #include <asm/mach/map.h> |
32 | 33 | ||
33 | #include <asm/arch/pxa-regs.h> | 34 | #include <asm/arch/pxa-regs.h> |
34 | #include <asm/arch/gpio.h> | ||
35 | 35 | ||
36 | #include "generic.h" | 36 | #include "generic.h" |
37 | 37 | ||
@@ -66,97 +66,6 @@ unsigned int get_memclk_frequency_10khz(void) | |||
66 | EXPORT_SYMBOL(get_memclk_frequency_10khz); | 66 | EXPORT_SYMBOL(get_memclk_frequency_10khz); |
67 | 67 | ||
68 | /* | 68 | /* |
69 | * Handy function to set GPIO alternate functions | ||
70 | */ | ||
71 | int pxa_last_gpio; | ||
72 | |||
73 | int pxa_gpio_mode(int gpio_mode) | ||
74 | { | ||
75 | unsigned long flags; | ||
76 | int gpio = gpio_mode & GPIO_MD_MASK_NR; | ||
77 | int fn = (gpio_mode & GPIO_MD_MASK_FN) >> 8; | ||
78 | int gafr; | ||
79 | |||
80 | if (gpio > pxa_last_gpio) | ||
81 | return -EINVAL; | ||
82 | |||
83 | local_irq_save(flags); | ||
84 | if (gpio_mode & GPIO_DFLT_LOW) | ||
85 | GPCR(gpio) = GPIO_bit(gpio); | ||
86 | else if (gpio_mode & GPIO_DFLT_HIGH) | ||
87 | GPSR(gpio) = GPIO_bit(gpio); | ||
88 | if (gpio_mode & GPIO_MD_MASK_DIR) | ||
89 | GPDR(gpio) |= GPIO_bit(gpio); | ||
90 | else | ||
91 | GPDR(gpio) &= ~GPIO_bit(gpio); | ||
92 | gafr = GAFR(gpio) & ~(0x3 << (((gpio) & 0xf)*2)); | ||
93 | GAFR(gpio) = gafr | (fn << (((gpio) & 0xf)*2)); | ||
94 | local_irq_restore(flags); | ||
95 | |||
96 | return 0; | ||
97 | } | ||
98 | |||
99 | EXPORT_SYMBOL(pxa_gpio_mode); | ||
100 | |||
101 | int gpio_direction_input(unsigned gpio) | ||
102 | { | ||
103 | unsigned long flags; | ||
104 | u32 mask; | ||
105 | |||
106 | if (gpio > pxa_last_gpio) | ||
107 | return -EINVAL; | ||
108 | |||
109 | mask = GPIO_bit(gpio); | ||
110 | local_irq_save(flags); | ||
111 | GPDR(gpio) &= ~mask; | ||
112 | local_irq_restore(flags); | ||
113 | |||
114 | return 0; | ||
115 | } | ||
116 | EXPORT_SYMBOL(gpio_direction_input); | ||
117 | |||
118 | int gpio_direction_output(unsigned gpio, int value) | ||
119 | { | ||
120 | unsigned long flags; | ||
121 | u32 mask; | ||
122 | |||
123 | if (gpio > pxa_last_gpio) | ||
124 | return -EINVAL; | ||
125 | |||
126 | mask = GPIO_bit(gpio); | ||
127 | local_irq_save(flags); | ||
128 | if (value) | ||
129 | GPSR(gpio) = mask; | ||
130 | else | ||
131 | GPCR(gpio) = mask; | ||
132 | GPDR(gpio) |= mask; | ||
133 | local_irq_restore(flags); | ||
134 | |||
135 | return 0; | ||
136 | } | ||
137 | EXPORT_SYMBOL(gpio_direction_output); | ||
138 | |||
139 | /* | ||
140 | * Return GPIO level | ||
141 | */ | ||
142 | int pxa_gpio_get_value(unsigned gpio) | ||
143 | { | ||
144 | return __gpio_get_value(gpio); | ||
145 | } | ||
146 | |||
147 | EXPORT_SYMBOL(pxa_gpio_get_value); | ||
148 | |||
149 | /* | ||
150 | * Set output GPIO level | ||
151 | */ | ||
152 | void pxa_gpio_set_value(unsigned gpio, int value) | ||
153 | { | ||
154 | __gpio_set_value(gpio, value); | ||
155 | } | ||
156 | |||
157 | EXPORT_SYMBOL(pxa_gpio_set_value); | ||
158 | |||
159 | /* | ||
160 | * Routine to safely enable or disable a clock in the CKEN | 69 | * Routine to safely enable or disable a clock in the CKEN |
161 | */ | 70 | */ |
162 | void __pxa_set_cken(int clock, int enable) | 71 | void __pxa_set_cken(int clock, int enable) |
@@ -171,7 +80,6 @@ void __pxa_set_cken(int clock, int enable) | |||
171 | 80 | ||
172 | local_irq_restore(flags); | 81 | local_irq_restore(flags); |
173 | } | 82 | } |
174 | |||
175 | EXPORT_SYMBOL(__pxa_set_cken); | 83 | EXPORT_SYMBOL(__pxa_set_cken); |
176 | 84 | ||
177 | /* | 85 | /* |
@@ -226,3 +134,59 @@ void __init pxa_map_io(void) | |||
226 | iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc)); | 134 | iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc)); |
227 | get_clk_frequency_khz(1); | 135 | get_clk_frequency_khz(1); |
228 | } | 136 | } |
137 | |||
138 | #ifdef CONFIG_PM | ||
139 | |||
140 | static unsigned long saved_gplr[4]; | ||
141 | static unsigned long saved_gpdr[4]; | ||
142 | static unsigned long saved_grer[4]; | ||
143 | static unsigned long saved_gfer[4]; | ||
144 | |||
145 | static int pxa_gpio_suspend(struct sys_device *dev, pm_message_t state) | ||
146 | { | ||
147 | int i, gpio; | ||
148 | |||
149 | for (gpio = 0, i = 0; gpio < pxa_last_gpio; gpio += 32, i++) { | ||
150 | saved_gplr[i] = GPLR(gpio); | ||
151 | saved_gpdr[i] = GPDR(gpio); | ||
152 | saved_grer[i] = GRER(gpio); | ||
153 | saved_gfer[i] = GFER(gpio); | ||
154 | |||
155 | /* Clear GPIO transition detect bits */ | ||
156 | GEDR(gpio) = GEDR(gpio); | ||
157 | } | ||
158 | return 0; | ||
159 | } | ||
160 | |||
161 | static int pxa_gpio_resume(struct sys_device *dev) | ||
162 | { | ||
163 | int i, gpio; | ||
164 | |||
165 | for (gpio = 0, i = 0; gpio < pxa_last_gpio; gpio += 32, i++) { | ||
166 | /* restore level with set/clear */ | ||
167 | GPSR(gpio) = saved_gplr[i]; | ||
168 | GPCR(gpio) = ~saved_gplr[i]; | ||
169 | |||
170 | GRER(gpio) = saved_grer[i]; | ||
171 | GFER(gpio) = saved_gfer[i]; | ||
172 | GPDR(gpio) = saved_gpdr[i]; | ||
173 | } | ||
174 | return 0; | ||
175 | } | ||
176 | #else | ||
177 | #define pxa_gpio_suspend NULL | ||
178 | #define pxa_gpio_resume NULL | ||
179 | #endif | ||
180 | |||
181 | struct sysdev_class pxa_gpio_sysclass = { | ||
182 | .name = "gpio", | ||
183 | .suspend = pxa_gpio_suspend, | ||
184 | .resume = pxa_gpio_resume, | ||
185 | }; | ||
186 | |||
187 | static int __init pxa_gpio_init(void) | ||
188 | { | ||
189 | return sysdev_class_register(&pxa_gpio_sysclass); | ||
190 | } | ||
191 | |||
192 | core_initcall(pxa_gpio_init); | ||
diff --git a/arch/arm/mach-pxa/generic.h b/arch/arm/mach-pxa/generic.h index b30f240a16c7..b3d10b0e52a0 100644 --- a/arch/arm/mach-pxa/generic.h +++ b/arch/arm/mach-pxa/generic.h | |||
@@ -16,6 +16,7 @@ extern void __init pxa_init_irq_low(void); | |||
16 | extern void __init pxa_init_irq_high(void); | 16 | extern void __init pxa_init_irq_high(void); |
17 | extern void __init pxa_init_irq_gpio(int gpio_nr); | 17 | extern void __init pxa_init_irq_gpio(int gpio_nr); |
18 | extern void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int)); | 18 | extern void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int)); |
19 | extern void __init pxa_init_gpio(int gpio_nr); | ||
19 | extern void __init pxa25x_init_irq(void); | 20 | extern void __init pxa25x_init_irq(void); |
20 | extern void __init pxa27x_init_irq(void); | 21 | extern void __init pxa27x_init_irq(void); |
21 | extern void __init pxa3xx_init_irq(void); | 22 | extern void __init pxa3xx_init_irq(void); |
@@ -52,3 +53,6 @@ extern unsigned pxa3xx_get_memclk_frequency_10khz(void); | |||
52 | #define pxa3xx_get_clk_frequency_khz(x) (0) | 53 | #define pxa3xx_get_clk_frequency_khz(x) (0) |
53 | #define pxa3xx_get_memclk_frequency_10khz() (0) | 54 | #define pxa3xx_get_memclk_frequency_10khz() (0) |
54 | #endif | 55 | #endif |
56 | |||
57 | extern struct sysdev_class pxa_irq_sysclass; | ||
58 | extern struct sysdev_class pxa_gpio_sysclass; | ||
diff --git a/arch/arm/mach-pxa/gpio.c b/arch/arm/mach-pxa/gpio.c new file mode 100644 index 000000000000..8638dd7dd076 --- /dev/null +++ b/arch/arm/mach-pxa/gpio.c | |||
@@ -0,0 +1,197 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-pxa/gpio.c | ||
3 | * | ||
4 | * Generic PXA GPIO handling | ||
5 | * | ||
6 | * Author: Nicolas Pitre | ||
7 | * Created: Jun 15, 2001 | ||
8 | * Copyright: MontaVista Software Inc. | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | */ | ||
14 | |||
15 | #include <linux/init.h> | ||
16 | #include <linux/module.h> | ||
17 | |||
18 | #include <asm/gpio.h> | ||
19 | #include <asm/hardware.h> | ||
20 | #include <asm/io.h> | ||
21 | #include <asm/arch/pxa-regs.h> | ||
22 | |||
23 | #include "generic.h" | ||
24 | |||
25 | |||
26 | struct pxa_gpio_chip { | ||
27 | struct gpio_chip chip; | ||
28 | void __iomem *regbase; | ||
29 | }; | ||
30 | |||
31 | int pxa_last_gpio; | ||
32 | |||
33 | /* | ||
34 | * Configure pins for GPIO or other functions | ||
35 | */ | ||
36 | int pxa_gpio_mode(int gpio_mode) | ||
37 | { | ||
38 | unsigned long flags; | ||
39 | int gpio = gpio_mode & GPIO_MD_MASK_NR; | ||
40 | int fn = (gpio_mode & GPIO_MD_MASK_FN) >> 8; | ||
41 | int gafr; | ||
42 | |||
43 | if (gpio > pxa_last_gpio) | ||
44 | return -EINVAL; | ||
45 | |||
46 | local_irq_save(flags); | ||
47 | if (gpio_mode & GPIO_DFLT_LOW) | ||
48 | GPCR(gpio) = GPIO_bit(gpio); | ||
49 | else if (gpio_mode & GPIO_DFLT_HIGH) | ||
50 | GPSR(gpio) = GPIO_bit(gpio); | ||
51 | if (gpio_mode & GPIO_MD_MASK_DIR) | ||
52 | GPDR(gpio) |= GPIO_bit(gpio); | ||
53 | else | ||
54 | GPDR(gpio) &= ~GPIO_bit(gpio); | ||
55 | gafr = GAFR(gpio) & ~(0x3 << (((gpio) & 0xf)*2)); | ||
56 | GAFR(gpio) = gafr | (fn << (((gpio) & 0xf)*2)); | ||
57 | local_irq_restore(flags); | ||
58 | |||
59 | return 0; | ||
60 | } | ||
61 | EXPORT_SYMBOL(pxa_gpio_mode); | ||
62 | |||
63 | static int pxa_gpio_direction_input(struct gpio_chip *chip, unsigned offset) | ||
64 | { | ||
65 | unsigned long flags; | ||
66 | u32 mask = 1 << offset; | ||
67 | u32 value; | ||
68 | struct pxa_gpio_chip *pxa; | ||
69 | void __iomem *gpdr; | ||
70 | |||
71 | pxa = container_of(chip, struct pxa_gpio_chip, chip); | ||
72 | gpdr = pxa->regbase + GPDR_OFFSET; | ||
73 | local_irq_save(flags); | ||
74 | value = __raw_readl(gpdr); | ||
75 | value &= ~mask; | ||
76 | __raw_writel(value, gpdr); | ||
77 | local_irq_restore(flags); | ||
78 | |||
79 | return 0; | ||
80 | } | ||
81 | |||
82 | static int pxa_gpio_direction_output(struct gpio_chip *chip, | ||
83 | unsigned offset, int value) | ||
84 | { | ||
85 | unsigned long flags; | ||
86 | u32 mask = 1 << offset; | ||
87 | u32 tmp; | ||
88 | struct pxa_gpio_chip *pxa; | ||
89 | void __iomem *gpdr; | ||
90 | |||
91 | pxa = container_of(chip, struct pxa_gpio_chip, chip); | ||
92 | __raw_writel(mask, | ||
93 | pxa->regbase + (value ? GPSR_OFFSET : GPCR_OFFSET)); | ||
94 | gpdr = pxa->regbase + GPDR_OFFSET; | ||
95 | local_irq_save(flags); | ||
96 | tmp = __raw_readl(gpdr); | ||
97 | tmp |= mask; | ||
98 | __raw_writel(tmp, gpdr); | ||
99 | local_irq_restore(flags); | ||
100 | |||
101 | return 0; | ||
102 | } | ||
103 | |||
104 | /* | ||
105 | * Return GPIO level | ||
106 | */ | ||
107 | static int pxa_gpio_get(struct gpio_chip *chip, unsigned offset) | ||
108 | { | ||
109 | u32 mask = 1 << offset; | ||
110 | struct pxa_gpio_chip *pxa; | ||
111 | |||
112 | pxa = container_of(chip, struct pxa_gpio_chip, chip); | ||
113 | return __raw_readl(pxa->regbase + GPLR_OFFSET) & mask; | ||
114 | } | ||
115 | |||
116 | /* | ||
117 | * Set output GPIO level | ||
118 | */ | ||
119 | static void pxa_gpio_set(struct gpio_chip *chip, unsigned offset, int value) | ||
120 | { | ||
121 | u32 mask = 1 << offset; | ||
122 | struct pxa_gpio_chip *pxa; | ||
123 | |||
124 | pxa = container_of(chip, struct pxa_gpio_chip, chip); | ||
125 | |||
126 | if (value) | ||
127 | __raw_writel(mask, pxa->regbase + GPSR_OFFSET); | ||
128 | else | ||
129 | __raw_writel(mask, pxa->regbase + GPCR_OFFSET); | ||
130 | } | ||
131 | |||
132 | static struct pxa_gpio_chip pxa_gpio_chip[] = { | ||
133 | [0] = { | ||
134 | .regbase = GPIO0_BASE, | ||
135 | .chip = { | ||
136 | .label = "gpio-0", | ||
137 | .direction_input = pxa_gpio_direction_input, | ||
138 | .direction_output = pxa_gpio_direction_output, | ||
139 | .get = pxa_gpio_get, | ||
140 | .set = pxa_gpio_set, | ||
141 | .base = 0, | ||
142 | .ngpio = 32, | ||
143 | }, | ||
144 | }, | ||
145 | [1] = { | ||
146 | .regbase = GPIO1_BASE, | ||
147 | .chip = { | ||
148 | .label = "gpio-1", | ||
149 | .direction_input = pxa_gpio_direction_input, | ||
150 | .direction_output = pxa_gpio_direction_output, | ||
151 | .get = pxa_gpio_get, | ||
152 | .set = pxa_gpio_set, | ||
153 | .base = 32, | ||
154 | .ngpio = 32, | ||
155 | }, | ||
156 | }, | ||
157 | [2] = { | ||
158 | .regbase = GPIO2_BASE, | ||
159 | .chip = { | ||
160 | .label = "gpio-2", | ||
161 | .direction_input = pxa_gpio_direction_input, | ||
162 | .direction_output = pxa_gpio_direction_output, | ||
163 | .get = pxa_gpio_get, | ||
164 | .set = pxa_gpio_set, | ||
165 | .base = 64, | ||
166 | .ngpio = 32, /* 21 for PXA25x */ | ||
167 | }, | ||
168 | }, | ||
169 | #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) | ||
170 | [3] = { | ||
171 | .regbase = GPIO3_BASE, | ||
172 | .chip = { | ||
173 | .label = "gpio-3", | ||
174 | .direction_input = pxa_gpio_direction_input, | ||
175 | .direction_output = pxa_gpio_direction_output, | ||
176 | .get = pxa_gpio_get, | ||
177 | .set = pxa_gpio_set, | ||
178 | .base = 96, | ||
179 | .ngpio = 32, | ||
180 | }, | ||
181 | }, | ||
182 | #endif | ||
183 | }; | ||
184 | |||
185 | void __init pxa_init_gpio(int gpio_nr) | ||
186 | { | ||
187 | int i; | ||
188 | |||
189 | /* add a GPIO chip for each register bank. | ||
190 | * the last PXA25x register only contains 21 GPIOs | ||
191 | */ | ||
192 | for (i = 0; i < gpio_nr; i += 32) { | ||
193 | if (i+32 > gpio_nr) | ||
194 | pxa_gpio_chip[i/32].chip.ngpio = gpio_nr - i; | ||
195 | gpiochip_add(&pxa_gpio_chip[i/32].chip); | ||
196 | } | ||
197 | } | ||
diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index 07acb45b16ea..36c6a68beca2 100644 --- a/arch/arm/mach-pxa/irq.c +++ b/arch/arm/mach-pxa/irq.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/module.h> | 16 | #include <linux/module.h> |
17 | #include <linux/interrupt.h> | 17 | #include <linux/interrupt.h> |
18 | #include <linux/sysdev.h> | ||
18 | 19 | ||
19 | #include <asm/hardware.h> | 20 | #include <asm/hardware.h> |
20 | #include <asm/irq.h> | 21 | #include <asm/irq.h> |
@@ -310,6 +311,8 @@ void __init pxa_init_irq_gpio(int gpio_nr) | |||
310 | /* Install handler for GPIO>=2 edge detect interrupts */ | 311 | /* Install handler for GPIO>=2 edge detect interrupts */ |
311 | set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low); | 312 | set_irq_chip(IRQ_GPIO_2_x, &pxa_internal_chip_low); |
312 | set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler); | 313 | set_irq_chained_handler(IRQ_GPIO_2_x, pxa_gpio_demux_handler); |
314 | |||
315 | pxa_init_gpio(gpio_nr); | ||
313 | } | 316 | } |
314 | 317 | ||
315 | void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int)) | 318 | void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int)) |
@@ -321,3 +324,64 @@ void __init pxa_init_irq_set_wake(int (*set_wake)(unsigned int, unsigned int)) | |||
321 | pxa_low_gpio_chip.set_wake = set_wake; | 324 | pxa_low_gpio_chip.set_wake = set_wake; |
322 | pxa_muxed_gpio_chip.set_wake = set_wake; | 325 | pxa_muxed_gpio_chip.set_wake = set_wake; |
323 | } | 326 | } |
327 | |||
328 | #ifdef CONFIG_PM | ||
329 | static unsigned long saved_icmr[2]; | ||
330 | |||
331 | static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state) | ||
332 | { | ||
333 | switch (dev->id) { | ||
334 | case 0: | ||
335 | saved_icmr[0] = ICMR; | ||
336 | ICMR = 0; | ||
337 | break; | ||
338 | #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) | ||
339 | case 1: | ||
340 | saved_icmr[1] = ICMR2; | ||
341 | ICMR2 = 0; | ||
342 | break; | ||
343 | #endif | ||
344 | default: | ||
345 | return -EINVAL; | ||
346 | } | ||
347 | |||
348 | return 0; | ||
349 | } | ||
350 | |||
351 | static int pxa_irq_resume(struct sys_device *dev) | ||
352 | { | ||
353 | switch (dev->id) { | ||
354 | case 0: | ||
355 | ICMR = saved_icmr[0]; | ||
356 | ICLR = 0; | ||
357 | ICCR = 1; | ||
358 | break; | ||
359 | #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx) | ||
360 | case 1: | ||
361 | ICMR2 = saved_icmr[1]; | ||
362 | ICLR2 = 0; | ||
363 | break; | ||
364 | #endif | ||
365 | default: | ||
366 | return -EINVAL; | ||
367 | } | ||
368 | |||
369 | return 0; | ||
370 | } | ||
371 | #else | ||
372 | #define pxa_irq_suspend NULL | ||
373 | #define pxa_irq_resume NULL | ||
374 | #endif | ||
375 | |||
376 | struct sysdev_class pxa_irq_sysclass = { | ||
377 | .name = "irq", | ||
378 | .suspend = pxa_irq_suspend, | ||
379 | .resume = pxa_irq_resume, | ||
380 | }; | ||
381 | |||
382 | static int __init pxa_irq_init(void) | ||
383 | { | ||
384 | return sysdev_class_register(&pxa_irq_sysclass); | ||
385 | } | ||
386 | |||
387 | core_initcall(pxa_irq_init); | ||
diff --git a/arch/arm/mach-pxa/mfp.c b/arch/arm/mach-pxa/mfp.c index ec1b2d8f61c4..f5809adce298 100644 --- a/arch/arm/mach-pxa/mfp.c +++ b/arch/arm/mach-pxa/mfp.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <asm/hardware.h> | 22 | #include <asm/hardware.h> |
23 | #include <asm/arch/mfp.h> | 23 | #include <asm/arch/mfp.h> |
24 | #include <asm/arch/mfp-pxa3xx.h> | 24 | #include <asm/arch/mfp-pxa3xx.h> |
25 | #include <asm/arch/pxa3xx-regs.h> | ||
25 | 26 | ||
26 | /* mfp_spin_lock is used to ensure that MFP register configuration | 27 | /* mfp_spin_lock is used to ensure that MFP register configuration |
27 | * (most likely a read-modify-write operation) is atomic, and that | 28 | * (most likely a read-modify-write operation) is atomic, and that |
@@ -223,11 +224,19 @@ static int pxa3xx_mfp_resume(struct sys_device *d) | |||
223 | struct pxa3xx_mfp_pin *p = &mfp_table[pin]; | 224 | struct pxa3xx_mfp_pin *p = &mfp_table[pin]; |
224 | __mfp_config_run(p); | 225 | __mfp_config_run(p); |
225 | } | 226 | } |
227 | |||
228 | /* clear RDH bit when MFP settings are restored | ||
229 | * | ||
230 | * NOTE: the last 3 bits DxS are write-1-to-clear so carefully | ||
231 | * preserve them here in case they will be referenced later | ||
232 | */ | ||
233 | ASCR &= ~(ASCR_RDH | ASCR_D1S | ASCR_D2S | ASCR_D3S); | ||
234 | |||
226 | return 0; | 235 | return 0; |
227 | } | 236 | } |
228 | 237 | ||
229 | static struct sysdev_class mfp_sysclass = { | 238 | static struct sysdev_class mfp_sysclass = { |
230 | set_kset_name("mfp"), | 239 | .name = "mfp", |
231 | .suspend = pxa3xx_mfp_suspend, | 240 | .suspend = pxa3xx_mfp_suspend, |
232 | .resume = pxa3xx_mfp_resume, | 241 | .resume = pxa3xx_mfp_resume, |
233 | }; | 242 | }; |
diff --git a/arch/arm/mach-pxa/pcm027.c b/arch/arm/mach-pxa/pcm027.c index 540c3bba5f9a..c14696b9979d 100644 --- a/arch/arm/mach-pxa/pcm027.c +++ b/arch/arm/mach-pxa/pcm027.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/mach/arch.h> | 29 | #include <asm/mach/arch.h> |
30 | #include <asm/arch/hardware.h> | 30 | #include <asm/arch/hardware.h> |
31 | #include <asm/arch/pxa-regs.h> | 31 | #include <asm/arch/pxa-regs.h> |
32 | #include <asm/arch/pxa2xx-regs.h> | ||
32 | #include <asm/arch/pxa2xx_spi.h> | 33 | #include <asm/arch/pxa2xx_spi.h> |
33 | #include <asm/arch/pcm027.h> | 34 | #include <asm/arch/pcm027.h> |
34 | #include "generic.h" | 35 | #include "generic.h" |
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index dd54496083cb..209eabf0ed3e 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
@@ -164,7 +164,7 @@ static struct resource poodlets_resources[] = { | |||
164 | }, | 164 | }, |
165 | }; | 165 | }; |
166 | 166 | ||
167 | static unsigned long poodle_get_hsync_len(void) | 167 | static unsigned long poodle_get_hsync_invperiod(void) |
168 | { | 168 | { |
169 | return 0; | 169 | return 0; |
170 | } | 170 | } |
@@ -174,9 +174,9 @@ static void poodle_null_hsync(void) | |||
174 | } | 174 | } |
175 | 175 | ||
176 | static struct corgits_machinfo poodle_ts_machinfo = { | 176 | static struct corgits_machinfo poodle_ts_machinfo = { |
177 | .get_hsync_len = poodle_get_hsync_len, | 177 | .get_hsync_invperiod = poodle_get_hsync_invperiod, |
178 | .put_hsync = poodle_null_hsync, | 178 | .put_hsync = poodle_null_hsync, |
179 | .wait_hsync = poodle_null_hsync, | 179 | .wait_hsync = poodle_null_hsync, |
180 | }; | 180 | }; |
181 | 181 | ||
182 | static struct platform_device poodle_ts_device = { | 182 | static struct platform_device poodle_ts_device = { |
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index ddd05bf78e02..599e53fcc2c5 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/platform_device.h> | 22 | #include <linux/platform_device.h> |
23 | #include <linux/suspend.h> | 23 | #include <linux/suspend.h> |
24 | #include <linux/sysdev.h> | ||
24 | 25 | ||
25 | #include <asm/hardware.h> | 26 | #include <asm/hardware.h> |
26 | #include <asm/arch/irqs.h> | 27 | #include <asm/arch/irqs.h> |
@@ -141,11 +142,6 @@ static struct clk pxa25x_clks[] = { | |||
141 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x | 142 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x |
142 | #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] | 143 | #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] |
143 | 144 | ||
144 | #define RESTORE_GPLEVEL(n) do { \ | ||
145 | GPSR##n = sleep_save[SLEEP_SAVE_GPLR##n]; \ | ||
146 | GPCR##n = ~sleep_save[SLEEP_SAVE_GPLR##n]; \ | ||
147 | } while (0) | ||
148 | |||
149 | /* | 145 | /* |
150 | * List of global PXA peripheral registers to preserve. | 146 | * List of global PXA peripheral registers to preserve. |
151 | * More ones like CP and general purpose register values are preserved | 147 | * More ones like CP and general purpose register values are preserved |
@@ -153,10 +149,6 @@ static struct clk pxa25x_clks[] = { | |||
153 | */ | 149 | */ |
154 | enum { SLEEP_SAVE_START = 0, | 150 | enum { SLEEP_SAVE_START = 0, |
155 | 151 | ||
156 | SLEEP_SAVE_GPLR0, SLEEP_SAVE_GPLR1, SLEEP_SAVE_GPLR2, | ||
157 | SLEEP_SAVE_GPDR0, SLEEP_SAVE_GPDR1, SLEEP_SAVE_GPDR2, | ||
158 | SLEEP_SAVE_GRER0, SLEEP_SAVE_GRER1, SLEEP_SAVE_GRER2, | ||
159 | SLEEP_SAVE_GFER0, SLEEP_SAVE_GFER1, SLEEP_SAVE_GFER2, | ||
160 | SLEEP_SAVE_PGSR0, SLEEP_SAVE_PGSR1, SLEEP_SAVE_PGSR2, | 152 | SLEEP_SAVE_PGSR0, SLEEP_SAVE_PGSR1, SLEEP_SAVE_PGSR2, |
161 | 153 | ||
162 | SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR0_U, | 154 | SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR0_U, |
@@ -165,7 +157,6 @@ enum { SLEEP_SAVE_START = 0, | |||
165 | 157 | ||
166 | SLEEP_SAVE_PSTR, | 158 | SLEEP_SAVE_PSTR, |
167 | 159 | ||
168 | SLEEP_SAVE_ICMR, | ||
169 | SLEEP_SAVE_CKEN, | 160 | SLEEP_SAVE_CKEN, |
170 | 161 | ||
171 | SLEEP_SAVE_SIZE | 162 | SLEEP_SAVE_SIZE |
@@ -174,17 +165,12 @@ enum { SLEEP_SAVE_START = 0, | |||
174 | 165 | ||
175 | static void pxa25x_cpu_pm_save(unsigned long *sleep_save) | 166 | static void pxa25x_cpu_pm_save(unsigned long *sleep_save) |
176 | { | 167 | { |
177 | SAVE(GPLR0); SAVE(GPLR1); SAVE(GPLR2); | ||
178 | SAVE(GPDR0); SAVE(GPDR1); SAVE(GPDR2); | ||
179 | SAVE(GRER0); SAVE(GRER1); SAVE(GRER2); | ||
180 | SAVE(GFER0); SAVE(GFER1); SAVE(GFER2); | ||
181 | SAVE(PGSR0); SAVE(PGSR1); SAVE(PGSR2); | 168 | SAVE(PGSR0); SAVE(PGSR1); SAVE(PGSR2); |
182 | 169 | ||
183 | SAVE(GAFR0_L); SAVE(GAFR0_U); | 170 | SAVE(GAFR0_L); SAVE(GAFR0_U); |
184 | SAVE(GAFR1_L); SAVE(GAFR1_U); | 171 | SAVE(GAFR1_L); SAVE(GAFR1_U); |
185 | SAVE(GAFR2_L); SAVE(GAFR2_U); | 172 | SAVE(GAFR2_L); SAVE(GAFR2_U); |
186 | 173 | ||
187 | SAVE(ICMR); ICMR = 0; | ||
188 | SAVE(CKEN); | 174 | SAVE(CKEN); |
189 | SAVE(PSTR); | 175 | SAVE(PSTR); |
190 | 176 | ||
@@ -198,22 +184,14 @@ static void pxa25x_cpu_pm_restore(unsigned long *sleep_save) | |||
198 | PSPR = 0; | 184 | PSPR = 0; |
199 | 185 | ||
200 | /* restore registers */ | 186 | /* restore registers */ |
201 | RESTORE_GPLEVEL(0); RESTORE_GPLEVEL(1); RESTORE_GPLEVEL(2); | ||
202 | RESTORE(GPDR0); RESTORE(GPDR1); RESTORE(GPDR2); | ||
203 | RESTORE(GAFR0_L); RESTORE(GAFR0_U); | 187 | RESTORE(GAFR0_L); RESTORE(GAFR0_U); |
204 | RESTORE(GAFR1_L); RESTORE(GAFR1_U); | 188 | RESTORE(GAFR1_L); RESTORE(GAFR1_U); |
205 | RESTORE(GAFR2_L); RESTORE(GAFR2_U); | 189 | RESTORE(GAFR2_L); RESTORE(GAFR2_U); |
206 | RESTORE(GRER0); RESTORE(GRER1); RESTORE(GRER2); | ||
207 | RESTORE(GFER0); RESTORE(GFER1); RESTORE(GFER2); | ||
208 | RESTORE(PGSR0); RESTORE(PGSR1); RESTORE(PGSR2); | 190 | RESTORE(PGSR0); RESTORE(PGSR1); RESTORE(PGSR2); |
209 | 191 | ||
210 | PSSR = PSSR_RDH | PSSR_PH; | 192 | PSSR = PSSR_RDH | PSSR_PH; |
211 | 193 | ||
212 | RESTORE(CKEN); | 194 | RESTORE(CKEN); |
213 | |||
214 | ICLR = 0; | ||
215 | ICCR = 1; | ||
216 | RESTORE(ICMR); | ||
217 | RESTORE(PSTR); | 195 | RESTORE(PSTR); |
218 | } | 196 | } |
219 | 197 | ||
@@ -304,9 +282,17 @@ static struct platform_device *pxa25x_devices[] __initdata = { | |||
304 | &pxa25x_device_assp, | 282 | &pxa25x_device_assp, |
305 | }; | 283 | }; |
306 | 284 | ||
285 | static struct sys_device pxa25x_sysdev[] = { | ||
286 | { | ||
287 | .cls = &pxa_irq_sysclass, | ||
288 | }, { | ||
289 | .cls = &pxa_gpio_sysclass, | ||
290 | }, | ||
291 | }; | ||
292 | |||
307 | static int __init pxa25x_init(void) | 293 | static int __init pxa25x_init(void) |
308 | { | 294 | { |
309 | int ret = 0; | 295 | int i, ret = 0; |
310 | 296 | ||
311 | /* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */ | 297 | /* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */ |
312 | if (cpu_is_pxa25x()) | 298 | if (cpu_is_pxa25x()) |
@@ -320,9 +306,18 @@ static int __init pxa25x_init(void) | |||
320 | 306 | ||
321 | pxa25x_init_pm(); | 307 | pxa25x_init_pm(); |
322 | 308 | ||
309 | for (i = 0; i < ARRAY_SIZE(pxa25x_sysdev); i++) { | ||
310 | ret = sysdev_register(&pxa25x_sysdev[i]); | ||
311 | if (ret) | ||
312 | pr_err("failed to register sysdev[%d]\n", i); | ||
313 | } | ||
314 | |||
323 | ret = platform_add_devices(pxa25x_devices, | 315 | ret = platform_add_devices(pxa25x_devices, |
324 | ARRAY_SIZE(pxa25x_devices)); | 316 | ARRAY_SIZE(pxa25x_devices)); |
317 | if (ret) | ||
318 | return ret; | ||
325 | } | 319 | } |
320 | |||
326 | /* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */ | 321 | /* Only add HWUART for PXA255/26x; PXA210/250/27x do not have it. */ |
327 | if (cpu_is_pxa25x()) | 322 | if (cpu_is_pxa25x()) |
328 | ret = platform_device_register(&pxa_device_hwuart); | 323 | ret = platform_device_register(&pxa_device_hwuart); |
diff --git a/arch/arm/mach-pxa/pxa27x.c b/arch/arm/mach-pxa/pxa27x.c index 96cf274ec7cb..46a951c3e5a0 100644 --- a/arch/arm/mach-pxa/pxa27x.c +++ b/arch/arm/mach-pxa/pxa27x.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/suspend.h> | 17 | #include <linux/suspend.h> |
18 | #include <linux/platform_device.h> | 18 | #include <linux/platform_device.h> |
19 | #include <linux/sysdev.h> | ||
19 | 20 | ||
20 | #include <asm/hardware.h> | 21 | #include <asm/hardware.h> |
21 | #include <asm/irq.h> | 22 | #include <asm/irq.h> |
@@ -171,11 +172,6 @@ static struct clk pxa27x_clks[] = { | |||
171 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x | 172 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x |
172 | #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] | 173 | #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] |
173 | 174 | ||
174 | #define RESTORE_GPLEVEL(n) do { \ | ||
175 | GPSR##n = sleep_save[SLEEP_SAVE_GPLR##n]; \ | ||
176 | GPCR##n = ~sleep_save[SLEEP_SAVE_GPLR##n]; \ | ||
177 | } while (0) | ||
178 | |||
179 | /* | 175 | /* |
180 | * List of global PXA peripheral registers to preserve. | 176 | * List of global PXA peripheral registers to preserve. |
181 | * More ones like CP and general purpose register values are preserved | 177 | * More ones like CP and general purpose register values are preserved |
@@ -183,10 +179,6 @@ static struct clk pxa27x_clks[] = { | |||
183 | */ | 179 | */ |
184 | enum { SLEEP_SAVE_START = 0, | 180 | enum { SLEEP_SAVE_START = 0, |
185 | 181 | ||
186 | SLEEP_SAVE_GPLR0, SLEEP_SAVE_GPLR1, SLEEP_SAVE_GPLR2, SLEEP_SAVE_GPLR3, | ||
187 | SLEEP_SAVE_GPDR0, SLEEP_SAVE_GPDR1, SLEEP_SAVE_GPDR2, SLEEP_SAVE_GPDR3, | ||
188 | SLEEP_SAVE_GRER0, SLEEP_SAVE_GRER1, SLEEP_SAVE_GRER2, SLEEP_SAVE_GRER3, | ||
189 | SLEEP_SAVE_GFER0, SLEEP_SAVE_GFER1, SLEEP_SAVE_GFER2, SLEEP_SAVE_GFER3, | ||
190 | SLEEP_SAVE_PGSR0, SLEEP_SAVE_PGSR1, SLEEP_SAVE_PGSR2, SLEEP_SAVE_PGSR3, | 182 | SLEEP_SAVE_PGSR0, SLEEP_SAVE_PGSR1, SLEEP_SAVE_PGSR2, SLEEP_SAVE_PGSR3, |
191 | 183 | ||
192 | SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR0_U, | 184 | SLEEP_SAVE_GAFR0_L, SLEEP_SAVE_GAFR0_U, |
@@ -196,7 +188,6 @@ enum { SLEEP_SAVE_START = 0, | |||
196 | 188 | ||
197 | SLEEP_SAVE_PSTR, | 189 | SLEEP_SAVE_PSTR, |
198 | 190 | ||
199 | SLEEP_SAVE_ICMR, | ||
200 | SLEEP_SAVE_CKEN, | 191 | SLEEP_SAVE_CKEN, |
201 | 192 | ||
202 | SLEEP_SAVE_MDREFR, | 193 | SLEEP_SAVE_MDREFR, |
@@ -208,10 +199,6 @@ enum { SLEEP_SAVE_START = 0, | |||
208 | 199 | ||
209 | void pxa27x_cpu_pm_save(unsigned long *sleep_save) | 200 | void pxa27x_cpu_pm_save(unsigned long *sleep_save) |
210 | { | 201 | { |
211 | SAVE(GPLR0); SAVE(GPLR1); SAVE(GPLR2); SAVE(GPLR3); | ||
212 | SAVE(GPDR0); SAVE(GPDR1); SAVE(GPDR2); SAVE(GPDR3); | ||
213 | SAVE(GRER0); SAVE(GRER1); SAVE(GRER2); SAVE(GRER3); | ||
214 | SAVE(GFER0); SAVE(GFER1); SAVE(GFER2); SAVE(GFER3); | ||
215 | SAVE(PGSR0); SAVE(PGSR1); SAVE(PGSR2); SAVE(PGSR3); | 202 | SAVE(PGSR0); SAVE(PGSR1); SAVE(PGSR2); SAVE(PGSR3); |
216 | 203 | ||
217 | SAVE(GAFR0_L); SAVE(GAFR0_U); | 204 | SAVE(GAFR0_L); SAVE(GAFR0_U); |
@@ -223,12 +210,8 @@ void pxa27x_cpu_pm_save(unsigned long *sleep_save) | |||
223 | SAVE(PWER); SAVE(PCFR); SAVE(PRER); | 210 | SAVE(PWER); SAVE(PCFR); SAVE(PRER); |
224 | SAVE(PFER); SAVE(PKWR); | 211 | SAVE(PFER); SAVE(PKWR); |
225 | 212 | ||
226 | SAVE(ICMR); ICMR = 0; | ||
227 | SAVE(CKEN); | 213 | SAVE(CKEN); |
228 | SAVE(PSTR); | 214 | SAVE(PSTR); |
229 | |||
230 | /* Clear GPIO transition detect bits */ | ||
231 | GEDR0 = GEDR0; GEDR1 = GEDR1; GEDR2 = GEDR2; GEDR3 = GEDR3; | ||
232 | } | 215 | } |
233 | 216 | ||
234 | void pxa27x_cpu_pm_restore(unsigned long *sleep_save) | 217 | void pxa27x_cpu_pm_restore(unsigned long *sleep_save) |
@@ -237,15 +220,10 @@ void pxa27x_cpu_pm_restore(unsigned long *sleep_save) | |||
237 | PSPR = 0; | 220 | PSPR = 0; |
238 | 221 | ||
239 | /* restore registers */ | 222 | /* restore registers */ |
240 | RESTORE_GPLEVEL(0); RESTORE_GPLEVEL(1); | ||
241 | RESTORE_GPLEVEL(2); RESTORE_GPLEVEL(3); | ||
242 | RESTORE(GPDR0); RESTORE(GPDR1); RESTORE(GPDR2); RESTORE(GPDR3); | ||
243 | RESTORE(GAFR0_L); RESTORE(GAFR0_U); | 223 | RESTORE(GAFR0_L); RESTORE(GAFR0_U); |
244 | RESTORE(GAFR1_L); RESTORE(GAFR1_U); | 224 | RESTORE(GAFR1_L); RESTORE(GAFR1_U); |
245 | RESTORE(GAFR2_L); RESTORE(GAFR2_U); | 225 | RESTORE(GAFR2_L); RESTORE(GAFR2_U); |
246 | RESTORE(GAFR3_L); RESTORE(GAFR3_U); | 226 | RESTORE(GAFR3_L); RESTORE(GAFR3_U); |
247 | RESTORE(GRER0); RESTORE(GRER1); RESTORE(GRER2); RESTORE(GRER3); | ||
248 | RESTORE(GFER0); RESTORE(GFER1); RESTORE(GFER2); RESTORE(GFER3); | ||
249 | RESTORE(PGSR0); RESTORE(PGSR1); RESTORE(PGSR2); RESTORE(PGSR3); | 227 | RESTORE(PGSR0); RESTORE(PGSR1); RESTORE(PGSR2); RESTORE(PGSR3); |
250 | 228 | ||
251 | RESTORE(MDREFR); | 229 | RESTORE(MDREFR); |
@@ -256,9 +234,6 @@ void pxa27x_cpu_pm_restore(unsigned long *sleep_save) | |||
256 | 234 | ||
257 | RESTORE(CKEN); | 235 | RESTORE(CKEN); |
258 | 236 | ||
259 | ICLR = 0; | ||
260 | ICCR = 1; | ||
261 | RESTORE(ICMR); | ||
262 | RESTORE(PSTR); | 237 | RESTORE(PSTR); |
263 | } | 238 | } |
264 | 239 | ||
@@ -409,9 +384,22 @@ static struct platform_device *devices[] __initdata = { | |||
409 | &pxa27x_device_ssp3, | 384 | &pxa27x_device_ssp3, |
410 | }; | 385 | }; |
411 | 386 | ||
387 | static struct sys_device pxa27x_sysdev[] = { | ||
388 | { | ||
389 | .id = 0, | ||
390 | .cls = &pxa_irq_sysclass, | ||
391 | }, { | ||
392 | .id = 1, | ||
393 | .cls = &pxa_irq_sysclass, | ||
394 | }, { | ||
395 | .cls = &pxa_gpio_sysclass, | ||
396 | }, | ||
397 | }; | ||
398 | |||
412 | static int __init pxa27x_init(void) | 399 | static int __init pxa27x_init(void) |
413 | { | 400 | { |
414 | int ret = 0; | 401 | int i, ret = 0; |
402 | |||
415 | if (cpu_is_pxa27x()) { | 403 | if (cpu_is_pxa27x()) { |
416 | clks_register(pxa27x_clks, ARRAY_SIZE(pxa27x_clks)); | 404 | clks_register(pxa27x_clks, ARRAY_SIZE(pxa27x_clks)); |
417 | 405 | ||
@@ -420,8 +408,15 @@ static int __init pxa27x_init(void) | |||
420 | 408 | ||
421 | pxa27x_init_pm(); | 409 | pxa27x_init_pm(); |
422 | 410 | ||
411 | for (i = 0; i < ARRAY_SIZE(pxa27x_sysdev); i++) { | ||
412 | ret = sysdev_register(&pxa27x_sysdev[i]); | ||
413 | if (ret) | ||
414 | pr_err("failed to register sysdev[%d]\n", i); | ||
415 | } | ||
416 | |||
423 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | 417 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); |
424 | } | 418 | } |
419 | |||
425 | return ret; | 420 | return ret; |
426 | } | 421 | } |
427 | 422 | ||
diff --git a/arch/arm/mach-pxa/pxa3xx.c b/arch/arm/mach-pxa/pxa3xx.c index 5cbf057a1b32..e47e67c11afe 100644 --- a/arch/arm/mach-pxa/pxa3xx.c +++ b/arch/arm/mach-pxa/pxa3xx.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
21 | #include <linux/irq.h> | 21 | #include <linux/irq.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/sysdev.h> | ||
23 | 24 | ||
24 | #include <asm/hardware.h> | 25 | #include <asm/hardware.h> |
25 | #include <asm/arch/pxa3xx-regs.h> | 26 | #include <asm/arch/pxa3xx-regs.h> |
@@ -39,6 +40,7 @@ | |||
39 | #define RO_CLK 60000000 | 40 | #define RO_CLK 60000000 |
40 | 41 | ||
41 | #define ACCR_D0CS (1 << 26) | 42 | #define ACCR_D0CS (1 << 26) |
43 | #define ACCR_PCCE (1 << 11) | ||
42 | 44 | ||
43 | /* crystal frequency to static memory controller multiplier (SMCFS) */ | 45 | /* crystal frequency to static memory controller multiplier (SMCFS) */ |
44 | static unsigned char smcfs_mult[8] = { 6, 0, 8, 0, 0, 16, }; | 46 | static unsigned char smcfs_mult[8] = { 6, 0, 8, 0, 0, 16, }; |
@@ -203,7 +205,6 @@ static struct clk pxa3xx_clks[] = { | |||
203 | }; | 205 | }; |
204 | 206 | ||
205 | #ifdef CONFIG_PM | 207 | #ifdef CONFIG_PM |
206 | #define SLEEP_SAVE_SIZE 4 | ||
207 | 208 | ||
208 | #define ISRAM_START 0x5c000000 | 209 | #define ISRAM_START 0x5c000000 |
209 | #define ISRAM_SIZE SZ_256K | 210 | #define ISRAM_SIZE SZ_256K |
@@ -211,25 +212,29 @@ static struct clk pxa3xx_clks[] = { | |||
211 | static void __iomem *sram; | 212 | static void __iomem *sram; |
212 | static unsigned long wakeup_src; | 213 | static unsigned long wakeup_src; |
213 | 214 | ||
214 | static void pxa3xx_cpu_pm_save(unsigned long *sleep_save) | 215 | #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x |
215 | { | 216 | #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x] |
216 | pr_debug("PM: CKENA=%08x CKENB=%08x\n", CKENA, CKENB); | ||
217 | 217 | ||
218 | if (CKENA & (1 << CKEN_USBH)) { | 218 | enum { SLEEP_SAVE_START = 0, |
219 | printk(KERN_ERR "PM: USB host clock not stopped?\n"); | 219 | SLEEP_SAVE_CKENA, |
220 | CKENA &= ~(1 << CKEN_USBH); | 220 | SLEEP_SAVE_CKENB, |
221 | } | 221 | SLEEP_SAVE_ACCR, |
222 | // CKENA |= 1 << (CKEN_ISC & 31); | ||
223 | 222 | ||
224 | /* | 223 | SLEEP_SAVE_SIZE, |
225 | * Low power modes require the HSIO2 clock to be enabled. | 224 | }; |
226 | */ | 225 | |
227 | CKENB |= 1 << (CKEN_HSIO2 & 31); | 226 | static void pxa3xx_cpu_pm_save(unsigned long *sleep_save) |
227 | { | ||
228 | SAVE(CKENA); | ||
229 | SAVE(CKENB); | ||
230 | SAVE(ACCR); | ||
228 | } | 231 | } |
229 | 232 | ||
230 | static void pxa3xx_cpu_pm_restore(unsigned long *sleep_save) | 233 | static void pxa3xx_cpu_pm_restore(unsigned long *sleep_save) |
231 | { | 234 | { |
232 | CKENB &= ~(1 << (CKEN_HSIO2 & 31)); | 235 | RESTORE(ACCR); |
236 | RESTORE(CKENA); | ||
237 | RESTORE(CKENB); | ||
233 | } | 238 | } |
234 | 239 | ||
235 | /* | 240 | /* |
@@ -265,6 +270,46 @@ static void pxa3xx_cpu_standby(unsigned int pwrmode) | |||
265 | printk("PM: AD2D0SR=%08x ASCR=%08x\n", AD2D0SR, ASCR); | 270 | printk("PM: AD2D0SR=%08x ASCR=%08x\n", AD2D0SR, ASCR); |
266 | } | 271 | } |
267 | 272 | ||
273 | /* | ||
274 | * NOTE: currently, the OBM (OEM Boot Module) binary comes along with | ||
275 | * PXA3xx development kits assumes that the resuming process continues | ||
276 | * with the address stored within the first 4 bytes of SDRAM. The PSPR | ||
277 | * register is used privately by BootROM and OBM, and _must_ be set to | ||
278 | * 0x5c014000 for the moment. | ||
279 | */ | ||
280 | static void pxa3xx_cpu_pm_suspend(void) | ||
281 | { | ||
282 | volatile unsigned long *p = (volatile void *)0xc0000000; | ||
283 | unsigned long saved_data = *p; | ||
284 | |||
285 | extern void pxa3xx_cpu_suspend(void); | ||
286 | extern void pxa3xx_cpu_resume(void); | ||
287 | |||
288 | /* resuming from D2 requires the HSIO2/BOOT/TPM clocks enabled */ | ||
289 | CKENA |= (1 << CKEN_BOOT) | (1 << CKEN_TPM); | ||
290 | CKENB |= 1 << (CKEN_HSIO2 & 0x1f); | ||
291 | |||
292 | /* clear and setup wakeup source */ | ||
293 | AD3SR = ~0; | ||
294 | AD3ER = wakeup_src; | ||
295 | ASCR = ASCR; | ||
296 | ARSR = ARSR; | ||
297 | |||
298 | PCFR |= (1u << 13); /* L1_DIS */ | ||
299 | PCFR &= ~((1u << 12) | (1u << 1)); /* L0_EN | SL_ROD */ | ||
300 | |||
301 | PSPR = 0x5c014000; | ||
302 | |||
303 | /* overwrite with the resume address */ | ||
304 | *p = virt_to_phys(pxa3xx_cpu_resume); | ||
305 | |||
306 | pxa3xx_cpu_suspend(); | ||
307 | |||
308 | *p = saved_data; | ||
309 | |||
310 | AD3ER = 0; | ||
311 | } | ||
312 | |||
268 | static void pxa3xx_cpu_pm_enter(suspend_state_t state) | 313 | static void pxa3xx_cpu_pm_enter(suspend_state_t state) |
269 | { | 314 | { |
270 | /* | 315 | /* |
@@ -279,6 +324,7 @@ static void pxa3xx_cpu_pm_enter(suspend_state_t state) | |||
279 | break; | 324 | break; |
280 | 325 | ||
281 | case PM_SUSPEND_MEM: | 326 | case PM_SUSPEND_MEM: |
327 | pxa3xx_cpu_pm_suspend(); | ||
282 | break; | 328 | break; |
283 | } | 329 | } |
284 | } | 330 | } |
@@ -452,9 +498,21 @@ static struct platform_device *devices[] __initdata = { | |||
452 | &pxa3xx_device_ssp4, | 498 | &pxa3xx_device_ssp4, |
453 | }; | 499 | }; |
454 | 500 | ||
501 | static struct sys_device pxa3xx_sysdev[] = { | ||
502 | { | ||
503 | .id = 0, | ||
504 | .cls = &pxa_irq_sysclass, | ||
505 | }, { | ||
506 | .id = 1, | ||
507 | .cls = &pxa_irq_sysclass, | ||
508 | }, { | ||
509 | .cls = &pxa_gpio_sysclass, | ||
510 | }, | ||
511 | }; | ||
512 | |||
455 | static int __init pxa3xx_init(void) | 513 | static int __init pxa3xx_init(void) |
456 | { | 514 | { |
457 | int ret = 0; | 515 | int i, ret = 0; |
458 | 516 | ||
459 | if (cpu_is_pxa3xx()) { | 517 | if (cpu_is_pxa3xx()) { |
460 | clks_register(pxa3xx_clks, ARRAY_SIZE(pxa3xx_clks)); | 518 | clks_register(pxa3xx_clks, ARRAY_SIZE(pxa3xx_clks)); |
@@ -464,9 +522,16 @@ static int __init pxa3xx_init(void) | |||
464 | 522 | ||
465 | pxa3xx_init_pm(); | 523 | pxa3xx_init_pm(); |
466 | 524 | ||
467 | return platform_add_devices(devices, ARRAY_SIZE(devices)); | 525 | for (i = 0; i < ARRAY_SIZE(pxa3xx_sysdev); i++) { |
526 | ret = sysdev_register(&pxa3xx_sysdev[i]); | ||
527 | if (ret) | ||
528 | pr_err("failed to register sysdev[%d]\n", i); | ||
529 | } | ||
530 | |||
531 | ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | ||
468 | } | 532 | } |
469 | return 0; | 533 | |
534 | return ret; | ||
470 | } | 535 | } |
471 | 536 | ||
472 | subsys_initcall(pxa3xx_init); | 537 | subsys_initcall(pxa3xx_init); |
diff --git a/arch/arm/mach-pxa/sleep.S b/arch/arm/mach-pxa/sleep.S index 14bb4a93ea52..784716eb7fc5 100644 --- a/arch/arm/mach-pxa/sleep.S +++ b/arch/arm/mach-pxa/sleep.S | |||
@@ -50,6 +50,108 @@ pxa_cpu_save_sp: | |||
50 | str r0, [r1] | 50 | str r0, [r1] |
51 | ldr pc, [sp], #4 | 51 | ldr pc, [sp], #4 |
52 | 52 | ||
53 | #ifdef CONFIG_PXA3xx | ||
54 | /* | ||
55 | * pxa3xx_cpu_suspend() - forces CPU into sleep state (S2D3C4) | ||
56 | * | ||
57 | * NOTE: unfortunately, pxa_cpu_save_cp can not be reused here since | ||
58 | * the auxiliary control register address is different between pxa3xx | ||
59 | * and pxa{25x,27x} | ||
60 | */ | ||
61 | |||
62 | ENTRY(pxa3xx_cpu_suspend) | ||
63 | |||
64 | #ifndef CONFIG_IWMMXT | ||
65 | mra r2, r3, acc0 | ||
66 | #endif | ||
67 | stmfd sp!, {r2 - r12, lr} @ save registers on stack | ||
68 | |||
69 | mrc p14, 0, r3, c6, c0, 0 @ clock configuration, for turbo mode | ||
70 | mrc p15, 0, r4, c15, c1, 0 @ CP access reg | ||
71 | mrc p15, 0, r5, c13, c0, 0 @ PID | ||
72 | mrc p15, 0, r6, c3, c0, 0 @ domain ID | ||
73 | mrc p15, 0, r7, c2, c0, 0 @ translation table base addr | ||
74 | mrc p15, 0, r8, c1, c0, 1 @ auxiliary control reg | ||
75 | mrc p15, 0, r9, c1, c0, 0 @ control reg | ||
76 | |||
77 | bic r3, r3, #2 @ clear frequency change bit | ||
78 | |||
79 | @ store them plus current virtual stack ptr on stack | ||
80 | mov r10, sp | ||
81 | stmfd sp!, {r3 - r10} | ||
82 | |||
83 | @ store physical address of stack pointer | ||
84 | mov r0, sp | ||
85 | bl sleep_phys_sp | ||
86 | ldr r1, =sleep_save_sp | ||
87 | str r0, [r1] | ||
88 | |||
89 | @ clean data cache | ||
90 | bl xsc3_flush_kern_cache_all | ||
91 | |||
92 | mov r0, #0x06 @ S2D3C4 mode | ||
93 | mcr p14, 0, r0, c7, c0, 0 @ enter sleep | ||
94 | |||
95 | 20: b 20b @ waiting for sleep | ||
96 | |||
97 | .data | ||
98 | .align 5 | ||
99 | /* | ||
100 | * pxa3xx_cpu_resume | ||
101 | */ | ||
102 | |||
103 | ENTRY(pxa3xx_cpu_resume) | ||
104 | |||
105 | mov r0, #PSR_I_BIT | PSR_F_BIT | SVC_MODE @ set SVC, irqs off | ||
106 | msr cpsr_c, r0 | ||
107 | |||
108 | ldr r0, sleep_save_sp @ stack phys addr | ||
109 | ldmfd r0, {r3 - r9, sp} @ CP regs + virt stack ptr | ||
110 | |||
111 | mov r1, #0 | ||
112 | mcr p15, 0, r1, c7, c7, 0 @ invalidate I & D caches, BTB | ||
113 | mcr p15, 0, r1, c7, c10, 4 @ drain write (&fill) buffer | ||
114 | mcr p15, 0, r1, c7, c5, 4 @ flush prefetch buffer | ||
115 | mcr p15, 0, r1, c8, c7, 0 @ invalidate I & D TLBs | ||
116 | |||
117 | mcr p14, 0, r3, c6, c0, 0 @ clock configuration, turbo mode. | ||
118 | mcr p15, 0, r4, c15, c1, 0 @ CP access reg | ||
119 | mcr p15, 0, r5, c13, c0, 0 @ PID | ||
120 | mcr p15, 0, r6, c3, c0, 0 @ domain ID | ||
121 | mcr p15, 0, r7, c2, c0, 0 @ translation table base addr | ||
122 | mcr p15, 0, r8, c1, c0, 1 @ auxiliary control reg | ||
123 | |||
124 | @ temporarily map resume_turn_on_mmu into the page table, | ||
125 | @ otherwise prefetch abort occurs after MMU is turned on | ||
126 | mov r1, r7 | ||
127 | bic r1, r1, #0x00ff | ||
128 | bic r1, r1, #0x3f00 | ||
129 | ldr r2, =0x542e | ||
130 | |||
131 | adr r3, resume_turn_on_mmu | ||
132 | mov r3, r3, lsr #20 | ||
133 | orr r4, r2, r3, lsl #20 | ||
134 | ldr r5, [r1, r3, lsl #2] | ||
135 | str r4, [r1, r3, lsl #2] | ||
136 | |||
137 | @ Mapping page table address in the page table | ||
138 | mov r6, r1, lsr #20 | ||
139 | orr r7, r2, r6, lsl #20 | ||
140 | ldr r8, [r1, r6, lsl #2] | ||
141 | str r7, [r1, r6, lsl #2] | ||
142 | |||
143 | ldr r2, =pxa3xx_resume_after_mmu @ absolute virtual address | ||
144 | b resume_turn_on_mmu @ cache align execution | ||
145 | |||
146 | .text | ||
147 | pxa3xx_resume_after_mmu: | ||
148 | /* restore the temporary mapping */ | ||
149 | str r5, [r1, r3, lsl #2] | ||
150 | str r8, [r1, r6, lsl #2] | ||
151 | b resume_after_mmu | ||
152 | |||
153 | #endif /* CONFIG_PXA3xx */ | ||
154 | |||
53 | #ifdef CONFIG_PXA27x | 155 | #ifdef CONFIG_PXA27x |
54 | /* | 156 | /* |
55 | * pxa27x_cpu_suspend() | 157 | * pxa27x_cpu_suspend() |
diff --git a/arch/arm/mach-pxa/smemc.c b/arch/arm/mach-pxa/smemc.c new file mode 100644 index 000000000000..ad346addc028 --- /dev/null +++ b/arch/arm/mach-pxa/smemc.c | |||
@@ -0,0 +1,88 @@ | |||
1 | /* | ||
2 | * Static Memory Controller | ||
3 | */ | ||
4 | |||
5 | #include <linux/module.h> | ||
6 | #include <linux/kernel.h> | ||
7 | #include <linux/init.h> | ||
8 | #include <linux/io.h> | ||
9 | #include <linux/sysdev.h> | ||
10 | |||
11 | #define SMEMC_PHYS_BASE (0x4A000000) | ||
12 | #define SMEMC_PHYS_SIZE (0x90) | ||
13 | |||
14 | #define MSC0 (0x08) /* Static Memory Controller Register 0 */ | ||
15 | #define MSC1 (0x0C) /* Static Memory Controller Register 1 */ | ||
16 | #define SXCNFG (0x1C) /* Synchronous Static Memory Control Register */ | ||
17 | #define MEMCLKCFG (0x68) /* Clock Configuration */ | ||
18 | #define CSADRCFG0 (0x80) /* Address Configuration Register for CS0 */ | ||
19 | #define CSADRCFG1 (0x84) /* Address Configuration Register for CS1 */ | ||
20 | #define CSADRCFG2 (0x88) /* Address Configuration Register for CS2 */ | ||
21 | #define CSADRCFG3 (0x8C) /* Address Configuration Register for CS3 */ | ||
22 | |||
23 | #ifdef CONFIG_PM | ||
24 | static void __iomem *smemc_mmio_base; | ||
25 | |||
26 | static unsigned long msc[2]; | ||
27 | static unsigned long sxcnfg, memclkcfg; | ||
28 | static unsigned long csadrcfg[4]; | ||
29 | |||
30 | static int pxa3xx_smemc_suspend(struct sys_device *dev, pm_message_t state) | ||
31 | { | ||
32 | msc[0] = __raw_readl(smemc_mmio_base + MSC0); | ||
33 | msc[1] = __raw_readl(smemc_mmio_base + MSC1); | ||
34 | sxcnfg = __raw_readl(smemc_mmio_base + SXCNFG); | ||
35 | memclkcfg = __raw_readl(smemc_mmio_base + MEMCLKCFG); | ||
36 | csadrcfg[0] = __raw_readl(smemc_mmio_base + CSADRCFG0); | ||
37 | csadrcfg[1] = __raw_readl(smemc_mmio_base + CSADRCFG1); | ||
38 | csadrcfg[2] = __raw_readl(smemc_mmio_base + CSADRCFG2); | ||
39 | csadrcfg[3] = __raw_readl(smemc_mmio_base + CSADRCFG3); | ||
40 | |||
41 | return 0; | ||
42 | } | ||
43 | |||
44 | static int pxa3xx_smemc_resume(struct sys_device *dev) | ||
45 | { | ||
46 | __raw_writel(msc[0], smemc_mmio_base + MSC0); | ||
47 | __raw_writel(msc[1], smemc_mmio_base + MSC1); | ||
48 | __raw_writel(sxcnfg, smemc_mmio_base + SXCNFG); | ||
49 | __raw_writel(memclkcfg, smemc_mmio_base + MEMCLKCFG); | ||
50 | __raw_writel(csadrcfg[0], smemc_mmio_base + CSADRCFG0); | ||
51 | __raw_writel(csadrcfg[1], smemc_mmio_base + CSADRCFG1); | ||
52 | __raw_writel(csadrcfg[2], smemc_mmio_base + CSADRCFG2); | ||
53 | __raw_writel(csadrcfg[3], smemc_mmio_base + CSADRCFG3); | ||
54 | |||
55 | return 0; | ||
56 | } | ||
57 | |||
58 | static struct sysdev_class smemc_sysclass = { | ||
59 | .name = "smemc", | ||
60 | .suspend = pxa3xx_smemc_suspend, | ||
61 | .resume = pxa3xx_smemc_resume, | ||
62 | }; | ||
63 | |||
64 | static struct sys_device smemc_sysdev = { | ||
65 | .id = 0, | ||
66 | .cls = &smemc_sysclass, | ||
67 | }; | ||
68 | |||
69 | static int __init smemc_init(void) | ||
70 | { | ||
71 | int ret = 0; | ||
72 | |||
73 | if (cpu_is_pxa3xx()) { | ||
74 | smemc_mmio_base = ioremap(SMEMC_PHYS_BASE, SMEMC_PHYS_SIZE); | ||
75 | if (smemc_mmio_base == NULL) | ||
76 | return -ENODEV; | ||
77 | |||
78 | ret = sysdev_class_register(&smemc_sysclass); | ||
79 | if (ret) | ||
80 | return ret; | ||
81 | |||
82 | ret = sysdev_register(&smemc_sysdev); | ||
83 | } | ||
84 | |||
85 | return ret; | ||
86 | } | ||
87 | subsys_initcall(smemc_init); | ||
88 | #endif | ||
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 5078edeadf96..9e7773fca01c 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -36,6 +36,7 @@ | |||
36 | #include <asm/mach/irq.h> | 36 | #include <asm/mach/irq.h> |
37 | 37 | ||
38 | #include <asm/arch/pxa-regs.h> | 38 | #include <asm/arch/pxa-regs.h> |
39 | #include <asm/arch/pxa2xx-regs.h> | ||
39 | #include <asm/arch/irda.h> | 40 | #include <asm/arch/irda.h> |
40 | #include <asm/arch/mmc.h> | 41 | #include <asm/arch/mmc.h> |
41 | #include <asm/arch/ohci.h> | 42 | #include <asm/arch/ohci.h> |
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 1919756900f4..9b26fa5edad6 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/irq.h> | 29 | #include <asm/irq.h> |
30 | #include <asm/system.h> | 30 | #include <asm/system.h> |
31 | #include <asm/arch/pxa-regs.h> | 31 | #include <asm/arch/pxa-regs.h> |
32 | #include <asm/arch/pxa2xx-regs.h> | ||
32 | #include <asm/arch/irda.h> | 33 | #include <asm/arch/irda.h> |
33 | #include <asm/arch/mmc.h> | 34 | #include <asm/arch/mmc.h> |
34 | #include <asm/arch/udc.h> | 35 | #include <asm/arch/udc.h> |
@@ -157,15 +158,10 @@ static void tosa_udc_command(int cmd) | |||
157 | } | 158 | } |
158 | } | 159 | } |
159 | 160 | ||
160 | static int tosa_udc_is_connected(void) | ||
161 | { | ||
162 | return ((GPLR(TOSA_GPIO_USB_IN) & GPIO_bit(TOSA_GPIO_USB_IN)) == 0); | ||
163 | } | ||
164 | |||
165 | |||
166 | static struct pxa2xx_udc_mach_info udc_info __initdata = { | 161 | static struct pxa2xx_udc_mach_info udc_info __initdata = { |
167 | .udc_command = tosa_udc_command, | 162 | .udc_command = tosa_udc_command, |
168 | .udc_is_connected = tosa_udc_is_connected, | 163 | .gpio_vbus = TOSA_GPIO_USB_IN, |
164 | .gpio_vbus_inverted = 1, | ||
169 | }; | 165 | }; |
170 | 166 | ||
171 | /* | 167 | /* |
diff --git a/arch/arm/mach-realview/Kconfig b/arch/arm/mach-realview/Kconfig index 35156ca39df7..39b3bb7f1020 100644 --- a/arch/arm/mach-realview/Kconfig +++ b/arch/arm/mach-realview/Kconfig | |||
@@ -7,24 +7,21 @@ config MACH_REALVIEW_EB | |||
7 | help | 7 | help |
8 | Include support for the ARM(R) RealView Emulation Baseboard platform. | 8 | Include support for the ARM(R) RealView Emulation Baseboard platform. |
9 | 9 | ||
10 | config REALVIEW_MPCORE | 10 | config REALVIEW_EB_ARM11MP |
11 | bool "Support MPcore tile" | 11 | bool "Support ARM11MPCore tile" |
12 | depends on MACH_REALVIEW_EB | 12 | depends on MACH_REALVIEW_EB |
13 | select CACHE_L2X0 | 13 | select CACHE_L2X0 |
14 | help | 14 | help |
15 | Enable support for the MPCore tile on the Realview platform. | 15 | Enable support for the ARM11MPCore tile on the Realview platform. |
16 | Since there are device address and interrupt differences, a | ||
17 | kernel built with this option enabled is not compatible with | ||
18 | other tiles. | ||
19 | 16 | ||
20 | config REALVIEW_MPCORE_REVB | 17 | config REALVIEW_EB_ARM11MP_REVB |
21 | bool "Support MPcore RevB tile" | 18 | bool "Support ARM11MPCore RevB tile" |
22 | depends on REALVIEW_MPCORE | 19 | depends on REALVIEW_EB_ARM11MP |
23 | default n | 20 | default n |
24 | help | 21 | help |
25 | Enable support for the MPCore RevB tile on the Realview platform. | 22 | Enable support for the ARM11MPCore RevB tile on the Realview |
26 | Since there are device address differences, a | 23 | platform. Since there are device address differences, a |
27 | kernel built with this option enabled is not compatible with | 24 | kernel built with this option enabled is not compatible with |
28 | other tiles. | 25 | other revisions of the ARM11MPCore tile. |
29 | 26 | ||
30 | endmenu | 27 | endmenu |
diff --git a/arch/arm/mach-realview/Makefile b/arch/arm/mach-realview/Makefile index 36e76ba937fc..ca1e390c3c28 100644 --- a/arch/arm/mach-realview/Makefile +++ b/arch/arm/mach-realview/Makefile | |||
@@ -4,6 +4,5 @@ | |||
4 | 4 | ||
5 | obj-y := core.o clock.o | 5 | obj-y := core.o clock.o |
6 | obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o | 6 | obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o |
7 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | 7 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o localtimer.o |
8 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 8 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |
9 | obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o | ||
diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 61d70218f1e8..98aefc9f4df3 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c | |||
@@ -25,6 +25,8 @@ | |||
25 | #include <linux/interrupt.h> | 25 | #include <linux/interrupt.h> |
26 | #include <linux/amba/bus.h> | 26 | #include <linux/amba/bus.h> |
27 | #include <linux/amba/clcd.h> | 27 | #include <linux/amba/clcd.h> |
28 | #include <linux/clocksource.h> | ||
29 | #include <linux/clockchips.h> | ||
28 | 30 | ||
29 | #include <asm/system.h> | 31 | #include <asm/system.h> |
30 | #include <asm/hardware.h> | 32 | #include <asm/hardware.h> |
@@ -37,7 +39,6 @@ | |||
37 | #include <asm/mach/arch.h> | 39 | #include <asm/mach/arch.h> |
38 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
39 | #include <asm/mach/irq.h> | 41 | #include <asm/mach/irq.h> |
40 | #include <asm/mach/time.h> | ||
41 | #include <asm/mach/map.h> | 42 | #include <asm/mach/map.h> |
42 | #include <asm/mach/mmc.h> | 43 | #include <asm/mach/mmc.h> |
43 | 44 | ||
@@ -48,6 +49,9 @@ | |||
48 | 49 | ||
49 | #define REALVIEW_REFCOUNTER (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_24MHz_OFFSET) | 50 | #define REALVIEW_REFCOUNTER (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_24MHz_OFFSET) |
50 | 51 | ||
52 | /* used by entry-macro.S */ | ||
53 | void __iomem *gic_cpu_base_addr; | ||
54 | |||
51 | /* | 55 | /* |
52 | * This is the RealView sched_clock implementation. This has | 56 | * This is the RealView sched_clock implementation. This has |
53 | * a resolution of 41.7ns, and a maximum value of about 179s. | 57 | * a resolution of 41.7ns, and a maximum value of about 179s. |
@@ -121,26 +125,6 @@ struct platform_device realview_flash_device = { | |||
121 | .resource = &realview_flash_resource, | 125 | .resource = &realview_flash_resource, |
122 | }; | 126 | }; |
123 | 127 | ||
124 | static struct resource realview_smc91x_resources[] = { | ||
125 | [0] = { | ||
126 | .start = REALVIEW_ETH_BASE, | ||
127 | .end = REALVIEW_ETH_BASE + SZ_64K - 1, | ||
128 | .flags = IORESOURCE_MEM, | ||
129 | }, | ||
130 | [1] = { | ||
131 | .start = IRQ_ETH, | ||
132 | .end = IRQ_ETH, | ||
133 | .flags = IORESOURCE_IRQ, | ||
134 | }, | ||
135 | }; | ||
136 | |||
137 | struct platform_device realview_smc91x_device = { | ||
138 | .name = "smc91x", | ||
139 | .id = 0, | ||
140 | .num_resources = ARRAY_SIZE(realview_smc91x_resources), | ||
141 | .resource = realview_smc91x_resources, | ||
142 | }; | ||
143 | |||
144 | static struct resource realview_i2c_resource = { | 128 | static struct resource realview_i2c_resource = { |
145 | .start = REALVIEW_I2C_BASE, | 129 | .start = REALVIEW_I2C_BASE, |
146 | .end = REALVIEW_I2C_BASE + SZ_4K - 1, | 130 | .end = REALVIEW_I2C_BASE + SZ_4K - 1, |
@@ -484,45 +468,64 @@ void realview_leds_event(led_event_t ledevt) | |||
484 | #define TICKS2USECS(x) ((x) / TICKS_PER_uSEC) | 468 | #define TICKS2USECS(x) ((x) / TICKS_PER_uSEC) |
485 | #endif | 469 | #endif |
486 | 470 | ||
487 | /* | 471 | static void timer_set_mode(enum clock_event_mode mode, |
488 | * Returns number of ms since last clock interrupt. Note that interrupts | 472 | struct clock_event_device *clk) |
489 | * will have been disabled by do_gettimeoffset() | ||
490 | */ | ||
491 | static unsigned long realview_gettimeoffset(void) | ||
492 | { | 473 | { |
493 | unsigned long ticks1, ticks2, status; | 474 | unsigned long ctrl; |
494 | 475 | ||
495 | /* | 476 | switch(mode) { |
496 | * Get the current number of ticks. Note that there is a race | 477 | case CLOCK_EVT_MODE_PERIODIC: |
497 | * condition between us reading the timer and checking for | 478 | writel(TIMER_RELOAD, TIMER0_VA_BASE + TIMER_LOAD); |
498 | * an interrupt. We get around this by ensuring that the | ||
499 | * counter has not reloaded between our two reads. | ||
500 | */ | ||
501 | ticks2 = readl(TIMER0_VA_BASE + TIMER_VALUE) & 0xffff; | ||
502 | do { | ||
503 | ticks1 = ticks2; | ||
504 | status = __raw_readl(__io_address(REALVIEW_GIC_DIST_BASE + GIC_DIST_PENDING_SET) | ||
505 | + ((IRQ_TIMERINT0_1 >> 5) << 2)); | ||
506 | ticks2 = readl(TIMER0_VA_BASE + TIMER_VALUE) & 0xffff; | ||
507 | } while (ticks2 > ticks1); | ||
508 | 479 | ||
509 | /* | 480 | ctrl = TIMER_CTRL_PERIODIC; |
510 | * Number of ticks since last interrupt. | 481 | ctrl |= TIMER_CTRL_32BIT | TIMER_CTRL_IE | TIMER_CTRL_ENABLE; |
511 | */ | 482 | break; |
512 | ticks1 = TIMER_RELOAD - ticks2; | 483 | case CLOCK_EVT_MODE_ONESHOT: |
484 | /* period set, and timer enabled in 'next_event' hook */ | ||
485 | ctrl = TIMER_CTRL_ONESHOT; | ||
486 | ctrl |= TIMER_CTRL_32BIT | TIMER_CTRL_IE; | ||
487 | break; | ||
488 | case CLOCK_EVT_MODE_UNUSED: | ||
489 | case CLOCK_EVT_MODE_SHUTDOWN: | ||
490 | default: | ||
491 | ctrl = 0; | ||
492 | } | ||
513 | 493 | ||
514 | /* | 494 | writel(ctrl, TIMER0_VA_BASE + TIMER_CTRL); |
515 | * Interrupt pending? If so, we've reloaded once already. | 495 | } |
516 | * | ||
517 | * FIXME: Need to check this is effectively timer 0 that expires | ||
518 | */ | ||
519 | if (status & IRQMASK_TIMERINT0_1) | ||
520 | ticks1 += TIMER_RELOAD; | ||
521 | 496 | ||
522 | /* | 497 | static int timer_set_next_event(unsigned long evt, |
523 | * Convert the ticks to usecs | 498 | struct clock_event_device *unused) |
524 | */ | 499 | { |
525 | return TICKS2USECS(ticks1); | 500 | unsigned long ctrl = readl(TIMER0_VA_BASE + TIMER_CTRL); |
501 | |||
502 | writel(evt, TIMER0_VA_BASE + TIMER_LOAD); | ||
503 | writel(ctrl | TIMER_CTRL_ENABLE, TIMER0_VA_BASE + TIMER_CTRL); | ||
504 | |||
505 | return 0; | ||
506 | } | ||
507 | |||
508 | static struct clock_event_device timer0_clockevent = { | ||
509 | .name = "timer0", | ||
510 | .shift = 32, | ||
511 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, | ||
512 | .set_mode = timer_set_mode, | ||
513 | .set_next_event = timer_set_next_event, | ||
514 | .rating = 300, | ||
515 | .cpumask = CPU_MASK_ALL, | ||
516 | }; | ||
517 | |||
518 | static void __init realview_clockevents_init(unsigned int timer_irq) | ||
519 | { | ||
520 | timer0_clockevent.irq = timer_irq; | ||
521 | timer0_clockevent.mult = | ||
522 | div_sc(1000000, NSEC_PER_SEC, timer0_clockevent.shift); | ||
523 | timer0_clockevent.max_delta_ns = | ||
524 | clockevent_delta2ns(0xffffffff, &timer0_clockevent); | ||
525 | timer0_clockevent.min_delta_ns = | ||
526 | clockevent_delta2ns(0xf, &timer0_clockevent); | ||
527 | |||
528 | clockevents_register_device(&timer0_clockevent); | ||
526 | } | 529 | } |
527 | 530 | ||
528 | /* | 531 | /* |
@@ -530,15 +533,12 @@ static unsigned long realview_gettimeoffset(void) | |||
530 | */ | 533 | */ |
531 | static irqreturn_t realview_timer_interrupt(int irq, void *dev_id) | 534 | static irqreturn_t realview_timer_interrupt(int irq, void *dev_id) |
532 | { | 535 | { |
533 | // ...clear the interrupt | 536 | struct clock_event_device *evt = &timer0_clockevent; |
537 | |||
538 | /* clear the interrupt */ | ||
534 | writel(1, TIMER0_VA_BASE + TIMER_INTCLR); | 539 | writel(1, TIMER0_VA_BASE + TIMER_INTCLR); |
535 | 540 | ||
536 | timer_tick(); | 541 | evt->event_handler(evt); |
537 | |||
538 | #if defined(CONFIG_SMP) && !defined(CONFIG_LOCAL_TIMERS) | ||
539 | smp_send_timer(); | ||
540 | update_process_times(user_mode(get_irq_regs())); | ||
541 | #endif | ||
542 | 542 | ||
543 | return IRQ_HANDLED; | 543 | return IRQ_HANDLED; |
544 | } | 544 | } |
@@ -549,13 +549,49 @@ static struct irqaction realview_timer_irq = { | |||
549 | .handler = realview_timer_interrupt, | 549 | .handler = realview_timer_interrupt, |
550 | }; | 550 | }; |
551 | 551 | ||
552 | static cycle_t realview_get_cycles(void) | ||
553 | { | ||
554 | return ~readl(TIMER3_VA_BASE + TIMER_VALUE); | ||
555 | } | ||
556 | |||
557 | static struct clocksource clocksource_realview = { | ||
558 | .name = "timer3", | ||
559 | .rating = 200, | ||
560 | .read = realview_get_cycles, | ||
561 | .mask = CLOCKSOURCE_MASK(32), | ||
562 | .shift = 20, | ||
563 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
564 | }; | ||
565 | |||
566 | static void __init realview_clocksource_init(void) | ||
567 | { | ||
568 | /* setup timer 0 as free-running clocksource */ | ||
569 | writel(0, TIMER3_VA_BASE + TIMER_CTRL); | ||
570 | writel(0xffffffff, TIMER3_VA_BASE + TIMER_LOAD); | ||
571 | writel(0xffffffff, TIMER3_VA_BASE + TIMER_VALUE); | ||
572 | writel(TIMER_CTRL_32BIT | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC, | ||
573 | TIMER3_VA_BASE + TIMER_CTRL); | ||
574 | |||
575 | clocksource_realview.mult = | ||
576 | clocksource_khz2mult(1000, clocksource_realview.shift); | ||
577 | clocksource_register(&clocksource_realview); | ||
578 | } | ||
579 | |||
552 | /* | 580 | /* |
553 | * Set up timer interrupt, and return the current time in seconds. | 581 | * Set up the clock source and clock events devices |
554 | */ | 582 | */ |
555 | static void __init realview_timer_init(void) | 583 | void __init realview_timer_init(unsigned int timer_irq) |
556 | { | 584 | { |
557 | u32 val; | 585 | u32 val; |
558 | 586 | ||
587 | #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST | ||
588 | /* | ||
589 | * The dummy clock device has to be registered before the main device | ||
590 | * so that the latter will broadcast the clock events | ||
591 | */ | ||
592 | local_timer_setup(smp_processor_id()); | ||
593 | #endif | ||
594 | |||
559 | /* | 595 | /* |
560 | * set clock frequency: | 596 | * set clock frequency: |
561 | * REALVIEW_REFCLK is 32KHz | 597 | * REALVIEW_REFCLK is 32KHz |
@@ -576,18 +612,11 @@ static void __init realview_timer_init(void) | |||
576 | writel(0, TIMER2_VA_BASE + TIMER_CTRL); | 612 | writel(0, TIMER2_VA_BASE + TIMER_CTRL); |
577 | writel(0, TIMER3_VA_BASE + TIMER_CTRL); | 613 | writel(0, TIMER3_VA_BASE + TIMER_CTRL); |
578 | 614 | ||
579 | writel(TIMER_RELOAD, TIMER0_VA_BASE + TIMER_LOAD); | ||
580 | writel(TIMER_RELOAD, TIMER0_VA_BASE + TIMER_VALUE); | ||
581 | writel(TIMER_DIVISOR | TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC | | ||
582 | TIMER_CTRL_IE, TIMER0_VA_BASE + TIMER_CTRL); | ||
583 | |||
584 | /* | 615 | /* |
585 | * Make irqs happen for the system timer | 616 | * Make irqs happen for the system timer |
586 | */ | 617 | */ |
587 | setup_irq(IRQ_TIMERINT0_1, &realview_timer_irq); | 618 | setup_irq(timer_irq, &realview_timer_irq); |
588 | } | ||
589 | 619 | ||
590 | struct sys_timer realview_timer = { | 620 | realview_clocksource_init(); |
591 | .init = realview_timer_init, | 621 | realview_clockevents_init(timer_irq); |
592 | .offset = realview_gettimeoffset, | 622 | } |
593 | }; | ||
diff --git a/arch/arm/mach-realview/core.h b/arch/arm/mach-realview/core.h index 2b53420f9c1b..492a14c0d604 100644 --- a/arch/arm/mach-realview/core.h +++ b/arch/arm/mach-realview/core.h | |||
@@ -27,8 +27,6 @@ | |||
27 | #include <asm/leds.h> | 27 | #include <asm/leds.h> |
28 | #include <asm/io.h> | 28 | #include <asm/io.h> |
29 | 29 | ||
30 | extern struct sys_timer realview_timer; | ||
31 | |||
32 | #define AMBA_DEVICE(name,busid,base,plat) \ | 30 | #define AMBA_DEVICE(name,busid,base,plat) \ |
33 | static struct amba_device name##_device = { \ | 31 | static struct amba_device name##_device = { \ |
34 | .dev = { \ | 32 | .dev = { \ |
@@ -38,7 +36,7 @@ static struct amba_device name##_device = { \ | |||
38 | }, \ | 36 | }, \ |
39 | .res = { \ | 37 | .res = { \ |
40 | .start = REALVIEW_##base##_BASE, \ | 38 | .start = REALVIEW_##base##_BASE, \ |
41 | .end = (REALVIEW_##base##_BASE) + SZ_4K - 1,\ | 39 | .end = (REALVIEW_##base##_BASE) + SZ_4K - 1, \ |
42 | .flags = IORESOURCE_MEM, \ | 40 | .flags = IORESOURCE_MEM, \ |
43 | }, \ | 41 | }, \ |
44 | .dma_mask = ~0, \ | 42 | .dma_mask = ~0, \ |
@@ -46,74 +44,19 @@ static struct amba_device name##_device = { \ | |||
46 | /* .dma = base##_DMA,*/ \ | 44 | /* .dma = base##_DMA,*/ \ |
47 | } | 45 | } |
48 | 46 | ||
49 | /* | ||
50 | * These devices are connected via the core APB bridge | ||
51 | */ | ||
52 | #define GPIO2_IRQ { IRQ_GPIOINT2, NO_IRQ } | ||
53 | #define GPIO2_DMA { 0, 0 } | ||
54 | #define GPIO3_IRQ { IRQ_GPIOINT3, NO_IRQ } | ||
55 | #define GPIO3_DMA { 0, 0 } | ||
56 | |||
57 | #define AACI_IRQ { IRQ_AACI, NO_IRQ } | ||
58 | #define AACI_DMA { 0x80, 0x81 } | ||
59 | #define MMCI0_IRQ { IRQ_MMCI0A,IRQ_MMCI0B } | ||
60 | #define MMCI0_DMA { 0x84, 0 } | ||
61 | #define KMI0_IRQ { IRQ_KMI0, NO_IRQ } | ||
62 | #define KMI0_DMA { 0, 0 } | ||
63 | #define KMI1_IRQ { IRQ_KMI1, NO_IRQ } | ||
64 | #define KMI1_DMA { 0, 0 } | ||
65 | |||
66 | /* | ||
67 | * These devices are connected directly to the multi-layer AHB switch | ||
68 | */ | ||
69 | #define SMC_IRQ { NO_IRQ, NO_IRQ } | ||
70 | #define SMC_DMA { 0, 0 } | ||
71 | #define MPMC_IRQ { NO_IRQ, NO_IRQ } | ||
72 | #define MPMC_DMA { 0, 0 } | ||
73 | #define CLCD_IRQ { IRQ_CLCDINT, NO_IRQ } | ||
74 | #define CLCD_DMA { 0, 0 } | ||
75 | #define DMAC_IRQ { IRQ_DMAINT, NO_IRQ } | ||
76 | #define DMAC_DMA { 0, 0 } | ||
77 | |||
78 | /* | ||
79 | * These devices are connected via the core APB bridge | ||
80 | */ | ||
81 | #define SCTL_IRQ { NO_IRQ, NO_IRQ } | ||
82 | #define SCTL_DMA { 0, 0 } | ||
83 | #define WATCHDOG_IRQ { IRQ_WDOGINT, NO_IRQ } | ||
84 | #define WATCHDOG_DMA { 0, 0 } | ||
85 | #define GPIO0_IRQ { IRQ_GPIOINT0, NO_IRQ } | ||
86 | #define GPIO0_DMA { 0, 0 } | ||
87 | #define GPIO1_IRQ { IRQ_GPIOINT1, NO_IRQ } | ||
88 | #define GPIO1_DMA { 0, 0 } | ||
89 | #define RTC_IRQ { IRQ_RTCINT, NO_IRQ } | ||
90 | #define RTC_DMA { 0, 0 } | ||
91 | |||
92 | /* | ||
93 | * These devices are connected via the DMA APB bridge | ||
94 | */ | ||
95 | #define SCI_IRQ { IRQ_SCIINT, NO_IRQ } | ||
96 | #define SCI_DMA { 7, 6 } | ||
97 | #define UART0_IRQ { IRQ_UARTINT0, NO_IRQ } | ||
98 | #define UART0_DMA { 15, 14 } | ||
99 | #define UART1_IRQ { IRQ_UARTINT1, NO_IRQ } | ||
100 | #define UART1_DMA { 13, 12 } | ||
101 | #define UART2_IRQ { IRQ_UARTINT2, NO_IRQ } | ||
102 | #define UART2_DMA { 11, 10 } | ||
103 | #define UART3_IRQ { IRQ_UART3, NO_IRQ } | ||
104 | #define UART3_DMA { 0x86, 0x87 } | ||
105 | #define SSP_IRQ { IRQ_SSPINT, NO_IRQ } | ||
106 | #define SSP_DMA { 9, 8 } | ||
107 | |||
108 | |||
109 | extern struct platform_device realview_flash_device; | 47 | extern struct platform_device realview_flash_device; |
110 | extern struct platform_device realview_smc91x_device; | ||
111 | extern struct platform_device realview_i2c_device; | 48 | extern struct platform_device realview_i2c_device; |
112 | extern struct mmc_platform_data realview_mmc0_plat_data; | 49 | extern struct mmc_platform_data realview_mmc0_plat_data; |
113 | extern struct mmc_platform_data realview_mmc1_plat_data; | 50 | extern struct mmc_platform_data realview_mmc1_plat_data; |
114 | extern struct clk realview_clcd_clk; | 51 | extern struct clk realview_clcd_clk; |
115 | extern struct clcd_board clcd_plat_data; | 52 | extern struct clcd_board clcd_plat_data; |
53 | extern void __iomem *gic_cpu_base_addr; | ||
54 | #ifdef CONFIG_LOCAL_TIMERS | ||
55 | extern void __iomem *twd_base_addr; | ||
56 | extern unsigned int twd_size; | ||
57 | #endif | ||
116 | 58 | ||
117 | extern void realview_leds_event(led_event_t ledevt); | 59 | extern void realview_leds_event(led_event_t ledevt); |
60 | extern void realview_timer_init(unsigned int timer_irq); | ||
118 | 61 | ||
119 | #endif | 62 | #endif |
diff --git a/arch/arm/mach-realview/localtimer.c b/arch/arm/mach-realview/localtimer.c index c7bdf04ab094..50604360479f 100644 --- a/arch/arm/mach-realview/localtimer.c +++ b/arch/arm/mach-realview/localtimer.c | |||
@@ -14,19 +14,75 @@ | |||
14 | #include <linux/device.h> | 14 | #include <linux/device.h> |
15 | #include <linux/smp.h> | 15 | #include <linux/smp.h> |
16 | #include <linux/jiffies.h> | 16 | #include <linux/jiffies.h> |
17 | #include <linux/percpu.h> | ||
18 | #include <linux/clockchips.h> | ||
19 | #include <linux/irq.h> | ||
17 | 20 | ||
18 | #include <asm/mach/time.h> | ||
19 | #include <asm/hardware/arm_twd.h> | 21 | #include <asm/hardware/arm_twd.h> |
20 | #include <asm/hardware/gic.h> | 22 | #include <asm/hardware/gic.h> |
21 | #include <asm/hardware.h> | 23 | #include <asm/hardware.h> |
22 | #include <asm/io.h> | 24 | #include <asm/io.h> |
23 | #include <asm/irq.h> | 25 | #include <asm/irq.h> |
24 | 26 | ||
25 | #define TWD_BASE(cpu) (__io_address(REALVIEW_TWD_BASE) + \ | 27 | static DEFINE_PER_CPU(struct clock_event_device, local_clockevent); |
26 | ((cpu) * REALVIEW_TWD_SIZE)) | 28 | |
29 | /* | ||
30 | * Used on SMP for either the local timer or IPI_TIMER | ||
31 | */ | ||
32 | void local_timer_interrupt(void) | ||
33 | { | ||
34 | struct clock_event_device *clk = &__get_cpu_var(local_clockevent); | ||
35 | |||
36 | clk->event_handler(clk); | ||
37 | } | ||
38 | |||
39 | #ifdef CONFIG_LOCAL_TIMERS | ||
40 | |||
41 | #define TWD_BASE(cpu) (twd_base_addr + (cpu) * twd_size) | ||
42 | |||
43 | /* set up by the platform code */ | ||
44 | void __iomem *twd_base_addr; | ||
45 | unsigned int twd_size; | ||
27 | 46 | ||
28 | static unsigned long mpcore_timer_rate; | 47 | static unsigned long mpcore_timer_rate; |
29 | 48 | ||
49 | static void local_timer_set_mode(enum clock_event_mode mode, | ||
50 | struct clock_event_device *clk) | ||
51 | { | ||
52 | void __iomem *base = TWD_BASE(smp_processor_id()); | ||
53 | unsigned long ctrl; | ||
54 | |||
55 | switch(mode) { | ||
56 | case CLOCK_EVT_MODE_PERIODIC: | ||
57 | /* timer load already set up */ | ||
58 | ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE | ||
59 | | TWD_TIMER_CONTROL_PERIODIC; | ||
60 | break; | ||
61 | case CLOCK_EVT_MODE_ONESHOT: | ||
62 | /* period set, and timer enabled in 'next_event' hook */ | ||
63 | ctrl = TWD_TIMER_CONTROL_IT_ENABLE | TWD_TIMER_CONTROL_ONESHOT; | ||
64 | break; | ||
65 | case CLOCK_EVT_MODE_UNUSED: | ||
66 | case CLOCK_EVT_MODE_SHUTDOWN: | ||
67 | default: | ||
68 | ctrl = 0; | ||
69 | } | ||
70 | |||
71 | __raw_writel(ctrl, base + TWD_TIMER_CONTROL); | ||
72 | } | ||
73 | |||
74 | static int local_timer_set_next_event(unsigned long evt, | ||
75 | struct clock_event_device *unused) | ||
76 | { | ||
77 | void __iomem *base = TWD_BASE(smp_processor_id()); | ||
78 | unsigned long ctrl = __raw_readl(base + TWD_TIMER_CONTROL); | ||
79 | |||
80 | __raw_writel(evt, base + TWD_TIMER_COUNTER); | ||
81 | __raw_writel(ctrl | TWD_TIMER_CONTROL_ENABLE, base + TWD_TIMER_CONTROL); | ||
82 | |||
83 | return 0; | ||
84 | } | ||
85 | |||
30 | /* | 86 | /* |
31 | * local_timer_ack: checks for a local timer interrupt. | 87 | * local_timer_ack: checks for a local timer interrupt. |
32 | * | 88 | * |
@@ -45,12 +101,11 @@ int local_timer_ack(void) | |||
45 | return 0; | 101 | return 0; |
46 | } | 102 | } |
47 | 103 | ||
48 | void __cpuinit local_timer_setup(unsigned int cpu) | 104 | static void __cpuinit twd_calibrate_rate(unsigned int cpu) |
49 | { | 105 | { |
50 | void __iomem *base = TWD_BASE(cpu); | 106 | void __iomem *base = TWD_BASE(cpu); |
51 | unsigned int load, offset; | 107 | unsigned long load, count; |
52 | u64 waitjiffies; | 108 | u64 waitjiffies; |
53 | unsigned int count; | ||
54 | 109 | ||
55 | /* | 110 | /* |
56 | * If this is the first time round, we need to work out how fast | 111 | * If this is the first time round, we need to work out how fast |
@@ -88,36 +143,36 @@ void __cpuinit local_timer_setup(unsigned int cpu) | |||
88 | load = mpcore_timer_rate / HZ; | 143 | load = mpcore_timer_rate / HZ; |
89 | 144 | ||
90 | __raw_writel(load, base + TWD_TIMER_LOAD); | 145 | __raw_writel(load, base + TWD_TIMER_LOAD); |
91 | __raw_writel(0x7, base + TWD_TIMER_CONTROL); | 146 | } |
92 | |||
93 | /* | ||
94 | * Now maneuver our local tick into the right part of the jiffy. | ||
95 | * Start by working out where within the tick our local timer | ||
96 | * interrupt should go. | ||
97 | */ | ||
98 | offset = ((mpcore_timer_rate / HZ) / (NR_CPUS + 1)) * (cpu + 1); | ||
99 | |||
100 | /* | ||
101 | * gettimeoffset() will return a number of us since the last tick. | ||
102 | * Convert this number of us to a local timer tick count. | ||
103 | * Be careful of integer overflow whilst keeping maximum precision. | ||
104 | * | ||
105 | * with HZ=100 and 1MHz (fpga) ~ 1GHz processor: | ||
106 | * load = 1 ~ 10,000 | ||
107 | * mpcore_timer_rate/10000 = 100 ~ 100,000 | ||
108 | * | ||
109 | * so the multiply value will be less than 10^9 always. | ||
110 | */ | ||
111 | load = (system_timer->offset() * (mpcore_timer_rate / 10000)) / 100; | ||
112 | |||
113 | /* Add on our offset to get the load value */ | ||
114 | load = (load + offset) % (mpcore_timer_rate / HZ); | ||
115 | 147 | ||
116 | __raw_writel(load, base + TWD_TIMER_COUNTER); | 148 | /* |
149 | * Setup the local clock events for a CPU. | ||
150 | */ | ||
151 | void __cpuinit local_timer_setup(unsigned int cpu) | ||
152 | { | ||
153 | struct clock_event_device *clk = &per_cpu(local_clockevent, cpu); | ||
154 | unsigned long flags; | ||
155 | |||
156 | twd_calibrate_rate(cpu); | ||
157 | |||
158 | clk->name = "local_timer"; | ||
159 | clk->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; | ||
160 | clk->rating = 350; | ||
161 | clk->set_mode = local_timer_set_mode; | ||
162 | clk->set_next_event = local_timer_set_next_event; | ||
163 | clk->irq = IRQ_LOCALTIMER; | ||
164 | clk->cpumask = cpumask_of_cpu(cpu); | ||
165 | clk->shift = 20; | ||
166 | clk->mult = div_sc(mpcore_timer_rate, NSEC_PER_SEC, clk->shift); | ||
167 | clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk); | ||
168 | clk->min_delta_ns = clockevent_delta2ns(0xf, clk); | ||
117 | 169 | ||
118 | /* Make sure our local interrupt controller has this enabled */ | 170 | /* Make sure our local interrupt controller has this enabled */ |
119 | __raw_writel(1 << IRQ_LOCALTIMER, | 171 | local_irq_save(flags); |
120 | __io_address(REALVIEW_GIC_DIST_BASE) + GIC_DIST_ENABLE_SET); | 172 | get_irq_chip(IRQ_LOCALTIMER)->unmask(IRQ_LOCALTIMER); |
173 | local_irq_restore(flags); | ||
174 | |||
175 | clockevents_register_device(clk); | ||
121 | } | 176 | } |
122 | 177 | ||
123 | /* | 178 | /* |
@@ -127,3 +182,26 @@ void __cpuexit local_timer_stop(unsigned int cpu) | |||
127 | { | 182 | { |
128 | __raw_writel(0, TWD_BASE(cpu) + TWD_TIMER_CONTROL); | 183 | __raw_writel(0, TWD_BASE(cpu) + TWD_TIMER_CONTROL); |
129 | } | 184 | } |
185 | |||
186 | #else /* CONFIG_LOCAL_TIMERS */ | ||
187 | |||
188 | static void dummy_timer_set_mode(enum clock_event_mode mode, | ||
189 | struct clock_event_device *clk) | ||
190 | { | ||
191 | } | ||
192 | |||
193 | void __cpuinit local_timer_setup(unsigned int cpu) | ||
194 | { | ||
195 | struct clock_event_device *clk = &per_cpu(local_clockevent, cpu); | ||
196 | |||
197 | clk->name = "dummy_timer"; | ||
198 | clk->features = CLOCK_EVT_FEAT_DUMMY; | ||
199 | clk->rating = 200; | ||
200 | clk->set_mode = dummy_timer_set_mode; | ||
201 | clk->broadcast = smp_timer_broadcast; | ||
202 | clk->cpumask = cpumask_of_cpu(cpu); | ||
203 | |||
204 | clockevents_register_device(clk); | ||
205 | } | ||
206 | |||
207 | #endif /* !CONFIG_LOCAL_TIMERS */ | ||
diff --git a/arch/arm/mach-realview/platsmp.c b/arch/arm/mach-realview/platsmp.c index fce3596f9950..de2b7159557d 100644 --- a/arch/arm/mach-realview/platsmp.c +++ b/arch/arm/mach-realview/platsmp.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <asm/hardware/arm_scu.h> | 18 | #include <asm/hardware/arm_scu.h> |
19 | #include <asm/hardware.h> | 19 | #include <asm/hardware.h> |
20 | #include <asm/io.h> | 20 | #include <asm/io.h> |
21 | #include <asm/mach-types.h> | ||
21 | 22 | ||
22 | extern void realview_secondary_startup(void); | 23 | extern void realview_secondary_startup(void); |
23 | 24 | ||
@@ -31,9 +32,13 @@ static unsigned int __init get_core_count(void) | |||
31 | { | 32 | { |
32 | unsigned int ncores; | 33 | unsigned int ncores; |
33 | 34 | ||
34 | ncores = __raw_readl(__io_address(REALVIEW_MPCORE_SCU_BASE) + SCU_CONFIG); | 35 | if (machine_is_realview_eb() && core_tile_eb11mp()) { |
36 | ncores = __raw_readl(__io_address(REALVIEW_EB11MP_SCU_BASE) + SCU_CONFIG); | ||
37 | ncores = (ncores & 0x03) + 1; | ||
38 | } else | ||
39 | ncores = 1; | ||
35 | 40 | ||
36 | return (ncores & 0x03) + 1; | 41 | return ncores; |
37 | } | 42 | } |
38 | 43 | ||
39 | static DEFINE_SPINLOCK(boot_lock); | 44 | static DEFINE_SPINLOCK(boot_lock); |
@@ -52,7 +57,7 @@ void __cpuinit platform_secondary_init(unsigned int cpu) | |||
52 | * core (e.g. timer irq), then they will not have been enabled | 57 | * core (e.g. timer irq), then they will not have been enabled |
53 | * for us: do so | 58 | * for us: do so |
54 | */ | 59 | */ |
55 | gic_cpu_init(0, __io_address(REALVIEW_GIC_CPU_BASE)); | 60 | gic_cpu_init(0, __io_address(REALVIEW_EB11MP_GIC_CPU_BASE)); |
56 | 61 | ||
57 | /* | 62 | /* |
58 | * let the primary processor know we're out of the | 63 | * let the primary processor know we're out of the |
@@ -187,10 +192,15 @@ void __init smp_prepare_cpus(unsigned int max_cpus) | |||
187 | if (max_cpus > ncores) | 192 | if (max_cpus > ncores) |
188 | max_cpus = ncores; | 193 | max_cpus = ncores; |
189 | 194 | ||
195 | #ifdef CONFIG_LOCAL_TIMERS | ||
190 | /* | 196 | /* |
191 | * Enable the local timer for primary CPU | 197 | * Enable the local timer for primary CPU. If the device is |
198 | * dummy (!CONFIG_LOCAL_TIMERS), it was already registers in | ||
199 | * realview_timer_init | ||
192 | */ | 200 | */ |
193 | local_timer_setup(cpu); | 201 | if (machine_is_realview_eb() && core_tile_eb11mp()) |
202 | local_timer_setup(cpu); | ||
203 | #endif | ||
194 | 204 | ||
195 | /* | 205 | /* |
196 | * Initialise the present map, which describes the set of CPUs | 206 | * Initialise the present map, which describes the set of CPUs |
diff --git a/arch/arm/mach-realview/realview_eb.c b/arch/arm/mach-realview/realview_eb.c index ecec2f85c4cd..60d9eb810246 100644 --- a/arch/arm/mach-realview/realview_eb.c +++ b/arch/arm/mach-realview/realview_eb.c | |||
@@ -36,7 +36,9 @@ | |||
36 | #include <asm/mach/arch.h> | 36 | #include <asm/mach/arch.h> |
37 | #include <asm/mach/map.h> | 37 | #include <asm/mach/map.h> |
38 | #include <asm/mach/mmc.h> | 38 | #include <asm/mach/mmc.h> |
39 | #include <asm/mach/time.h> | ||
39 | 40 | ||
41 | #include <asm/arch/board-eb.h> | ||
40 | #include <asm/arch/irqs.h> | 42 | #include <asm/arch/irqs.h> |
41 | 43 | ||
42 | #include "core.h" | 44 | #include "core.h" |
@@ -58,26 +60,7 @@ static struct map_desc realview_eb_io_desc[] __initdata = { | |||
58 | .pfn = __phys_to_pfn(REALVIEW_GIC_DIST_BASE), | 60 | .pfn = __phys_to_pfn(REALVIEW_GIC_DIST_BASE), |
59 | .length = SZ_4K, | 61 | .length = SZ_4K, |
60 | .type = MT_DEVICE, | 62 | .type = MT_DEVICE, |
61 | }, | ||
62 | #ifdef CONFIG_REALVIEW_MPCORE | ||
63 | { | ||
64 | .virtual = IO_ADDRESS(REALVIEW_GIC1_CPU_BASE), | ||
65 | .pfn = __phys_to_pfn(REALVIEW_GIC1_CPU_BASE), | ||
66 | .length = SZ_4K, | ||
67 | .type = MT_DEVICE, | ||
68 | }, { | 63 | }, { |
69 | .virtual = IO_ADDRESS(REALVIEW_GIC1_DIST_BASE), | ||
70 | .pfn = __phys_to_pfn(REALVIEW_GIC1_DIST_BASE), | ||
71 | .length = SZ_4K, | ||
72 | .type = MT_DEVICE, | ||
73 | }, { | ||
74 | .virtual = IO_ADDRESS(REALVIEW_MPCORE_L220_BASE), | ||
75 | .pfn = __phys_to_pfn(REALVIEW_MPCORE_L220_BASE), | ||
76 | .length = SZ_8K, | ||
77 | .type = MT_DEVICE, | ||
78 | }, | ||
79 | #endif | ||
80 | { | ||
81 | .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE), | 64 | .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE), |
82 | .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE), | 65 | .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE), |
83 | .length = SZ_4K, | 66 | .length = SZ_4K, |
@@ -103,11 +86,95 @@ static struct map_desc realview_eb_io_desc[] __initdata = { | |||
103 | #endif | 86 | #endif |
104 | }; | 87 | }; |
105 | 88 | ||
89 | static struct map_desc realview_eb11mp_io_desc[] __initdata = { | ||
90 | { | ||
91 | .virtual = IO_ADDRESS(REALVIEW_EB11MP_GIC_CPU_BASE), | ||
92 | .pfn = __phys_to_pfn(REALVIEW_EB11MP_GIC_CPU_BASE), | ||
93 | .length = SZ_4K, | ||
94 | .type = MT_DEVICE, | ||
95 | }, { | ||
96 | .virtual = IO_ADDRESS(REALVIEW_EB11MP_GIC_DIST_BASE), | ||
97 | .pfn = __phys_to_pfn(REALVIEW_EB11MP_GIC_DIST_BASE), | ||
98 | .length = SZ_4K, | ||
99 | .type = MT_DEVICE, | ||
100 | }, { | ||
101 | .virtual = IO_ADDRESS(REALVIEW_EB11MP_L220_BASE), | ||
102 | .pfn = __phys_to_pfn(REALVIEW_EB11MP_L220_BASE), | ||
103 | .length = SZ_8K, | ||
104 | .type = MT_DEVICE, | ||
105 | } | ||
106 | }; | ||
107 | |||
106 | static void __init realview_eb_map_io(void) | 108 | static void __init realview_eb_map_io(void) |
107 | { | 109 | { |
108 | iotable_init(realview_eb_io_desc, ARRAY_SIZE(realview_eb_io_desc)); | 110 | iotable_init(realview_eb_io_desc, ARRAY_SIZE(realview_eb_io_desc)); |
111 | if (core_tile_eb11mp()) | ||
112 | iotable_init(realview_eb11mp_io_desc, ARRAY_SIZE(realview_eb11mp_io_desc)); | ||
109 | } | 113 | } |
110 | 114 | ||
115 | /* | ||
116 | * RealView EB AMBA devices | ||
117 | */ | ||
118 | |||
119 | /* | ||
120 | * These devices are connected via the core APB bridge | ||
121 | */ | ||
122 | #define GPIO2_IRQ { IRQ_EB_GPIO2, NO_IRQ } | ||
123 | #define GPIO2_DMA { 0, 0 } | ||
124 | #define GPIO3_IRQ { IRQ_EB_GPIO3, NO_IRQ } | ||
125 | #define GPIO3_DMA { 0, 0 } | ||
126 | |||
127 | #define AACI_IRQ { IRQ_EB_AACI, NO_IRQ } | ||
128 | #define AACI_DMA { 0x80, 0x81 } | ||
129 | #define MMCI0_IRQ { IRQ_EB_MMCI0A, IRQ_EB_MMCI0B } | ||
130 | #define MMCI0_DMA { 0x84, 0 } | ||
131 | #define KMI0_IRQ { IRQ_EB_KMI0, NO_IRQ } | ||
132 | #define KMI0_DMA { 0, 0 } | ||
133 | #define KMI1_IRQ { IRQ_EB_KMI1, NO_IRQ } | ||
134 | #define KMI1_DMA { 0, 0 } | ||
135 | |||
136 | /* | ||
137 | * These devices are connected directly to the multi-layer AHB switch | ||
138 | */ | ||
139 | #define SMC_IRQ { NO_IRQ, NO_IRQ } | ||
140 | #define SMC_DMA { 0, 0 } | ||
141 | #define MPMC_IRQ { NO_IRQ, NO_IRQ } | ||
142 | #define MPMC_DMA { 0, 0 } | ||
143 | #define CLCD_IRQ { IRQ_EB_CLCD, NO_IRQ } | ||
144 | #define CLCD_DMA { 0, 0 } | ||
145 | #define DMAC_IRQ { IRQ_EB_DMA, NO_IRQ } | ||
146 | #define DMAC_DMA { 0, 0 } | ||
147 | |||
148 | /* | ||
149 | * These devices are connected via the core APB bridge | ||
150 | */ | ||
151 | #define SCTL_IRQ { NO_IRQ, NO_IRQ } | ||
152 | #define SCTL_DMA { 0, 0 } | ||
153 | #define WATCHDOG_IRQ { IRQ_EB_WDOG, NO_IRQ } | ||
154 | #define WATCHDOG_DMA { 0, 0 } | ||
155 | #define GPIO0_IRQ { IRQ_EB_GPIO0, NO_IRQ } | ||
156 | #define GPIO0_DMA { 0, 0 } | ||
157 | #define GPIO1_IRQ { IRQ_EB_GPIO1, NO_IRQ } | ||
158 | #define GPIO1_DMA { 0, 0 } | ||
159 | #define RTC_IRQ { IRQ_EB_RTC, NO_IRQ } | ||
160 | #define RTC_DMA { 0, 0 } | ||
161 | |||
162 | /* | ||
163 | * These devices are connected via the DMA APB bridge | ||
164 | */ | ||
165 | #define SCI_IRQ { IRQ_EB_SCI, NO_IRQ } | ||
166 | #define SCI_DMA { 7, 6 } | ||
167 | #define UART0_IRQ { IRQ_EB_UART0, NO_IRQ } | ||
168 | #define UART0_DMA { 15, 14 } | ||
169 | #define UART1_IRQ { IRQ_EB_UART1, NO_IRQ } | ||
170 | #define UART1_DMA { 13, 12 } | ||
171 | #define UART2_IRQ { IRQ_EB_UART2, NO_IRQ } | ||
172 | #define UART2_DMA { 11, 10 } | ||
173 | #define UART3_IRQ { IRQ_EB_UART3, NO_IRQ } | ||
174 | #define UART3_DMA { 0x86, 0x87 } | ||
175 | #define SSP_IRQ { IRQ_EB_SSP, NO_IRQ } | ||
176 | #define SSP_DMA { 9, 8 } | ||
177 | |||
111 | /* FPGA Primecells */ | 178 | /* FPGA Primecells */ |
112 | AMBA_DEVICE(aaci, "fpga:04", AACI, NULL); | 179 | AMBA_DEVICE(aaci, "fpga:04", AACI, NULL); |
113 | AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &realview_mmc0_plat_data); | 180 | AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &realview_mmc0_plat_data); |
@@ -153,38 +220,127 @@ static struct amba_device *amba_devs[] __initdata = { | |||
153 | &kmi1_device, | 220 | &kmi1_device, |
154 | }; | 221 | }; |
155 | 222 | ||
223 | /* | ||
224 | * RealView EB platform devices | ||
225 | */ | ||
226 | |||
227 | static struct resource realview_eb_smc91x_resources[] = { | ||
228 | [0] = { | ||
229 | .start = REALVIEW_ETH_BASE, | ||
230 | .end = REALVIEW_ETH_BASE + SZ_64K - 1, | ||
231 | .flags = IORESOURCE_MEM, | ||
232 | }, | ||
233 | [1] = { | ||
234 | .start = IRQ_EB_ETH, | ||
235 | .end = IRQ_EB_ETH, | ||
236 | .flags = IORESOURCE_IRQ, | ||
237 | }, | ||
238 | }; | ||
239 | |||
240 | static struct platform_device realview_eb_smc91x_device = { | ||
241 | .name = "smc91x", | ||
242 | .id = 0, | ||
243 | .num_resources = ARRAY_SIZE(realview_eb_smc91x_resources), | ||
244 | .resource = realview_eb_smc91x_resources, | ||
245 | }; | ||
246 | |||
156 | static void __init gic_init_irq(void) | 247 | static void __init gic_init_irq(void) |
157 | { | 248 | { |
158 | #ifdef CONFIG_REALVIEW_MPCORE | 249 | if (core_tile_eb11mp()) { |
159 | unsigned int pldctrl; | 250 | unsigned int pldctrl; |
160 | writel(0x0000a05f, __io_address(REALVIEW_SYS_LOCK)); | 251 | |
161 | pldctrl = readl(__io_address(REALVIEW_SYS_BASE) + REALVIEW_MPCORE_SYS_PLD_CTRL1); | 252 | /* new irq mode */ |
162 | pldctrl |= 0x00800000; /* New irq mode */ | 253 | writel(0x0000a05f, __io_address(REALVIEW_SYS_LOCK)); |
163 | writel(pldctrl, __io_address(REALVIEW_SYS_BASE) + REALVIEW_MPCORE_SYS_PLD_CTRL1); | 254 | pldctrl = readl(__io_address(REALVIEW_SYS_BASE) + REALVIEW_EB11MP_SYS_PLD_CTRL1); |
164 | writel(0x00000000, __io_address(REALVIEW_SYS_LOCK)); | 255 | pldctrl |= 0x00800000; |
256 | writel(pldctrl, __io_address(REALVIEW_SYS_BASE) + REALVIEW_EB11MP_SYS_PLD_CTRL1); | ||
257 | writel(0x00000000, __io_address(REALVIEW_SYS_LOCK)); | ||
258 | |||
259 | /* core tile GIC, primary */ | ||
260 | gic_cpu_base_addr = __io_address(REALVIEW_EB11MP_GIC_CPU_BASE); | ||
261 | gic_dist_init(0, __io_address(REALVIEW_EB11MP_GIC_DIST_BASE), 29); | ||
262 | gic_cpu_init(0, gic_cpu_base_addr); | ||
263 | |||
264 | #ifndef CONFIG_REALVIEW_EB_ARM11MP_REVB | ||
265 | /* board GIC, secondary */ | ||
266 | gic_dist_init(1, __io_address(REALVIEW_GIC_DIST_BASE), 64); | ||
267 | gic_cpu_init(1, __io_address(REALVIEW_GIC_CPU_BASE)); | ||
268 | gic_cascade_irq(1, IRQ_EB11MP_EB_IRQ1); | ||
165 | #endif | 269 | #endif |
166 | gic_dist_init(0, __io_address(REALVIEW_GIC_DIST_BASE), 29); | 270 | } else { |
167 | gic_cpu_init(0, __io_address(REALVIEW_GIC_CPU_BASE)); | 271 | /* board GIC, primary */ |
168 | #if defined(CONFIG_REALVIEW_MPCORE) && !defined(CONFIG_REALVIEW_MPCORE_REVB) | 272 | gic_cpu_base_addr = __io_address(REALVIEW_GIC_CPU_BASE); |
169 | gic_dist_init(1, __io_address(REALVIEW_GIC1_DIST_BASE), 64); | 273 | gic_dist_init(0, __io_address(REALVIEW_GIC_DIST_BASE), 29); |
170 | gic_cpu_init(1, __io_address(REALVIEW_GIC1_CPU_BASE)); | 274 | gic_cpu_init(0, gic_cpu_base_addr); |
171 | gic_cascade_irq(1, IRQ_EB_IRQ1); | 275 | } |
276 | } | ||
277 | |||
278 | /* | ||
279 | * Fix up the IRQ numbers for the RealView EB/ARM11MPCore tile | ||
280 | */ | ||
281 | static void realview_eb11mp_fixup(void) | ||
282 | { | ||
283 | /* AMBA devices */ | ||
284 | dmac_device.irq[0] = IRQ_EB11MP_DMA; | ||
285 | uart0_device.irq[0] = IRQ_EB11MP_UART0; | ||
286 | uart1_device.irq[0] = IRQ_EB11MP_UART1; | ||
287 | uart2_device.irq[0] = IRQ_EB11MP_UART2; | ||
288 | uart3_device.irq[0] = IRQ_EB11MP_UART3; | ||
289 | clcd_device.irq[0] = IRQ_EB11MP_CLCD; | ||
290 | wdog_device.irq[0] = IRQ_EB11MP_WDOG; | ||
291 | gpio0_device.irq[0] = IRQ_EB11MP_GPIO0; | ||
292 | gpio1_device.irq[0] = IRQ_EB11MP_GPIO1; | ||
293 | gpio2_device.irq[0] = IRQ_EB11MP_GPIO2; | ||
294 | rtc_device.irq[0] = IRQ_EB11MP_RTC; | ||
295 | sci0_device.irq[0] = IRQ_EB11MP_SCI; | ||
296 | ssp0_device.irq[0] = IRQ_EB11MP_SSP; | ||
297 | aaci_device.irq[0] = IRQ_EB11MP_AACI; | ||
298 | mmc0_device.irq[0] = IRQ_EB11MP_MMCI0A; | ||
299 | mmc0_device.irq[1] = IRQ_EB11MP_MMCI0B; | ||
300 | kmi0_device.irq[0] = IRQ_EB11MP_KMI0; | ||
301 | kmi1_device.irq[0] = IRQ_EB11MP_KMI1; | ||
302 | |||
303 | /* platform devices */ | ||
304 | realview_eb_smc91x_resources[1].start = IRQ_EB11MP_ETH; | ||
305 | realview_eb_smc91x_resources[1].end = IRQ_EB11MP_ETH; | ||
306 | } | ||
307 | |||
308 | static void __init realview_eb_timer_init(void) | ||
309 | { | ||
310 | unsigned int timer_irq; | ||
311 | |||
312 | if (core_tile_eb11mp()) { | ||
313 | #ifdef CONFIG_LOCAL_TIMERS | ||
314 | twd_base_addr = __io_address(REALVIEW_EB11MP_TWD_BASE); | ||
315 | twd_size = REALVIEW_EB11MP_TWD_SIZE; | ||
172 | #endif | 316 | #endif |
317 | timer_irq = IRQ_EB11MP_TIMER0_1; | ||
318 | } else | ||
319 | timer_irq = IRQ_EB_TIMER0_1; | ||
320 | |||
321 | realview_timer_init(timer_irq); | ||
173 | } | 322 | } |
174 | 323 | ||
324 | static struct sys_timer realview_eb_timer = { | ||
325 | .init = realview_eb_timer_init, | ||
326 | }; | ||
327 | |||
175 | static void __init realview_eb_init(void) | 328 | static void __init realview_eb_init(void) |
176 | { | 329 | { |
177 | int i; | 330 | int i; |
178 | 331 | ||
179 | #ifdef CONFIG_REALVIEW_MPCORE | 332 | if (core_tile_eb11mp()) { |
180 | /* 1MB (128KB/way), 8-way associativity, evmon/parity/share enabled | 333 | realview_eb11mp_fixup(); |
181 | * Bits: .... ...0 0111 1001 0000 .... .... .... */ | 334 | |
182 | l2x0_init(__io_address(REALVIEW_MPCORE_L220_BASE), 0x00790000, 0xfe000fff); | 335 | /* 1MB (128KB/way), 8-way associativity, evmon/parity/share enabled |
183 | #endif | 336 | * Bits: .... ...0 0111 1001 0000 .... .... .... */ |
337 | l2x0_init(__io_address(REALVIEW_EB11MP_L220_BASE), 0x00790000, 0xfe000fff); | ||
338 | } | ||
339 | |||
184 | clk_register(&realview_clcd_clk); | 340 | clk_register(&realview_clcd_clk); |
185 | 341 | ||
186 | platform_device_register(&realview_flash_device); | 342 | platform_device_register(&realview_flash_device); |
187 | platform_device_register(&realview_smc91x_device); | 343 | platform_device_register(&realview_eb_smc91x_device); |
188 | platform_device_register(&realview_i2c_device); | 344 | platform_device_register(&realview_i2c_device); |
189 | 345 | ||
190 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) { | 346 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) { |
@@ -204,6 +360,6 @@ MACHINE_START(REALVIEW_EB, "ARM-RealView EB") | |||
204 | .boot_params = 0x00000100, | 360 | .boot_params = 0x00000100, |
205 | .map_io = realview_eb_map_io, | 361 | .map_io = realview_eb_map_io, |
206 | .init_irq = gic_init_irq, | 362 | .init_irq = gic_init_irq, |
207 | .timer = &realview_timer, | 363 | .timer = &realview_eb_timer, |
208 | .init_machine = realview_eb_init, | 364 | .init_machine = realview_eb_init, |
209 | MACHINE_END | 365 | MACHINE_END |
diff --git a/arch/arm/mach-sa1100/collie_pm.c b/arch/arm/mach-sa1100/collie_pm.c index 1e25b1d19fce..94620be7bfac 100644 --- a/arch/arm/mach-sa1100/collie_pm.c +++ b/arch/arm/mach-sa1100/collie_pm.c | |||
@@ -165,7 +165,7 @@ int collie_read_temp(void) | |||
165 | 165 | ||
166 | ucb1x00_adc_enable(ucb); | 166 | ucb1x00_adc_enable(ucb); |
167 | ucb1x00_io_write(ucb, COLLIE_TC35143_GPIO_TMP_ON, 0); | 167 | ucb1x00_io_write(ucb, COLLIE_TC35143_GPIO_TMP_ON, 0); |
168 | /* >1010 = battery removed, 460 = 22C ?, higer = lower temp ? */ | 168 | /* >1010 = battery removed, 460 = 22C ?, higher = lower temp ? */ |
169 | voltage = ucb1x00_adc_read(ucb, UCB_ADC_INP_AD0, UCB_SYNC); | 169 | voltage = ucb1x00_adc_read(ucb, UCB_ADC_INP_AD0, UCB_SYNC); |
170 | ucb1x00_io_write(ucb, 0, COLLIE_TC35143_GPIO_TMP_ON); | 170 | ucb1x00_io_write(ucb, 0, COLLIE_TC35143_GPIO_TMP_ON); |
171 | ucb1x00_adc_disable(ucb); | 171 | ucb1x00_adc_disable(ucb); |
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c index 9e13c8358ea7..5c84c604ed86 100644 --- a/arch/arm/mach-sa1100/generic.c +++ b/arch/arm/mach-sa1100/generic.c | |||
@@ -470,7 +470,7 @@ void __init sa1110_mb_disable(void) | |||
470 | * If the system is going to use the SA-1111 DMA engines, set up | 470 | * If the system is going to use the SA-1111 DMA engines, set up |
471 | * the memory bus request/grant pins. | 471 | * the memory bus request/grant pins. |
472 | */ | 472 | */ |
473 | void __init sa1110_mb_enable(void) | 473 | void __devinit sa1110_mb_enable(void) |
474 | { | 474 | { |
475 | unsigned long flags; | 475 | unsigned long flags; |
476 | 476 | ||
diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c index 75952779ce19..303a7ff6bfd2 100644 --- a/arch/arm/mm/ioremap.c +++ b/arch/arm/mm/ioremap.c | |||
@@ -162,7 +162,7 @@ static void unmap_area_sections(unsigned long virt, unsigned long size) | |||
162 | * Free the page table, if there was one. | 162 | * Free the page table, if there was one. |
163 | */ | 163 | */ |
164 | if ((pmd_val(pmd) & PMD_TYPE_MASK) == PMD_TYPE_TABLE) | 164 | if ((pmd_val(pmd) & PMD_TYPE_MASK) == PMD_TYPE_TABLE) |
165 | pte_free_kernel(pmd_page_vaddr(pmd)); | 165 | pte_free_kernel(&init_mm, pmd_page_vaddr(pmd)); |
166 | } | 166 | } |
167 | 167 | ||
168 | addr += PGDIR_SIZE; | 168 | addr += PGDIR_SIZE; |
diff --git a/arch/arm/mm/pgd.c b/arch/arm/mm/pgd.c index 50b9aed6000d..500c9610ab30 100644 --- a/arch/arm/mm/pgd.c +++ b/arch/arm/mm/pgd.c | |||
@@ -65,14 +65,14 @@ pgd_t *get_pgd_slow(struct mm_struct *mm) | |||
65 | return new_pgd; | 65 | return new_pgd; |
66 | 66 | ||
67 | no_pte: | 67 | no_pte: |
68 | pmd_free(new_pmd); | 68 | pmd_free(mm, new_pmd); |
69 | no_pmd: | 69 | no_pmd: |
70 | free_pages((unsigned long)new_pgd, 2); | 70 | free_pages((unsigned long)new_pgd, 2); |
71 | no_pgd: | 71 | no_pgd: |
72 | return NULL; | 72 | return NULL; |
73 | } | 73 | } |
74 | 74 | ||
75 | void free_pgd_slow(pgd_t *pgd) | 75 | void free_pgd_slow(struct mm_struct *mm, pgd_t *pgd) |
76 | { | 76 | { |
77 | pmd_t *pmd; | 77 | pmd_t *pmd; |
78 | struct page *pte; | 78 | struct page *pte; |
@@ -94,8 +94,8 @@ void free_pgd_slow(pgd_t *pgd) | |||
94 | pmd_clear(pmd); | 94 | pmd_clear(pmd); |
95 | dec_zone_page_state(virt_to_page((unsigned long *)pgd), NR_PAGETABLE); | 95 | dec_zone_page_state(virt_to_page((unsigned long *)pgd), NR_PAGETABLE); |
96 | pte_lock_deinit(pte); | 96 | pte_lock_deinit(pte); |
97 | pte_free(pte); | 97 | pte_free(mm, pte); |
98 | pmd_free(pmd); | 98 | pmd_free(mm, pmd); |
99 | free: | 99 | free: |
100 | free_pages((unsigned long) pgd, 2); | 100 | free_pages((unsigned long) pgd, 2); |
101 | } | 101 | } |
diff --git a/arch/arm/plat-iop/time.c b/arch/arm/plat-iop/time.c index ba3d21d8fba3..6fe481ff4fdf 100644 --- a/arch/arm/plat-iop/time.c +++ b/arch/arm/plat-iop/time.c | |||
@@ -57,8 +57,6 @@ unsigned long iop_gettimeoffset(void) | |||
57 | static irqreturn_t | 57 | static irqreturn_t |
58 | iop_timer_interrupt(int irq, void *dev_id) | 58 | iop_timer_interrupt(int irq, void *dev_id) |
59 | { | 59 | { |
60 | write_seqlock(&xtime_lock); | ||
61 | |||
62 | write_tisr(1); | 60 | write_tisr(1); |
63 | 61 | ||
64 | while ((signed long)(next_jiffy_time - read_tcr1()) | 62 | while ((signed long)(next_jiffy_time - read_tcr1()) |
@@ -67,8 +65,6 @@ iop_timer_interrupt(int irq, void *dev_id) | |||
67 | next_jiffy_time -= ticks_per_jiffy; | 65 | next_jiffy_time -= ticks_per_jiffy; |
68 | } | 66 | } |
69 | 67 | ||
70 | write_sequnlock(&xtime_lock); | ||
71 | |||
72 | return IRQ_HANDLED; | 68 | return IRQ_HANDLED; |
73 | } | 69 | } |
74 | 70 | ||
diff --git a/arch/arm/plat-s3c24xx/irq.c b/arch/arm/plat-s3c24xx/irq.c index d486f5112569..ae2c5d7efc9d 100644 --- a/arch/arm/plat-s3c24xx/irq.c +++ b/arch/arm/plat-s3c24xx/irq.c | |||
@@ -47,7 +47,7 @@ | |||
47 | * Mark IRQ_LCD valid | 47 | * Mark IRQ_LCD valid |
48 | * | 48 | * |
49 | * 25-Jul-2005 Ben Dooks | 49 | * 25-Jul-2005 Ben Dooks |
50 | * Split the S3C2440 IRQ code to seperate file | 50 | * Split the S3C2440 IRQ code to separate file |
51 | */ | 51 | */ |
52 | 52 | ||
53 | #include <linux/init.h> | 53 | #include <linux/init.h> |
diff --git a/arch/arm/plat-s3c24xx/time.c b/arch/arm/plat-s3c24xx/time.c index 2ec1daaa0e53..766473b3f98b 100644 --- a/arch/arm/plat-s3c24xx/time.c +++ b/arch/arm/plat-s3c24xx/time.c | |||
@@ -130,9 +130,7 @@ static unsigned long s3c2410_gettimeoffset (void) | |||
130 | static irqreturn_t | 130 | static irqreturn_t |
131 | s3c2410_timer_interrupt(int irq, void *dev_id) | 131 | s3c2410_timer_interrupt(int irq, void *dev_id) |
132 | { | 132 | { |
133 | write_seqlock(&xtime_lock); | ||
134 | timer_tick(); | 133 | timer_tick(); |
135 | write_sequnlock(&xtime_lock); | ||
136 | return IRQ_HANDLED; | 134 | return IRQ_HANDLED; |
137 | } | 135 | } |
138 | 136 | ||
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index e34e2c9c94cb..28e0caf4156c 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -10,6 +10,8 @@ config AVR32 | |||
10 | # With EMBEDDED=n, we get lots of stuff automatically selected | 10 | # With EMBEDDED=n, we get lots of stuff automatically selected |
11 | # that we usually don't need on AVR32. | 11 | # that we usually don't need on AVR32. |
12 | select EMBEDDED | 12 | select EMBEDDED |
13 | select HAVE_OPROFILE | ||
14 | select HAVE_KPROBES | ||
13 | help | 15 | help |
14 | AVR32 is a high-performance 32-bit RISC microprocessor core, | 16 | AVR32 is a high-performance 32-bit RISC microprocessor core, |
15 | designed for cost-sensitive embedded applications, with particular | 17 | designed for cost-sensitive embedded applications, with particular |
@@ -54,9 +56,6 @@ config ARCH_HAS_ILOG2_U32 | |||
54 | config ARCH_HAS_ILOG2_U64 | 56 | config ARCH_HAS_ILOG2_U64 |
55 | def_bool n | 57 | def_bool n |
56 | 58 | ||
57 | config ARCH_SUPPORTS_OPROFILE | ||
58 | def_bool y | ||
59 | |||
60 | config GENERIC_HWEIGHT | 59 | config GENERIC_HWEIGHT |
61 | def_bool y | 60 | def_bool y |
62 | 61 | ||
@@ -83,6 +82,7 @@ config PLATFORM_AT32AP | |||
83 | select SUBARCH_AVR32B | 82 | select SUBARCH_AVR32B |
84 | select MMU | 83 | select MMU |
85 | select PERFORMANCE_COUNTERS | 84 | select PERFORMANCE_COUNTERS |
85 | select HAVE_GPIO_LIB | ||
86 | 86 | ||
87 | # | 87 | # |
88 | # CPU types | 88 | # CPU types |
@@ -236,8 +236,6 @@ source "drivers/Kconfig" | |||
236 | 236 | ||
237 | source "fs/Kconfig" | 237 | source "fs/Kconfig" |
238 | 238 | ||
239 | source "kernel/Kconfig.instrumentation" | ||
240 | |||
241 | source "arch/avr32/Kconfig.debug" | 239 | source "arch/avr32/Kconfig.debug" |
242 | 240 | ||
243 | source "security/Kconfig" | 241 | source "security/Kconfig" |
diff --git a/arch/avr32/kernel/syscall_table.S b/arch/avr32/kernel/syscall_table.S index 75c81f2dd0b3..478bda4c4a09 100644 --- a/arch/avr32/kernel/syscall_table.S +++ b/arch/avr32/kernel/syscall_table.S | |||
@@ -293,6 +293,6 @@ sys_call_table: | |||
293 | .long sys_shmctl | 293 | .long sys_shmctl |
294 | .long sys_utimensat | 294 | .long sys_utimensat |
295 | .long sys_signalfd | 295 | .long sys_signalfd |
296 | .long sys_timerfd /* 280 */ | 296 | .long sys_ni_syscall /* 280, was sys_timerfd */ |
297 | .long sys_eventfd | 297 | .long sys_eventfd |
298 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ | 298 | .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ |
diff --git a/arch/avr32/mach-at32ap/pio.c b/arch/avr32/mach-at32ap/pio.c index d61a02da898c..38a8fa31c0b5 100644 --- a/arch/avr32/mach-at32ap/pio.c +++ b/arch/avr32/mach-at32ap/pio.c | |||
@@ -24,11 +24,11 @@ | |||
24 | #define MAX_NR_PIO_DEVICES 8 | 24 | #define MAX_NR_PIO_DEVICES 8 |
25 | 25 | ||
26 | struct pio_device { | 26 | struct pio_device { |
27 | struct gpio_chip chip; | ||
27 | void __iomem *regs; | 28 | void __iomem *regs; |
28 | const struct platform_device *pdev; | 29 | const struct platform_device *pdev; |
29 | struct clk *clk; | 30 | struct clk *clk; |
30 | u32 pinmux_mask; | 31 | u32 pinmux_mask; |
31 | u32 gpio_mask; | ||
32 | char name[8]; | 32 | char name[8]; |
33 | }; | 33 | }; |
34 | 34 | ||
@@ -64,7 +64,8 @@ void __init at32_select_periph(unsigned int pin, unsigned int periph, | |||
64 | goto fail; | 64 | goto fail; |
65 | } | 65 | } |
66 | 66 | ||
67 | if (unlikely(test_and_set_bit(pin_index, &pio->pinmux_mask))) { | 67 | if (unlikely(test_and_set_bit(pin_index, &pio->pinmux_mask) |
68 | || gpiochip_is_requested(&pio->chip, pin_index))) { | ||
68 | printk("%s: pin %u is busy\n", pio->name, pin_index); | 69 | printk("%s: pin %u is busy\n", pio->name, pin_index); |
69 | goto fail; | 70 | goto fail; |
70 | } | 71 | } |
@@ -79,9 +80,6 @@ void __init at32_select_periph(unsigned int pin, unsigned int periph, | |||
79 | if (!(flags & AT32_GPIOF_PULLUP)) | 80 | if (!(flags & AT32_GPIOF_PULLUP)) |
80 | pio_writel(pio, PUDR, mask); | 81 | pio_writel(pio, PUDR, mask); |
81 | 82 | ||
82 | /* gpio_request NOT allowed */ | ||
83 | set_bit(pin_index, &pio->gpio_mask); | ||
84 | |||
85 | return; | 83 | return; |
86 | 84 | ||
87 | fail: | 85 | fail: |
@@ -130,9 +128,6 @@ void __init at32_select_gpio(unsigned int pin, unsigned long flags) | |||
130 | 128 | ||
131 | pio_writel(pio, PER, mask); | 129 | pio_writel(pio, PER, mask); |
132 | 130 | ||
133 | /* gpio_request now allowed */ | ||
134 | clear_bit(pin_index, &pio->gpio_mask); | ||
135 | |||
136 | return; | 131 | return; |
137 | 132 | ||
138 | fail: | 133 | fail: |
@@ -166,96 +161,50 @@ fail: | |||
166 | 161 | ||
167 | /* GPIO API */ | 162 | /* GPIO API */ |
168 | 163 | ||
169 | int gpio_request(unsigned int gpio, const char *label) | 164 | static int direction_input(struct gpio_chip *chip, unsigned offset) |
170 | { | 165 | { |
171 | struct pio_device *pio; | 166 | struct pio_device *pio = container_of(chip, struct pio_device, chip); |
172 | unsigned int pin; | 167 | u32 mask = 1 << offset; |
173 | |||
174 | pio = gpio_to_pio(gpio); | ||
175 | if (!pio) | ||
176 | return -ENODEV; | ||
177 | 168 | ||
178 | pin = gpio & 0x1f; | 169 | if (!(pio_readl(pio, PSR) & mask)) |
179 | if (test_and_set_bit(pin, &pio->gpio_mask)) | 170 | return -EINVAL; |
180 | return -EBUSY; | ||
181 | 171 | ||
172 | pio_writel(pio, ODR, mask); | ||
182 | return 0; | 173 | return 0; |
183 | } | 174 | } |
184 | EXPORT_SYMBOL(gpio_request); | ||
185 | 175 | ||
186 | void gpio_free(unsigned int gpio) | 176 | static int gpio_get(struct gpio_chip *chip, unsigned offset) |
187 | { | 177 | { |
188 | struct pio_device *pio; | 178 | struct pio_device *pio = container_of(chip, struct pio_device, chip); |
189 | unsigned int pin; | ||
190 | 179 | ||
191 | pio = gpio_to_pio(gpio); | 180 | return (pio_readl(pio, PDSR) >> offset) & 1; |
192 | if (!pio) { | ||
193 | printk(KERN_ERR | ||
194 | "gpio: attempted to free invalid pin %u\n", gpio); | ||
195 | return; | ||
196 | } | ||
197 | |||
198 | pin = gpio & 0x1f; | ||
199 | if (!test_and_clear_bit(pin, &pio->gpio_mask)) | ||
200 | printk(KERN_ERR "gpio: freeing free or non-gpio pin %s-%u\n", | ||
201 | pio->name, pin); | ||
202 | } | 181 | } |
203 | EXPORT_SYMBOL(gpio_free); | ||
204 | 182 | ||
205 | int gpio_direction_input(unsigned int gpio) | 183 | static void gpio_set(struct gpio_chip *chip, unsigned offset, int value); |
206 | { | ||
207 | struct pio_device *pio; | ||
208 | unsigned int pin; | ||
209 | |||
210 | pio = gpio_to_pio(gpio); | ||
211 | if (!pio) | ||
212 | return -ENODEV; | ||
213 | |||
214 | pin = gpio & 0x1f; | ||
215 | pio_writel(pio, ODR, 1 << pin); | ||
216 | |||
217 | return 0; | ||
218 | } | ||
219 | EXPORT_SYMBOL(gpio_direction_input); | ||
220 | 184 | ||
221 | int gpio_direction_output(unsigned int gpio, int value) | 185 | static int direction_output(struct gpio_chip *chip, unsigned offset, int value) |
222 | { | 186 | { |
223 | struct pio_device *pio; | 187 | struct pio_device *pio = container_of(chip, struct pio_device, chip); |
224 | unsigned int pin; | 188 | u32 mask = 1 << offset; |
225 | |||
226 | pio = gpio_to_pio(gpio); | ||
227 | if (!pio) | ||
228 | return -ENODEV; | ||
229 | 189 | ||
230 | gpio_set_value(gpio, value); | 190 | if (!(pio_readl(pio, PSR) & mask)) |
231 | 191 | return -EINVAL; | |
232 | pin = gpio & 0x1f; | ||
233 | pio_writel(pio, OER, 1 << pin); | ||
234 | 192 | ||
193 | gpio_set(chip, offset, value); | ||
194 | pio_writel(pio, OER, mask); | ||
235 | return 0; | 195 | return 0; |
236 | } | 196 | } |
237 | EXPORT_SYMBOL(gpio_direction_output); | ||
238 | 197 | ||
239 | int gpio_get_value(unsigned int gpio) | 198 | static void gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
240 | { | 199 | { |
241 | struct pio_device *pio = &pio_dev[gpio >> 5]; | 200 | struct pio_device *pio = container_of(chip, struct pio_device, chip); |
201 | u32 mask = 1 << offset; | ||
242 | 202 | ||
243 | return (pio_readl(pio, PDSR) >> (gpio & 0x1f)) & 1; | ||
244 | } | ||
245 | EXPORT_SYMBOL(gpio_get_value); | ||
246 | |||
247 | void gpio_set_value(unsigned int gpio, int value) | ||
248 | { | ||
249 | struct pio_device *pio = &pio_dev[gpio >> 5]; | ||
250 | u32 mask; | ||
251 | |||
252 | mask = 1 << (gpio & 0x1f); | ||
253 | if (value) | 203 | if (value) |
254 | pio_writel(pio, SODR, mask); | 204 | pio_writel(pio, SODR, mask); |
255 | else | 205 | else |
256 | pio_writel(pio, CODR, mask); | 206 | pio_writel(pio, CODR, mask); |
257 | } | 207 | } |
258 | EXPORT_SYMBOL(gpio_set_value); | ||
259 | 208 | ||
260 | /*--------------------------------------------------------------------------*/ | 209 | /*--------------------------------------------------------------------------*/ |
261 | 210 | ||
@@ -339,6 +288,63 @@ gpio_irq_setup(struct pio_device *pio, int irq, int gpio_irq) | |||
339 | 288 | ||
340 | /*--------------------------------------------------------------------------*/ | 289 | /*--------------------------------------------------------------------------*/ |
341 | 290 | ||
291 | #ifdef CONFIG_DEBUG_FS | ||
292 | |||
293 | #include <linux/seq_file.h> | ||
294 | |||
295 | /* | ||
296 | * This shows more info than the generic gpio dump code: | ||
297 | * pullups, deglitching, open drain drive. | ||
298 | */ | ||
299 | static void pio_bank_show(struct seq_file *s, struct gpio_chip *chip) | ||
300 | { | ||
301 | struct pio_device *pio = container_of(chip, struct pio_device, chip); | ||
302 | u32 psr, osr, imr, pdsr, pusr, ifsr, mdsr; | ||
303 | unsigned i; | ||
304 | u32 mask; | ||
305 | char bank; | ||
306 | |||
307 | psr = pio_readl(pio, PSR); | ||
308 | osr = pio_readl(pio, OSR); | ||
309 | imr = pio_readl(pio, IMR); | ||
310 | pdsr = pio_readl(pio, PDSR); | ||
311 | pusr = pio_readl(pio, PUSR); | ||
312 | ifsr = pio_readl(pio, IFSR); | ||
313 | mdsr = pio_readl(pio, MDSR); | ||
314 | |||
315 | bank = 'A' + pio->pdev->id; | ||
316 | |||
317 | for (i = 0, mask = 1; i < 32; i++, mask <<= 1) { | ||
318 | const char *label; | ||
319 | |||
320 | label = gpiochip_is_requested(chip, i); | ||
321 | if (!label) | ||
322 | continue; | ||
323 | |||
324 | seq_printf(s, " gpio-%-3d P%c%-2d (%-12s) %s %s %s", | ||
325 | chip->base + i, bank, i, | ||
326 | label, | ||
327 | (osr & mask) ? "out" : "in ", | ||
328 | (mask & pdsr) ? "hi" : "lo", | ||
329 | (mask & pusr) ? " " : "up"); | ||
330 | if (ifsr & mask) | ||
331 | seq_printf(s, " deglitch"); | ||
332 | if ((osr & mdsr) & mask) | ||
333 | seq_printf(s, " open-drain"); | ||
334 | if (imr & mask) | ||
335 | seq_printf(s, " irq-%d edge-both", | ||
336 | gpio_to_irq(chip->base + i)); | ||
337 | seq_printf(s, "\n"); | ||
338 | } | ||
339 | } | ||
340 | |||
341 | #else | ||
342 | #define pio_bank_show NULL | ||
343 | #endif | ||
344 | |||
345 | |||
346 | /*--------------------------------------------------------------------------*/ | ||
347 | |||
342 | static int __init pio_probe(struct platform_device *pdev) | 348 | static int __init pio_probe(struct platform_device *pdev) |
343 | { | 349 | { |
344 | struct pio_device *pio = NULL; | 350 | struct pio_device *pio = NULL; |
@@ -349,6 +355,18 @@ static int __init pio_probe(struct platform_device *pdev) | |||
349 | pio = &pio_dev[pdev->id]; | 355 | pio = &pio_dev[pdev->id]; |
350 | BUG_ON(!pio->regs); | 356 | BUG_ON(!pio->regs); |
351 | 357 | ||
358 | pio->chip.label = pio->name; | ||
359 | pio->chip.base = pdev->id * 32; | ||
360 | pio->chip.ngpio = 32; | ||
361 | |||
362 | pio->chip.direction_input = direction_input; | ||
363 | pio->chip.get = gpio_get; | ||
364 | pio->chip.direction_output = direction_output; | ||
365 | pio->chip.set = gpio_set; | ||
366 | pio->chip.dbg_show = pio_bank_show; | ||
367 | |||
368 | gpiochip_add(&pio->chip); | ||
369 | |||
352 | gpio_irq_setup(pio, irq, gpio_irq_base); | 370 | gpio_irq_setup(pio, irq, gpio_irq_base); |
353 | 371 | ||
354 | platform_set_drvdata(pdev, pio); | 372 | platform_set_drvdata(pdev, pio); |
@@ -406,12 +424,6 @@ void __init at32_init_pio(struct platform_device *pdev) | |||
406 | pio->pdev = pdev; | 424 | pio->pdev = pdev; |
407 | pio->regs = ioremap(regs->start, regs->end - regs->start + 1); | 425 | pio->regs = ioremap(regs->start, regs->end - regs->start + 1); |
408 | 426 | ||
409 | /* | ||
410 | * request_gpio() is only valid for pins that have been | ||
411 | * explicitly configured as GPIO and not previously requested | ||
412 | */ | ||
413 | pio->gpio_mask = ~0UL; | ||
414 | |||
415 | /* start with irqs disabled and acked */ | 427 | /* start with irqs disabled and acked */ |
416 | pio_writel(pio, IDR, ~0UL); | 428 | pio_writel(pio, IDR, ~0UL); |
417 | (void) pio_readl(pio, ISR); | 429 | (void) pio_readl(pio, ISR); |
diff --git a/arch/avr32/mach-at32ap/pio.h b/arch/avr32/mach-at32ap/pio.h index 50fa3aca32c5..7795116a483a 100644 --- a/arch/avr32/mach-at32ap/pio.h +++ b/arch/avr32/mach-at32ap/pio.h | |||
@@ -19,7 +19,7 @@ | |||
19 | #define PIO_OSR 0x0018 | 19 | #define PIO_OSR 0x0018 |
20 | #define PIO_IFER 0x0020 | 20 | #define PIO_IFER 0x0020 |
21 | #define PIO_IFDR 0x0024 | 21 | #define PIO_IFDR 0x0024 |
22 | #define PIO_ISFR 0x0028 | 22 | #define PIO_IFSR 0x0028 |
23 | #define PIO_SODR 0x0030 | 23 | #define PIO_SODR 0x0030 |
24 | #define PIO_CODR 0x0034 | 24 | #define PIO_CODR 0x0034 |
25 | #define PIO_ODSR 0x0038 | 25 | #define PIO_ODSR 0x0038 |
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig index fc7ca86ac8bf..ba21e33b8b1f 100644 --- a/arch/blackfin/Kconfig +++ b/arch/blackfin/Kconfig | |||
@@ -24,6 +24,7 @@ config RWSEM_XCHGADD_ALGORITHM | |||
24 | config BLACKFIN | 24 | config BLACKFIN |
25 | bool | 25 | bool |
26 | default y | 26 | default y |
27 | select HAVE_OPROFILE | ||
27 | 28 | ||
28 | config ZONE_DMA | 29 | config ZONE_DMA |
29 | bool | 30 | bool |
@@ -898,6 +899,10 @@ endmenu | |||
898 | menu "Power management options" | 899 | menu "Power management options" |
899 | source "kernel/power/Kconfig" | 900 | source "kernel/power/Kconfig" |
900 | 901 | ||
902 | config ARCH_SUSPEND_POSSIBLE | ||
903 | def_bool y | ||
904 | depends on !SMP | ||
905 | |||
901 | choice | 906 | choice |
902 | prompt "Select PM Wakeup Event Source" | 907 | prompt "Select PM Wakeup Event Source" |
903 | default PM_WAKEUP_GPIO_BY_SIC_IWR | 908 | default PM_WAKEUP_GPIO_BY_SIC_IWR |
@@ -969,8 +974,6 @@ source "drivers/Kconfig" | |||
969 | 974 | ||
970 | source "fs/Kconfig" | 975 | source "fs/Kconfig" |
971 | 976 | ||
972 | source "kernel/Kconfig.instrumentation" | ||
973 | |||
974 | source "arch/blackfin/Kconfig.debug" | 977 | source "arch/blackfin/Kconfig.debug" |
975 | 978 | ||
976 | source "security/Kconfig" | 979 | source "security/Kconfig" |
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index 56ff51bc8c21..fdd9bf43361e 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
@@ -1373,7 +1373,7 @@ ENTRY(_sys_call_table) | |||
1373 | .long _sys_epoll_pwait | 1373 | .long _sys_epoll_pwait |
1374 | .long _sys_utimensat | 1374 | .long _sys_utimensat |
1375 | .long _sys_signalfd | 1375 | .long _sys_signalfd |
1376 | .long _sys_timerfd | 1376 | .long _sys_ni_syscall |
1377 | .long _sys_eventfd /* 350 */ | 1377 | .long _sys_eventfd /* 350 */ |
1378 | .long _sys_pread64 | 1378 | .long _sys_pread64 |
1379 | .long _sys_pwrite64 | 1379 | .long _sys_pwrite64 |
diff --git a/arch/cris/Kconfig b/arch/cris/Kconfig index 222da1501f47..27b082ac7f11 100644 --- a/arch/cris/Kconfig +++ b/arch/cris/Kconfig | |||
@@ -150,6 +150,7 @@ config ETRAX_FLASH_BUSWIDTH | |||
150 | Width in bytes of the Flash bus (1, 2 or 4). Is usually 2. | 150 | Width in bytes of the Flash bus (1, 2 or 4). Is usually 2. |
151 | 151 | ||
152 | source arch/cris/arch-v10/Kconfig | 152 | source arch/cris/arch-v10/Kconfig |
153 | source arch/cris/arch-v32/Kconfig | ||
153 | 154 | ||
154 | endmenu | 155 | endmenu |
155 | 156 | ||
@@ -157,8 +158,8 @@ source "net/Kconfig" | |||
157 | 158 | ||
158 | # bring in ETRAX built-in drivers | 159 | # bring in ETRAX built-in drivers |
159 | menu "Drivers for built-in interfaces" | 160 | menu "Drivers for built-in interfaces" |
160 | # arch/cris/arch is a symlink to correct arch (arch-v10 or arch-v32) | 161 | source arch/cris/arch-v10/drivers/Kconfig |
161 | source arch/cris/arch/drivers/Kconfig | 162 | source arch/cris/arch-v32/drivers/Kconfig |
162 | 163 | ||
163 | endmenu | 164 | endmenu |
164 | 165 | ||
@@ -213,8 +214,6 @@ source "drivers/pci/Kconfig" | |||
213 | 214 | ||
214 | source "drivers/usb/Kconfig" | 215 | source "drivers/usb/Kconfig" |
215 | 216 | ||
216 | source "kernel/Kconfig.instrumentation" | ||
217 | |||
218 | source "arch/cris/Kconfig.debug" | 217 | source "arch/cris/Kconfig.debug" |
219 | 218 | ||
220 | source "security/Kconfig" | 219 | source "security/Kconfig" |
diff --git a/arch/cris/arch-v10/Kconfig b/arch/cris/arch-v10/Kconfig index f1ce6f64401d..1d61faec77cd 100644 --- a/arch/cris/arch-v10/Kconfig +++ b/arch/cris/arch-v10/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | if ETRAX_ARCH_V10 | ||
2 | |||
1 | # ETRAX 100LX v1 has a MMU "feature" requiring a low mapping | 3 | # ETRAX 100LX v1 has a MMU "feature" requiring a low mapping |
2 | config CRIS_LOW_MAP | 4 | config CRIS_LOW_MAP |
3 | bool | 5 | bool |
@@ -451,3 +453,5 @@ config ETRAX_POWERBUTTON_BIT | |||
451 | default "25" | 453 | default "25" |
452 | help | 454 | help |
453 | Configure where power button is connected. | 455 | Configure where power button is connected. |
456 | |||
457 | endif | ||
diff --git a/arch/cris/arch-v10/drivers/Kconfig b/arch/cris/arch-v10/drivers/Kconfig index e3c0f2928149..96740ef497d4 100644 --- a/arch/cris/arch-v10/drivers/Kconfig +++ b/arch/cris/arch-v10/drivers/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | if ETRAX_ARCH_V10 | ||
2 | |||
1 | config ETRAX_ETHERNET | 3 | config ETRAX_ETHERNET |
2 | bool "Ethernet support" | 4 | bool "Ethernet support" |
3 | depends on ETRAX_ARCH_V10 | 5 | depends on ETRAX_ARCH_V10 |
@@ -806,3 +808,5 @@ config ETRAX_DS1302_TRICKLE_CHARGE | |||
806 | 1 = 2kohm, 2 = 4kohm, 3 = 4kohm | 808 | 1 = 2kohm, 2 = 4kohm, 3 = 4kohm |
807 | 4 = 1 diode, 8 = 2 diodes | 809 | 4 = 1 diode, 8 = 2 diodes |
808 | Allowed values are (increasing current): 0, 11, 10, 9, 7, 6, 5 | 810 | Allowed values are (increasing current): 0, 11, 10, 9, 7, 6, 5 |
811 | |||
812 | endif | ||
diff --git a/arch/cris/arch-v10/kernel/entry.S b/arch/cris/arch-v10/kernel/entry.S index ec62c951fa3c..d1361dc119e2 100644 --- a/arch/cris/arch-v10/kernel/entry.S +++ b/arch/cris/arch-v10/kernel/entry.S | |||
@@ -1167,7 +1167,7 @@ sys_call_table: | |||
1167 | .long sys_epoll_pwait | 1167 | .long sys_epoll_pwait |
1168 | .long sys_utimensat /* 320 */ | 1168 | .long sys_utimensat /* 320 */ |
1169 | .long sys_signalfd | 1169 | .long sys_signalfd |
1170 | .long sys_timerfd | 1170 | .long sys_ni_syscall |
1171 | .long sys_eventfd | 1171 | .long sys_eventfd |
1172 | .long sys_fallocate | 1172 | .long sys_fallocate |
1173 | 1173 | ||
diff --git a/arch/cris/arch-v32/Kconfig b/arch/cris/arch-v32/Kconfig index 4f79d8ed3e1c..d8acaa920e1c 100644 --- a/arch/cris/arch-v32/Kconfig +++ b/arch/cris/arch-v32/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | if ETRAX_ARCH_V32 | ||
2 | |||
1 | config ETRAX_DRAM_VIRTUAL_BASE | 3 | config ETRAX_DRAM_VIRTUAL_BASE |
2 | hex | 4 | hex |
3 | depends on ETRAX_ARCH_V32 | 5 | depends on ETRAX_ARCH_V32 |
@@ -294,3 +296,5 @@ config ETRAX_DEF_GIO_PE_OUT | |||
294 | help | 296 | help |
295 | Configures the initial data for the general port E bits. Most | 297 | Configures the initial data for the general port E bits. Most |
296 | products should use 00000 here. | 298 | products should use 00000 here. |
299 | |||
300 | endif | ||
diff --git a/arch/cris/arch-v32/drivers/Kconfig b/arch/cris/arch-v32/drivers/Kconfig index 9bccb5e2a960..c329cce2a0c3 100644 --- a/arch/cris/arch-v32/drivers/Kconfig +++ b/arch/cris/arch-v32/drivers/Kconfig | |||
@@ -1,3 +1,5 @@ | |||
1 | if ETRAX_ARCH_V32 | ||
2 | |||
1 | config ETRAX_ETHERNET | 3 | config ETRAX_ETHERNET |
2 | bool "Ethernet support" | 4 | bool "Ethernet support" |
3 | depends on ETRAX_ARCH_V32 | 5 | depends on ETRAX_ARCH_V32 |
@@ -610,3 +612,5 @@ config ETRAX_STREAMCOPROC | |||
610 | help | 612 | help |
611 | This option enables a driver for the stream co-processor | 613 | This option enables a driver for the stream co-processor |
612 | for cryptographic operations. | 614 | for cryptographic operations. |
615 | |||
616 | endif | ||
diff --git a/arch/cris/arch-v32/drivers/pci/dma.c b/arch/cris/arch-v32/drivers/pci/dma.c index 66f9500fbc02..e0364654fc44 100644 --- a/arch/cris/arch-v32/drivers/pci/dma.c +++ b/arch/cris/arch-v32/drivers/pci/dma.c | |||
@@ -93,7 +93,7 @@ int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | |||
93 | 93 | ||
94 | dev->dma_mem = kzalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); | 94 | dev->dma_mem = kzalloc(sizeof(struct dma_coherent_mem), GFP_KERNEL); |
95 | if (!dev->dma_mem) | 95 | if (!dev->dma_mem) |
96 | goto out; | 96 | goto iounmap_out; |
97 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); | 97 | dev->dma_mem->bitmap = kzalloc(bitmap_size, GFP_KERNEL); |
98 | if (!dev->dma_mem->bitmap) | 98 | if (!dev->dma_mem->bitmap) |
99 | goto free1_out; | 99 | goto free1_out; |
@@ -110,6 +110,8 @@ int dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, | |||
110 | 110 | ||
111 | free1_out: | 111 | free1_out: |
112 | kfree(dev->dma_mem); | 112 | kfree(dev->dma_mem); |
113 | iounmap_out: | ||
114 | iounmap(mem_base); | ||
113 | out: | 115 | out: |
114 | return 0; | 116 | return 0; |
115 | } | 117 | } |
diff --git a/arch/frv/Kconfig b/arch/frv/Kconfig index 43153e767bb1..96f7d70f4473 100644 --- a/arch/frv/Kconfig +++ b/arch/frv/Kconfig | |||
@@ -79,7 +79,7 @@ config FRV_OUTOFLINE_ATOMIC_OPS | |||
79 | Setting this option causes the FR-V atomic operations to be mostly | 79 | Setting this option causes the FR-V atomic operations to be mostly |
80 | implemented out-of-line. | 80 | implemented out-of-line. |
81 | 81 | ||
82 | See Documentation/fujitsu/frv/atomic-ops.txt for more information. | 82 | See Documentation/frv/atomic-ops.txt for more information. |
83 | 83 | ||
84 | config HIGHMEM | 84 | config HIGHMEM |
85 | bool "High memory support" | 85 | bool "High memory support" |
@@ -138,6 +138,15 @@ config UCPAGE_OFFSET_C0000000 | |||
138 | 138 | ||
139 | endchoice | 139 | endchoice |
140 | 140 | ||
141 | config PAGE_OFFSET | ||
142 | hex | ||
143 | default 0x20000000 if UCPAGE_OFFSET_20000000 | ||
144 | default 0x40000000 if UCPAGE_OFFSET_40000000 | ||
145 | default 0x60000000 if UCPAGE_OFFSET_60000000 | ||
146 | default 0x80000000 if UCPAGE_OFFSET_80000000 | ||
147 | default 0xA0000000 if UCPAGE_OFFSET_A0000000 | ||
148 | default 0xC0000000 | ||
149 | |||
141 | config PROTECT_KERNEL | 150 | config PROTECT_KERNEL |
142 | bool "Protect core kernel against userspace" | 151 | bool "Protect core kernel against userspace" |
143 | depends on !MMU | 152 | depends on !MMU |
@@ -322,11 +331,6 @@ config PCI | |||
322 | onboard. If you have one of these boards and you wish to use the PCI | 331 | onboard. If you have one of these boards and you wish to use the PCI |
323 | facilities, say Y here. | 332 | facilities, say Y here. |
324 | 333 | ||
325 | The PCI-HOWTO, available from | ||
326 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
327 | information about which PCI hardware does work under Linux and which | ||
328 | doesn't. | ||
329 | |||
330 | config RESERVE_DMA_COHERENT | 334 | config RESERVE_DMA_COHERENT |
331 | bool "Reserve DMA coherent memory" | 335 | bool "Reserve DMA coherent memory" |
332 | depends on PCI && !MMU | 336 | depends on PCI && !MMU |
@@ -357,6 +361,11 @@ source "drivers/pcmcia/Kconfig" | |||
357 | # should probably wait a while. | 361 | # should probably wait a while. |
358 | 362 | ||
359 | menu "Power management options" | 363 | menu "Power management options" |
364 | |||
365 | config ARCH_SUSPEND_POSSIBLE | ||
366 | def_bool y | ||
367 | depends on !SMP | ||
368 | |||
360 | source kernel/power/Kconfig | 369 | source kernel/power/Kconfig |
361 | endmenu | 370 | endmenu |
362 | 371 | ||
@@ -375,8 +384,6 @@ source "drivers/Kconfig" | |||
375 | 384 | ||
376 | source "fs/Kconfig" | 385 | source "fs/Kconfig" |
377 | 386 | ||
378 | source "kernel/Kconfig.instrumentation" | ||
379 | |||
380 | source "arch/frv/Kconfig.debug" | 387 | source "arch/frv/Kconfig.debug" |
381 | 388 | ||
382 | source "security/Kconfig" | 389 | source "security/Kconfig" |
diff --git a/arch/frv/kernel/entry.S b/arch/frv/kernel/entry.S index f926c7094776..ca6a345b87e4 100644 --- a/arch/frv/kernel/entry.S +++ b/arch/frv/kernel/entry.S | |||
@@ -253,7 +253,7 @@ __entry_kernel_external_interrupt_reentry: | |||
253 | andi.p gr5,#~PSR_ET,gr5 | 253 | andi.p gr5,#~PSR_ET,gr5 |
254 | 254 | ||
255 | # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel | 255 | # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel |
256 | # - for an explanation of how it works, see: Documentation/fujitsu/frv/atomic-ops.txt | 256 | # - for an explanation of how it works, see: Documentation/frv/atomic-ops.txt |
257 | andi gr25,#~0xc0,gr25 | 257 | andi gr25,#~0xc0,gr25 |
258 | 258 | ||
259 | sti gr20,@(gr28,#REG_TBR) | 259 | sti gr20,@(gr28,#REG_TBR) |
@@ -445,7 +445,7 @@ __entry_kernel_softprog_interrupt_reentry: | |||
445 | sti gr22,@(sp,#REG_SP) | 445 | sti gr22,@(sp,#REG_SP) |
446 | 446 | ||
447 | # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel | 447 | # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel |
448 | # - for an explanation of how it works, see: Documentation/fujitsu/frv/atomic-ops.txt | 448 | # - for an explanation of how it works, see: Documentation/frv/atomic-ops.txt |
449 | movsg cccr,gr20 | 449 | movsg cccr,gr20 |
450 | andi gr20,#~0xc0,gr20 | 450 | andi gr20,#~0xc0,gr20 |
451 | movgs gr20,cccr | 451 | movgs gr20,cccr |
@@ -1494,7 +1494,7 @@ sys_call_table: | |||
1494 | .long sys_epoll_pwait | 1494 | .long sys_epoll_pwait |
1495 | .long sys_utimensat /* 320 */ | 1495 | .long sys_utimensat /* 320 */ |
1496 | .long sys_signalfd | 1496 | .long sys_signalfd |
1497 | .long sys_timerfd | 1497 | .long sys_ni_syscall |
1498 | .long sys_eventfd | 1498 | .long sys_eventfd |
1499 | .long sys_fallocate | 1499 | .long sys_fallocate |
1500 | 1500 | ||
diff --git a/arch/frv/kernel/vmlinux.lds.S b/arch/frv/kernel/vmlinux.lds.S index f42b328b1dd0..ef7527b8b0c7 100644 --- a/arch/frv/kernel/vmlinux.lds.S +++ b/arch/frv/kernel/vmlinux.lds.S | |||
@@ -13,7 +13,7 @@ ENTRY(_start) | |||
13 | 13 | ||
14 | jiffies = jiffies_64 + 4; | 14 | jiffies = jiffies_64 + 4; |
15 | 15 | ||
16 | __page_offset = 0xc0000000; /* start of area covered by struct pages */ | 16 | __page_offset = CONFIG_PAGE_OFFSET; /* start of area covered by struct pages */ |
17 | __kernel_image_start = __page_offset; /* address at which kernel image resides */ | 17 | __kernel_image_start = __page_offset; /* address at which kernel image resides */ |
18 | 18 | ||
19 | SECTIONS | 19 | SECTIONS |
diff --git a/arch/frv/lib/atomic-ops.S b/arch/frv/lib/atomic-ops.S index 545cd325ac57..ee0ac905fb08 100644 --- a/arch/frv/lib/atomic-ops.S +++ b/arch/frv/lib/atomic-ops.S | |||
@@ -1,7 +1,7 @@ | |||
1 | /* atomic-ops.S: kernel atomic operations | 1 | /* atomic-ops.S: kernel atomic operations |
2 | * | 2 | * |
3 | * For an explanation of how atomic ops work in this arch, see: | 3 | * For an explanation of how atomic ops work in this arch, see: |
4 | * Documentation/fujitsu/frv/atomic-ops.txt | 4 | * Documentation/frv/atomic-ops.txt |
5 | * | 5 | * |
6 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. | 6 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. |
7 | * Written by David Howells (dhowells@redhat.com) | 7 | * Written by David Howells (dhowells@redhat.com) |
diff --git a/arch/frv/mm/mmu-context.c b/arch/frv/mm/mmu-context.c index 1530a4111e6d..81757d55a5b5 100644 --- a/arch/frv/mm/mmu-context.c +++ b/arch/frv/mm/mmu-context.c | |||
@@ -181,7 +181,7 @@ int cxn_pin_by_pid(pid_t pid) | |||
181 | 181 | ||
182 | /* get a handle on the mm_struct */ | 182 | /* get a handle on the mm_struct */ |
183 | read_lock(&tasklist_lock); | 183 | read_lock(&tasklist_lock); |
184 | tsk = find_task_by_pid(pid); | 184 | tsk = find_task_by_vpid(pid); |
185 | if (tsk) { | 185 | if (tsk) { |
186 | ret = -EINVAL; | 186 | ret = -EINVAL; |
187 | 187 | ||
diff --git a/arch/frv/mm/pgalloc.c b/arch/frv/mm/pgalloc.c index 7787c3cc52c6..1a2e5c8d03a9 100644 --- a/arch/frv/mm/pgalloc.c +++ b/arch/frv/mm/pgalloc.c | |||
@@ -140,7 +140,7 @@ pgd_t *pgd_alloc(struct mm_struct *mm) | |||
140 | return pgd; | 140 | return pgd; |
141 | } | 141 | } |
142 | 142 | ||
143 | void pgd_free(pgd_t *pgd) | 143 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
144 | { | 144 | { |
145 | /* in the non-PAE case, clear_page_tables() clears user pgd entries */ | 145 | /* in the non-PAE case, clear_page_tables() clears user pgd entries */ |
146 | quicklist_free(0, pgd_dtor, pgd); | 146 | quicklist_free(0, pgd_dtor, pgd); |
diff --git a/arch/h8300/Kconfig b/arch/h8300/Kconfig index ff6a8712bd6d..dc61222e1120 100644 --- a/arch/h8300/Kconfig +++ b/arch/h8300/Kconfig | |||
@@ -223,8 +223,6 @@ endmenu | |||
223 | 223 | ||
224 | source "fs/Kconfig" | 224 | source "fs/Kconfig" |
225 | 225 | ||
226 | source "kernel/Kconfig.instrumentation" | ||
227 | |||
228 | source "arch/h8300/Kconfig.debug" | 226 | source "arch/h8300/Kconfig.debug" |
229 | 227 | ||
230 | source "security/Kconfig" | 228 | source "security/Kconfig" |
diff --git a/arch/h8300/platform/h8s/ints.c b/arch/h8300/platform/h8s/ints.c index 551fd5f30d82..ac10b9783850 100644 --- a/arch/h8300/platform/h8s/ints.c +++ b/arch/h8300/platform/h8s/ints.c | |||
@@ -121,7 +121,7 @@ void __init init_IRQ(void) | |||
121 | printk("virtual vector at 0x%08lx\n",(unsigned long)ramvec); | 121 | printk("virtual vector at 0x%08lx\n",(unsigned long)ramvec); |
122 | 122 | ||
123 | #if defined(CONFIG_GDB_DEBUG) | 123 | #if defined(CONFIG_GDB_DEBUG) |
124 | /* save orignal break vector */ | 124 | /* save original break vector */ |
125 | break_vec = ramvec[TRAP3_VEC]; | 125 | break_vec = ramvec[TRAP3_VEC]; |
126 | #else | 126 | #else |
127 | break_vec = VECTOR(trace_break); | 127 | break_vec = VECTOR(trace_break); |
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index 5a41e75ae1fe..b0de1132dfc0 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig | |||
@@ -15,6 +15,8 @@ config IA64 | |||
15 | select ACPI if (!IA64_HP_SIM) | 15 | select ACPI if (!IA64_HP_SIM) |
16 | select PM if (!IA64_HP_SIM) | 16 | select PM if (!IA64_HP_SIM) |
17 | select ARCH_SUPPORTS_MSI | 17 | select ARCH_SUPPORTS_MSI |
18 | select HAVE_OPROFILE | ||
19 | select HAVE_KPROBES | ||
18 | default y | 20 | default y |
19 | help | 21 | help |
20 | The Itanium Processor Family is Intel's 64-bit successor to | 22 | The Itanium Processor Family is Intel's 64-bit successor to |
@@ -80,7 +82,7 @@ config GENERIC_TIME_VSYSCALL | |||
80 | bool | 82 | bool |
81 | default y | 83 | default y |
82 | 84 | ||
83 | config ARCH_SETS_UP_PER_CPU_AREA | 85 | config HAVE_SETUP_PER_CPU_AREA |
84 | def_bool y | 86 | def_bool y |
85 | 87 | ||
86 | config DMI | 88 | config DMI |
@@ -283,8 +285,8 @@ config SMP | |||
283 | single processor systems. On a single processor system, the kernel | 285 | single processor systems. On a single processor system, the kernel |
284 | will run faster if you say N here. | 286 | will run faster if you say N here. |
285 | 287 | ||
286 | See also the <file:Documentation/smp.txt> and the SMP-HOWTO | 288 | See also the SMP-HOWTO available at |
287 | available at <http://www.tldp.org/docs.html#howto>. | 289 | <http://www.tldp.org/docs.html#howto>. |
288 | 290 | ||
289 | If you don't know what to do here, say N. | 291 | If you don't know what to do here, say N. |
290 | 292 | ||
@@ -600,8 +602,6 @@ config IRQ_PER_CPU | |||
600 | 602 | ||
601 | source "arch/ia64/hp/sim/Kconfig" | 603 | source "arch/ia64/hp/sim/Kconfig" |
602 | 604 | ||
603 | source "kernel/Kconfig.instrumentation" | ||
604 | |||
605 | source "arch/ia64/Kconfig.debug" | 605 | source "arch/ia64/Kconfig.debug" |
606 | 606 | ||
607 | source "security/Kconfig" | 607 | source "security/Kconfig" |
diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 45bf04eb7d70..a94445422cc6 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c | |||
@@ -1265,7 +1265,7 @@ sba_fill_pdir( | |||
1265 | * the sglist do both. | 1265 | * the sglist do both. |
1266 | */ | 1266 | */ |
1267 | static SBA_INLINE int | 1267 | static SBA_INLINE int |
1268 | sba_coalesce_chunks( struct ioc *ioc, | 1268 | sba_coalesce_chunks(struct ioc *ioc, struct device *dev, |
1269 | struct scatterlist *startsg, | 1269 | struct scatterlist *startsg, |
1270 | int nents) | 1270 | int nents) |
1271 | { | 1271 | { |
@@ -1275,6 +1275,7 @@ sba_coalesce_chunks( struct ioc *ioc, | |||
1275 | struct scatterlist *dma_sg; /* next DMA stream head */ | 1275 | struct scatterlist *dma_sg; /* next DMA stream head */ |
1276 | unsigned long dma_offset, dma_len; /* start/len of DMA stream */ | 1276 | unsigned long dma_offset, dma_len; /* start/len of DMA stream */ |
1277 | int n_mappings = 0; | 1277 | int n_mappings = 0; |
1278 | unsigned int max_seg_size = dma_get_max_seg_size(dev); | ||
1278 | 1279 | ||
1279 | while (nents > 0) { | 1280 | while (nents > 0) { |
1280 | unsigned long vaddr = (unsigned long) sba_sg_address(startsg); | 1281 | unsigned long vaddr = (unsigned long) sba_sg_address(startsg); |
@@ -1314,6 +1315,9 @@ sba_coalesce_chunks( struct ioc *ioc, | |||
1314 | > DMA_CHUNK_SIZE) | 1315 | > DMA_CHUNK_SIZE) |
1315 | break; | 1316 | break; |
1316 | 1317 | ||
1318 | if (dma_len + startsg->length > max_seg_size) | ||
1319 | break; | ||
1320 | |||
1317 | /* | 1321 | /* |
1318 | ** Then look for virtually contiguous blocks. | 1322 | ** Then look for virtually contiguous blocks. |
1319 | ** | 1323 | ** |
@@ -1441,7 +1445,7 @@ int sba_map_sg(struct device *dev, struct scatterlist *sglist, int nents, int di | |||
1441 | ** w/o this association, we wouldn't have coherent DMA! | 1445 | ** w/o this association, we wouldn't have coherent DMA! |
1442 | ** Access to the virtual address is what forces a two pass algorithm. | 1446 | ** Access to the virtual address is what forces a two pass algorithm. |
1443 | */ | 1447 | */ |
1444 | coalesced = sba_coalesce_chunks(ioc, sglist, nents); | 1448 | coalesced = sba_coalesce_chunks(ioc, dev, sglist, nents); |
1445 | 1449 | ||
1446 | /* | 1450 | /* |
1447 | ** Program the I/O Pdir | 1451 | ** Program the I/O Pdir |
@@ -1871,7 +1875,7 @@ ioc_show(struct seq_file *s, void *v) | |||
1871 | return 0; | 1875 | return 0; |
1872 | } | 1876 | } |
1873 | 1877 | ||
1874 | static struct seq_operations ioc_seq_ops = { | 1878 | static const struct seq_operations ioc_seq_ops = { |
1875 | .start = ioc_start, | 1879 | .start = ioc_start, |
1876 | .next = ioc_next, | 1880 | .next = ioc_next, |
1877 | .stop = ioc_stop, | 1881 | .stop = ioc_stop, |
diff --git a/arch/ia64/ia32/ia32_support.c b/arch/ia64/ia32/ia32_support.c index d1d50cd1c38a..896b1ebbfb26 100644 --- a/arch/ia64/ia32/ia32_support.c +++ b/arch/ia64/ia32/ia32_support.c | |||
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | #include "ia32priv.h" | 28 | #include "ia32priv.h" |
29 | 29 | ||
30 | extern void die_if_kernel (char *str, struct pt_regs *regs, long err); | 30 | extern int die_if_kernel (char *str, struct pt_regs *regs, long err); |
31 | 31 | ||
32 | struct exec_domain ia32_exec_domain; | 32 | struct exec_domain ia32_exec_domain; |
33 | struct page *ia32_shared_page[NR_CPUS]; | 33 | struct page *ia32_shared_page[NR_CPUS]; |
@@ -217,7 +217,8 @@ ia32_bad_interrupt (unsigned long int_num, struct pt_regs *regs) | |||
217 | { | 217 | { |
218 | siginfo_t siginfo; | 218 | siginfo_t siginfo; |
219 | 219 | ||
220 | die_if_kernel("Bad IA-32 interrupt", regs, int_num); | 220 | if (die_if_kernel("Bad IA-32 interrupt", regs, int_num)) |
221 | return; | ||
221 | 222 | ||
222 | siginfo.si_signo = SIGTRAP; | 223 | siginfo.si_signo = SIGTRAP; |
223 | siginfo.si_errno = int_num; /* XXX is it OK to abuse si_errno like this? */ | 224 | siginfo.si_errno = int_num; /* XXX is it OK to abuse si_errno like this? */ |
diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c index 242d79341120..919070a9aed7 100644 --- a/arch/ia64/kernel/efi.c +++ b/arch/ia64/kernel/efi.c | |||
@@ -1,7 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Extensible Firmware Interface | 2 | * Extensible Firmware Interface |
3 | * | 3 | * |
4 | * Based on Extensible Firmware Interface Specification version 0.9 April 30, 1999 | 4 | * Based on Extensible Firmware Interface Specification version 0.9 |
5 | * April 30, 1999 | ||
5 | * | 6 | * |
6 | * Copyright (C) 1999 VA Linux Systems | 7 | * Copyright (C) 1999 VA Linux Systems |
7 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> | 8 | * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> |
@@ -48,145 +49,157 @@ static unsigned long mem_limit = ~0UL, max_addr = ~0UL, min_addr = 0UL; | |||
48 | 49 | ||
49 | #define efi_call_virt(f, args...) (*(f))(args) | 50 | #define efi_call_virt(f, args...) (*(f))(args) |
50 | 51 | ||
51 | #define STUB_GET_TIME(prefix, adjust_arg) \ | 52 | #define STUB_GET_TIME(prefix, adjust_arg) \ |
52 | static efi_status_t \ | 53 | static efi_status_t \ |
53 | prefix##_get_time (efi_time_t *tm, efi_time_cap_t *tc) \ | 54 | prefix##_get_time (efi_time_t *tm, efi_time_cap_t *tc) \ |
54 | { \ | 55 | { \ |
55 | struct ia64_fpreg fr[6]; \ | 56 | struct ia64_fpreg fr[6]; \ |
56 | efi_time_cap_t *atc = NULL; \ | 57 | efi_time_cap_t *atc = NULL; \ |
57 | efi_status_t ret; \ | 58 | efi_status_t ret; \ |
58 | \ | 59 | \ |
59 | if (tc) \ | 60 | if (tc) \ |
60 | atc = adjust_arg(tc); \ | 61 | atc = adjust_arg(tc); \ |
61 | ia64_save_scratch_fpregs(fr); \ | 62 | ia64_save_scratch_fpregs(fr); \ |
62 | ret = efi_call_##prefix((efi_get_time_t *) __va(runtime->get_time), adjust_arg(tm), atc); \ | 63 | ret = efi_call_##prefix((efi_get_time_t *) __va(runtime->get_time), \ |
63 | ia64_load_scratch_fpregs(fr); \ | 64 | adjust_arg(tm), atc); \ |
64 | return ret; \ | 65 | ia64_load_scratch_fpregs(fr); \ |
66 | return ret; \ | ||
65 | } | 67 | } |
66 | 68 | ||
67 | #define STUB_SET_TIME(prefix, adjust_arg) \ | 69 | #define STUB_SET_TIME(prefix, adjust_arg) \ |
68 | static efi_status_t \ | 70 | static efi_status_t \ |
69 | prefix##_set_time (efi_time_t *tm) \ | 71 | prefix##_set_time (efi_time_t *tm) \ |
70 | { \ | 72 | { \ |
71 | struct ia64_fpreg fr[6]; \ | 73 | struct ia64_fpreg fr[6]; \ |
72 | efi_status_t ret; \ | 74 | efi_status_t ret; \ |
73 | \ | 75 | \ |
74 | ia64_save_scratch_fpregs(fr); \ | 76 | ia64_save_scratch_fpregs(fr); \ |
75 | ret = efi_call_##prefix((efi_set_time_t *) __va(runtime->set_time), adjust_arg(tm)); \ | 77 | ret = efi_call_##prefix((efi_set_time_t *) __va(runtime->set_time), \ |
76 | ia64_load_scratch_fpregs(fr); \ | 78 | adjust_arg(tm)); \ |
77 | return ret; \ | 79 | ia64_load_scratch_fpregs(fr); \ |
80 | return ret; \ | ||
78 | } | 81 | } |
79 | 82 | ||
80 | #define STUB_GET_WAKEUP_TIME(prefix, adjust_arg) \ | 83 | #define STUB_GET_WAKEUP_TIME(prefix, adjust_arg) \ |
81 | static efi_status_t \ | 84 | static efi_status_t \ |
82 | prefix##_get_wakeup_time (efi_bool_t *enabled, efi_bool_t *pending, efi_time_t *tm) \ | 85 | prefix##_get_wakeup_time (efi_bool_t *enabled, efi_bool_t *pending, \ |
83 | { \ | 86 | efi_time_t *tm) \ |
84 | struct ia64_fpreg fr[6]; \ | 87 | { \ |
85 | efi_status_t ret; \ | 88 | struct ia64_fpreg fr[6]; \ |
86 | \ | 89 | efi_status_t ret; \ |
87 | ia64_save_scratch_fpregs(fr); \ | 90 | \ |
88 | ret = efi_call_##prefix((efi_get_wakeup_time_t *) __va(runtime->get_wakeup_time), \ | 91 | ia64_save_scratch_fpregs(fr); \ |
89 | adjust_arg(enabled), adjust_arg(pending), adjust_arg(tm)); \ | 92 | ret = efi_call_##prefix( \ |
90 | ia64_load_scratch_fpregs(fr); \ | 93 | (efi_get_wakeup_time_t *) __va(runtime->get_wakeup_time), \ |
91 | return ret; \ | 94 | adjust_arg(enabled), adjust_arg(pending), adjust_arg(tm)); \ |
95 | ia64_load_scratch_fpregs(fr); \ | ||
96 | return ret; \ | ||
92 | } | 97 | } |
93 | 98 | ||
94 | #define STUB_SET_WAKEUP_TIME(prefix, adjust_arg) \ | 99 | #define STUB_SET_WAKEUP_TIME(prefix, adjust_arg) \ |
95 | static efi_status_t \ | 100 | static efi_status_t \ |
96 | prefix##_set_wakeup_time (efi_bool_t enabled, efi_time_t *tm) \ | 101 | prefix##_set_wakeup_time (efi_bool_t enabled, efi_time_t *tm) \ |
97 | { \ | 102 | { \ |
98 | struct ia64_fpreg fr[6]; \ | 103 | struct ia64_fpreg fr[6]; \ |
99 | efi_time_t *atm = NULL; \ | 104 | efi_time_t *atm = NULL; \ |
100 | efi_status_t ret; \ | 105 | efi_status_t ret; \ |
101 | \ | 106 | \ |
102 | if (tm) \ | 107 | if (tm) \ |
103 | atm = adjust_arg(tm); \ | 108 | atm = adjust_arg(tm); \ |
104 | ia64_save_scratch_fpregs(fr); \ | 109 | ia64_save_scratch_fpregs(fr); \ |
105 | ret = efi_call_##prefix((efi_set_wakeup_time_t *) __va(runtime->set_wakeup_time), \ | 110 | ret = efi_call_##prefix( \ |
106 | enabled, atm); \ | 111 | (efi_set_wakeup_time_t *) __va(runtime->set_wakeup_time), \ |
107 | ia64_load_scratch_fpregs(fr); \ | 112 | enabled, atm); \ |
108 | return ret; \ | 113 | ia64_load_scratch_fpregs(fr); \ |
114 | return ret; \ | ||
109 | } | 115 | } |
110 | 116 | ||
111 | #define STUB_GET_VARIABLE(prefix, adjust_arg) \ | 117 | #define STUB_GET_VARIABLE(prefix, adjust_arg) \ |
112 | static efi_status_t \ | 118 | static efi_status_t \ |
113 | prefix##_get_variable (efi_char16_t *name, efi_guid_t *vendor, u32 *attr, \ | 119 | prefix##_get_variable (efi_char16_t *name, efi_guid_t *vendor, u32 *attr, \ |
114 | unsigned long *data_size, void *data) \ | 120 | unsigned long *data_size, void *data) \ |
115 | { \ | 121 | { \ |
116 | struct ia64_fpreg fr[6]; \ | 122 | struct ia64_fpreg fr[6]; \ |
117 | u32 *aattr = NULL; \ | 123 | u32 *aattr = NULL; \ |
118 | efi_status_t ret; \ | 124 | efi_status_t ret; \ |
119 | \ | 125 | \ |
120 | if (attr) \ | 126 | if (attr) \ |
121 | aattr = adjust_arg(attr); \ | 127 | aattr = adjust_arg(attr); \ |
122 | ia64_save_scratch_fpregs(fr); \ | 128 | ia64_save_scratch_fpregs(fr); \ |
123 | ret = efi_call_##prefix((efi_get_variable_t *) __va(runtime->get_variable), \ | 129 | ret = efi_call_##prefix( \ |
124 | adjust_arg(name), adjust_arg(vendor), aattr, \ | 130 | (efi_get_variable_t *) __va(runtime->get_variable), \ |
125 | adjust_arg(data_size), adjust_arg(data)); \ | 131 | adjust_arg(name), adjust_arg(vendor), aattr, \ |
126 | ia64_load_scratch_fpregs(fr); \ | 132 | adjust_arg(data_size), adjust_arg(data)); \ |
127 | return ret; \ | 133 | ia64_load_scratch_fpregs(fr); \ |
134 | return ret; \ | ||
128 | } | 135 | } |
129 | 136 | ||
130 | #define STUB_GET_NEXT_VARIABLE(prefix, adjust_arg) \ | 137 | #define STUB_GET_NEXT_VARIABLE(prefix, adjust_arg) \ |
131 | static efi_status_t \ | 138 | static efi_status_t \ |
132 | prefix##_get_next_variable (unsigned long *name_size, efi_char16_t *name, efi_guid_t *vendor) \ | 139 | prefix##_get_next_variable (unsigned long *name_size, efi_char16_t *name, \ |
133 | { \ | 140 | efi_guid_t *vendor) \ |
134 | struct ia64_fpreg fr[6]; \ | 141 | { \ |
135 | efi_status_t ret; \ | 142 | struct ia64_fpreg fr[6]; \ |
136 | \ | 143 | efi_status_t ret; \ |
137 | ia64_save_scratch_fpregs(fr); \ | 144 | \ |
138 | ret = efi_call_##prefix((efi_get_next_variable_t *) __va(runtime->get_next_variable), \ | 145 | ia64_save_scratch_fpregs(fr); \ |
139 | adjust_arg(name_size), adjust_arg(name), adjust_arg(vendor)); \ | 146 | ret = efi_call_##prefix( \ |
140 | ia64_load_scratch_fpregs(fr); \ | 147 | (efi_get_next_variable_t *) __va(runtime->get_next_variable), \ |
141 | return ret; \ | 148 | adjust_arg(name_size), adjust_arg(name), adjust_arg(vendor)); \ |
149 | ia64_load_scratch_fpregs(fr); \ | ||
150 | return ret; \ | ||
142 | } | 151 | } |
143 | 152 | ||
144 | #define STUB_SET_VARIABLE(prefix, adjust_arg) \ | 153 | #define STUB_SET_VARIABLE(prefix, adjust_arg) \ |
145 | static efi_status_t \ | 154 | static efi_status_t \ |
146 | prefix##_set_variable (efi_char16_t *name, efi_guid_t *vendor, unsigned long attr, \ | 155 | prefix##_set_variable (efi_char16_t *name, efi_guid_t *vendor, \ |
147 | unsigned long data_size, void *data) \ | 156 | unsigned long attr, unsigned long data_size, \ |
148 | { \ | 157 | void *data) \ |
149 | struct ia64_fpreg fr[6]; \ | 158 | { \ |
150 | efi_status_t ret; \ | 159 | struct ia64_fpreg fr[6]; \ |
151 | \ | 160 | efi_status_t ret; \ |
152 | ia64_save_scratch_fpregs(fr); \ | 161 | \ |
153 | ret = efi_call_##prefix((efi_set_variable_t *) __va(runtime->set_variable), \ | 162 | ia64_save_scratch_fpregs(fr); \ |
154 | adjust_arg(name), adjust_arg(vendor), attr, data_size, \ | 163 | ret = efi_call_##prefix( \ |
155 | adjust_arg(data)); \ | 164 | (efi_set_variable_t *) __va(runtime->set_variable), \ |
156 | ia64_load_scratch_fpregs(fr); \ | 165 | adjust_arg(name), adjust_arg(vendor), attr, data_size, \ |
157 | return ret; \ | 166 | adjust_arg(data)); \ |
167 | ia64_load_scratch_fpregs(fr); \ | ||
168 | return ret; \ | ||
158 | } | 169 | } |
159 | 170 | ||
160 | #define STUB_GET_NEXT_HIGH_MONO_COUNT(prefix, adjust_arg) \ | 171 | #define STUB_GET_NEXT_HIGH_MONO_COUNT(prefix, adjust_arg) \ |
161 | static efi_status_t \ | 172 | static efi_status_t \ |
162 | prefix##_get_next_high_mono_count (u32 *count) \ | 173 | prefix##_get_next_high_mono_count (u32 *count) \ |
163 | { \ | 174 | { \ |
164 | struct ia64_fpreg fr[6]; \ | 175 | struct ia64_fpreg fr[6]; \ |
165 | efi_status_t ret; \ | 176 | efi_status_t ret; \ |
166 | \ | 177 | \ |
167 | ia64_save_scratch_fpregs(fr); \ | 178 | ia64_save_scratch_fpregs(fr); \ |
168 | ret = efi_call_##prefix((efi_get_next_high_mono_count_t *) \ | 179 | ret = efi_call_##prefix((efi_get_next_high_mono_count_t *) \ |
169 | __va(runtime->get_next_high_mono_count), adjust_arg(count)); \ | 180 | __va(runtime->get_next_high_mono_count), \ |
170 | ia64_load_scratch_fpregs(fr); \ | 181 | adjust_arg(count)); \ |
171 | return ret; \ | 182 | ia64_load_scratch_fpregs(fr); \ |
183 | return ret; \ | ||
172 | } | 184 | } |
173 | 185 | ||
174 | #define STUB_RESET_SYSTEM(prefix, adjust_arg) \ | 186 | #define STUB_RESET_SYSTEM(prefix, adjust_arg) \ |
175 | static void \ | 187 | static void \ |
176 | prefix##_reset_system (int reset_type, efi_status_t status, \ | 188 | prefix##_reset_system (int reset_type, efi_status_t status, \ |
177 | unsigned long data_size, efi_char16_t *data) \ | 189 | unsigned long data_size, efi_char16_t *data) \ |
178 | { \ | 190 | { \ |
179 | struct ia64_fpreg fr[6]; \ | 191 | struct ia64_fpreg fr[6]; \ |
180 | efi_char16_t *adata = NULL; \ | 192 | efi_char16_t *adata = NULL; \ |
181 | \ | 193 | \ |
182 | if (data) \ | 194 | if (data) \ |
183 | adata = adjust_arg(data); \ | 195 | adata = adjust_arg(data); \ |
184 | \ | 196 | \ |
185 | ia64_save_scratch_fpregs(fr); \ | 197 | ia64_save_scratch_fpregs(fr); \ |
186 | efi_call_##prefix((efi_reset_system_t *) __va(runtime->reset_system), \ | 198 | efi_call_##prefix( \ |
187 | reset_type, status, data_size, adata); \ | 199 | (efi_reset_system_t *) __va(runtime->reset_system), \ |
188 | /* should not return, but just in case... */ \ | 200 | reset_type, status, data_size, adata); \ |
189 | ia64_load_scratch_fpregs(fr); \ | 201 | /* should not return, but just in case... */ \ |
202 | ia64_load_scratch_fpregs(fr); \ | ||
190 | } | 203 | } |
191 | 204 | ||
192 | #define phys_ptr(arg) ((__typeof__(arg)) ia64_tpa(arg)) | 205 | #define phys_ptr(arg) ((__typeof__(arg)) ia64_tpa(arg)) |
@@ -223,7 +236,8 @@ efi_gettimeofday (struct timespec *ts) | |||
223 | return; | 236 | return; |
224 | } | 237 | } |
225 | 238 | ||
226 | ts->tv_sec = mktime(tm.year, tm.month, tm.day, tm.hour, tm.minute, tm.second); | 239 | ts->tv_sec = mktime(tm.year, tm.month, tm.day, |
240 | tm.hour, tm.minute, tm.second); | ||
227 | ts->tv_nsec = tm.nanosecond; | 241 | ts->tv_nsec = tm.nanosecond; |
228 | } | 242 | } |
229 | 243 | ||
@@ -297,8 +311,8 @@ walk (efi_freemem_callback_t callback, void *arg, u64 attr) | |||
297 | } | 311 | } |
298 | 312 | ||
299 | /* | 313 | /* |
300 | * Walks the EFI memory map and calls CALLBACK once for each EFI memory descriptor that | 314 | * Walk the EFI memory map and call CALLBACK once for each EFI memory |
301 | * has memory that is available for OS use. | 315 | * descriptor that has memory that is available for OS use. |
302 | */ | 316 | */ |
303 | void | 317 | void |
304 | efi_memmap_walk (efi_freemem_callback_t callback, void *arg) | 318 | efi_memmap_walk (efi_freemem_callback_t callback, void *arg) |
@@ -307,8 +321,8 @@ efi_memmap_walk (efi_freemem_callback_t callback, void *arg) | |||
307 | } | 321 | } |
308 | 322 | ||
309 | /* | 323 | /* |
310 | * Walks the EFI memory map and calls CALLBACK once for each EFI memory descriptor that | 324 | * Walk the EFI memory map and call CALLBACK once for each EFI memory |
311 | * has memory that is available for uncached allocator. | 325 | * descriptor that has memory that is available for uncached allocator. |
312 | */ | 326 | */ |
313 | void | 327 | void |
314 | efi_memmap_walk_uc (efi_freemem_callback_t callback, void *arg) | 328 | efi_memmap_walk_uc (efi_freemem_callback_t callback, void *arg) |
@@ -317,11 +331,10 @@ efi_memmap_walk_uc (efi_freemem_callback_t callback, void *arg) | |||
317 | } | 331 | } |
318 | 332 | ||
319 | /* | 333 | /* |
320 | * Look for the PAL_CODE region reported by EFI and maps it using an | 334 | * Look for the PAL_CODE region reported by EFI and map it using an |
321 | * ITR to enable safe PAL calls in virtual mode. See IA-64 Processor | 335 | * ITR to enable safe PAL calls in virtual mode. See IA-64 Processor |
322 | * Abstraction Layer chapter 11 in ADAG | 336 | * Abstraction Layer chapter 11 in ADAG |
323 | */ | 337 | */ |
324 | |||
325 | void * | 338 | void * |
326 | efi_get_pal_addr (void) | 339 | efi_get_pal_addr (void) |
327 | { | 340 | { |
@@ -341,45 +354,47 @@ efi_get_pal_addr (void) | |||
341 | continue; | 354 | continue; |
342 | 355 | ||
343 | if (++pal_code_count > 1) { | 356 | if (++pal_code_count > 1) { |
344 | printk(KERN_ERR "Too many EFI Pal Code memory ranges, dropped @ %lx\n", | 357 | printk(KERN_ERR "Too many EFI Pal Code memory ranges, " |
345 | md->phys_addr); | 358 | "dropped @ %lx\n", md->phys_addr); |
346 | continue; | 359 | continue; |
347 | } | 360 | } |
348 | /* | 361 | /* |
349 | * The only ITLB entry in region 7 that is used is the one installed by | 362 | * The only ITLB entry in region 7 that is used is the one |
350 | * __start(). That entry covers a 64MB range. | 363 | * installed by __start(). That entry covers a 64MB range. |
351 | */ | 364 | */ |
352 | mask = ~((1 << KERNEL_TR_PAGE_SHIFT) - 1); | 365 | mask = ~((1 << KERNEL_TR_PAGE_SHIFT) - 1); |
353 | vaddr = PAGE_OFFSET + md->phys_addr; | 366 | vaddr = PAGE_OFFSET + md->phys_addr; |
354 | 367 | ||
355 | /* | 368 | /* |
356 | * We must check that the PAL mapping won't overlap with the kernel | 369 | * We must check that the PAL mapping won't overlap with the |
357 | * mapping. | 370 | * kernel mapping. |
358 | * | 371 | * |
359 | * PAL code is guaranteed to be aligned on a power of 2 between 4k and | 372 | * PAL code is guaranteed to be aligned on a power of 2 between |
360 | * 256KB and that only one ITR is needed to map it. This implies that the | 373 | * 4k and 256KB and that only one ITR is needed to map it. This |
361 | * PAL code is always aligned on its size, i.e., the closest matching page | 374 | * implies that the PAL code is always aligned on its size, |
362 | * size supported by the TLB. Therefore PAL code is guaranteed never to | 375 | * i.e., the closest matching page size supported by the TLB. |
363 | * cross a 64MB unless it is bigger than 64MB (very unlikely!). So for | 376 | * Therefore PAL code is guaranteed never to cross a 64MB unless |
364 | * now the following test is enough to determine whether or not we need a | 377 | * it is bigger than 64MB (very unlikely!). So for now the |
365 | * dedicated ITR for the PAL code. | 378 | * following test is enough to determine whether or not we need |
379 | * a dedicated ITR for the PAL code. | ||
366 | */ | 380 | */ |
367 | if ((vaddr & mask) == (KERNEL_START & mask)) { | 381 | if ((vaddr & mask) == (KERNEL_START & mask)) { |
368 | printk(KERN_INFO "%s: no need to install ITR for PAL code\n", | 382 | printk(KERN_INFO "%s: no need to install ITR for " |
369 | __FUNCTION__); | 383 | "PAL code\n", __FUNCTION__); |
370 | continue; | 384 | continue; |
371 | } | 385 | } |
372 | 386 | ||
373 | if (efi_md_size(md) > IA64_GRANULE_SIZE) | 387 | if (efi_md_size(md) > IA64_GRANULE_SIZE) |
374 | panic("Woah! PAL code size bigger than a granule!"); | 388 | panic("Whoa! PAL code size bigger than a granule!"); |
375 | 389 | ||
376 | #if EFI_DEBUG | 390 | #if EFI_DEBUG |
377 | mask = ~((1 << IA64_GRANULE_SHIFT) - 1); | 391 | mask = ~((1 << IA64_GRANULE_SHIFT) - 1); |
378 | 392 | ||
379 | printk(KERN_INFO "CPU %d: mapping PAL code [0x%lx-0x%lx) into [0x%lx-0x%lx)\n", | 393 | printk(KERN_INFO "CPU %d: mapping PAL code " |
380 | smp_processor_id(), md->phys_addr, | 394 | "[0x%lx-0x%lx) into [0x%lx-0x%lx)\n", |
381 | md->phys_addr + efi_md_size(md), | 395 | smp_processor_id(), md->phys_addr, |
382 | vaddr & mask, (vaddr & mask) + IA64_GRANULE_SIZE); | 396 | md->phys_addr + efi_md_size(md), |
397 | vaddr & mask, (vaddr & mask) + IA64_GRANULE_SIZE); | ||
383 | #endif | 398 | #endif |
384 | return __va(md->phys_addr); | 399 | return __va(md->phys_addr); |
385 | } | 400 | } |
@@ -401,11 +416,11 @@ efi_map_pal_code (void) | |||
401 | * Cannot write to CRx with PSR.ic=1 | 416 | * Cannot write to CRx with PSR.ic=1 |
402 | */ | 417 | */ |
403 | psr = ia64_clear_ic(); | 418 | psr = ia64_clear_ic(); |
404 | ia64_itr(0x1, IA64_TR_PALCODE, GRANULEROUNDDOWN((unsigned long) pal_vaddr), | 419 | ia64_itr(0x1, IA64_TR_PALCODE, |
420 | GRANULEROUNDDOWN((unsigned long) pal_vaddr), | ||
405 | pte_val(pfn_pte(__pa(pal_vaddr) >> PAGE_SHIFT, PAGE_KERNEL)), | 421 | pte_val(pfn_pte(__pa(pal_vaddr) >> PAGE_SHIFT, PAGE_KERNEL)), |
406 | IA64_GRANULE_SHIFT); | 422 | IA64_GRANULE_SHIFT); |
407 | ia64_set_psr(psr); /* restore psr */ | 423 | ia64_set_psr(psr); /* restore psr */ |
408 | ia64_srlz_i(); | ||
409 | } | 424 | } |
410 | 425 | ||
411 | void __init | 426 | void __init |
@@ -418,7 +433,10 @@ efi_init (void) | |||
418 | char *cp, vendor[100] = "unknown"; | 433 | char *cp, vendor[100] = "unknown"; |
419 | int i; | 434 | int i; |
420 | 435 | ||
421 | /* it's too early to be able to use the standard kernel command line support... */ | 436 | /* |
437 | * It's too early to be able to use the standard kernel command line | ||
438 | * support... | ||
439 | */ | ||
422 | for (cp = boot_command_line; *cp; ) { | 440 | for (cp = boot_command_line; *cp; ) { |
423 | if (memcmp(cp, "mem=", 4) == 0) { | 441 | if (memcmp(cp, "mem=", 4) == 0) { |
424 | mem_limit = memparse(cp + 4, &cp); | 442 | mem_limit = memparse(cp + 4, &cp); |
@@ -434,9 +452,11 @@ efi_init (void) | |||
434 | } | 452 | } |
435 | } | 453 | } |
436 | if (min_addr != 0UL) | 454 | if (min_addr != 0UL) |
437 | printk(KERN_INFO "Ignoring memory below %luMB\n", min_addr >> 20); | 455 | printk(KERN_INFO "Ignoring memory below %luMB\n", |
456 | min_addr >> 20); | ||
438 | if (max_addr != ~0UL) | 457 | if (max_addr != ~0UL) |
439 | printk(KERN_INFO "Ignoring memory above %luMB\n", max_addr >> 20); | 458 | printk(KERN_INFO "Ignoring memory above %luMB\n", |
459 | max_addr >> 20); | ||
440 | 460 | ||
441 | efi.systab = __va(ia64_boot_param->efi_systab); | 461 | efi.systab = __va(ia64_boot_param->efi_systab); |
442 | 462 | ||
@@ -444,9 +464,9 @@ efi_init (void) | |||
444 | * Verify the EFI Table | 464 | * Verify the EFI Table |
445 | */ | 465 | */ |
446 | if (efi.systab == NULL) | 466 | if (efi.systab == NULL) |
447 | panic("Woah! Can't find EFI system table.\n"); | 467 | panic("Whoa! Can't find EFI system table.\n"); |
448 | if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) | 468 | if (efi.systab->hdr.signature != EFI_SYSTEM_TABLE_SIGNATURE) |
449 | panic("Woah! EFI system table signature incorrect\n"); | 469 | panic("Whoa! EFI system table signature incorrect\n"); |
450 | if ((efi.systab->hdr.revision >> 16) == 0) | 470 | if ((efi.systab->hdr.revision >> 16) == 0) |
451 | printk(KERN_WARNING "Warning: EFI system table version " | 471 | printk(KERN_WARNING "Warning: EFI system table version " |
452 | "%d.%02d, expected 1.00 or greater\n", | 472 | "%d.%02d, expected 1.00 or greater\n", |
@@ -464,7 +484,8 @@ efi_init (void) | |||
464 | } | 484 | } |
465 | 485 | ||
466 | printk(KERN_INFO "EFI v%u.%.02u by %s:", | 486 | printk(KERN_INFO "EFI v%u.%.02u by %s:", |
467 | efi.systab->hdr.revision >> 16, efi.systab->hdr.revision & 0xffff, vendor); | 487 | efi.systab->hdr.revision >> 16, |
488 | efi.systab->hdr.revision & 0xffff, vendor); | ||
468 | 489 | ||
469 | efi.mps = EFI_INVALID_TABLE_ADDR; | 490 | efi.mps = EFI_INVALID_TABLE_ADDR; |
470 | efi.acpi = EFI_INVALID_TABLE_ADDR; | 491 | efi.acpi = EFI_INVALID_TABLE_ADDR; |
@@ -519,9 +540,12 @@ efi_init (void) | |||
519 | efi_memory_desc_t *md; | 540 | efi_memory_desc_t *md; |
520 | void *p; | 541 | void *p; |
521 | 542 | ||
522 | for (i = 0, p = efi_map_start; p < efi_map_end; ++i, p += efi_desc_size) { | 543 | for (i = 0, p = efi_map_start; p < efi_map_end; |
544 | ++i, p += efi_desc_size) | ||
545 | { | ||
523 | md = p; | 546 | md = p; |
524 | printk("mem%02u: type=%u, attr=0x%lx, range=[0x%016lx-0x%016lx) (%luMB)\n", | 547 | printk("mem%02u: type=%u, attr=0x%lx, " |
548 | "range=[0x%016lx-0x%016lx) (%luMB)\n", | ||
525 | i, md->type, md->attribute, md->phys_addr, | 549 | i, md->type, md->attribute, md->phys_addr, |
526 | md->phys_addr + efi_md_size(md), | 550 | md->phys_addr + efi_md_size(md), |
527 | md->num_pages >> (20 - EFI_PAGE_SHIFT)); | 551 | md->num_pages >> (20 - EFI_PAGE_SHIFT)); |
@@ -549,8 +573,8 @@ efi_enter_virtual_mode (void) | |||
549 | md = p; | 573 | md = p; |
550 | if (md->attribute & EFI_MEMORY_RUNTIME) { | 574 | if (md->attribute & EFI_MEMORY_RUNTIME) { |
551 | /* | 575 | /* |
552 | * Some descriptors have multiple bits set, so the order of | 576 | * Some descriptors have multiple bits set, so the |
553 | * the tests is relevant. | 577 | * order of the tests is relevant. |
554 | */ | 578 | */ |
555 | if (md->attribute & EFI_MEMORY_WB) { | 579 | if (md->attribute & EFI_MEMORY_WB) { |
556 | md->virt_addr = (u64) __va(md->phys_addr); | 580 | md->virt_addr = (u64) __va(md->phys_addr); |
@@ -558,21 +582,26 @@ efi_enter_virtual_mode (void) | |||
558 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); | 582 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); |
559 | } else if (md->attribute & EFI_MEMORY_WC) { | 583 | } else if (md->attribute & EFI_MEMORY_WC) { |
560 | #if 0 | 584 | #if 0 |
561 | md->virt_addr = ia64_remap(md->phys_addr, (_PAGE_A | _PAGE_P | 585 | md->virt_addr = ia64_remap(md->phys_addr, |
562 | | _PAGE_D | 586 | (_PAGE_A | |
563 | | _PAGE_MA_WC | 587 | _PAGE_P | |
564 | | _PAGE_PL_0 | 588 | _PAGE_D | |
565 | | _PAGE_AR_RW)); | 589 | _PAGE_MA_WC | |
590 | _PAGE_PL_0 | | ||
591 | _PAGE_AR_RW)); | ||
566 | #else | 592 | #else |
567 | printk(KERN_INFO "EFI_MEMORY_WC mapping\n"); | 593 | printk(KERN_INFO "EFI_MEMORY_WC mapping\n"); |
568 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); | 594 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); |
569 | #endif | 595 | #endif |
570 | } else if (md->attribute & EFI_MEMORY_WT) { | 596 | } else if (md->attribute & EFI_MEMORY_WT) { |
571 | #if 0 | 597 | #if 0 |
572 | md->virt_addr = ia64_remap(md->phys_addr, (_PAGE_A | _PAGE_P | 598 | md->virt_addr = ia64_remap(md->phys_addr, |
573 | | _PAGE_D | _PAGE_MA_WT | 599 | (_PAGE_A | |
574 | | _PAGE_PL_0 | 600 | _PAGE_P | |
575 | | _PAGE_AR_RW)); | 601 | _PAGE_D | |
602 | _PAGE_MA_WT | | ||
603 | _PAGE_PL_0 | | ||
604 | _PAGE_AR_RW)); | ||
576 | #else | 605 | #else |
577 | printk(KERN_INFO "EFI_MEMORY_WT mapping\n"); | 606 | printk(KERN_INFO "EFI_MEMORY_WT mapping\n"); |
578 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); | 607 | md->virt_addr = (u64) ioremap(md->phys_addr, 0); |
@@ -583,16 +612,18 @@ efi_enter_virtual_mode (void) | |||
583 | 612 | ||
584 | status = efi_call_phys(__va(runtime->set_virtual_address_map), | 613 | status = efi_call_phys(__va(runtime->set_virtual_address_map), |
585 | ia64_boot_param->efi_memmap_size, | 614 | ia64_boot_param->efi_memmap_size, |
586 | efi_desc_size, ia64_boot_param->efi_memdesc_version, | 615 | efi_desc_size, |
616 | ia64_boot_param->efi_memdesc_version, | ||
587 | ia64_boot_param->efi_memmap); | 617 | ia64_boot_param->efi_memmap); |
588 | if (status != EFI_SUCCESS) { | 618 | if (status != EFI_SUCCESS) { |
589 | printk(KERN_WARNING "warning: unable to switch EFI into virtual mode " | 619 | printk(KERN_WARNING "warning: unable to switch EFI into " |
590 | "(status=%lu)\n", status); | 620 | "virtual mode (status=%lu)\n", status); |
591 | return; | 621 | return; |
592 | } | 622 | } |
593 | 623 | ||
594 | /* | 624 | /* |
595 | * Now that EFI is in virtual mode, we call the EFI functions more efficiently: | 625 | * Now that EFI is in virtual mode, we call the EFI functions more |
626 | * efficiently: | ||
596 | */ | 627 | */ |
597 | efi.get_time = virt_get_time; | 628 | efi.get_time = virt_get_time; |
598 | efi.set_time = virt_set_time; | 629 | efi.set_time = virt_set_time; |
@@ -606,8 +637,8 @@ efi_enter_virtual_mode (void) | |||
606 | } | 637 | } |
607 | 638 | ||
608 | /* | 639 | /* |
609 | * Walk the EFI memory map looking for the I/O port range. There can only be one entry of | 640 | * Walk the EFI memory map looking for the I/O port range. There can only be |
610 | * this type, other I/O port ranges should be described via ACPI. | 641 | * one entry of this type, other I/O port ranges should be described via ACPI. |
611 | */ | 642 | */ |
612 | u64 | 643 | u64 |
613 | efi_get_iobase (void) | 644 | efi_get_iobase (void) |
@@ -678,7 +709,6 @@ efi_memmap_intersects (unsigned long phys_addr, unsigned long size) | |||
678 | 709 | ||
679 | for (p = efi_map_start; p < efi_map_end; p += efi_desc_size) { | 710 | for (p = efi_map_start; p < efi_map_end; p += efi_desc_size) { |
680 | md = p; | 711 | md = p; |
681 | |||
682 | if (md->phys_addr < end && efi_md_end(md) > phys_addr) | 712 | if (md->phys_addr < end && efi_md_end(md) > phys_addr) |
683 | return 1; | 713 | return 1; |
684 | } | 714 | } |
@@ -731,7 +761,7 @@ efi_mem_attribute (unsigned long phys_addr, unsigned long size) | |||
731 | if (!md || (md->attribute & ~EFI_MEMORY_RUNTIME) != attr) | 761 | if (!md || (md->attribute & ~EFI_MEMORY_RUNTIME) != attr) |
732 | return 0; | 762 | return 0; |
733 | } while (md); | 763 | } while (md); |
734 | return 0; | 764 | return 0; /* never reached */ |
735 | } | 765 | } |
736 | 766 | ||
737 | u64 | 767 | u64 |
@@ -767,7 +797,7 @@ kern_mem_attribute (unsigned long phys_addr, unsigned long size) | |||
767 | if (!md || md->attribute != attr) | 797 | if (!md || md->attribute != attr) |
768 | return 0; | 798 | return 0; |
769 | } while (md); | 799 | } while (md); |
770 | return 0; | 800 | return 0; /* never reached */ |
771 | } | 801 | } |
772 | EXPORT_SYMBOL(kern_mem_attribute); | 802 | EXPORT_SYMBOL(kern_mem_attribute); |
773 | 803 | ||
@@ -883,7 +913,7 @@ efi_uart_console_only(void) | |||
883 | return 1; | 913 | return 1; |
884 | uart = 0; | 914 | uart = 0; |
885 | } | 915 | } |
886 | hdr = (struct efi_generic_dev_path *) ((u8 *) hdr + hdr->length); | 916 | hdr = (struct efi_generic_dev_path *)((u8 *) hdr + hdr->length); |
887 | } | 917 | } |
888 | printk(KERN_ERR "Malformed %s value\n", name); | 918 | printk(KERN_ERR "Malformed %s value\n", name); |
889 | return 0; | 919 | return 0; |
@@ -921,10 +951,12 @@ find_memmap_space (void) | |||
921 | if (!efi_wb(md)) { | 951 | if (!efi_wb(md)) { |
922 | continue; | 952 | continue; |
923 | } | 953 | } |
924 | if (pmd == NULL || !efi_wb(pmd) || efi_md_end(pmd) != md->phys_addr) { | 954 | if (pmd == NULL || !efi_wb(pmd) || |
955 | efi_md_end(pmd) != md->phys_addr) { | ||
925 | contig_low = GRANULEROUNDUP(md->phys_addr); | 956 | contig_low = GRANULEROUNDUP(md->phys_addr); |
926 | contig_high = efi_md_end(md); | 957 | contig_high = efi_md_end(md); |
927 | for (q = p + efi_desc_size; q < efi_map_end; q += efi_desc_size) { | 958 | for (q = p + efi_desc_size; q < efi_map_end; |
959 | q += efi_desc_size) { | ||
928 | check_md = q; | 960 | check_md = q; |
929 | if (!efi_wb(check_md)) | 961 | if (!efi_wb(check_md)) |
930 | break; | 962 | break; |
@@ -988,8 +1020,9 @@ efi_memmap_init(unsigned long *s, unsigned long *e) | |||
988 | for (p = efi_map_start; p < efi_map_end; pmd = md, p += efi_desc_size) { | 1020 | for (p = efi_map_start; p < efi_map_end; pmd = md, p += efi_desc_size) { |
989 | md = p; | 1021 | md = p; |
990 | if (!efi_wb(md)) { | 1022 | if (!efi_wb(md)) { |
991 | if (efi_uc(md) && (md->type == EFI_CONVENTIONAL_MEMORY || | 1023 | if (efi_uc(md) && |
992 | md->type == EFI_BOOT_SERVICES_DATA)) { | 1024 | (md->type == EFI_CONVENTIONAL_MEMORY || |
1025 | md->type == EFI_BOOT_SERVICES_DATA)) { | ||
993 | k->attribute = EFI_MEMORY_UC; | 1026 | k->attribute = EFI_MEMORY_UC; |
994 | k->start = md->phys_addr; | 1027 | k->start = md->phys_addr; |
995 | k->num_pages = md->num_pages; | 1028 | k->num_pages = md->num_pages; |
@@ -997,10 +1030,12 @@ efi_memmap_init(unsigned long *s, unsigned long *e) | |||
997 | } | 1030 | } |
998 | continue; | 1031 | continue; |
999 | } | 1032 | } |
1000 | if (pmd == NULL || !efi_wb(pmd) || efi_md_end(pmd) != md->phys_addr) { | 1033 | if (pmd == NULL || !efi_wb(pmd) || |
1034 | efi_md_end(pmd) != md->phys_addr) { | ||
1001 | contig_low = GRANULEROUNDUP(md->phys_addr); | 1035 | contig_low = GRANULEROUNDUP(md->phys_addr); |
1002 | contig_high = efi_md_end(md); | 1036 | contig_high = efi_md_end(md); |
1003 | for (q = p + efi_desc_size; q < efi_map_end; q += efi_desc_size) { | 1037 | for (q = p + efi_desc_size; q < efi_map_end; |
1038 | q += efi_desc_size) { | ||
1004 | check_md = q; | 1039 | check_md = q; |
1005 | if (!efi_wb(check_md)) | 1040 | if (!efi_wb(check_md)) |
1006 | break; | 1041 | break; |
@@ -1025,13 +1060,17 @@ efi_memmap_init(unsigned long *s, unsigned long *e) | |||
1025 | if (md->phys_addr < contig_low) { | 1060 | if (md->phys_addr < contig_low) { |
1026 | lim = min(efi_md_end(md), contig_low); | 1061 | lim = min(efi_md_end(md), contig_low); |
1027 | if (efi_uc(md)) { | 1062 | if (efi_uc(md)) { |
1028 | if (k > kern_memmap && (k-1)->attribute == EFI_MEMORY_UC && | 1063 | if (k > kern_memmap && |
1064 | (k-1)->attribute == EFI_MEMORY_UC && | ||
1029 | kmd_end(k-1) == md->phys_addr) { | 1065 | kmd_end(k-1) == md->phys_addr) { |
1030 | (k-1)->num_pages += (lim - md->phys_addr) >> EFI_PAGE_SHIFT; | 1066 | (k-1)->num_pages += |
1067 | (lim - md->phys_addr) | ||
1068 | >> EFI_PAGE_SHIFT; | ||
1031 | } else { | 1069 | } else { |
1032 | k->attribute = EFI_MEMORY_UC; | 1070 | k->attribute = EFI_MEMORY_UC; |
1033 | k->start = md->phys_addr; | 1071 | k->start = md->phys_addr; |
1034 | k->num_pages = (lim - md->phys_addr) >> EFI_PAGE_SHIFT; | 1072 | k->num_pages = (lim - md->phys_addr) |
1073 | >> EFI_PAGE_SHIFT; | ||
1035 | k++; | 1074 | k++; |
1036 | } | 1075 | } |
1037 | } | 1076 | } |
@@ -1049,7 +1088,8 @@ efi_memmap_init(unsigned long *s, unsigned long *e) | |||
1049 | } else { | 1088 | } else { |
1050 | k->attribute = EFI_MEMORY_UC; | 1089 | k->attribute = EFI_MEMORY_UC; |
1051 | k->start = lim; | 1090 | k->start = lim; |
1052 | k->num_pages = (efi_md_end(md) - lim) >> EFI_PAGE_SHIFT; | 1091 | k->num_pages = (efi_md_end(md) - lim) |
1092 | >> EFI_PAGE_SHIFT; | ||
1053 | k++; | 1093 | k++; |
1054 | } | 1094 | } |
1055 | } | 1095 | } |
@@ -1151,8 +1191,10 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
1151 | break; | 1191 | break; |
1152 | } | 1192 | } |
1153 | 1193 | ||
1154 | if ((res = kzalloc(sizeof(struct resource), GFP_KERNEL)) == NULL) { | 1194 | if ((res = kzalloc(sizeof(struct resource), |
1155 | printk(KERN_ERR "failed to alocate resource for iomem\n"); | 1195 | GFP_KERNEL)) == NULL) { |
1196 | printk(KERN_ERR | ||
1197 | "failed to allocate resource for iomem\n"); | ||
1156 | return; | 1198 | return; |
1157 | } | 1199 | } |
1158 | 1200 | ||
@@ -1187,44 +1229,44 @@ efi_initialize_iomem_resources(struct resource *code_resource, | |||
1187 | rsvd_regions are sorted | 1229 | rsvd_regions are sorted |
1188 | */ | 1230 | */ |
1189 | unsigned long __init | 1231 | unsigned long __init |
1190 | kdump_find_rsvd_region (unsigned long size, | 1232 | kdump_find_rsvd_region (unsigned long size, struct rsvd_region *r, int n) |
1191 | struct rsvd_region *r, int n) | ||
1192 | { | 1233 | { |
1193 | int i; | 1234 | int i; |
1194 | u64 start, end; | 1235 | u64 start, end; |
1195 | u64 alignment = 1UL << _PAGE_SIZE_64M; | 1236 | u64 alignment = 1UL << _PAGE_SIZE_64M; |
1196 | void *efi_map_start, *efi_map_end, *p; | 1237 | void *efi_map_start, *efi_map_end, *p; |
1197 | efi_memory_desc_t *md; | 1238 | efi_memory_desc_t *md; |
1198 | u64 efi_desc_size; | 1239 | u64 efi_desc_size; |
1199 | 1240 | ||
1200 | efi_map_start = __va(ia64_boot_param->efi_memmap); | 1241 | efi_map_start = __va(ia64_boot_param->efi_memmap); |
1201 | efi_map_end = efi_map_start + ia64_boot_param->efi_memmap_size; | 1242 | efi_map_end = efi_map_start + ia64_boot_param->efi_memmap_size; |
1202 | efi_desc_size = ia64_boot_param->efi_memdesc_size; | 1243 | efi_desc_size = ia64_boot_param->efi_memdesc_size; |
1203 | 1244 | ||
1204 | for (p = efi_map_start; p < efi_map_end; p += efi_desc_size) { | 1245 | for (p = efi_map_start; p < efi_map_end; p += efi_desc_size) { |
1205 | md = p; | 1246 | md = p; |
1206 | if (!efi_wb(md)) | 1247 | if (!efi_wb(md)) |
1207 | continue; | 1248 | continue; |
1208 | start = ALIGN(md->phys_addr, alignment); | 1249 | start = ALIGN(md->phys_addr, alignment); |
1209 | end = efi_md_end(md); | 1250 | end = efi_md_end(md); |
1210 | for (i = 0; i < n; i++) { | 1251 | for (i = 0; i < n; i++) { |
1211 | if (__pa(r[i].start) >= start && __pa(r[i].end) < end) { | 1252 | if (__pa(r[i].start) >= start && __pa(r[i].end) < end) { |
1212 | if (__pa(r[i].start) > start + size) | 1253 | if (__pa(r[i].start) > start + size) |
1213 | return start; | 1254 | return start; |
1214 | start = ALIGN(__pa(r[i].end), alignment); | 1255 | start = ALIGN(__pa(r[i].end), alignment); |
1215 | if (i < n-1 && __pa(r[i+1].start) < start + size) | 1256 | if (i < n-1 && |
1216 | continue; | 1257 | __pa(r[i+1].start) < start + size) |
1217 | else | 1258 | continue; |
1218 | break; | 1259 | else |
1260 | break; | ||
1261 | } | ||
1219 | } | 1262 | } |
1220 | } | 1263 | if (end > start + size) |
1221 | if (end > start + size) | 1264 | return start; |
1222 | return start; | 1265 | } |
1223 | } | 1266 | |
1224 | 1267 | printk(KERN_WARNING | |
1225 | printk(KERN_WARNING "Cannot reserve 0x%lx byte of memory for crashdump\n", | 1268 | "Cannot reserve 0x%lx byte of memory for crashdump\n", size); |
1226 | size); | 1269 | return ~0UL; |
1227 | return ~0UL; | ||
1228 | } | 1270 | } |
1229 | #endif | 1271 | #endif |
1230 | 1272 | ||
diff --git a/arch/ia64/kernel/entry.S b/arch/ia64/kernel/entry.S index c36f43c94600..f5d3efbfbeda 100644 --- a/arch/ia64/kernel/entry.S +++ b/arch/ia64/kernel/entry.S | |||
@@ -1586,7 +1586,7 @@ sys_call_table: | |||
1586 | data8 sys_epoll_pwait // 1305 | 1586 | data8 sys_epoll_pwait // 1305 |
1587 | data8 sys_utimensat | 1587 | data8 sys_utimensat |
1588 | data8 sys_signalfd | 1588 | data8 sys_signalfd |
1589 | data8 sys_timerfd | 1589 | data8 sys_ni_syscall |
1590 | data8 sys_eventfd | 1590 | data8 sys_eventfd |
1591 | 1591 | ||
1592 | .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls | 1592 | .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls |
diff --git a/arch/ia64/kernel/fsyscall_gtod_data.h b/arch/ia64/kernel/fsyscall_gtod_data.h index 490dab55fba3..57d2ee6c83e1 100644 --- a/arch/ia64/kernel/fsyscall_gtod_data.h +++ b/arch/ia64/kernel/fsyscall_gtod_data.h | |||
@@ -14,10 +14,10 @@ struct fsyscall_gtod_data_t { | |||
14 | u32 clk_shift; | 14 | u32 clk_shift; |
15 | void *clk_fsys_mmio; | 15 | void *clk_fsys_mmio; |
16 | cycle_t clk_cycle_last; | 16 | cycle_t clk_cycle_last; |
17 | } __attribute__ ((aligned (L1_CACHE_BYTES))); | 17 | } ____cacheline_aligned; |
18 | 18 | ||
19 | struct itc_jitter_data_t { | 19 | struct itc_jitter_data_t { |
20 | int itc_jitter; | 20 | int itc_jitter; |
21 | cycle_t itc_lastcycle; | 21 | cycle_t itc_lastcycle; |
22 | } __attribute__ ((aligned (L1_CACHE_BYTES))); | 22 | } ____cacheline_aligned; |
23 | 23 | ||
diff --git a/arch/ia64/kernel/ia64_ksyms.c b/arch/ia64/kernel/ia64_ksyms.c index c3b4412ccc67..8e7193d55528 100644 --- a/arch/ia64/kernel/ia64_ksyms.c +++ b/arch/ia64/kernel/ia64_ksyms.c | |||
@@ -12,6 +12,9 @@ EXPORT_SYMBOL(memset); | |||
12 | EXPORT_SYMBOL(memcpy); | 12 | EXPORT_SYMBOL(memcpy); |
13 | EXPORT_SYMBOL(strlen); | 13 | EXPORT_SYMBOL(strlen); |
14 | 14 | ||
15 | #include<asm/pgtable.h> | ||
16 | EXPORT_SYMBOL_GPL(empty_zero_page); | ||
17 | |||
15 | #include <asm/checksum.h> | 18 | #include <asm/checksum.h> |
16 | EXPORT_SYMBOL(ip_fast_csum); /* hand-coded assembly */ | 19 | EXPORT_SYMBOL(ip_fast_csum); /* hand-coded assembly */ |
17 | EXPORT_SYMBOL(csum_ipv6_magic); | 20 | EXPORT_SYMBOL(csum_ipv6_magic); |
diff --git a/arch/ia64/kernel/kprobes.c b/arch/ia64/kernel/kprobes.c index fc4d2676264f..b618487cdc85 100644 --- a/arch/ia64/kernel/kprobes.c +++ b/arch/ia64/kernel/kprobes.c | |||
@@ -381,9 +381,10 @@ static void __kprobes save_previous_kprobe(struct kprobe_ctlblk *kcb) | |||
381 | static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb) | 381 | static void __kprobes restore_previous_kprobe(struct kprobe_ctlblk *kcb) |
382 | { | 382 | { |
383 | unsigned int i; | 383 | unsigned int i; |
384 | i = atomic_sub_return(1, &kcb->prev_kprobe_index); | 384 | i = atomic_read(&kcb->prev_kprobe_index); |
385 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe[i].kp; | 385 | __get_cpu_var(current_kprobe) = kcb->prev_kprobe[i-1].kp; |
386 | kcb->kprobe_status = kcb->prev_kprobe[i].status; | 386 | kcb->kprobe_status = kcb->prev_kprobe[i-1].status; |
387 | atomic_sub(1, &kcb->prev_kprobe_index); | ||
387 | } | 388 | } |
388 | 389 | ||
389 | static void __kprobes set_current_kprobe(struct kprobe *p, | 390 | static void __kprobes set_current_kprobe(struct kprobe *p, |
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index 6dbf5919d2d0..846e7e036b13 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -2,61 +2,69 @@ | |||
2 | * File: mca.c | 2 | * File: mca.c |
3 | * Purpose: Generic MCA handling layer | 3 | * Purpose: Generic MCA handling layer |
4 | * | 4 | * |
5 | * Updated for latest kernel | ||
6 | * Copyright (C) 2003 Hewlett-Packard Co | 5 | * Copyright (C) 2003 Hewlett-Packard Co |
7 | * David Mosberger-Tang <davidm@hpl.hp.com> | 6 | * David Mosberger-Tang <davidm@hpl.hp.com> |
8 | * | 7 | * |
9 | * Copyright (C) 2002 Dell Inc. | 8 | * Copyright (C) 2002 Dell Inc. |
10 | * Copyright (C) Matt Domsch (Matt_Domsch@dell.com) | 9 | * Copyright (C) Matt Domsch <Matt_Domsch@dell.com> |
11 | * | 10 | * |
12 | * Copyright (C) 2002 Intel | 11 | * Copyright (C) 2002 Intel |
13 | * Copyright (C) Jenna Hall (jenna.s.hall@intel.com) | 12 | * Copyright (C) Jenna Hall <jenna.s.hall@intel.com> |
14 | * | 13 | * |
15 | * Copyright (C) 2001 Intel | 14 | * Copyright (C) 2001 Intel |
16 | * Copyright (C) Fred Lewis (frederick.v.lewis@intel.com) | 15 | * Copyright (C) Fred Lewis <frederick.v.lewis@intel.com> |
17 | * | 16 | * |
18 | * Copyright (C) 2000 Intel | 17 | * Copyright (C) 2000 Intel |
19 | * Copyright (C) Chuck Fleckenstein (cfleck@co.intel.com) | 18 | * Copyright (C) Chuck Fleckenstein <cfleck@co.intel.com> |
20 | * | 19 | * |
21 | * Copyright (C) 1999, 2004 Silicon Graphics, Inc. | 20 | * Copyright (C) 1999, 2004 Silicon Graphics, Inc. |
22 | * Copyright (C) Vijay Chander(vijay@engr.sgi.com) | 21 | * Copyright (C) Vijay Chander <vijay@engr.sgi.com> |
23 | * | 22 | * |
24 | * 03/04/15 D. Mosberger Added INIT backtrace support. | 23 | * Copyright (C) 2006 FUJITSU LIMITED |
25 | * 02/03/25 M. Domsch GUID cleanups | 24 | * Copyright (C) Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> |
26 | * | 25 | * |
27 | * 02/01/04 J. Hall Aligned MCA stack to 16 bytes, added platform vs. CPU | 26 | * 2000-03-29 Chuck Fleckenstein <cfleck@co.intel.com> |
28 | * error flag, set SAL default return values, changed | 27 | * Fixed PAL/SAL update issues, began MCA bug fixes, logging issues, |
29 | * error record structure to linked list, added init call | 28 | * added min save state dump, added INIT handler. |
30 | * to sal_get_state_info_size(). | ||
31 | * | 29 | * |
32 | * 01/01/03 F. Lewis Added setup of CMCI and CPEI IRQs, logging of corrected | 30 | * 2001-01-03 Fred Lewis <frederick.v.lewis@intel.com> |
33 | * platform errors, completed code for logging of | 31 | * Added setup of CMCI and CPEI IRQs, logging of corrected platform |
34 | * corrected & uncorrected machine check errors, and | 32 | * errors, completed code for logging of corrected & uncorrected |
35 | * updated for conformance with Nov. 2000 revision of the | 33 | * machine check errors, and updated for conformance with Nov. 2000 |
36 | * SAL 3.0 spec. | 34 | * revision of the SAL 3.0 spec. |
37 | * 00/03/29 C. Fleckenstein Fixed PAL/SAL update issues, began MCA bug fixes, logging issues, | 35 | * |
38 | * added min save state dump, added INIT handler. | 36 | * 2002-01-04 Jenna Hall <jenna.s.hall@intel.com> |
37 | * Aligned MCA stack to 16 bytes, added platform vs. CPU error flag, | ||
38 | * set SAL default return values, changed error record structure to | ||
39 | * linked list, added init call to sal_get_state_info_size(). | ||
40 | * | ||
41 | * 2002-03-25 Matt Domsch <Matt_Domsch@dell.com> | ||
42 | * GUID cleanups. | ||
43 | * | ||
44 | * 2003-04-15 David Mosberger-Tang <davidm@hpl.hp.com> | ||
45 | * Added INIT backtrace support. | ||
39 | * | 46 | * |
40 | * 2003-12-08 Keith Owens <kaos@sgi.com> | 47 | * 2003-12-08 Keith Owens <kaos@sgi.com> |
41 | * smp_call_function() must not be called from interrupt context (can | 48 | * smp_call_function() must not be called from interrupt context |
42 | * deadlock on tasklist_lock). Use keventd to call smp_call_function(). | 49 | * (can deadlock on tasklist_lock). |
50 | * Use keventd to call smp_call_function(). | ||
43 | * | 51 | * |
44 | * 2004-02-01 Keith Owens <kaos@sgi.com> | 52 | * 2004-02-01 Keith Owens <kaos@sgi.com> |
45 | * Avoid deadlock when using printk() for MCA and INIT records. | 53 | * Avoid deadlock when using printk() for MCA and INIT records. |
46 | * Delete all record printing code, moved to salinfo_decode in user space. | 54 | * Delete all record printing code, moved to salinfo_decode in user |
47 | * Mark variables and functions static where possible. | 55 | * space. Mark variables and functions static where possible. |
48 | * Delete dead variables and functions. | 56 | * Delete dead variables and functions. Reorder to remove the need |
49 | * Reorder to remove the need for forward declarations and to consolidate | 57 | * for forward declarations and to consolidate related code. |
50 | * related code. | ||
51 | * | 58 | * |
52 | * 2005-08-12 Keith Owens <kaos@sgi.com> | 59 | * 2005-08-12 Keith Owens <kaos@sgi.com> |
53 | * Convert MCA/INIT handlers to use per event stacks and SAL/OS state. | 60 | * Convert MCA/INIT handlers to use per event stacks and SAL/OS |
61 | * state. | ||
54 | * | 62 | * |
55 | * 2005-10-07 Keith Owens <kaos@sgi.com> | 63 | * 2005-10-07 Keith Owens <kaos@sgi.com> |
56 | * Add notify_die() hooks. | 64 | * Add notify_die() hooks. |
57 | * | 65 | * |
58 | * 2006-09-15 Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> | 66 | * 2006-09-15 Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> |
59 | * Add printing support for MCA/INIT. | 67 | * Add printing support for MCA/INIT. |
60 | * | 68 | * |
61 | * 2007-04-27 Russ Anderson <rja@sgi.com> | 69 | * 2007-04-27 Russ Anderson <rja@sgi.com> |
62 | * Support multiple cpus going through OS_MCA in the same event. | 70 | * Support multiple cpus going through OS_MCA in the same event. |
diff --git a/arch/ia64/kernel/mca_asm.S b/arch/ia64/kernel/mca_asm.S index 0f5965fcdf85..8bc7d259e0c6 100644 --- a/arch/ia64/kernel/mca_asm.S +++ b/arch/ia64/kernel/mca_asm.S | |||
@@ -1,24 +1,28 @@ | |||
1 | // | 1 | /* |
2 | // assembly portion of the IA64 MCA handling | 2 | * File: mca_asm.S |
3 | // | 3 | * Purpose: assembly portion of the IA64 MCA handling |
4 | // Mods by cfleck to integrate into kernel build | 4 | * |
5 | // 00/03/15 davidm Added various stop bits to get a clean compile | 5 | * Mods by cfleck to integrate into kernel build |
6 | // | 6 | * |
7 | // 00/03/29 cfleck Added code to save INIT handoff state in pt_regs format, switch to temp | 7 | * 2000-03-15 David Mosberger-Tang <davidm@hpl.hp.com> |
8 | // kstack, switch modes, jump to C INIT handler | 8 | * Added various stop bits to get a clean compile |
9 | // | 9 | * |
10 | // 02/01/04 J.Hall <jenna.s.hall@intel.com> | 10 | * 2000-03-29 Chuck Fleckenstein <cfleck@co.intel.com> |
11 | // Before entering virtual mode code: | 11 | * Added code to save INIT handoff state in pt_regs format, |
12 | // 1. Check for TLB CPU error | 12 | * switch to temp kstack, switch modes, jump to C INIT handler |
13 | // 2. Restore current thread pointer to kr6 | 13 | * |
14 | // 3. Move stack ptr 16 bytes to conform to C calling convention | 14 | * 2002-01-04 J.Hall <jenna.s.hall@intel.com> |
15 | // | 15 | * Before entering virtual mode code: |
16 | // 04/11/12 Russ Anderson <rja@sgi.com> | 16 | * 1. Check for TLB CPU error |
17 | // Added per cpu MCA/INIT stack save areas. | 17 | * 2. Restore current thread pointer to kr6 |
18 | // | 18 | * 3. Move stack ptr 16 bytes to conform to C calling convention |
19 | // 12/08/05 Keith Owens <kaos@sgi.com> | 19 | * |
20 | // Use per cpu MCA/INIT stacks for all data. | 20 | * 2004-11-12 Russ Anderson <rja@sgi.com> |
21 | // | 21 | * Added per cpu MCA/INIT stack save areas. |
22 | * | ||
23 | * 2005-12-08 Keith Owens <kaos@sgi.com> | ||
24 | * Use per cpu MCA/INIT stacks for all data. | ||
25 | */ | ||
22 | #include <linux/threads.h> | 26 | #include <linux/threads.h> |
23 | 27 | ||
24 | #include <asm/asmmacro.h> | 28 | #include <asm/asmmacro.h> |
diff --git a/arch/ia64/kernel/mca_drv.c b/arch/ia64/kernel/mca_drv.c index aba813c2c150..fab1d21a4f2c 100644 --- a/arch/ia64/kernel/mca_drv.c +++ b/arch/ia64/kernel/mca_drv.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Purpose: Generic MCA handling layer | 3 | * Purpose: Generic MCA handling layer |
4 | * | 4 | * |
5 | * Copyright (C) 2004 FUJITSU LIMITED | 5 | * Copyright (C) 2004 FUJITSU LIMITED |
6 | * Copyright (C) Hidetoshi Seto (seto.hidetoshi@jp.fujitsu.com) | 6 | * Copyright (C) 2004 Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> |
7 | * Copyright (C) 2005 Silicon Graphics, Inc | 7 | * Copyright (C) 2005 Silicon Graphics, Inc |
8 | * Copyright (C) 2005 Keith Owens <kaos@sgi.com> | 8 | * Copyright (C) 2005 Keith Owens <kaos@sgi.com> |
9 | * Copyright (C) 2006 Russ Anderson <rja@sgi.com> | 9 | * Copyright (C) 2006 Russ Anderson <rja@sgi.com> |
diff --git a/arch/ia64/kernel/mca_drv.h b/arch/ia64/kernel/mca_drv.h index 485e34d0b199..53b8ecb5b4b9 100644 --- a/arch/ia64/kernel/mca_drv.h +++ b/arch/ia64/kernel/mca_drv.h | |||
@@ -3,7 +3,7 @@ | |||
3 | * Purpose: Define helpers for Generic MCA handling | 3 | * Purpose: Define helpers for Generic MCA handling |
4 | * | 4 | * |
5 | * Copyright (C) 2004 FUJITSU LIMITED | 5 | * Copyright (C) 2004 FUJITSU LIMITED |
6 | * Copyright (C) Hidetoshi Seto (seto.hidetoshi@jp.fujitsu.com) | 6 | * Copyright (C) 2004 Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> |
7 | */ | 7 | */ |
8 | /* | 8 | /* |
9 | * Processor error section: | 9 | * Processor error section: |
diff --git a/arch/ia64/kernel/mca_drv_asm.S b/arch/ia64/kernel/mca_drv_asm.S index 3bccb06c8d21..767ac2c20d16 100644 --- a/arch/ia64/kernel/mca_drv_asm.S +++ b/arch/ia64/kernel/mca_drv_asm.S | |||
@@ -3,7 +3,7 @@ | |||
3 | * Purpose: Assembly portion of Generic MCA handling | 3 | * Purpose: Assembly portion of Generic MCA handling |
4 | * | 4 | * |
5 | * Copyright (C) 2004 FUJITSU LIMITED | 5 | * Copyright (C) 2004 FUJITSU LIMITED |
6 | * Copyright (C) Hidetoshi Seto (seto.hidetoshi@jp.fujitsu.com) | 6 | * Copyright (C) 2004 Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> |
7 | */ | 7 | */ |
8 | #include <linux/threads.h> | 8 | #include <linux/threads.h> |
9 | 9 | ||
diff --git a/arch/ia64/kernel/module.c b/arch/ia64/kernel/module.c index e699eb6c44be..e58f4367cf11 100644 --- a/arch/ia64/kernel/module.c +++ b/arch/ia64/kernel/module.c | |||
@@ -940,14 +940,3 @@ module_arch_cleanup (struct module *mod) | |||
940 | if (mod->arch.core_unw_table) | 940 | if (mod->arch.core_unw_table) |
941 | unw_remove_unwind_table(mod->arch.core_unw_table); | 941 | unw_remove_unwind_table(mod->arch.core_unw_table); |
942 | } | 942 | } |
943 | |||
944 | #ifdef CONFIG_SMP | ||
945 | void | ||
946 | percpu_modcopy (void *pcpudst, const void *src, unsigned long size) | ||
947 | { | ||
948 | unsigned int i; | ||
949 | for_each_possible_cpu(i) { | ||
950 | memcpy(pcpudst + per_cpu_offset(i), src, size); | ||
951 | } | ||
952 | } | ||
953 | #endif /* CONFIG_SMP */ | ||
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 73e7c2e40b54..78acd9fe97e9 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c | |||
@@ -2631,7 +2631,7 @@ pfm_task_incompatible(pfm_context_t *ctx, struct task_struct *task) | |||
2631 | */ | 2631 | */ |
2632 | if (task == current) return 0; | 2632 | if (task == current) return 0; |
2633 | 2633 | ||
2634 | if ((task->state != TASK_STOPPED) && (task->state != TASK_TRACED)) { | 2634 | if (!task_is_stopped_or_traced(task)) { |
2635 | DPRINT(("cannot attach to non-stopped task [%d] state=%ld\n", task_pid_nr(task), task->state)); | 2635 | DPRINT(("cannot attach to non-stopped task [%d] state=%ld\n", task_pid_nr(task), task->state)); |
2636 | return -EBUSY; | 2636 | return -EBUSY; |
2637 | } | 2637 | } |
@@ -2654,11 +2654,11 @@ pfm_get_task(pfm_context_t *ctx, pid_t pid, struct task_struct **task) | |||
2654 | /* XXX: need to add more checks here */ | 2654 | /* XXX: need to add more checks here */ |
2655 | if (pid < 2) return -EPERM; | 2655 | if (pid < 2) return -EPERM; |
2656 | 2656 | ||
2657 | if (pid != current->pid) { | 2657 | if (pid != task_pid_vnr(current)) { |
2658 | 2658 | ||
2659 | read_lock(&tasklist_lock); | 2659 | read_lock(&tasklist_lock); |
2660 | 2660 | ||
2661 | p = find_task_by_pid(pid); | 2661 | p = find_task_by_vpid(pid); |
2662 | 2662 | ||
2663 | /* make sure task cannot go away while we operate on it */ | 2663 | /* make sure task cannot go away while we operate on it */ |
2664 | if (p) get_task_struct(p); | 2664 | if (p) get_task_struct(p); |
@@ -4792,7 +4792,7 @@ recheck: | |||
4792 | * the task must be stopped. | 4792 | * the task must be stopped. |
4793 | */ | 4793 | */ |
4794 | if (PFM_CMD_STOPPED(cmd)) { | 4794 | if (PFM_CMD_STOPPED(cmd)) { |
4795 | if ((task->state != TASK_STOPPED) && (task->state != TASK_TRACED)) { | 4795 | if (!task_is_stopped_or_traced(task)) { |
4796 | DPRINT(("[%d] task not in stopped state\n", task_pid_nr(task))); | 4796 | DPRINT(("[%d] task not in stopped state\n", task_pid_nr(task))); |
4797 | return -EBUSY; | 4797 | return -EBUSY; |
4798 | } | 4798 | } |
@@ -5795,7 +5795,7 @@ pfm_proc_show(struct seq_file *m, void *v) | |||
5795 | return 0; | 5795 | return 0; |
5796 | } | 5796 | } |
5797 | 5797 | ||
5798 | struct seq_operations pfm_seq_ops = { | 5798 | const struct seq_operations pfm_seq_ops = { |
5799 | .start = pfm_proc_start, | 5799 | .start = pfm_proc_start, |
5800 | .next = pfm_proc_next, | 5800 | .next = pfm_proc_next, |
5801 | .stop = pfm_proc_stop, | 5801 | .stop = pfm_proc_stop, |
diff --git a/arch/ia64/kernel/sal.c b/arch/ia64/kernel/sal.c index 27c2ef445a56..f44fe8412162 100644 --- a/arch/ia64/kernel/sal.c +++ b/arch/ia64/kernel/sal.c | |||
@@ -284,6 +284,7 @@ ia64_sal_cache_flush (u64 cache_type) | |||
284 | SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0); | 284 | SAL_CALL(isrv, SAL_CACHE_FLUSH, cache_type, 0, 0, 0, 0, 0, 0); |
285 | return isrv.status; | 285 | return isrv.status; |
286 | } | 286 | } |
287 | EXPORT_SYMBOL_GPL(ia64_sal_cache_flush); | ||
287 | 288 | ||
288 | void __init | 289 | void __init |
289 | ia64_sal_init (struct ia64_sal_systab *systab) | 290 | ia64_sal_init (struct ia64_sal_systab *systab) |
@@ -372,3 +373,16 @@ ia64_sal_oemcall_reentrant(struct ia64_sal_retval *isrvp, u64 oemfunc, | |||
372 | return 0; | 373 | return 0; |
373 | } | 374 | } |
374 | EXPORT_SYMBOL(ia64_sal_oemcall_reentrant); | 375 | EXPORT_SYMBOL(ia64_sal_oemcall_reentrant); |
376 | |||
377 | long | ||
378 | ia64_sal_freq_base (unsigned long which, unsigned long *ticks_per_second, | ||
379 | unsigned long *drift_info) | ||
380 | { | ||
381 | struct ia64_sal_retval isrv; | ||
382 | |||
383 | SAL_CALL(isrv, SAL_FREQ_BASE, which, 0, 0, 0, 0, 0, 0); | ||
384 | *ticks_per_second = isrv.v0; | ||
385 | *drift_info = isrv.v1; | ||
386 | return isrv.status; | ||
387 | } | ||
388 | EXPORT_SYMBOL_GPL(ia64_sal_freq_base); | ||
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index 86028c69861e..ebd1a09f3201 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c | |||
@@ -654,7 +654,7 @@ c_stop (struct seq_file *m, void *v) | |||
654 | { | 654 | { |
655 | } | 655 | } |
656 | 656 | ||
657 | struct seq_operations cpuinfo_op = { | 657 | const struct seq_operations cpuinfo_op = { |
658 | .start = c_start, | 658 | .start = c_start, |
659 | .next = c_next, | 659 | .next = c_next, |
660 | .stop = c_stop, | 660 | .stop = c_stop, |
diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c index f0fc4d8465ad..480b1a5085d5 100644 --- a/arch/ia64/kernel/smpboot.c +++ b/arch/ia64/kernel/smpboot.c | |||
@@ -767,17 +767,6 @@ void __cpu_die(unsigned int cpu) | |||
767 | } | 767 | } |
768 | printk(KERN_ERR "CPU %u didn't die...\n", cpu); | 768 | printk(KERN_ERR "CPU %u didn't die...\n", cpu); |
769 | } | 769 | } |
770 | #else /* !CONFIG_HOTPLUG_CPU */ | ||
771 | int __cpu_disable(void) | ||
772 | { | ||
773 | return -ENOSYS; | ||
774 | } | ||
775 | |||
776 | void __cpu_die(unsigned int cpu) | ||
777 | { | ||
778 | /* We said "no" in __cpu_disable */ | ||
779 | BUG(); | ||
780 | } | ||
781 | #endif /* CONFIG_HOTPLUG_CPU */ | 770 | #endif /* CONFIG_HOTPLUG_CPU */ |
782 | 771 | ||
783 | void | 772 | void |
diff --git a/arch/ia64/kernel/traps.c b/arch/ia64/kernel/traps.c index 78d65cb947d2..f0cda765e681 100644 --- a/arch/ia64/kernel/traps.c +++ b/arch/ia64/kernel/traps.c | |||
@@ -35,7 +35,7 @@ trap_init (void) | |||
35 | fpswa_interface = __va(ia64_boot_param->fpswa); | 35 | fpswa_interface = __va(ia64_boot_param->fpswa); |
36 | } | 36 | } |
37 | 37 | ||
38 | void | 38 | int |
39 | die (const char *str, struct pt_regs *regs, long err) | 39 | die (const char *str, struct pt_regs *regs, long err) |
40 | { | 40 | { |
41 | static struct { | 41 | static struct { |
@@ -62,8 +62,11 @@ die (const char *str, struct pt_regs *regs, long err) | |||
62 | if (++die.lock_owner_depth < 3) { | 62 | if (++die.lock_owner_depth < 3) { |
63 | printk("%s[%d]: %s %ld [%d]\n", | 63 | printk("%s[%d]: %s %ld [%d]\n", |
64 | current->comm, task_pid_nr(current), str, err, ++die_counter); | 64 | current->comm, task_pid_nr(current), str, err, ++die_counter); |
65 | (void) notify_die(DIE_OOPS, (char *)str, regs, err, 255, SIGSEGV); | 65 | if (notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV) |
66 | show_regs(regs); | 66 | != NOTIFY_STOP) |
67 | show_regs(regs); | ||
68 | else | ||
69 | regs = NULL; | ||
67 | } else | 70 | } else |
68 | printk(KERN_ERR "Recursive die() failure, output suppressed\n"); | 71 | printk(KERN_ERR "Recursive die() failure, output suppressed\n"); |
69 | 72 | ||
@@ -72,17 +75,22 @@ die (const char *str, struct pt_regs *regs, long err) | |||
72 | add_taint(TAINT_DIE); | 75 | add_taint(TAINT_DIE); |
73 | spin_unlock_irq(&die.lock); | 76 | spin_unlock_irq(&die.lock); |
74 | 77 | ||
78 | if (!regs) | ||
79 | return 1; | ||
80 | |||
75 | if (panic_on_oops) | 81 | if (panic_on_oops) |
76 | panic("Fatal exception"); | 82 | panic("Fatal exception"); |
77 | 83 | ||
78 | do_exit(SIGSEGV); | 84 | do_exit(SIGSEGV); |
85 | return 0; | ||
79 | } | 86 | } |
80 | 87 | ||
81 | void | 88 | int |
82 | die_if_kernel (char *str, struct pt_regs *regs, long err) | 89 | die_if_kernel (char *str, struct pt_regs *regs, long err) |
83 | { | 90 | { |
84 | if (!user_mode(regs)) | 91 | if (!user_mode(regs)) |
85 | die(str, regs, err); | 92 | return die(str, regs, err); |
93 | return 0; | ||
86 | } | 94 | } |
87 | 95 | ||
88 | void | 96 | void |
@@ -102,7 +110,8 @@ __kprobes ia64_bad_break (unsigned long break_num, struct pt_regs *regs) | |||
102 | if (notify_die(DIE_BREAK, "break 0", regs, break_num, TRAP_BRKPT, SIGTRAP) | 110 | if (notify_die(DIE_BREAK, "break 0", regs, break_num, TRAP_BRKPT, SIGTRAP) |
103 | == NOTIFY_STOP) | 111 | == NOTIFY_STOP) |
104 | return; | 112 | return; |
105 | die_if_kernel("bugcheck!", regs, break_num); | 113 | if (die_if_kernel("bugcheck!", regs, break_num)) |
114 | return; | ||
106 | sig = SIGILL; code = ILL_ILLOPC; | 115 | sig = SIGILL; code = ILL_ILLOPC; |
107 | break; | 116 | break; |
108 | 117 | ||
@@ -155,8 +164,9 @@ __kprobes ia64_bad_break (unsigned long break_num, struct pt_regs *regs) | |||
155 | break; | 164 | break; |
156 | 165 | ||
157 | default: | 166 | default: |
158 | if (break_num < 0x40000 || break_num > 0x100000) | 167 | if ((break_num < 0x40000 || break_num > 0x100000) |
159 | die_if_kernel("Bad break", regs, break_num); | 168 | && die_if_kernel("Bad break", regs, break_num)) |
169 | return; | ||
160 | 170 | ||
161 | if (break_num < 0x80000) { | 171 | if (break_num < 0x80000) { |
162 | sig = SIGILL; code = __ILL_BREAK; | 172 | sig = SIGILL; code = __ILL_BREAK; |
@@ -402,14 +412,15 @@ ia64_illegal_op_fault (unsigned long ec, long arg1, long arg2, long arg3, | |||
402 | #endif | 412 | #endif |
403 | 413 | ||
404 | sprintf(buf, "IA-64 Illegal operation fault"); | 414 | sprintf(buf, "IA-64 Illegal operation fault"); |
405 | die_if_kernel(buf, ®s, 0); | 415 | rv.fkt = 0; |
416 | if (die_if_kernel(buf, ®s, 0)) | ||
417 | return rv; | ||
406 | 418 | ||
407 | memset(&si, 0, sizeof(si)); | 419 | memset(&si, 0, sizeof(si)); |
408 | si.si_signo = SIGILL; | 420 | si.si_signo = SIGILL; |
409 | si.si_code = ILL_ILLOPC; | 421 | si.si_code = ILL_ILLOPC; |
410 | si.si_addr = (void __user *) (regs.cr_iip + ia64_psr(®s)->ri); | 422 | si.si_addr = (void __user *) (regs.cr_iip + ia64_psr(®s)->ri); |
411 | force_sig_info(SIGILL, &si, current); | 423 | force_sig_info(SIGILL, &si, current); |
412 | rv.fkt = 0; | ||
413 | return rv; | 424 | return rv; |
414 | } | 425 | } |
415 | 426 | ||
@@ -644,6 +655,6 @@ ia64_fault (unsigned long vector, unsigned long isr, unsigned long ifa, | |||
644 | sprintf(buf, "Fault %lu", vector); | 655 | sprintf(buf, "Fault %lu", vector); |
645 | break; | 656 | break; |
646 | } | 657 | } |
647 | die_if_kernel(buf, ®s, error); | 658 | if (!die_if_kernel(buf, ®s, error)) |
648 | force_sig(SIGILL, current); | 659 | force_sig(SIGILL, current); |
649 | } | 660 | } |
diff --git a/arch/ia64/kernel/unaligned.c b/arch/ia64/kernel/unaligned.c index f6a1aeb742b3..52f70bbc192a 100644 --- a/arch/ia64/kernel/unaligned.c +++ b/arch/ia64/kernel/unaligned.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
24 | #include <asm/unaligned.h> | 24 | #include <asm/unaligned.h> |
25 | 25 | ||
26 | extern void die_if_kernel(char *str, struct pt_regs *regs, long err); | 26 | extern int die_if_kernel(char *str, struct pt_regs *regs, long err); |
27 | 27 | ||
28 | #undef DEBUG_UNALIGNED_TRAP | 28 | #undef DEBUG_UNALIGNED_TRAP |
29 | 29 | ||
@@ -675,8 +675,9 @@ emulate_load_updates (update_t type, load_store_t ld, struct pt_regs *regs, unsi | |||
675 | */ | 675 | */ |
676 | if (ld.x6_op == 1 || ld.x6_op == 3) { | 676 | if (ld.x6_op == 1 || ld.x6_op == 3) { |
677 | printk(KERN_ERR "%s: register update on speculative load, error\n", __FUNCTION__); | 677 | printk(KERN_ERR "%s: register update on speculative load, error\n", __FUNCTION__); |
678 | die_if_kernel("unaligned reference on speculative load with register update\n", | 678 | if (die_if_kernel("unaligned reference on speculative load with register update\n", |
679 | regs, 30); | 679 | regs, 30)) |
680 | return; | ||
680 | } | 681 | } |
681 | 682 | ||
682 | 683 | ||
@@ -1317,7 +1318,8 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) | |||
1317 | 1318 | ||
1318 | if (ia64_psr(regs)->be) { | 1319 | if (ia64_psr(regs)->be) { |
1319 | /* we don't support big-endian accesses */ | 1320 | /* we don't support big-endian accesses */ |
1320 | die_if_kernel("big-endian unaligned accesses are not supported", regs, 0); | 1321 | if (die_if_kernel("big-endian unaligned accesses are not supported", regs, 0)) |
1322 | return; | ||
1321 | goto force_sigbus; | 1323 | goto force_sigbus; |
1322 | } | 1324 | } |
1323 | 1325 | ||
@@ -1534,7 +1536,8 @@ ia64_handle_unaligned (unsigned long ifa, struct pt_regs *regs) | |||
1534 | ia64_handle_exception(regs, eh); | 1536 | ia64_handle_exception(regs, eh); |
1535 | goto done; | 1537 | goto done; |
1536 | } | 1538 | } |
1537 | die_if_kernel("error during unaligned kernel access\n", regs, ret); | 1539 | if (die_if_kernel("error during unaligned kernel access\n", regs, ret)) |
1540 | return; | ||
1538 | /* NOT_REACHED */ | 1541 | /* NOT_REACHED */ |
1539 | } | 1542 | } |
1540 | force_sigbus: | 1543 | force_sigbus: |
diff --git a/arch/ia64/mm/fault.c b/arch/ia64/mm/fault.c index 7571076a16a1..3e69881648a3 100644 --- a/arch/ia64/mm/fault.c +++ b/arch/ia64/mm/fault.c | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <asm/system.h> | 16 | #include <asm/system.h> |
17 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
18 | 18 | ||
19 | extern void die (char *, struct pt_regs *, long); | 19 | extern int die(char *, struct pt_regs *, long); |
20 | 20 | ||
21 | #ifdef CONFIG_KPROBES | 21 | #ifdef CONFIG_KPROBES |
22 | static inline int notify_page_fault(struct pt_regs *regs, int trap) | 22 | static inline int notify_page_fault(struct pt_regs *regs, int trap) |
@@ -267,9 +267,11 @@ ia64_do_page_fault (unsigned long address, unsigned long isr, struct pt_regs *re | |||
267 | else | 267 | else |
268 | printk(KERN_ALERT "Unable to handle kernel paging request at " | 268 | printk(KERN_ALERT "Unable to handle kernel paging request at " |
269 | "virtual address %016lx\n", address); | 269 | "virtual address %016lx\n", address); |
270 | die("Oops", regs, isr); | 270 | if (die("Oops", regs, isr)) |
271 | regs = NULL; | ||
271 | bust_spinlocks(0); | 272 | bust_spinlocks(0); |
272 | do_exit(SIGKILL); | 273 | if (regs) |
274 | do_exit(SIGKILL); | ||
273 | return; | 275 | return; |
274 | 276 | ||
275 | out_of_memory: | 277 | out_of_memory: |
diff --git a/arch/ia64/sn/kernel/sn2/sn2_smp.c b/arch/ia64/sn/kernel/sn2/sn2_smp.c index f3c69329e145..dfc6bf1c7b41 100644 --- a/arch/ia64/sn/kernel/sn2/sn2_smp.c +++ b/arch/ia64/sn/kernel/sn2/sn2_smp.c | |||
@@ -523,7 +523,7 @@ static ssize_t sn2_ptc_proc_write(struct file *file, const char __user *user, si | |||
523 | return count; | 523 | return count; |
524 | } | 524 | } |
525 | 525 | ||
526 | static struct seq_operations sn2_ptc_seq_ops = { | 526 | static const struct seq_operations sn2_ptc_seq_ops = { |
527 | .start = sn2_ptc_seq_start, | 527 | .start = sn2_ptc_seq_start, |
528 | .next = sn2_ptc_seq_next, | 528 | .next = sn2_ptc_seq_next, |
529 | .stop = sn2_ptc_seq_stop, | 529 | .stop = sn2_ptc_seq_stop, |
diff --git a/arch/ia64/sn/kernel/sn2/sn_hwperf.c b/arch/ia64/sn/kernel/sn2/sn_hwperf.c index 1a8e49607f11..4b0d1538e7e5 100644 --- a/arch/ia64/sn/kernel/sn2/sn_hwperf.c +++ b/arch/ia64/sn/kernel/sn2/sn_hwperf.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/smp_lock.h> | 33 | #include <linux/smp_lock.h> |
34 | #include <linux/nodemask.h> | 34 | #include <linux/nodemask.h> |
35 | #include <linux/smp.h> | 35 | #include <linux/smp.h> |
36 | #include <linux/mutex.h> | ||
36 | 37 | ||
37 | #include <asm/processor.h> | 38 | #include <asm/processor.h> |
38 | #include <asm/topology.h> | 39 | #include <asm/topology.h> |
@@ -50,7 +51,7 @@ static void *sn_hwperf_salheap = NULL; | |||
50 | static int sn_hwperf_obj_cnt = 0; | 51 | static int sn_hwperf_obj_cnt = 0; |
51 | static nasid_t sn_hwperf_master_nasid = INVALID_NASID; | 52 | static nasid_t sn_hwperf_master_nasid = INVALID_NASID; |
52 | static int sn_hwperf_init(void); | 53 | static int sn_hwperf_init(void); |
53 | static DECLARE_MUTEX(sn_hwperf_init_mutex); | 54 | static DEFINE_MUTEX(sn_hwperf_init_mutex); |
54 | 55 | ||
55 | #define cnode_possible(n) ((n) < num_cnodes) | 56 | #define cnode_possible(n) ((n) < num_cnodes) |
56 | 57 | ||
@@ -577,7 +578,7 @@ static void sn_topology_stop(struct seq_file *m, void *v) | |||
577 | /* | 578 | /* |
578 | * /proc/sgi_sn/sn_topology, read-only using seq_file | 579 | * /proc/sgi_sn/sn_topology, read-only using seq_file |
579 | */ | 580 | */ |
580 | static struct seq_operations sn_topology_seq_ops = { | 581 | static const struct seq_operations sn_topology_seq_ops = { |
581 | .start = sn_topology_start, | 582 | .start = sn_topology_start, |
582 | .next = sn_topology_next, | 583 | .next = sn_topology_next, |
583 | .stop = sn_topology_stop, | 584 | .stop = sn_topology_stop, |
@@ -884,10 +885,10 @@ static int sn_hwperf_init(void) | |||
884 | int e = 0; | 885 | int e = 0; |
885 | 886 | ||
886 | /* single threaded, once-only initialization */ | 887 | /* single threaded, once-only initialization */ |
887 | down(&sn_hwperf_init_mutex); | 888 | mutex_lock(&sn_hwperf_init_mutex); |
888 | 889 | ||
889 | if (sn_hwperf_salheap) { | 890 | if (sn_hwperf_salheap) { |
890 | up(&sn_hwperf_init_mutex); | 891 | mutex_unlock(&sn_hwperf_init_mutex); |
891 | return e; | 892 | return e; |
892 | } | 893 | } |
893 | 894 | ||
@@ -936,7 +937,7 @@ out: | |||
936 | sn_hwperf_salheap = NULL; | 937 | sn_hwperf_salheap = NULL; |
937 | sn_hwperf_obj_cnt = 0; | 938 | sn_hwperf_obj_cnt = 0; |
938 | } | 939 | } |
939 | up(&sn_hwperf_init_mutex); | 940 | mutex_unlock(&sn_hwperf_init_mutex); |
940 | return e; | 941 | return e; |
941 | } | 942 | } |
942 | 943 | ||
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index f7237c5f531e..795180b8fd8e 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
@@ -8,6 +8,7 @@ mainmenu "Linux/M32R Kernel Configuration" | |||
8 | config M32R | 8 | config M32R |
9 | bool | 9 | bool |
10 | default y | 10 | default y |
11 | select HAVE_OPROFILE | ||
11 | 12 | ||
12 | config SBUS | 13 | config SBUS |
13 | bool | 14 | bool |
@@ -302,8 +303,7 @@ config SMP | |||
302 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power | 303 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power |
303 | Management" code will be disabled if you say Y here. | 304 | Management" code will be disabled if you say Y here. |
304 | 305 | ||
305 | See also the <file:Documentation/smp.txt>, | 306 | See also the SMP-HOWTO available at |
306 | and the SMP-HOWTO available at | ||
307 | <http://www.linuxdoc.org/docs.html#howto>. | 307 | <http://www.linuxdoc.org/docs.html#howto>. |
308 | 308 | ||
309 | If you don't know what to do here, say N. | 309 | If you don't know what to do here, say N. |
@@ -359,11 +359,6 @@ config PCI | |||
359 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 359 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
360 | VESA. If you have PCI, say Y, otherwise N. | 360 | VESA. If you have PCI, say Y, otherwise N. |
361 | 361 | ||
362 | The PCI-HOWTO, available from | ||
363 | <http://www.linuxdoc.org/docs.html#howto>, contains valuable | ||
364 | information about which PCI hardware does work under Linux and which | ||
365 | doesn't. | ||
366 | |||
367 | choice | 362 | choice |
368 | prompt "PCI access mode" | 363 | prompt "PCI access mode" |
369 | depends on PCI | 364 | depends on PCI |
@@ -431,8 +426,6 @@ source "drivers/Kconfig" | |||
431 | 426 | ||
432 | source "fs/Kconfig" | 427 | source "fs/Kconfig" |
433 | 428 | ||
434 | source "kernel/Kconfig.instrumentation" | ||
435 | |||
436 | source "arch/m32r/Kconfig.debug" | 429 | source "arch/m32r/Kconfig.debug" |
437 | 430 | ||
438 | source "security/Kconfig" | 431 | source "security/Kconfig" |
diff --git a/arch/m32r/boot/compressed/m32r_sio.c b/arch/m32r/boot/compressed/m32r_sio.c index ee3c8be12fa0..01d877c6868f 100644 --- a/arch/m32r/boot/compressed/m32r_sio.c +++ b/arch/m32r/boot/compressed/m32r_sio.c | |||
@@ -17,7 +17,7 @@ static int puts(const char *s) | |||
17 | return 0; | 17 | return 0; |
18 | } | 18 | } |
19 | 19 | ||
20 | #if defined(CONFIG_PLAT_M32700UT_Alpha) || defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_OPSPUT) | 20 | #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_OPSPUT) |
21 | #include <asm/m32r.h> | 21 | #include <asm/m32r.h> |
22 | #include <asm/io.h> | 22 | #include <asm/io.h> |
23 | 23 | ||
@@ -52,7 +52,7 @@ static void putc(char c) | |||
52 | } | 52 | } |
53 | *BOOT_SIO0TXB = c; | 53 | *BOOT_SIO0TXB = c; |
54 | } | 54 | } |
55 | #else /* !(CONFIG_PLAT_M32700UT_Alpha) && !(CONFIG_PLAT_M32700UT) */ | 55 | #else /* !(CONFIG_PLAT_M32700UT) */ |
56 | #if defined(CONFIG_PLAT_MAPPI2) | 56 | #if defined(CONFIG_PLAT_MAPPI2) |
57 | #define SIO0STS (volatile unsigned short *)(0xa0efd000 + 14) | 57 | #define SIO0STS (volatile unsigned short *)(0xa0efd000 + 14) |
58 | #define SIO0TXB (volatile unsigned short *)(0xa0efd000 + 30) | 58 | #define SIO0TXB (volatile unsigned short *)(0xa0efd000 + 30) |
diff --git a/arch/m32r/kernel/ptrace.c b/arch/m32r/kernel/ptrace.c index ed4d0756c5db..9aa615d3a5b2 100644 --- a/arch/m32r/kernel/ptrace.c +++ b/arch/m32r/kernel/ptrace.c | |||
@@ -476,7 +476,7 @@ unregister_debug_trap(struct task_struct *child, unsigned long addr, | |||
476 | return 0; | 476 | return 0; |
477 | } | 477 | } |
478 | 478 | ||
479 | /* Recover orignal instruction code. */ | 479 | /* Recover original instruction code. */ |
480 | *code = p->insn[i]; | 480 | *code = p->insn[i]; |
481 | 481 | ||
482 | /* Shift debug trap entries. */ | 482 | /* Shift debug trap entries. */ |
diff --git a/arch/m32r/kernel/syscall_table.S b/arch/m32r/kernel/syscall_table.S index 95aa79874847..aa3bf4cfab37 100644 --- a/arch/m32r/kernel/syscall_table.S +++ b/arch/m32r/kernel/syscall_table.S | |||
@@ -321,6 +321,6 @@ ENTRY(sys_call_table) | |||
321 | .long sys_epoll_pwait | 321 | .long sys_epoll_pwait |
322 | .long sys_utimensat /* 320 */ | 322 | .long sys_utimensat /* 320 */ |
323 | .long sys_signalfd | 323 | .long sys_signalfd |
324 | .long sys_timerfd | 324 | .long sys_ni_syscall |
325 | .long sys_eventfd | 325 | .long sys_eventfd |
326 | .long sys_fallocate | 326 | .long sys_fallocate |
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 01dee84f840a..ffabd01c45eb 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
@@ -145,11 +145,6 @@ config PCI | |||
145 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 145 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
146 | VESA. If you have PCI, say Y, otherwise N. | 146 | VESA. If you have PCI, say Y, otherwise N. |
147 | 147 | ||
148 | The PCI-HOWTO, available from | ||
149 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
150 | information about which PCI hardware does work under Linux and which | ||
151 | doesn't. | ||
152 | |||
153 | config MAC | 148 | config MAC |
154 | bool "Macintosh support" | 149 | bool "Macintosh support" |
155 | depends on !MMU_SUN3 | 150 | depends on !MMU_SUN3 |
@@ -582,20 +577,6 @@ config MAC_HID | |||
582 | depends on INPUT_ADBHID | 577 | depends on INPUT_ADBHID |
583 | default y | 578 | default y |
584 | 579 | ||
585 | config MAC_ADBKEYCODES | ||
586 | bool "Support for ADB raw keycodes" | ||
587 | depends on INPUT_ADBHID | ||
588 | help | ||
589 | This provides support for sending raw ADB keycodes to console | ||
590 | devices. This is the default up to 2.4.0, but in future this may be | ||
591 | phased out in favor of generic Linux keycodes. If you say Y here, | ||
592 | you can dynamically switch via the | ||
593 | /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes | ||
594 | sysctl and with the "keyboard_sends_linux_keycodes=" kernel | ||
595 | argument. | ||
596 | |||
597 | If unsure, say Y here. | ||
598 | |||
599 | config ADB_KEYBOARD | 580 | config ADB_KEYBOARD |
600 | bool "Support for ADB keyboard (old driver)" | 581 | bool "Support for ADB keyboard (old driver)" |
601 | depends on MAC && !INPUT_ADBHID | 582 | depends on MAC && !INPUT_ADBHID |
@@ -683,8 +664,6 @@ endmenu | |||
683 | 664 | ||
684 | source "fs/Kconfig" | 665 | source "fs/Kconfig" |
685 | 666 | ||
686 | source "kernel/Kconfig.instrumentation" | ||
687 | |||
688 | source "arch/m68k/Kconfig.debug" | 667 | source "arch/m68k/Kconfig.debug" |
689 | 668 | ||
690 | source "security/Kconfig" | 669 | source "security/Kconfig" |
diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile index 4a1bd44ff162..2cba605cb59d 100644 --- a/arch/m68k/Makefile +++ b/arch/m68k/Makefile | |||
@@ -13,16 +13,15 @@ | |||
13 | # Copyright (C) 1994 by Hamish Macdonald | 13 | # Copyright (C) 1994 by Hamish Macdonald |
14 | # | 14 | # |
15 | 15 | ||
16 | # test for cross compiling | ||
17 | COMPILE_ARCH = $(shell uname -m) | ||
18 | |||
19 | # override top level makefile | 16 | # override top level makefile |
20 | AS += -m68020 | 17 | AS += -m68020 |
21 | LDFLAGS := -m m68kelf | 18 | LDFLAGS := -m m68kelf |
22 | LDFLAGS_MODULE += -T $(srctree)/arch/m68k/kernel/module.lds | 19 | LDFLAGS_MODULE += -T $(srctree)/arch/m68k/kernel/module.lds |
23 | ifneq ($(COMPILE_ARCH),$(ARCH)) | 20 | ifneq ($(SUBARCH),$(ARCH)) |
24 | # prefix for cross-compiling binaries | 21 | ifeq ($(CROSS_COMPILE),) |
25 | CROSS_COMPILE = m68k-linux-gnu- | 22 | CROSS_COMPILE := $(call cc-cross-prefix, \ |
23 | m68k-linux-gnu- m68k-linux- m68k-unknown-linux-gnu-) | ||
24 | endif | ||
26 | endif | 25 | endif |
27 | 26 | ||
28 | ifdef CONFIG_SUN3 | 27 | ifdef CONFIG_SUN3 |
diff --git a/arch/m68k/amiga/Makefile b/arch/m68k/amiga/Makefile index 8b415651edee..6a0d7650f980 100644 --- a/arch/m68k/amiga/Makefile +++ b/arch/m68k/amiga/Makefile | |||
@@ -2,6 +2,6 @@ | |||
2 | # Makefile for Linux arch/m68k/amiga source directory | 2 | # Makefile for Linux arch/m68k/amiga source directory |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := config.o amiints.o cia.o chipram.o amisound.o amiga_ksyms.o | 5 | obj-y := config.o amiints.o cia.o chipram.o amisound.o |
6 | 6 | ||
7 | obj-$(CONFIG_AMIGA_PCMCIA) += pcmcia.o | 7 | obj-$(CONFIG_AMIGA_PCMCIA) += pcmcia.o |
diff --git a/arch/m68k/amiga/amiga_ksyms.c b/arch/m68k/amiga/amiga_ksyms.c deleted file mode 100644 index 7fdcf6bf3ada..000000000000 --- a/arch/m68k/amiga/amiga_ksyms.c +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | #include <linux/module.h> | ||
2 | #include <linux/types.h> | ||
3 | #include <asm/ptrace.h> | ||
4 | #include <asm/amigahw.h> | ||
5 | #include <asm/amigaints.h> | ||
6 | #include <asm/amipcmcia.h> | ||
7 | |||
8 | extern volatile u_short amiga_audio_min_period; | ||
9 | extern u_short amiga_audio_period; | ||
10 | |||
11 | /* | ||
12 | * Add things here when you find the need for it. | ||
13 | */ | ||
14 | EXPORT_SYMBOL(amiga_model); | ||
15 | EXPORT_SYMBOL(amiga_chipset); | ||
16 | EXPORT_SYMBOL(amiga_hw_present); | ||
17 | EXPORT_SYMBOL(amiga_eclock); | ||
18 | EXPORT_SYMBOL(amiga_colorclock); | ||
19 | EXPORT_SYMBOL(amiga_chip_alloc); | ||
20 | EXPORT_SYMBOL(amiga_chip_free); | ||
21 | EXPORT_SYMBOL(amiga_chip_avail); | ||
22 | EXPORT_SYMBOL(amiga_chip_size); | ||
23 | EXPORT_SYMBOL(amiga_audio_period); | ||
24 | EXPORT_SYMBOL(amiga_audio_min_period); | ||
25 | |||
26 | #ifdef CONFIG_AMIGA_PCMCIA | ||
27 | EXPORT_SYMBOL(pcmcia_reset); | ||
28 | EXPORT_SYMBOL(pcmcia_copy_tuple); | ||
29 | EXPORT_SYMBOL(pcmcia_program_voltage); | ||
30 | EXPORT_SYMBOL(pcmcia_access_speed); | ||
31 | EXPORT_SYMBOL(pcmcia_write_enable); | ||
32 | EXPORT_SYMBOL(pcmcia_write_disable); | ||
33 | #endif | ||
diff --git a/arch/m68k/amiga/amisound.c b/arch/m68k/amiga/amisound.c index 1f5bfb584297..61e5c54625ae 100644 --- a/arch/m68k/amiga/amisound.c +++ b/arch/m68k/amiga/amisound.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/timer.h> | 12 | #include <linux/timer.h> |
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/string.h> | 14 | #include <linux/string.h> |
15 | #include <linux/module.h> | ||
15 | 16 | ||
16 | #include <asm/system.h> | 17 | #include <asm/system.h> |
17 | #include <asm/amigahw.h> | 18 | #include <asm/amigahw.h> |
@@ -21,7 +22,7 @@ static const signed char sine_data[] = { | |||
21 | 0, 39, 75, 103, 121, 127, 121, 103, 75, 39, | 22 | 0, 39, 75, 103, 121, 127, 121, 103, 75, 39, |
22 | 0, -39, -75, -103, -121, -127, -121, -103, -75, -39 | 23 | 0, -39, -75, -103, -121, -127, -121, -103, -75, -39 |
23 | }; | 24 | }; |
24 | #define DATA_SIZE (sizeof(sine_data)/sizeof(sine_data[0])) | 25 | #define DATA_SIZE ARRAY_SIZE(sine_data) |
25 | 26 | ||
26 | #define custom amiga_custom | 27 | #define custom amiga_custom |
27 | 28 | ||
@@ -31,6 +32,7 @@ static const signed char sine_data[] = { | |||
31 | */ | 32 | */ |
32 | 33 | ||
33 | volatile unsigned short amiga_audio_min_period = 124; /* Default for pre-OCS */ | 34 | volatile unsigned short amiga_audio_min_period = 124; /* Default for pre-OCS */ |
35 | EXPORT_SYMBOL(amiga_audio_min_period); | ||
34 | 36 | ||
35 | #define MAX_PERIOD (65535) | 37 | #define MAX_PERIOD (65535) |
36 | 38 | ||
@@ -40,6 +42,7 @@ volatile unsigned short amiga_audio_min_period = 124; /* Default for pre-OCS */ | |||
40 | */ | 42 | */ |
41 | 43 | ||
42 | unsigned short amiga_audio_period = MAX_PERIOD; | 44 | unsigned short amiga_audio_period = MAX_PERIOD; |
45 | EXPORT_SYMBOL(amiga_audio_period); | ||
43 | 46 | ||
44 | static unsigned long clock_constant; | 47 | static unsigned long clock_constant; |
45 | 48 | ||
diff --git a/arch/m68k/amiga/chipram.c b/arch/m68k/amiga/chipram.c index fa015d801617..d10726f9038b 100644 --- a/arch/m68k/amiga/chipram.c +++ b/arch/m68k/amiga/chipram.c | |||
@@ -13,10 +13,13 @@ | |||
13 | #include <linux/ioport.h> | 13 | #include <linux/ioport.h> |
14 | #include <linux/slab.h> | 14 | #include <linux/slab.h> |
15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
16 | #include <linux/module.h> | ||
17 | |||
16 | #include <asm/page.h> | 18 | #include <asm/page.h> |
17 | #include <asm/amigahw.h> | 19 | #include <asm/amigahw.h> |
18 | 20 | ||
19 | unsigned long amiga_chip_size; | 21 | unsigned long amiga_chip_size; |
22 | EXPORT_SYMBOL(amiga_chip_size); | ||
20 | 23 | ||
21 | static struct resource chipram_res = { | 24 | static struct resource chipram_res = { |
22 | .name = "Chip RAM", .start = CHIP_PHYSADDR | 25 | .name = "Chip RAM", .start = CHIP_PHYSADDR |
@@ -67,6 +70,7 @@ void *amiga_chip_alloc(unsigned long size, const char *name) | |||
67 | #endif | 70 | #endif |
68 | return (void *)ZTWO_VADDR(res->start); | 71 | return (void *)ZTWO_VADDR(res->start); |
69 | } | 72 | } |
73 | EXPORT_SYMBOL(amiga_chip_alloc); | ||
70 | 74 | ||
71 | 75 | ||
72 | /* | 76 | /* |
@@ -120,6 +124,7 @@ void amiga_chip_free(void *ptr) | |||
120 | } | 124 | } |
121 | printk("amiga_chip_free: trying to free nonexistent region at %p\n", ptr); | 125 | printk("amiga_chip_free: trying to free nonexistent region at %p\n", ptr); |
122 | } | 126 | } |
127 | EXPORT_SYMBOL(amiga_chip_free); | ||
123 | 128 | ||
124 | 129 | ||
125 | unsigned long amiga_chip_avail(void) | 130 | unsigned long amiga_chip_avail(void) |
@@ -129,3 +134,5 @@ unsigned long amiga_chip_avail(void) | |||
129 | #endif | 134 | #endif |
130 | return chipavail; | 135 | return chipavail; |
131 | } | 136 | } |
137 | EXPORT_SYMBOL(amiga_chip_avail); | ||
138 | |||
diff --git a/arch/m68k/amiga/config.c b/arch/m68k/amiga/config.c index 35748531327d..50f5daab46b7 100644 --- a/arch/m68k/amiga/config.c +++ b/arch/m68k/amiga/config.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
25 | #include <linux/zorro.h> | 25 | #include <linux/zorro.h> |
26 | #include <linux/module.h> | ||
26 | 27 | ||
27 | #include <asm/bootinfo.h> | 28 | #include <asm/bootinfo.h> |
28 | #include <asm/setup.h> | 29 | #include <asm/setup.h> |
@@ -36,13 +37,24 @@ | |||
36 | #include <asm/io.h> | 37 | #include <asm/io.h> |
37 | 38 | ||
38 | unsigned long amiga_model; | 39 | unsigned long amiga_model; |
40 | EXPORT_SYMBOL(amiga_model); | ||
41 | |||
39 | unsigned long amiga_eclock; | 42 | unsigned long amiga_eclock; |
43 | EXPORT_SYMBOL(amiga_eclock); | ||
44 | |||
40 | unsigned long amiga_masterclock; | 45 | unsigned long amiga_masterclock; |
46 | |||
41 | unsigned long amiga_colorclock; | 47 | unsigned long amiga_colorclock; |
48 | EXPORT_SYMBOL(amiga_colorclock); | ||
49 | |||
42 | unsigned long amiga_chipset; | 50 | unsigned long amiga_chipset; |
51 | EXPORT_SYMBOL(amiga_chipset); | ||
52 | |||
43 | unsigned char amiga_vblank; | 53 | unsigned char amiga_vblank; |
44 | unsigned char amiga_psfreq; | 54 | unsigned char amiga_psfreq; |
55 | |||
45 | struct amiga_hw_present amiga_hw_present; | 56 | struct amiga_hw_present amiga_hw_present; |
57 | EXPORT_SYMBOL(amiga_hw_present); | ||
46 | 58 | ||
47 | static char s_a500[] __initdata = "A500"; | 59 | static char s_a500[] __initdata = "A500"; |
48 | static char s_a500p[] __initdata = "A500+"; | 60 | static char s_a500p[] __initdata = "A500+"; |
diff --git a/arch/m68k/amiga/pcmcia.c b/arch/m68k/amiga/pcmcia.c index 186662ca1a89..7106f0c3639b 100644 --- a/arch/m68k/amiga/pcmcia.c +++ b/arch/m68k/amiga/pcmcia.c | |||
@@ -15,6 +15,8 @@ | |||
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <linux/jiffies.h> | 16 | #include <linux/jiffies.h> |
17 | #include <linux/timer.h> | 17 | #include <linux/timer.h> |
18 | #include <linux/module.h> | ||
19 | |||
18 | #include <asm/amigayle.h> | 20 | #include <asm/amigayle.h> |
19 | #include <asm/amipcmcia.h> | 21 | #include <asm/amipcmcia.h> |
20 | 22 | ||
@@ -30,6 +32,7 @@ void pcmcia_reset(void) | |||
30 | while (time_before(jiffies, reset_start_time + 1*HZ/100)); | 32 | while (time_before(jiffies, reset_start_time + 1*HZ/100)); |
31 | b = gayle_reset; | 33 | b = gayle_reset; |
32 | } | 34 | } |
35 | EXPORT_SYMBOL(pcmcia_reset); | ||
33 | 36 | ||
34 | 37 | ||
35 | /* copy a tuple, including tuple header. return nb bytes copied */ | 38 | /* copy a tuple, including tuple header. return nb bytes copied */ |
@@ -61,6 +64,7 @@ int pcmcia_copy_tuple(unsigned char tuple_id, void *tuple, int max_len) | |||
61 | 64 | ||
62 | return 0; | 65 | return 0; |
63 | } | 66 | } |
67 | EXPORT_SYMBOL(pcmcia_copy_tuple); | ||
64 | 68 | ||
65 | void pcmcia_program_voltage(int voltage) | 69 | void pcmcia_program_voltage(int voltage) |
66 | { | 70 | { |
@@ -84,6 +88,7 @@ void pcmcia_program_voltage(int voltage) | |||
84 | gayle.config = cfg_byte; | 88 | gayle.config = cfg_byte; |
85 | 89 | ||
86 | } | 90 | } |
91 | EXPORT_SYMBOL(pcmcia_program_voltage); | ||
87 | 92 | ||
88 | void pcmcia_access_speed(int speed) | 93 | void pcmcia_access_speed(int speed) |
89 | { | 94 | { |
@@ -101,13 +106,17 @@ void pcmcia_access_speed(int speed) | |||
101 | cfg_byte = (cfg_byte & 0xf3) | s; | 106 | cfg_byte = (cfg_byte & 0xf3) | s; |
102 | gayle.config = cfg_byte; | 107 | gayle.config = cfg_byte; |
103 | } | 108 | } |
109 | EXPORT_SYMBOL(pcmcia_access_speed); | ||
104 | 110 | ||
105 | void pcmcia_write_enable(void) | 111 | void pcmcia_write_enable(void) |
106 | { | 112 | { |
107 | gayle.cardstatus = GAYLE_CS_WR|GAYLE_CS_DA; | 113 | gayle.cardstatus = GAYLE_CS_WR|GAYLE_CS_DA; |
108 | } | 114 | } |
115 | EXPORT_SYMBOL(pcmcia_write_enable); | ||
109 | 116 | ||
110 | void pcmcia_write_disable(void) | 117 | void pcmcia_write_disable(void) |
111 | { | 118 | { |
112 | gayle.cardstatus = 0; | 119 | gayle.cardstatus = 0; |
113 | } | 120 | } |
121 | EXPORT_SYMBOL(pcmcia_write_disable); | ||
122 | |||
diff --git a/arch/m68k/atari/Makefile b/arch/m68k/atari/Makefile index 2cb86191f0aa..2cd905efe63a 100644 --- a/arch/m68k/atari/Makefile +++ b/arch/m68k/atari/Makefile | |||
@@ -3,7 +3,7 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := config.o time.o debug.o ataints.o stdma.o \ | 5 | obj-y := config.o time.o debug.o ataints.o stdma.o \ |
6 | atasound.o stram.o atari_ksyms.o | 6 | atasound.o stram.o |
7 | 7 | ||
8 | ifeq ($(CONFIG_PCI),y) | 8 | ifeq ($(CONFIG_PCI),y) |
9 | obj-$(CONFIG_HADES) += hades-pci.o | 9 | obj-$(CONFIG_HADES) += hades-pci.o |
diff --git a/arch/m68k/atari/ataints.c b/arch/m68k/atari/ataints.c index b85ca22024c1..b45593a60bdd 100644 --- a/arch/m68k/atari/ataints.c +++ b/arch/m68k/atari/ataints.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <linux/kernel_stat.h> | 40 | #include <linux/kernel_stat.h> |
41 | #include <linux/init.h> | 41 | #include <linux/init.h> |
42 | #include <linux/seq_file.h> | 42 | #include <linux/seq_file.h> |
43 | #include <linux/module.h> | ||
43 | 44 | ||
44 | #include <asm/system.h> | 45 | #include <asm/system.h> |
45 | #include <asm/traps.h> | 46 | #include <asm/traps.h> |
@@ -446,6 +447,7 @@ unsigned long atari_register_vme_int(void) | |||
446 | free_vme_vec_bitmap |= 1 << i; | 447 | free_vme_vec_bitmap |= 1 << i; |
447 | return VME_SOURCE_BASE + i; | 448 | return VME_SOURCE_BASE + i; |
448 | } | 449 | } |
450 | EXPORT_SYMBOL(atari_register_vme_int); | ||
449 | 451 | ||
450 | 452 | ||
451 | void atari_unregister_vme_int(unsigned long irq) | 453 | void atari_unregister_vme_int(unsigned long irq) |
@@ -455,5 +457,6 @@ void atari_unregister_vme_int(unsigned long irq) | |||
455 | free_vme_vec_bitmap &= ~(1 << irq); | 457 | free_vme_vec_bitmap &= ~(1 << irq); |
456 | } | 458 | } |
457 | } | 459 | } |
460 | EXPORT_SYMBOL(atari_unregister_vme_int); | ||
458 | 461 | ||
459 | 462 | ||
diff --git a/arch/m68k/atari/atari_ksyms.c b/arch/m68k/atari/atari_ksyms.c deleted file mode 100644 index a04757151538..000000000000 --- a/arch/m68k/atari/atari_ksyms.c +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | #include <linux/module.h> | ||
2 | |||
3 | #include <asm/ptrace.h> | ||
4 | #include <asm/traps.h> | ||
5 | #include <asm/atarihw.h> | ||
6 | #include <asm/atariints.h> | ||
7 | #include <asm/atarikb.h> | ||
8 | #include <asm/atari_joystick.h> | ||
9 | #include <asm/atari_stdma.h> | ||
10 | #include <asm/atari_stram.h> | ||
11 | |||
12 | extern void atari_microwire_cmd( int cmd ); | ||
13 | extern int atari_MFP_init_done; | ||
14 | extern int atari_SCC_init_done; | ||
15 | extern int atari_SCC_reset_done; | ||
16 | |||
17 | EXPORT_SYMBOL(atari_mch_cookie); | ||
18 | EXPORT_SYMBOL(atari_mch_type); | ||
19 | EXPORT_SYMBOL(atari_hw_present); | ||
20 | EXPORT_SYMBOL(atari_switches); | ||
21 | EXPORT_SYMBOL(atari_dont_touch_floppy_select); | ||
22 | EXPORT_SYMBOL(atari_register_vme_int); | ||
23 | EXPORT_SYMBOL(atari_unregister_vme_int); | ||
24 | EXPORT_SYMBOL(stdma_lock); | ||
25 | EXPORT_SYMBOL(stdma_release); | ||
26 | EXPORT_SYMBOL(stdma_others_waiting); | ||
27 | EXPORT_SYMBOL(stdma_islocked); | ||
28 | EXPORT_SYMBOL(atari_stram_alloc); | ||
29 | EXPORT_SYMBOL(atari_stram_free); | ||
30 | |||
31 | EXPORT_SYMBOL(atari_MFP_init_done); | ||
32 | EXPORT_SYMBOL(atari_SCC_init_done); | ||
33 | EXPORT_SYMBOL(atari_SCC_reset_done); | ||
34 | |||
35 | EXPORT_SYMBOL(atari_microwire_cmd); | ||
diff --git a/arch/m68k/atari/atasound.c b/arch/m68k/atari/atasound.c index ee04250eb56b..d266fe89c125 100644 --- a/arch/m68k/atari/atasound.c +++ b/arch/m68k/atari/atasound.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/fcntl.h> | 22 | #include <linux/fcntl.h> |
23 | #include <linux/errno.h> | 23 | #include <linux/errno.h> |
24 | #include <linux/mm.h> | 24 | #include <linux/mm.h> |
25 | #include <linux/module.h> | ||
25 | 26 | ||
26 | #include <asm/atarihw.h> | 27 | #include <asm/atarihw.h> |
27 | #include <asm/system.h> | 28 | #include <asm/system.h> |
@@ -43,6 +44,7 @@ void atari_microwire_cmd (int cmd) | |||
43 | while( tt_microwire.mask != 0x7ff) | 44 | while( tt_microwire.mask != 0x7ff) |
44 | ; | 45 | ; |
45 | } | 46 | } |
47 | EXPORT_SYMBOL(atari_microwire_cmd); | ||
46 | 48 | ||
47 | 49 | ||
48 | /* PSG base frequency */ | 50 | /* PSG base frequency */ |
diff --git a/arch/m68k/atari/config.c b/arch/m68k/atari/config.c index e40e5dcaa347..5945e1505558 100644 --- a/arch/m68k/atari/config.c +++ b/arch/m68k/atari/config.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/delay.h> | 31 | #include <linux/delay.h> |
32 | #include <linux/ioport.h> | 32 | #include <linux/ioport.h> |
33 | #include <linux/vt_kern.h> | 33 | #include <linux/vt_kern.h> |
34 | #include <linux/module.h> | ||
34 | 35 | ||
35 | #include <asm/bootinfo.h> | 36 | #include <asm/bootinfo.h> |
36 | #include <asm/setup.h> | 37 | #include <asm/setup.h> |
@@ -43,10 +44,20 @@ | |||
43 | #include <asm/io.h> | 44 | #include <asm/io.h> |
44 | 45 | ||
45 | u_long atari_mch_cookie; | 46 | u_long atari_mch_cookie; |
47 | EXPORT_SYMBOL(atari_mch_cookie); | ||
48 | |||
46 | u_long atari_mch_type; | 49 | u_long atari_mch_type; |
50 | EXPORT_SYMBOL(atari_mch_type); | ||
51 | |||
47 | struct atari_hw_present atari_hw_present; | 52 | struct atari_hw_present atari_hw_present; |
53 | EXPORT_SYMBOL(atari_hw_present); | ||
54 | |||
48 | u_long atari_switches; | 55 | u_long atari_switches; |
56 | EXPORT_SYMBOL(atari_switches); | ||
57 | |||
49 | int atari_dont_touch_floppy_select; | 58 | int atari_dont_touch_floppy_select; |
59 | EXPORT_SYMBOL(atari_dont_touch_floppy_select); | ||
60 | |||
50 | int atari_rtc_year_offset; | 61 | int atari_rtc_year_offset; |
51 | 62 | ||
52 | /* local function prototypes */ | 63 | /* local function prototypes */ |
diff --git a/arch/m68k/atari/debug.c b/arch/m68k/atari/debug.c index fbeed8c8ecbc..043ddbc61c7b 100644 --- a/arch/m68k/atari/debug.c +++ b/arch/m68k/atari/debug.c | |||
@@ -15,17 +15,23 @@ | |||
15 | #include <linux/console.h> | 15 | #include <linux/console.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
18 | #include <linux/module.h> | ||
18 | 19 | ||
19 | #include <asm/atarihw.h> | 20 | #include <asm/atarihw.h> |
20 | #include <asm/atariints.h> | 21 | #include <asm/atariints.h> |
21 | 22 | ||
22 | /* Flag that Modem1 port is already initialized and used */ | 23 | /* Flag that Modem1 port is already initialized and used */ |
23 | int atari_MFP_init_done; | 24 | int atari_MFP_init_done; |
25 | EXPORT_SYMBOL(atari_MFP_init_done); | ||
26 | |||
24 | /* Flag that Modem1 port is already initialized and used */ | 27 | /* Flag that Modem1 port is already initialized and used */ |
25 | int atari_SCC_init_done; | 28 | int atari_SCC_init_done; |
29 | EXPORT_SYMBOL(atari_SCC_init_done); | ||
30 | |||
26 | /* Can be set somewhere, if a SCC master reset has already be done and should | 31 | /* Can be set somewhere, if a SCC master reset has already be done and should |
27 | * not be repeated; used by kgdb */ | 32 | * not be repeated; used by kgdb */ |
28 | int atari_SCC_reset_done; | 33 | int atari_SCC_reset_done; |
34 | EXPORT_SYMBOL(atari_SCC_reset_done); | ||
29 | 35 | ||
30 | static struct console atari_console_driver = { | 36 | static struct console atari_console_driver = { |
31 | .name = "debug", | 37 | .name = "debug", |
diff --git a/arch/m68k/atari/hades-pci.c b/arch/m68k/atari/hades-pci.c index bee2b1443e36..2bbabc008708 100644 --- a/arch/m68k/atari/hades-pci.c +++ b/arch/m68k/atari/hades-pci.c | |||
@@ -376,8 +376,8 @@ struct pci_bus_info * __init init_hades_pci(void) | |||
376 | */ | 376 | */ |
377 | 377 | ||
378 | bus = kzalloc(sizeof(struct pci_bus_info), GFP_KERNEL); | 378 | bus = kzalloc(sizeof(struct pci_bus_info), GFP_KERNEL); |
379 | if (!bus) | 379 | if (unlikely(!bus)) |
380 | return NULL; | 380 | goto iounmap_base_virt; |
381 | 381 | ||
382 | /* | 382 | /* |
383 | * Claim resources. The m68k has no separate I/O space, both | 383 | * Claim resources. The m68k has no separate I/O space, both |
@@ -385,43 +385,25 @@ struct pci_bus_info * __init init_hades_pci(void) | |||
385 | * the I/O resources are requested in memory space as well. | 385 | * the I/O resources are requested in memory space as well. |
386 | */ | 386 | */ |
387 | 387 | ||
388 | if (request_resource(&iomem_resource, &config_space) != 0) | 388 | if (unlikely(request_resource(&iomem_resource, &config_space) != 0)) |
389 | { | 389 | goto free_bus; |
390 | kfree(bus); | ||
391 | return NULL; | ||
392 | } | ||
393 | 390 | ||
394 | if (request_resource(&iomem_resource, &io_space) != 0) | 391 | if (unlikely(request_resource(&iomem_resource, &io_space) != 0)) |
395 | { | 392 | goto release_config_space; |
396 | release_resource(&config_space); | ||
397 | kfree(bus); | ||
398 | return NULL; | ||
399 | } | ||
400 | 393 | ||
401 | bus->mem_space.start = HADES_MEM_BASE; | 394 | bus->mem_space.start = HADES_MEM_BASE; |
402 | bus->mem_space.end = HADES_MEM_BASE + HADES_MEM_SIZE - 1; | 395 | bus->mem_space.end = HADES_MEM_BASE + HADES_MEM_SIZE - 1; |
403 | bus->mem_space.name = pci_mem_name; | 396 | bus->mem_space.name = pci_mem_name; |
404 | #if 1 | 397 | #if 1 |
405 | if (request_resource(&iomem_resource, &bus->mem_space) != 0) | 398 | if (unlikely(request_resource(&iomem_resource, &bus->mem_space) != 0)) |
406 | { | 399 | goto release_io_space; |
407 | release_resource(&io_space); | ||
408 | release_resource(&config_space); | ||
409 | kfree(bus); | ||
410 | return NULL; | ||
411 | } | ||
412 | #endif | 400 | #endif |
413 | bus->io_space.start = pci_io_base_virt; | 401 | bus->io_space.start = pci_io_base_virt; |
414 | bus->io_space.end = pci_io_base_virt + HADES_VIRT_IO_SIZE - 1; | 402 | bus->io_space.end = pci_io_base_virt + HADES_VIRT_IO_SIZE - 1; |
415 | bus->io_space.name = pci_io_name; | 403 | bus->io_space.name = pci_io_name; |
416 | #if 1 | 404 | #if 1 |
417 | if (request_resource(&ioport_resource, &bus->io_space) != 0) | 405 | if (unlikely(request_resource(&ioport_resource, &bus->io_space) != 0)) |
418 | { | 406 | goto release_bus_mem_space; |
419 | release_resource(&bus->mem_space); | ||
420 | release_resource(&io_space); | ||
421 | release_resource(&config_space); | ||
422 | kfree(bus); | ||
423 | return NULL; | ||
424 | } | ||
425 | #endif | 407 | #endif |
426 | /* | 408 | /* |
427 | * Set hardware dependent functions. | 409 | * Set hardware dependent functions. |
@@ -438,5 +420,21 @@ struct pci_bus_info * __init init_hades_pci(void) | |||
438 | tt_mfp.active_edge &= ~0x27; | 420 | tt_mfp.active_edge &= ~0x27; |
439 | 421 | ||
440 | return bus; | 422 | return bus; |
423 | |||
424 | release_bus_mem_space: | ||
425 | release_resource(&bus->mem_space); | ||
426 | release_io_space: | ||
427 | release_resource(&io_space); | ||
428 | release_config_space: | ||
429 | release_resource(&config_space); | ||
430 | free_bus: | ||
431 | kfree(bus); | ||
432 | iounmap_base_virt: | ||
433 | iounmap((void *)pci_io_base_virt); | ||
434 | |||
435 | for (i = 0; i < N_SLOTS; i++) | ||
436 | iounmap((void *)pci_conf_base_virt[i]); | ||
437 | |||
438 | return NULL; | ||
441 | } | 439 | } |
442 | #endif | 440 | #endif |
diff --git a/arch/m68k/atari/stdma.c b/arch/m68k/atari/stdma.c index ab3fd5202b24..d1bd029a34ac 100644 --- a/arch/m68k/atari/stdma.c +++ b/arch/m68k/atari/stdma.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
37 | #include <linux/wait.h> | 37 | #include <linux/wait.h> |
38 | #include <linux/module.h> | ||
38 | 39 | ||
39 | #include <asm/atari_stdma.h> | 40 | #include <asm/atari_stdma.h> |
40 | #include <asm/atariints.h> | 41 | #include <asm/atariints.h> |
@@ -91,6 +92,7 @@ void stdma_lock(irq_handler_t handler, void *data) | |||
91 | stdma_isr_data = data; | 92 | stdma_isr_data = data; |
92 | local_irq_restore(flags); | 93 | local_irq_restore(flags); |
93 | } | 94 | } |
95 | EXPORT_SYMBOL(stdma_lock); | ||
94 | 96 | ||
95 | 97 | ||
96 | /* | 98 | /* |
@@ -117,6 +119,7 @@ void stdma_release(void) | |||
117 | 119 | ||
118 | local_irq_restore(flags); | 120 | local_irq_restore(flags); |
119 | } | 121 | } |
122 | EXPORT_SYMBOL(stdma_release); | ||
120 | 123 | ||
121 | 124 | ||
122 | /* | 125 | /* |
@@ -134,6 +137,7 @@ int stdma_others_waiting(void) | |||
134 | { | 137 | { |
135 | return waitqueue_active(&stdma_wait); | 138 | return waitqueue_active(&stdma_wait); |
136 | } | 139 | } |
140 | EXPORT_SYMBOL(stdma_others_waiting); | ||
137 | 141 | ||
138 | 142 | ||
139 | /* | 143 | /* |
@@ -155,6 +159,7 @@ int stdma_islocked(void) | |||
155 | { | 159 | { |
156 | return stdma_locked; | 160 | return stdma_locked; |
157 | } | 161 | } |
162 | EXPORT_SYMBOL(stdma_islocked); | ||
158 | 163 | ||
159 | 164 | ||
160 | /* | 165 | /* |
diff --git a/arch/m68k/atari/stram.c b/arch/m68k/atari/stram.c index bf4588cbe371..8dda6515887a 100644 --- a/arch/m68k/atari/stram.c +++ b/arch/m68k/atari/stram.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/bootmem.h> | 20 | #include <linux/bootmem.h> |
21 | #include <linux/mount.h> | 21 | #include <linux/mount.h> |
22 | #include <linux/blkdev.h> | 22 | #include <linux/blkdev.h> |
23 | #include <linux/module.h> | ||
23 | 24 | ||
24 | #include <asm/setup.h> | 25 | #include <asm/setup.h> |
25 | #include <asm/machdep.h> | 26 | #include <asm/machdep.h> |
@@ -208,6 +209,7 @@ void *atari_stram_alloc(long size, const char *owner) | |||
208 | } | 209 | } |
209 | return( addr ); | 210 | return( addr ); |
210 | } | 211 | } |
212 | EXPORT_SYMBOL(atari_stram_alloc); | ||
211 | 213 | ||
212 | void atari_stram_free( void *addr ) | 214 | void atari_stram_free( void *addr ) |
213 | 215 | ||
@@ -237,6 +239,7 @@ void atari_stram_free( void *addr ) | |||
237 | printk( KERN_ERR "atari_stram_free: cannot free block at %p " | 239 | printk( KERN_ERR "atari_stram_free: cannot free block at %p " |
238 | "(called from %p)\n", addr, __builtin_return_address(0) ); | 240 | "(called from %p)\n", addr, __builtin_return_address(0) ); |
239 | } | 241 | } |
242 | EXPORT_SYMBOL(atari_stram_free); | ||
240 | 243 | ||
241 | 244 | ||
242 | /* ------------------------------------------------------------------------ */ | 245 | /* ------------------------------------------------------------------------ */ |
diff --git a/arch/m68k/configs/mac_defconfig b/arch/m68k/configs/mac_defconfig index 15b80abfe94a..ff9dffa5b860 100644 --- a/arch/m68k/configs/mac_defconfig +++ b/arch/m68k/configs/mac_defconfig | |||
@@ -678,7 +678,6 @@ CONFIG_LOGO_MAC_CLUT224=y | |||
678 | # | 678 | # |
679 | CONFIG_MAC_SCC=y | 679 | CONFIG_MAC_SCC=y |
680 | CONFIG_MAC_HID=y | 680 | CONFIG_MAC_HID=y |
681 | CONFIG_MAC_ADBKEYCODES=y | ||
682 | CONFIG_SERIAL_CONSOLE=y | 681 | CONFIG_SERIAL_CONSOLE=y |
683 | 682 | ||
684 | # | 683 | # |
diff --git a/arch/m68k/hp300/Makefile b/arch/m68k/hp300/Makefile index 288b9c67c9bf..96d4244c82fd 100644 --- a/arch/m68k/hp300/Makefile +++ b/arch/m68k/hp300/Makefile | |||
@@ -2,4 +2,4 @@ | |||
2 | # Makefile for Linux arch/m68k/hp300 source directory | 2 | # Makefile for Linux arch/m68k/hp300 source directory |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := ksyms.o config.o time.o reboot.o | 5 | obj-y := config.o time.o reboot.o |
diff --git a/arch/m68k/hp300/ksyms.c b/arch/m68k/hp300/ksyms.c deleted file mode 100644 index 8202830763d1..000000000000 --- a/arch/m68k/hp300/ksyms.c +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | /* | ||
2 | * linux/arch/m68k/hp300/ksyms.c | ||
3 | * | ||
4 | * Copyright (C) 1998 Philip Blundell <philb@gnu.org> | ||
5 | * | ||
6 | * This file contains the HP300-specific kernel symbols. None yet. :-) | ||
7 | */ | ||
8 | |||
9 | #include <linux/module.h> | ||
diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 918f5dbeaef6..6dfa3b3c0e2a 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S | |||
@@ -742,7 +742,7 @@ sys_call_table: | |||
742 | .long sys_epoll_pwait /* 315 */ | 742 | .long sys_epoll_pwait /* 315 */ |
743 | .long sys_utimensat | 743 | .long sys_utimensat |
744 | .long sys_signalfd | 744 | .long sys_signalfd |
745 | .long sys_timerfd | 745 | .long sys_ni_syscall |
746 | .long sys_eventfd | 746 | .long sys_eventfd |
747 | .long sys_fallocate /* 320 */ | 747 | .long sys_fallocate /* 320 */ |
748 | 748 | ||
diff --git a/arch/m68k/mac/Makefile b/arch/m68k/mac/Makefile index 995a09d912f5..1d265ba365ad 100644 --- a/arch/m68k/mac/Makefile +++ b/arch/m68k/mac/Makefile | |||
@@ -3,4 +3,4 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := config.o bootparse.o macints.o iop.o via.o oss.o psc.o \ | 5 | obj-y := config.o bootparse.o macints.o iop.o via.o oss.o psc.o \ |
6 | baboon.o macboing.o debug.o misc.o mac_ksyms.o | 6 | baboon.o macboing.o debug.o misc.o |
diff --git a/arch/m68k/mac/config.c b/arch/m68k/mac/config.c index 01b468b9392e..735a49b4b936 100644 --- a/arch/m68k/mac/config.c +++ b/arch/m68k/mac/config.c | |||
@@ -58,8 +58,6 @@ extern struct mem_info m68k_memory[NUM_MEMINFO]; | |||
58 | 58 | ||
59 | extern struct mem_info m68k_ramdisk; | 59 | extern struct mem_info m68k_ramdisk; |
60 | 60 | ||
61 | extern char m68k_command_line[CL_SIZE]; | ||
62 | |||
63 | void *mac_env; /* Loaded by the boot asm */ | 61 | void *mac_env; /* Loaded by the boot asm */ |
64 | 62 | ||
65 | /* The phys. video addr. - might be bogus on some machines */ | 63 | /* The phys. video addr. - might be bogus on some machines */ |
diff --git a/arch/m68k/mac/mac_ksyms.c b/arch/m68k/mac/mac_ksyms.c deleted file mode 100644 index 6e37ceb0f3b5..000000000000 --- a/arch/m68k/mac/mac_ksyms.c +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | #include <linux/module.h> | ||
2 | #include <asm/ptrace.h> | ||
3 | #include <asm/traps.h> | ||
4 | |||
5 | /* Says whether we're using A/UX interrupts or not */ | ||
6 | extern int via_alt_mapping; | ||
7 | |||
8 | EXPORT_SYMBOL(via_alt_mapping); | ||
diff --git a/arch/m68k/mac/via.c b/arch/m68k/mac/via.c index 8df270e950fa..fa485df4160e 100644 --- a/arch/m68k/mac/via.c +++ b/arch/m68k/mac/via.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/delay.h> | 28 | #include <linux/delay.h> |
29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
30 | #include <linux/ide.h> | 30 | #include <linux/ide.h> |
31 | #include <linux/module.h> | ||
31 | 32 | ||
32 | #include <asm/bootinfo.h> | 33 | #include <asm/bootinfo.h> |
33 | #include <asm/macintosh.h> | 34 | #include <asm/macintosh.h> |
@@ -41,7 +42,9 @@ volatile __u8 *via1, *via2; | |||
41 | /* See note in mac_via.h about how this is possibly not useful */ | 42 | /* See note in mac_via.h about how this is possibly not useful */ |
42 | volatile long *via_memory_bogon=(long *)&via_memory_bogon; | 43 | volatile long *via_memory_bogon=(long *)&via_memory_bogon; |
43 | #endif | 44 | #endif |
44 | int rbv_present, via_alt_mapping; | 45 | int rbv_present; |
46 | int via_alt_mapping; | ||
47 | EXPORT_SYMBOL(via_alt_mapping); | ||
45 | __u8 rbv_clear; | 48 | __u8 rbv_clear; |
46 | 49 | ||
47 | /* | 50 | /* |
diff --git a/arch/m68k/mvme16x/Makefile b/arch/m68k/mvme16x/Makefile index 950e82f21640..edb3f6e6ee6a 100644 --- a/arch/m68k/mvme16x/Makefile +++ b/arch/m68k/mvme16x/Makefile | |||
@@ -2,4 +2,4 @@ | |||
2 | # Makefile for Linux arch/m68k/mvme16x source directory | 2 | # Makefile for Linux arch/m68k/mvme16x source directory |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := config.o rtc.o mvme16x_ksyms.o | 5 | obj-y := config.o rtc.o |
diff --git a/arch/m68k/mvme16x/config.c b/arch/m68k/mvme16x/config.c index daa785161401..24cbc3030454 100644 --- a/arch/m68k/mvme16x/config.c +++ b/arch/m68k/mvme16x/config.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/genhd.h> | 25 | #include <linux/genhd.h> |
26 | #include <linux/rtc.h> | 26 | #include <linux/rtc.h> |
27 | #include <linux/interrupt.h> | 27 | #include <linux/interrupt.h> |
28 | #include <linux/module.h> | ||
28 | 29 | ||
29 | #include <asm/bootinfo.h> | 30 | #include <asm/bootinfo.h> |
30 | #include <asm/system.h> | 31 | #include <asm/system.h> |
@@ -58,6 +59,7 @@ static irq_handler_t tick_handler; | |||
58 | 59 | ||
59 | 60 | ||
60 | unsigned short mvme16x_config; | 61 | unsigned short mvme16x_config; |
62 | EXPORT_SYMBOL(mvme16x_config); | ||
61 | 63 | ||
62 | 64 | ||
63 | int mvme16x_parse_bootinfo(const struct bi_record *bi) | 65 | int mvme16x_parse_bootinfo(const struct bi_record *bi) |
diff --git a/arch/m68k/mvme16x/mvme16x_ksyms.c b/arch/m68k/mvme16x/mvme16x_ksyms.c deleted file mode 100644 index 4a8a3634bb47..000000000000 --- a/arch/m68k/mvme16x/mvme16x_ksyms.c +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #include <linux/module.h> | ||
2 | #include <linux/types.h> | ||
3 | #include <asm/ptrace.h> | ||
4 | #include <asm/mvme16xhw.h> | ||
5 | |||
6 | EXPORT_SYMBOL(mvme16x_config); | ||
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index f4b582cbb567..6abbbb8aac5e 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -53,6 +53,10 @@ config GENERIC_CALIBRATE_DELAY | |||
53 | bool | 53 | bool |
54 | default y | 54 | default y |
55 | 55 | ||
56 | config GENERIC_TIME | ||
57 | bool | ||
58 | default y | ||
59 | |||
56 | config TIME_LOW_RES | 60 | config TIME_LOW_RES |
57 | bool | 61 | bool |
58 | default y | 62 | default y |
@@ -707,8 +711,6 @@ source "drivers/Kconfig" | |||
707 | 711 | ||
708 | source "fs/Kconfig" | 712 | source "fs/Kconfig" |
709 | 713 | ||
710 | source "kernel/Kconfig.instrumentation" | ||
711 | |||
712 | source "arch/m68knommu/Kconfig.debug" | 714 | source "arch/m68knommu/Kconfig.debug" |
713 | 715 | ||
714 | source "security/Kconfig" | 716 | source "security/Kconfig" |
diff --git a/arch/m68knommu/Kconfig.debug b/arch/m68knommu/Kconfig.debug index 9ff47bd09aee..ed6d9a83bfdb 100644 --- a/arch/m68knommu/Kconfig.debug +++ b/arch/m68knommu/Kconfig.debug | |||
@@ -21,13 +21,6 @@ config BOOTPARAM_STRING | |||
21 | default 'console=ttyS0,19200' | 21 | default 'console=ttyS0,19200' |
22 | depends on BOOTPARAM | 22 | depends on BOOTPARAM |
23 | 23 | ||
24 | config DUMPTOFLASH | ||
25 | bool "Panic/Dump to FLASH" | ||
26 | depends on COLDFIRE | ||
27 | help | ||
28 | Dump any panic of trap output into a flash memory segment | ||
29 | for later analysis. | ||
30 | |||
31 | config NO_KERNEL_MSG | 24 | config NO_KERNEL_MSG |
32 | bool "Suppress Kernel BUG Messages" | 25 | bool "Suppress Kernel BUG Messages" |
33 | help | 26 | help |
diff --git a/arch/m68knommu/Makefile b/arch/m68knommu/Makefile index 30aa2553693d..e0b5f62e395c 100644 --- a/arch/m68knommu/Makefile +++ b/arch/m68knommu/Makefile | |||
@@ -61,17 +61,17 @@ MODEL := $(model-y) | |||
61 | # for the selected cpu. ONLY need to define this for the non-base member | 61 | # for the selected cpu. ONLY need to define this for the non-base member |
62 | # of the family. | 62 | # of the family. |
63 | # | 63 | # |
64 | cpuclass-$(CONFIG_M5206) := 5307 | 64 | cpuclass-$(CONFIG_M5206) := coldfire |
65 | cpuclass-$(CONFIG_M5206e) := 5307 | 65 | cpuclass-$(CONFIG_M5206e) := coldfire |
66 | cpuclass-$(CONFIG_M520x) := 5307 | 66 | cpuclass-$(CONFIG_M520x) := coldfire |
67 | cpuclass-$(CONFIG_M523x) := 5307 | 67 | cpuclass-$(CONFIG_M523x) := coldfire |
68 | cpuclass-$(CONFIG_M5249) := 5307 | 68 | cpuclass-$(CONFIG_M5249) := coldfire |
69 | cpuclass-$(CONFIG_M527x) := 5307 | 69 | cpuclass-$(CONFIG_M527x) := coldfire |
70 | cpuclass-$(CONFIG_M5272) := 5307 | 70 | cpuclass-$(CONFIG_M5272) := coldfire |
71 | cpuclass-$(CONFIG_M528x) := 5307 | 71 | cpuclass-$(CONFIG_M528x) := coldfire |
72 | cpuclass-$(CONFIG_M5307) := 5307 | 72 | cpuclass-$(CONFIG_M5307) := coldfire |
73 | cpuclass-$(CONFIG_M532x) := 5307 | 73 | cpuclass-$(CONFIG_M532x) := coldfire |
74 | cpuclass-$(CONFIG_M5407) := 5307 | 74 | cpuclass-$(CONFIG_M5407) := coldfire |
75 | cpuclass-$(CONFIG_M68328) := 68328 | 75 | cpuclass-$(CONFIG_M68328) := 68328 |
76 | cpuclass-$(CONFIG_M68EZ328) := 68328 | 76 | cpuclass-$(CONFIG_M68EZ328) := 68328 |
77 | cpuclass-$(CONFIG_M68VZ328) := 68328 | 77 | cpuclass-$(CONFIG_M68VZ328) := 68328 |
diff --git a/arch/m68knommu/defconfig b/arch/m68knommu/defconfig index 5a0ecaaee3b0..648113075f97 100644 --- a/arch/m68knommu/defconfig +++ b/arch/m68knommu/defconfig | |||
@@ -597,7 +597,6 @@ CONFIG_MSDOS_PARTITION=y | |||
597 | # CONFIG_FULLDEBUG is not set | 597 | # CONFIG_FULLDEBUG is not set |
598 | # CONFIG_HIGHPROFILE is not set | 598 | # CONFIG_HIGHPROFILE is not set |
599 | # CONFIG_BOOTPARAM is not set | 599 | # CONFIG_BOOTPARAM is not set |
600 | # CONFIG_DUMPTOFLASH is not set | ||
601 | # CONFIG_NO_KERNEL_MSG is not set | 600 | # CONFIG_NO_KERNEL_MSG is not set |
602 | # CONFIG_BDM_DISABLE is not set | 601 | # CONFIG_BDM_DISABLE is not set |
603 | 602 | ||
diff --git a/arch/m68knommu/kernel/m68k_ksyms.c b/arch/m68knommu/kernel/m68k_ksyms.c index f795062aba1e..53fad1490282 100644 --- a/arch/m68knommu/kernel/m68k_ksyms.c +++ b/arch/m68knommu/kernel/m68k_ksyms.c | |||
@@ -24,14 +24,6 @@ extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); | |||
24 | EXPORT_SYMBOL(__ioremap); | 24 | EXPORT_SYMBOL(__ioremap); |
25 | EXPORT_SYMBOL(iounmap); | 25 | EXPORT_SYMBOL(iounmap); |
26 | EXPORT_SYMBOL(dump_fpu); | 26 | EXPORT_SYMBOL(dump_fpu); |
27 | EXPORT_SYMBOL(strnlen); | ||
28 | EXPORT_SYMBOL(strrchr); | ||
29 | EXPORT_SYMBOL(strstr); | ||
30 | EXPORT_SYMBOL(strchr); | ||
31 | EXPORT_SYMBOL(strcat); | ||
32 | EXPORT_SYMBOL(strlen); | ||
33 | EXPORT_SYMBOL(strcmp); | ||
34 | EXPORT_SYMBOL(strncmp); | ||
35 | 27 | ||
36 | EXPORT_SYMBOL(ip_fast_csum); | 28 | EXPORT_SYMBOL(ip_fast_csum); |
37 | 29 | ||
@@ -46,9 +38,6 @@ EXPORT_SYMBOL(csum_partial_copy_nocheck); | |||
46 | it's OK to leave it out of version control. */ | 38 | it's OK to leave it out of version control. */ |
47 | EXPORT_SYMBOL(memcpy); | 39 | EXPORT_SYMBOL(memcpy); |
48 | EXPORT_SYMBOL(memset); | 40 | EXPORT_SYMBOL(memset); |
49 | EXPORT_SYMBOL(memcmp); | ||
50 | EXPORT_SYMBOL(memscan); | ||
51 | EXPORT_SYMBOL(memmove); | ||
52 | 41 | ||
53 | EXPORT_SYMBOL(__down_failed); | 42 | EXPORT_SYMBOL(__down_failed); |
54 | EXPORT_SYMBOL(__down_failed_interruptible); | 43 | EXPORT_SYMBOL(__down_failed_interruptible); |
diff --git a/arch/m68knommu/kernel/setup.c b/arch/m68knommu/kernel/setup.c index 332345d7675d..81507c53d4a9 100644 --- a/arch/m68knommu/kernel/setup.c +++ b/arch/m68knommu/kernel/setup.c | |||
@@ -64,9 +64,6 @@ void (*mach_power_off)(void); | |||
64 | #ifdef CONFIG_M68VZ328 | 64 | #ifdef CONFIG_M68VZ328 |
65 | #define CPU "MC68VZ328" | 65 | #define CPU "MC68VZ328" |
66 | #endif | 66 | #endif |
67 | #ifdef CONFIG_M68332 | ||
68 | #define CPU "MC68332" | ||
69 | #endif | ||
70 | #ifdef CONFIG_M68360 | 67 | #ifdef CONFIG_M68360 |
71 | #define CPU "MC68360" | 68 | #define CPU "MC68360" |
72 | #endif | 69 | #endif |
diff --git a/arch/m68knommu/kernel/syscalltable.S b/arch/m68knommu/kernel/syscalltable.S index 9620093514bc..1b02b8820068 100644 --- a/arch/m68knommu/kernel/syscalltable.S +++ b/arch/m68knommu/kernel/syscalltable.S | |||
@@ -336,7 +336,7 @@ ENTRY(sys_call_table) | |||
336 | .long sys_epoll_pwait /* 315 */ | 336 | .long sys_epoll_pwait /* 315 */ |
337 | .long sys_utimensat | 337 | .long sys_utimensat |
338 | .long sys_signalfd | 338 | .long sys_signalfd |
339 | .long sys_timerfd | 339 | .long sys_ni_syscall |
340 | .long sys_eventfd | 340 | .long sys_eventfd |
341 | .long sys_fallocate /* 320 */ | 341 | .long sys_fallocate /* 320 */ |
342 | 342 | ||
diff --git a/arch/m68knommu/kernel/time.c b/arch/m68knommu/kernel/time.c index 77e5375a2dd5..89cdbcaeb45f 100644 --- a/arch/m68knommu/kernel/time.c +++ b/arch/m68knommu/kernel/time.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <linux/timex.h> | 22 | #include <linux/timex.h> |
23 | 23 | ||
24 | #include <asm/machdep.h> | 24 | #include <asm/machdep.h> |
25 | #include <asm/io.h> | ||
26 | #include <asm/irq_regs.h> | 25 | #include <asm/irq_regs.h> |
27 | 26 | ||
28 | #define TICK_SIZE (tick_nsec / 1000) | 27 | #define TICK_SIZE (tick_nsec / 1000) |
@@ -66,29 +65,6 @@ irqreturn_t arch_timer_interrupt(int irq, void *dummy) | |||
66 | else | 65 | else |
67 | last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */ | 66 | last_rtc_update = xtime.tv_sec - 600; /* do it again in 60 s */ |
68 | } | 67 | } |
69 | #ifdef CONFIG_HEARTBEAT | ||
70 | /* use power LED as a heartbeat instead -- much more useful | ||
71 | for debugging -- based on the version for PReP by Cort */ | ||
72 | /* acts like an actual heart beat -- ie thump-thump-pause... */ | ||
73 | if (mach_heartbeat) { | ||
74 | static unsigned cnt = 0, period = 0, dist = 0; | ||
75 | |||
76 | if (cnt == 0 || cnt == dist) | ||
77 | mach_heartbeat( 1 ); | ||
78 | else if (cnt == 7 || cnt == dist+7) | ||
79 | mach_heartbeat( 0 ); | ||
80 | |||
81 | if (++cnt > period) { | ||
82 | cnt = 0; | ||
83 | /* The hyperbolic function below modifies the heartbeat period | ||
84 | * length in dependency of the current (5min) load. It goes | ||
85 | * through the points f(0)=126, f(1)=86, f(5)=51, | ||
86 | * f(inf)->30. */ | ||
87 | period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30; | ||
88 | dist = period / 4; | ||
89 | } | ||
90 | } | ||
91 | #endif /* CONFIG_HEARTBEAT */ | ||
92 | 68 | ||
93 | write_sequnlock(&xtime_lock); | 69 | write_sequnlock(&xtime_lock); |
94 | return(IRQ_HANDLED); | 70 | return(IRQ_HANDLED); |
@@ -112,60 +88,3 @@ void time_init(void) | |||
112 | hw_timer_init(); | 88 | hw_timer_init(); |
113 | } | 89 | } |
114 | 90 | ||
115 | /* | ||
116 | * This version of gettimeofday has near microsecond resolution. | ||
117 | */ | ||
118 | void do_gettimeofday(struct timeval *tv) | ||
119 | { | ||
120 | unsigned long flags; | ||
121 | unsigned long seq; | ||
122 | unsigned long usec, sec; | ||
123 | |||
124 | do { | ||
125 | seq = read_seqbegin_irqsave(&xtime_lock, flags); | ||
126 | usec = hw_timer_offset(); | ||
127 | sec = xtime.tv_sec; | ||
128 | usec += (xtime.tv_nsec / 1000); | ||
129 | } while (read_seqretry_irqrestore(&xtime_lock, seq, flags)); | ||
130 | |||
131 | while (usec >= 1000000) { | ||
132 | usec -= 1000000; | ||
133 | sec++; | ||
134 | } | ||
135 | |||
136 | tv->tv_sec = sec; | ||
137 | tv->tv_usec = usec; | ||
138 | } | ||
139 | |||
140 | EXPORT_SYMBOL(do_gettimeofday); | ||
141 | |||
142 | int do_settimeofday(struct timespec *tv) | ||
143 | { | ||
144 | time_t wtm_sec, sec = tv->tv_sec; | ||
145 | long wtm_nsec, nsec = tv->tv_nsec; | ||
146 | |||
147 | if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC) | ||
148 | return -EINVAL; | ||
149 | |||
150 | write_seqlock_irq(&xtime_lock); | ||
151 | /* | ||
152 | * This is revolting. We need to set the xtime.tv_usec | ||
153 | * correctly. However, the value in this location is | ||
154 | * is value at the last tick. | ||
155 | * Discover what correction gettimeofday | ||
156 | * would have done, and then undo it! | ||
157 | */ | ||
158 | nsec -= (hw_timer_offset() * 1000); | ||
159 | |||
160 | wtm_sec = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec); | ||
161 | wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec); | ||
162 | |||
163 | set_normalized_timespec(&xtime, sec, nsec); | ||
164 | set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec); | ||
165 | |||
166 | ntp_clear(); | ||
167 | write_sequnlock_irq(&xtime_lock); | ||
168 | clock_was_set(); | ||
169 | return 0; | ||
170 | } | ||
171 | EXPORT_SYMBOL(do_settimeofday); | ||
diff --git a/arch/m68knommu/platform/5206/config.c b/arch/m68knommu/platform/5206/config.c index b3c4dd4cc135..53a5920c2b71 100644 --- a/arch/m68knommu/platform/5206/config.c +++ b/arch/m68knommu/platform/5206/config.c | |||
@@ -13,12 +13,11 @@ | |||
13 | #include <linux/param.h> | 13 | #include <linux/param.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
16 | #include <asm/dma.h> | 16 | #include <linux/io.h> |
17 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
18 | #include <asm/coldfire.h> | 18 | #include <asm/coldfire.h> |
19 | #include <asm/mcftimer.h> | ||
20 | #include <asm/mcfsim.h> | 19 | #include <asm/mcfsim.h> |
21 | #include <asm/mcfdma.h> | 20 | #include <asm/mcfuart.h> |
22 | 21 | ||
23 | /***************************************************************************/ | 22 | /***************************************************************************/ |
24 | 23 | ||
@@ -26,15 +25,51 @@ void coldfire_reset(void); | |||
26 | 25 | ||
27 | /***************************************************************************/ | 26 | /***************************************************************************/ |
28 | 27 | ||
29 | /* | 28 | static struct mcf_platform_uart m5206_uart_platform[] = { |
30 | * DMA channel base address table. | 29 | { |
31 | */ | 30 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
32 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 31 | .irq = 73, |
33 | MCF_MBAR + MCFDMA_BASE0, | 32 | }, |
34 | MCF_MBAR + MCFDMA_BASE1, | 33 | { |
34 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
35 | .irq = 74, | ||
36 | }, | ||
37 | { }, | ||
38 | }; | ||
39 | |||
40 | static struct platform_device m5206_uart = { | ||
41 | .name = "mcfuart", | ||
42 | .id = 0, | ||
43 | .dev.platform_data = m5206_uart_platform, | ||
44 | }; | ||
45 | |||
46 | static struct platform_device *m5206_devices[] __initdata = { | ||
47 | &m5206_uart, | ||
35 | }; | 48 | }; |
36 | 49 | ||
37 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 50 | /***************************************************************************/ |
51 | |||
52 | static void __init m5206_uart_init_line(int line, int irq) | ||
53 | { | ||
54 | if (line == 0) { | ||
55 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR); | ||
56 | writeb(irq, MCFUART_BASE1 + MCFUART_UIVR); | ||
57 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1); | ||
58 | } else if (line == 1) { | ||
59 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR); | ||
60 | writeb(irq, MCFUART_BASE2 + MCFUART_UIVR); | ||
61 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2); | ||
62 | } | ||
63 | } | ||
64 | |||
65 | static void __init m5206_uarts_init(void) | ||
66 | { | ||
67 | const int nrlines = ARRAY_SIZE(m5206_uart_platform); | ||
68 | int line; | ||
69 | |||
70 | for (line = 0; (line < nrlines); line++) | ||
71 | m5206_uart_init_line(line, m5206_uart_platform[line].irq); | ||
72 | } | ||
38 | 73 | ||
39 | /***************************************************************************/ | 74 | /***************************************************************************/ |
40 | 75 | ||
@@ -74,24 +109,21 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
74 | 109 | ||
75 | /***************************************************************************/ | 110 | /***************************************************************************/ |
76 | 111 | ||
77 | int mcf_timerirqpending(int timer) | 112 | void __init config_BSP(char *commandp, int size) |
78 | { | 113 | { |
79 | unsigned int imr = 0; | 114 | mcf_setimr(MCFSIM_IMR_MASKALL); |
80 | 115 | mach_reset = coldfire_reset; | |
81 | switch (timer) { | ||
82 | case 1: imr = MCFSIM_IMR_TIMER1; break; | ||
83 | case 2: imr = MCFSIM_IMR_TIMER2; break; | ||
84 | default: break; | ||
85 | } | ||
86 | return (mcf_getipr() & imr); | ||
87 | } | 116 | } |
88 | 117 | ||
89 | /***************************************************************************/ | 118 | /***************************************************************************/ |
90 | 119 | ||
91 | void config_BSP(char *commandp, int size) | 120 | static int __init init_BSP(void) |
92 | { | 121 | { |
93 | mcf_setimr(MCFSIM_IMR_MASKALL); | 122 | m5206_uarts_init(); |
94 | mach_reset = coldfire_reset; | 123 | platform_add_devices(m5206_devices, ARRAY_SIZE(m5206_devices)); |
124 | return 0; | ||
95 | } | 125 | } |
96 | 126 | ||
127 | arch_initcall(init_BSP); | ||
128 | |||
97 | /***************************************************************************/ | 129 | /***************************************************************************/ |
diff --git a/arch/m68knommu/platform/5206e/config.c b/arch/m68knommu/platform/5206e/config.c index f84a4aea8cb6..a6692e958f6b 100644 --- a/arch/m68knommu/platform/5206e/config.c +++ b/arch/m68knommu/platform/5206e/config.c | |||
@@ -10,8 +10,9 @@ | |||
10 | 10 | ||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/param.h> | 12 | #include <linux/param.h> |
13 | #include <linux/init.h> | ||
13 | #include <linux/interrupt.h> | 14 | #include <linux/interrupt.h> |
14 | #include <asm/dma.h> | 15 | #include <linux/io.h> |
15 | #include <asm/machdep.h> | 16 | #include <asm/machdep.h> |
16 | #include <asm/coldfire.h> | 17 | #include <asm/coldfire.h> |
17 | #include <asm/mcfsim.h> | 18 | #include <asm/mcfsim.h> |
@@ -23,15 +24,51 @@ void coldfire_reset(void); | |||
23 | 24 | ||
24 | /***************************************************************************/ | 25 | /***************************************************************************/ |
25 | 26 | ||
26 | /* | 27 | static struct mcf_platform_uart m5206e_uart_platform[] = { |
27 | * DMA channel base address table. | 28 | { |
28 | */ | 29 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
29 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 30 | .irq = 73, |
30 | MCF_MBAR + MCFDMA_BASE0, | 31 | }, |
31 | MCF_MBAR + MCFDMA_BASE1, | 32 | { |
33 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
34 | .irq = 74, | ||
35 | }, | ||
36 | { }, | ||
37 | }; | ||
38 | |||
39 | static struct platform_device m5206e_uart = { | ||
40 | .name = "mcfuart", | ||
41 | .id = 0, | ||
42 | .dev.platform_data = m5206e_uart_platform, | ||
32 | }; | 43 | }; |
33 | 44 | ||
34 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 45 | static struct platform_device *m5206e_devices[] __initdata = { |
46 | &m5206e_uart, | ||
47 | }; | ||
48 | |||
49 | /***************************************************************************/ | ||
50 | |||
51 | static void __init m5206_uart_init_line(int line, int irq) | ||
52 | { | ||
53 | if (line == 0) { | ||
54 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR); | ||
55 | writeb(irq, MCFUART_BASE1 + MCFUART_UIVR); | ||
56 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1); | ||
57 | } else if (line == 1) { | ||
58 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR); | ||
59 | writeb(irq, MCFUART_BASE2 + MCFUART_UIVR); | ||
60 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2); | ||
61 | } | ||
62 | } | ||
63 | |||
64 | static void __init m5206e_uarts_init(void) | ||
65 | { | ||
66 | const int nrlines = ARRAY_SIZE(m5206e_uart_platform); | ||
67 | int line; | ||
68 | |||
69 | for (line = 0; (line < nrlines); line++) | ||
70 | m5206e_uart_init_line(line, m5206e_uart_platform[line].irq); | ||
71 | } | ||
35 | 72 | ||
36 | /***************************************************************************/ | 73 | /***************************************************************************/ |
37 | 74 | ||
@@ -71,21 +108,7 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
71 | 108 | ||
72 | /***************************************************************************/ | 109 | /***************************************************************************/ |
73 | 110 | ||
74 | int mcf_timerirqpending(int timer) | 111 | void __init config_BSP(char *commandp, int size) |
75 | { | ||
76 | unsigned int imr = 0; | ||
77 | |||
78 | switch (timer) { | ||
79 | case 1: imr = MCFSIM_IMR_TIMER1; break; | ||
80 | case 2: imr = MCFSIM_IMR_TIMER2; break; | ||
81 | default: break; | ||
82 | } | ||
83 | return (mcf_getipr() & imr); | ||
84 | } | ||
85 | |||
86 | /***************************************************************************/ | ||
87 | |||
88 | void config_BSP(char *commandp, int size) | ||
89 | { | 112 | { |
90 | mcf_setimr(MCFSIM_IMR_MASKALL); | 113 | mcf_setimr(MCFSIM_IMR_MASKALL); |
91 | 114 | ||
@@ -99,3 +122,14 @@ void config_BSP(char *commandp, int size) | |||
99 | } | 122 | } |
100 | 123 | ||
101 | /***************************************************************************/ | 124 | /***************************************************************************/ |
125 | |||
126 | static int __init init_BSP(void) | ||
127 | { | ||
128 | m5206e_uarts_init(); | ||
129 | platform_add_devices(m5206e_devices, ARRAY_SIZE(m5206e_devices)); | ||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | arch_initcall(init_BSP); | ||
134 | |||
135 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/520x/config.c b/arch/m68knommu/platform/520x/config.c index 6edbd41261cc..06d887cdcbfb 100644 --- a/arch/m68knommu/platform/520x/config.c +++ b/arch/m68knommu/platform/520x/config.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 2005, Freescale (www.freescale.com) | 6 | * Copyright (C) 2005, Freescale (www.freescale.com) |
7 | * Copyright (C) 2005, Intec Automation (mike@steroidmicros.com) | 7 | * Copyright (C) 2005, Intec Automation (mike@steroidmicros.com) |
8 | * Copyright (C) 1999-2003, Greg Ungerer (gerg@snapgear.com) | 8 | * Copyright (C) 1999-2007, Greg Ungerer (gerg@snapgear.com) |
9 | * Copyright (C) 2001-2003, SnapGear Inc. (www.snapgear.com) | 9 | * Copyright (C) 2001-2003, SnapGear Inc. (www.snapgear.com) |
10 | */ | 10 | */ |
11 | 11 | ||
@@ -13,21 +13,93 @@ | |||
13 | 13 | ||
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include <linux/param.h> | 15 | #include <linux/param.h> |
16 | #include <linux/init.h> | ||
16 | #include <linux/interrupt.h> | 17 | #include <linux/interrupt.h> |
18 | #include <linux/io.h> | ||
17 | #include <asm/machdep.h> | 19 | #include <asm/machdep.h> |
18 | #include <asm/dma.h> | 20 | #include <asm/coldfire.h> |
21 | #include <asm/mcfsim.h> | ||
22 | #include <asm/mcfuart.h> | ||
19 | 23 | ||
20 | /***************************************************************************/ | 24 | /***************************************************************************/ |
21 | 25 | ||
22 | /* | 26 | void coldfire_reset(void); |
23 | * DMA channel base address table. | ||
24 | */ | ||
25 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS]; | ||
26 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | ||
27 | 27 | ||
28 | /***************************************************************************/ | 28 | /***************************************************************************/ |
29 | 29 | ||
30 | void coldfire_reset(void); | 30 | static struct mcf_platform_uart m520x_uart_platform[] = { |
31 | { | ||
32 | .mapbase = MCF_MBAR + MCFUART_BASE1, | ||
33 | .irq = MCFINT_VECBASE + MCFINT_UART0, | ||
34 | }, | ||
35 | { | ||
36 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
37 | .irq = MCFINT_VECBASE + MCFINT_UART1, | ||
38 | }, | ||
39 | { | ||
40 | .mapbase = MCF_MBAR + MCFUART_BASE3, | ||
41 | .irq = MCFINT_VECBASE + MCFINT_UART2, | ||
42 | }, | ||
43 | { }, | ||
44 | }; | ||
45 | |||
46 | static struct platform_device m520x_uart = { | ||
47 | .name = "mcfuart", | ||
48 | .id = 0, | ||
49 | .dev.platform_data = m520x_uart_platform, | ||
50 | }; | ||
51 | |||
52 | static struct platform_device *m520x_devices[] __initdata = { | ||
53 | &m520x_uart, | ||
54 | }; | ||
55 | |||
56 | /***************************************************************************/ | ||
57 | |||
58 | #define INTC0 (MCF_MBAR + MCFICM_INTC0) | ||
59 | |||
60 | static void __init m520x_uart_init_line(int line, int irq) | ||
61 | { | ||
62 | u32 imr; | ||
63 | u16 par; | ||
64 | u8 par2; | ||
65 | |||
66 | writeb(0x03, INTC0 + MCFINTC_ICR0 + MCFINT_UART0 + line); | ||
67 | |||
68 | imr = readl(INTC0 + MCFINTC_IMRL); | ||
69 | imr &= ~((1 << (irq - MCFINT_VECBASE)) | 1); | ||
70 | writel(imr, INTC0 + MCFINTC_IMRL); | ||
71 | |||
72 | switch (line) { | ||
73 | case 0: | ||
74 | par = readw(MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
75 | par |= MCF_GPIO_PAR_UART_PAR_UTXD0 | | ||
76 | MCF_GPIO_PAR_UART_PAR_URXD0; | ||
77 | writew(par, MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
78 | break; | ||
79 | case 1: | ||
80 | par = readw(MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
81 | par |= MCF_GPIO_PAR_UART_PAR_UTXD1 | | ||
82 | MCF_GPIO_PAR_UART_PAR_URXD1; | ||
83 | writew(par, MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
84 | break; | ||
85 | case 2: | ||
86 | par2 = readb(MCF_IPSBAR + MCF_GPIO_PAR_FECI2C); | ||
87 | par2 &= ~0x0F; | ||
88 | par2 |= MCF_GPIO_PAR_FECI2C_PAR_SCL_UTXD2 | | ||
89 | MCF_GPIO_PAR_FECI2C_PAR_SDA_URXD2; | ||
90 | writeb(par2, MCF_IPSBAR + MCF_GPIO_PAR_FECI2C); | ||
91 | break; | ||
92 | } | ||
93 | } | ||
94 | |||
95 | static void __init m520x_uarts_init(void) | ||
96 | { | ||
97 | const int nrlines = ARRAY_SIZE(m520x_uart_platform); | ||
98 | int line; | ||
99 | |||
100 | for (line = 0; (line < nrlines); line++) | ||
101 | m520x_uart_init_line(line, m520x_uart_platform[line].irq); | ||
102 | } | ||
31 | 103 | ||
32 | /***************************************************************************/ | 104 | /***************************************************************************/ |
33 | 105 | ||
@@ -42,9 +114,20 @@ void mcf_autovector(unsigned int vec) | |||
42 | 114 | ||
43 | /***************************************************************************/ | 115 | /***************************************************************************/ |
44 | 116 | ||
45 | void config_BSP(char *commandp, int size) | 117 | void __init config_BSP(char *commandp, int size) |
46 | { | 118 | { |
47 | mach_reset = coldfire_reset; | 119 | mach_reset = coldfire_reset; |
120 | m520x_uarts_init(); | ||
48 | } | 121 | } |
49 | 122 | ||
50 | /***************************************************************************/ | 123 | /***************************************************************************/ |
124 | |||
125 | static int __init init_BSP(void) | ||
126 | { | ||
127 | platform_add_devices(m520x_devices, ARRAY_SIZE(m520x_devices)); | ||
128 | return 0; | ||
129 | } | ||
130 | |||
131 | arch_initcall(init_BSP); | ||
132 | |||
133 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/523x/config.c b/arch/m68knommu/platform/523x/config.c index e7f80c8e8636..13f02611ea23 100644 --- a/arch/m68knommu/platform/523x/config.c +++ b/arch/m68knommu/platform/523x/config.c | |||
@@ -16,11 +16,11 @@ | |||
16 | #include <linux/param.h> | 16 | #include <linux/param.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/interrupt.h> | 18 | #include <linux/interrupt.h> |
19 | #include <asm/dma.h> | 19 | #include <linux/io.h> |
20 | #include <asm/machdep.h> | 20 | #include <asm/machdep.h> |
21 | #include <asm/coldfire.h> | 21 | #include <asm/coldfire.h> |
22 | #include <asm/mcfsim.h> | 22 | #include <asm/mcfsim.h> |
23 | #include <asm/mcfdma.h> | 23 | #include <asm/mcfuart.h> |
24 | 24 | ||
25 | /***************************************************************************/ | 25 | /***************************************************************************/ |
26 | 26 | ||
@@ -28,14 +28,58 @@ void coldfire_reset(void); | |||
28 | 28 | ||
29 | /***************************************************************************/ | 29 | /***************************************************************************/ |
30 | 30 | ||
31 | /* | 31 | static struct mcf_platform_uart m523x_uart_platform[] = { |
32 | * DMA channel base address table. | 32 | { |
33 | */ | 33 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
34 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 34 | .irq = MCFINT_VECBASE + MCFINT_UART0, |
35 | MCF_MBAR + MCFDMA_BASE0, | 35 | }, |
36 | { | ||
37 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
38 | .irq = MCFINT_VECBASE + MCFINT_UART0 + 1, | ||
39 | }, | ||
40 | { | ||
41 | .mapbase = MCF_MBAR + MCFUART_BASE3, | ||
42 | .irq = MCFINT_VECBASE + MCFINT_UART0 + 2, | ||
43 | }, | ||
44 | { }, | ||
45 | }; | ||
46 | |||
47 | static struct platform_device m523x_uart = { | ||
48 | .name = "mcfuart", | ||
49 | .id = 0, | ||
50 | .dev.platform_data = m523x_uart_platform, | ||
51 | }; | ||
52 | |||
53 | static struct platform_device *m523x_devices[] __initdata = { | ||
54 | &m523x_uart, | ||
36 | }; | 55 | }; |
37 | 56 | ||
38 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 57 | /***************************************************************************/ |
58 | |||
59 | #define INTC0 (MCF_MBAR + MCFICM_INTC0) | ||
60 | |||
61 | static void __init m523x_uart_init_line(int line, int irq) | ||
62 | { | ||
63 | u32 imr; | ||
64 | |||
65 | if ((line < 0) || (line > 2)) | ||
66 | return; | ||
67 | |||
68 | writeb(0x30+line, (INTC0 + MCFINTC_ICR0 + MCFINT_UART0 + line)); | ||
69 | |||
70 | imr = readl(INTC0 + MCFINTC_IMRL); | ||
71 | imr &= ~((1 << (irq - MCFINT_VECBASE)) | 1); | ||
72 | writel(imr, INTC0 + MCFINTC_IMRL); | ||
73 | } | ||
74 | |||
75 | static void __init m523x_uarts_init(void) | ||
76 | { | ||
77 | const int nrlines = ARRAY_SIZE(m523x_uart_platform); | ||
78 | int line; | ||
79 | |||
80 | for (line = 0; (line < nrlines); line++) | ||
81 | m523x_uart_init_line(line, m523x_uart_platform[line].irq); | ||
82 | } | ||
39 | 83 | ||
40 | /***************************************************************************/ | 84 | /***************************************************************************/ |
41 | 85 | ||
@@ -49,15 +93,26 @@ void mcf_disableall(void) | |||
49 | 93 | ||
50 | void mcf_autovector(unsigned int vec) | 94 | void mcf_autovector(unsigned int vec) |
51 | { | 95 | { |
52 | /* Everything is auto-vectored on the 5272 */ | 96 | /* Everything is auto-vectored on the 523x */ |
53 | } | 97 | } |
54 | 98 | ||
55 | /***************************************************************************/ | 99 | /***************************************************************************/ |
56 | 100 | ||
57 | void config_BSP(char *commandp, int size) | 101 | void __init config_BSP(char *commandp, int size) |
58 | { | 102 | { |
59 | mcf_disableall(); | 103 | mcf_disableall(); |
60 | mach_reset = coldfire_reset; | 104 | mach_reset = coldfire_reset; |
105 | m523x_uarts_init(); | ||
61 | } | 106 | } |
62 | 107 | ||
63 | /***************************************************************************/ | 108 | /***************************************************************************/ |
109 | |||
110 | static int __init init_BSP(void) | ||
111 | { | ||
112 | platform_add_devices(m523x_devices, ARRAY_SIZE(m523x_devices)); | ||
113 | return 0; | ||
114 | } | ||
115 | |||
116 | arch_initcall(init_BSP); | ||
117 | |||
118 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/5249/config.c b/arch/m68knommu/platform/5249/config.c index d4d39435cb15..d299f7b8768a 100644 --- a/arch/m68knommu/platform/5249/config.c +++ b/arch/m68knommu/platform/5249/config.c | |||
@@ -12,11 +12,11 @@ | |||
12 | #include <linux/param.h> | 12 | #include <linux/param.h> |
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/interrupt.h> | 14 | #include <linux/interrupt.h> |
15 | #include <asm/dma.h> | 15 | #include <linux/io.h> |
16 | #include <asm/machdep.h> | 16 | #include <asm/machdep.h> |
17 | #include <asm/coldfire.h> | 17 | #include <asm/coldfire.h> |
18 | #include <asm/mcfsim.h> | 18 | #include <asm/mcfsim.h> |
19 | #include <asm/mcfdma.h> | 19 | #include <asm/mcfuart.h> |
20 | 20 | ||
21 | /***************************************************************************/ | 21 | /***************************************************************************/ |
22 | 22 | ||
@@ -24,17 +24,51 @@ void coldfire_reset(void); | |||
24 | 24 | ||
25 | /***************************************************************************/ | 25 | /***************************************************************************/ |
26 | 26 | ||
27 | /* | 27 | static struct mcf_platform_uart m5249_uart_platform[] = { |
28 | * DMA channel base address table. | 28 | { |
29 | */ | 29 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
30 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 30 | .irq = 73, |
31 | MCF_MBAR + MCFDMA_BASE0, | 31 | }, |
32 | MCF_MBAR + MCFDMA_BASE1, | 32 | { |
33 | MCF_MBAR + MCFDMA_BASE2, | 33 | .mapbase = MCF_MBAR + MCFUART_BASE2, |
34 | MCF_MBAR + MCFDMA_BASE3, | 34 | .irq = 74, |
35 | } | ||
36 | }; | ||
37 | |||
38 | static struct platform_device m5249_uart = { | ||
39 | .name = "mcfuart", | ||
40 | .id = 0, | ||
41 | .dev.platform_data = m5249_uart_platform, | ||
42 | }; | ||
43 | |||
44 | static struct platform_device *m5249_devices[] __initdata = { | ||
45 | &m5249_uart, | ||
35 | }; | 46 | }; |
36 | 47 | ||
37 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 48 | /***************************************************************************/ |
49 | |||
50 | static void __init m5249_uart_init_line(int line, int irq) | ||
51 | { | ||
52 | if (line == 0) { | ||
53 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR); | ||
54 | writeb(irq, MCFUART_BASE1 + MCFUART_UIVR); | ||
55 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1); | ||
56 | } else if (line == 1) { | ||
57 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR); | ||
58 | writeb(irq, MCFUART_BASE2 + MCFUART_UIVR); | ||
59 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2); | ||
60 | } | ||
61 | } | ||
62 | |||
63 | static void __init m5249_uarts_init(void) | ||
64 | { | ||
65 | const int nrlines = ARRAY_SIZE(m5249_uart_platform); | ||
66 | int line; | ||
67 | |||
68 | for (line = 0; (line < nrlines); line++) | ||
69 | m5249_uart_init_line(line, m5249_uart_platform[line].irq); | ||
70 | } | ||
71 | |||
38 | 72 | ||
39 | /***************************************************************************/ | 73 | /***************************************************************************/ |
40 | 74 | ||
@@ -71,24 +105,21 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
71 | 105 | ||
72 | /***************************************************************************/ | 106 | /***************************************************************************/ |
73 | 107 | ||
74 | int mcf_timerirqpending(int timer) | 108 | void __init config_BSP(char *commandp, int size) |
75 | { | 109 | { |
76 | unsigned int imr = 0; | 110 | mcf_setimr(MCFSIM_IMR_MASKALL); |
77 | 111 | mach_reset = coldfire_reset; | |
78 | switch (timer) { | ||
79 | case 1: imr = MCFSIM_IMR_TIMER1; break; | ||
80 | case 2: imr = MCFSIM_IMR_TIMER2; break; | ||
81 | default: break; | ||
82 | } | ||
83 | return (mcf_getipr() & imr); | ||
84 | } | 112 | } |
85 | 113 | ||
86 | /***************************************************************************/ | 114 | /***************************************************************************/ |
87 | 115 | ||
88 | void config_BSP(char *commandp, int size) | 116 | static int __init init_BSP(void) |
89 | { | 117 | { |
90 | mcf_setimr(MCFSIM_IMR_MASKALL); | 118 | m5249_uarts_init(); |
91 | mach_reset = coldfire_reset; | 119 | platform_add_devices(m5249_devices, ARRAY_SIZE(m5249_devices)); |
120 | return 0; | ||
92 | } | 121 | } |
93 | 122 | ||
123 | arch_initcall(init_BSP); | ||
124 | |||
94 | /***************************************************************************/ | 125 | /***************************************************************************/ |
diff --git a/arch/m68knommu/platform/5272/config.c b/arch/m68knommu/platform/5272/config.c index 634a6375e4a5..2aca599a1ca7 100644 --- a/arch/m68knommu/platform/5272/config.c +++ b/arch/m68knommu/platform/5272/config.c | |||
@@ -13,11 +13,11 @@ | |||
13 | #include <linux/param.h> | 13 | #include <linux/param.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
16 | #include <asm/dma.h> | 16 | #include <linux/io.h> |
17 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
18 | #include <asm/coldfire.h> | 18 | #include <asm/coldfire.h> |
19 | #include <asm/mcfsim.h> | 19 | #include <asm/mcfsim.h> |
20 | #include <asm/mcfdma.h> | 20 | #include <asm/mcfuart.h> |
21 | 21 | ||
22 | /***************************************************************************/ | 22 | /***************************************************************************/ |
23 | 23 | ||
@@ -37,14 +37,57 @@ unsigned char ledbank = 0xff; | |||
37 | 37 | ||
38 | /***************************************************************************/ | 38 | /***************************************************************************/ |
39 | 39 | ||
40 | /* | 40 | static struct mcf_platform_uart m5272_uart_platform[] = { |
41 | * DMA channel base address table. | 41 | { |
42 | */ | 42 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
43 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 43 | .irq = 73, |
44 | MCF_MBAR + MCFDMA_BASE0, | 44 | }, |
45 | { | ||
46 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
47 | .irq = 74, | ||
48 | }, | ||
49 | { }, | ||
45 | }; | 50 | }; |
46 | 51 | ||
47 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 52 | static struct platform_device m5272_uart = { |
53 | .name = "mcfuart", | ||
54 | .id = 0, | ||
55 | .dev.platform_data = m5272_uart_platform, | ||
56 | }; | ||
57 | |||
58 | static struct platform_device *m5272_devices[] __initdata = { | ||
59 | &m5272_uart, | ||
60 | }; | ||
61 | |||
62 | /***************************************************************************/ | ||
63 | |||
64 | static void __init m5272_uart_init_line(int line, int irq) | ||
65 | { | ||
66 | u32 v; | ||
67 | |||
68 | if ((line >= 0) && (line < 2)) { | ||
69 | v = (line) ? 0x0e000000 : 0xe0000000; | ||
70 | writel(v, MCF_MBAR + MCFSIM_ICR2); | ||
71 | |||
72 | /* Enable the output lines for the serial ports */ | ||
73 | v = readl(MCF_MBAR + MCFSIM_PBCNT); | ||
74 | v = (v & ~0x000000ff) | 0x00000055; | ||
75 | writel(v, MCF_MBAR + MCFSIM_PBCNT); | ||
76 | |||
77 | v = readl(MCF_MBAR + MCFSIM_PDCNT); | ||
78 | v = (v & ~0x000003fc) | 0x000002a8; | ||
79 | writel(v, MCF_MBAR + MCFSIM_PDCNT); | ||
80 | } | ||
81 | } | ||
82 | |||
83 | static void __init m5272_uarts_init(void) | ||
84 | { | ||
85 | const int nrlines = ARRAY_SIZE(m5272_uart_platform); | ||
86 | int line; | ||
87 | |||
88 | for (line = 0; (line < nrlines); line++) | ||
89 | m5272_uart_init_line(line, m5272_uart_platform[line].irq); | ||
90 | } | ||
48 | 91 | ||
49 | /***************************************************************************/ | 92 | /***************************************************************************/ |
50 | 93 | ||
@@ -80,20 +123,7 @@ void mcf_settimericr(int timer, int level) | |||
80 | 123 | ||
81 | /***************************************************************************/ | 124 | /***************************************************************************/ |
82 | 125 | ||
83 | int mcf_timerirqpending(int timer) | 126 | void __init config_BSP(char *commandp, int size) |
84 | { | ||
85 | volatile unsigned long *icrp; | ||
86 | |||
87 | if ((timer >= 1 ) && (timer <= 4)) { | ||
88 | icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1); | ||
89 | return (*icrp & (0x8 << ((4 - timer) * 4))); | ||
90 | } | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | /***************************************************************************/ | ||
95 | |||
96 | void config_BSP(char *commandp, int size) | ||
97 | { | 127 | { |
98 | #if defined (CONFIG_MOD5272) | 128 | #if defined (CONFIG_MOD5272) |
99 | volatile unsigned char *pivrp; | 129 | volatile unsigned char *pivrp; |
@@ -125,3 +155,14 @@ void config_BSP(char *commandp, int size) | |||
125 | } | 155 | } |
126 | 156 | ||
127 | /***************************************************************************/ | 157 | /***************************************************************************/ |
158 | |||
159 | static int __init init_BSP(void) | ||
160 | { | ||
161 | m5272_uarts_init(); | ||
162 | platform_add_devices(m5272_devices, ARRAY_SIZE(m5272_devices)); | ||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | arch_initcall(init_BSP); | ||
167 | |||
168 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/527x/config.c b/arch/m68knommu/platform/527x/config.c index 9cbfbc68ae4f..73cd1aef4a90 100644 --- a/arch/m68knommu/platform/527x/config.c +++ b/arch/m68knommu/platform/527x/config.c | |||
@@ -16,11 +16,11 @@ | |||
16 | #include <linux/param.h> | 16 | #include <linux/param.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/interrupt.h> | 18 | #include <linux/interrupt.h> |
19 | #include <asm/dma.h> | 19 | #include <linux/io.h> |
20 | #include <asm/machdep.h> | 20 | #include <asm/machdep.h> |
21 | #include <asm/coldfire.h> | 21 | #include <asm/coldfire.h> |
22 | #include <asm/mcfsim.h> | 22 | #include <asm/mcfsim.h> |
23 | #include <asm/mcfdma.h> | 23 | #include <asm/mcfuart.h> |
24 | 24 | ||
25 | /***************************************************************************/ | 25 | /***************************************************************************/ |
26 | 26 | ||
@@ -28,14 +28,72 @@ void coldfire_reset(void); | |||
28 | 28 | ||
29 | /***************************************************************************/ | 29 | /***************************************************************************/ |
30 | 30 | ||
31 | /* | 31 | static struct mcf_platform_uart m527x_uart_platform[] = { |
32 | * DMA channel base address table. | 32 | { |
33 | */ | 33 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
34 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 34 | .irq = MCFINT_VECBASE + MCFINT_UART0, |
35 | MCF_MBAR + MCFDMA_BASE0, | 35 | }, |
36 | { | ||
37 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
38 | .irq = MCFINT_VECBASE + MCFINT_UART1, | ||
39 | }, | ||
40 | { | ||
41 | .mapbase = MCF_MBAR + MCFUART_BASE3, | ||
42 | .irq = MCFINT_VECBASE + MCFINT_UART2, | ||
43 | }, | ||
44 | { }, | ||
36 | }; | 45 | }; |
37 | 46 | ||
38 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 47 | static struct platform_device m527x_uart = { |
48 | .name = "mcfuart", | ||
49 | .id = 0, | ||
50 | .dev.platform_data = m527x_uart_platform, | ||
51 | }; | ||
52 | |||
53 | static struct platform_device *m527x_devices[] __initdata = { | ||
54 | &m527x_uart, | ||
55 | }; | ||
56 | |||
57 | /***************************************************************************/ | ||
58 | |||
59 | #define INTC0 (MCF_MBAR + MCFICM_INTC0) | ||
60 | |||
61 | static void __init m527x_uart_init_line(int line, int irq) | ||
62 | { | ||
63 | u16 sepmask; | ||
64 | u32 imr; | ||
65 | |||
66 | if ((line < 0) || (line > 2)) | ||
67 | return; | ||
68 | |||
69 | /* level 6, line based priority */ | ||
70 | writeb(0x30+line, INTC0 + MCFINTC_ICR0 + MCFINT_UART0 + line); | ||
71 | |||
72 | imr = readl(INTC0 + MCFINTC_IMRL); | ||
73 | imr &= ~((1 << (irq - MCFINT_VECBASE)) | 1); | ||
74 | writel(imr, INTC0 + MCFINTC_IMRL); | ||
75 | |||
76 | /* | ||
77 | * External Pin Mask Setting & Enable External Pin for Interface | ||
78 | */ | ||
79 | sepmask = readw(MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
80 | if (line == 0) | ||
81 | sepmask |= UART0_ENABLE_MASK; | ||
82 | else if (line == 1) | ||
83 | sepmask |= UART1_ENABLE_MASK; | ||
84 | else if (line == 2) | ||
85 | sepmask |= UART2_ENABLE_MASK; | ||
86 | writew(sepmask, MCF_IPSBAR + MCF_GPIO_PAR_UART); | ||
87 | } | ||
88 | |||
89 | static void __init m527x_uarts_init(void) | ||
90 | { | ||
91 | const int nrlines = ARRAY_SIZE(m527x_uart_platform); | ||
92 | int line; | ||
93 | |||
94 | for (line = 0; (line < nrlines); line++) | ||
95 | m527x_uart_init_line(line, m527x_uart_platform[line].irq); | ||
96 | } | ||
39 | 97 | ||
40 | /***************************************************************************/ | 98 | /***************************************************************************/ |
41 | 99 | ||
@@ -54,10 +112,21 @@ void mcf_autovector(unsigned int vec) | |||
54 | 112 | ||
55 | /***************************************************************************/ | 113 | /***************************************************************************/ |
56 | 114 | ||
57 | void config_BSP(char *commandp, int size) | 115 | void __init config_BSP(char *commandp, int size) |
58 | { | 116 | { |
59 | mcf_disableall(); | 117 | mcf_disableall(); |
60 | mach_reset = coldfire_reset; | 118 | mach_reset = coldfire_reset; |
61 | } | 119 | } |
62 | 120 | ||
63 | /***************************************************************************/ | 121 | /***************************************************************************/ |
122 | |||
123 | static int __init init_BSP(void) | ||
124 | { | ||
125 | m527x_uarts_init(); | ||
126 | platform_add_devices(m527x_devices, ARRAY_SIZE(m527x_devices)); | ||
127 | return 0; | ||
128 | } | ||
129 | |||
130 | arch_initcall(init_BSP); | ||
131 | |||
132 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/528x/config.c b/arch/m68knommu/platform/528x/config.c index acbd43486d97..036e1b73d944 100644 --- a/arch/m68knommu/platform/528x/config.c +++ b/arch/m68knommu/platform/528x/config.c | |||
@@ -16,11 +16,15 @@ | |||
16 | #include <linux/param.h> | 16 | #include <linux/param.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/interrupt.h> | 18 | #include <linux/interrupt.h> |
19 | #include <asm/dma.h> | 19 | #include <linux/platform_device.h> |
20 | #include <linux/spi/spi.h> | ||
21 | #include <linux/spi/flash.h> | ||
22 | #include <linux/io.h> | ||
20 | #include <asm/machdep.h> | 23 | #include <asm/machdep.h> |
21 | #include <asm/coldfire.h> | 24 | #include <asm/coldfire.h> |
22 | #include <asm/mcfsim.h> | 25 | #include <asm/mcfsim.h> |
23 | #include <asm/mcfdma.h> | 26 | #include <asm/mcfuart.h> |
27 | #include <asm/mcfqspi.h> | ||
24 | 28 | ||
25 | /***************************************************************************/ | 29 | /***************************************************************************/ |
26 | 30 | ||
@@ -28,14 +32,67 @@ void coldfire_reset(void); | |||
28 | 32 | ||
29 | /***************************************************************************/ | 33 | /***************************************************************************/ |
30 | 34 | ||
31 | /* | 35 | static struct mcf_platform_uart m528x_uart_platform[] = { |
32 | * DMA channel base address table. | 36 | { |
33 | */ | 37 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
34 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 38 | .irq = MCFINT_VECBASE + MCFINT_UART0, |
35 | MCF_MBAR + MCFDMA_BASE0, | 39 | }, |
40 | { | ||
41 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
42 | .irq = MCFINT_VECBASE + MCFINT_UART0 + 1, | ||
43 | }, | ||
44 | { | ||
45 | .mapbase = MCF_MBAR + MCFUART_BASE3, | ||
46 | .irq = MCFINT_VECBASE + MCFINT_UART0 + 2, | ||
47 | }, | ||
48 | { }, | ||
36 | }; | 49 | }; |
37 | 50 | ||
38 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 51 | static struct platform_device m528x_uart = { |
52 | .name = "mcfuart", | ||
53 | .id = 0, | ||
54 | .dev.platform_data = m528x_uart_platform, | ||
55 | }; | ||
56 | |||
57 | static struct platform_device *m528x_devices[] __initdata = { | ||
58 | &m528x_uart, | ||
59 | }; | ||
60 | |||
61 | /***************************************************************************/ | ||
62 | |||
63 | #define INTC0 (MCF_MBAR + MCFICM_INTC0) | ||
64 | |||
65 | static void __init m528x_uart_init_line(int line, int irq) | ||
66 | { | ||
67 | u8 port; | ||
68 | u32 imr; | ||
69 | |||
70 | if ((line < 0) || (line > 2)) | ||
71 | return; | ||
72 | |||
73 | /* level 6, line based priority */ | ||
74 | writeb(0x30+line, INTC0 + MCFINTC_ICR0 + MCFINT_UART0 + line); | ||
75 | |||
76 | imr = readl(INTC0 + MCFINTC_IMRL); | ||
77 | imr &= ~((1 << (irq - MCFINT_VECBASE)) | 1); | ||
78 | writel(imr, INTC0 + MCFINTC_IMRL); | ||
79 | |||
80 | /* make sure PUAPAR is set for UART0 and UART1 */ | ||
81 | if (line < 2) { | ||
82 | port = readb(MCF_MBAR + MCF5282_GPIO_PUAPAR); | ||
83 | port |= (0x03 << (line * 2)); | ||
84 | writeb(port, MCF_MBAR + MCF5282_GPIO_PUAPAR); | ||
85 | } | ||
86 | } | ||
87 | |||
88 | static void __init m528x_uarts_init(void) | ||
89 | { | ||
90 | const int nrlines = ARRAY_SIZE(m528x_uart_platform); | ||
91 | int line; | ||
92 | |||
93 | for (line = 0; (line < nrlines); line++) | ||
94 | m528x_uart_init_line(line, m528x_uart_platform[line].irq); | ||
95 | } | ||
39 | 96 | ||
40 | /***************************************************************************/ | 97 | /***************************************************************************/ |
41 | 98 | ||
@@ -54,10 +111,21 @@ void mcf_autovector(unsigned int vec) | |||
54 | 111 | ||
55 | /***************************************************************************/ | 112 | /***************************************************************************/ |
56 | 113 | ||
57 | void config_BSP(char *commandp, int size) | 114 | void __init config_BSP(char *commandp, int size) |
58 | { | 115 | { |
59 | mcf_disableall(); | 116 | mcf_disableall(); |
60 | mach_reset = coldfire_reset; | 117 | mach_reset = coldfire_reset; |
61 | } | 118 | } |
62 | 119 | ||
63 | /***************************************************************************/ | 120 | /***************************************************************************/ |
121 | |||
122 | static int __init init_BSP(void) | ||
123 | { | ||
124 | m528x_uarts_init(); | ||
125 | platform_add_devices(m528x_devices, ARRAY_SIZE(m528x_devices)); | ||
126 | return 0; | ||
127 | } | ||
128 | |||
129 | arch_initcall(init_BSP); | ||
130 | |||
131 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/5307/Makefile b/arch/m68knommu/platform/5307/Makefile index 5b600530c8d2..580fd6658d7c 100644 --- a/arch/m68knommu/platform/5307/Makefile +++ b/arch/m68knommu/platform/5307/Makefile | |||
@@ -16,17 +16,5 @@ ifdef CONFIG_FULLDEBUG | |||
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | 16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 |
17 | endif | 17 | endif |
18 | 18 | ||
19 | obj-$(CONFIG_COLDFIRE) += entry.o vectors.o | 19 | obj-y += config.o |
20 | obj-$(CONFIG_M5206) += timers.o | ||
21 | obj-$(CONFIG_M5206e) += timers.o | ||
22 | obj-$(CONFIG_M520x) += pit.o | ||
23 | obj-$(CONFIG_M523x) += pit.o | ||
24 | obj-$(CONFIG_M5249) += timers.o | ||
25 | obj-$(CONFIG_M527x) += pit.o | ||
26 | obj-$(CONFIG_M5272) += timers.o | ||
27 | obj-$(CONFIG_M5307) += config.o timers.o | ||
28 | obj-$(CONFIG_M532x) += timers.o | ||
29 | obj-$(CONFIG_M528x) += pit.o | ||
30 | obj-$(CONFIG_M5407) += timers.o | ||
31 | 20 | ||
32 | extra-y := head.o | ||
diff --git a/arch/m68knommu/platform/5307/config.c b/arch/m68knommu/platform/5307/config.c index 6040821e637d..92dc862fa826 100644 --- a/arch/m68knommu/platform/5307/config.c +++ b/arch/m68knommu/platform/5307/config.c | |||
@@ -13,11 +13,11 @@ | |||
13 | #include <linux/param.h> | 13 | #include <linux/param.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
16 | #include <asm/dma.h> | 16 | #include <linux/io.h> |
17 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
18 | #include <asm/coldfire.h> | 18 | #include <asm/coldfire.h> |
19 | #include <asm/mcfsim.h> | 19 | #include <asm/mcfsim.h> |
20 | #include <asm/mcfdma.h> | 20 | #include <asm/mcfuart.h> |
21 | #include <asm/mcfwdebug.h> | 21 | #include <asm/mcfwdebug.h> |
22 | 22 | ||
23 | /***************************************************************************/ | 23 | /***************************************************************************/ |
@@ -38,17 +38,51 @@ unsigned char ledbank = 0xff; | |||
38 | 38 | ||
39 | /***************************************************************************/ | 39 | /***************************************************************************/ |
40 | 40 | ||
41 | /* | 41 | static struct mcf_platform_uart m5307_uart_platform[] = { |
42 | * DMA channel base address table. | 42 | { |
43 | */ | 43 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
44 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 44 | .irq = 73, |
45 | MCF_MBAR + MCFDMA_BASE0, | 45 | }, |
46 | MCF_MBAR + MCFDMA_BASE1, | 46 | { |
47 | MCF_MBAR + MCFDMA_BASE2, | 47 | .mapbase = MCF_MBAR + MCFUART_BASE2, |
48 | MCF_MBAR + MCFDMA_BASE3, | 48 | .irq = 74, |
49 | }, | ||
50 | { }, | ||
51 | }; | ||
52 | |||
53 | static struct platform_device m5307_uart = { | ||
54 | .name = "mcfuart", | ||
55 | .id = 0, | ||
56 | .dev.platform_data = m5307_uart_platform, | ||
49 | }; | 57 | }; |
50 | 58 | ||
51 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 59 | static struct platform_device *m5307_devices[] __initdata = { |
60 | &m5307_uart, | ||
61 | }; | ||
62 | |||
63 | /***************************************************************************/ | ||
64 | |||
65 | static void __init m5307_uart_init_line(int line, int irq) | ||
66 | { | ||
67 | if (line == 0) { | ||
68 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR); | ||
69 | writeb(irq, MCFUART_BASE1 + MCFUART_UIVR); | ||
70 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1); | ||
71 | } else if (line == 1) { | ||
72 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR); | ||
73 | writeb(irq, MCFUART_BASE2 + MCFUART_UIVR); | ||
74 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2); | ||
75 | } | ||
76 | } | ||
77 | |||
78 | static void __init m5307_uarts_init(void) | ||
79 | { | ||
80 | const int nrlines = ARRAY_SIZE(m5307_uart_platform); | ||
81 | int line; | ||
82 | |||
83 | for (line = 0; (line < nrlines); line++) | ||
84 | m5307_uart_init_line(line, m5307_uart_platform[line].irq); | ||
85 | } | ||
52 | 86 | ||
53 | /***************************************************************************/ | 87 | /***************************************************************************/ |
54 | 88 | ||
@@ -85,21 +119,7 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
85 | 119 | ||
86 | /***************************************************************************/ | 120 | /***************************************************************************/ |
87 | 121 | ||
88 | int mcf_timerirqpending(int timer) | 122 | void __init config_BSP(char *commandp, int size) |
89 | { | ||
90 | unsigned int imr = 0; | ||
91 | |||
92 | switch (timer) { | ||
93 | case 1: imr = MCFSIM_IMR_TIMER1; break; | ||
94 | case 2: imr = MCFSIM_IMR_TIMER2; break; | ||
95 | default: break; | ||
96 | } | ||
97 | return (mcf_getipr() & imr); | ||
98 | } | ||
99 | |||
100 | /***************************************************************************/ | ||
101 | |||
102 | void config_BSP(char *commandp, int size) | ||
103 | { | 123 | { |
104 | mcf_setimr(MCFSIM_IMR_MASKALL); | 124 | mcf_setimr(MCFSIM_IMR_MASKALL); |
105 | 125 | ||
@@ -117,7 +137,7 @@ void config_BSP(char *commandp, int size) | |||
117 | 137 | ||
118 | mach_reset = coldfire_reset; | 138 | mach_reset = coldfire_reset; |
119 | 139 | ||
120 | #ifdef MCF_BDM_DISABLE | 140 | #ifdef CONFIG_BDM_DISABLE |
121 | /* | 141 | /* |
122 | * Disable the BDM clocking. This also turns off most of the rest of | 142 | * Disable the BDM clocking. This also turns off most of the rest of |
123 | * the BDM device. This is good for EMC reasons. This option is not | 143 | * the BDM device. This is good for EMC reasons. This option is not |
@@ -128,3 +148,14 @@ void config_BSP(char *commandp, int size) | |||
128 | } | 148 | } |
129 | 149 | ||
130 | /***************************************************************************/ | 150 | /***************************************************************************/ |
151 | |||
152 | static int __init init_BSP(void) | ||
153 | { | ||
154 | m5307_uarts_init(); | ||
155 | platform_add_devices(m5307_devices, ARRAY_SIZE(m5307_devices)); | ||
156 | return 0; | ||
157 | } | ||
158 | |||
159 | arch_initcall(init_BSP); | ||
160 | |||
161 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/532x/config.c b/arch/m68knommu/platform/532x/config.c index f77328b7b6db..4f44b632045b 100644 --- a/arch/m68knommu/platform/532x/config.c +++ b/arch/m68knommu/platform/532x/config.c | |||
@@ -21,10 +21,11 @@ | |||
21 | #include <linux/param.h> | 21 | #include <linux/param.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/interrupt.h> | 23 | #include <linux/interrupt.h> |
24 | #include <asm/dma.h> | 24 | #include <linux/io.h> |
25 | #include <asm/machdep.h> | 25 | #include <asm/machdep.h> |
26 | #include <asm/coldfire.h> | 26 | #include <asm/coldfire.h> |
27 | #include <asm/mcfsim.h> | 27 | #include <asm/mcfsim.h> |
28 | #include <asm/mcfuart.h> | ||
28 | #include <asm/mcfdma.h> | 29 | #include <asm/mcfdma.h> |
29 | #include <asm/mcfwdebug.h> | 30 | #include <asm/mcfwdebug.h> |
30 | 31 | ||
@@ -38,11 +39,60 @@ extern unsigned int mcf_timerlevel; | |||
38 | 39 | ||
39 | /***************************************************************************/ | 40 | /***************************************************************************/ |
40 | 41 | ||
41 | /* | 42 | static struct mcf_platform_uart m532x_uart_platform[] = { |
42 | * DMA channel base address table. | 43 | { |
43 | */ | 44 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
44 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { }; | 45 | .irq = MCFINT_VECBASE + MCFINT_UART0, |
45 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 46 | }, |
47 | { | ||
48 | .mapbase = MCF_MBAR + MCFUART_BASE2, | ||
49 | .irq = MCFINT_VECBASE + MCFINT_UART1, | ||
50 | }, | ||
51 | { | ||
52 | .mapbase = MCF_MBAR + MCFUART_BASE3, | ||
53 | .irq = MCFINT_VECBASE + MCFINT_UART2, | ||
54 | }, | ||
55 | { }, | ||
56 | }; | ||
57 | |||
58 | static struct platform_device m532x_uart = { | ||
59 | .name = "mcfuart", | ||
60 | .id = 0, | ||
61 | .dev.platform_data = m532x_uart_platform, | ||
62 | }; | ||
63 | |||
64 | static struct platform_device *m532x_devices[] __initdata = { | ||
65 | &m532x_uart, | ||
66 | }; | ||
67 | |||
68 | /***************************************************************************/ | ||
69 | |||
70 | static void __init m532x_uart_init_line(int line, int irq) | ||
71 | { | ||
72 | if (line == 0) { | ||
73 | MCF_INTC0_ICR26 = 0x3; | ||
74 | MCF_INTC0_CIMR = 26; | ||
75 | /* GPIO initialization */ | ||
76 | MCF_GPIO_PAR_UART |= 0x000F; | ||
77 | } else if (line == 1) { | ||
78 | MCF_INTC0_ICR27 = 0x3; | ||
79 | MCF_INTC0_CIMR = 27; | ||
80 | /* GPIO initialization */ | ||
81 | MCF_GPIO_PAR_UART |= 0x0FF0; | ||
82 | } else if (line == 2) { | ||
83 | MCF_INTC0_ICR28 = 0x3; | ||
84 | MCF_INTC0_CIMR = 28; | ||
85 | } | ||
86 | } | ||
87 | |||
88 | static void __init m532x_uarts_init(void) | ||
89 | { | ||
90 | const int nrlines = ARRAY_SIZE(m532x_uart_platform); | ||
91 | int line; | ||
92 | |||
93 | for (line = 0; (line < nrlines); line++) | ||
94 | m532x_uart_init_line(line, m532x_uart_platform[line].irq); | ||
95 | } | ||
46 | 96 | ||
47 | /***************************************************************************/ | 97 | /***************************************************************************/ |
48 | 98 | ||
@@ -66,21 +116,7 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
66 | 116 | ||
67 | /***************************************************************************/ | 117 | /***************************************************************************/ |
68 | 118 | ||
69 | int mcf_timerirqpending(int timer) | 119 | void __init config_BSP(char *commandp, int size) |
70 | { | ||
71 | unsigned int imr = 0; | ||
72 | |||
73 | switch (timer) { | ||
74 | case 1: imr = 0x1; break; | ||
75 | case 2: imr = 0x2; break; | ||
76 | default: break; | ||
77 | } | ||
78 | return (mcf_getiprh() & imr); | ||
79 | } | ||
80 | |||
81 | /***************************************************************************/ | ||
82 | |||
83 | void config_BSP(char *commandp, int size) | ||
84 | { | 120 | { |
85 | mcf_setimr(MCFSIM_IMR_MASKALL); | 121 | mcf_setimr(MCFSIM_IMR_MASKALL); |
86 | 122 | ||
@@ -99,7 +135,7 @@ void config_BSP(char *commandp, int size) | |||
99 | mcf_profilevector = 64+33; | 135 | mcf_profilevector = 64+33; |
100 | mach_reset = coldfire_reset; | 136 | mach_reset = coldfire_reset; |
101 | 137 | ||
102 | #ifdef MCF_BDM_DISABLE | 138 | #ifdef CONFIG_BDM_DISABLE |
103 | /* | 139 | /* |
104 | * Disable the BDM clocking. This also turns off most of the rest of | 140 | * Disable the BDM clocking. This also turns off most of the rest of |
105 | * the BDM device. This is good for EMC reasons. This option is not | 141 | * the BDM device. This is good for EMC reasons. This option is not |
@@ -110,9 +146,19 @@ void config_BSP(char *commandp, int size) | |||
110 | } | 146 | } |
111 | 147 | ||
112 | /***************************************************************************/ | 148 | /***************************************************************************/ |
113 | /* Board initialization */ | ||
114 | 149 | ||
115 | /********************************************************************/ | 150 | static int __init init_BSP(void) |
151 | { | ||
152 | m532x_uarts_init(); | ||
153 | platform_add_devices(m532x_devices, ARRAY_SIZE(m532x_devices)); | ||
154 | return 0; | ||
155 | } | ||
156 | |||
157 | arch_initcall(init_BSP); | ||
158 | |||
159 | /***************************************************************************/ | ||
160 | /* Board initialization */ | ||
161 | /***************************************************************************/ | ||
116 | /* | 162 | /* |
117 | * PLL min/max specifications | 163 | * PLL min/max specifications |
118 | */ | 164 | */ |
diff --git a/arch/m68knommu/platform/5407/config.c b/arch/m68knommu/platform/5407/config.c index 2d3b62eba7ca..648b8b778211 100644 --- a/arch/m68knommu/platform/5407/config.c +++ b/arch/m68knommu/platform/5407/config.c | |||
@@ -13,11 +13,11 @@ | |||
13 | #include <linux/param.h> | 13 | #include <linux/param.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
16 | #include <asm/dma.h> | 16 | #include <linux/io.h> |
17 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
18 | #include <asm/coldfire.h> | 18 | #include <asm/coldfire.h> |
19 | #include <asm/mcfsim.h> | 19 | #include <asm/mcfsim.h> |
20 | #include <asm/mcfdma.h> | 20 | #include <asm/mcfuart.h> |
21 | 21 | ||
22 | /***************************************************************************/ | 22 | /***************************************************************************/ |
23 | 23 | ||
@@ -29,17 +29,51 @@ extern unsigned int mcf_timerlevel; | |||
29 | 29 | ||
30 | /***************************************************************************/ | 30 | /***************************************************************************/ |
31 | 31 | ||
32 | /* | 32 | static struct mcf_platform_uart m5407_uart_platform[] = { |
33 | * DMA channel base address table. | 33 | { |
34 | */ | 34 | .mapbase = MCF_MBAR + MCFUART_BASE1, |
35 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | 35 | .irq = 73, |
36 | MCF_MBAR + MCFDMA_BASE0, | 36 | }, |
37 | MCF_MBAR + MCFDMA_BASE1, | 37 | { |
38 | MCF_MBAR + MCFDMA_BASE2, | 38 | .mapbase = MCF_MBAR + MCFUART_BASE2, |
39 | MCF_MBAR + MCFDMA_BASE3, | 39 | .irq = 74, |
40 | }, | ||
41 | { }, | ||
42 | }; | ||
43 | |||
44 | static struct platform_device m5407_uart = { | ||
45 | .name = "mcfuart", | ||
46 | .id = 0, | ||
47 | .dev.platform_data = m5407_uart_platform, | ||
40 | }; | 48 | }; |
41 | 49 | ||
42 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 50 | static struct platform_device *m5407_devices[] __initdata = { |
51 | &m5407_uart, | ||
52 | }; | ||
53 | |||
54 | /***************************************************************************/ | ||
55 | |||
56 | static void __init m5407_uart_init_line(int line, int irq) | ||
57 | { | ||
58 | if (line == 0) { | ||
59 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI1, MCF_MBAR + MCFSIM_UART1ICR); | ||
60 | writeb(irq, MCFUART_BASE1 + MCFUART_UIVR); | ||
61 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART1); | ||
62 | } else if (line == 1) { | ||
63 | writel(MCFSIM_ICR_LEVEL6 | MCFSIM_ICR_PRI2, MCF_MBAR + MCFSIM_UART2ICR); | ||
64 | writeb(irq, MCFUART_BASE2 + MCFUART_UIVR); | ||
65 | mcf_setimr(mcf_getimr() & ~MCFSIM_IMR_UART2); | ||
66 | } | ||
67 | } | ||
68 | |||
69 | static void __init m5407_uarts_init(void) | ||
70 | { | ||
71 | const int nrlines = ARRAY_SIZE(m5407_uart_platform); | ||
72 | int line; | ||
73 | |||
74 | for (line = 0; (line < nrlines); line++) | ||
75 | m5407_uart_init_line(line, m5407_uart_platform[line].irq); | ||
76 | } | ||
43 | 77 | ||
44 | /***************************************************************************/ | 78 | /***************************************************************************/ |
45 | 79 | ||
@@ -76,21 +110,7 @@ void mcf_settimericr(unsigned int timer, unsigned int level) | |||
76 | 110 | ||
77 | /***************************************************************************/ | 111 | /***************************************************************************/ |
78 | 112 | ||
79 | int mcf_timerirqpending(int timer) | 113 | void __init config_BSP(char *commandp, int size) |
80 | { | ||
81 | unsigned int imr = 0; | ||
82 | |||
83 | switch (timer) { | ||
84 | case 1: imr = MCFSIM_IMR_TIMER1; break; | ||
85 | case 2: imr = MCFSIM_IMR_TIMER2; break; | ||
86 | default: break; | ||
87 | } | ||
88 | return (mcf_getipr() & imr); | ||
89 | } | ||
90 | |||
91 | /***************************************************************************/ | ||
92 | |||
93 | void config_BSP(char *commandp, int size) | ||
94 | { | 114 | { |
95 | mcf_setimr(MCFSIM_IMR_MASKALL); | 115 | mcf_setimr(MCFSIM_IMR_MASKALL); |
96 | 116 | ||
@@ -105,3 +125,14 @@ void config_BSP(char *commandp, int size) | |||
105 | } | 125 | } |
106 | 126 | ||
107 | /***************************************************************************/ | 127 | /***************************************************************************/ |
128 | |||
129 | static int __init init_BSP(void) | ||
130 | { | ||
131 | m5407_uarts_init(); | ||
132 | platform_add_devices(m5407_devices, ARRAY_SIZE(m5407_devices)); | ||
133 | return 0; | ||
134 | } | ||
135 | |||
136 | arch_initcall(init_BSP); | ||
137 | |||
138 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/68328/timers.c b/arch/m68knommu/platform/68328/timers.c index 04cbc661d4bd..9159fd05c9ac 100644 --- a/arch/m68knommu/platform/68328/timers.c +++ b/arch/m68knommu/platform/68328/timers.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/mm.h> | 19 | #include <linux/mm.h> |
20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
21 | #include <linux/irq.h> | 21 | #include <linux/irq.h> |
22 | #include <linux/clocksource.h> | ||
22 | #include <asm/setup.h> | 23 | #include <asm/setup.h> |
23 | #include <asm/system.h> | 24 | #include <asm/system.h> |
24 | #include <asm/pgtable.h> | 25 | #include <asm/pgtable.h> |
@@ -51,6 +52,19 @@ | |||
51 | #define TICKS_PER_JIFFY 10 | 52 | #define TICKS_PER_JIFFY 10 |
52 | #endif | 53 | #endif |
53 | 54 | ||
55 | static u32 m68328_tick_cnt; | ||
56 | |||
57 | /***************************************************************************/ | ||
58 | |||
59 | static irqreturn_t hw_tick(int irq, void *dummy) | ||
60 | { | ||
61 | /* Reset Timer1 */ | ||
62 | TSTAT &= 0; | ||
63 | |||
64 | m68328_tick_cnt += TICKS_PER_JIFFY; | ||
65 | return arch_timer_interrupt(irq, dummy); | ||
66 | } | ||
67 | |||
54 | /***************************************************************************/ | 68 | /***************************************************************************/ |
55 | 69 | ||
56 | static irqreturn_t hw_tick(int irq, void *dummy) | 70 | static irqreturn_t hw_tick(int irq, void *dummy) |
@@ -69,6 +83,33 @@ static struct irqaction m68328_timer_irq = { | |||
69 | .handler = hw_tick, | 83 | .handler = hw_tick, |
70 | }; | 84 | }; |
71 | 85 | ||
86 | /***************************************************************************/ | ||
87 | |||
88 | static cycle_t m68328_read_clk(void) | ||
89 | { | ||
90 | unsigned long flags; | ||
91 | u32 cycles; | ||
92 | |||
93 | local_irq_save(flags); | ||
94 | cycles = m68328_tick_cnt + TCN; | ||
95 | local_irq_restore(flags); | ||
96 | |||
97 | return cycles; | ||
98 | } | ||
99 | |||
100 | /***************************************************************************/ | ||
101 | |||
102 | static struct clocksource m68328_clk = { | ||
103 | .name = "timer", | ||
104 | .rating = 250, | ||
105 | .read = m68328_read_clk, | ||
106 | .shift = 20, | ||
107 | .mask = CLOCKSOURCE_MASK(32), | ||
108 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
109 | }; | ||
110 | |||
111 | /***************************************************************************/ | ||
112 | |||
72 | void hw_timer_init(void) | 113 | void hw_timer_init(void) |
73 | { | 114 | { |
74 | /* disable timer 1 */ | 115 | /* disable timer 1 */ |
@@ -84,19 +125,8 @@ void hw_timer_init(void) | |||
84 | 125 | ||
85 | /* Enable timer 1 */ | 126 | /* Enable timer 1 */ |
86 | TCTL |= TCTL_TEN; | 127 | TCTL |= TCTL_TEN; |
87 | } | 128 | m68328_clk.mult = clocksource_hz2mult(TICKS_PER_JIFFY*HZ, m68328_clk.shift); |
88 | 129 | clocksource_register(&m68328_clk); | |
89 | /***************************************************************************/ | ||
90 | |||
91 | unsigned long hw_timer_offset(void) | ||
92 | { | ||
93 | unsigned long ticks = TCN, offset = 0; | ||
94 | |||
95 | /* check for pending interrupt */ | ||
96 | if (ticks < (TICKS_PER_JIFFY >> 1) && (ISR & (1 << TMR_IRQ_NUM))) | ||
97 | offset = 1000000 / HZ; | ||
98 | ticks = (ticks * 1000000 / HZ) / TICKS_PER_JIFFY; | ||
99 | return ticks + offset; | ||
100 | } | 130 | } |
101 | 131 | ||
102 | /***************************************************************************/ | 132 | /***************************************************************************/ |
diff --git a/arch/m68knommu/platform/68360/config.c b/arch/m68knommu/platform/68360/config.c index 2b3196af811f..ac629fa30099 100644 --- a/arch/m68knommu/platform/68360/config.c +++ b/arch/m68knommu/platform/68360/config.c | |||
@@ -103,11 +103,6 @@ void hw_timer_init(void) | |||
103 | pquicc->timer_tgcr = tgcr_save; | 103 | pquicc->timer_tgcr = tgcr_save; |
104 | } | 104 | } |
105 | 105 | ||
106 | unsigned long hw_timer_offset(void) | ||
107 | { | ||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | void BSP_gettod (int *yearp, int *monp, int *dayp, | 106 | void BSP_gettod (int *yearp, int *monp, int *dayp, |
112 | int *hourp, int *minp, int *secp) | 107 | int *hourp, int *minp, int *secp) |
113 | { | 108 | { |
diff --git a/arch/m68knommu/platform/coldfire/Makefile b/arch/m68knommu/platform/coldfire/Makefile new file mode 100644 index 000000000000..e5fff297ae01 --- /dev/null +++ b/arch/m68knommu/platform/coldfire/Makefile | |||
@@ -0,0 +1,32 @@ | |||
1 | # | ||
2 | # Makefile for the m68knommu kernel. | ||
3 | # | ||
4 | |||
5 | # | ||
6 | # If you want to play with the HW breakpoints then you will | ||
7 | # need to add define this, which will give you a stack backtrace | ||
8 | # on the console port whenever a DBG interrupt occurs. You have to | ||
9 | # set up you HW breakpoints to trigger a DBG interrupt: | ||
10 | # | ||
11 | # EXTRA_CFLAGS += -DTRAP_DBG_INTERRUPT | ||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | ||
13 | # | ||
14 | |||
15 | ifdef CONFIG_FULLDEBUG | ||
16 | AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | |||
19 | obj-$(CONFIG_COLDFIRE) += dma.o entry.o vectors.o | ||
20 | obj-$(CONFIG_M5206) += timers.o | ||
21 | obj-$(CONFIG_M5206e) += timers.o | ||
22 | obj-$(CONFIG_M520x) += pit.o | ||
23 | obj-$(CONFIG_M523x) += pit.o | ||
24 | obj-$(CONFIG_M5249) += timers.o | ||
25 | obj-$(CONFIG_M527x) += pit.o | ||
26 | obj-$(CONFIG_M5272) += timers.o | ||
27 | obj-$(CONFIG_M528x) += pit.o | ||
28 | obj-$(CONFIG_M5307) += timers.o | ||
29 | obj-$(CONFIG_M532x) += timers.o | ||
30 | obj-$(CONFIG_M5407) += timers.o | ||
31 | |||
32 | extra-y := head.o | ||
diff --git a/arch/m68knommu/platform/coldfire/dma.c b/arch/m68knommu/platform/coldfire/dma.c new file mode 100644 index 000000000000..2b30cf1b8f77 --- /dev/null +++ b/arch/m68knommu/platform/coldfire/dma.c | |||
@@ -0,0 +1,39 @@ | |||
1 | /***************************************************************************/ | ||
2 | |||
3 | /* | ||
4 | * dma.c -- Freescale ColdFire DMA support | ||
5 | * | ||
6 | * Copyright (C) 2007, Greg Ungerer (gerg@snapgear.com) | ||
7 | */ | ||
8 | |||
9 | /***************************************************************************/ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <asm/dma.h> | ||
13 | #include <asm/coldfire.h> | ||
14 | #include <asm/mcfsim.h> | ||
15 | #include <asm/mcfdma.h> | ||
16 | |||
17 | /***************************************************************************/ | ||
18 | |||
19 | /* | ||
20 | * DMA channel base address table. | ||
21 | */ | ||
22 | unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | ||
23 | #ifdef MCFDMA_BASE0 | ||
24 | MCF_MBAR + MCFDMA_BASE0, | ||
25 | #endif | ||
26 | #ifdef MCFDMA_BASE1 | ||
27 | MCF_MBAR + MCFDMA_BASE1, | ||
28 | #endif | ||
29 | #ifdef MCFDMA_BASE2 | ||
30 | MCF_MBAR + MCFDMA_BASE2, | ||
31 | #endif | ||
32 | #ifdef MCFDMA_BASE3 | ||
33 | MCF_MBAR + MCFDMA_BASE3, | ||
34 | #endif | ||
35 | }; | ||
36 | |||
37 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | ||
38 | |||
39 | /***************************************************************************/ | ||
diff --git a/arch/m68knommu/platform/5307/entry.S b/arch/m68knommu/platform/coldfire/entry.S index b333731b875a..b333731b875a 100644 --- a/arch/m68knommu/platform/5307/entry.S +++ b/arch/m68knommu/platform/coldfire/entry.S | |||
diff --git a/arch/m68knommu/platform/5307/head.S b/arch/m68knommu/platform/coldfire/head.S index b9aa0ca29bfb..b9aa0ca29bfb 100644 --- a/arch/m68knommu/platform/5307/head.S +++ b/arch/m68knommu/platform/coldfire/head.S | |||
diff --git a/arch/m68knommu/platform/5307/pit.c b/arch/m68knommu/platform/coldfire/pit.c index 173b754d1cda..4290638012e0 100644 --- a/arch/m68knommu/platform/5307/pit.c +++ b/arch/m68knommu/platform/coldfire/pit.c | |||
@@ -3,9 +3,10 @@ | |||
3 | /* | 3 | /* |
4 | * pit.c -- Freescale ColdFire PIT timer. Currently this type of | 4 | * pit.c -- Freescale ColdFire PIT timer. Currently this type of |
5 | * hardware timer only exists in the Freescale ColdFire | 5 | * hardware timer only exists in the Freescale ColdFire |
6 | * 5270/5271, 5282 and other CPUs. | 6 | * 5270/5271, 5282 and 5208 CPUs. No doubt newer ColdFire |
7 | * family members will probably use it too. | ||
7 | * | 8 | * |
8 | * Copyright (C) 1999-2007, Greg Ungerer (gerg@snapgear.com) | 9 | * Copyright (C) 1999-2008, Greg Ungerer (gerg@snapgear.com) |
9 | * Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com) | 10 | * Copyright (C) 2001-2004, SnapGear Inc. (www.snapgear.com) |
10 | */ | 11 | */ |
11 | 12 | ||
@@ -17,6 +18,7 @@ | |||
17 | #include <linux/init.h> | 18 | #include <linux/init.h> |
18 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
19 | #include <linux/irq.h> | 20 | #include <linux/irq.h> |
21 | #include <linux/clocksource.h> | ||
20 | #include <asm/machdep.h> | 22 | #include <asm/machdep.h> |
21 | #include <asm/io.h> | 23 | #include <asm/io.h> |
22 | #include <asm/coldfire.h> | 24 | #include <asm/coldfire.h> |
@@ -28,70 +30,84 @@ | |||
28 | /* | 30 | /* |
29 | * By default use timer1 as the system clock timer. | 31 | * By default use timer1 as the system clock timer. |
30 | */ | 32 | */ |
33 | #define FREQ ((MCF_CLK / 2) / 64) | ||
31 | #define TA(a) (MCF_IPSBAR + MCFPIT_BASE1 + (a)) | 34 | #define TA(a) (MCF_IPSBAR + MCFPIT_BASE1 + (a)) |
35 | #define INTC0 (MCF_IPSBAR + MCFICM_INTC0) | ||
36 | |||
37 | static u32 pit_cycles_per_jiffy; | ||
38 | static u32 pit_cnt; | ||
32 | 39 | ||
33 | /***************************************************************************/ | 40 | /***************************************************************************/ |
34 | 41 | ||
35 | static irqreturn_t hw_tick(int irq, void *dummy) | 42 | static irqreturn_t pit_tick(int irq, void *dummy) |
36 | { | 43 | { |
37 | unsigned short pcsr; | 44 | u16 pcsr; |
38 | 45 | ||
39 | /* Reset the ColdFire timer */ | 46 | /* Reset the ColdFire timer */ |
40 | pcsr = __raw_readw(TA(MCFPIT_PCSR)); | 47 | pcsr = __raw_readw(TA(MCFPIT_PCSR)); |
41 | __raw_writew(pcsr | MCFPIT_PCSR_PIF, TA(MCFPIT_PCSR)); | 48 | __raw_writew(pcsr | MCFPIT_PCSR_PIF, TA(MCFPIT_PCSR)); |
42 | 49 | ||
50 | pit_cnt += pit_cycles_per_jiffy; | ||
43 | return arch_timer_interrupt(irq, dummy); | 51 | return arch_timer_interrupt(irq, dummy); |
44 | } | 52 | } |
45 | 53 | ||
46 | /***************************************************************************/ | 54 | /***************************************************************************/ |
47 | 55 | ||
48 | static struct irqaction coldfire_pit_irq = { | 56 | static struct irqaction pit_irq = { |
49 | .name = "timer", | 57 | .name = "timer", |
50 | .flags = IRQF_DISABLED | IRQF_TIMER, | 58 | .flags = IRQF_DISABLED | IRQF_TIMER, |
51 | .handler = hw_tick, | 59 | .handler = pit_tick, |
52 | }; | 60 | }; |
53 | 61 | ||
54 | void hw_timer_init(void) | 62 | /***************************************************************************/ |
63 | |||
64 | static cycle_t pit_read_clk(void) | ||
55 | { | 65 | { |
56 | volatile unsigned char *icrp; | 66 | unsigned long flags; |
57 | volatile unsigned long *imrp; | 67 | u32 cycles; |
68 | u16 pcntr; | ||
58 | 69 | ||
59 | setup_irq(MCFINT_VECBASE + MCFINT_PIT1, &coldfire_pit_irq); | 70 | local_irq_save(flags); |
71 | pcntr = __raw_readw(TA(MCFPIT_PCNTR)); | ||
72 | cycles = pit_cnt; | ||
73 | local_irq_restore(flags); | ||
60 | 74 | ||
61 | icrp = (volatile unsigned char *) (MCF_IPSBAR + MCFICM_INTC0 + | 75 | return cycles + pit_cycles_per_jiffy - pcntr; |
62 | MCFINTC_ICR0 + MCFINT_PIT1); | 76 | } |
63 | *icrp = ICR_INTRCONF; | ||
64 | 77 | ||
65 | imrp = (volatile unsigned long *) (MCF_IPSBAR + MCFICM_INTC0 + MCFPIT_IMR); | 78 | /***************************************************************************/ |
66 | *imrp &= ~MCFPIT_IMR_IBIT; | ||
67 | 79 | ||
68 | /* Set up PIT timer 1 as poll clock */ | 80 | static struct clocksource pit_clk = { |
69 | __raw_writew(MCFPIT_PCSR_DISABLE, TA(MCFPIT_PCSR)); | 81 | .name = "pit", |
70 | __raw_writew(((MCF_CLK / 2) / 64) / HZ, TA(MCFPIT_PMR)); | 82 | .rating = 250, |
71 | __raw_writew(MCFPIT_PCSR_EN | MCFPIT_PCSR_PIE | MCFPIT_PCSR_OVW | | 83 | .read = pit_read_clk, |
72 | MCFPIT_PCSR_RLD | MCFPIT_PCSR_CLK64, TA(MCFPIT_PCSR)); | 84 | .shift = 20, |
73 | } | 85 | .mask = CLOCKSOURCE_MASK(32), |
86 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
87 | }; | ||
74 | 88 | ||
75 | /***************************************************************************/ | 89 | /***************************************************************************/ |
76 | 90 | ||
77 | unsigned long hw_timer_offset(void) | 91 | void hw_timer_init(void) |
78 | { | 92 | { |
79 | volatile unsigned long *ipr; | 93 | u32 imr; |
80 | unsigned long pmr, pcntr, offset; | ||
81 | 94 | ||
82 | ipr = (volatile unsigned long *) (MCF_IPSBAR + MCFICM_INTC0 + MCFPIT_IMR); | 95 | setup_irq(MCFINT_VECBASE + MCFINT_PIT1, &pit_irq); |
83 | 96 | ||
84 | pmr = __raw_readw(TA(MCFPIT_PMR)); | 97 | __raw_writeb(ICR_INTRCONF, INTC0 + MCFINTC_ICR0 + MCFINT_PIT1); |
85 | pcntr = __raw_readw(TA(MCFPIT_PCNTR)); | 98 | imr = __raw_readl(INTC0 + MCFPIT_IMR); |
99 | imr &= ~MCFPIT_IMR_IBIT; | ||
100 | __raw_writel(imr, INTC0 + MCFPIT_IMR); | ||
101 | |||
102 | /* Set up PIT timer 1 as poll clock */ | ||
103 | pit_cycles_per_jiffy = FREQ / HZ; | ||
104 | __raw_writew(MCFPIT_PCSR_DISABLE, TA(MCFPIT_PCSR)); | ||
105 | __raw_writew(pit_cycles_per_jiffy, TA(MCFPIT_PMR)); | ||
106 | __raw_writew(MCFPIT_PCSR_EN | MCFPIT_PCSR_PIE | MCFPIT_PCSR_OVW | | ||
107 | MCFPIT_PCSR_RLD | MCFPIT_PCSR_CLK64, TA(MCFPIT_PCSR)); | ||
86 | 108 | ||
87 | /* | 109 | pit_clk.mult = clocksource_hz2mult(FREQ, pit_clk.shift); |
88 | * If we are still in the first half of the upcount and a | 110 | clocksource_register(&pit_clk); |
89 | * timer interrupt is pending, then add on a ticks worth of time. | ||
90 | */ | ||
91 | offset = ((pmr - pcntr) * (1000000 / HZ)) / pmr; | ||
92 | if ((offset < (1000000 / HZ / 2)) && (*ipr & MCFPIT_IMR_IBIT)) | ||
93 | offset += 1000000 / HZ; | ||
94 | return offset; | ||
95 | } | 111 | } |
96 | 112 | ||
97 | /***************************************************************************/ | 113 | /***************************************************************************/ |
diff --git a/arch/m68knommu/platform/5307/timers.c b/arch/m68knommu/platform/coldfire/timers.c index 489dec85c859..a60213e877ef 100644 --- a/arch/m68knommu/platform/5307/timers.c +++ b/arch/m68knommu/platform/coldfire/timers.c | |||
@@ -3,7 +3,7 @@ | |||
3 | /* | 3 | /* |
4 | * timers.c -- generic ColdFire hardware timer support. | 4 | * timers.c -- generic ColdFire hardware timer support. |
5 | * | 5 | * |
6 | * Copyright (C) 1999-2007, Greg Ungerer (gerg@snapgear.com) | 6 | * Copyright (C) 1999-2008, Greg Ungerer <gerg@snapgear.com> |
7 | */ | 7 | */ |
8 | 8 | ||
9 | /***************************************************************************/ | 9 | /***************************************************************************/ |
@@ -13,6 +13,8 @@ | |||
13 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
14 | #include <linux/interrupt.h> | 14 | #include <linux/interrupt.h> |
15 | #include <linux/irq.h> | 15 | #include <linux/irq.h> |
16 | #include <linux/profile.h> | ||
17 | #include <linux/clocksource.h> | ||
16 | #include <asm/io.h> | 18 | #include <asm/io.h> |
17 | #include <asm/traps.h> | 19 | #include <asm/traps.h> |
18 | #include <asm/machdep.h> | 20 | #include <asm/machdep.h> |
@@ -25,6 +27,7 @@ | |||
25 | /* | 27 | /* |
26 | * By default use timer1 as the system clock timer. | 28 | * By default use timer1 as the system clock timer. |
27 | */ | 29 | */ |
30 | #define FREQ (MCF_BUSCLK / 16) | ||
28 | #define TA(a) (MCF_MBAR + MCFTIMER_BASE1 + (a)) | 31 | #define TA(a) (MCF_MBAR + MCFTIMER_BASE1 + (a)) |
29 | 32 | ||
30 | /* | 33 | /* |
@@ -41,7 +44,7 @@ unsigned int mcf_timerlevel = 5; | |||
41 | * Unfortunately it is a little different on each ColdFire. | 44 | * Unfortunately it is a little different on each ColdFire. |
42 | */ | 45 | */ |
43 | extern void mcf_settimericr(int timer, int level); | 46 | extern void mcf_settimericr(int timer, int level); |
44 | extern int mcf_timerirqpending(int timer); | 47 | void coldfire_profile_init(void); |
45 | 48 | ||
46 | #if defined(CONFIG_M532x) | 49 | #if defined(CONFIG_M532x) |
47 | #define __raw_readtrr __raw_readl | 50 | #define __raw_readtrr __raw_readl |
@@ -51,38 +54,70 @@ extern int mcf_timerirqpending(int timer); | |||
51 | #define __raw_writetrr __raw_writew | 54 | #define __raw_writetrr __raw_writew |
52 | #endif | 55 | #endif |
53 | 56 | ||
57 | static u32 mcftmr_cycles_per_jiffy; | ||
58 | static u32 mcftmr_cnt; | ||
59 | |||
54 | /***************************************************************************/ | 60 | /***************************************************************************/ |
55 | 61 | ||
56 | static irqreturn_t hw_tick(int irq, void *dummy) | 62 | static irqreturn_t mcftmr_tick(int irq, void *dummy) |
57 | { | 63 | { |
58 | /* Reset the ColdFire timer */ | 64 | /* Reset the ColdFire timer */ |
59 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER)); | 65 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, TA(MCFTIMER_TER)); |
60 | 66 | ||
67 | mcftmr_cnt += mcftmr_cycles_per_jiffy; | ||
61 | return arch_timer_interrupt(irq, dummy); | 68 | return arch_timer_interrupt(irq, dummy); |
62 | } | 69 | } |
63 | 70 | ||
64 | /***************************************************************************/ | 71 | /***************************************************************************/ |
65 | 72 | ||
66 | static struct irqaction coldfire_timer_irq = { | 73 | static struct irqaction mcftmr_timer_irq = { |
67 | .name = "timer", | 74 | .name = "timer", |
68 | .flags = IRQF_DISABLED | IRQF_TIMER, | 75 | .flags = IRQF_DISABLED | IRQF_TIMER, |
69 | .handler = hw_tick, | 76 | .handler = mcftmr_tick, |
70 | }; | 77 | }; |
71 | 78 | ||
72 | /***************************************************************************/ | 79 | /***************************************************************************/ |
73 | 80 | ||
74 | static int ticks_per_intr; | 81 | static cycle_t mcftmr_read_clk(void) |
82 | { | ||
83 | unsigned long flags; | ||
84 | u32 cycles; | ||
85 | u16 tcn; | ||
86 | |||
87 | local_irq_save(flags); | ||
88 | tcn = __raw_readw(TA(MCFTIMER_TCN)); | ||
89 | cycles = mcftmr_cnt; | ||
90 | local_irq_restore(flags); | ||
91 | |||
92 | return cycles + tcn; | ||
93 | } | ||
94 | |||
95 | /***************************************************************************/ | ||
96 | |||
97 | static struct clocksource mcftmr_clk = { | ||
98 | .name = "tmr", | ||
99 | .rating = 250, | ||
100 | .read = mcftmr_read_clk, | ||
101 | .shift = 20, | ||
102 | .mask = CLOCKSOURCE_MASK(32), | ||
103 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
104 | }; | ||
105 | |||
106 | /***************************************************************************/ | ||
75 | 107 | ||
76 | void hw_timer_init(void) | 108 | void hw_timer_init(void) |
77 | { | 109 | { |
78 | setup_irq(mcf_timervector, &coldfire_timer_irq); | 110 | setup_irq(mcf_timervector, &mcftmr_timer_irq); |
79 | 111 | ||
80 | __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR)); | 112 | __raw_writew(MCFTIMER_TMR_DISABLE, TA(MCFTIMER_TMR)); |
81 | ticks_per_intr = (MCF_BUSCLK / 16) / HZ; | 113 | mcftmr_cycles_per_jiffy = FREQ / HZ; |
82 | __raw_writetrr(ticks_per_intr - 1, TA(MCFTIMER_TRR)); | 114 | __raw_writetrr(mcftmr_cycles_per_jiffy, TA(MCFTIMER_TRR)); |
83 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | | 115 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | |
84 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR)); | 116 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, TA(MCFTIMER_TMR)); |
85 | 117 | ||
118 | mcftmr_clk.mult = clocksource_hz2mult(FREQ, mcftmr_clk.shift); | ||
119 | clocksource_register(&mcftmr_clk); | ||
120 | |||
86 | mcf_settimericr(1, mcf_timerlevel); | 121 | mcf_settimericr(1, mcf_timerlevel); |
87 | 122 | ||
88 | #ifdef CONFIG_HIGHPROFILE | 123 | #ifdef CONFIG_HIGHPROFILE |
@@ -91,21 +126,6 @@ void hw_timer_init(void) | |||
91 | } | 126 | } |
92 | 127 | ||
93 | /***************************************************************************/ | 128 | /***************************************************************************/ |
94 | |||
95 | unsigned long hw_timer_offset(void) | ||
96 | { | ||
97 | unsigned long tcn, offset; | ||
98 | |||
99 | tcn = __raw_readw(TA(MCFTIMER_TCN)); | ||
100 | offset = ((tcn + 1) * (1000000 / HZ)) / ticks_per_intr; | ||
101 | |||
102 | /* Check if we just wrapped the counters and maybe missed a tick */ | ||
103 | if ((offset < (1000000 / HZ / 2)) && mcf_timerirqpending(1)) | ||
104 | offset += 1000000 / HZ; | ||
105 | return offset; | ||
106 | } | ||
107 | |||
108 | /***************************************************************************/ | ||
109 | #ifdef CONFIG_HIGHPROFILE | 129 | #ifdef CONFIG_HIGHPROFILE |
110 | /***************************************************************************/ | 130 | /***************************************************************************/ |
111 | 131 | ||
diff --git a/arch/m68knommu/platform/5307/vectors.c b/arch/m68knommu/platform/coldfire/vectors.c index 6cf894620234..6cf894620234 100644 --- a/arch/m68knommu/platform/5307/vectors.c +++ b/arch/m68knommu/platform/coldfire/vectors.c | |||
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 4fad0a34b997..ec78a5762e9e 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | config MIPS | 1 | config MIPS |
2 | bool | 2 | bool |
3 | default y | 3 | default y |
4 | select HAVE_OPROFILE | ||
4 | # Horrible source of confusion. Die, die, die ... | 5 | # Horrible source of confusion. Die, die, die ... |
5 | select EMBEDDED | 6 | select EMBEDDED |
6 | select RTC_LIB | 7 | select RTC_LIB |
@@ -1754,8 +1755,8 @@ config SMP | |||
1754 | People using multiprocessor machines who say Y here should also say | 1755 | People using multiprocessor machines who say Y here should also say |
1755 | Y to "Enhanced Real Time Clock Support", below. | 1756 | Y to "Enhanced Real Time Clock Support", below. |
1756 | 1757 | ||
1757 | See also the <file:Documentation/smp.txt> and the SMP-HOWTO | 1758 | See also the SMP-HOWTO available at |
1758 | available at <http://www.tldp.org/docs.html#howto>. | 1759 | <http://www.tldp.org/docs.html#howto>. |
1759 | 1760 | ||
1760 | If you don't know what to do here, say N. | 1761 | If you don't know what to do here, say N. |
1761 | 1762 | ||
@@ -1961,11 +1962,6 @@ config PCI | |||
1961 | your box. Other bus systems are ISA, EISA, or VESA. If you have PCI, | 1962 | your box. Other bus systems are ISA, EISA, or VESA. If you have PCI, |
1962 | say Y, otherwise N. | 1963 | say Y, otherwise N. |
1963 | 1964 | ||
1964 | The PCI-HOWTO, available from | ||
1965 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
1966 | information about which PCI hardware does work under Linux and which | ||
1967 | doesn't. | ||
1968 | |||
1969 | config PCI_DOMAINS | 1965 | config PCI_DOMAINS |
1970 | bool | 1966 | bool |
1971 | 1967 | ||
@@ -2086,6 +2082,10 @@ endmenu | |||
2086 | 2082 | ||
2087 | menu "Power management options" | 2083 | menu "Power management options" |
2088 | 2084 | ||
2085 | config ARCH_SUSPEND_POSSIBLE | ||
2086 | def_bool y | ||
2087 | depends on !SMP | ||
2088 | |||
2089 | source "kernel/power/Kconfig" | 2089 | source "kernel/power/Kconfig" |
2090 | 2090 | ||
2091 | endmenu | 2091 | endmenu |
@@ -2096,8 +2096,6 @@ source "drivers/Kconfig" | |||
2096 | 2096 | ||
2097 | source "fs/Kconfig" | 2097 | source "fs/Kconfig" |
2098 | 2098 | ||
2099 | source "kernel/Kconfig.instrumentation" | ||
2100 | |||
2101 | source "arch/mips/Kconfig.debug" | 2099 | source "arch/mips/Kconfig.debug" |
2102 | 2100 | ||
2103 | source "security/Kconfig" | 2101 | source "security/Kconfig" |
diff --git a/arch/mips/au1000/mtx-1/board_setup.c b/arch/mips/au1000/mtx-1/board_setup.c index abfc4bcddf7a..310d5dff89fc 100644 --- a/arch/mips/au1000/mtx-1/board_setup.c +++ b/arch/mips/au1000/mtx-1/board_setup.c | |||
@@ -99,7 +99,7 @@ mtx1_pci_idsel(unsigned int devsel, int assert) | |||
99 | #endif | 99 | #endif |
100 | 100 | ||
101 | if (assert && devsel != 0) { | 101 | if (assert && devsel != 0) { |
102 | // supress signal to cardbus | 102 | // suppress signal to cardbus |
103 | au_writel( 0x00000002, SYS_OUTPUTCLR ); // set EXT_IO3 OFF | 103 | au_writel( 0x00000002, SYS_OUTPUTCLR ); // set EXT_IO3 OFF |
104 | } | 104 | } |
105 | else { | 105 | else { |
diff --git a/arch/mips/kernel/binfmt_elfn32.c b/arch/mips/kernel/binfmt_elfn32.c index 9b34238d41c0..77db3473deab 100644 --- a/arch/mips/kernel/binfmt_elfn32.c +++ b/arch/mips/kernel/binfmt_elfn32.c | |||
@@ -98,7 +98,7 @@ static __inline__ void | |||
98 | jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) | 98 | jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) |
99 | { | 99 | { |
100 | /* | 100 | /* |
101 | * Convert jiffies to nanoseconds and seperate with | 101 | * Convert jiffies to nanoseconds and separate with |
102 | * one divide. | 102 | * one divide. |
103 | */ | 103 | */ |
104 | u64 nsec = (u64)jiffies * TICK_NSEC; | 104 | u64 nsec = (u64)jiffies * TICK_NSEC; |
diff --git a/arch/mips/kernel/binfmt_elfo32.c b/arch/mips/kernel/binfmt_elfo32.c index da41eac195ca..08f4cd781ee3 100644 --- a/arch/mips/kernel/binfmt_elfo32.c +++ b/arch/mips/kernel/binfmt_elfo32.c | |||
@@ -100,7 +100,7 @@ static inline void | |||
100 | jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) | 100 | jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) |
101 | { | 101 | { |
102 | /* | 102 | /* |
103 | * Convert jiffies to nanoseconds and seperate with | 103 | * Convert jiffies to nanoseconds and separate with |
104 | * one divide. | 104 | * one divide. |
105 | */ | 105 | */ |
106 | u64 nsec = (u64)jiffies * TICK_NSEC; | 106 | u64 nsec = (u64)jiffies * TICK_NSEC; |
diff --git a/arch/mips/kernel/head.S b/arch/mips/kernel/head.S index 50be56c9e9ef..a24fb7900901 100644 --- a/arch/mips/kernel/head.S +++ b/arch/mips/kernel/head.S | |||
@@ -140,7 +140,7 @@ FEXPORT(__kernel_entry) | |||
140 | j kernel_entry | 140 | j kernel_entry |
141 | #endif | 141 | #endif |
142 | 142 | ||
143 | __INIT_REFOK | 143 | __REF |
144 | 144 | ||
145 | NESTED(kernel_entry, 16, sp) # kernel entry point | 145 | NESTED(kernel_entry, 16, sp) # kernel entry point |
146 | 146 | ||
diff --git a/arch/mips/kernel/kspd.c b/arch/mips/kernel/kspd.c index f6704ab16306..998c4efcce88 100644 --- a/arch/mips/kernel/kspd.c +++ b/arch/mips/kernel/kspd.c | |||
@@ -221,7 +221,7 @@ void sp_work_handle_request(void) | |||
221 | } | 221 | } |
222 | } | 222 | } |
223 | 223 | ||
224 | /* Run the syscall at the priviledge of the user who loaded the | 224 | /* Run the syscall at the privilege of the user who loaded the |
225 | SP program */ | 225 | SP program */ |
226 | 226 | ||
227 | if (vpe_getuid(tclimit)) | 227 | if (vpe_getuid(tclimit)) |
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index 82480a1717d8..f798139e888e 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
@@ -660,7 +660,7 @@ einval: li v0, -EINVAL | |||
660 | sys sys_ioprio_get 2 /* 4315 */ | 660 | sys sys_ioprio_get 2 /* 4315 */ |
661 | sys sys_utimensat 4 | 661 | sys sys_utimensat 4 |
662 | sys sys_signalfd 3 | 662 | sys sys_signalfd 3 |
663 | sys sys_timerfd 4 | 663 | sys sys_ni_syscall 0 |
664 | sys sys_eventfd 1 | 664 | sys sys_eventfd 1 |
665 | sys sys_fallocate 6 /* 4320 */ | 665 | sys sys_fallocate 6 /* 4320 */ |
666 | .endm | 666 | .endm |
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index c2c10876da2e..a626be6baea3 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
@@ -475,7 +475,7 @@ sys_call_table: | |||
475 | PTR sys_ioprio_get | 475 | PTR sys_ioprio_get |
476 | PTR sys_utimensat /* 5275 */ | 476 | PTR sys_utimensat /* 5275 */ |
477 | PTR sys_signalfd | 477 | PTR sys_signalfd |
478 | PTR sys_timerfd | 478 | PTR sys_ni_syscall |
479 | PTR sys_eventfd | 479 | PTR sys_eventfd |
480 | PTR sys_fallocate | 480 | PTR sys_fallocate |
481 | .size sys_call_table,.-sys_call_table | 481 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 01993ec3368b..9d5bcaf1b389 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
@@ -401,7 +401,7 @@ EXPORT(sysn32_call_table) | |||
401 | PTR sys_ioprio_get | 401 | PTR sys_ioprio_get |
402 | PTR compat_sys_utimensat | 402 | PTR compat_sys_utimensat |
403 | PTR compat_sys_signalfd /* 5280 */ | 403 | PTR compat_sys_signalfd /* 5280 */ |
404 | PTR compat_sys_timerfd | 404 | PTR sys_ni_syscall |
405 | PTR sys_eventfd | 405 | PTR sys_eventfd |
406 | PTR sys_fallocate | 406 | PTR sys_fallocate |
407 | .size sysn32_call_table,.-sysn32_call_table | 407 | .size sysn32_call_table,.-sysn32_call_table |
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index dd68afce7da5..fd2019c1ec2d 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
@@ -523,7 +523,7 @@ sys_call_table: | |||
523 | PTR sys_ioprio_get /* 4315 */ | 523 | PTR sys_ioprio_get /* 4315 */ |
524 | PTR compat_sys_utimensat | 524 | PTR compat_sys_utimensat |
525 | PTR compat_sys_signalfd | 525 | PTR compat_sys_signalfd |
526 | PTR compat_sys_timerfd | 526 | PTR sys_ni_syscall |
527 | PTR sys_eventfd | 527 | PTR sys_eventfd |
528 | PTR sys32_fallocate /* 4320 */ | 528 | PTR sys32_fallocate /* 4320 */ |
529 | .size sys_call_table,.-sys_call_table | 529 | .size sys_call_table,.-sys_call_table |
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 269c252d956f..c032409cba9b 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
@@ -424,13 +424,13 @@ static void __init bootmem_init(void) | |||
424 | #endif /* CONFIG_SGI_IP27 */ | 424 | #endif /* CONFIG_SGI_IP27 */ |
425 | 425 | ||
426 | /* | 426 | /* |
427 | * arch_mem_init - initialize memory managment subsystem | 427 | * arch_mem_init - initialize memory management subsystem |
428 | * | 428 | * |
429 | * o plat_mem_setup() detects the memory configuration and will record detected | 429 | * o plat_mem_setup() detects the memory configuration and will record detected |
430 | * memory areas using add_memory_region. | 430 | * memory areas using add_memory_region. |
431 | * | 431 | * |
432 | * At this stage the memory configuration of the system is known to the | 432 | * At this stage the memory configuration of the system is known to the |
433 | * kernel but generic memory managment system is still entirely uninitialized. | 433 | * kernel but generic memory management system is still entirely uninitialized. |
434 | * | 434 | * |
435 | * o bootmem_init() | 435 | * o bootmem_init() |
436 | * o sparse_init() | 436 | * o sparse_init() |
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index 85f700e58131..b42e71c71119 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c | |||
@@ -65,7 +65,7 @@ asiduse smtc_live_asid[MAX_SMTC_TLBS][MAX_SMTC_ASIDS]; | |||
65 | static atomic_t ipi_timer_latch[NR_CPUS]; | 65 | static atomic_t ipi_timer_latch[NR_CPUS]; |
66 | 66 | ||
67 | /* | 67 | /* |
68 | * Number of InterProcessor Interupt (IPI) message buffers to allocate | 68 | * Number of InterProcessor Interrupt (IPI) message buffers to allocate |
69 | */ | 69 | */ |
70 | 70 | ||
71 | #define IPIBUF_PER_CPU 4 | 71 | #define IPIBUF_PER_CPU 4 |
@@ -780,7 +780,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action) | |||
780 | if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { | 780 | if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { |
781 | if (type == SMTC_CLOCK_TICK) | 781 | if (type == SMTC_CLOCK_TICK) |
782 | atomic_inc(&ipi_timer_latch[cpu]); | 782 | atomic_inc(&ipi_timer_latch[cpu]); |
783 | /* If not on same VPE, enqueue and send cross-VPE interupt */ | 783 | /* If not on same VPE, enqueue and send cross-VPE interrupt */ |
784 | smtc_ipi_nq(&IPIQ[cpu], pipi); | 784 | smtc_ipi_nq(&IPIQ[cpu], pipi); |
785 | LOCK_CORE_PRA(); | 785 | LOCK_CORE_PRA(); |
786 | settc(cpu_data[cpu].tc_id); | 786 | settc(cpu_data[cpu].tc_id); |
@@ -1063,7 +1063,7 @@ static void setup_cross_vpe_interrupts(unsigned int nvpe) | |||
1063 | return; | 1063 | return; |
1064 | 1064 | ||
1065 | if (!cpu_has_vint) | 1065 | if (!cpu_has_vint) |
1066 | panic("SMTC Kernel requires Vectored Interupt support"); | 1066 | panic("SMTC Kernel requires Vectored Interrupt support"); |
1067 | 1067 | ||
1068 | set_vi_handler(MIPS_CPU_IPI_IRQ, ipi_irq_dispatch); | 1068 | set_vi_handler(MIPS_CPU_IPI_IRQ, ipi_irq_dispatch); |
1069 | 1069 | ||
diff --git a/arch/mips/mm/Makefile b/arch/mips/mm/Makefile index 32fd5db95774..c6f832e0f41c 100644 --- a/arch/mips/mm/Makefile +++ b/arch/mips/mm/Makefile | |||
@@ -3,7 +3,8 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y += cache.o dma-default.o extable.o fault.o \ | 5 | obj-y += cache.o dma-default.o extable.o fault.o \ |
6 | init.o pgtable.o tlbex.o tlbex-fault.o | 6 | init.o pgtable.o tlbex.o tlbex-fault.o \ |
7 | uasm.o | ||
7 | 8 | ||
8 | obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o | 9 | obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o |
9 | obj-$(CONFIG_64BIT) += pgtable-64.o | 10 | obj-$(CONFIG_64BIT) += pgtable-64.o |
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 02bd180f0e02..53ec05267a98 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -1101,7 +1101,7 @@ static void __init setup_scache(void) | |||
1101 | /* | 1101 | /* |
1102 | * Do the probing thing on R4000SC and R4400SC processors. Other | 1102 | * Do the probing thing on R4000SC and R4400SC processors. Other |
1103 | * processors don't have a S-cache that would be relevant to the | 1103 | * processors don't have a S-cache that would be relevant to the |
1104 | * Linux memory managment. | 1104 | * Linux memory management. |
1105 | */ | 1105 | */ |
1106 | switch (c->cputype) { | 1106 | switch (c->cputype) { |
1107 | case CPU_R4000SC: | 1107 | case CPU_R4000SC: |
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index d026302e0ecc..218a6cc415e8 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * Synthesize TLB refill handlers at runtime. | 6 | * Synthesize TLB refill handlers at runtime. |
7 | * | 7 | * |
8 | * Copyright (C) 2004,2005,2006 by Thiemo Seufer | 8 | * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer |
9 | * Copyright (C) 2005, 2007 Maciej W. Rozycki | 9 | * Copyright (C) 2005, 2007 Maciej W. Rozycki |
10 | * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) | 10 | * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) |
11 | * | 11 | * |
@@ -24,12 +24,11 @@ | |||
24 | #include <linux/string.h> | 24 | #include <linux/string.h> |
25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
26 | 26 | ||
27 | #include <asm/bugs.h> | ||
28 | #include <asm/mmu_context.h> | 27 | #include <asm/mmu_context.h> |
29 | #include <asm/inst.h> | ||
30 | #include <asm/elf.h> | ||
31 | #include <asm/war.h> | 28 | #include <asm/war.h> |
32 | 29 | ||
30 | #include "uasm.h" | ||
31 | |||
33 | static inline int r45k_bvahwbug(void) | 32 | static inline int r45k_bvahwbug(void) |
34 | { | 33 | { |
35 | /* XXX: We should probe for the presence of this bug, but we don't. */ | 34 | /* XXX: We should probe for the presence of this bug, but we don't. */ |
@@ -67,371 +66,9 @@ static int __init m4kc_tlbp_war(void) | |||
67 | (PRID_COMP_MIPS | PRID_IMP_4KC); | 66 | (PRID_COMP_MIPS | PRID_IMP_4KC); |
68 | } | 67 | } |
69 | 68 | ||
70 | /* | 69 | /* Handle labels (which must be positive integers). */ |
71 | * A little micro-assembler, intended for TLB refill handler | ||
72 | * synthesizing. It is intentionally kept simple, does only support | ||
73 | * a subset of instructions, and does not try to hide pipeline effects | ||
74 | * like branch delay slots. | ||
75 | */ | ||
76 | |||
77 | enum fields | ||
78 | { | ||
79 | RS = 0x001, | ||
80 | RT = 0x002, | ||
81 | RD = 0x004, | ||
82 | RE = 0x008, | ||
83 | SIMM = 0x010, | ||
84 | UIMM = 0x020, | ||
85 | BIMM = 0x040, | ||
86 | JIMM = 0x080, | ||
87 | FUNC = 0x100, | ||
88 | SET = 0x200 | ||
89 | }; | ||
90 | |||
91 | #define OP_MASK 0x3f | ||
92 | #define OP_SH 26 | ||
93 | #define RS_MASK 0x1f | ||
94 | #define RS_SH 21 | ||
95 | #define RT_MASK 0x1f | ||
96 | #define RT_SH 16 | ||
97 | #define RD_MASK 0x1f | ||
98 | #define RD_SH 11 | ||
99 | #define RE_MASK 0x1f | ||
100 | #define RE_SH 6 | ||
101 | #define IMM_MASK 0xffff | ||
102 | #define IMM_SH 0 | ||
103 | #define JIMM_MASK 0x3ffffff | ||
104 | #define JIMM_SH 0 | ||
105 | #define FUNC_MASK 0x3f | ||
106 | #define FUNC_SH 0 | ||
107 | #define SET_MASK 0x7 | ||
108 | #define SET_SH 0 | ||
109 | |||
110 | enum opcode { | ||
111 | insn_invalid, | ||
112 | insn_addu, insn_addiu, insn_and, insn_andi, insn_beq, | ||
113 | insn_beql, insn_bgez, insn_bgezl, insn_bltz, insn_bltzl, | ||
114 | insn_bne, insn_daddu, insn_daddiu, insn_dmfc0, insn_dmtc0, | ||
115 | insn_dsll, insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32, | ||
116 | insn_dsubu, insn_eret, insn_j, insn_jal, insn_jr, insn_ld, | ||
117 | insn_ll, insn_lld, insn_lui, insn_lw, insn_mfc0, insn_mtc0, | ||
118 | insn_ori, insn_rfe, insn_sc, insn_scd, insn_sd, insn_sll, | ||
119 | insn_sra, insn_srl, insn_subu, insn_sw, insn_tlbp, insn_tlbwi, | ||
120 | insn_tlbwr, insn_xor, insn_xori | ||
121 | }; | ||
122 | |||
123 | struct insn { | ||
124 | enum opcode opcode; | ||
125 | u32 match; | ||
126 | enum fields fields; | ||
127 | }; | ||
128 | |||
129 | /* This macro sets the non-variable bits of an instruction. */ | ||
130 | #define M(a, b, c, d, e, f) \ | ||
131 | ((a) << OP_SH \ | ||
132 | | (b) << RS_SH \ | ||
133 | | (c) << RT_SH \ | ||
134 | | (d) << RD_SH \ | ||
135 | | (e) << RE_SH \ | ||
136 | | (f) << FUNC_SH) | ||
137 | |||
138 | static struct insn insn_table[] __initdata = { | ||
139 | { insn_addiu, M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
140 | { insn_addu, M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD }, | ||
141 | { insn_and, M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD }, | ||
142 | { insn_andi, M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
143 | { insn_beq, M(beq_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
144 | { insn_beql, M(beql_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
145 | { insn_bgez, M(bcond_op, 0, bgez_op, 0, 0, 0), RS | BIMM }, | ||
146 | { insn_bgezl, M(bcond_op, 0, bgezl_op, 0, 0, 0), RS | BIMM }, | ||
147 | { insn_bltz, M(bcond_op, 0, bltz_op, 0, 0, 0), RS | BIMM }, | ||
148 | { insn_bltzl, M(bcond_op, 0, bltzl_op, 0, 0, 0), RS | BIMM }, | ||
149 | { insn_bne, M(bne_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
150 | { insn_daddiu, M(daddiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
151 | { insn_daddu, M(spec_op, 0, 0, 0, 0, daddu_op), RS | RT | RD }, | ||
152 | { insn_dmfc0, M(cop0_op, dmfc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
153 | { insn_dmtc0, M(cop0_op, dmtc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
154 | { insn_dsll, M(spec_op, 0, 0, 0, 0, dsll_op), RT | RD | RE }, | ||
155 | { insn_dsll32, M(spec_op, 0, 0, 0, 0, dsll32_op), RT | RD | RE }, | ||
156 | { insn_dsra, M(spec_op, 0, 0, 0, 0, dsra_op), RT | RD | RE }, | ||
157 | { insn_dsrl, M(spec_op, 0, 0, 0, 0, dsrl_op), RT | RD | RE }, | ||
158 | { insn_dsrl32, M(spec_op, 0, 0, 0, 0, dsrl32_op), RT | RD | RE }, | ||
159 | { insn_dsubu, M(spec_op, 0, 0, 0, 0, dsubu_op), RS | RT | RD }, | ||
160 | { insn_eret, M(cop0_op, cop_op, 0, 0, 0, eret_op), 0 }, | ||
161 | { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM }, | ||
162 | { insn_jal, M(jal_op, 0, 0, 0, 0, 0), JIMM }, | ||
163 | { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, | ||
164 | { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
165 | { insn_ll, M(ll_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
166 | { insn_lld, M(lld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
167 | { insn_lui, M(lui_op, 0, 0, 0, 0, 0), RT | SIMM }, | ||
168 | { insn_lw, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
169 | { insn_mfc0, M(cop0_op, mfc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
170 | { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
171 | { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
172 | { insn_rfe, M(cop0_op, cop_op, 0, 0, 0, rfe_op), 0 }, | ||
173 | { insn_sc, M(sc_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
174 | { insn_scd, M(scd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
175 | { insn_sd, M(sd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
176 | { insn_sll, M(spec_op, 0, 0, 0, 0, sll_op), RT | RD | RE }, | ||
177 | { insn_sra, M(spec_op, 0, 0, 0, 0, sra_op), RT | RD | RE }, | ||
178 | { insn_srl, M(spec_op, 0, 0, 0, 0, srl_op), RT | RD | RE }, | ||
179 | { insn_subu, M(spec_op, 0, 0, 0, 0, subu_op), RS | RT | RD }, | ||
180 | { insn_sw, M(sw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
181 | { insn_tlbp, M(cop0_op, cop_op, 0, 0, 0, tlbp_op), 0 }, | ||
182 | { insn_tlbwi, M(cop0_op, cop_op, 0, 0, 0, tlbwi_op), 0 }, | ||
183 | { insn_tlbwr, M(cop0_op, cop_op, 0, 0, 0, tlbwr_op), 0 }, | ||
184 | { insn_xor, M(spec_op, 0, 0, 0, 0, xor_op), RS | RT | RD }, | ||
185 | { insn_xori, M(xori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
186 | { insn_invalid, 0, 0 } | ||
187 | }; | ||
188 | |||
189 | #undef M | ||
190 | |||
191 | static u32 __init build_rs(u32 arg) | ||
192 | { | ||
193 | if (arg & ~RS_MASK) | ||
194 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
195 | |||
196 | return (arg & RS_MASK) << RS_SH; | ||
197 | } | ||
198 | |||
199 | static u32 __init build_rt(u32 arg) | ||
200 | { | ||
201 | if (arg & ~RT_MASK) | ||
202 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
203 | |||
204 | return (arg & RT_MASK) << RT_SH; | ||
205 | } | ||
206 | |||
207 | static u32 __init build_rd(u32 arg) | ||
208 | { | ||
209 | if (arg & ~RD_MASK) | ||
210 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
211 | |||
212 | return (arg & RD_MASK) << RD_SH; | ||
213 | } | ||
214 | |||
215 | static u32 __init build_re(u32 arg) | ||
216 | { | ||
217 | if (arg & ~RE_MASK) | ||
218 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
219 | |||
220 | return (arg & RE_MASK) << RE_SH; | ||
221 | } | ||
222 | |||
223 | static u32 __init build_simm(s32 arg) | ||
224 | { | ||
225 | if (arg > 0x7fff || arg < -0x8000) | ||
226 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
227 | |||
228 | return arg & 0xffff; | ||
229 | } | ||
230 | |||
231 | static u32 __init build_uimm(u32 arg) | ||
232 | { | ||
233 | if (arg & ~IMM_MASK) | ||
234 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
235 | |||
236 | return arg & IMM_MASK; | ||
237 | } | ||
238 | |||
239 | static u32 __init build_bimm(s32 arg) | ||
240 | { | ||
241 | if (arg > 0x1ffff || arg < -0x20000) | ||
242 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
243 | |||
244 | if (arg & 0x3) | ||
245 | printk(KERN_WARNING "Invalid TLB synthesizer branch target\n"); | ||
246 | |||
247 | return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff); | ||
248 | } | ||
249 | |||
250 | static u32 __init build_jimm(u32 arg) | ||
251 | { | ||
252 | if (arg & ~((JIMM_MASK) << 2)) | ||
253 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
254 | |||
255 | return (arg >> 2) & JIMM_MASK; | ||
256 | } | ||
257 | |||
258 | static u32 __init build_func(u32 arg) | ||
259 | { | ||
260 | if (arg & ~FUNC_MASK) | ||
261 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
262 | |||
263 | return arg & FUNC_MASK; | ||
264 | } | ||
265 | |||
266 | static u32 __init build_set(u32 arg) | ||
267 | { | ||
268 | if (arg & ~SET_MASK) | ||
269 | printk(KERN_WARNING "TLB synthesizer field overflow\n"); | ||
270 | |||
271 | return arg & SET_MASK; | ||
272 | } | ||
273 | |||
274 | /* | ||
275 | * The order of opcode arguments is implicitly left to right, | ||
276 | * starting with RS and ending with FUNC or IMM. | ||
277 | */ | ||
278 | static void __init build_insn(u32 **buf, enum opcode opc, ...) | ||
279 | { | ||
280 | struct insn *ip = NULL; | ||
281 | unsigned int i; | ||
282 | va_list ap; | ||
283 | u32 op; | ||
284 | |||
285 | for (i = 0; insn_table[i].opcode != insn_invalid; i++) | ||
286 | if (insn_table[i].opcode == opc) { | ||
287 | ip = &insn_table[i]; | ||
288 | break; | ||
289 | } | ||
290 | |||
291 | if (!ip || (opc == insn_daddiu && r4k_daddiu_bug())) | ||
292 | panic("Unsupported TLB synthesizer instruction %d", opc); | ||
293 | |||
294 | op = ip->match; | ||
295 | va_start(ap, opc); | ||
296 | if (ip->fields & RS) op |= build_rs(va_arg(ap, u32)); | ||
297 | if (ip->fields & RT) op |= build_rt(va_arg(ap, u32)); | ||
298 | if (ip->fields & RD) op |= build_rd(va_arg(ap, u32)); | ||
299 | if (ip->fields & RE) op |= build_re(va_arg(ap, u32)); | ||
300 | if (ip->fields & SIMM) op |= build_simm(va_arg(ap, s32)); | ||
301 | if (ip->fields & UIMM) op |= build_uimm(va_arg(ap, u32)); | ||
302 | if (ip->fields & BIMM) op |= build_bimm(va_arg(ap, s32)); | ||
303 | if (ip->fields & JIMM) op |= build_jimm(va_arg(ap, u32)); | ||
304 | if (ip->fields & FUNC) op |= build_func(va_arg(ap, u32)); | ||
305 | if (ip->fields & SET) op |= build_set(va_arg(ap, u32)); | ||
306 | va_end(ap); | ||
307 | |||
308 | **buf = op; | ||
309 | (*buf)++; | ||
310 | } | ||
311 | |||
312 | #define I_u1u2u3(op) \ | ||
313 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
314 | unsigned int b, unsigned int c) \ | ||
315 | { \ | ||
316 | build_insn(buf, insn##op, a, b, c); \ | ||
317 | } | ||
318 | |||
319 | #define I_u2u1u3(op) \ | ||
320 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
321 | unsigned int b, unsigned int c) \ | ||
322 | { \ | ||
323 | build_insn(buf, insn##op, b, a, c); \ | ||
324 | } | ||
325 | |||
326 | #define I_u3u1u2(op) \ | ||
327 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
328 | unsigned int b, unsigned int c) \ | ||
329 | { \ | ||
330 | build_insn(buf, insn##op, b, c, a); \ | ||
331 | } | ||
332 | |||
333 | #define I_u1u2s3(op) \ | ||
334 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
335 | unsigned int b, signed int c) \ | ||
336 | { \ | ||
337 | build_insn(buf, insn##op, a, b, c); \ | ||
338 | } | ||
339 | |||
340 | #define I_u2s3u1(op) \ | ||
341 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
342 | signed int b, unsigned int c) \ | ||
343 | { \ | ||
344 | build_insn(buf, insn##op, c, a, b); \ | ||
345 | } | ||
346 | |||
347 | #define I_u2u1s3(op) \ | ||
348 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
349 | unsigned int b, signed int c) \ | ||
350 | { \ | ||
351 | build_insn(buf, insn##op, b, a, c); \ | ||
352 | } | ||
353 | |||
354 | #define I_u1u2(op) \ | ||
355 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
356 | unsigned int b) \ | ||
357 | { \ | ||
358 | build_insn(buf, insn##op, a, b); \ | ||
359 | } | ||
360 | |||
361 | #define I_u1s2(op) \ | ||
362 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a, \ | ||
363 | signed int b) \ | ||
364 | { \ | ||
365 | build_insn(buf, insn##op, a, b); \ | ||
366 | } | ||
367 | |||
368 | #define I_u1(op) \ | ||
369 | static void __init __maybe_unused i##op(u32 **buf, unsigned int a) \ | ||
370 | { \ | ||
371 | build_insn(buf, insn##op, a); \ | ||
372 | } | ||
373 | |||
374 | #define I_0(op) \ | ||
375 | static void __init __maybe_unused i##op(u32 **buf) \ | ||
376 | { \ | ||
377 | build_insn(buf, insn##op); \ | ||
378 | } | ||
379 | |||
380 | I_u2u1s3(_addiu); | ||
381 | I_u3u1u2(_addu); | ||
382 | I_u2u1u3(_andi); | ||
383 | I_u3u1u2(_and); | ||
384 | I_u1u2s3(_beq); | ||
385 | I_u1u2s3(_beql); | ||
386 | I_u1s2(_bgez); | ||
387 | I_u1s2(_bgezl); | ||
388 | I_u1s2(_bltz); | ||
389 | I_u1s2(_bltzl); | ||
390 | I_u1u2s3(_bne); | ||
391 | I_u1u2u3(_dmfc0); | ||
392 | I_u1u2u3(_dmtc0); | ||
393 | I_u2u1s3(_daddiu); | ||
394 | I_u3u1u2(_daddu); | ||
395 | I_u2u1u3(_dsll); | ||
396 | I_u2u1u3(_dsll32); | ||
397 | I_u2u1u3(_dsra); | ||
398 | I_u2u1u3(_dsrl); | ||
399 | I_u2u1u3(_dsrl32); | ||
400 | I_u3u1u2(_dsubu); | ||
401 | I_0(_eret); | ||
402 | I_u1(_j); | ||
403 | I_u1(_jal); | ||
404 | I_u1(_jr); | ||
405 | I_u2s3u1(_ld); | ||
406 | I_u2s3u1(_ll); | ||
407 | I_u2s3u1(_lld); | ||
408 | I_u1s2(_lui); | ||
409 | I_u2s3u1(_lw); | ||
410 | I_u1u2u3(_mfc0); | ||
411 | I_u1u2u3(_mtc0); | ||
412 | I_u2u1u3(_ori); | ||
413 | I_0(_rfe); | ||
414 | I_u2s3u1(_sc); | ||
415 | I_u2s3u1(_scd); | ||
416 | I_u2s3u1(_sd); | ||
417 | I_u2u1u3(_sll); | ||
418 | I_u2u1u3(_sra); | ||
419 | I_u2u1u3(_srl); | ||
420 | I_u3u1u2(_subu); | ||
421 | I_u2s3u1(_sw); | ||
422 | I_0(_tlbp); | ||
423 | I_0(_tlbwi); | ||
424 | I_0(_tlbwr); | ||
425 | I_u3u1u2(_xor) | ||
426 | I_u2u1u3(_xori); | ||
427 | |||
428 | /* | ||
429 | * handling labels | ||
430 | */ | ||
431 | |||
432 | enum label_id { | 70 | enum label_id { |
433 | label_invalid, | 71 | label_second_part = 1, |
434 | label_second_part, | ||
435 | label_leave, | 72 | label_leave, |
436 | #ifdef MODULE_START | 73 | #ifdef MODULE_START |
437 | label_module_alloc, | 74 | label_module_alloc, |
@@ -447,278 +84,20 @@ enum label_id { | |||
447 | label_r3000_write_probe_fail, | 84 | label_r3000_write_probe_fail, |
448 | }; | 85 | }; |
449 | 86 | ||
450 | struct label { | 87 | UASM_L_LA(_second_part) |
451 | u32 *addr; | 88 | UASM_L_LA(_leave) |
452 | enum label_id lab; | ||
453 | }; | ||
454 | |||
455 | static void __init build_label(struct label **lab, u32 *addr, | ||
456 | enum label_id l) | ||
457 | { | ||
458 | (*lab)->addr = addr; | ||
459 | (*lab)->lab = l; | ||
460 | (*lab)++; | ||
461 | } | ||
462 | |||
463 | #define L_LA(lb) \ | ||
464 | static inline void __init l##lb(struct label **lab, u32 *addr) \ | ||
465 | { \ | ||
466 | build_label(lab, addr, label##lb); \ | ||
467 | } | ||
468 | |||
469 | L_LA(_second_part) | ||
470 | L_LA(_leave) | ||
471 | #ifdef MODULE_START | 89 | #ifdef MODULE_START |
472 | L_LA(_module_alloc) | 90 | UASM_L_LA(_module_alloc) |
473 | #endif | ||
474 | L_LA(_vmalloc) | ||
475 | L_LA(_vmalloc_done) | ||
476 | L_LA(_tlbw_hazard) | ||
477 | L_LA(_split) | ||
478 | L_LA(_nopage_tlbl) | ||
479 | L_LA(_nopage_tlbs) | ||
480 | L_LA(_nopage_tlbm) | ||
481 | L_LA(_smp_pgtable_change) | ||
482 | L_LA(_r3000_write_probe_fail) | ||
483 | |||
484 | /* convenience macros for instructions */ | ||
485 | #ifdef CONFIG_64BIT | ||
486 | # define i_LW(buf, rs, rt, off) i_ld(buf, rs, rt, off) | ||
487 | # define i_SW(buf, rs, rt, off) i_sd(buf, rs, rt, off) | ||
488 | # define i_SLL(buf, rs, rt, sh) i_dsll(buf, rs, rt, sh) | ||
489 | # define i_SRA(buf, rs, rt, sh) i_dsra(buf, rs, rt, sh) | ||
490 | # define i_SRL(buf, rs, rt, sh) i_dsrl(buf, rs, rt, sh) | ||
491 | # define i_MFC0(buf, rt, rd...) i_dmfc0(buf, rt, rd) | ||
492 | # define i_MTC0(buf, rt, rd...) i_dmtc0(buf, rt, rd) | ||
493 | # define i_ADDIU(buf, rs, rt, val) i_daddiu(buf, rs, rt, val) | ||
494 | # define i_ADDU(buf, rs, rt, rd) i_daddu(buf, rs, rt, rd) | ||
495 | # define i_SUBU(buf, rs, rt, rd) i_dsubu(buf, rs, rt, rd) | ||
496 | # define i_LL(buf, rs, rt, off) i_lld(buf, rs, rt, off) | ||
497 | # define i_SC(buf, rs, rt, off) i_scd(buf, rs, rt, off) | ||
498 | #else | ||
499 | # define i_LW(buf, rs, rt, off) i_lw(buf, rs, rt, off) | ||
500 | # define i_SW(buf, rs, rt, off) i_sw(buf, rs, rt, off) | ||
501 | # define i_SLL(buf, rs, rt, sh) i_sll(buf, rs, rt, sh) | ||
502 | # define i_SRA(buf, rs, rt, sh) i_sra(buf, rs, rt, sh) | ||
503 | # define i_SRL(buf, rs, rt, sh) i_srl(buf, rs, rt, sh) | ||
504 | # define i_MFC0(buf, rt, rd...) i_mfc0(buf, rt, rd) | ||
505 | # define i_MTC0(buf, rt, rd...) i_mtc0(buf, rt, rd) | ||
506 | # define i_ADDIU(buf, rs, rt, val) i_addiu(buf, rs, rt, val) | ||
507 | # define i_ADDU(buf, rs, rt, rd) i_addu(buf, rs, rt, rd) | ||
508 | # define i_SUBU(buf, rs, rt, rd) i_subu(buf, rs, rt, rd) | ||
509 | # define i_LL(buf, rs, rt, off) i_ll(buf, rs, rt, off) | ||
510 | # define i_SC(buf, rs, rt, off) i_sc(buf, rs, rt, off) | ||
511 | #endif | ||
512 | |||
513 | #define i_b(buf, off) i_beq(buf, 0, 0, off) | ||
514 | #define i_beqz(buf, rs, off) i_beq(buf, rs, 0, off) | ||
515 | #define i_beqzl(buf, rs, off) i_beql(buf, rs, 0, off) | ||
516 | #define i_bnez(buf, rs, off) i_bne(buf, rs, 0, off) | ||
517 | #define i_bnezl(buf, rs, off) i_bnel(buf, rs, 0, off) | ||
518 | #define i_move(buf, a, b) i_ADDU(buf, a, 0, b) | ||
519 | #define i_nop(buf) i_sll(buf, 0, 0, 0) | ||
520 | #define i_ssnop(buf) i_sll(buf, 0, 0, 1) | ||
521 | #define i_ehb(buf) i_sll(buf, 0, 0, 3) | ||
522 | |||
523 | static int __init __maybe_unused in_compat_space_p(long addr) | ||
524 | { | ||
525 | /* Is this address in 32bit compat space? */ | ||
526 | #ifdef CONFIG_64BIT | ||
527 | return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L); | ||
528 | #else | ||
529 | return 1; | ||
530 | #endif | 91 | #endif |
531 | } | 92 | UASM_L_LA(_vmalloc) |
532 | 93 | UASM_L_LA(_vmalloc_done) | |
533 | static int __init __maybe_unused rel_highest(long val) | 94 | UASM_L_LA(_tlbw_hazard) |
534 | { | 95 | UASM_L_LA(_split) |
535 | #ifdef CONFIG_64BIT | 96 | UASM_L_LA(_nopage_tlbl) |
536 | return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000; | 97 | UASM_L_LA(_nopage_tlbs) |
537 | #else | 98 | UASM_L_LA(_nopage_tlbm) |
538 | return 0; | 99 | UASM_L_LA(_smp_pgtable_change) |
539 | #endif | 100 | UASM_L_LA(_r3000_write_probe_fail) |
540 | } | ||
541 | |||
542 | static int __init __maybe_unused rel_higher(long val) | ||
543 | { | ||
544 | #ifdef CONFIG_64BIT | ||
545 | return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000; | ||
546 | #else | ||
547 | return 0; | ||
548 | #endif | ||
549 | } | ||
550 | |||
551 | static int __init rel_hi(long val) | ||
552 | { | ||
553 | return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000; | ||
554 | } | ||
555 | |||
556 | static int __init rel_lo(long val) | ||
557 | { | ||
558 | return ((val & 0xffff) ^ 0x8000) - 0x8000; | ||
559 | } | ||
560 | |||
561 | static void __init i_LA_mostly(u32 **buf, unsigned int rs, long addr) | ||
562 | { | ||
563 | if (!in_compat_space_p(addr)) { | ||
564 | i_lui(buf, rs, rel_highest(addr)); | ||
565 | if (rel_higher(addr)) | ||
566 | i_daddiu(buf, rs, rs, rel_higher(addr)); | ||
567 | if (rel_hi(addr)) { | ||
568 | i_dsll(buf, rs, rs, 16); | ||
569 | i_daddiu(buf, rs, rs, rel_hi(addr)); | ||
570 | i_dsll(buf, rs, rs, 16); | ||
571 | } else | ||
572 | i_dsll32(buf, rs, rs, 0); | ||
573 | } else | ||
574 | i_lui(buf, rs, rel_hi(addr)); | ||
575 | } | ||
576 | |||
577 | static void __init __maybe_unused i_LA(u32 **buf, unsigned int rs, long addr) | ||
578 | { | ||
579 | i_LA_mostly(buf, rs, addr); | ||
580 | if (rel_lo(addr)) { | ||
581 | if (!in_compat_space_p(addr)) | ||
582 | i_daddiu(buf, rs, rs, rel_lo(addr)); | ||
583 | else | ||
584 | i_addiu(buf, rs, rs, rel_lo(addr)); | ||
585 | } | ||
586 | } | ||
587 | |||
588 | /* | ||
589 | * handle relocations | ||
590 | */ | ||
591 | |||
592 | struct reloc { | ||
593 | u32 *addr; | ||
594 | unsigned int type; | ||
595 | enum label_id lab; | ||
596 | }; | ||
597 | |||
598 | static void __init r_mips_pc16(struct reloc **rel, u32 *addr, | ||
599 | enum label_id l) | ||
600 | { | ||
601 | (*rel)->addr = addr; | ||
602 | (*rel)->type = R_MIPS_PC16; | ||
603 | (*rel)->lab = l; | ||
604 | (*rel)++; | ||
605 | } | ||
606 | |||
607 | static inline void __resolve_relocs(struct reloc *rel, struct label *lab) | ||
608 | { | ||
609 | long laddr = (long)lab->addr; | ||
610 | long raddr = (long)rel->addr; | ||
611 | |||
612 | switch (rel->type) { | ||
613 | case R_MIPS_PC16: | ||
614 | *rel->addr |= build_bimm(laddr - (raddr + 4)); | ||
615 | break; | ||
616 | |||
617 | default: | ||
618 | panic("Unsupported TLB synthesizer relocation %d", | ||
619 | rel->type); | ||
620 | } | ||
621 | } | ||
622 | |||
623 | static void __init resolve_relocs(struct reloc *rel, struct label *lab) | ||
624 | { | ||
625 | struct label *l; | ||
626 | |||
627 | for (; rel->lab != label_invalid; rel++) | ||
628 | for (l = lab; l->lab != label_invalid; l++) | ||
629 | if (rel->lab == l->lab) | ||
630 | __resolve_relocs(rel, l); | ||
631 | } | ||
632 | |||
633 | static void __init move_relocs(struct reloc *rel, u32 *first, u32 *end, | ||
634 | long off) | ||
635 | { | ||
636 | for (; rel->lab != label_invalid; rel++) | ||
637 | if (rel->addr >= first && rel->addr < end) | ||
638 | rel->addr += off; | ||
639 | } | ||
640 | |||
641 | static void __init move_labels(struct label *lab, u32 *first, u32 *end, | ||
642 | long off) | ||
643 | { | ||
644 | for (; lab->lab != label_invalid; lab++) | ||
645 | if (lab->addr >= first && lab->addr < end) | ||
646 | lab->addr += off; | ||
647 | } | ||
648 | |||
649 | static void __init copy_handler(struct reloc *rel, struct label *lab, | ||
650 | u32 *first, u32 *end, u32 *target) | ||
651 | { | ||
652 | long off = (long)(target - first); | ||
653 | |||
654 | memcpy(target, first, (end - first) * sizeof(u32)); | ||
655 | |||
656 | move_relocs(rel, first, end, off); | ||
657 | move_labels(lab, first, end, off); | ||
658 | } | ||
659 | |||
660 | static int __init __maybe_unused insn_has_bdelay(struct reloc *rel, | ||
661 | u32 *addr) | ||
662 | { | ||
663 | for (; rel->lab != label_invalid; rel++) { | ||
664 | if (rel->addr == addr | ||
665 | && (rel->type == R_MIPS_PC16 | ||
666 | || rel->type == R_MIPS_26)) | ||
667 | return 1; | ||
668 | } | ||
669 | |||
670 | return 0; | ||
671 | } | ||
672 | |||
673 | /* convenience functions for labeled branches */ | ||
674 | static void __init __maybe_unused | ||
675 | il_bltz(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) | ||
676 | { | ||
677 | r_mips_pc16(r, *p, l); | ||
678 | i_bltz(p, reg, 0); | ||
679 | } | ||
680 | |||
681 | static void __init __maybe_unused il_b(u32 **p, struct reloc **r, | ||
682 | enum label_id l) | ||
683 | { | ||
684 | r_mips_pc16(r, *p, l); | ||
685 | i_b(p, 0); | ||
686 | } | ||
687 | |||
688 | static void __init il_beqz(u32 **p, struct reloc **r, unsigned int reg, | ||
689 | enum label_id l) | ||
690 | { | ||
691 | r_mips_pc16(r, *p, l); | ||
692 | i_beqz(p, reg, 0); | ||
693 | } | ||
694 | |||
695 | static void __init __maybe_unused | ||
696 | il_beqzl(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) | ||
697 | { | ||
698 | r_mips_pc16(r, *p, l); | ||
699 | i_beqzl(p, reg, 0); | ||
700 | } | ||
701 | |||
702 | static void __init il_bnez(u32 **p, struct reloc **r, unsigned int reg, | ||
703 | enum label_id l) | ||
704 | { | ||
705 | r_mips_pc16(r, *p, l); | ||
706 | i_bnez(p, reg, 0); | ||
707 | } | ||
708 | |||
709 | static void __init il_bgezl(u32 **p, struct reloc **r, unsigned int reg, | ||
710 | enum label_id l) | ||
711 | { | ||
712 | r_mips_pc16(r, *p, l); | ||
713 | i_bgezl(p, reg, 0); | ||
714 | } | ||
715 | |||
716 | static void __init __maybe_unused | ||
717 | il_bgez(u32 **p, struct reloc **r, unsigned int reg, enum label_id l) | ||
718 | { | ||
719 | r_mips_pc16(r, *p, l); | ||
720 | i_bgez(p, reg, 0); | ||
721 | } | ||
722 | 101 | ||
723 | /* | 102 | /* |
724 | * For debug purposes. | 103 | * For debug purposes. |
@@ -752,9 +131,9 @@ static inline void dump_handler(const u32 *handler, int count) | |||
752 | #define C0_XCONTEXT 20, 0 | 131 | #define C0_XCONTEXT 20, 0 |
753 | 132 | ||
754 | #ifdef CONFIG_64BIT | 133 | #ifdef CONFIG_64BIT |
755 | # define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_XCONTEXT) | 134 | # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_XCONTEXT) |
756 | #else | 135 | #else |
757 | # define GET_CONTEXT(buf, reg) i_MFC0(buf, reg, C0_CONTEXT) | 136 | # define GET_CONTEXT(buf, reg) UASM_i_MFC0(buf, reg, C0_CONTEXT) |
758 | #endif | 137 | #endif |
759 | 138 | ||
760 | /* The worst case length of the handler is around 18 instructions for | 139 | /* The worst case length of the handler is around 18 instructions for |
@@ -768,8 +147,8 @@ static inline void dump_handler(const u32 *handler, int count) | |||
768 | static u32 tlb_handler[128] __initdata; | 147 | static u32 tlb_handler[128] __initdata; |
769 | 148 | ||
770 | /* simply assume worst case size for labels and relocs */ | 149 | /* simply assume worst case size for labels and relocs */ |
771 | static struct label labels[128] __initdata; | 150 | static struct uasm_label labels[128] __initdata; |
772 | static struct reloc relocs[128] __initdata; | 151 | static struct uasm_reloc relocs[128] __initdata; |
773 | 152 | ||
774 | /* | 153 | /* |
775 | * The R3000 TLB handler is simple. | 154 | * The R3000 TLB handler is simple. |
@@ -782,29 +161,29 @@ static void __init build_r3000_tlb_refill_handler(void) | |||
782 | memset(tlb_handler, 0, sizeof(tlb_handler)); | 161 | memset(tlb_handler, 0, sizeof(tlb_handler)); |
783 | p = tlb_handler; | 162 | p = tlb_handler; |
784 | 163 | ||
785 | i_mfc0(&p, K0, C0_BADVADDR); | 164 | uasm_i_mfc0(&p, K0, C0_BADVADDR); |
786 | i_lui(&p, K1, rel_hi(pgdc)); /* cp0 delay */ | 165 | uasm_i_lui(&p, K1, uasm_rel_hi(pgdc)); /* cp0 delay */ |
787 | i_lw(&p, K1, rel_lo(pgdc), K1); | 166 | uasm_i_lw(&p, K1, uasm_rel_lo(pgdc), K1); |
788 | i_srl(&p, K0, K0, 22); /* load delay */ | 167 | uasm_i_srl(&p, K0, K0, 22); /* load delay */ |
789 | i_sll(&p, K0, K0, 2); | 168 | uasm_i_sll(&p, K0, K0, 2); |
790 | i_addu(&p, K1, K1, K0); | 169 | uasm_i_addu(&p, K1, K1, K0); |
791 | i_mfc0(&p, K0, C0_CONTEXT); | 170 | uasm_i_mfc0(&p, K0, C0_CONTEXT); |
792 | i_lw(&p, K1, 0, K1); /* cp0 delay */ | 171 | uasm_i_lw(&p, K1, 0, K1); /* cp0 delay */ |
793 | i_andi(&p, K0, K0, 0xffc); /* load delay */ | 172 | uasm_i_andi(&p, K0, K0, 0xffc); /* load delay */ |
794 | i_addu(&p, K1, K1, K0); | 173 | uasm_i_addu(&p, K1, K1, K0); |
795 | i_lw(&p, K0, 0, K1); | 174 | uasm_i_lw(&p, K0, 0, K1); |
796 | i_nop(&p); /* load delay */ | 175 | uasm_i_nop(&p); /* load delay */ |
797 | i_mtc0(&p, K0, C0_ENTRYLO0); | 176 | uasm_i_mtc0(&p, K0, C0_ENTRYLO0); |
798 | i_mfc0(&p, K1, C0_EPC); /* cp0 delay */ | 177 | uasm_i_mfc0(&p, K1, C0_EPC); /* cp0 delay */ |
799 | i_tlbwr(&p); /* cp0 delay */ | 178 | uasm_i_tlbwr(&p); /* cp0 delay */ |
800 | i_jr(&p, K1); | 179 | uasm_i_jr(&p, K1); |
801 | i_rfe(&p); /* branch delay */ | 180 | uasm_i_rfe(&p); /* branch delay */ |
802 | 181 | ||
803 | if (p > tlb_handler + 32) | 182 | if (p > tlb_handler + 32) |
804 | panic("TLB refill handler space exceeded"); | 183 | panic("TLB refill handler space exceeded"); |
805 | 184 | ||
806 | pr_info("Synthesized TLB refill handler (%u instructions).\n", | 185 | pr_debug("Wrote TLB refill handler (%u instructions).\n", |
807 | (unsigned int)(p - tlb_handler)); | 186 | (unsigned int)(p - tlb_handler)); |
808 | 187 | ||
809 | memcpy((void *)ebase, tlb_handler, 0x80); | 188 | memcpy((void *)ebase, tlb_handler, 0x80); |
810 | 189 | ||
@@ -850,12 +229,12 @@ static void __init __maybe_unused build_tlb_probe_entry(u32 **p) | |||
850 | case CPU_R5000: | 229 | case CPU_R5000: |
851 | case CPU_R5000A: | 230 | case CPU_R5000A: |
852 | case CPU_NEVADA: | 231 | case CPU_NEVADA: |
853 | i_nop(p); | 232 | uasm_i_nop(p); |
854 | i_tlbp(p); | 233 | uasm_i_tlbp(p); |
855 | break; | 234 | break; |
856 | 235 | ||
857 | default: | 236 | default: |
858 | i_tlbp(p); | 237 | uasm_i_tlbp(p); |
859 | break; | 238 | break; |
860 | } | 239 | } |
861 | } | 240 | } |
@@ -866,19 +245,19 @@ static void __init __maybe_unused build_tlb_probe_entry(u32 **p) | |||
866 | */ | 245 | */ |
867 | enum tlb_write_entry { tlb_random, tlb_indexed }; | 246 | enum tlb_write_entry { tlb_random, tlb_indexed }; |
868 | 247 | ||
869 | static void __init build_tlb_write_entry(u32 **p, struct label **l, | 248 | static void __init build_tlb_write_entry(u32 **p, struct uasm_label **l, |
870 | struct reloc **r, | 249 | struct uasm_reloc **r, |
871 | enum tlb_write_entry wmode) | 250 | enum tlb_write_entry wmode) |
872 | { | 251 | { |
873 | void(*tlbw)(u32 **) = NULL; | 252 | void(*tlbw)(u32 **) = NULL; |
874 | 253 | ||
875 | switch (wmode) { | 254 | switch (wmode) { |
876 | case tlb_random: tlbw = i_tlbwr; break; | 255 | case tlb_random: tlbw = uasm_i_tlbwr; break; |
877 | case tlb_indexed: tlbw = i_tlbwi; break; | 256 | case tlb_indexed: tlbw = uasm_i_tlbwi; break; |
878 | } | 257 | } |
879 | 258 | ||
880 | if (cpu_has_mips_r2) { | 259 | if (cpu_has_mips_r2) { |
881 | i_ehb(p); | 260 | uasm_i_ehb(p); |
882 | tlbw(p); | 261 | tlbw(p); |
883 | return; | 262 | return; |
884 | } | 263 | } |
@@ -894,19 +273,19 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
894 | * This branch uses up a mtc0 hazard nop slot and saves | 273 | * This branch uses up a mtc0 hazard nop slot and saves |
895 | * two nops after the tlbw instruction. | 274 | * two nops after the tlbw instruction. |
896 | */ | 275 | */ |
897 | il_bgezl(p, r, 0, label_tlbw_hazard); | 276 | uasm_il_bgezl(p, r, 0, label_tlbw_hazard); |
898 | tlbw(p); | 277 | tlbw(p); |
899 | l_tlbw_hazard(l, *p); | 278 | uasm_l_tlbw_hazard(l, *p); |
900 | i_nop(p); | 279 | uasm_i_nop(p); |
901 | break; | 280 | break; |
902 | 281 | ||
903 | case CPU_R4600: | 282 | case CPU_R4600: |
904 | case CPU_R4700: | 283 | case CPU_R4700: |
905 | case CPU_R5000: | 284 | case CPU_R5000: |
906 | case CPU_R5000A: | 285 | case CPU_R5000A: |
907 | i_nop(p); | 286 | uasm_i_nop(p); |
908 | tlbw(p); | 287 | tlbw(p); |
909 | i_nop(p); | 288 | uasm_i_nop(p); |
910 | break; | 289 | break; |
911 | 290 | ||
912 | case CPU_R4300: | 291 | case CPU_R4300: |
@@ -920,7 +299,7 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
920 | case CPU_AU1210: | 299 | case CPU_AU1210: |
921 | case CPU_AU1250: | 300 | case CPU_AU1250: |
922 | case CPU_PR4450: | 301 | case CPU_PR4450: |
923 | i_nop(p); | 302 | uasm_i_nop(p); |
924 | tlbw(p); | 303 | tlbw(p); |
925 | break; | 304 | break; |
926 | 305 | ||
@@ -937,26 +316,26 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
937 | case CPU_BCM4710: | 316 | case CPU_BCM4710: |
938 | case CPU_LOONGSON2: | 317 | case CPU_LOONGSON2: |
939 | if (m4kc_tlbp_war()) | 318 | if (m4kc_tlbp_war()) |
940 | i_nop(p); | 319 | uasm_i_nop(p); |
941 | tlbw(p); | 320 | tlbw(p); |
942 | break; | 321 | break; |
943 | 322 | ||
944 | case CPU_NEVADA: | 323 | case CPU_NEVADA: |
945 | i_nop(p); /* QED specifies 2 nops hazard */ | 324 | uasm_i_nop(p); /* QED specifies 2 nops hazard */ |
946 | /* | 325 | /* |
947 | * This branch uses up a mtc0 hazard nop slot and saves | 326 | * This branch uses up a mtc0 hazard nop slot and saves |
948 | * a nop after the tlbw instruction. | 327 | * a nop after the tlbw instruction. |
949 | */ | 328 | */ |
950 | il_bgezl(p, r, 0, label_tlbw_hazard); | 329 | uasm_il_bgezl(p, r, 0, label_tlbw_hazard); |
951 | tlbw(p); | 330 | tlbw(p); |
952 | l_tlbw_hazard(l, *p); | 331 | uasm_l_tlbw_hazard(l, *p); |
953 | break; | 332 | break; |
954 | 333 | ||
955 | case CPU_RM7000: | 334 | case CPU_RM7000: |
956 | i_nop(p); | 335 | uasm_i_nop(p); |
957 | i_nop(p); | 336 | uasm_i_nop(p); |
958 | i_nop(p); | 337 | uasm_i_nop(p); |
959 | i_nop(p); | 338 | uasm_i_nop(p); |
960 | tlbw(p); | 339 | tlbw(p); |
961 | break; | 340 | break; |
962 | 341 | ||
@@ -967,15 +346,15 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
967 | * cpu cycles and use for data translations should not occur | 346 | * cpu cycles and use for data translations should not occur |
968 | * for 3 cpu cycles. | 347 | * for 3 cpu cycles. |
969 | */ | 348 | */ |
970 | i_ssnop(p); | 349 | uasm_i_ssnop(p); |
971 | i_ssnop(p); | 350 | uasm_i_ssnop(p); |
972 | i_ssnop(p); | 351 | uasm_i_ssnop(p); |
973 | i_ssnop(p); | 352 | uasm_i_ssnop(p); |
974 | tlbw(p); | 353 | tlbw(p); |
975 | i_ssnop(p); | 354 | uasm_i_ssnop(p); |
976 | i_ssnop(p); | 355 | uasm_i_ssnop(p); |
977 | i_ssnop(p); | 356 | uasm_i_ssnop(p); |
978 | i_ssnop(p); | 357 | uasm_i_ssnop(p); |
979 | break; | 358 | break; |
980 | 359 | ||
981 | case CPU_VR4111: | 360 | case CPU_VR4111: |
@@ -983,18 +362,18 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
983 | case CPU_VR4122: | 362 | case CPU_VR4122: |
984 | case CPU_VR4181: | 363 | case CPU_VR4181: |
985 | case CPU_VR4181A: | 364 | case CPU_VR4181A: |
986 | i_nop(p); | 365 | uasm_i_nop(p); |
987 | i_nop(p); | 366 | uasm_i_nop(p); |
988 | tlbw(p); | 367 | tlbw(p); |
989 | i_nop(p); | 368 | uasm_i_nop(p); |
990 | i_nop(p); | 369 | uasm_i_nop(p); |
991 | break; | 370 | break; |
992 | 371 | ||
993 | case CPU_VR4131: | 372 | case CPU_VR4131: |
994 | case CPU_VR4133: | 373 | case CPU_VR4133: |
995 | case CPU_R5432: | 374 | case CPU_R5432: |
996 | i_nop(p); | 375 | uasm_i_nop(p); |
997 | i_nop(p); | 376 | uasm_i_nop(p); |
998 | tlbw(p); | 377 | tlbw(p); |
999 | break; | 378 | break; |
1000 | 379 | ||
@@ -1011,7 +390,7 @@ static void __init build_tlb_write_entry(u32 **p, struct label **l, | |||
1011 | * TMP will be clobbered, PTR will hold the pmd entry. | 390 | * TMP will be clobbered, PTR will hold the pmd entry. |
1012 | */ | 391 | */ |
1013 | static void __init | 392 | static void __init |
1014 | build_get_pmde64(u32 **p, struct label **l, struct reloc **r, | 393 | build_get_pmde64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
1015 | unsigned int tmp, unsigned int ptr) | 394 | unsigned int tmp, unsigned int ptr) |
1016 | { | 395 | { |
1017 | long pgdc = (long)pgd_current; | 396 | long pgdc = (long)pgd_current; |
@@ -1019,52 +398,52 @@ build_get_pmde64(u32 **p, struct label **l, struct reloc **r, | |||
1019 | /* | 398 | /* |
1020 | * The vmalloc handling is not in the hotpath. | 399 | * The vmalloc handling is not in the hotpath. |
1021 | */ | 400 | */ |
1022 | i_dmfc0(p, tmp, C0_BADVADDR); | 401 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); |
1023 | #ifdef MODULE_START | 402 | #ifdef MODULE_START |
1024 | il_bltz(p, r, tmp, label_module_alloc); | 403 | uasm_il_bltz(p, r, tmp, label_module_alloc); |
1025 | #else | 404 | #else |
1026 | il_bltz(p, r, tmp, label_vmalloc); | 405 | uasm_il_bltz(p, r, tmp, label_vmalloc); |
1027 | #endif | 406 | #endif |
1028 | /* No i_nop needed here, since the next insn doesn't touch TMP. */ | 407 | /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */ |
1029 | 408 | ||
1030 | #ifdef CONFIG_SMP | 409 | #ifdef CONFIG_SMP |
1031 | # ifdef CONFIG_MIPS_MT_SMTC | 410 | # ifdef CONFIG_MIPS_MT_SMTC |
1032 | /* | 411 | /* |
1033 | * SMTC uses TCBind value as "CPU" index | 412 | * SMTC uses TCBind value as "CPU" index |
1034 | */ | 413 | */ |
1035 | i_mfc0(p, ptr, C0_TCBIND); | 414 | uasm_i_mfc0(p, ptr, C0_TCBIND); |
1036 | i_dsrl(p, ptr, ptr, 19); | 415 | uasm_i_dsrl(p, ptr, ptr, 19); |
1037 | # else | 416 | # else |
1038 | /* | 417 | /* |
1039 | * 64 bit SMP running in XKPHYS has smp_processor_id() << 3 | 418 | * 64 bit SMP running in XKPHYS has smp_processor_id() << 3 |
1040 | * stored in CONTEXT. | 419 | * stored in CONTEXT. |
1041 | */ | 420 | */ |
1042 | i_dmfc0(p, ptr, C0_CONTEXT); | 421 | uasm_i_dmfc0(p, ptr, C0_CONTEXT); |
1043 | i_dsrl(p, ptr, ptr, 23); | 422 | uasm_i_dsrl(p, ptr, ptr, 23); |
1044 | #endif | 423 | #endif |
1045 | i_LA_mostly(p, tmp, pgdc); | 424 | UASM_i_LA_mostly(p, tmp, pgdc); |
1046 | i_daddu(p, ptr, ptr, tmp); | 425 | uasm_i_daddu(p, ptr, ptr, tmp); |
1047 | i_dmfc0(p, tmp, C0_BADVADDR); | 426 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); |
1048 | i_ld(p, ptr, rel_lo(pgdc), ptr); | 427 | uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr); |
1049 | #else | 428 | #else |
1050 | i_LA_mostly(p, ptr, pgdc); | 429 | UASM_i_LA_mostly(p, ptr, pgdc); |
1051 | i_ld(p, ptr, rel_lo(pgdc), ptr); | 430 | uasm_i_ld(p, ptr, uasm_rel_lo(pgdc), ptr); |
1052 | #endif | 431 | #endif |
1053 | 432 | ||
1054 | l_vmalloc_done(l, *p); | 433 | uasm_l_vmalloc_done(l, *p); |
1055 | 434 | ||
1056 | if (PGDIR_SHIFT - 3 < 32) /* get pgd offset in bytes */ | 435 | if (PGDIR_SHIFT - 3 < 32) /* get pgd offset in bytes */ |
1057 | i_dsrl(p, tmp, tmp, PGDIR_SHIFT-3); | 436 | uasm_i_dsrl(p, tmp, tmp, PGDIR_SHIFT-3); |
1058 | else | 437 | else |
1059 | i_dsrl32(p, tmp, tmp, PGDIR_SHIFT - 3 - 32); | 438 | uasm_i_dsrl32(p, tmp, tmp, PGDIR_SHIFT - 3 - 32); |
1060 | 439 | ||
1061 | i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3); | 440 | uasm_i_andi(p, tmp, tmp, (PTRS_PER_PGD - 1)<<3); |
1062 | i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */ | 441 | uasm_i_daddu(p, ptr, ptr, tmp); /* add in pgd offset */ |
1063 | i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */ | 442 | uasm_i_dmfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
1064 | i_ld(p, ptr, 0, ptr); /* get pmd pointer */ | 443 | uasm_i_ld(p, ptr, 0, ptr); /* get pmd pointer */ |
1065 | i_dsrl(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */ | 444 | uasm_i_dsrl(p, tmp, tmp, PMD_SHIFT-3); /* get pmd offset in bytes */ |
1066 | i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3); | 445 | uasm_i_andi(p, tmp, tmp, (PTRS_PER_PMD - 1)<<3); |
1067 | i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */ | 446 | uasm_i_daddu(p, ptr, ptr, tmp); /* add in pmd offset */ |
1068 | } | 447 | } |
1069 | 448 | ||
1070 | /* | 449 | /* |
@@ -1072,7 +451,7 @@ build_get_pmde64(u32 **p, struct label **l, struct reloc **r, | |||
1072 | * PTR will hold the pgd for vmalloc. | 451 | * PTR will hold the pgd for vmalloc. |
1073 | */ | 452 | */ |
1074 | static void __init | 453 | static void __init |
1075 | build_get_pgd_vmalloc64(u32 **p, struct label **l, struct reloc **r, | 454 | build_get_pgd_vmalloc64(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
1076 | unsigned int bvaddr, unsigned int ptr) | 455 | unsigned int bvaddr, unsigned int ptr) |
1077 | { | 456 | { |
1078 | long swpd = (long)swapper_pg_dir; | 457 | long swpd = (long)swapper_pg_dir; |
@@ -1080,58 +459,60 @@ build_get_pgd_vmalloc64(u32 **p, struct label **l, struct reloc **r, | |||
1080 | #ifdef MODULE_START | 459 | #ifdef MODULE_START |
1081 | long modd = (long)module_pg_dir; | 460 | long modd = (long)module_pg_dir; |
1082 | 461 | ||
1083 | l_module_alloc(l, *p); | 462 | uasm_l_module_alloc(l, *p); |
1084 | /* | 463 | /* |
1085 | * Assumption: | 464 | * Assumption: |
1086 | * VMALLOC_START >= 0xc000000000000000UL | 465 | * VMALLOC_START >= 0xc000000000000000UL |
1087 | * MODULE_START >= 0xe000000000000000UL | 466 | * MODULE_START >= 0xe000000000000000UL |
1088 | */ | 467 | */ |
1089 | i_SLL(p, ptr, bvaddr, 2); | 468 | UASM_i_SLL(p, ptr, bvaddr, 2); |
1090 | il_bgez(p, r, ptr, label_vmalloc); | 469 | uasm_il_bgez(p, r, ptr, label_vmalloc); |
1091 | 470 | ||
1092 | if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START)) { | 471 | if (uasm_in_compat_space_p(MODULE_START) && |
1093 | i_lui(p, ptr, rel_hi(MODULE_START)); /* delay slot */ | 472 | !uasm_rel_lo(MODULE_START)) { |
473 | uasm_i_lui(p, ptr, uasm_rel_hi(MODULE_START)); /* delay slot */ | ||
1094 | } else { | 474 | } else { |
1095 | /* unlikely configuration */ | 475 | /* unlikely configuration */ |
1096 | i_nop(p); /* delay slot */ | 476 | uasm_i_nop(p); /* delay slot */ |
1097 | i_LA(p, ptr, MODULE_START); | 477 | UASM_i_LA(p, ptr, MODULE_START); |
1098 | } | 478 | } |
1099 | i_dsubu(p, bvaddr, bvaddr, ptr); | 479 | uasm_i_dsubu(p, bvaddr, bvaddr, ptr); |
1100 | 480 | ||
1101 | if (in_compat_space_p(modd) && !rel_lo(modd)) { | 481 | if (uasm_in_compat_space_p(modd) && !uasm_rel_lo(modd)) { |
1102 | il_b(p, r, label_vmalloc_done); | 482 | uasm_il_b(p, r, label_vmalloc_done); |
1103 | i_lui(p, ptr, rel_hi(modd)); | 483 | uasm_i_lui(p, ptr, uasm_rel_hi(modd)); |
1104 | } else { | 484 | } else { |
1105 | i_LA_mostly(p, ptr, modd); | 485 | UASM_i_LA_mostly(p, ptr, modd); |
1106 | il_b(p, r, label_vmalloc_done); | 486 | uasm_il_b(p, r, label_vmalloc_done); |
1107 | if (in_compat_space_p(modd)) | 487 | if (uasm_in_compat_space_p(modd)) |
1108 | i_addiu(p, ptr, ptr, rel_lo(modd)); | 488 | uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(modd)); |
1109 | else | 489 | else |
1110 | i_daddiu(p, ptr, ptr, rel_lo(modd)); | 490 | uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(modd)); |
1111 | } | 491 | } |
1112 | 492 | ||
1113 | l_vmalloc(l, *p); | 493 | uasm_l_vmalloc(l, *p); |
1114 | if (in_compat_space_p(MODULE_START) && !rel_lo(MODULE_START) && | 494 | if (uasm_in_compat_space_p(MODULE_START) && |
495 | !uasm_rel_lo(MODULE_START) && | ||
1115 | MODULE_START << 32 == VMALLOC_START) | 496 | MODULE_START << 32 == VMALLOC_START) |
1116 | i_dsll32(p, ptr, ptr, 0); /* typical case */ | 497 | uasm_i_dsll32(p, ptr, ptr, 0); /* typical case */ |
1117 | else | 498 | else |
1118 | i_LA(p, ptr, VMALLOC_START); | 499 | UASM_i_LA(p, ptr, VMALLOC_START); |
1119 | #else | 500 | #else |
1120 | l_vmalloc(l, *p); | 501 | uasm_l_vmalloc(l, *p); |
1121 | i_LA(p, ptr, VMALLOC_START); | 502 | UASM_i_LA(p, ptr, VMALLOC_START); |
1122 | #endif | 503 | #endif |
1123 | i_dsubu(p, bvaddr, bvaddr, ptr); | 504 | uasm_i_dsubu(p, bvaddr, bvaddr, ptr); |
1124 | 505 | ||
1125 | if (in_compat_space_p(swpd) && !rel_lo(swpd)) { | 506 | if (uasm_in_compat_space_p(swpd) && !uasm_rel_lo(swpd)) { |
1126 | il_b(p, r, label_vmalloc_done); | 507 | uasm_il_b(p, r, label_vmalloc_done); |
1127 | i_lui(p, ptr, rel_hi(swpd)); | 508 | uasm_i_lui(p, ptr, uasm_rel_hi(swpd)); |
1128 | } else { | 509 | } else { |
1129 | i_LA_mostly(p, ptr, swpd); | 510 | UASM_i_LA_mostly(p, ptr, swpd); |
1130 | il_b(p, r, label_vmalloc_done); | 511 | uasm_il_b(p, r, label_vmalloc_done); |
1131 | if (in_compat_space_p(swpd)) | 512 | if (uasm_in_compat_space_p(swpd)) |
1132 | i_addiu(p, ptr, ptr, rel_lo(swpd)); | 513 | uasm_i_addiu(p, ptr, ptr, uasm_rel_lo(swpd)); |
1133 | else | 514 | else |
1134 | i_daddiu(p, ptr, ptr, rel_lo(swpd)); | 515 | uasm_i_daddiu(p, ptr, ptr, uasm_rel_lo(swpd)); |
1135 | } | 516 | } |
1136 | } | 517 | } |
1137 | 518 | ||
@@ -1152,26 +533,26 @@ build_get_pgde32(u32 **p, unsigned int tmp, unsigned int ptr) | |||
1152 | /* | 533 | /* |
1153 | * SMTC uses TCBind value as "CPU" index | 534 | * SMTC uses TCBind value as "CPU" index |
1154 | */ | 535 | */ |
1155 | i_mfc0(p, ptr, C0_TCBIND); | 536 | uasm_i_mfc0(p, ptr, C0_TCBIND); |
1156 | i_LA_mostly(p, tmp, pgdc); | 537 | UASM_i_LA_mostly(p, tmp, pgdc); |
1157 | i_srl(p, ptr, ptr, 19); | 538 | uasm_i_srl(p, ptr, ptr, 19); |
1158 | #else | 539 | #else |
1159 | /* | 540 | /* |
1160 | * smp_processor_id() << 3 is stored in CONTEXT. | 541 | * smp_processor_id() << 3 is stored in CONTEXT. |
1161 | */ | 542 | */ |
1162 | i_mfc0(p, ptr, C0_CONTEXT); | 543 | uasm_i_mfc0(p, ptr, C0_CONTEXT); |
1163 | i_LA_mostly(p, tmp, pgdc); | 544 | UASM_i_LA_mostly(p, tmp, pgdc); |
1164 | i_srl(p, ptr, ptr, 23); | 545 | uasm_i_srl(p, ptr, ptr, 23); |
1165 | #endif | 546 | #endif |
1166 | i_addu(p, ptr, tmp, ptr); | 547 | uasm_i_addu(p, ptr, tmp, ptr); |
1167 | #else | 548 | #else |
1168 | i_LA_mostly(p, ptr, pgdc); | 549 | UASM_i_LA_mostly(p, ptr, pgdc); |
1169 | #endif | 550 | #endif |
1170 | i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */ | 551 | uasm_i_mfc0(p, tmp, C0_BADVADDR); /* get faulting address */ |
1171 | i_lw(p, ptr, rel_lo(pgdc), ptr); | 552 | uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr); |
1172 | i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */ | 553 | uasm_i_srl(p, tmp, tmp, PGDIR_SHIFT); /* get pgd only bits */ |
1173 | i_sll(p, tmp, tmp, PGD_T_LOG2); | 554 | uasm_i_sll(p, tmp, tmp, PGD_T_LOG2); |
1174 | i_addu(p, ptr, ptr, tmp); /* add in pgd offset */ | 555 | uasm_i_addu(p, ptr, ptr, tmp); /* add in pgd offset */ |
1175 | } | 556 | } |
1176 | 557 | ||
1177 | #endif /* !CONFIG_64BIT */ | 558 | #endif /* !CONFIG_64BIT */ |
@@ -1198,8 +579,8 @@ static void __init build_adjust_context(u32 **p, unsigned int ctx) | |||
1198 | } | 579 | } |
1199 | 580 | ||
1200 | if (shift) | 581 | if (shift) |
1201 | i_SRL(p, ctx, ctx, shift); | 582 | UASM_i_SRL(p, ctx, ctx, shift); |
1202 | i_andi(p, ctx, ctx, mask); | 583 | uasm_i_andi(p, ctx, ctx, mask); |
1203 | } | 584 | } |
1204 | 585 | ||
1205 | static void __init build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) | 586 | static void __init build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) |
@@ -1213,18 +594,18 @@ static void __init build_get_ptep(u32 **p, unsigned int tmp, unsigned int ptr) | |||
1213 | */ | 594 | */ |
1214 | switch (current_cpu_type()) { | 595 | switch (current_cpu_type()) { |
1215 | case CPU_NEVADA: | 596 | case CPU_NEVADA: |
1216 | i_LW(p, ptr, 0, ptr); | 597 | UASM_i_LW(p, ptr, 0, ptr); |
1217 | GET_CONTEXT(p, tmp); /* get context reg */ | 598 | GET_CONTEXT(p, tmp); /* get context reg */ |
1218 | break; | 599 | break; |
1219 | 600 | ||
1220 | default: | 601 | default: |
1221 | GET_CONTEXT(p, tmp); /* get context reg */ | 602 | GET_CONTEXT(p, tmp); /* get context reg */ |
1222 | i_LW(p, ptr, 0, ptr); | 603 | UASM_i_LW(p, ptr, 0, ptr); |
1223 | break; | 604 | break; |
1224 | } | 605 | } |
1225 | 606 | ||
1226 | build_adjust_context(p, tmp); | 607 | build_adjust_context(p, tmp); |
1227 | i_ADDU(p, ptr, ptr, tmp); /* add in offset */ | 608 | UASM_i_ADDU(p, ptr, ptr, tmp); /* add in offset */ |
1228 | } | 609 | } |
1229 | 610 | ||
1230 | static void __init build_update_entries(u32 **p, unsigned int tmp, | 611 | static void __init build_update_entries(u32 **p, unsigned int tmp, |
@@ -1236,45 +617,45 @@ static void __init build_update_entries(u32 **p, unsigned int tmp, | |||
1236 | */ | 617 | */ |
1237 | #ifdef CONFIG_64BIT_PHYS_ADDR | 618 | #ifdef CONFIG_64BIT_PHYS_ADDR |
1238 | if (cpu_has_64bits) { | 619 | if (cpu_has_64bits) { |
1239 | i_ld(p, tmp, 0, ptep); /* get even pte */ | 620 | uasm_i_ld(p, tmp, 0, ptep); /* get even pte */ |
1240 | i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ | 621 | uasm_i_ld(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ |
1241 | i_dsrl(p, tmp, tmp, 6); /* convert to entrylo0 */ | 622 | uasm_i_dsrl(p, tmp, tmp, 6); /* convert to entrylo0 */ |
1242 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ | 623 | uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
1243 | i_dsrl(p, ptep, ptep, 6); /* convert to entrylo1 */ | 624 | uasm_i_dsrl(p, ptep, ptep, 6); /* convert to entrylo1 */ |
1244 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ | 625 | uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
1245 | } else { | 626 | } else { |
1246 | int pte_off_even = sizeof(pte_t) / 2; | 627 | int pte_off_even = sizeof(pte_t) / 2; |
1247 | int pte_off_odd = pte_off_even + sizeof(pte_t); | 628 | int pte_off_odd = pte_off_even + sizeof(pte_t); |
1248 | 629 | ||
1249 | /* The pte entries are pre-shifted */ | 630 | /* The pte entries are pre-shifted */ |
1250 | i_lw(p, tmp, pte_off_even, ptep); /* get even pte */ | 631 | uasm_i_lw(p, tmp, pte_off_even, ptep); /* get even pte */ |
1251 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ | 632 | uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
1252 | i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */ | 633 | uasm_i_lw(p, ptep, pte_off_odd, ptep); /* get odd pte */ |
1253 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ | 634 | uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
1254 | } | 635 | } |
1255 | #else | 636 | #else |
1256 | i_LW(p, tmp, 0, ptep); /* get even pte */ | 637 | UASM_i_LW(p, tmp, 0, ptep); /* get even pte */ |
1257 | i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ | 638 | UASM_i_LW(p, ptep, sizeof(pte_t), ptep); /* get odd pte */ |
1258 | if (r45k_bvahwbug()) | 639 | if (r45k_bvahwbug()) |
1259 | build_tlb_probe_entry(p); | 640 | build_tlb_probe_entry(p); |
1260 | i_SRL(p, tmp, tmp, 6); /* convert to entrylo0 */ | 641 | UASM_i_SRL(p, tmp, tmp, 6); /* convert to entrylo0 */ |
1261 | if (r4k_250MHZhwbug()) | 642 | if (r4k_250MHZhwbug()) |
1262 | i_mtc0(p, 0, C0_ENTRYLO0); | 643 | uasm_i_mtc0(p, 0, C0_ENTRYLO0); |
1263 | i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ | 644 | uasm_i_mtc0(p, tmp, C0_ENTRYLO0); /* load it */ |
1264 | i_SRL(p, ptep, ptep, 6); /* convert to entrylo1 */ | 645 | UASM_i_SRL(p, ptep, ptep, 6); /* convert to entrylo1 */ |
1265 | if (r45k_bvahwbug()) | 646 | if (r45k_bvahwbug()) |
1266 | i_mfc0(p, tmp, C0_INDEX); | 647 | uasm_i_mfc0(p, tmp, C0_INDEX); |
1267 | if (r4k_250MHZhwbug()) | 648 | if (r4k_250MHZhwbug()) |
1268 | i_mtc0(p, 0, C0_ENTRYLO1); | 649 | uasm_i_mtc0(p, 0, C0_ENTRYLO1); |
1269 | i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ | 650 | uasm_i_mtc0(p, ptep, C0_ENTRYLO1); /* load it */ |
1270 | #endif | 651 | #endif |
1271 | } | 652 | } |
1272 | 653 | ||
1273 | static void __init build_r4000_tlb_refill_handler(void) | 654 | static void __init build_r4000_tlb_refill_handler(void) |
1274 | { | 655 | { |
1275 | u32 *p = tlb_handler; | 656 | u32 *p = tlb_handler; |
1276 | struct label *l = labels; | 657 | struct uasm_label *l = labels; |
1277 | struct reloc *r = relocs; | 658 | struct uasm_reloc *r = relocs; |
1278 | u32 *f; | 659 | u32 *f; |
1279 | unsigned int final_len; | 660 | unsigned int final_len; |
1280 | 661 | ||
@@ -1287,12 +668,12 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1287 | * create the plain linear handler | 668 | * create the plain linear handler |
1288 | */ | 669 | */ |
1289 | if (bcm1250_m3_war()) { | 670 | if (bcm1250_m3_war()) { |
1290 | i_MFC0(&p, K0, C0_BADVADDR); | 671 | UASM_i_MFC0(&p, K0, C0_BADVADDR); |
1291 | i_MFC0(&p, K1, C0_ENTRYHI); | 672 | UASM_i_MFC0(&p, K1, C0_ENTRYHI); |
1292 | i_xor(&p, K0, K0, K1); | 673 | uasm_i_xor(&p, K0, K0, K1); |
1293 | i_SRL(&p, K0, K0, PAGE_SHIFT + 1); | 674 | UASM_i_SRL(&p, K0, K0, PAGE_SHIFT + 1); |
1294 | il_bnez(&p, &r, K0, label_leave); | 675 | uasm_il_bnez(&p, &r, K0, label_leave); |
1295 | /* No need for i_nop */ | 676 | /* No need for uasm_i_nop */ |
1296 | } | 677 | } |
1297 | 678 | ||
1298 | #ifdef CONFIG_64BIT | 679 | #ifdef CONFIG_64BIT |
@@ -1304,8 +685,8 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1304 | build_get_ptep(&p, K0, K1); | 685 | build_get_ptep(&p, K0, K1); |
1305 | build_update_entries(&p, K0, K1); | 686 | build_update_entries(&p, K0, K1); |
1306 | build_tlb_write_entry(&p, &l, &r, tlb_random); | 687 | build_tlb_write_entry(&p, &l, &r, tlb_random); |
1307 | l_leave(&l, p); | 688 | uasm_l_leave(&l, p); |
1308 | i_eret(&p); /* return from trap */ | 689 | uasm_i_eret(&p); /* return from trap */ |
1309 | 690 | ||
1310 | #ifdef CONFIG_64BIT | 691 | #ifdef CONFIG_64BIT |
1311 | build_get_pgd_vmalloc64(&p, &l, &r, K0, K1); | 692 | build_get_pgd_vmalloc64(&p, &l, &r, K0, K1); |
@@ -1325,7 +706,7 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1325 | #else | 706 | #else |
1326 | if (((p - tlb_handler) > 63) | 707 | if (((p - tlb_handler) > 63) |
1327 | || (((p - tlb_handler) > 61) | 708 | || (((p - tlb_handler) > 61) |
1328 | && insn_has_bdelay(relocs, tlb_handler + 29))) | 709 | && uasm_insn_has_bdelay(relocs, tlb_handler + 29))) |
1329 | panic("TLB refill handler space exceeded"); | 710 | panic("TLB refill handler space exceeded"); |
1330 | #endif | 711 | #endif |
1331 | 712 | ||
@@ -1335,13 +716,13 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1335 | #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2) | 716 | #if defined(CONFIG_32BIT) || defined(CONFIG_CPU_LOONGSON2) |
1336 | f = final_handler; | 717 | f = final_handler; |
1337 | /* Simplest case, just copy the handler. */ | 718 | /* Simplest case, just copy the handler. */ |
1338 | copy_handler(relocs, labels, tlb_handler, p, f); | 719 | uasm_copy_handler(relocs, labels, tlb_handler, p, f); |
1339 | final_len = p - tlb_handler; | 720 | final_len = p - tlb_handler; |
1340 | #else /* CONFIG_64BIT */ | 721 | #else /* CONFIG_64BIT */ |
1341 | f = final_handler + 32; | 722 | f = final_handler + 32; |
1342 | if ((p - tlb_handler) <= 32) { | 723 | if ((p - tlb_handler) <= 32) { |
1343 | /* Just copy the handler. */ | 724 | /* Just copy the handler. */ |
1344 | copy_handler(relocs, labels, tlb_handler, p, f); | 725 | uasm_copy_handler(relocs, labels, tlb_handler, p, f); |
1345 | final_len = p - tlb_handler; | 726 | final_len = p - tlb_handler; |
1346 | } else { | 727 | } else { |
1347 | u32 *split = tlb_handler + 30; | 728 | u32 *split = tlb_handler + 30; |
@@ -1349,34 +730,34 @@ static void __init build_r4000_tlb_refill_handler(void) | |||
1349 | /* | 730 | /* |
1350 | * Find the split point. | 731 | * Find the split point. |
1351 | */ | 732 | */ |
1352 | if (insn_has_bdelay(relocs, split - 1)) | 733 | if (uasm_insn_has_bdelay(relocs, split - 1)) |
1353 | split--; | 734 | split--; |
1354 | 735 | ||
1355 | /* Copy first part of the handler. */ | 736 | /* Copy first part of the handler. */ |
1356 | copy_handler(relocs, labels, tlb_handler, split, f); | 737 | uasm_copy_handler(relocs, labels, tlb_handler, split, f); |
1357 | f += split - tlb_handler; | 738 | f += split - tlb_handler; |
1358 | 739 | ||
1359 | /* Insert branch. */ | 740 | /* Insert branch. */ |
1360 | l_split(&l, final_handler); | 741 | uasm_l_split(&l, final_handler); |
1361 | il_b(&f, &r, label_split); | 742 | uasm_il_b(&f, &r, label_split); |
1362 | if (insn_has_bdelay(relocs, split)) | 743 | if (uasm_insn_has_bdelay(relocs, split)) |
1363 | i_nop(&f); | 744 | uasm_i_nop(&f); |
1364 | else { | 745 | else { |
1365 | copy_handler(relocs, labels, split, split + 1, f); | 746 | uasm_copy_handler(relocs, labels, split, split + 1, f); |
1366 | move_labels(labels, f, f + 1, -1); | 747 | uasm_move_labels(labels, f, f + 1, -1); |
1367 | f++; | 748 | f++; |
1368 | split++; | 749 | split++; |
1369 | } | 750 | } |
1370 | 751 | ||
1371 | /* Copy the rest of the handler. */ | 752 | /* Copy the rest of the handler. */ |
1372 | copy_handler(relocs, labels, split, p, final_handler); | 753 | uasm_copy_handler(relocs, labels, split, p, final_handler); |
1373 | final_len = (f - (final_handler + 32)) + (p - split); | 754 | final_len = (f - (final_handler + 32)) + (p - split); |
1374 | } | 755 | } |
1375 | #endif /* CONFIG_64BIT */ | 756 | #endif /* CONFIG_64BIT */ |
1376 | 757 | ||
1377 | resolve_relocs(relocs, labels); | 758 | uasm_resolve_relocs(relocs, labels); |
1378 | pr_info("Synthesized TLB refill handler (%u instructions).\n", | 759 | pr_debug("Wrote TLB refill handler (%u instructions).\n", |
1379 | final_len); | 760 | final_len); |
1380 | 761 | ||
1381 | memcpy((void *)ebase, final_handler, 0x100); | 762 | memcpy((void *)ebase, final_handler, 0x100); |
1382 | 763 | ||
@@ -1403,75 +784,75 @@ u32 handle_tlbs[FASTPATH_SIZE] __cacheline_aligned; | |||
1403 | u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned; | 784 | u32 handle_tlbm[FASTPATH_SIZE] __cacheline_aligned; |
1404 | 785 | ||
1405 | static void __init | 786 | static void __init |
1406 | iPTE_LW(u32 **p, struct label **l, unsigned int pte, unsigned int ptr) | 787 | iPTE_LW(u32 **p, struct uasm_label **l, unsigned int pte, unsigned int ptr) |
1407 | { | 788 | { |
1408 | #ifdef CONFIG_SMP | 789 | #ifdef CONFIG_SMP |
1409 | # ifdef CONFIG_64BIT_PHYS_ADDR | 790 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1410 | if (cpu_has_64bits) | 791 | if (cpu_has_64bits) |
1411 | i_lld(p, pte, 0, ptr); | 792 | uasm_i_lld(p, pte, 0, ptr); |
1412 | else | 793 | else |
1413 | # endif | 794 | # endif |
1414 | i_LL(p, pte, 0, ptr); | 795 | UASM_i_LL(p, pte, 0, ptr); |
1415 | #else | 796 | #else |
1416 | # ifdef CONFIG_64BIT_PHYS_ADDR | 797 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1417 | if (cpu_has_64bits) | 798 | if (cpu_has_64bits) |
1418 | i_ld(p, pte, 0, ptr); | 799 | uasm_i_ld(p, pte, 0, ptr); |
1419 | else | 800 | else |
1420 | # endif | 801 | # endif |
1421 | i_LW(p, pte, 0, ptr); | 802 | UASM_i_LW(p, pte, 0, ptr); |
1422 | #endif | 803 | #endif |
1423 | } | 804 | } |
1424 | 805 | ||
1425 | static void __init | 806 | static void __init |
1426 | iPTE_SW(u32 **p, struct reloc **r, unsigned int pte, unsigned int ptr, | 807 | iPTE_SW(u32 **p, struct uasm_reloc **r, unsigned int pte, unsigned int ptr, |
1427 | unsigned int mode) | 808 | unsigned int mode) |
1428 | { | 809 | { |
1429 | #ifdef CONFIG_64BIT_PHYS_ADDR | 810 | #ifdef CONFIG_64BIT_PHYS_ADDR |
1430 | unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY); | 811 | unsigned int hwmode = mode & (_PAGE_VALID | _PAGE_DIRTY); |
1431 | #endif | 812 | #endif |
1432 | 813 | ||
1433 | i_ori(p, pte, pte, mode); | 814 | uasm_i_ori(p, pte, pte, mode); |
1434 | #ifdef CONFIG_SMP | 815 | #ifdef CONFIG_SMP |
1435 | # ifdef CONFIG_64BIT_PHYS_ADDR | 816 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1436 | if (cpu_has_64bits) | 817 | if (cpu_has_64bits) |
1437 | i_scd(p, pte, 0, ptr); | 818 | uasm_i_scd(p, pte, 0, ptr); |
1438 | else | 819 | else |
1439 | # endif | 820 | # endif |
1440 | i_SC(p, pte, 0, ptr); | 821 | UASM_i_SC(p, pte, 0, ptr); |
1441 | 822 | ||
1442 | if (r10000_llsc_war()) | 823 | if (r10000_llsc_war()) |
1443 | il_beqzl(p, r, pte, label_smp_pgtable_change); | 824 | uasm_il_beqzl(p, r, pte, label_smp_pgtable_change); |
1444 | else | 825 | else |
1445 | il_beqz(p, r, pte, label_smp_pgtable_change); | 826 | uasm_il_beqz(p, r, pte, label_smp_pgtable_change); |
1446 | 827 | ||
1447 | # ifdef CONFIG_64BIT_PHYS_ADDR | 828 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1448 | if (!cpu_has_64bits) { | 829 | if (!cpu_has_64bits) { |
1449 | /* no i_nop needed */ | 830 | /* no uasm_i_nop needed */ |
1450 | i_ll(p, pte, sizeof(pte_t) / 2, ptr); | 831 | uasm_i_ll(p, pte, sizeof(pte_t) / 2, ptr); |
1451 | i_ori(p, pte, pte, hwmode); | 832 | uasm_i_ori(p, pte, pte, hwmode); |
1452 | i_sc(p, pte, sizeof(pte_t) / 2, ptr); | 833 | uasm_i_sc(p, pte, sizeof(pte_t) / 2, ptr); |
1453 | il_beqz(p, r, pte, label_smp_pgtable_change); | 834 | uasm_il_beqz(p, r, pte, label_smp_pgtable_change); |
1454 | /* no i_nop needed */ | 835 | /* no uasm_i_nop needed */ |
1455 | i_lw(p, pte, 0, ptr); | 836 | uasm_i_lw(p, pte, 0, ptr); |
1456 | } else | 837 | } else |
1457 | i_nop(p); | 838 | uasm_i_nop(p); |
1458 | # else | 839 | # else |
1459 | i_nop(p); | 840 | uasm_i_nop(p); |
1460 | # endif | 841 | # endif |
1461 | #else | 842 | #else |
1462 | # ifdef CONFIG_64BIT_PHYS_ADDR | 843 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1463 | if (cpu_has_64bits) | 844 | if (cpu_has_64bits) |
1464 | i_sd(p, pte, 0, ptr); | 845 | uasm_i_sd(p, pte, 0, ptr); |
1465 | else | 846 | else |
1466 | # endif | 847 | # endif |
1467 | i_SW(p, pte, 0, ptr); | 848 | UASM_i_SW(p, pte, 0, ptr); |
1468 | 849 | ||
1469 | # ifdef CONFIG_64BIT_PHYS_ADDR | 850 | # ifdef CONFIG_64BIT_PHYS_ADDR |
1470 | if (!cpu_has_64bits) { | 851 | if (!cpu_has_64bits) { |
1471 | i_lw(p, pte, sizeof(pte_t) / 2, ptr); | 852 | uasm_i_lw(p, pte, sizeof(pte_t) / 2, ptr); |
1472 | i_ori(p, pte, pte, hwmode); | 853 | uasm_i_ori(p, pte, pte, hwmode); |
1473 | i_sw(p, pte, sizeof(pte_t) / 2, ptr); | 854 | uasm_i_sw(p, pte, sizeof(pte_t) / 2, ptr); |
1474 | i_lw(p, pte, 0, ptr); | 855 | uasm_i_lw(p, pte, 0, ptr); |
1475 | } | 856 | } |
1476 | # endif | 857 | # endif |
1477 | #endif | 858 | #endif |
@@ -1483,18 +864,18 @@ iPTE_SW(u32 **p, struct reloc **r, unsigned int pte, unsigned int ptr, | |||
1483 | * with it's original value. | 864 | * with it's original value. |
1484 | */ | 865 | */ |
1485 | static void __init | 866 | static void __init |
1486 | build_pte_present(u32 **p, struct label **l, struct reloc **r, | 867 | build_pte_present(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
1487 | unsigned int pte, unsigned int ptr, enum label_id lid) | 868 | unsigned int pte, unsigned int ptr, enum label_id lid) |
1488 | { | 869 | { |
1489 | i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); | 870 | uasm_i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); |
1490 | i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); | 871 | uasm_i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_READ); |
1491 | il_bnez(p, r, pte, lid); | 872 | uasm_il_bnez(p, r, pte, lid); |
1492 | iPTE_LW(p, l, pte, ptr); | 873 | iPTE_LW(p, l, pte, ptr); |
1493 | } | 874 | } |
1494 | 875 | ||
1495 | /* Make PTE valid, store result in PTR. */ | 876 | /* Make PTE valid, store result in PTR. */ |
1496 | static void __init | 877 | static void __init |
1497 | build_make_valid(u32 **p, struct reloc **r, unsigned int pte, | 878 | build_make_valid(u32 **p, struct uasm_reloc **r, unsigned int pte, |
1498 | unsigned int ptr) | 879 | unsigned int ptr) |
1499 | { | 880 | { |
1500 | unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED; | 881 | unsigned int mode = _PAGE_VALID | _PAGE_ACCESSED; |
@@ -1507,12 +888,12 @@ build_make_valid(u32 **p, struct reloc **r, unsigned int pte, | |||
1507 | * restore PTE with value from PTR when done. | 888 | * restore PTE with value from PTR when done. |
1508 | */ | 889 | */ |
1509 | static void __init | 890 | static void __init |
1510 | build_pte_writable(u32 **p, struct label **l, struct reloc **r, | 891 | build_pte_writable(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
1511 | unsigned int pte, unsigned int ptr, enum label_id lid) | 892 | unsigned int pte, unsigned int ptr, enum label_id lid) |
1512 | { | 893 | { |
1513 | i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); | 894 | uasm_i_andi(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); |
1514 | i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); | 895 | uasm_i_xori(p, pte, pte, _PAGE_PRESENT | _PAGE_WRITE); |
1515 | il_bnez(p, r, pte, lid); | 896 | uasm_il_bnez(p, r, pte, lid); |
1516 | iPTE_LW(p, l, pte, ptr); | 897 | iPTE_LW(p, l, pte, ptr); |
1517 | } | 898 | } |
1518 | 899 | ||
@@ -1520,7 +901,7 @@ build_pte_writable(u32 **p, struct label **l, struct reloc **r, | |||
1520 | * at PTR. | 901 | * at PTR. |
1521 | */ | 902 | */ |
1522 | static void __init | 903 | static void __init |
1523 | build_make_write(u32 **p, struct reloc **r, unsigned int pte, | 904 | build_make_write(u32 **p, struct uasm_reloc **r, unsigned int pte, |
1524 | unsigned int ptr) | 905 | unsigned int ptr) |
1525 | { | 906 | { |
1526 | unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID | 907 | unsigned int mode = (_PAGE_ACCESSED | _PAGE_MODIFIED | _PAGE_VALID |
@@ -1534,11 +915,11 @@ build_make_write(u32 **p, struct reloc **r, unsigned int pte, | |||
1534 | * restore PTE with value from PTR when done. | 915 | * restore PTE with value from PTR when done. |
1535 | */ | 916 | */ |
1536 | static void __init | 917 | static void __init |
1537 | build_pte_modifiable(u32 **p, struct label **l, struct reloc **r, | 918 | build_pte_modifiable(u32 **p, struct uasm_label **l, struct uasm_reloc **r, |
1538 | unsigned int pte, unsigned int ptr, enum label_id lid) | 919 | unsigned int pte, unsigned int ptr, enum label_id lid) |
1539 | { | 920 | { |
1540 | i_andi(p, pte, pte, _PAGE_WRITE); | 921 | uasm_i_andi(p, pte, pte, _PAGE_WRITE); |
1541 | il_beqz(p, r, pte, lid); | 922 | uasm_il_beqz(p, r, pte, lid); |
1542 | iPTE_LW(p, l, pte, ptr); | 923 | iPTE_LW(p, l, pte, ptr); |
1543 | } | 924 | } |
1544 | 925 | ||
@@ -1553,11 +934,11 @@ build_pte_modifiable(u32 **p, struct label **l, struct reloc **r, | |||
1553 | static void __init | 934 | static void __init |
1554 | build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp) | 935 | build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp) |
1555 | { | 936 | { |
1556 | i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ | 937 | uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
1557 | i_mfc0(p, tmp, C0_EPC); /* cp0 delay */ | 938 | uasm_i_mfc0(p, tmp, C0_EPC); /* cp0 delay */ |
1558 | i_tlbwi(p); | 939 | uasm_i_tlbwi(p); |
1559 | i_jr(p, tmp); | 940 | uasm_i_jr(p, tmp); |
1560 | i_rfe(p); /* branch delay */ | 941 | uasm_i_rfe(p); /* branch delay */ |
1561 | } | 942 | } |
1562 | 943 | ||
1563 | /* | 944 | /* |
@@ -1567,20 +948,21 @@ build_r3000_pte_reload_tlbwi(u32 **p, unsigned int pte, unsigned int tmp) | |||
1567 | * kseg2 access, i.e. without refill. Then it returns. | 948 | * kseg2 access, i.e. without refill. Then it returns. |
1568 | */ | 949 | */ |
1569 | static void __init | 950 | static void __init |
1570 | build_r3000_tlb_reload_write(u32 **p, struct label **l, struct reloc **r, | 951 | build_r3000_tlb_reload_write(u32 **p, struct uasm_label **l, |
1571 | unsigned int pte, unsigned int tmp) | 952 | struct uasm_reloc **r, unsigned int pte, |
1572 | { | 953 | unsigned int tmp) |
1573 | i_mfc0(p, tmp, C0_INDEX); | 954 | { |
1574 | i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ | 955 | uasm_i_mfc0(p, tmp, C0_INDEX); |
1575 | il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */ | 956 | uasm_i_mtc0(p, pte, C0_ENTRYLO0); /* cp0 delay */ |
1576 | i_mfc0(p, tmp, C0_EPC); /* branch delay */ | 957 | uasm_il_bltz(p, r, tmp, label_r3000_write_probe_fail); /* cp0 delay */ |
1577 | i_tlbwi(p); /* cp0 delay */ | 958 | uasm_i_mfc0(p, tmp, C0_EPC); /* branch delay */ |
1578 | i_jr(p, tmp); | 959 | uasm_i_tlbwi(p); /* cp0 delay */ |
1579 | i_rfe(p); /* branch delay */ | 960 | uasm_i_jr(p, tmp); |
1580 | l_r3000_write_probe_fail(l, *p); | 961 | uasm_i_rfe(p); /* branch delay */ |
1581 | i_tlbwr(p); /* cp0 delay */ | 962 | uasm_l_r3000_write_probe_fail(l, *p); |
1582 | i_jr(p, tmp); | 963 | uasm_i_tlbwr(p); /* cp0 delay */ |
1583 | i_rfe(p); /* branch delay */ | 964 | uasm_i_jr(p, tmp); |
965 | uasm_i_rfe(p); /* branch delay */ | ||
1584 | } | 966 | } |
1585 | 967 | ||
1586 | static void __init | 968 | static void __init |
@@ -1589,25 +971,25 @@ build_r3000_tlbchange_handler_head(u32 **p, unsigned int pte, | |||
1589 | { | 971 | { |
1590 | long pgdc = (long)pgd_current; | 972 | long pgdc = (long)pgd_current; |
1591 | 973 | ||
1592 | i_mfc0(p, pte, C0_BADVADDR); | 974 | uasm_i_mfc0(p, pte, C0_BADVADDR); |
1593 | i_lui(p, ptr, rel_hi(pgdc)); /* cp0 delay */ | 975 | uasm_i_lui(p, ptr, uasm_rel_hi(pgdc)); /* cp0 delay */ |
1594 | i_lw(p, ptr, rel_lo(pgdc), ptr); | 976 | uasm_i_lw(p, ptr, uasm_rel_lo(pgdc), ptr); |
1595 | i_srl(p, pte, pte, 22); /* load delay */ | 977 | uasm_i_srl(p, pte, pte, 22); /* load delay */ |
1596 | i_sll(p, pte, pte, 2); | 978 | uasm_i_sll(p, pte, pte, 2); |
1597 | i_addu(p, ptr, ptr, pte); | 979 | uasm_i_addu(p, ptr, ptr, pte); |
1598 | i_mfc0(p, pte, C0_CONTEXT); | 980 | uasm_i_mfc0(p, pte, C0_CONTEXT); |
1599 | i_lw(p, ptr, 0, ptr); /* cp0 delay */ | 981 | uasm_i_lw(p, ptr, 0, ptr); /* cp0 delay */ |
1600 | i_andi(p, pte, pte, 0xffc); /* load delay */ | 982 | uasm_i_andi(p, pte, pte, 0xffc); /* load delay */ |
1601 | i_addu(p, ptr, ptr, pte); | 983 | uasm_i_addu(p, ptr, ptr, pte); |
1602 | i_lw(p, pte, 0, ptr); | 984 | uasm_i_lw(p, pte, 0, ptr); |
1603 | i_tlbp(p); /* load delay */ | 985 | uasm_i_tlbp(p); /* load delay */ |
1604 | } | 986 | } |
1605 | 987 | ||
1606 | static void __init build_r3000_tlb_load_handler(void) | 988 | static void __init build_r3000_tlb_load_handler(void) |
1607 | { | 989 | { |
1608 | u32 *p = handle_tlbl; | 990 | u32 *p = handle_tlbl; |
1609 | struct label *l = labels; | 991 | struct uasm_label *l = labels; |
1610 | struct reloc *r = relocs; | 992 | struct uasm_reloc *r = relocs; |
1611 | 993 | ||
1612 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); | 994 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); |
1613 | memset(labels, 0, sizeof(labels)); | 995 | memset(labels, 0, sizeof(labels)); |
@@ -1615,20 +997,20 @@ static void __init build_r3000_tlb_load_handler(void) | |||
1615 | 997 | ||
1616 | build_r3000_tlbchange_handler_head(&p, K0, K1); | 998 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
1617 | build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl); | 999 | build_pte_present(&p, &l, &r, K0, K1, label_nopage_tlbl); |
1618 | i_nop(&p); /* load delay */ | 1000 | uasm_i_nop(&p); /* load delay */ |
1619 | build_make_valid(&p, &r, K0, K1); | 1001 | build_make_valid(&p, &r, K0, K1); |
1620 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); | 1002 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
1621 | 1003 | ||
1622 | l_nopage_tlbl(&l, p); | 1004 | uasm_l_nopage_tlbl(&l, p); |
1623 | i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); | 1005 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
1624 | i_nop(&p); | 1006 | uasm_i_nop(&p); |
1625 | 1007 | ||
1626 | if ((p - handle_tlbl) > FASTPATH_SIZE) | 1008 | if ((p - handle_tlbl) > FASTPATH_SIZE) |
1627 | panic("TLB load handler fastpath space exceeded"); | 1009 | panic("TLB load handler fastpath space exceeded"); |
1628 | 1010 | ||
1629 | resolve_relocs(relocs, labels); | 1011 | uasm_resolve_relocs(relocs, labels); |
1630 | pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", | 1012 | pr_debug("Wrote TLB load handler fastpath (%u instructions).\n", |
1631 | (unsigned int)(p - handle_tlbl)); | 1013 | (unsigned int)(p - handle_tlbl)); |
1632 | 1014 | ||
1633 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); | 1015 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); |
1634 | } | 1016 | } |
@@ -1636,8 +1018,8 @@ static void __init build_r3000_tlb_load_handler(void) | |||
1636 | static void __init build_r3000_tlb_store_handler(void) | 1018 | static void __init build_r3000_tlb_store_handler(void) |
1637 | { | 1019 | { |
1638 | u32 *p = handle_tlbs; | 1020 | u32 *p = handle_tlbs; |
1639 | struct label *l = labels; | 1021 | struct uasm_label *l = labels; |
1640 | struct reloc *r = relocs; | 1022 | struct uasm_reloc *r = relocs; |
1641 | 1023 | ||
1642 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); | 1024 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); |
1643 | memset(labels, 0, sizeof(labels)); | 1025 | memset(labels, 0, sizeof(labels)); |
@@ -1645,20 +1027,20 @@ static void __init build_r3000_tlb_store_handler(void) | |||
1645 | 1027 | ||
1646 | build_r3000_tlbchange_handler_head(&p, K0, K1); | 1028 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
1647 | build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs); | 1029 | build_pte_writable(&p, &l, &r, K0, K1, label_nopage_tlbs); |
1648 | i_nop(&p); /* load delay */ | 1030 | uasm_i_nop(&p); /* load delay */ |
1649 | build_make_write(&p, &r, K0, K1); | 1031 | build_make_write(&p, &r, K0, K1); |
1650 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); | 1032 | build_r3000_tlb_reload_write(&p, &l, &r, K0, K1); |
1651 | 1033 | ||
1652 | l_nopage_tlbs(&l, p); | 1034 | uasm_l_nopage_tlbs(&l, p); |
1653 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); | 1035 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
1654 | i_nop(&p); | 1036 | uasm_i_nop(&p); |
1655 | 1037 | ||
1656 | if ((p - handle_tlbs) > FASTPATH_SIZE) | 1038 | if ((p - handle_tlbs) > FASTPATH_SIZE) |
1657 | panic("TLB store handler fastpath space exceeded"); | 1039 | panic("TLB store handler fastpath space exceeded"); |
1658 | 1040 | ||
1659 | resolve_relocs(relocs, labels); | 1041 | uasm_resolve_relocs(relocs, labels); |
1660 | pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", | 1042 | pr_debug("Wrote TLB store handler fastpath (%u instructions).\n", |
1661 | (unsigned int)(p - handle_tlbs)); | 1043 | (unsigned int)(p - handle_tlbs)); |
1662 | 1044 | ||
1663 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); | 1045 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); |
1664 | } | 1046 | } |
@@ -1666,8 +1048,8 @@ static void __init build_r3000_tlb_store_handler(void) | |||
1666 | static void __init build_r3000_tlb_modify_handler(void) | 1048 | static void __init build_r3000_tlb_modify_handler(void) |
1667 | { | 1049 | { |
1668 | u32 *p = handle_tlbm; | 1050 | u32 *p = handle_tlbm; |
1669 | struct label *l = labels; | 1051 | struct uasm_label *l = labels; |
1670 | struct reloc *r = relocs; | 1052 | struct uasm_reloc *r = relocs; |
1671 | 1053 | ||
1672 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); | 1054 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); |
1673 | memset(labels, 0, sizeof(labels)); | 1055 | memset(labels, 0, sizeof(labels)); |
@@ -1675,20 +1057,20 @@ static void __init build_r3000_tlb_modify_handler(void) | |||
1675 | 1057 | ||
1676 | build_r3000_tlbchange_handler_head(&p, K0, K1); | 1058 | build_r3000_tlbchange_handler_head(&p, K0, K1); |
1677 | build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm); | 1059 | build_pte_modifiable(&p, &l, &r, K0, K1, label_nopage_tlbm); |
1678 | i_nop(&p); /* load delay */ | 1060 | uasm_i_nop(&p); /* load delay */ |
1679 | build_make_write(&p, &r, K0, K1); | 1061 | build_make_write(&p, &r, K0, K1); |
1680 | build_r3000_pte_reload_tlbwi(&p, K0, K1); | 1062 | build_r3000_pte_reload_tlbwi(&p, K0, K1); |
1681 | 1063 | ||
1682 | l_nopage_tlbm(&l, p); | 1064 | uasm_l_nopage_tlbm(&l, p); |
1683 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); | 1065 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
1684 | i_nop(&p); | 1066 | uasm_i_nop(&p); |
1685 | 1067 | ||
1686 | if ((p - handle_tlbm) > FASTPATH_SIZE) | 1068 | if ((p - handle_tlbm) > FASTPATH_SIZE) |
1687 | panic("TLB modify handler fastpath space exceeded"); | 1069 | panic("TLB modify handler fastpath space exceeded"); |
1688 | 1070 | ||
1689 | resolve_relocs(relocs, labels); | 1071 | uasm_resolve_relocs(relocs, labels); |
1690 | pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", | 1072 | pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n", |
1691 | (unsigned int)(p - handle_tlbm)); | 1073 | (unsigned int)(p - handle_tlbm)); |
1692 | 1074 | ||
1693 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); | 1075 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); |
1694 | } | 1076 | } |
@@ -1697,8 +1079,8 @@ static void __init build_r3000_tlb_modify_handler(void) | |||
1697 | * R4000 style TLB load/store/modify handlers. | 1079 | * R4000 style TLB load/store/modify handlers. |
1698 | */ | 1080 | */ |
1699 | static void __init | 1081 | static void __init |
1700 | build_r4000_tlbchange_handler_head(u32 **p, struct label **l, | 1082 | build_r4000_tlbchange_handler_head(u32 **p, struct uasm_label **l, |
1701 | struct reloc **r, unsigned int pte, | 1083 | struct uasm_reloc **r, unsigned int pte, |
1702 | unsigned int ptr) | 1084 | unsigned int ptr) |
1703 | { | 1085 | { |
1704 | #ifdef CONFIG_64BIT | 1086 | #ifdef CONFIG_64BIT |
@@ -1707,31 +1089,31 @@ build_r4000_tlbchange_handler_head(u32 **p, struct label **l, | |||
1707 | build_get_pgde32(p, pte, ptr); /* get pgd in ptr */ | 1089 | build_get_pgde32(p, pte, ptr); /* get pgd in ptr */ |
1708 | #endif | 1090 | #endif |
1709 | 1091 | ||
1710 | i_MFC0(p, pte, C0_BADVADDR); | 1092 | UASM_i_MFC0(p, pte, C0_BADVADDR); |
1711 | i_LW(p, ptr, 0, ptr); | 1093 | UASM_i_LW(p, ptr, 0, ptr); |
1712 | i_SRL(p, pte, pte, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2); | 1094 | UASM_i_SRL(p, pte, pte, PAGE_SHIFT + PTE_ORDER - PTE_T_LOG2); |
1713 | i_andi(p, pte, pte, (PTRS_PER_PTE - 1) << PTE_T_LOG2); | 1095 | uasm_i_andi(p, pte, pte, (PTRS_PER_PTE - 1) << PTE_T_LOG2); |
1714 | i_ADDU(p, ptr, ptr, pte); | 1096 | UASM_i_ADDU(p, ptr, ptr, pte); |
1715 | 1097 | ||
1716 | #ifdef CONFIG_SMP | 1098 | #ifdef CONFIG_SMP |
1717 | l_smp_pgtable_change(l, *p); | 1099 | uasm_l_smp_pgtable_change(l, *p); |
1718 | # endif | 1100 | #endif |
1719 | iPTE_LW(p, l, pte, ptr); /* get even pte */ | 1101 | iPTE_LW(p, l, pte, ptr); /* get even pte */ |
1720 | if (!m4kc_tlbp_war()) | 1102 | if (!m4kc_tlbp_war()) |
1721 | build_tlb_probe_entry(p); | 1103 | build_tlb_probe_entry(p); |
1722 | } | 1104 | } |
1723 | 1105 | ||
1724 | static void __init | 1106 | static void __init |
1725 | build_r4000_tlbchange_handler_tail(u32 **p, struct label **l, | 1107 | build_r4000_tlbchange_handler_tail(u32 **p, struct uasm_label **l, |
1726 | struct reloc **r, unsigned int tmp, | 1108 | struct uasm_reloc **r, unsigned int tmp, |
1727 | unsigned int ptr) | 1109 | unsigned int ptr) |
1728 | { | 1110 | { |
1729 | i_ori(p, ptr, ptr, sizeof(pte_t)); | 1111 | uasm_i_ori(p, ptr, ptr, sizeof(pte_t)); |
1730 | i_xori(p, ptr, ptr, sizeof(pte_t)); | 1112 | uasm_i_xori(p, ptr, ptr, sizeof(pte_t)); |
1731 | build_update_entries(p, tmp, ptr); | 1113 | build_update_entries(p, tmp, ptr); |
1732 | build_tlb_write_entry(p, l, r, tlb_indexed); | 1114 | build_tlb_write_entry(p, l, r, tlb_indexed); |
1733 | l_leave(l, *p); | 1115 | uasm_l_leave(l, *p); |
1734 | i_eret(p); /* return from trap */ | 1116 | uasm_i_eret(p); /* return from trap */ |
1735 | 1117 | ||
1736 | #ifdef CONFIG_64BIT | 1118 | #ifdef CONFIG_64BIT |
1737 | build_get_pgd_vmalloc64(p, l, r, tmp, ptr); | 1119 | build_get_pgd_vmalloc64(p, l, r, tmp, ptr); |
@@ -1741,20 +1123,20 @@ build_r4000_tlbchange_handler_tail(u32 **p, struct label **l, | |||
1741 | static void __init build_r4000_tlb_load_handler(void) | 1123 | static void __init build_r4000_tlb_load_handler(void) |
1742 | { | 1124 | { |
1743 | u32 *p = handle_tlbl; | 1125 | u32 *p = handle_tlbl; |
1744 | struct label *l = labels; | 1126 | struct uasm_label *l = labels; |
1745 | struct reloc *r = relocs; | 1127 | struct uasm_reloc *r = relocs; |
1746 | 1128 | ||
1747 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); | 1129 | memset(handle_tlbl, 0, sizeof(handle_tlbl)); |
1748 | memset(labels, 0, sizeof(labels)); | 1130 | memset(labels, 0, sizeof(labels)); |
1749 | memset(relocs, 0, sizeof(relocs)); | 1131 | memset(relocs, 0, sizeof(relocs)); |
1750 | 1132 | ||
1751 | if (bcm1250_m3_war()) { | 1133 | if (bcm1250_m3_war()) { |
1752 | i_MFC0(&p, K0, C0_BADVADDR); | 1134 | UASM_i_MFC0(&p, K0, C0_BADVADDR); |
1753 | i_MFC0(&p, K1, C0_ENTRYHI); | 1135 | UASM_i_MFC0(&p, K1, C0_ENTRYHI); |
1754 | i_xor(&p, K0, K0, K1); | 1136 | uasm_i_xor(&p, K0, K0, K1); |
1755 | i_SRL(&p, K0, K0, PAGE_SHIFT + 1); | 1137 | UASM_i_SRL(&p, K0, K0, PAGE_SHIFT + 1); |
1756 | il_bnez(&p, &r, K0, label_leave); | 1138 | uasm_il_bnez(&p, &r, K0, label_leave); |
1757 | /* No need for i_nop */ | 1139 | /* No need for uasm_i_nop */ |
1758 | } | 1140 | } |
1759 | 1141 | ||
1760 | build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1); | 1142 | build_r4000_tlbchange_handler_head(&p, &l, &r, K0, K1); |
@@ -1764,16 +1146,16 @@ static void __init build_r4000_tlb_load_handler(void) | |||
1764 | build_make_valid(&p, &r, K0, K1); | 1146 | build_make_valid(&p, &r, K0, K1); |
1765 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); | 1147 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
1766 | 1148 | ||
1767 | l_nopage_tlbl(&l, p); | 1149 | uasm_l_nopage_tlbl(&l, p); |
1768 | i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); | 1150 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_0 & 0x0fffffff); |
1769 | i_nop(&p); | 1151 | uasm_i_nop(&p); |
1770 | 1152 | ||
1771 | if ((p - handle_tlbl) > FASTPATH_SIZE) | 1153 | if ((p - handle_tlbl) > FASTPATH_SIZE) |
1772 | panic("TLB load handler fastpath space exceeded"); | 1154 | panic("TLB load handler fastpath space exceeded"); |
1773 | 1155 | ||
1774 | resolve_relocs(relocs, labels); | 1156 | uasm_resolve_relocs(relocs, labels); |
1775 | pr_info("Synthesized TLB load handler fastpath (%u instructions).\n", | 1157 | pr_debug("Wrote TLB load handler fastpath (%u instructions).\n", |
1776 | (unsigned int)(p - handle_tlbl)); | 1158 | (unsigned int)(p - handle_tlbl)); |
1777 | 1159 | ||
1778 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); | 1160 | dump_handler(handle_tlbl, ARRAY_SIZE(handle_tlbl)); |
1779 | } | 1161 | } |
@@ -1781,8 +1163,8 @@ static void __init build_r4000_tlb_load_handler(void) | |||
1781 | static void __init build_r4000_tlb_store_handler(void) | 1163 | static void __init build_r4000_tlb_store_handler(void) |
1782 | { | 1164 | { |
1783 | u32 *p = handle_tlbs; | 1165 | u32 *p = handle_tlbs; |
1784 | struct label *l = labels; | 1166 | struct uasm_label *l = labels; |
1785 | struct reloc *r = relocs; | 1167 | struct uasm_reloc *r = relocs; |
1786 | 1168 | ||
1787 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); | 1169 | memset(handle_tlbs, 0, sizeof(handle_tlbs)); |
1788 | memset(labels, 0, sizeof(labels)); | 1170 | memset(labels, 0, sizeof(labels)); |
@@ -1795,16 +1177,16 @@ static void __init build_r4000_tlb_store_handler(void) | |||
1795 | build_make_write(&p, &r, K0, K1); | 1177 | build_make_write(&p, &r, K0, K1); |
1796 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); | 1178 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
1797 | 1179 | ||
1798 | l_nopage_tlbs(&l, p); | 1180 | uasm_l_nopage_tlbs(&l, p); |
1799 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); | 1181 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
1800 | i_nop(&p); | 1182 | uasm_i_nop(&p); |
1801 | 1183 | ||
1802 | if ((p - handle_tlbs) > FASTPATH_SIZE) | 1184 | if ((p - handle_tlbs) > FASTPATH_SIZE) |
1803 | panic("TLB store handler fastpath space exceeded"); | 1185 | panic("TLB store handler fastpath space exceeded"); |
1804 | 1186 | ||
1805 | resolve_relocs(relocs, labels); | 1187 | uasm_resolve_relocs(relocs, labels); |
1806 | pr_info("Synthesized TLB store handler fastpath (%u instructions).\n", | 1188 | pr_debug("Wrote TLB store handler fastpath (%u instructions).\n", |
1807 | (unsigned int)(p - handle_tlbs)); | 1189 | (unsigned int)(p - handle_tlbs)); |
1808 | 1190 | ||
1809 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); | 1191 | dump_handler(handle_tlbs, ARRAY_SIZE(handle_tlbs)); |
1810 | } | 1192 | } |
@@ -1812,8 +1194,8 @@ static void __init build_r4000_tlb_store_handler(void) | |||
1812 | static void __init build_r4000_tlb_modify_handler(void) | 1194 | static void __init build_r4000_tlb_modify_handler(void) |
1813 | { | 1195 | { |
1814 | u32 *p = handle_tlbm; | 1196 | u32 *p = handle_tlbm; |
1815 | struct label *l = labels; | 1197 | struct uasm_label *l = labels; |
1816 | struct reloc *r = relocs; | 1198 | struct uasm_reloc *r = relocs; |
1817 | 1199 | ||
1818 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); | 1200 | memset(handle_tlbm, 0, sizeof(handle_tlbm)); |
1819 | memset(labels, 0, sizeof(labels)); | 1201 | memset(labels, 0, sizeof(labels)); |
@@ -1827,16 +1209,16 @@ static void __init build_r4000_tlb_modify_handler(void) | |||
1827 | build_make_write(&p, &r, K0, K1); | 1209 | build_make_write(&p, &r, K0, K1); |
1828 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); | 1210 | build_r4000_tlbchange_handler_tail(&p, &l, &r, K0, K1); |
1829 | 1211 | ||
1830 | l_nopage_tlbm(&l, p); | 1212 | uasm_l_nopage_tlbm(&l, p); |
1831 | i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); | 1213 | uasm_i_j(&p, (unsigned long)tlb_do_page_fault_1 & 0x0fffffff); |
1832 | i_nop(&p); | 1214 | uasm_i_nop(&p); |
1833 | 1215 | ||
1834 | if ((p - handle_tlbm) > FASTPATH_SIZE) | 1216 | if ((p - handle_tlbm) > FASTPATH_SIZE) |
1835 | panic("TLB modify handler fastpath space exceeded"); | 1217 | panic("TLB modify handler fastpath space exceeded"); |
1836 | 1218 | ||
1837 | resolve_relocs(relocs, labels); | 1219 | uasm_resolve_relocs(relocs, labels); |
1838 | pr_info("Synthesized TLB modify handler fastpath (%u instructions).\n", | 1220 | pr_debug("Wrote TLB modify handler fastpath (%u instructions).\n", |
1839 | (unsigned int)(p - handle_tlbm)); | 1221 | (unsigned int)(p - handle_tlbm)); |
1840 | 1222 | ||
1841 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); | 1223 | dump_handler(handle_tlbm, ARRAY_SIZE(handle_tlbm)); |
1842 | } | 1224 | } |
diff --git a/arch/mips/mm/uasm.c b/arch/mips/mm/uasm.c new file mode 100644 index 000000000000..e3f74ed5f704 --- /dev/null +++ b/arch/mips/mm/uasm.c | |||
@@ -0,0 +1,576 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * A small micro-assembler. It is intentionally kept simple, does only | ||
7 | * support a subset of instructions, and does not try to hide pipeline | ||
8 | * effects like branch delay slots. | ||
9 | * | ||
10 | * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer | ||
11 | * Copyright (C) 2005, 2007 Maciej W. Rozycki | ||
12 | * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/init.h> | ||
18 | |||
19 | #include <asm/inst.h> | ||
20 | #include <asm/elf.h> | ||
21 | #include <asm/bugs.h> | ||
22 | |||
23 | #include "uasm.h" | ||
24 | |||
25 | enum fields { | ||
26 | RS = 0x001, | ||
27 | RT = 0x002, | ||
28 | RD = 0x004, | ||
29 | RE = 0x008, | ||
30 | SIMM = 0x010, | ||
31 | UIMM = 0x020, | ||
32 | BIMM = 0x040, | ||
33 | JIMM = 0x080, | ||
34 | FUNC = 0x100, | ||
35 | SET = 0x200 | ||
36 | }; | ||
37 | |||
38 | #define OP_MASK 0x3f | ||
39 | #define OP_SH 26 | ||
40 | #define RS_MASK 0x1f | ||
41 | #define RS_SH 21 | ||
42 | #define RT_MASK 0x1f | ||
43 | #define RT_SH 16 | ||
44 | #define RD_MASK 0x1f | ||
45 | #define RD_SH 11 | ||
46 | #define RE_MASK 0x1f | ||
47 | #define RE_SH 6 | ||
48 | #define IMM_MASK 0xffff | ||
49 | #define IMM_SH 0 | ||
50 | #define JIMM_MASK 0x3ffffff | ||
51 | #define JIMM_SH 0 | ||
52 | #define FUNC_MASK 0x3f | ||
53 | #define FUNC_SH 0 | ||
54 | #define SET_MASK 0x7 | ||
55 | #define SET_SH 0 | ||
56 | |||
57 | enum opcode { | ||
58 | insn_invalid, | ||
59 | insn_addu, insn_addiu, insn_and, insn_andi, insn_beq, | ||
60 | insn_beql, insn_bgez, insn_bgezl, insn_bltz, insn_bltzl, | ||
61 | insn_bne, insn_daddu, insn_daddiu, insn_dmfc0, insn_dmtc0, | ||
62 | insn_dsll, insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32, | ||
63 | insn_dsubu, insn_eret, insn_j, insn_jal, insn_jr, insn_ld, | ||
64 | insn_ll, insn_lld, insn_lui, insn_lw, insn_mfc0, insn_mtc0, | ||
65 | insn_ori, insn_rfe, insn_sc, insn_scd, insn_sd, insn_sll, | ||
66 | insn_sra, insn_srl, insn_subu, insn_sw, insn_tlbp, insn_tlbwi, | ||
67 | insn_tlbwr, insn_xor, insn_xori | ||
68 | }; | ||
69 | |||
70 | struct insn { | ||
71 | enum opcode opcode; | ||
72 | u32 match; | ||
73 | enum fields fields; | ||
74 | }; | ||
75 | |||
76 | /* This macro sets the non-variable bits of an instruction. */ | ||
77 | #define M(a, b, c, d, e, f) \ | ||
78 | ((a) << OP_SH \ | ||
79 | | (b) << RS_SH \ | ||
80 | | (c) << RT_SH \ | ||
81 | | (d) << RD_SH \ | ||
82 | | (e) << RE_SH \ | ||
83 | | (f) << FUNC_SH) | ||
84 | |||
85 | static struct insn insn_table[] __initdata = { | ||
86 | { insn_addiu, M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
87 | { insn_addu, M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD }, | ||
88 | { insn_and, M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD }, | ||
89 | { insn_andi, M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
90 | { insn_beq, M(beq_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
91 | { insn_beql, M(beql_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
92 | { insn_bgez, M(bcond_op, 0, bgez_op, 0, 0, 0), RS | BIMM }, | ||
93 | { insn_bgezl, M(bcond_op, 0, bgezl_op, 0, 0, 0), RS | BIMM }, | ||
94 | { insn_bltz, M(bcond_op, 0, bltz_op, 0, 0, 0), RS | BIMM }, | ||
95 | { insn_bltzl, M(bcond_op, 0, bltzl_op, 0, 0, 0), RS | BIMM }, | ||
96 | { insn_bne, M(bne_op, 0, 0, 0, 0, 0), RS | RT | BIMM }, | ||
97 | { insn_daddiu, M(daddiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
98 | { insn_daddu, M(spec_op, 0, 0, 0, 0, daddu_op), RS | RT | RD }, | ||
99 | { insn_dmfc0, M(cop0_op, dmfc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
100 | { insn_dmtc0, M(cop0_op, dmtc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
101 | { insn_dsll, M(spec_op, 0, 0, 0, 0, dsll_op), RT | RD | RE }, | ||
102 | { insn_dsll32, M(spec_op, 0, 0, 0, 0, dsll32_op), RT | RD | RE }, | ||
103 | { insn_dsra, M(spec_op, 0, 0, 0, 0, dsra_op), RT | RD | RE }, | ||
104 | { insn_dsrl, M(spec_op, 0, 0, 0, 0, dsrl_op), RT | RD | RE }, | ||
105 | { insn_dsrl32, M(spec_op, 0, 0, 0, 0, dsrl32_op), RT | RD | RE }, | ||
106 | { insn_dsubu, M(spec_op, 0, 0, 0, 0, dsubu_op), RS | RT | RD }, | ||
107 | { insn_eret, M(cop0_op, cop_op, 0, 0, 0, eret_op), 0 }, | ||
108 | { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM }, | ||
109 | { insn_jal, M(jal_op, 0, 0, 0, 0, 0), JIMM }, | ||
110 | { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, | ||
111 | { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
112 | { insn_ll, M(ll_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
113 | { insn_lld, M(lld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
114 | { insn_lui, M(lui_op, 0, 0, 0, 0, 0), RT | SIMM }, | ||
115 | { insn_lw, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
116 | { insn_mfc0, M(cop0_op, mfc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
117 | { insn_mtc0, M(cop0_op, mtc_op, 0, 0, 0, 0), RT | RD | SET}, | ||
118 | { insn_ori, M(ori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
119 | { insn_rfe, M(cop0_op, cop_op, 0, 0, 0, rfe_op), 0 }, | ||
120 | { insn_sc, M(sc_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
121 | { insn_scd, M(scd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
122 | { insn_sd, M(sd_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
123 | { insn_sll, M(spec_op, 0, 0, 0, 0, sll_op), RT | RD | RE }, | ||
124 | { insn_sra, M(spec_op, 0, 0, 0, 0, sra_op), RT | RD | RE }, | ||
125 | { insn_srl, M(spec_op, 0, 0, 0, 0, srl_op), RT | RD | RE }, | ||
126 | { insn_subu, M(spec_op, 0, 0, 0, 0, subu_op), RS | RT | RD }, | ||
127 | { insn_sw, M(sw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, | ||
128 | { insn_tlbp, M(cop0_op, cop_op, 0, 0, 0, tlbp_op), 0 }, | ||
129 | { insn_tlbwi, M(cop0_op, cop_op, 0, 0, 0, tlbwi_op), 0 }, | ||
130 | { insn_tlbwr, M(cop0_op, cop_op, 0, 0, 0, tlbwr_op), 0 }, | ||
131 | { insn_xor, M(spec_op, 0, 0, 0, 0, xor_op), RS | RT | RD }, | ||
132 | { insn_xori, M(xori_op, 0, 0, 0, 0, 0), RS | RT | UIMM }, | ||
133 | { insn_invalid, 0, 0 } | ||
134 | }; | ||
135 | |||
136 | #undef M | ||
137 | |||
138 | static inline __init u32 build_rs(u32 arg) | ||
139 | { | ||
140 | if (arg & ~RS_MASK) | ||
141 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
142 | |||
143 | return (arg & RS_MASK) << RS_SH; | ||
144 | } | ||
145 | |||
146 | static inline __init u32 build_rt(u32 arg) | ||
147 | { | ||
148 | if (arg & ~RT_MASK) | ||
149 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
150 | |||
151 | return (arg & RT_MASK) << RT_SH; | ||
152 | } | ||
153 | |||
154 | static inline __init u32 build_rd(u32 arg) | ||
155 | { | ||
156 | if (arg & ~RD_MASK) | ||
157 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
158 | |||
159 | return (arg & RD_MASK) << RD_SH; | ||
160 | } | ||
161 | |||
162 | static inline __init u32 build_re(u32 arg) | ||
163 | { | ||
164 | if (arg & ~RE_MASK) | ||
165 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
166 | |||
167 | return (arg & RE_MASK) << RE_SH; | ||
168 | } | ||
169 | |||
170 | static inline __init u32 build_simm(s32 arg) | ||
171 | { | ||
172 | if (arg > 0x7fff || arg < -0x8000) | ||
173 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
174 | |||
175 | return arg & 0xffff; | ||
176 | } | ||
177 | |||
178 | static inline __init u32 build_uimm(u32 arg) | ||
179 | { | ||
180 | if (arg & ~IMM_MASK) | ||
181 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
182 | |||
183 | return arg & IMM_MASK; | ||
184 | } | ||
185 | |||
186 | static inline __init u32 build_bimm(s32 arg) | ||
187 | { | ||
188 | if (arg > 0x1ffff || arg < -0x20000) | ||
189 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
190 | |||
191 | if (arg & 0x3) | ||
192 | printk(KERN_WARNING "Invalid micro-assembler branch target\n"); | ||
193 | |||
194 | return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff); | ||
195 | } | ||
196 | |||
197 | static inline __init u32 build_jimm(u32 arg) | ||
198 | { | ||
199 | if (arg & ~((JIMM_MASK) << 2)) | ||
200 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
201 | |||
202 | return (arg >> 2) & JIMM_MASK; | ||
203 | } | ||
204 | |||
205 | static inline __init u32 build_func(u32 arg) | ||
206 | { | ||
207 | if (arg & ~FUNC_MASK) | ||
208 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
209 | |||
210 | return arg & FUNC_MASK; | ||
211 | } | ||
212 | |||
213 | static inline __init u32 build_set(u32 arg) | ||
214 | { | ||
215 | if (arg & ~SET_MASK) | ||
216 | printk(KERN_WARNING "Micro-assembler field overflow\n"); | ||
217 | |||
218 | return arg & SET_MASK; | ||
219 | } | ||
220 | |||
221 | /* | ||
222 | * The order of opcode arguments is implicitly left to right, | ||
223 | * starting with RS and ending with FUNC or IMM. | ||
224 | */ | ||
225 | static void __init build_insn(u32 **buf, enum opcode opc, ...) | ||
226 | { | ||
227 | struct insn *ip = NULL; | ||
228 | unsigned int i; | ||
229 | va_list ap; | ||
230 | u32 op; | ||
231 | |||
232 | for (i = 0; insn_table[i].opcode != insn_invalid; i++) | ||
233 | if (insn_table[i].opcode == opc) { | ||
234 | ip = &insn_table[i]; | ||
235 | break; | ||
236 | } | ||
237 | |||
238 | if (!ip || (opc == insn_daddiu && r4k_daddiu_bug())) | ||
239 | panic("Unsupported Micro-assembler instruction %d", opc); | ||
240 | |||
241 | op = ip->match; | ||
242 | va_start(ap, opc); | ||
243 | if (ip->fields & RS) | ||
244 | op |= build_rs(va_arg(ap, u32)); | ||
245 | if (ip->fields & RT) | ||
246 | op |= build_rt(va_arg(ap, u32)); | ||
247 | if (ip->fields & RD) | ||
248 | op |= build_rd(va_arg(ap, u32)); | ||
249 | if (ip->fields & RE) | ||
250 | op |= build_re(va_arg(ap, u32)); | ||
251 | if (ip->fields & SIMM) | ||
252 | op |= build_simm(va_arg(ap, s32)); | ||
253 | if (ip->fields & UIMM) | ||
254 | op |= build_uimm(va_arg(ap, u32)); | ||
255 | if (ip->fields & BIMM) | ||
256 | op |= build_bimm(va_arg(ap, s32)); | ||
257 | if (ip->fields & JIMM) | ||
258 | op |= build_jimm(va_arg(ap, u32)); | ||
259 | if (ip->fields & FUNC) | ||
260 | op |= build_func(va_arg(ap, u32)); | ||
261 | if (ip->fields & SET) | ||
262 | op |= build_set(va_arg(ap, u32)); | ||
263 | va_end(ap); | ||
264 | |||
265 | **buf = op; | ||
266 | (*buf)++; | ||
267 | } | ||
268 | |||
269 | #define I_u1u2u3(op) \ | ||
270 | Ip_u1u2u3(op) \ | ||
271 | { \ | ||
272 | build_insn(buf, insn##op, a, b, c); \ | ||
273 | } | ||
274 | |||
275 | #define I_u2u1u3(op) \ | ||
276 | Ip_u2u1u3(op) \ | ||
277 | { \ | ||
278 | build_insn(buf, insn##op, b, a, c); \ | ||
279 | } | ||
280 | |||
281 | #define I_u3u1u2(op) \ | ||
282 | Ip_u3u1u2(op) \ | ||
283 | { \ | ||
284 | build_insn(buf, insn##op, b, c, a); \ | ||
285 | } | ||
286 | |||
287 | #define I_u1u2s3(op) \ | ||
288 | Ip_u1u2s3(op) \ | ||
289 | { \ | ||
290 | build_insn(buf, insn##op, a, b, c); \ | ||
291 | } | ||
292 | |||
293 | #define I_u2s3u1(op) \ | ||
294 | Ip_u2s3u1(op) \ | ||
295 | { \ | ||
296 | build_insn(buf, insn##op, c, a, b); \ | ||
297 | } | ||
298 | |||
299 | #define I_u2u1s3(op) \ | ||
300 | Ip_u2u1s3(op) \ | ||
301 | { \ | ||
302 | build_insn(buf, insn##op, b, a, c); \ | ||
303 | } | ||
304 | |||
305 | #define I_u1u2(op) \ | ||
306 | Ip_u1u2(op) \ | ||
307 | { \ | ||
308 | build_insn(buf, insn##op, a, b); \ | ||
309 | } | ||
310 | |||
311 | #define I_u1s2(op) \ | ||
312 | Ip_u1s2(op) \ | ||
313 | { \ | ||
314 | build_insn(buf, insn##op, a, b); \ | ||
315 | } | ||
316 | |||
317 | #define I_u1(op) \ | ||
318 | Ip_u1(op) \ | ||
319 | { \ | ||
320 | build_insn(buf, insn##op, a); \ | ||
321 | } | ||
322 | |||
323 | #define I_0(op) \ | ||
324 | Ip_0(op) \ | ||
325 | { \ | ||
326 | build_insn(buf, insn##op); \ | ||
327 | } | ||
328 | |||
329 | I_u2u1s3(_addiu) | ||
330 | I_u3u1u2(_addu) | ||
331 | I_u2u1u3(_andi) | ||
332 | I_u3u1u2(_and) | ||
333 | I_u1u2s3(_beq) | ||
334 | I_u1u2s3(_beql) | ||
335 | I_u1s2(_bgez) | ||
336 | I_u1s2(_bgezl) | ||
337 | I_u1s2(_bltz) | ||
338 | I_u1s2(_bltzl) | ||
339 | I_u1u2s3(_bne) | ||
340 | I_u1u2u3(_dmfc0) | ||
341 | I_u1u2u3(_dmtc0) | ||
342 | I_u2u1s3(_daddiu) | ||
343 | I_u3u1u2(_daddu) | ||
344 | I_u2u1u3(_dsll) | ||
345 | I_u2u1u3(_dsll32) | ||
346 | I_u2u1u3(_dsra) | ||
347 | I_u2u1u3(_dsrl) | ||
348 | I_u2u1u3(_dsrl32) | ||
349 | I_u3u1u2(_dsubu) | ||
350 | I_0(_eret) | ||
351 | I_u1(_j) | ||
352 | I_u1(_jal) | ||
353 | I_u1(_jr) | ||
354 | I_u2s3u1(_ld) | ||
355 | I_u2s3u1(_ll) | ||
356 | I_u2s3u1(_lld) | ||
357 | I_u1s2(_lui) | ||
358 | I_u2s3u1(_lw) | ||
359 | I_u1u2u3(_mfc0) | ||
360 | I_u1u2u3(_mtc0) | ||
361 | I_u2u1u3(_ori) | ||
362 | I_0(_rfe) | ||
363 | I_u2s3u1(_sc) | ||
364 | I_u2s3u1(_scd) | ||
365 | I_u2s3u1(_sd) | ||
366 | I_u2u1u3(_sll) | ||
367 | I_u2u1u3(_sra) | ||
368 | I_u2u1u3(_srl) | ||
369 | I_u3u1u2(_subu) | ||
370 | I_u2s3u1(_sw) | ||
371 | I_0(_tlbp) | ||
372 | I_0(_tlbwi) | ||
373 | I_0(_tlbwr) | ||
374 | I_u3u1u2(_xor) | ||
375 | I_u2u1u3(_xori) | ||
376 | |||
377 | /* Handle labels. */ | ||
378 | void __init uasm_build_label(struct uasm_label **lab, u32 *addr, int lid) | ||
379 | { | ||
380 | (*lab)->addr = addr; | ||
381 | (*lab)->lab = lid; | ||
382 | (*lab)++; | ||
383 | } | ||
384 | |||
385 | int __init uasm_in_compat_space_p(long addr) | ||
386 | { | ||
387 | /* Is this address in 32bit compat space? */ | ||
388 | #ifdef CONFIG_64BIT | ||
389 | return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L); | ||
390 | #else | ||
391 | return 1; | ||
392 | #endif | ||
393 | } | ||
394 | |||
395 | int __init uasm_rel_highest(long val) | ||
396 | { | ||
397 | #ifdef CONFIG_64BIT | ||
398 | return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000; | ||
399 | #else | ||
400 | return 0; | ||
401 | #endif | ||
402 | } | ||
403 | |||
404 | int __init uasm_rel_higher(long val) | ||
405 | { | ||
406 | #ifdef CONFIG_64BIT | ||
407 | return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000; | ||
408 | #else | ||
409 | return 0; | ||
410 | #endif | ||
411 | } | ||
412 | |||
413 | int __init uasm_rel_hi(long val) | ||
414 | { | ||
415 | return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000; | ||
416 | } | ||
417 | |||
418 | int __init uasm_rel_lo(long val) | ||
419 | { | ||
420 | return ((val & 0xffff) ^ 0x8000) - 0x8000; | ||
421 | } | ||
422 | |||
423 | void __init UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr) | ||
424 | { | ||
425 | if (!uasm_in_compat_space_p(addr)) { | ||
426 | uasm_i_lui(buf, rs, uasm_rel_highest(addr)); | ||
427 | if (uasm_rel_higher(addr)) | ||
428 | uasm_i_daddiu(buf, rs, rs, uasm_rel_higher(addr)); | ||
429 | if (uasm_rel_hi(addr)) { | ||
430 | uasm_i_dsll(buf, rs, rs, 16); | ||
431 | uasm_i_daddiu(buf, rs, rs, uasm_rel_hi(addr)); | ||
432 | uasm_i_dsll(buf, rs, rs, 16); | ||
433 | } else | ||
434 | uasm_i_dsll32(buf, rs, rs, 0); | ||
435 | } else | ||
436 | uasm_i_lui(buf, rs, uasm_rel_hi(addr)); | ||
437 | } | ||
438 | |||
439 | void __init UASM_i_LA(u32 **buf, unsigned int rs, long addr) | ||
440 | { | ||
441 | UASM_i_LA_mostly(buf, rs, addr); | ||
442 | if (uasm_rel_lo(addr)) { | ||
443 | if (!uasm_in_compat_space_p(addr)) | ||
444 | uasm_i_daddiu(buf, rs, rs, uasm_rel_lo(addr)); | ||
445 | else | ||
446 | uasm_i_addiu(buf, rs, rs, uasm_rel_lo(addr)); | ||
447 | } | ||
448 | } | ||
449 | |||
450 | /* Handle relocations. */ | ||
451 | void __init | ||
452 | uasm_r_mips_pc16(struct uasm_reloc **rel, u32 *addr, int lid) | ||
453 | { | ||
454 | (*rel)->addr = addr; | ||
455 | (*rel)->type = R_MIPS_PC16; | ||
456 | (*rel)->lab = lid; | ||
457 | (*rel)++; | ||
458 | } | ||
459 | |||
460 | static inline void __init | ||
461 | __resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab) | ||
462 | { | ||
463 | long laddr = (long)lab->addr; | ||
464 | long raddr = (long)rel->addr; | ||
465 | |||
466 | switch (rel->type) { | ||
467 | case R_MIPS_PC16: | ||
468 | *rel->addr |= build_bimm(laddr - (raddr + 4)); | ||
469 | break; | ||
470 | |||
471 | default: | ||
472 | panic("Unsupported Micro-assembler relocation %d", | ||
473 | rel->type); | ||
474 | } | ||
475 | } | ||
476 | |||
477 | void __init | ||
478 | uasm_resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab) | ||
479 | { | ||
480 | struct uasm_label *l; | ||
481 | |||
482 | for (; rel->lab != UASM_LABEL_INVALID; rel++) | ||
483 | for (l = lab; l->lab != UASM_LABEL_INVALID; l++) | ||
484 | if (rel->lab == l->lab) | ||
485 | __resolve_relocs(rel, l); | ||
486 | } | ||
487 | |||
488 | void __init | ||
489 | uasm_move_relocs(struct uasm_reloc *rel, u32 *first, u32 *end, long off) | ||
490 | { | ||
491 | for (; rel->lab != UASM_LABEL_INVALID; rel++) | ||
492 | if (rel->addr >= first && rel->addr < end) | ||
493 | rel->addr += off; | ||
494 | } | ||
495 | |||
496 | void __init | ||
497 | uasm_move_labels(struct uasm_label *lab, u32 *first, u32 *end, long off) | ||
498 | { | ||
499 | for (; lab->lab != UASM_LABEL_INVALID; lab++) | ||
500 | if (lab->addr >= first && lab->addr < end) | ||
501 | lab->addr += off; | ||
502 | } | ||
503 | |||
504 | void __init | ||
505 | uasm_copy_handler(struct uasm_reloc *rel, struct uasm_label *lab, u32 *first, | ||
506 | u32 *end, u32 *target) | ||
507 | { | ||
508 | long off = (long)(target - first); | ||
509 | |||
510 | memcpy(target, first, (end - first) * sizeof(u32)); | ||
511 | |||
512 | uasm_move_relocs(rel, first, end, off); | ||
513 | uasm_move_labels(lab, first, end, off); | ||
514 | } | ||
515 | |||
516 | int __init uasm_insn_has_bdelay(struct uasm_reloc *rel, u32 *addr) | ||
517 | { | ||
518 | for (; rel->lab != UASM_LABEL_INVALID; rel++) { | ||
519 | if (rel->addr == addr | ||
520 | && (rel->type == R_MIPS_PC16 | ||
521 | || rel->type == R_MIPS_26)) | ||
522 | return 1; | ||
523 | } | ||
524 | |||
525 | return 0; | ||
526 | } | ||
527 | |||
528 | /* Convenience functions for labeled branches. */ | ||
529 | void __init | ||
530 | uasm_il_bltz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
531 | { | ||
532 | uasm_r_mips_pc16(r, *p, lid); | ||
533 | uasm_i_bltz(p, reg, 0); | ||
534 | } | ||
535 | |||
536 | void __init | ||
537 | uasm_il_b(u32 **p, struct uasm_reloc **r, int lid) | ||
538 | { | ||
539 | uasm_r_mips_pc16(r, *p, lid); | ||
540 | uasm_i_b(p, 0); | ||
541 | } | ||
542 | |||
543 | void __init | ||
544 | uasm_il_beqz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
545 | { | ||
546 | uasm_r_mips_pc16(r, *p, lid); | ||
547 | uasm_i_beqz(p, reg, 0); | ||
548 | } | ||
549 | |||
550 | void __init | ||
551 | uasm_il_beqzl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
552 | { | ||
553 | uasm_r_mips_pc16(r, *p, lid); | ||
554 | uasm_i_beqzl(p, reg, 0); | ||
555 | } | ||
556 | |||
557 | void __init | ||
558 | uasm_il_bnez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
559 | { | ||
560 | uasm_r_mips_pc16(r, *p, lid); | ||
561 | uasm_i_bnez(p, reg, 0); | ||
562 | } | ||
563 | |||
564 | void __init | ||
565 | uasm_il_bgezl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
566 | { | ||
567 | uasm_r_mips_pc16(r, *p, lid); | ||
568 | uasm_i_bgezl(p, reg, 0); | ||
569 | } | ||
570 | |||
571 | void __init | ||
572 | uasm_il_bgez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid) | ||
573 | { | ||
574 | uasm_r_mips_pc16(r, *p, lid); | ||
575 | uasm_i_bgez(p, reg, 0); | ||
576 | } | ||
diff --git a/arch/mips/mm/uasm.h b/arch/mips/mm/uasm.h new file mode 100644 index 000000000000..a10fc1135c76 --- /dev/null +++ b/arch/mips/mm/uasm.h | |||
@@ -0,0 +1,192 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer | ||
7 | * Copyright (C) 2005 Maciej W. Rozycki | ||
8 | * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) | ||
9 | */ | ||
10 | |||
11 | #include <linux/types.h> | ||
12 | |||
13 | #define Ip_u1u2u3(op) \ | ||
14 | void __init \ | ||
15 | uasm_i##op(u32 **buf, unsigned int a, unsigned int b, unsigned int c) | ||
16 | |||
17 | #define Ip_u2u1u3(op) \ | ||
18 | void __init \ | ||
19 | uasm_i##op(u32 **buf, unsigned int a, unsigned int b, unsigned int c) | ||
20 | |||
21 | #define Ip_u3u1u2(op) \ | ||
22 | void __init \ | ||
23 | uasm_i##op(u32 **buf, unsigned int a, unsigned int b, unsigned int c) | ||
24 | |||
25 | #define Ip_u1u2s3(op) \ | ||
26 | void __init \ | ||
27 | uasm_i##op(u32 **buf, unsigned int a, unsigned int b, signed int c) | ||
28 | |||
29 | #define Ip_u2s3u1(op) \ | ||
30 | void __init \ | ||
31 | uasm_i##op(u32 **buf, unsigned int a, signed int b, unsigned int c) | ||
32 | |||
33 | #define Ip_u2u1s3(op) \ | ||
34 | void __init \ | ||
35 | uasm_i##op(u32 **buf, unsigned int a, unsigned int b, signed int c) | ||
36 | |||
37 | #define Ip_u1u2(op) \ | ||
38 | void __init uasm_i##op(u32 **buf, unsigned int a, unsigned int b) | ||
39 | |||
40 | #define Ip_u1s2(op) \ | ||
41 | void __init uasm_i##op(u32 **buf, unsigned int a, signed int b) | ||
42 | |||
43 | #define Ip_u1(op) void __init uasm_i##op(u32 **buf, unsigned int a) | ||
44 | |||
45 | #define Ip_0(op) void __init uasm_i##op(u32 **buf) | ||
46 | |||
47 | Ip_u2u1s3(_addiu); | ||
48 | Ip_u3u1u2(_addu); | ||
49 | Ip_u2u1u3(_andi); | ||
50 | Ip_u3u1u2(_and); | ||
51 | Ip_u1u2s3(_beq); | ||
52 | Ip_u1u2s3(_beql); | ||
53 | Ip_u1s2(_bgez); | ||
54 | Ip_u1s2(_bgezl); | ||
55 | Ip_u1s2(_bltz); | ||
56 | Ip_u1s2(_bltzl); | ||
57 | Ip_u1u2s3(_bne); | ||
58 | Ip_u1u2u3(_dmfc0); | ||
59 | Ip_u1u2u3(_dmtc0); | ||
60 | Ip_u2u1s3(_daddiu); | ||
61 | Ip_u3u1u2(_daddu); | ||
62 | Ip_u2u1u3(_dsll); | ||
63 | Ip_u2u1u3(_dsll32); | ||
64 | Ip_u2u1u3(_dsra); | ||
65 | Ip_u2u1u3(_dsrl); | ||
66 | Ip_u2u1u3(_dsrl32); | ||
67 | Ip_u3u1u2(_dsubu); | ||
68 | Ip_0(_eret); | ||
69 | Ip_u1(_j); | ||
70 | Ip_u1(_jal); | ||
71 | Ip_u1(_jr); | ||
72 | Ip_u2s3u1(_ld); | ||
73 | Ip_u2s3u1(_ll); | ||
74 | Ip_u2s3u1(_lld); | ||
75 | Ip_u1s2(_lui); | ||
76 | Ip_u2s3u1(_lw); | ||
77 | Ip_u1u2u3(_mfc0); | ||
78 | Ip_u1u2u3(_mtc0); | ||
79 | Ip_u2u1u3(_ori); | ||
80 | Ip_0(_rfe); | ||
81 | Ip_u2s3u1(_sc); | ||
82 | Ip_u2s3u1(_scd); | ||
83 | Ip_u2s3u1(_sd); | ||
84 | Ip_u2u1u3(_sll); | ||
85 | Ip_u2u1u3(_sra); | ||
86 | Ip_u2u1u3(_srl); | ||
87 | Ip_u3u1u2(_subu); | ||
88 | Ip_u2s3u1(_sw); | ||
89 | Ip_0(_tlbp); | ||
90 | Ip_0(_tlbwi); | ||
91 | Ip_0(_tlbwr); | ||
92 | Ip_u3u1u2(_xor); | ||
93 | Ip_u2u1u3(_xori); | ||
94 | |||
95 | /* Handle labels. */ | ||
96 | struct uasm_label { | ||
97 | u32 *addr; | ||
98 | int lab; | ||
99 | }; | ||
100 | |||
101 | void __init uasm_build_label(struct uasm_label **lab, u32 *addr, int lid); | ||
102 | #ifdef CONFIG_64BIT | ||
103 | int __init uasm_in_compat_space_p(long addr); | ||
104 | int __init uasm_rel_highest(long val); | ||
105 | int __init uasm_rel_higher(long val); | ||
106 | #endif | ||
107 | int __init uasm_rel_hi(long val); | ||
108 | int __init uasm_rel_lo(long val); | ||
109 | void __init UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr); | ||
110 | void __init UASM_i_LA(u32 **buf, unsigned int rs, long addr); | ||
111 | |||
112 | #define UASM_L_LA(lb) \ | ||
113 | static inline void __init uasm_l##lb(struct uasm_label **lab, u32 *addr) \ | ||
114 | { \ | ||
115 | uasm_build_label(lab, addr, label##lb); \ | ||
116 | } | ||
117 | |||
118 | /* convenience macros for instructions */ | ||
119 | #ifdef CONFIG_64BIT | ||
120 | # define UASM_i_LW(buf, rs, rt, off) uasm_i_ld(buf, rs, rt, off) | ||
121 | # define UASM_i_SW(buf, rs, rt, off) uasm_i_sd(buf, rs, rt, off) | ||
122 | # define UASM_i_SLL(buf, rs, rt, sh) uasm_i_dsll(buf, rs, rt, sh) | ||
123 | # define UASM_i_SRA(buf, rs, rt, sh) uasm_i_dsra(buf, rs, rt, sh) | ||
124 | # define UASM_i_SRL(buf, rs, rt, sh) uasm_i_dsrl(buf, rs, rt, sh) | ||
125 | # define UASM_i_MFC0(buf, rt, rd...) uasm_i_dmfc0(buf, rt, rd) | ||
126 | # define UASM_i_MTC0(buf, rt, rd...) uasm_i_dmtc0(buf, rt, rd) | ||
127 | # define UASM_i_ADDIU(buf, rs, rt, val) uasm_i_daddiu(buf, rs, rt, val) | ||
128 | # define UASM_i_ADDU(buf, rs, rt, rd) uasm_i_daddu(buf, rs, rt, rd) | ||
129 | # define UASM_i_SUBU(buf, rs, rt, rd) uasm_i_dsubu(buf, rs, rt, rd) | ||
130 | # define UASM_i_LL(buf, rs, rt, off) uasm_i_lld(buf, rs, rt, off) | ||
131 | # define UASM_i_SC(buf, rs, rt, off) uasm_i_scd(buf, rs, rt, off) | ||
132 | #else | ||
133 | # define UASM_i_LW(buf, rs, rt, off) uasm_i_lw(buf, rs, rt, off) | ||
134 | # define UASM_i_SW(buf, rs, rt, off) uasm_i_sw(buf, rs, rt, off) | ||
135 | # define UASM_i_SLL(buf, rs, rt, sh) uasm_i_sll(buf, rs, rt, sh) | ||
136 | # define UASM_i_SRA(buf, rs, rt, sh) uasm_i_sra(buf, rs, rt, sh) | ||
137 | # define UASM_i_SRL(buf, rs, rt, sh) uasm_i_srl(buf, rs, rt, sh) | ||
138 | # define UASM_i_MFC0(buf, rt, rd...) uasm_i_mfc0(buf, rt, rd) | ||
139 | # define UASM_i_MTC0(buf, rt, rd...) uasm_i_mtc0(buf, rt, rd) | ||
140 | # define UASM_i_ADDIU(buf, rs, rt, val) uasm_i_addiu(buf, rs, rt, val) | ||
141 | # define UASM_i_ADDU(buf, rs, rt, rd) uasm_i_addu(buf, rs, rt, rd) | ||
142 | # define UASM_i_SUBU(buf, rs, rt, rd) uasm_i_subu(buf, rs, rt, rd) | ||
143 | # define UASM_i_LL(buf, rs, rt, off) uasm_i_ll(buf, rs, rt, off) | ||
144 | # define UASM_i_SC(buf, rs, rt, off) uasm_i_sc(buf, rs, rt, off) | ||
145 | #endif | ||
146 | |||
147 | #define uasm_i_b(buf, off) uasm_i_beq(buf, 0, 0, off) | ||
148 | #define uasm_i_beqz(buf, rs, off) uasm_i_beq(buf, rs, 0, off) | ||
149 | #define uasm_i_beqzl(buf, rs, off) uasm_i_beql(buf, rs, 0, off) | ||
150 | #define uasm_i_bnez(buf, rs, off) uasm_i_bne(buf, rs, 0, off) | ||
151 | #define uasm_i_bnezl(buf, rs, off) uasm_i_bnel(buf, rs, 0, off) | ||
152 | #define uasm_i_move(buf, a, b) UASM_i_ADDU(buf, a, 0, b) | ||
153 | #define uasm_i_nop(buf) uasm_i_sll(buf, 0, 0, 0) | ||
154 | #define uasm_i_ssnop(buf) uasm_i_sll(buf, 0, 0, 1) | ||
155 | #define uasm_i_ehb(buf) uasm_i_sll(buf, 0, 0, 3) | ||
156 | |||
157 | /* Handle relocations. */ | ||
158 | struct uasm_reloc { | ||
159 | u32 *addr; | ||
160 | unsigned int type; | ||
161 | int lab; | ||
162 | }; | ||
163 | |||
164 | /* This is zero so we can use zeroed label arrays. */ | ||
165 | #define UASM_LABEL_INVALID 0 | ||
166 | |||
167 | void __init uasm_r_mips_pc16(struct uasm_reloc **rel, u32 *addr, int lid); | ||
168 | void __init | ||
169 | uasm_resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab); | ||
170 | void __init | ||
171 | uasm_move_relocs(struct uasm_reloc *rel, u32 *first, u32 *end, long off); | ||
172 | void __init | ||
173 | uasm_move_labels(struct uasm_label *lab, u32 *first, u32 *end, long off); | ||
174 | void __init | ||
175 | uasm_copy_handler(struct uasm_reloc *rel, struct uasm_label *lab, u32 *first, | ||
176 | u32 *end, u32 *target); | ||
177 | int __init uasm_insn_has_bdelay(struct uasm_reloc *rel, u32 *addr); | ||
178 | |||
179 | /* Convenience functions for labeled branches. */ | ||
180 | void __init | ||
181 | uasm_il_bltz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
182 | void __init uasm_il_b(u32 **p, struct uasm_reloc **r, int lid); | ||
183 | void __init | ||
184 | uasm_il_beqz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
185 | void __init | ||
186 | uasm_il_beqzl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
187 | void __init | ||
188 | uasm_il_bnez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
189 | void __init | ||
190 | uasm_il_bgezl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
191 | void __init | ||
192 | uasm_il_bgez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid); | ||
diff --git a/arch/mips/sgi-ip27/ip27-hubio.c b/arch/mips/sgi-ip27/ip27-hubio.c index 524b371f9397..a1fa4abb3f6a 100644 --- a/arch/mips/sgi-ip27/ip27-hubio.c +++ b/arch/mips/sgi-ip27/ip27-hubio.c | |||
@@ -168,7 +168,7 @@ static void hub_set_piomode(nasid_t nasid) | |||
168 | } | 168 | } |
169 | 169 | ||
170 | /* | 170 | /* |
171 | * hub_pio_init - PIO-related hub initalization | 171 | * hub_pio_init - PIO-related hub initialization |
172 | * | 172 | * |
173 | * @hub: hubinfo structure for our hub | 173 | * @hub: hubinfo structure for our hub |
174 | */ | 174 | */ |
diff --git a/arch/parisc/Kconfig b/arch/parisc/Kconfig index 2b649c46631c..028d8a0fdbfd 100644 --- a/arch/parisc/Kconfig +++ b/arch/parisc/Kconfig | |||
@@ -7,6 +7,7 @@ mainmenu "Linux/PA-RISC Kernel Configuration" | |||
7 | 7 | ||
8 | config PARISC | 8 | config PARISC |
9 | def_bool y | 9 | def_bool y |
10 | select HAVE_OPROFILE | ||
10 | help | 11 | help |
11 | The PA-RISC microprocessor is designed by Hewlett-Packard and used | 12 | The PA-RISC microprocessor is designed by Hewlett-Packard and used |
12 | in many of their workstations & servers (HP9000 700 and 800 series, | 13 | in many of their workstations & servers (HP9000 700 and 800 series, |
@@ -205,9 +206,8 @@ config SMP | |||
205 | singleprocessor machines. On a singleprocessor machine, the kernel | 206 | singleprocessor machines. On a singleprocessor machine, the kernel |
206 | will run faster if you say N here. | 207 | will run faster if you say N here. |
207 | 208 | ||
208 | See also the <file:Documentation/smp.txt>, | 209 | See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO |
209 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available | 210 | available at <http://www.tldp.org/docs.html#howto>. |
210 | at <http://www.tldp.org/docs.html#howto>. | ||
211 | 211 | ||
212 | If you don't know what to do here, say N. | 212 | If you don't know what to do here, say N. |
213 | 213 | ||
@@ -272,8 +272,6 @@ source "drivers/Kconfig" | |||
272 | 272 | ||
273 | source "fs/Kconfig" | 273 | source "fs/Kconfig" |
274 | 274 | ||
275 | source "kernel/Kconfig.instrumentation" | ||
276 | |||
277 | source "arch/parisc/Kconfig.debug" | 275 | source "arch/parisc/Kconfig.debug" |
278 | 276 | ||
279 | source "security/Kconfig" | 277 | source "security/Kconfig" |
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index 395bbce64993..e10d25d2d9c9 100644 --- a/arch/parisc/kernel/cache.c +++ b/arch/parisc/kernel/cache.c | |||
@@ -305,7 +305,7 @@ flush_user_cache_page_non_current(struct vm_area_struct *vma, | |||
305 | /* save the current process space and pgd */ | 305 | /* save the current process space and pgd */ |
306 | unsigned long space = mfsp(3), pgd = mfctl(25); | 306 | unsigned long space = mfsp(3), pgd = mfctl(25); |
307 | 307 | ||
308 | /* we don't mind taking interrups since they may not | 308 | /* we don't mind taking interrupts since they may not |
309 | * do anything with user space, but we can't | 309 | * do anything with user space, but we can't |
310 | * be preempted here */ | 310 | * be preempted here */ |
311 | preempt_disable(); | 311 | preempt_disable(); |
diff --git a/arch/parisc/kernel/hardware.c b/arch/parisc/kernel/hardware.c index 04848b2b381c..84b9611a9228 100644 --- a/arch/parisc/kernel/hardware.c +++ b/arch/parisc/kernel/hardware.c | |||
@@ -1187,7 +1187,7 @@ static struct hp_hardware hp_hardware_list[] __devinitdata = { | |||
1187 | {HPHW_FIO, 0x005, 0x000A9, 0x00, "AllegroLow Core PCI USB KB"}, | 1187 | {HPHW_FIO, 0x005, 0x000A9, 0x00, "AllegroLow Core PCI USB KB"}, |
1188 | {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI SuperIO RS-232"}, | 1188 | {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI SuperIO RS-232"}, |
1189 | {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI USB KB"}, | 1189 | {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI USB KB"}, |
1190 | {HPHW_FIO, 0x007, 0x000A9, 0x0, "Miscelaneous PCI Plug-in"}, | 1190 | {HPHW_FIO, 0x007, 0x000A9, 0x0, "Miscellaneous PCI Plug-in"}, |
1191 | {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI SuperIO RS-232"}, | 1191 | {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI SuperIO RS-232"}, |
1192 | {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI USB KB"}, | 1192 | {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI USB KB"}, |
1193 | {HPHW_FIO, 0x004, 0x00320, 0x0, "Metheus Frame Buffer"}, | 1193 | {HPHW_FIO, 0x004, 0x00320, 0x0, "Metheus Frame Buffer"}, |
diff --git a/arch/parisc/kernel/signal.c b/arch/parisc/kernel/signal.c index 2ce3806f02e1..58fccc96d003 100644 --- a/arch/parisc/kernel/signal.c +++ b/arch/parisc/kernel/signal.c | |||
@@ -333,7 +333,7 @@ setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
333 | flush_user_icache_range((unsigned long) &frame->tramp[0], | 333 | flush_user_icache_range((unsigned long) &frame->tramp[0], |
334 | (unsigned long) &frame->tramp[TRAMP_SIZE]); | 334 | (unsigned long) &frame->tramp[TRAMP_SIZE]); |
335 | 335 | ||
336 | /* TRAMP Words 0-4, Lenght 5 = SIGRESTARTBLOCK_TRAMP | 336 | /* TRAMP Words 0-4, Length 5 = SIGRESTARTBLOCK_TRAMP |
337 | * TRAMP Words 5-9, Length 4 = SIGRETURN_TRAMP | 337 | * TRAMP Words 5-9, Length 4 = SIGRETURN_TRAMP |
338 | * So the SIGRETURN_TRAMP is at the end of SIGRESTARTBLOCK_TRAMP | 338 | * So the SIGRETURN_TRAMP is at the end of SIGRESTARTBLOCK_TRAMP |
339 | */ | 339 | */ |
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 88ea64bd991a..1348bbc92510 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -42,7 +42,7 @@ config GENERIC_HARDIRQS | |||
42 | bool | 42 | bool |
43 | default y | 43 | default y |
44 | 44 | ||
45 | config ARCH_SETS_UP_PER_CPU_AREA | 45 | config HAVE_SETUP_PER_CPU_AREA |
46 | def_bool PPC64 | 46 | def_bool PPC64 |
47 | 47 | ||
48 | config IRQ_PER_CPU | 48 | config IRQ_PER_CPU |
@@ -87,6 +87,8 @@ config ARCH_NO_VIRT_TO_BUS | |||
87 | config PPC | 87 | config PPC |
88 | bool | 88 | bool |
89 | default y | 89 | default y |
90 | select HAVE_OPROFILE | ||
91 | select HAVE_KPROBES | ||
90 | 92 | ||
91 | config EARLY_PRINTK | 93 | config EARLY_PRINTK |
92 | bool | 94 | bool |
@@ -151,11 +153,25 @@ config DEFAULT_UIMAGE | |||
151 | config REDBOOT | 153 | config REDBOOT |
152 | bool | 154 | bool |
153 | 155 | ||
154 | config PPC64_SWSUSP | 156 | config HIBERNATE_32 |
155 | bool | 157 | bool |
156 | depends on PPC64 && (BROKEN || (PPC_PMAC64 && EXPERIMENTAL)) | 158 | depends on (PPC_PMAC && !SMP) || BROKEN |
157 | default y | 159 | default y |
158 | 160 | ||
161 | config HIBERNATE_64 | ||
162 | bool | ||
163 | depends on BROKEN || (PPC_PMAC64 && EXPERIMENTAL) | ||
164 | default y | ||
165 | |||
166 | config ARCH_HIBERNATION_POSSIBLE | ||
167 | bool | ||
168 | depends on (PPC64 && HIBERNATE_64) || (PPC32 && HIBERNATE_32) | ||
169 | default y | ||
170 | |||
171 | config ARCH_SUSPEND_POSSIBLE | ||
172 | def_bool y | ||
173 | depends on ADB_PMU || PPC_EFIKA || PPC_LITE5200 | ||
174 | |||
159 | config PPC_DCR_NATIVE | 175 | config PPC_DCR_NATIVE |
160 | bool | 176 | bool |
161 | default n | 177 | default n |
@@ -240,6 +256,9 @@ config IOMMU_VMERGE | |||
240 | 256 | ||
241 | Most drivers don't have this problem; it is safe to say Y here. | 257 | Most drivers don't have this problem; it is safe to say Y here. |
242 | 258 | ||
259 | config IOMMU_HELPER | ||
260 | def_bool PPC64 | ||
261 | |||
243 | config HOTPLUG_CPU | 262 | config HOTPLUG_CPU |
244 | bool "Support for enabling/disabling CPUs" | 263 | bool "Support for enabling/disabling CPUs" |
245 | depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC) | 264 | depends on SMP && HOTPLUG && EXPERIMENTAL && (PPC_PSERIES || PPC_PMAC) |
@@ -391,6 +410,10 @@ config CMDLINE | |||
391 | most cases you will need to specify the root device here. | 410 | most cases you will need to specify the root device here. |
392 | 411 | ||
393 | if !44x || BROKEN | 412 | if !44x || BROKEN |
413 | config ARCH_WANTS_FREEZER_CONTROL | ||
414 | def_bool y | ||
415 | depends on ADB_PMU | ||
416 | |||
394 | source kernel/power/Kconfig | 417 | source kernel/power/Kconfig |
395 | endif | 418 | endif |
396 | 419 | ||
@@ -695,8 +718,6 @@ source "arch/powerpc/sysdev/qe_lib/Kconfig" | |||
695 | 718 | ||
696 | source "lib/Kconfig" | 719 | source "lib/Kconfig" |
697 | 720 | ||
698 | source "kernel/Kconfig.instrumentation" | ||
699 | |||
700 | source "arch/powerpc/Kconfig.debug" | 721 | source "arch/powerpc/Kconfig.debug" |
701 | 722 | ||
702 | source "security/Kconfig" | 723 | source "security/Kconfig" |
diff --git a/arch/powerpc/boot/dts/adder875-redboot.dts b/arch/powerpc/boot/dts/adder875-redboot.dts index 930bfb3894eb..28e9cd3d7a21 100644 --- a/arch/powerpc/boot/dts/adder875-redboot.dts +++ b/arch/powerpc/boot/dts/adder875-redboot.dts | |||
@@ -151,6 +151,7 @@ | |||
151 | compatible = "fsl,mpc875-brg", | 151 | compatible = "fsl,mpc875-brg", |
152 | "fsl,cpm1-brg", | 152 | "fsl,cpm1-brg", |
153 | "fsl,cpm-brg"; | 153 | "fsl,cpm-brg"; |
154 | clock-frequency = <50000000>; | ||
154 | reg = <0x9f0 0x10>; | 155 | reg = <0x9f0 0x10>; |
155 | }; | 156 | }; |
156 | 157 | ||
diff --git a/arch/powerpc/boot/dts/adder875-uboot.dts b/arch/powerpc/boot/dts/adder875-uboot.dts index 0197242dacfb..54fb60ec03e5 100644 --- a/arch/powerpc/boot/dts/adder875-uboot.dts +++ b/arch/powerpc/boot/dts/adder875-uboot.dts | |||
@@ -150,6 +150,7 @@ | |||
150 | compatible = "fsl,mpc875-brg", | 150 | compatible = "fsl,mpc875-brg", |
151 | "fsl,cpm1-brg", | 151 | "fsl,cpm1-brg", |
152 | "fsl,cpm-brg"; | 152 | "fsl,cpm-brg"; |
153 | clock-frequency = <50000000>; | ||
153 | reg = <0x9f0 0x10>; | 154 | reg = <0x9f0 0x10>; |
154 | }; | 155 | }; |
155 | 156 | ||
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index 2d6653fe72ff..e1f0dca8ac39 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
@@ -118,6 +118,10 @@ | |||
118 | interrupts = <14 0x8>; | 118 | interrupts = <14 0x8>; |
119 | interrupt-parent = <&ipic>; | 119 | interrupt-parent = <&ipic>; |
120 | dfsrr; | 120 | dfsrr; |
121 | rtc@68 { | ||
122 | compatible = "dallas,ds1339"; | ||
123 | reg = <0x68>; | ||
124 | }; | ||
121 | }; | 125 | }; |
122 | 126 | ||
123 | i2c@3100 { | 127 | i2c@3100 { |
diff --git a/arch/powerpc/boot/dts/mpc8315erdb.dts b/arch/powerpc/boot/dts/mpc8315erdb.dts index b582032ba3d6..d7a1ececa30f 100644 --- a/arch/powerpc/boot/dts/mpc8315erdb.dts +++ b/arch/powerpc/boot/dts/mpc8315erdb.dts | |||
@@ -96,7 +96,7 @@ | |||
96 | #address-cells = <1>; | 96 | #address-cells = <1>; |
97 | #size-cells = <1>; | 97 | #size-cells = <1>; |
98 | device_type = "soc"; | 98 | device_type = "soc"; |
99 | compatible = "simple-bus"; | 99 | compatible = "fsl,mpc8315-immr", "simple-bus"; |
100 | ranges = <0 0xe0000000 0x00100000>; | 100 | ranges = <0 0xe0000000 0x00100000>; |
101 | reg = <0xe0000000 0x00000200>; | 101 | reg = <0xe0000000 0x00000200>; |
102 | bus-frequency = <0>; | 102 | bus-frequency = <0>; |
diff --git a/arch/powerpc/boot/dts/mpc834x_mds.dts b/arch/powerpc/boot/dts/mpc834x_mds.dts index 7480edae85ed..0199c5c548d8 100644 --- a/arch/powerpc/boot/dts/mpc834x_mds.dts +++ b/arch/powerpc/boot/dts/mpc834x_mds.dts | |||
@@ -332,7 +332,7 @@ | |||
332 | 0xc000 0x0 0x0 0x3 &ipic 23 0x8 | 332 | 0xc000 0x0 0x0 0x3 &ipic 23 0x8 |
333 | 0xc000 0x0 0x0 0x4 &ipic 20 0x8>; | 333 | 0xc000 0x0 0x0 0x4 &ipic 20 0x8>; |
334 | interrupt-parent = <&ipic>; | 334 | interrupt-parent = <&ipic>; |
335 | interrupts = <66 0x8>; | 335 | interrupts = <67 0x8>; |
336 | bus-range = <0 0>; | 336 | bus-range = <0 0>; |
337 | ranges = <0x02000000 0x0 0xb0000000 0xb0000000 0x0 0x10000000 | 337 | ranges = <0x02000000 0x0 0xb0000000 0xb0000000 0x0 0x10000000 |
338 | 0x42000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000 | 338 | 0x42000000 0x0 0xa0000000 0xa0000000 0x0 0x10000000 |
diff --git a/arch/powerpc/boot/dts/mpc8572ds.dts b/arch/powerpc/boot/dts/mpc8572ds.dts index 813c259abbe5..db37214aee37 100644 --- a/arch/powerpc/boot/dts/mpc8572ds.dts +++ b/arch/powerpc/boot/dts/mpc8572ds.dts | |||
@@ -42,6 +42,18 @@ | |||
42 | bus-frequency = <0>; | 42 | bus-frequency = <0>; |
43 | clock-frequency = <0>; | 43 | clock-frequency = <0>; |
44 | }; | 44 | }; |
45 | |||
46 | PowerPC,8572@1 { | ||
47 | device_type = "cpu"; | ||
48 | reg = <1>; | ||
49 | d-cache-line-size = <20>; // 32 bytes | ||
50 | i-cache-line-size = <20>; // 32 bytes | ||
51 | d-cache-size = <8000>; // L1, 32K | ||
52 | i-cache-size = <8000>; // L1, 32K | ||
53 | timebase-frequency = <0>; | ||
54 | bus-frequency = <0>; | ||
55 | clock-frequency = <0>; | ||
56 | }; | ||
45 | }; | 57 | }; |
46 | 58 | ||
47 | memory { | 59 | memory { |
diff --git a/arch/powerpc/boot/dts/mpc885ads.dts b/arch/powerpc/boot/dts/mpc885ads.dts index 8848e637293e..d84a012c2aaf 100644 --- a/arch/powerpc/boot/dts/mpc885ads.dts +++ b/arch/powerpc/boot/dts/mpc885ads.dts | |||
@@ -166,6 +166,7 @@ | |||
166 | compatible = "fsl,mpc885-brg", | 166 | compatible = "fsl,mpc885-brg", |
167 | "fsl,cpm1-brg", | 167 | "fsl,cpm1-brg", |
168 | "fsl,cpm-brg"; | 168 | "fsl,cpm-brg"; |
169 | clock-frequency = <0>; | ||
169 | reg = <9f0 10>; | 170 | reg = <9f0 10>; |
170 | }; | 171 | }; |
171 | 172 | ||
diff --git a/arch/powerpc/boot/dts/storcenter.dts b/arch/powerpc/boot/dts/storcenter.dts index 2204874ac5f3..5893816c0bce 100644 --- a/arch/powerpc/boot/dts/storcenter.dts +++ b/arch/powerpc/boot/dts/storcenter.dts | |||
@@ -15,7 +15,7 @@ | |||
15 | 15 | ||
16 | / { | 16 | / { |
17 | model = "StorCenter"; | 17 | model = "StorCenter"; |
18 | compatible = "storcenter"; | 18 | compatible = "iomega,storcenter"; |
19 | #address-cells = <1>; | 19 | #address-cells = <1>; |
20 | #size-cells = <1>; | 20 | #size-cells = <1>; |
21 | 21 | ||
@@ -62,12 +62,12 @@ | |||
62 | #size-cells = <0>; | 62 | #size-cells = <0>; |
63 | compatible = "fsl-i2c"; | 63 | compatible = "fsl-i2c"; |
64 | reg = <0x3000 0x100>; | 64 | reg = <0x3000 0x100>; |
65 | interrupts = <5 2>; | 65 | interrupts = <17 2>; |
66 | interrupt-parent = <&mpic>; | 66 | interrupt-parent = <&mpic>; |
67 | 67 | ||
68 | rtc@68 { | 68 | rtc@68 { |
69 | compatible = "dallas,ds1337"; | 69 | compatible = "dallas,ds1337"; |
70 | reg = <68>; | 70 | reg = <0x68>; |
71 | }; | 71 | }; |
72 | }; | 72 | }; |
73 | 73 | ||
@@ -78,7 +78,7 @@ | |||
78 | reg = <0x4500 0x20>; | 78 | reg = <0x4500 0x20>; |
79 | clock-frequency = <97553800>; /* Hz */ | 79 | clock-frequency = <97553800>; /* Hz */ |
80 | current-speed = <115200>; | 80 | current-speed = <115200>; |
81 | interrupts = <9 2>; | 81 | interrupts = <25 2>; |
82 | interrupt-parent = <&mpic>; | 82 | interrupt-parent = <&mpic>; |
83 | }; | 83 | }; |
84 | 84 | ||
@@ -89,7 +89,7 @@ | |||
89 | reg = <0x4600 0x20>; | 89 | reg = <0x4600 0x20>; |
90 | clock-frequency = <97553800>; /* Hz */ | 90 | clock-frequency = <97553800>; /* Hz */ |
91 | current-speed = <9600>; | 91 | current-speed = <9600>; |
92 | interrupts = <10 2>; | 92 | interrupts = <26 2>; |
93 | interrupt-parent = <&mpic>; | 93 | interrupt-parent = <&mpic>; |
94 | }; | 94 | }; |
95 | 95 | ||
@@ -136,6 +136,6 @@ | |||
136 | }; | 136 | }; |
137 | 137 | ||
138 | chosen { | 138 | chosen { |
139 | linux,stdout-path = "/soc/serial@4500"; | 139 | linux,stdout-path = &serial0; |
140 | }; | 140 | }; |
141 | }; | 141 | }; |
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 31bdbf3f7566..a9807f083bc4 100644 --- a/arch/powerpc/configs/mpc83xx_defconfig +++ b/arch/powerpc/configs/mpc83xx_defconfig | |||
@@ -186,7 +186,7 @@ CONFIG_PREEMPT_NONE=y | |||
186 | # CONFIG_PREEMPT is not set | 186 | # CONFIG_PREEMPT is not set |
187 | CONFIG_BINFMT_ELF=y | 187 | CONFIG_BINFMT_ELF=y |
188 | # CONFIG_BINFMT_MISC is not set | 188 | # CONFIG_BINFMT_MISC is not set |
189 | # CONFIG_MATH_EMULATION is not set | 189 | CONFIG_MATH_EMULATION=y |
190 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | 190 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y |
191 | CONFIG_ARCH_FLATMEM_ENABLE=y | 191 | CONFIG_ARCH_FLATMEM_ENABLE=y |
192 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 192 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
@@ -416,14 +416,14 @@ CONFIG_PHYLIB=y | |||
416 | # MII PHY device drivers | 416 | # MII PHY device drivers |
417 | # | 417 | # |
418 | CONFIG_MARVELL_PHY=y | 418 | CONFIG_MARVELL_PHY=y |
419 | # CONFIG_DAVICOM_PHY is not set | 419 | CONFIG_DAVICOM_PHY=y |
420 | # CONFIG_QSEMI_PHY is not set | 420 | # CONFIG_QSEMI_PHY is not set |
421 | # CONFIG_LXT_PHY is not set | 421 | # CONFIG_LXT_PHY is not set |
422 | # CONFIG_CICADA_PHY is not set | 422 | # CONFIG_CICADA_PHY is not set |
423 | # CONFIG_VITESSE_PHY is not set | 423 | CONFIG_VITESSE_PHY=y |
424 | # CONFIG_SMSC_PHY is not set | 424 | # CONFIG_SMSC_PHY is not set |
425 | # CONFIG_BROADCOM_PHY is not set | 425 | # CONFIG_BROADCOM_PHY is not set |
426 | # CONFIG_ICPLUS_PHY is not set | 426 | CONFIG_ICPLUS_PHY=y |
427 | # CONFIG_FIXED_PHY is not set | 427 | # CONFIG_FIXED_PHY is not set |
428 | # CONFIG_MDIO_BITBANG is not set | 428 | # CONFIG_MDIO_BITBANG is not set |
429 | CONFIG_NET_ETHERNET=y | 429 | CONFIG_NET_ETHERNET=y |
@@ -436,7 +436,7 @@ CONFIG_MII=y | |||
436 | CONFIG_NETDEV_1000=y | 436 | CONFIG_NETDEV_1000=y |
437 | CONFIG_GIANFAR=y | 437 | CONFIG_GIANFAR=y |
438 | # CONFIG_GFAR_NAPI is not set | 438 | # CONFIG_GFAR_NAPI is not set |
439 | # CONFIG_UCC_GETH is not set | 439 | CONFIG_UCC_GETH=y |
440 | CONFIG_NETDEV_10000=y | 440 | CONFIG_NETDEV_10000=y |
441 | 441 | ||
442 | # | 442 | # |
diff --git a/arch/powerpc/kernel/asm-offsets.c b/arch/powerpc/kernel/asm-offsets.c index ed083feaf6f9..e6e49289f788 100644 --- a/arch/powerpc/kernel/asm-offsets.c +++ b/arch/powerpc/kernel/asm-offsets.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/mman.h> | 22 | #include <linux/mman.h> |
23 | #include <linux/mm.h> | 23 | #include <linux/mm.h> |
24 | #include <linux/suspend.h> | 24 | #include <linux/suspend.h> |
25 | #include <linux/hrtimer.h> | ||
25 | #ifdef CONFIG_PPC64 | 26 | #ifdef CONFIG_PPC64 |
26 | #include <linux/time.h> | 27 | #include <linux/time.h> |
27 | #include <linux/hardirq.h> | 28 | #include <linux/hardirq.h> |
@@ -312,7 +313,7 @@ int main(void) | |||
312 | DEFINE(CLOCK_REALTIME, CLOCK_REALTIME); | 313 | DEFINE(CLOCK_REALTIME, CLOCK_REALTIME); |
313 | DEFINE(CLOCK_MONOTONIC, CLOCK_MONOTONIC); | 314 | DEFINE(CLOCK_MONOTONIC, CLOCK_MONOTONIC); |
314 | DEFINE(NSEC_PER_SEC, NSEC_PER_SEC); | 315 | DEFINE(NSEC_PER_SEC, NSEC_PER_SEC); |
315 | DEFINE(CLOCK_REALTIME_RES, TICK_NSEC); | 316 | DEFINE(CLOCK_REALTIME_RES, (KTIME_MONOTONIC_RES).tv64); |
316 | 317 | ||
317 | #ifdef CONFIG_BUG | 318 | #ifdef CONFIG_BUG |
318 | DEFINE(BUG_ENTRY_SIZE, sizeof(struct bug_entry)); | 319 | DEFINE(BUG_ENTRY_SIZE, sizeof(struct bug_entry)); |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index a4c2771b5e62..2a8f5cc5184f 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -959,6 +959,9 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
959 | .icache_bsize = 32, | 959 | .icache_bsize = 32, |
960 | .dcache_bsize = 32, | 960 | .dcache_bsize = 32, |
961 | .cpu_setup = __setup_cpu_603, | 961 | .cpu_setup = __setup_cpu_603, |
962 | .num_pmcs = 4, | ||
963 | .oprofile_cpu_type = "ppc/e300", | ||
964 | .oprofile_type = PPC_OPROFILE_FSL_EMB, | ||
962 | .platform = "ppc603", | 965 | .platform = "ppc603", |
963 | }, | 966 | }, |
964 | { /* e300c4 (e300c1, plus one IU) */ | 967 | { /* e300c4 (e300c1, plus one IU) */ |
@@ -971,6 +974,9 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
971 | .dcache_bsize = 32, | 974 | .dcache_bsize = 32, |
972 | .cpu_setup = __setup_cpu_603, | 975 | .cpu_setup = __setup_cpu_603, |
973 | .machine_check = machine_check_generic, | 976 | .machine_check = machine_check_generic, |
977 | .num_pmcs = 4, | ||
978 | .oprofile_cpu_type = "ppc/e300", | ||
979 | .oprofile_type = PPC_OPROFILE_FSL_EMB, | ||
974 | .platform = "ppc603", | 980 | .platform = "ppc603", |
975 | }, | 981 | }, |
976 | { /* default match, we assume split I/D cache & TB (non-601)... */ | 982 | { /* default match, we assume split I/D cache & TB (non-601)... */ |
@@ -1435,7 +1441,7 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1435 | .dcache_bsize = 32, | 1441 | .dcache_bsize = 32, |
1436 | .num_pmcs = 4, | 1442 | .num_pmcs = 4, |
1437 | .oprofile_cpu_type = "ppc/e500", | 1443 | .oprofile_cpu_type = "ppc/e500", |
1438 | .oprofile_type = PPC_OPROFILE_BOOKE, | 1444 | .oprofile_type = PPC_OPROFILE_FSL_EMB, |
1439 | .machine_check = machine_check_e500, | 1445 | .machine_check = machine_check_e500, |
1440 | .platform = "ppc8540", | 1446 | .platform = "ppc8540", |
1441 | }, | 1447 | }, |
@@ -1453,7 +1459,7 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1453 | .dcache_bsize = 32, | 1459 | .dcache_bsize = 32, |
1454 | .num_pmcs = 4, | 1460 | .num_pmcs = 4, |
1455 | .oprofile_cpu_type = "ppc/e500", | 1461 | .oprofile_cpu_type = "ppc/e500", |
1456 | .oprofile_type = PPC_OPROFILE_BOOKE, | 1462 | .oprofile_type = PPC_OPROFILE_FSL_EMB, |
1457 | .machine_check = machine_check_e500, | 1463 | .machine_check = machine_check_e500, |
1458 | .platform = "ppc8548", | 1464 | .platform = "ppc8548", |
1459 | }, | 1465 | }, |
diff --git a/arch/powerpc/kernel/dma_64.c b/arch/powerpc/kernel/dma_64.c index 84239076a5b8..3a317cb0636a 100644 --- a/arch/powerpc/kernel/dma_64.c +++ b/arch/powerpc/kernel/dma_64.c | |||
@@ -31,8 +31,8 @@ static inline unsigned long device_to_mask(struct device *dev) | |||
31 | static void *dma_iommu_alloc_coherent(struct device *dev, size_t size, | 31 | static void *dma_iommu_alloc_coherent(struct device *dev, size_t size, |
32 | dma_addr_t *dma_handle, gfp_t flag) | 32 | dma_addr_t *dma_handle, gfp_t flag) |
33 | { | 33 | { |
34 | return iommu_alloc_coherent(dev->archdata.dma_data, size, dma_handle, | 34 | return iommu_alloc_coherent(dev, dev->archdata.dma_data, size, |
35 | device_to_mask(dev), flag, | 35 | dma_handle, device_to_mask(dev), flag, |
36 | dev->archdata.numa_node); | 36 | dev->archdata.numa_node); |
37 | } | 37 | } |
38 | 38 | ||
@@ -52,7 +52,7 @@ static dma_addr_t dma_iommu_map_single(struct device *dev, void *vaddr, | |||
52 | size_t size, | 52 | size_t size, |
53 | enum dma_data_direction direction) | 53 | enum dma_data_direction direction) |
54 | { | 54 | { |
55 | return iommu_map_single(dev->archdata.dma_data, vaddr, size, | 55 | return iommu_map_single(dev, dev->archdata.dma_data, vaddr, size, |
56 | device_to_mask(dev), direction); | 56 | device_to_mask(dev), direction); |
57 | } | 57 | } |
58 | 58 | ||
@@ -68,7 +68,7 @@ static void dma_iommu_unmap_single(struct device *dev, dma_addr_t dma_handle, | |||
68 | static int dma_iommu_map_sg(struct device *dev, struct scatterlist *sglist, | 68 | static int dma_iommu_map_sg(struct device *dev, struct scatterlist *sglist, |
69 | int nelems, enum dma_data_direction direction) | 69 | int nelems, enum dma_data_direction direction) |
70 | { | 70 | { |
71 | return iommu_map_sg(dev->archdata.dma_data, sglist, nelems, | 71 | return iommu_map_sg(dev, sglist, nelems, |
72 | device_to_mask(dev), direction); | 72 | device_to_mask(dev), direction); |
73 | } | 73 | } |
74 | 74 | ||
diff --git a/arch/powerpc/kernel/iommu.c b/arch/powerpc/kernel/iommu.c index a3c406aca664..8f1f4e539c4b 100644 --- a/arch/powerpc/kernel/iommu.c +++ b/arch/powerpc/kernel/iommu.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/string.h> | 31 | #include <linux/string.h> |
32 | #include <linux/dma-mapping.h> | 32 | #include <linux/dma-mapping.h> |
33 | #include <linux/bitops.h> | 33 | #include <linux/bitops.h> |
34 | #include <linux/iommu-helper.h> | ||
34 | #include <asm/io.h> | 35 | #include <asm/io.h> |
35 | #include <asm/prom.h> | 36 | #include <asm/prom.h> |
36 | #include <asm/iommu.h> | 37 | #include <asm/iommu.h> |
@@ -81,17 +82,19 @@ static int __init setup_iommu(char *str) | |||
81 | __setup("protect4gb=", setup_protect4gb); | 82 | __setup("protect4gb=", setup_protect4gb); |
82 | __setup("iommu=", setup_iommu); | 83 | __setup("iommu=", setup_iommu); |
83 | 84 | ||
84 | static unsigned long iommu_range_alloc(struct iommu_table *tbl, | 85 | static unsigned long iommu_range_alloc(struct device *dev, |
86 | struct iommu_table *tbl, | ||
85 | unsigned long npages, | 87 | unsigned long npages, |
86 | unsigned long *handle, | 88 | unsigned long *handle, |
87 | unsigned long mask, | 89 | unsigned long mask, |
88 | unsigned int align_order) | 90 | unsigned int align_order) |
89 | { | 91 | { |
90 | unsigned long n, end, i, start; | 92 | unsigned long n, end, start; |
91 | unsigned long limit; | 93 | unsigned long limit; |
92 | int largealloc = npages > 15; | 94 | int largealloc = npages > 15; |
93 | int pass = 0; | 95 | int pass = 0; |
94 | unsigned long align_mask; | 96 | unsigned long align_mask; |
97 | unsigned long boundary_size; | ||
95 | 98 | ||
96 | align_mask = 0xffffffffffffffffl >> (64 - align_order); | 99 | align_mask = 0xffffffffffffffffl >> (64 - align_order); |
97 | 100 | ||
@@ -136,14 +139,17 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl, | |||
136 | start &= mask; | 139 | start &= mask; |
137 | } | 140 | } |
138 | 141 | ||
139 | n = find_next_zero_bit(tbl->it_map, limit, start); | 142 | if (dev) |
140 | 143 | boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, | |
141 | /* Align allocation */ | 144 | 1 << IOMMU_PAGE_SHIFT); |
142 | n = (n + align_mask) & ~align_mask; | 145 | else |
143 | 146 | boundary_size = ALIGN(1UL << 32, 1 << IOMMU_PAGE_SHIFT); | |
144 | end = n + npages; | 147 | /* 4GB boundary for iseries_hv_alloc and iseries_hv_map */ |
145 | 148 | ||
146 | if (unlikely(end >= limit)) { | 149 | n = iommu_area_alloc(tbl->it_map, limit, start, npages, |
150 | tbl->it_offset, boundary_size >> IOMMU_PAGE_SHIFT, | ||
151 | align_mask); | ||
152 | if (n == -1) { | ||
147 | if (likely(pass < 2)) { | 153 | if (likely(pass < 2)) { |
148 | /* First failure, just rescan the half of the table. | 154 | /* First failure, just rescan the half of the table. |
149 | * Second failure, rescan the other half of the table. | 155 | * Second failure, rescan the other half of the table. |
@@ -158,14 +164,7 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl, | |||
158 | } | 164 | } |
159 | } | 165 | } |
160 | 166 | ||
161 | for (i = n; i < end; i++) | 167 | end = n + npages; |
162 | if (test_bit(i, tbl->it_map)) { | ||
163 | start = i+1; | ||
164 | goto again; | ||
165 | } | ||
166 | |||
167 | for (i = n; i < end; i++) | ||
168 | __set_bit(i, tbl->it_map); | ||
169 | 168 | ||
170 | /* Bump the hint to a new block for small allocs. */ | 169 | /* Bump the hint to a new block for small allocs. */ |
171 | if (largealloc) { | 170 | if (largealloc) { |
@@ -184,16 +183,17 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl, | |||
184 | return n; | 183 | return n; |
185 | } | 184 | } |
186 | 185 | ||
187 | static dma_addr_t iommu_alloc(struct iommu_table *tbl, void *page, | 186 | static dma_addr_t iommu_alloc(struct device *dev, struct iommu_table *tbl, |
188 | unsigned int npages, enum dma_data_direction direction, | 187 | void *page, unsigned int npages, |
189 | unsigned long mask, unsigned int align_order) | 188 | enum dma_data_direction direction, |
189 | unsigned long mask, unsigned int align_order) | ||
190 | { | 190 | { |
191 | unsigned long entry, flags; | 191 | unsigned long entry, flags; |
192 | dma_addr_t ret = DMA_ERROR_CODE; | 192 | dma_addr_t ret = DMA_ERROR_CODE; |
193 | 193 | ||
194 | spin_lock_irqsave(&(tbl->it_lock), flags); | 194 | spin_lock_irqsave(&(tbl->it_lock), flags); |
195 | 195 | ||
196 | entry = iommu_range_alloc(tbl, npages, NULL, mask, align_order); | 196 | entry = iommu_range_alloc(dev, tbl, npages, NULL, mask, align_order); |
197 | 197 | ||
198 | if (unlikely(entry == DMA_ERROR_CODE)) { | 198 | if (unlikely(entry == DMA_ERROR_CODE)) { |
199 | spin_unlock_irqrestore(&(tbl->it_lock), flags); | 199 | spin_unlock_irqrestore(&(tbl->it_lock), flags); |
@@ -224,7 +224,6 @@ static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | |||
224 | unsigned int npages) | 224 | unsigned int npages) |
225 | { | 225 | { |
226 | unsigned long entry, free_entry; | 226 | unsigned long entry, free_entry; |
227 | unsigned long i; | ||
228 | 227 | ||
229 | entry = dma_addr >> IOMMU_PAGE_SHIFT; | 228 | entry = dma_addr >> IOMMU_PAGE_SHIFT; |
230 | free_entry = entry - tbl->it_offset; | 229 | free_entry = entry - tbl->it_offset; |
@@ -246,9 +245,7 @@ static void __iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | |||
246 | } | 245 | } |
247 | 246 | ||
248 | ppc_md.tce_free(tbl, entry, npages); | 247 | ppc_md.tce_free(tbl, entry, npages); |
249 | 248 | iommu_area_free(tbl->it_map, free_entry, npages); | |
250 | for (i = 0; i < npages; i++) | ||
251 | __clear_bit(free_entry+i, tbl->it_map); | ||
252 | } | 249 | } |
253 | 250 | ||
254 | static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | 251 | static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, |
@@ -270,16 +267,18 @@ static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | |||
270 | spin_unlock_irqrestore(&(tbl->it_lock), flags); | 267 | spin_unlock_irqrestore(&(tbl->it_lock), flags); |
271 | } | 268 | } |
272 | 269 | ||
273 | int iommu_map_sg(struct iommu_table *tbl, struct scatterlist *sglist, | 270 | int iommu_map_sg(struct device *dev, struct scatterlist *sglist, |
274 | int nelems, unsigned long mask, | 271 | int nelems, unsigned long mask, |
275 | enum dma_data_direction direction) | 272 | enum dma_data_direction direction) |
276 | { | 273 | { |
274 | struct iommu_table *tbl = dev->archdata.dma_data; | ||
277 | dma_addr_t dma_next = 0, dma_addr; | 275 | dma_addr_t dma_next = 0, dma_addr; |
278 | unsigned long flags; | 276 | unsigned long flags; |
279 | struct scatterlist *s, *outs, *segstart; | 277 | struct scatterlist *s, *outs, *segstart; |
280 | int outcount, incount, i; | 278 | int outcount, incount, i; |
281 | unsigned int align; | 279 | unsigned int align; |
282 | unsigned long handle; | 280 | unsigned long handle; |
281 | unsigned int max_seg_size; | ||
283 | 282 | ||
284 | BUG_ON(direction == DMA_NONE); | 283 | BUG_ON(direction == DMA_NONE); |
285 | 284 | ||
@@ -298,6 +297,7 @@ int iommu_map_sg(struct iommu_table *tbl, struct scatterlist *sglist, | |||
298 | 297 | ||
299 | spin_lock_irqsave(&(tbl->it_lock), flags); | 298 | spin_lock_irqsave(&(tbl->it_lock), flags); |
300 | 299 | ||
300 | max_seg_size = dma_get_max_seg_size(dev); | ||
301 | for_each_sg(sglist, s, nelems, i) { | 301 | for_each_sg(sglist, s, nelems, i) { |
302 | unsigned long vaddr, npages, entry, slen; | 302 | unsigned long vaddr, npages, entry, slen; |
303 | 303 | ||
@@ -314,7 +314,7 @@ int iommu_map_sg(struct iommu_table *tbl, struct scatterlist *sglist, | |||
314 | if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && slen >= PAGE_SIZE && | 314 | if (IOMMU_PAGE_SHIFT < PAGE_SHIFT && slen >= PAGE_SIZE && |
315 | (vaddr & ~PAGE_MASK) == 0) | 315 | (vaddr & ~PAGE_MASK) == 0) |
316 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; | 316 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; |
317 | entry = iommu_range_alloc(tbl, npages, &handle, | 317 | entry = iommu_range_alloc(dev, tbl, npages, &handle, |
318 | mask >> IOMMU_PAGE_SHIFT, align); | 318 | mask >> IOMMU_PAGE_SHIFT, align); |
319 | 319 | ||
320 | DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen); | 320 | DBG(" - vaddr: %lx, size: %lx\n", vaddr, slen); |
@@ -344,7 +344,8 @@ int iommu_map_sg(struct iommu_table *tbl, struct scatterlist *sglist, | |||
344 | /* We cannot merge if: | 344 | /* We cannot merge if: |
345 | * - allocated dma_addr isn't contiguous to previous allocation | 345 | * - allocated dma_addr isn't contiguous to previous allocation |
346 | */ | 346 | */ |
347 | if (novmerge || (dma_addr != dma_next)) { | 347 | if (novmerge || (dma_addr != dma_next) || |
348 | (outs->dma_length + s->length > max_seg_size)) { | ||
348 | /* Can't merge: create a new segment */ | 349 | /* Can't merge: create a new segment */ |
349 | segstart = s; | 350 | segstart = s; |
350 | outcount++; | 351 | outcount++; |
@@ -452,9 +453,6 @@ void iommu_unmap_sg(struct iommu_table *tbl, struct scatterlist *sglist, | |||
452 | struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) | 453 | struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) |
453 | { | 454 | { |
454 | unsigned long sz; | 455 | unsigned long sz; |
455 | unsigned long start_index, end_index; | ||
456 | unsigned long entries_per_4g; | ||
457 | unsigned long index; | ||
458 | static int welcomed = 0; | 456 | static int welcomed = 0; |
459 | struct page *page; | 457 | struct page *page; |
460 | 458 | ||
@@ -476,6 +474,7 @@ struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) | |||
476 | 474 | ||
477 | #ifdef CONFIG_CRASH_DUMP | 475 | #ifdef CONFIG_CRASH_DUMP |
478 | if (ppc_md.tce_get) { | 476 | if (ppc_md.tce_get) { |
477 | unsigned long index; | ||
479 | unsigned long tceval; | 478 | unsigned long tceval; |
480 | unsigned long tcecount = 0; | 479 | unsigned long tcecount = 0; |
481 | 480 | ||
@@ -506,23 +505,6 @@ struct iommu_table *iommu_init_table(struct iommu_table *tbl, int nid) | |||
506 | ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size); | 505 | ppc_md.tce_free(tbl, tbl->it_offset, tbl->it_size); |
507 | #endif | 506 | #endif |
508 | 507 | ||
509 | /* | ||
510 | * DMA cannot cross 4 GB boundary. Mark last entry of each 4 | ||
511 | * GB chunk as reserved. | ||
512 | */ | ||
513 | if (protect4gb) { | ||
514 | entries_per_4g = 0x100000000l >> IOMMU_PAGE_SHIFT; | ||
515 | |||
516 | /* Mark the last bit before a 4GB boundary as used */ | ||
517 | start_index = tbl->it_offset | (entries_per_4g - 1); | ||
518 | start_index -= tbl->it_offset; | ||
519 | |||
520 | end_index = tbl->it_size; | ||
521 | |||
522 | for (index = start_index; index < end_index - 1; index += entries_per_4g) | ||
523 | __set_bit(index, tbl->it_map); | ||
524 | } | ||
525 | |||
526 | if (!welcomed) { | 508 | if (!welcomed) { |
527 | printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n", | 509 | printk(KERN_INFO "IOMMU table initialized, virtual merging %s\n", |
528 | novmerge ? "disabled" : "enabled"); | 510 | novmerge ? "disabled" : "enabled"); |
@@ -570,9 +552,9 @@ void iommu_free_table(struct iommu_table *tbl, const char *node_name) | |||
570 | * need not be page aligned, the dma_addr_t returned will point to the same | 552 | * need not be page aligned, the dma_addr_t returned will point to the same |
571 | * byte within the page as vaddr. | 553 | * byte within the page as vaddr. |
572 | */ | 554 | */ |
573 | dma_addr_t iommu_map_single(struct iommu_table *tbl, void *vaddr, | 555 | dma_addr_t iommu_map_single(struct device *dev, struct iommu_table *tbl, |
574 | size_t size, unsigned long mask, | 556 | void *vaddr, size_t size, unsigned long mask, |
575 | enum dma_data_direction direction) | 557 | enum dma_data_direction direction) |
576 | { | 558 | { |
577 | dma_addr_t dma_handle = DMA_ERROR_CODE; | 559 | dma_addr_t dma_handle = DMA_ERROR_CODE; |
578 | unsigned long uaddr; | 560 | unsigned long uaddr; |
@@ -589,7 +571,7 @@ dma_addr_t iommu_map_single(struct iommu_table *tbl, void *vaddr, | |||
589 | ((unsigned long)vaddr & ~PAGE_MASK) == 0) | 571 | ((unsigned long)vaddr & ~PAGE_MASK) == 0) |
590 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; | 572 | align = PAGE_SHIFT - IOMMU_PAGE_SHIFT; |
591 | 573 | ||
592 | dma_handle = iommu_alloc(tbl, vaddr, npages, direction, | 574 | dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction, |
593 | mask >> IOMMU_PAGE_SHIFT, align); | 575 | mask >> IOMMU_PAGE_SHIFT, align); |
594 | if (dma_handle == DMA_ERROR_CODE) { | 576 | if (dma_handle == DMA_ERROR_CODE) { |
595 | if (printk_ratelimit()) { | 577 | if (printk_ratelimit()) { |
@@ -621,8 +603,9 @@ void iommu_unmap_single(struct iommu_table *tbl, dma_addr_t dma_handle, | |||
621 | * Returns the virtual address of the buffer and sets dma_handle | 603 | * Returns the virtual address of the buffer and sets dma_handle |
622 | * to the dma address (mapping) of the first page. | 604 | * to the dma address (mapping) of the first page. |
623 | */ | 605 | */ |
624 | void *iommu_alloc_coherent(struct iommu_table *tbl, size_t size, | 606 | void *iommu_alloc_coherent(struct device *dev, struct iommu_table *tbl, |
625 | dma_addr_t *dma_handle, unsigned long mask, gfp_t flag, int node) | 607 | size_t size, dma_addr_t *dma_handle, |
608 | unsigned long mask, gfp_t flag, int node) | ||
626 | { | 609 | { |
627 | void *ret = NULL; | 610 | void *ret = NULL; |
628 | dma_addr_t mapping; | 611 | dma_addr_t mapping; |
@@ -656,7 +639,7 @@ void *iommu_alloc_coherent(struct iommu_table *tbl, size_t size, | |||
656 | /* Set up tces to cover the allocated range */ | 639 | /* Set up tces to cover the allocated range */ |
657 | nio_pages = size >> IOMMU_PAGE_SHIFT; | 640 | nio_pages = size >> IOMMU_PAGE_SHIFT; |
658 | io_order = get_iommu_order(size); | 641 | io_order = get_iommu_order(size); |
659 | mapping = iommu_alloc(tbl, ret, nio_pages, DMA_BIDIRECTIONAL, | 642 | mapping = iommu_alloc(dev, tbl, ret, nio_pages, DMA_BIDIRECTIONAL, |
660 | mask >> IOMMU_PAGE_SHIFT, io_order); | 643 | mask >> IOMMU_PAGE_SHIFT, io_order); |
661 | if (mapping == DMA_ERROR_CODE) { | 644 | if (mapping == DMA_ERROR_CODE) { |
662 | free_pages((unsigned long)ret, order); | 645 | free_pages((unsigned long)ret, order); |
diff --git a/arch/powerpc/kernel/legacy_serial.c b/arch/powerpc/kernel/legacy_serial.c index 76b862bd1fe9..61dd17449ddc 100644 --- a/arch/powerpc/kernel/legacy_serial.c +++ b/arch/powerpc/kernel/legacy_serial.c | |||
@@ -36,7 +36,8 @@ static struct legacy_serial_info { | |||
36 | static struct __initdata of_device_id parents[] = { | 36 | static struct __initdata of_device_id parents[] = { |
37 | {.type = "soc",}, | 37 | {.type = "soc",}, |
38 | {.type = "tsi-bridge",}, | 38 | {.type = "tsi-bridge",}, |
39 | {.type = "opb", .compatible = "ibm,opb",}, | 39 | {.type = "opb", }, |
40 | {.compatible = "ibm,opb",}, | ||
40 | {.compatible = "simple-bus",}, | 41 | {.compatible = "simple-bus",}, |
41 | {.compatible = "wrs,epld-localbus",}, | 42 | {.compatible = "wrs,epld-localbus",}, |
42 | }; | 43 | }; |
diff --git a/arch/powerpc/kernel/pmc.c b/arch/powerpc/kernel/pmc.c index ea04e0ab3f2f..0516e2d3e02e 100644 --- a/arch/powerpc/kernel/pmc.c +++ b/arch/powerpc/kernel/pmc.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | static void dummy_perf(struct pt_regs *regs) | 27 | static void dummy_perf(struct pt_regs *regs) |
28 | { | 28 | { |
29 | #if defined(CONFIG_FSL_BOOKE) && !defined(CONFIG_E200) | 29 | #if defined(CONFIG_FSL_EMB_PERFMON) |
30 | mtpmr(PMRN_PMGC0, mfpmr(PMRN_PMGC0) & ~PMGC0_PMIE); | 30 | mtpmr(PMRN_PMGC0, mfpmr(PMRN_PMGC0) & ~PMGC0_PMIE); |
31 | #elif defined(CONFIG_PPC64) || defined(CONFIG_6xx) | 31 | #elif defined(CONFIG_PPC64) || defined(CONFIG_6xx) |
32 | if (cur_cpu_spec->pmc_type == PPC_PMC_IBM) | 32 | if (cur_cpu_spec->pmc_type == PPC_PMC_IBM) |
diff --git a/arch/powerpc/kernel/vio.c b/arch/powerpc/kernel/vio.c index f0bad7070fb5..f98867252ee2 100644 --- a/arch/powerpc/kernel/vio.c +++ b/arch/powerpc/kernel/vio.c | |||
@@ -176,7 +176,7 @@ static void __devinit vio_dev_release(struct device *dev) | |||
176 | * Returns a pointer to the created vio_dev or NULL if node has | 176 | * Returns a pointer to the created vio_dev or NULL if node has |
177 | * NULL device_type or compatible fields. | 177 | * NULL device_type or compatible fields. |
178 | */ | 178 | */ |
179 | struct vio_dev * __devinit vio_register_device_node(struct device_node *of_node) | 179 | struct vio_dev *vio_register_device_node(struct device_node *of_node) |
180 | { | 180 | { |
181 | struct vio_dev *viodev; | 181 | struct vio_dev *viodev; |
182 | const unsigned int *unit_address; | 182 | const unsigned int *unit_address; |
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index e8122447f019..c7d7bd43a251 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
@@ -483,7 +483,12 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, | |||
483 | */ | 483 | */ |
484 | _tlbie(address, 0 /* 8xx doesn't care about PID */); | 484 | _tlbie(address, 0 /* 8xx doesn't care about PID */); |
485 | #endif | 485 | #endif |
486 | if (!PageReserved(page) | 486 | /* The _PAGE_USER test should really be _PAGE_EXEC, but |
487 | * older glibc versions execute some code from no-exec | ||
488 | * pages, which for now we are supporting. If exec-only | ||
489 | * pages are ever implemented, this will have to change. | ||
490 | */ | ||
491 | if (!PageReserved(page) && (pte_val(pte) & _PAGE_USER) | ||
487 | && !test_bit(PG_arch_1, &page->flags)) { | 492 | && !test_bit(PG_arch_1, &page->flags)) { |
488 | if (vma->vm_mm == current->active_mm) { | 493 | if (vma->vm_mm == current->active_mm) { |
489 | __flush_dcache_icache((void *) address); | 494 | __flush_dcache_icache((void *) address); |
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 64488723162a..f80f90c4d58b 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
@@ -86,7 +86,7 @@ pgd_t *pgd_alloc(struct mm_struct *mm) | |||
86 | return ret; | 86 | return ret; |
87 | } | 87 | } |
88 | 88 | ||
89 | void pgd_free(pgd_t *pgd) | 89 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
90 | { | 90 | { |
91 | free_pages((unsigned long)pgd, PGDIR_ORDER); | 91 | free_pages((unsigned long)pgd, PGDIR_ORDER); |
92 | } | 92 | } |
@@ -123,7 +123,7 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address) | |||
123 | return ptepage; | 123 | return ptepage; |
124 | } | 124 | } |
125 | 125 | ||
126 | void pte_free_kernel(pte_t *pte) | 126 | void pte_free_kernel(struct mm_struct *mm, pte_t *pte) |
127 | { | 127 | { |
128 | #ifdef CONFIG_SMP | 128 | #ifdef CONFIG_SMP |
129 | hash_page_sync(); | 129 | hash_page_sync(); |
@@ -131,7 +131,7 @@ void pte_free_kernel(pte_t *pte) | |||
131 | free_page((unsigned long)pte); | 131 | free_page((unsigned long)pte); |
132 | } | 132 | } |
133 | 133 | ||
134 | void pte_free(struct page *ptepage) | 134 | void pte_free(struct mm_struct *mm, struct page *ptepage) |
135 | { | 135 | { |
136 | #ifdef CONFIG_SMP | 136 | #ifdef CONFIG_SMP |
137 | hash_page_sync(); | 137 | hash_page_sync(); |
diff --git a/arch/powerpc/oprofile/Makefile b/arch/powerpc/oprofile/Makefile index c5f64c3bd668..2ef6b0dddd8c 100644 --- a/arch/powerpc/oprofile/Makefile +++ b/arch/powerpc/oprofile/Makefile | |||
@@ -15,5 +15,5 @@ oprofile-$(CONFIG_OPROFILE_CELL) += op_model_cell.o \ | |||
15 | cell/spu_profiler.o cell/vma_map.o \ | 15 | cell/spu_profiler.o cell/vma_map.o \ |
16 | cell/spu_task_sync.o | 16 | cell/spu_task_sync.o |
17 | oprofile-$(CONFIG_PPC64) += op_model_rs64.o op_model_power4.o op_model_pa6t.o | 17 | oprofile-$(CONFIG_PPC64) += op_model_rs64.o op_model_power4.o op_model_pa6t.o |
18 | oprofile-$(CONFIG_FSL_BOOKE) += op_model_fsl_booke.o | 18 | oprofile-$(CONFIG_FSL_EMB_PERFMON) += op_model_fsl_emb.o |
19 | oprofile-$(CONFIG_6xx) += op_model_7450.o | 19 | oprofile-$(CONFIG_6xx) += op_model_7450.o |
diff --git a/arch/powerpc/oprofile/common.c b/arch/powerpc/oprofile/common.c index a28cce1d6c24..4908dc98f9ca 100644 --- a/arch/powerpc/oprofile/common.c +++ b/arch/powerpc/oprofile/common.c | |||
@@ -202,9 +202,9 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) | |||
202 | model = &op_model_7450; | 202 | model = &op_model_7450; |
203 | break; | 203 | break; |
204 | #endif | 204 | #endif |
205 | #ifdef CONFIG_FSL_BOOKE | 205 | #if defined(CONFIG_FSL_EMB_PERFMON) |
206 | case PPC_OPROFILE_BOOKE: | 206 | case PPC_OPROFILE_FSL_EMB: |
207 | model = &op_model_fsl_booke; | 207 | model = &op_model_fsl_emb; |
208 | break; | 208 | break; |
209 | #endif | 209 | #endif |
210 | default: | 210 | default: |
diff --git a/arch/powerpc/oprofile/op_model_fsl_booke.c b/arch/powerpc/oprofile/op_model_fsl_emb.c index 183a28bb1812..91596f6ba1f4 100644 --- a/arch/powerpc/oprofile/op_model_fsl_booke.c +++ b/arch/powerpc/oprofile/op_model_fsl_emb.c | |||
@@ -1,7 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * arch/powerpc/oprofile/op_model_fsl_booke.c | 2 | * Freescale Embedded oprofile support, based on ppc64 oprofile support |
3 | * | ||
4 | * Freescale Book-E oprofile support, based on ppc64 oprofile support | ||
5 | * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM | 3 | * Copyright (C) 2004 Anton Blanchard <anton@au.ibm.com>, IBM |
6 | * | 4 | * |
7 | * Copyright (c) 2004 Freescale Semiconductor, Inc | 5 | * Copyright (c) 2004 Freescale Semiconductor, Inc |
@@ -22,7 +20,7 @@ | |||
22 | #include <asm/system.h> | 20 | #include <asm/system.h> |
23 | #include <asm/processor.h> | 21 | #include <asm/processor.h> |
24 | #include <asm/cputable.h> | 22 | #include <asm/cputable.h> |
25 | #include <asm/reg_booke.h> | 23 | #include <asm/reg_fsl_emb.h> |
26 | #include <asm/page.h> | 24 | #include <asm/page.h> |
27 | #include <asm/pmc.h> | 25 | #include <asm/pmc.h> |
28 | #include <asm/oprofile_impl.h> | 26 | #include <asm/oprofile_impl.h> |
@@ -244,7 +242,7 @@ static void dump_pmcs(void) | |||
244 | mfpmr(PMRN_PMLCA3), mfpmr(PMRN_PMLCB3)); | 242 | mfpmr(PMRN_PMLCA3), mfpmr(PMRN_PMLCB3)); |
245 | } | 243 | } |
246 | 244 | ||
247 | static int fsl_booke_cpu_setup(struct op_counter_config *ctr) | 245 | static int fsl_emb_cpu_setup(struct op_counter_config *ctr) |
248 | { | 246 | { |
249 | int i; | 247 | int i; |
250 | 248 | ||
@@ -262,7 +260,7 @@ static int fsl_booke_cpu_setup(struct op_counter_config *ctr) | |||
262 | return 0; | 260 | return 0; |
263 | } | 261 | } |
264 | 262 | ||
265 | static int fsl_booke_reg_setup(struct op_counter_config *ctr, | 263 | static int fsl_emb_reg_setup(struct op_counter_config *ctr, |
266 | struct op_system_config *sys, | 264 | struct op_system_config *sys, |
267 | int num_ctrs) | 265 | int num_ctrs) |
268 | { | 266 | { |
@@ -281,7 +279,7 @@ static int fsl_booke_reg_setup(struct op_counter_config *ctr, | |||
281 | return 0; | 279 | return 0; |
282 | } | 280 | } |
283 | 281 | ||
284 | static int fsl_booke_start(struct op_counter_config *ctr) | 282 | static int fsl_emb_start(struct op_counter_config *ctr) |
285 | { | 283 | { |
286 | int i; | 284 | int i; |
287 | 285 | ||
@@ -315,7 +313,7 @@ static int fsl_booke_start(struct op_counter_config *ctr) | |||
315 | return 0; | 313 | return 0; |
316 | } | 314 | } |
317 | 315 | ||
318 | static void fsl_booke_stop(void) | 316 | static void fsl_emb_stop(void) |
319 | { | 317 | { |
320 | /* freeze counters */ | 318 | /* freeze counters */ |
321 | pmc_stop_ctrs(); | 319 | pmc_stop_ctrs(); |
@@ -329,7 +327,7 @@ static void fsl_booke_stop(void) | |||
329 | } | 327 | } |
330 | 328 | ||
331 | 329 | ||
332 | static void fsl_booke_handle_interrupt(struct pt_regs *regs, | 330 | static void fsl_emb_handle_interrupt(struct pt_regs *regs, |
333 | struct op_counter_config *ctr) | 331 | struct op_counter_config *ctr) |
334 | { | 332 | { |
335 | unsigned long pc; | 333 | unsigned long pc; |
@@ -362,10 +360,10 @@ static void fsl_booke_handle_interrupt(struct pt_regs *regs, | |||
362 | pmc_start_ctrs(1); | 360 | pmc_start_ctrs(1); |
363 | } | 361 | } |
364 | 362 | ||
365 | struct op_powerpc_model op_model_fsl_booke = { | 363 | struct op_powerpc_model op_model_fsl_emb = { |
366 | .reg_setup = fsl_booke_reg_setup, | 364 | .reg_setup = fsl_emb_reg_setup, |
367 | .cpu_setup = fsl_booke_cpu_setup, | 365 | .cpu_setup = fsl_emb_cpu_setup, |
368 | .start = fsl_booke_start, | 366 | .start = fsl_emb_start, |
369 | .stop = fsl_booke_stop, | 367 | .stop = fsl_emb_stop, |
370 | .handle_interrupt = fsl_booke_handle_interrupt, | 368 | .handle_interrupt = fsl_emb_handle_interrupt, |
371 | }; | 369 | }; |
diff --git a/arch/powerpc/platforms/52xx/lite5200_pm.c b/arch/powerpc/platforms/52xx/lite5200_pm.c index c0f13e8deb0b..41c7fd91e99e 100644 --- a/arch/powerpc/platforms/52xx/lite5200_pm.c +++ b/arch/powerpc/platforms/52xx/lite5200_pm.c | |||
@@ -31,7 +31,7 @@ static int lite5200_pm_valid(suspend_state_t state) | |||
31 | } | 31 | } |
32 | } | 32 | } |
33 | 33 | ||
34 | static int lite5200_pm_set_target(suspend_state_t state) | 34 | static int lite5200_pm_begin(suspend_state_t state) |
35 | { | 35 | { |
36 | if (lite5200_pm_valid(state)) { | 36 | if (lite5200_pm_valid(state)) { |
37 | lite5200_pm_target_state = state; | 37 | lite5200_pm_target_state = state; |
@@ -219,12 +219,18 @@ static void lite5200_pm_finish(void) | |||
219 | mpc52xx_pm_finish(); | 219 | mpc52xx_pm_finish(); |
220 | } | 220 | } |
221 | 221 | ||
222 | static void lite5200_pm_end(void) | ||
223 | { | ||
224 | lite5200_pm_target_state = PM_SUSPEND_ON; | ||
225 | } | ||
226 | |||
222 | static struct platform_suspend_ops lite5200_pm_ops = { | 227 | static struct platform_suspend_ops lite5200_pm_ops = { |
223 | .valid = lite5200_pm_valid, | 228 | .valid = lite5200_pm_valid, |
224 | .set_target = lite5200_pm_set_target, | 229 | .begin = lite5200_pm_begin, |
225 | .prepare = lite5200_pm_prepare, | 230 | .prepare = lite5200_pm_prepare, |
226 | .enter = lite5200_pm_enter, | 231 | .enter = lite5200_pm_enter, |
227 | .finish = lite5200_pm_finish, | 232 | .finish = lite5200_pm_finish, |
233 | .end = lite5200_pm_end, | ||
228 | }; | 234 | }; |
229 | 235 | ||
230 | int __init lite5200_pm_init(void) | 236 | int __init lite5200_pm_init(void) |
diff --git a/arch/powerpc/platforms/82xx/mpc8272_ads.c b/arch/powerpc/platforms/82xx/mpc8272_ads.c index 3fce6b375dbc..7d3018751988 100644 --- a/arch/powerpc/platforms/82xx/mpc8272_ads.c +++ b/arch/powerpc/platforms/82xx/mpc8272_ads.c | |||
@@ -134,13 +134,12 @@ static void __init mpc8272_ads_setup_arch(void) | |||
134 | } | 134 | } |
135 | 135 | ||
136 | bcsr = of_iomap(np, 0); | 136 | bcsr = of_iomap(np, 0); |
137 | of_node_put(np); | ||
137 | if (!bcsr) { | 138 | if (!bcsr) { |
138 | printk(KERN_ERR "Cannot map BCSR registers\n"); | 139 | printk(KERN_ERR "Cannot map BCSR registers\n"); |
139 | return; | 140 | return; |
140 | } | 141 | } |
141 | 142 | ||
142 | of_node_put(np); | ||
143 | |||
144 | clrbits32(&bcsr[1], BCSR1_RS232_EN1 | BCSR1_RS232_EN2 | BCSR1_FETHIEN); | 143 | clrbits32(&bcsr[1], BCSR1_RS232_EN1 | BCSR1_RS232_EN2 | BCSR1_FETHIEN); |
145 | setbits32(&bcsr[1], BCSR1_FETH_RST); | 144 | setbits32(&bcsr[1], BCSR1_FETH_RST); |
146 | 145 | ||
diff --git a/arch/powerpc/platforms/82xx/pq2fads.c b/arch/powerpc/platforms/82xx/pq2fads.c index 68196e349994..e1dceeec4994 100644 --- a/arch/powerpc/platforms/82xx/pq2fads.c +++ b/arch/powerpc/platforms/82xx/pq2fads.c | |||
@@ -130,13 +130,12 @@ static void __init pq2fads_setup_arch(void) | |||
130 | } | 130 | } |
131 | 131 | ||
132 | bcsr = of_iomap(np, 0); | 132 | bcsr = of_iomap(np, 0); |
133 | of_node_put(np); | ||
133 | if (!bcsr) { | 134 | if (!bcsr) { |
134 | printk(KERN_ERR "Cannot map BCSR registers\n"); | 135 | printk(KERN_ERR "Cannot map BCSR registers\n"); |
135 | return; | 136 | return; |
136 | } | 137 | } |
137 | 138 | ||
138 | of_node_put(np); | ||
139 | |||
140 | /* Enable the serial and ethernet ports */ | 139 | /* Enable the serial and ethernet ports */ |
141 | 140 | ||
142 | clrbits32(&bcsr[1], BCSR1_RS232_EN1 | BCSR1_RS232_EN2 | BCSR1_FETHIEN); | 141 | clrbits32(&bcsr[1], BCSR1_RS232_EN1 | BCSR1_RS232_EN2 | BCSR1_FETHIEN); |
diff --git a/arch/powerpc/platforms/83xx/mpc832x_rdb.c b/arch/powerpc/platforms/83xx/mpc832x_rdb.c index 9f0fd88b2b1f..e7f706b624fe 100644 --- a/arch/powerpc/platforms/83xx/mpc832x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc832x_rdb.c | |||
@@ -101,7 +101,7 @@ static void __init mpc832x_rdb_setup_arch(void) | |||
101 | #ifdef CONFIG_QUICC_ENGINE | 101 | #ifdef CONFIG_QUICC_ENGINE |
102 | qe_reset(); | 102 | qe_reset(); |
103 | 103 | ||
104 | if ((np = of_find_node_by_name(np, "par_io")) != NULL) { | 104 | if ((np = of_find_node_by_name(NULL, "par_io")) != NULL) { |
105 | par_io_init(np); | 105 | par_io_init(np); |
106 | of_node_put(np); | 106 | of_node_put(np); |
107 | 107 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc83xx.h b/arch/powerpc/platforms/83xx/mpc83xx.h index 88bb748aff0d..68065e62fc3d 100644 --- a/arch/powerpc/platforms/83xx/mpc83xx.h +++ b/arch/powerpc/platforms/83xx/mpc83xx.h | |||
@@ -14,6 +14,8 @@ | |||
14 | #define MPC83XX_SCCR_USB_DRCM_11 0x00300000 | 14 | #define MPC83XX_SCCR_USB_DRCM_11 0x00300000 |
15 | #define MPC83XX_SCCR_USB_DRCM_01 0x00100000 | 15 | #define MPC83XX_SCCR_USB_DRCM_01 0x00100000 |
16 | #define MPC83XX_SCCR_USB_DRCM_10 0x00200000 | 16 | #define MPC83XX_SCCR_USB_DRCM_10 0x00200000 |
17 | #define MPC8315_SCCR_USB_MASK 0x00c00000 | ||
18 | #define MPC8315_SCCR_USB_DRCM_11 0x00c00000 | ||
17 | #define MPC837X_SCCR_USB_DRCM_11 0x00c00000 | 19 | #define MPC837X_SCCR_USB_DRCM_11 0x00c00000 |
18 | 20 | ||
19 | /* system i/o configuration register low */ | 21 | /* system i/o configuration register low */ |
diff --git a/arch/powerpc/platforms/83xx/usb.c b/arch/powerpc/platforms/83xx/usb.c index 681230a30acd..471fdd8f4108 100644 --- a/arch/powerpc/platforms/83xx/usb.c +++ b/arch/powerpc/platforms/83xx/usb.c | |||
@@ -104,6 +104,7 @@ int mpc831x_usb_cfg(void) | |||
104 | u32 temp; | 104 | u32 temp; |
105 | void __iomem *immap, *usb_regs; | 105 | void __iomem *immap, *usb_regs; |
106 | struct device_node *np = NULL; | 106 | struct device_node *np = NULL; |
107 | struct device_node *immr_node = NULL; | ||
107 | const void *prop; | 108 | const void *prop; |
108 | struct resource res; | 109 | struct resource res; |
109 | int ret = 0; | 110 | int ret = 0; |
@@ -124,10 +125,15 @@ int mpc831x_usb_cfg(void) | |||
124 | } | 125 | } |
125 | 126 | ||
126 | /* Configure clock */ | 127 | /* Configure clock */ |
127 | temp = in_be32(immap + MPC83XX_SCCR_OFFS); | 128 | immr_node = of_get_parent(np); |
128 | temp &= ~MPC83XX_SCCR_USB_MASK; | 129 | if (immr_node && of_device_is_compatible(immr_node, "fsl,mpc8315-immr")) |
129 | temp |= MPC83XX_SCCR_USB_DRCM_11; /* 1:3 */ | 130 | clrsetbits_be32(immap + MPC83XX_SCCR_OFFS, |
130 | out_be32(immap + MPC83XX_SCCR_OFFS, temp); | 131 | MPC8315_SCCR_USB_MASK, |
132 | MPC8315_SCCR_USB_DRCM_11); | ||
133 | else | ||
134 | clrsetbits_be32(immap + MPC83XX_SCCR_OFFS, | ||
135 | MPC83XX_SCCR_USB_MASK, | ||
136 | MPC83XX_SCCR_USB_DRCM_11); | ||
131 | 137 | ||
132 | /* Configure pin mux for ULPI. There is no pin mux for UTMI */ | 138 | /* Configure pin mux for ULPI. There is no pin mux for UTMI */ |
133 | if (prop && !strcmp(prop, "ulpi")) { | 139 | if (prop && !strcmp(prop, "ulpi")) { |
@@ -144,6 +150,9 @@ int mpc831x_usb_cfg(void) | |||
144 | 150 | ||
145 | iounmap(immap); | 151 | iounmap(immap); |
146 | 152 | ||
153 | if (immr_node) | ||
154 | of_node_put(immr_node); | ||
155 | |||
147 | /* Map USB SOC space */ | 156 | /* Map USB SOC space */ |
148 | ret = of_address_to_resource(np, 0, &res); | 157 | ret = of_address_to_resource(np, 0, &res); |
149 | if (ret) { | 158 | if (ret) { |
diff --git a/arch/powerpc/platforms/8xx/adder875.c b/arch/powerpc/platforms/8xx/adder875.c index c6bc0783c3b0..82363e98f50e 100644 --- a/arch/powerpc/platforms/8xx/adder875.c +++ b/arch/powerpc/platforms/8xx/adder875.c | |||
@@ -15,12 +15,12 @@ | |||
15 | 15 | ||
16 | #include <asm/time.h> | 16 | #include <asm/time.h> |
17 | #include <asm/machdep.h> | 17 | #include <asm/machdep.h> |
18 | #include <asm/commproc.h> | 18 | #include <asm/cpm1.h> |
19 | #include <asm/fs_pd.h> | 19 | #include <asm/fs_pd.h> |
20 | #include <asm/udbg.h> | 20 | #include <asm/udbg.h> |
21 | #include <asm/prom.h> | 21 | #include <asm/prom.h> |
22 | 22 | ||
23 | #include <sysdev/commproc.h> | 23 | #include "mpc8xx.h" |
24 | 24 | ||
25 | struct cpm_pin { | 25 | struct cpm_pin { |
26 | int port, pin, flags; | 26 | int port, pin, flags; |
@@ -108,7 +108,7 @@ define_machine(adder875) { | |||
108 | .name = "Adder MPC875", | 108 | .name = "Adder MPC875", |
109 | .probe = adder875_probe, | 109 | .probe = adder875_probe, |
110 | .setup_arch = adder875_setup, | 110 | .setup_arch = adder875_setup, |
111 | .init_IRQ = m8xx_pic_init, | 111 | .init_IRQ = mpc8xx_pics_init, |
112 | .get_irq = mpc8xx_get_irq, | 112 | .get_irq = mpc8xx_get_irq, |
113 | .restart = mpc8xx_restart, | 113 | .restart = mpc8xx_restart, |
114 | .calibrate_decr = generic_calibrate_decr, | 114 | .calibrate_decr = generic_calibrate_decr, |
diff --git a/arch/powerpc/platforms/8xx/ep88xc.c b/arch/powerpc/platforms/8xx/ep88xc.c index a8dffa005775..7d9ac6040d63 100644 --- a/arch/powerpc/platforms/8xx/ep88xc.c +++ b/arch/powerpc/platforms/8xx/ep88xc.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #include <asm/machdep.h> | 15 | #include <asm/machdep.h> |
16 | #include <asm/io.h> | 16 | #include <asm/io.h> |
17 | #include <asm/udbg.h> | 17 | #include <asm/udbg.h> |
18 | #include <asm/commproc.h> | ||
19 | #include <asm/cpm1.h> | 18 | #include <asm/cpm1.h> |
20 | 19 | ||
21 | #include "mpc8xx.h" | 20 | #include "mpc8xx.h" |
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index e2c952619805..fcedbec07f94 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig | |||
@@ -24,6 +24,7 @@ config PPC_83xx | |||
24 | select MPC83xx | 24 | select MPC83xx |
25 | select IPIC | 25 | select IPIC |
26 | select WANT_DEVICE_TREE | 26 | select WANT_DEVICE_TREE |
27 | select FSL_EMB_PERFMON | ||
27 | 28 | ||
28 | config PPC_86xx | 29 | config PPC_86xx |
29 | bool "Freescale 86xx" | 30 | bool "Freescale 86xx" |
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index 51030ab2a023..69941ba70975 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype | |||
@@ -94,6 +94,7 @@ config 8xx | |||
94 | bool | 94 | bool |
95 | 95 | ||
96 | config E500 | 96 | config E500 |
97 | select FSL_EMB_PERFMON | ||
97 | bool | 98 | bool |
98 | 99 | ||
99 | config PPC_FPU | 100 | config PPC_FPU |
@@ -115,6 +116,9 @@ config FSL_BOOKE | |||
115 | depends on E200 || E500 | 116 | depends on E200 || E500 |
116 | default y | 117 | default y |
117 | 118 | ||
119 | config FSL_EMB_PERFMON | ||
120 | bool | ||
121 | |||
118 | config PTE_64BIT | 122 | config PTE_64BIT |
119 | bool | 123 | bool |
120 | depends on 44x || E500 | 124 | depends on 44x || E500 |
diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig index 3a963b4a9be0..2f169991896d 100644 --- a/arch/powerpc/platforms/cell/Kconfig +++ b/arch/powerpc/platforms/cell/Kconfig | |||
@@ -54,6 +54,13 @@ config SPU_FS_64K_LS | |||
54 | uses 4K pages. This can improve performances of applications | 54 | uses 4K pages. This can improve performances of applications |
55 | using multiple SPEs by lowering the TLB pressure on them. | 55 | using multiple SPEs by lowering the TLB pressure on them. |
56 | 56 | ||
57 | config SPU_TRACE | ||
58 | tristate "SPU event tracing support" | ||
59 | depends on SPU_FS && MARKERS | ||
60 | help | ||
61 | This option allows reading a trace of spu-related events through | ||
62 | the sputrace file in procfs. | ||
63 | |||
57 | config SPU_BASE | 64 | config SPU_BASE |
58 | bool | 65 | bool |
59 | default n | 66 | default n |
diff --git a/arch/powerpc/platforms/cell/axon_msi.c b/arch/powerpc/platforms/cell/axon_msi.c index 095988f13bf4..d95e71dee91f 100644 --- a/arch/powerpc/platforms/cell/axon_msi.c +++ b/arch/powerpc/platforms/cell/axon_msi.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
14 | #include <linux/pci.h> | 14 | #include <linux/pci.h> |
15 | #include <linux/msi.h> | 15 | #include <linux/msi.h> |
16 | #include <linux/reboot.h> | 16 | #include <linux/of_platform.h> |
17 | 17 | ||
18 | #include <asm/dcr.h> | 18 | #include <asm/dcr.h> |
19 | #include <asm/machdep.h> | 19 | #include <asm/machdep.h> |
@@ -65,14 +65,12 @@ | |||
65 | 65 | ||
66 | struct axon_msic { | 66 | struct axon_msic { |
67 | struct irq_host *irq_host; | 67 | struct irq_host *irq_host; |
68 | __le32 *fifo; | 68 | __le32 *fifo_virt; |
69 | dma_addr_t fifo_phys; | ||
69 | dcr_host_t dcr_host; | 70 | dcr_host_t dcr_host; |
70 | struct list_head list; | ||
71 | u32 read_offset; | 71 | u32 read_offset; |
72 | }; | 72 | }; |
73 | 73 | ||
74 | static LIST_HEAD(axon_msic_list); | ||
75 | |||
76 | static void msic_dcr_write(struct axon_msic *msic, unsigned int dcr_n, u32 val) | 74 | static void msic_dcr_write(struct axon_msic *msic, unsigned int dcr_n, u32 val) |
77 | { | 75 | { |
78 | pr_debug("axon_msi: dcr_write(0x%x, 0x%x)\n", val, dcr_n); | 76 | pr_debug("axon_msi: dcr_write(0x%x, 0x%x)\n", val, dcr_n); |
@@ -94,7 +92,7 @@ static void axon_msi_cascade(unsigned int irq, struct irq_desc *desc) | |||
94 | 92 | ||
95 | while (msic->read_offset != write_offset) { | 93 | while (msic->read_offset != write_offset) { |
96 | idx = msic->read_offset / sizeof(__le32); | 94 | idx = msic->read_offset / sizeof(__le32); |
97 | msi = le32_to_cpu(msic->fifo[idx]); | 95 | msi = le32_to_cpu(msic->fifo_virt[idx]); |
98 | msi &= 0xFFFF; | 96 | msi &= 0xFFFF; |
99 | 97 | ||
100 | pr_debug("axon_msi: woff %x roff %x msi %x\n", | 98 | pr_debug("axon_msi: woff %x roff %x msi %x\n", |
@@ -139,6 +137,7 @@ static struct axon_msic *find_msi_translator(struct pci_dev *dev) | |||
139 | 137 | ||
140 | tmp = dn; | 138 | tmp = dn; |
141 | dn = of_find_node_by_phandle(*ph); | 139 | dn = of_find_node_by_phandle(*ph); |
140 | of_node_put(tmp); | ||
142 | if (!dn) { | 141 | if (!dn) { |
143 | dev_dbg(&dev->dev, | 142 | dev_dbg(&dev->dev, |
144 | "axon_msi: msi-translator doesn't point to a node\n"); | 143 | "axon_msi: msi-translator doesn't point to a node\n"); |
@@ -156,7 +155,6 @@ static struct axon_msic *find_msi_translator(struct pci_dev *dev) | |||
156 | 155 | ||
157 | out_error: | 156 | out_error: |
158 | of_node_put(dn); | 157 | of_node_put(dn); |
159 | of_node_put(tmp); | ||
160 | 158 | ||
161 | return msic; | 159 | return msic; |
162 | } | 160 | } |
@@ -292,30 +290,24 @@ static struct irq_host_ops msic_host_ops = { | |||
292 | .map = msic_host_map, | 290 | .map = msic_host_map, |
293 | }; | 291 | }; |
294 | 292 | ||
295 | static int axon_msi_notify_reboot(struct notifier_block *nb, | 293 | static int axon_msi_shutdown(struct of_device *device) |
296 | unsigned long code, void *data) | ||
297 | { | 294 | { |
298 | struct axon_msic *msic; | 295 | struct axon_msic *msic = device->dev.platform_data; |
299 | u32 tmp; | 296 | u32 tmp; |
300 | 297 | ||
301 | list_for_each_entry(msic, &axon_msic_list, list) { | 298 | pr_debug("axon_msi: disabling %s\n", |
302 | pr_debug("axon_msi: disabling %s\n", | 299 | msic->irq_host->of_node->full_name); |
303 | msic->irq_host->of_node->full_name); | 300 | tmp = dcr_read(msic->dcr_host, MSIC_CTRL_REG); |
304 | tmp = dcr_read(msic->dcr_host, MSIC_CTRL_REG); | 301 | tmp &= ~MSIC_CTRL_ENABLE & ~MSIC_CTRL_IRQ_ENABLE; |
305 | tmp &= ~MSIC_CTRL_ENABLE & ~MSIC_CTRL_IRQ_ENABLE; | 302 | msic_dcr_write(msic, MSIC_CTRL_REG, tmp); |
306 | msic_dcr_write(msic, MSIC_CTRL_REG, tmp); | ||
307 | } | ||
308 | 303 | ||
309 | return 0; | 304 | return 0; |
310 | } | 305 | } |
311 | 306 | ||
312 | static struct notifier_block axon_msi_reboot_notifier = { | 307 | static int axon_msi_probe(struct of_device *device, |
313 | .notifier_call = axon_msi_notify_reboot | 308 | const struct of_device_id *device_id) |
314 | }; | ||
315 | |||
316 | static int axon_msi_setup_one(struct device_node *dn) | ||
317 | { | 309 | { |
318 | struct page *page; | 310 | struct device_node *dn = device->node; |
319 | struct axon_msic *msic; | 311 | struct axon_msic *msic; |
320 | unsigned int virq; | 312 | unsigned int virq; |
321 | int dcr_base, dcr_len; | 313 | int dcr_base, dcr_len; |
@@ -346,16 +338,14 @@ static int axon_msi_setup_one(struct device_node *dn) | |||
346 | goto out_free_msic; | 338 | goto out_free_msic; |
347 | } | 339 | } |
348 | 340 | ||
349 | page = alloc_pages_node(of_node_to_nid(dn), GFP_KERNEL, | 341 | msic->fifo_virt = dma_alloc_coherent(&device->dev, MSIC_FIFO_SIZE_BYTES, |
350 | get_order(MSIC_FIFO_SIZE_BYTES)); | 342 | &msic->fifo_phys, GFP_KERNEL); |
351 | if (!page) { | 343 | if (!msic->fifo_virt) { |
352 | printk(KERN_ERR "axon_msi: couldn't allocate fifo for %s\n", | 344 | printk(KERN_ERR "axon_msi: couldn't allocate fifo for %s\n", |
353 | dn->full_name); | 345 | dn->full_name); |
354 | goto out_free_msic; | 346 | goto out_free_msic; |
355 | } | 347 | } |
356 | 348 | ||
357 | msic->fifo = page_address(page); | ||
358 | |||
359 | msic->irq_host = irq_alloc_host(of_node_get(dn), IRQ_HOST_MAP_NOMAP, | 349 | msic->irq_host = irq_alloc_host(of_node_get(dn), IRQ_HOST_MAP_NOMAP, |
360 | NR_IRQS, &msic_host_ops, 0); | 350 | NR_IRQS, &msic_host_ops, 0); |
361 | if (!msic->irq_host) { | 351 | if (!msic->irq_host) { |
@@ -378,14 +368,18 @@ static int axon_msi_setup_one(struct device_node *dn) | |||
378 | pr_debug("axon_msi: irq 0x%x setup for axon_msi\n", virq); | 368 | pr_debug("axon_msi: irq 0x%x setup for axon_msi\n", virq); |
379 | 369 | ||
380 | /* Enable the MSIC hardware */ | 370 | /* Enable the MSIC hardware */ |
381 | msic_dcr_write(msic, MSIC_BASE_ADDR_HI_REG, (u64)msic->fifo >> 32); | 371 | msic_dcr_write(msic, MSIC_BASE_ADDR_HI_REG, msic->fifo_phys >> 32); |
382 | msic_dcr_write(msic, MSIC_BASE_ADDR_LO_REG, | 372 | msic_dcr_write(msic, MSIC_BASE_ADDR_LO_REG, |
383 | (u64)msic->fifo & 0xFFFFFFFF); | 373 | msic->fifo_phys & 0xFFFFFFFF); |
384 | msic_dcr_write(msic, MSIC_CTRL_REG, | 374 | msic_dcr_write(msic, MSIC_CTRL_REG, |
385 | MSIC_CTRL_IRQ_ENABLE | MSIC_CTRL_ENABLE | | 375 | MSIC_CTRL_IRQ_ENABLE | MSIC_CTRL_ENABLE | |
386 | MSIC_CTRL_FIFO_SIZE); | 376 | MSIC_CTRL_FIFO_SIZE); |
387 | 377 | ||
388 | list_add(&msic->list, &axon_msic_list); | 378 | device->dev.platform_data = msic; |
379 | |||
380 | ppc_md.setup_msi_irqs = axon_msi_setup_msi_irqs; | ||
381 | ppc_md.teardown_msi_irqs = axon_msi_teardown_msi_irqs; | ||
382 | ppc_md.msi_check_device = axon_msi_check_device; | ||
389 | 383 | ||
390 | printk(KERN_DEBUG "axon_msi: setup MSIC on %s\n", dn->full_name); | 384 | printk(KERN_DEBUG "axon_msi: setup MSIC on %s\n", dn->full_name); |
391 | 385 | ||
@@ -394,7 +388,8 @@ static int axon_msi_setup_one(struct device_node *dn) | |||
394 | out_free_host: | 388 | out_free_host: |
395 | kfree(msic->irq_host); | 389 | kfree(msic->irq_host); |
396 | out_free_fifo: | 390 | out_free_fifo: |
397 | __free_pages(virt_to_page(msic->fifo), get_order(MSIC_FIFO_SIZE_BYTES)); | 391 | dma_free_coherent(&device->dev, MSIC_FIFO_SIZE_BYTES, msic->fifo_virt, |
392 | msic->fifo_phys); | ||
398 | out_free_msic: | 393 | out_free_msic: |
399 | kfree(msic); | 394 | kfree(msic); |
400 | out: | 395 | out: |
@@ -402,28 +397,24 @@ out: | |||
402 | return -1; | 397 | return -1; |
403 | } | 398 | } |
404 | 399 | ||
405 | static int axon_msi_init(void) | 400 | static const struct of_device_id axon_msi_device_id[] = { |
406 | { | 401 | { |
407 | struct device_node *dn; | 402 | .compatible = "ibm,axon-msic" |
408 | int found = 0; | 403 | }, |
409 | 404 | {} | |
410 | pr_debug("axon_msi: initialising ...\n"); | 405 | }; |
411 | |||
412 | for_each_compatible_node(dn, NULL, "ibm,axon-msic") { | ||
413 | if (axon_msi_setup_one(dn) == 0) | ||
414 | found++; | ||
415 | } | ||
416 | |||
417 | if (found) { | ||
418 | ppc_md.setup_msi_irqs = axon_msi_setup_msi_irqs; | ||
419 | ppc_md.teardown_msi_irqs = axon_msi_teardown_msi_irqs; | ||
420 | ppc_md.msi_check_device = axon_msi_check_device; | ||
421 | |||
422 | register_reboot_notifier(&axon_msi_reboot_notifier); | ||
423 | 406 | ||
424 | pr_debug("axon_msi: registered callbacks!\n"); | 407 | static struct of_platform_driver axon_msi_driver = { |
425 | } | 408 | .match_table = axon_msi_device_id, |
409 | .probe = axon_msi_probe, | ||
410 | .shutdown = axon_msi_shutdown, | ||
411 | .driver = { | ||
412 | .name = "axon-msi" | ||
413 | }, | ||
414 | }; | ||
426 | 415 | ||
427 | return 0; | 416 | static int __init axon_msi_init(void) |
417 | { | ||
418 | return of_register_platform_driver(&axon_msi_driver); | ||
428 | } | 419 | } |
429 | arch_initcall(axon_msi_init); | 420 | subsys_initcall(axon_msi_init); |
diff --git a/arch/powerpc/platforms/cell/setup.c b/arch/powerpc/platforms/cell/setup.c index e6534b519c9a..a7f609b3b876 100644 --- a/arch/powerpc/platforms/cell/setup.c +++ b/arch/powerpc/platforms/cell/setup.c | |||
@@ -98,7 +98,7 @@ static int __init cell_publish_devices(void) | |||
98 | } | 98 | } |
99 | return 0; | 99 | return 0; |
100 | } | 100 | } |
101 | machine_device_initcall(cell, cell_publish_devices); | 101 | machine_subsys_initcall(cell, cell_publish_devices); |
102 | 102 | ||
103 | static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc) | 103 | static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc) |
104 | { | 104 | { |
diff --git a/arch/powerpc/platforms/cell/spufs/Makefile b/arch/powerpc/platforms/cell/spufs/Makefile index d3a349fb42e5..99610a6361f2 100644 --- a/arch/powerpc/platforms/cell/spufs/Makefile +++ b/arch/powerpc/platforms/cell/spufs/Makefile | |||
@@ -4,6 +4,8 @@ spufs-y += inode.o file.o context.o syscalls.o coredump.o | |||
4 | spufs-y += sched.o backing_ops.o hw_ops.o run.o gang.o | 4 | spufs-y += sched.o backing_ops.o hw_ops.o run.o gang.o |
5 | spufs-y += switch.o fault.o lscsa_alloc.o | 5 | spufs-y += switch.o fault.o lscsa_alloc.o |
6 | 6 | ||
7 | obj-$(CONFIG_SPU_TRACE) += sputrace.o | ||
8 | |||
7 | # Rules to build switch.o with the help of SPU tool chain | 9 | # Rules to build switch.o with the help of SPU tool chain |
8 | SPU_CROSS := spu- | 10 | SPU_CROSS := spu- |
9 | SPU_CC := $(SPU_CROSS)gcc | 11 | SPU_CC := $(SPU_CROSS)gcc |
diff --git a/arch/powerpc/platforms/cell/spufs/file.c b/arch/powerpc/platforms/cell/spufs/file.c index 3fcd06418b01..1018acd1746b 100644 --- a/arch/powerpc/platforms/cell/spufs/file.c +++ b/arch/powerpc/platforms/cell/spufs/file.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/poll.h> | 29 | #include <linux/poll.h> |
30 | #include <linux/ptrace.h> | 30 | #include <linux/ptrace.h> |
31 | #include <linux/seq_file.h> | 31 | #include <linux/seq_file.h> |
32 | #include <linux/marker.h> | ||
32 | 33 | ||
33 | #include <asm/io.h> | 34 | #include <asm/io.h> |
34 | #include <asm/semaphore.h> | 35 | #include <asm/semaphore.h> |
@@ -358,6 +359,8 @@ static unsigned long spufs_ps_nopfn(struct vm_area_struct *vma, | |||
358 | struct spu_context *ctx = vma->vm_file->private_data; | 359 | struct spu_context *ctx = vma->vm_file->private_data; |
359 | unsigned long area, offset = address - vma->vm_start; | 360 | unsigned long area, offset = address - vma->vm_start; |
360 | 361 | ||
362 | spu_context_nospu_trace(spufs_ps_nopfn__enter, ctx); | ||
363 | |||
361 | offset += vma->vm_pgoff << PAGE_SHIFT; | 364 | offset += vma->vm_pgoff << PAGE_SHIFT; |
362 | if (offset >= ps_size) | 365 | if (offset >= ps_size) |
363 | return NOPFN_SIGBUS; | 366 | return NOPFN_SIGBUS; |
@@ -375,11 +378,14 @@ static unsigned long spufs_ps_nopfn(struct vm_area_struct *vma, | |||
375 | 378 | ||
376 | if (ctx->state == SPU_STATE_SAVED) { | 379 | if (ctx->state == SPU_STATE_SAVED) { |
377 | up_read(¤t->mm->mmap_sem); | 380 | up_read(¤t->mm->mmap_sem); |
381 | spu_context_nospu_trace(spufs_ps_nopfn__sleep, ctx); | ||
378 | spufs_wait(ctx->run_wq, ctx->state == SPU_STATE_RUNNABLE); | 382 | spufs_wait(ctx->run_wq, ctx->state == SPU_STATE_RUNNABLE); |
383 | spu_context_trace(spufs_ps_nopfn__wake, ctx, ctx->spu); | ||
379 | down_read(¤t->mm->mmap_sem); | 384 | down_read(¤t->mm->mmap_sem); |
380 | } else { | 385 | } else { |
381 | area = ctx->spu->problem_phys + ps_offs; | 386 | area = ctx->spu->problem_phys + ps_offs; |
382 | vm_insert_pfn(vma, address, (area + offset) >> PAGE_SHIFT); | 387 | vm_insert_pfn(vma, address, (area + offset) >> PAGE_SHIFT); |
388 | spu_context_trace(spufs_ps_nopfn__insert, ctx, ctx->spu); | ||
383 | } | 389 | } |
384 | 390 | ||
385 | spu_release(ctx); | 391 | spu_release(ctx); |
diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index c0e968a4c211..90784c029f25 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c | |||
@@ -322,7 +322,7 @@ static struct spu_context * | |||
322 | spufs_assert_affinity(unsigned int flags, struct spu_gang *gang, | 322 | spufs_assert_affinity(unsigned int flags, struct spu_gang *gang, |
323 | struct file *filp) | 323 | struct file *filp) |
324 | { | 324 | { |
325 | struct spu_context *tmp, *neighbor; | 325 | struct spu_context *tmp, *neighbor, *err; |
326 | int count, node; | 326 | int count, node; |
327 | int aff_supp; | 327 | int aff_supp; |
328 | 328 | ||
@@ -354,11 +354,15 @@ spufs_assert_affinity(unsigned int flags, struct spu_gang *gang, | |||
354 | if (!list_empty(&neighbor->aff_list) && !(neighbor->aff_head) && | 354 | if (!list_empty(&neighbor->aff_list) && !(neighbor->aff_head) && |
355 | !list_is_last(&neighbor->aff_list, &gang->aff_list_head) && | 355 | !list_is_last(&neighbor->aff_list, &gang->aff_list_head) && |
356 | !list_entry(neighbor->aff_list.next, struct spu_context, | 356 | !list_entry(neighbor->aff_list.next, struct spu_context, |
357 | aff_list)->aff_head) | 357 | aff_list)->aff_head) { |
358 | return ERR_PTR(-EEXIST); | 358 | err = ERR_PTR(-EEXIST); |
359 | goto out_put_neighbor; | ||
360 | } | ||
359 | 361 | ||
360 | if (gang != neighbor->gang) | 362 | if (gang != neighbor->gang) { |
361 | return ERR_PTR(-EINVAL); | 363 | err = ERR_PTR(-EINVAL); |
364 | goto out_put_neighbor; | ||
365 | } | ||
362 | 366 | ||
363 | count = 1; | 367 | count = 1; |
364 | list_for_each_entry(tmp, &gang->aff_list_head, aff_list) | 368 | list_for_each_entry(tmp, &gang->aff_list_head, aff_list) |
@@ -372,11 +376,17 @@ spufs_assert_affinity(unsigned int flags, struct spu_gang *gang, | |||
372 | break; | 376 | break; |
373 | } | 377 | } |
374 | 378 | ||
375 | if (node == MAX_NUMNODES) | 379 | if (node == MAX_NUMNODES) { |
376 | return ERR_PTR(-EEXIST); | 380 | err = ERR_PTR(-EEXIST); |
381 | goto out_put_neighbor; | ||
382 | } | ||
377 | } | 383 | } |
378 | 384 | ||
379 | return neighbor; | 385 | return neighbor; |
386 | |||
387 | out_put_neighbor: | ||
388 | put_spu_context(neighbor); | ||
389 | return err; | ||
380 | } | 390 | } |
381 | 391 | ||
382 | static void | 392 | static void |
@@ -454,9 +464,12 @@ spufs_create_context(struct inode *inode, struct dentry *dentry, | |||
454 | if (ret) | 464 | if (ret) |
455 | goto out_aff_unlock; | 465 | goto out_aff_unlock; |
456 | 466 | ||
457 | if (affinity) | 467 | if (affinity) { |
458 | spufs_set_affinity(flags, SPUFS_I(dentry->d_inode)->i_ctx, | 468 | spufs_set_affinity(flags, SPUFS_I(dentry->d_inode)->i_ctx, |
459 | neighbor); | 469 | neighbor); |
470 | if (neighbor) | ||
471 | put_spu_context(neighbor); | ||
472 | } | ||
460 | 473 | ||
461 | /* | 474 | /* |
462 | * get references for dget and mntget, will be released | 475 | * get references for dget and mntget, will be released |
diff --git a/arch/powerpc/platforms/cell/spufs/run.c b/arch/powerpc/platforms/cell/spufs/run.c index c01a09da1e56..b4814c740d8a 100644 --- a/arch/powerpc/platforms/cell/spufs/run.c +++ b/arch/powerpc/platforms/cell/spufs/run.c | |||
@@ -410,8 +410,11 @@ long spufs_run_spu(struct spu_context *ctx, u32 *npc, u32 *event) | |||
410 | * since we have TIF_SINGLESTEP set, thus the kernel will do | 410 | * since we have TIF_SINGLESTEP set, thus the kernel will do |
411 | * it upon return from the syscall anyawy | 411 | * it upon return from the syscall anyawy |
412 | */ | 412 | */ |
413 | if ((status & SPU_STATUS_STOPPED_BY_STOP) | 413 | if (unlikely(status & SPU_STATUS_SINGLE_STEP)) |
414 | && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff) { | 414 | ret = -ERESTARTSYS; |
415 | |||
416 | else if (unlikely((status & SPU_STATUS_STOPPED_BY_STOP) | ||
417 | && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff)) { | ||
415 | force_sig(SIGTRAP, current); | 418 | force_sig(SIGTRAP, current); |
416 | ret = -ERESTARTSYS; | 419 | ret = -ERESTARTSYS; |
417 | } | 420 | } |
diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c index 00d914232af1..5915343e2599 100644 --- a/arch/powerpc/platforms/cell/spufs/sched.c +++ b/arch/powerpc/platforms/cell/spufs/sched.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <linux/pid_namespace.h> | 39 | #include <linux/pid_namespace.h> |
40 | #include <linux/proc_fs.h> | 40 | #include <linux/proc_fs.h> |
41 | #include <linux/seq_file.h> | 41 | #include <linux/seq_file.h> |
42 | #include <linux/marker.h> | ||
42 | 43 | ||
43 | #include <asm/io.h> | 44 | #include <asm/io.h> |
44 | #include <asm/mmu_context.h> | 45 | #include <asm/mmu_context.h> |
@@ -216,8 +217,8 @@ void do_notify_spus_active(void) | |||
216 | */ | 217 | */ |
217 | static void spu_bind_context(struct spu *spu, struct spu_context *ctx) | 218 | static void spu_bind_context(struct spu *spu, struct spu_context *ctx) |
218 | { | 219 | { |
219 | pr_debug("%s: pid=%d SPU=%d NODE=%d\n", __FUNCTION__, current->pid, | 220 | spu_context_trace(spu_bind_context__enter, ctx, spu); |
220 | spu->number, spu->node); | 221 | |
221 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); | 222 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); |
222 | 223 | ||
223 | if (ctx->flags & SPU_CREATE_NOSCHED) | 224 | if (ctx->flags & SPU_CREATE_NOSCHED) |
@@ -399,8 +400,8 @@ static int has_affinity(struct spu_context *ctx) | |||
399 | */ | 400 | */ |
400 | static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) | 401 | static void spu_unbind_context(struct spu *spu, struct spu_context *ctx) |
401 | { | 402 | { |
402 | pr_debug("%s: unbind pid=%d SPU=%d NODE=%d\n", __FUNCTION__, | 403 | spu_context_trace(spu_unbind_context__enter, ctx, spu); |
403 | spu->pid, spu->number, spu->node); | 404 | |
404 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); | 405 | spuctx_switch_state(ctx, SPU_UTIL_SYSTEM); |
405 | 406 | ||
406 | if (spu->ctx->flags & SPU_CREATE_NOSCHED) | 407 | if (spu->ctx->flags & SPU_CREATE_NOSCHED) |
@@ -528,6 +529,8 @@ static struct spu *spu_get_idle(struct spu_context *ctx) | |||
528 | struct spu *spu, *aff_ref_spu; | 529 | struct spu *spu, *aff_ref_spu; |
529 | int node, n; | 530 | int node, n; |
530 | 531 | ||
532 | spu_context_nospu_trace(spu_get_idle__enter, ctx); | ||
533 | |||
531 | if (ctx->gang) { | 534 | if (ctx->gang) { |
532 | mutex_lock(&ctx->gang->aff_mutex); | 535 | mutex_lock(&ctx->gang->aff_mutex); |
533 | if (has_affinity(ctx)) { | 536 | if (has_affinity(ctx)) { |
@@ -546,8 +549,7 @@ static struct spu *spu_get_idle(struct spu_context *ctx) | |||
546 | if (atomic_dec_and_test(&ctx->gang->aff_sched_count)) | 549 | if (atomic_dec_and_test(&ctx->gang->aff_sched_count)) |
547 | ctx->gang->aff_ref_spu = NULL; | 550 | ctx->gang->aff_ref_spu = NULL; |
548 | mutex_unlock(&ctx->gang->aff_mutex); | 551 | mutex_unlock(&ctx->gang->aff_mutex); |
549 | 552 | goto not_found; | |
550 | return NULL; | ||
551 | } | 553 | } |
552 | mutex_unlock(&ctx->gang->aff_mutex); | 554 | mutex_unlock(&ctx->gang->aff_mutex); |
553 | } | 555 | } |
@@ -565,12 +567,14 @@ static struct spu *spu_get_idle(struct spu_context *ctx) | |||
565 | mutex_unlock(&cbe_spu_info[node].list_mutex); | 567 | mutex_unlock(&cbe_spu_info[node].list_mutex); |
566 | } | 568 | } |
567 | 569 | ||
570 | not_found: | ||
571 | spu_context_nospu_trace(spu_get_idle__not_found, ctx); | ||
568 | return NULL; | 572 | return NULL; |
569 | 573 | ||
570 | found: | 574 | found: |
571 | spu->alloc_state = SPU_USED; | 575 | spu->alloc_state = SPU_USED; |
572 | mutex_unlock(&cbe_spu_info[node].list_mutex); | 576 | mutex_unlock(&cbe_spu_info[node].list_mutex); |
573 | pr_debug("Got SPU %d %d\n", spu->number, spu->node); | 577 | spu_context_trace(spu_get_idle__found, ctx, spu); |
574 | spu_init_channels(spu); | 578 | spu_init_channels(spu); |
575 | return spu; | 579 | return spu; |
576 | } | 580 | } |
@@ -587,6 +591,8 @@ static struct spu *find_victim(struct spu_context *ctx) | |||
587 | struct spu *spu; | 591 | struct spu *spu; |
588 | int node, n; | 592 | int node, n; |
589 | 593 | ||
594 | spu_context_nospu_trace(spu_find_vitim__enter, ctx); | ||
595 | |||
590 | /* | 596 | /* |
591 | * Look for a possible preemption candidate on the local node first. | 597 | * Look for a possible preemption candidate on the local node first. |
592 | * If there is no candidate look at the other nodes. This isn't | 598 | * If there is no candidate look at the other nodes. This isn't |
@@ -640,6 +646,8 @@ static struct spu *find_victim(struct spu_context *ctx) | |||
640 | goto restart; | 646 | goto restart; |
641 | } | 647 | } |
642 | 648 | ||
649 | spu_context_trace(__spu_deactivate__unload, ctx, spu); | ||
650 | |||
643 | mutex_lock(&cbe_spu_info[node].list_mutex); | 651 | mutex_lock(&cbe_spu_info[node].list_mutex); |
644 | cbe_spu_info[node].nr_active--; | 652 | cbe_spu_info[node].nr_active--; |
645 | spu_unbind_context(spu, victim); | 653 | spu_unbind_context(spu, victim); |
@@ -822,6 +830,7 @@ static int __spu_deactivate(struct spu_context *ctx, int force, int max_prio) | |||
822 | */ | 830 | */ |
823 | void spu_deactivate(struct spu_context *ctx) | 831 | void spu_deactivate(struct spu_context *ctx) |
824 | { | 832 | { |
833 | spu_context_nospu_trace(spu_deactivate__enter, ctx); | ||
825 | __spu_deactivate(ctx, 1, MAX_PRIO); | 834 | __spu_deactivate(ctx, 1, MAX_PRIO); |
826 | } | 835 | } |
827 | 836 | ||
@@ -835,6 +844,7 @@ void spu_deactivate(struct spu_context *ctx) | |||
835 | */ | 844 | */ |
836 | void spu_yield(struct spu_context *ctx) | 845 | void spu_yield(struct spu_context *ctx) |
837 | { | 846 | { |
847 | spu_context_nospu_trace(spu_yield__enter, ctx); | ||
838 | if (!(ctx->flags & SPU_CREATE_NOSCHED)) { | 848 | if (!(ctx->flags & SPU_CREATE_NOSCHED)) { |
839 | mutex_lock(&ctx->state_mutex); | 849 | mutex_lock(&ctx->state_mutex); |
840 | __spu_deactivate(ctx, 0, MAX_PRIO); | 850 | __spu_deactivate(ctx, 0, MAX_PRIO); |
@@ -864,11 +874,15 @@ static noinline void spusched_tick(struct spu_context *ctx) | |||
864 | goto out; | 874 | goto out; |
865 | 875 | ||
866 | spu = ctx->spu; | 876 | spu = ctx->spu; |
877 | |||
878 | spu_context_trace(spusched_tick__preempt, ctx, spu); | ||
879 | |||
867 | new = grab_runnable_context(ctx->prio + 1, spu->node); | 880 | new = grab_runnable_context(ctx->prio + 1, spu->node); |
868 | if (new) { | 881 | if (new) { |
869 | spu_unschedule(spu, ctx); | 882 | spu_unschedule(spu, ctx); |
870 | spu_add_to_rq(ctx); | 883 | spu_add_to_rq(ctx); |
871 | } else { | 884 | } else { |
885 | spu_context_nospu_trace(spusched_tick__newslice, ctx); | ||
872 | ctx->time_slice++; | 886 | ctx->time_slice++; |
873 | } | 887 | } |
874 | out: | 888 | out: |
diff --git a/arch/powerpc/platforms/cell/spufs/spufs.h b/arch/powerpc/platforms/cell/spufs/spufs.h index 0e114038ea6f..795a1b52538b 100644 --- a/arch/powerpc/platforms/cell/spufs/spufs.h +++ b/arch/powerpc/platforms/cell/spufs/spufs.h | |||
@@ -325,4 +325,9 @@ extern void spu_free_lscsa(struct spu_state *csa); | |||
325 | extern void spuctx_switch_state(struct spu_context *ctx, | 325 | extern void spuctx_switch_state(struct spu_context *ctx, |
326 | enum spu_utilization_state new_state); | 326 | enum spu_utilization_state new_state); |
327 | 327 | ||
328 | #define spu_context_trace(name, ctx, spu) \ | ||
329 | trace_mark(name, "%p %p", ctx, spu); | ||
330 | #define spu_context_nospu_trace(name, ctx) \ | ||
331 | trace_mark(name, "%p", ctx); | ||
332 | |||
328 | #endif | 333 | #endif |
diff --git a/arch/powerpc/platforms/cell/spufs/sputrace.c b/arch/powerpc/platforms/cell/spufs/sputrace.c new file mode 100644 index 000000000000..2b1953f6f12e --- /dev/null +++ b/arch/powerpc/platforms/cell/spufs/sputrace.c | |||
@@ -0,0 +1,250 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 IBM Deutschland Entwicklung GmbH | ||
3 | * Released under GPL v2. | ||
4 | * | ||
5 | * Partially based on net/ipv4/tcp_probe.c. | ||
6 | * | ||
7 | * Simple tracing facility for spu contexts. | ||
8 | */ | ||
9 | #include <linux/sched.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/module.h> | ||
12 | #include <linux/marker.h> | ||
13 | #include <linux/proc_fs.h> | ||
14 | #include <linux/wait.h> | ||
15 | #include <asm/atomic.h> | ||
16 | #include <asm/uaccess.h> | ||
17 | #include "spufs.h" | ||
18 | |||
19 | struct spu_probe { | ||
20 | const char *name; | ||
21 | const char *format; | ||
22 | marker_probe_func *probe_func; | ||
23 | }; | ||
24 | |||
25 | struct sputrace { | ||
26 | ktime_t tstamp; | ||
27 | int owner_tid; /* owner */ | ||
28 | int curr_tid; | ||
29 | const char *name; | ||
30 | int number; | ||
31 | }; | ||
32 | |||
33 | static int bufsize __read_mostly = 16384; | ||
34 | MODULE_PARM_DESC(bufsize, "Log buffer size (number of records)"); | ||
35 | module_param(bufsize, int, 0); | ||
36 | |||
37 | |||
38 | static DEFINE_SPINLOCK(sputrace_lock); | ||
39 | static DECLARE_WAIT_QUEUE_HEAD(sputrace_wait); | ||
40 | static ktime_t sputrace_start; | ||
41 | static unsigned long sputrace_head, sputrace_tail; | ||
42 | static struct sputrace *sputrace_log; | ||
43 | |||
44 | static int sputrace_used(void) | ||
45 | { | ||
46 | return (sputrace_head - sputrace_tail) % bufsize; | ||
47 | } | ||
48 | |||
49 | static inline int sputrace_avail(void) | ||
50 | { | ||
51 | return bufsize - sputrace_used(); | ||
52 | } | ||
53 | |||
54 | static int sputrace_sprint(char *tbuf, int n) | ||
55 | { | ||
56 | const struct sputrace *t = sputrace_log + sputrace_tail % bufsize; | ||
57 | struct timespec tv = | ||
58 | ktime_to_timespec(ktime_sub(t->tstamp, sputrace_start)); | ||
59 | |||
60 | return snprintf(tbuf, n, | ||
61 | "[%lu.%09lu] %d: %s (thread = %d, spu = %d)\n", | ||
62 | (unsigned long) tv.tv_sec, | ||
63 | (unsigned long) tv.tv_nsec, | ||
64 | t->owner_tid, | ||
65 | t->name, | ||
66 | t->curr_tid, | ||
67 | t->number); | ||
68 | } | ||
69 | |||
70 | static ssize_t sputrace_read(struct file *file, char __user *buf, | ||
71 | size_t len, loff_t *ppos) | ||
72 | { | ||
73 | int error = 0, cnt = 0; | ||
74 | |||
75 | if (!buf || len < 0) | ||
76 | return -EINVAL; | ||
77 | |||
78 | while (cnt < len) { | ||
79 | char tbuf[128]; | ||
80 | int width; | ||
81 | |||
82 | error = wait_event_interruptible(sputrace_wait, | ||
83 | sputrace_used() > 0); | ||
84 | if (error) | ||
85 | break; | ||
86 | |||
87 | spin_lock(&sputrace_lock); | ||
88 | if (sputrace_head == sputrace_tail) { | ||
89 | spin_unlock(&sputrace_lock); | ||
90 | continue; | ||
91 | } | ||
92 | |||
93 | width = sputrace_sprint(tbuf, sizeof(tbuf)); | ||
94 | if (width < len) | ||
95 | sputrace_tail = (sputrace_tail + 1) % bufsize; | ||
96 | spin_unlock(&sputrace_lock); | ||
97 | |||
98 | if (width >= len) | ||
99 | break; | ||
100 | |||
101 | error = copy_to_user(buf + cnt, tbuf, width); | ||
102 | if (error) | ||
103 | break; | ||
104 | cnt += width; | ||
105 | } | ||
106 | |||
107 | return cnt == 0 ? error : cnt; | ||
108 | } | ||
109 | |||
110 | static int sputrace_open(struct inode *inode, struct file *file) | ||
111 | { | ||
112 | spin_lock(&sputrace_lock); | ||
113 | sputrace_head = sputrace_tail = 0; | ||
114 | sputrace_start = ktime_get(); | ||
115 | spin_unlock(&sputrace_lock); | ||
116 | |||
117 | return 0; | ||
118 | } | ||
119 | |||
120 | static const struct file_operations sputrace_fops = { | ||
121 | .owner = THIS_MODULE, | ||
122 | .open = sputrace_open, | ||
123 | .read = sputrace_read, | ||
124 | }; | ||
125 | |||
126 | static void sputrace_log_item(const char *name, struct spu_context *ctx, | ||
127 | struct spu *spu) | ||
128 | { | ||
129 | spin_lock(&sputrace_lock); | ||
130 | if (sputrace_avail() > 1) { | ||
131 | struct sputrace *t = sputrace_log + sputrace_head; | ||
132 | |||
133 | t->tstamp = ktime_get(); | ||
134 | t->owner_tid = ctx->tid; | ||
135 | t->name = name; | ||
136 | t->curr_tid = current->pid; | ||
137 | t->number = spu ? spu->number : -1; | ||
138 | |||
139 | sputrace_head = (sputrace_head + 1) % bufsize; | ||
140 | } else { | ||
141 | printk(KERN_WARNING | ||
142 | "sputrace: lost samples due to full buffer.\n"); | ||
143 | } | ||
144 | spin_unlock(&sputrace_lock); | ||
145 | |||
146 | wake_up(&sputrace_wait); | ||
147 | } | ||
148 | |||
149 | static void spu_context_event(const struct marker *mdata, | ||
150 | void *private, const char *format, ...) | ||
151 | { | ||
152 | struct spu_probe *p = mdata->private; | ||
153 | va_list ap; | ||
154 | struct spu_context *ctx; | ||
155 | struct spu *spu; | ||
156 | |||
157 | va_start(ap, format); | ||
158 | ctx = va_arg(ap, struct spu_context *); | ||
159 | spu = va_arg(ap, struct spu *); | ||
160 | |||
161 | sputrace_log_item(p->name, ctx, spu); | ||
162 | va_end(ap); | ||
163 | } | ||
164 | |||
165 | static void spu_context_nospu_event(const struct marker *mdata, | ||
166 | void *private, const char *format, ...) | ||
167 | { | ||
168 | struct spu_probe *p = mdata->private; | ||
169 | va_list ap; | ||
170 | struct spu_context *ctx; | ||
171 | |||
172 | va_start(ap, format); | ||
173 | ctx = va_arg(ap, struct spu_context *); | ||
174 | |||
175 | sputrace_log_item(p->name, ctx, NULL); | ||
176 | va_end(ap); | ||
177 | } | ||
178 | |||
179 | struct spu_probe spu_probes[] = { | ||
180 | { "spu_bind_context__enter", "%p %p", spu_context_event }, | ||
181 | { "spu_unbind_context__enter", "%p %p", spu_context_event }, | ||
182 | { "spu_get_idle__enter", "%p", spu_context_nospu_event }, | ||
183 | { "spu_get_idle__found", "%p %p", spu_context_event }, | ||
184 | { "spu_get_idle__not_found", "%p", spu_context_nospu_event }, | ||
185 | { "spu_find_victim__enter", "%p", spu_context_nospu_event }, | ||
186 | { "spusched_tick__preempt", "%p %p", spu_context_event }, | ||
187 | { "spusched_tick__newslice", "%p", spu_context_nospu_event }, | ||
188 | { "spu_yield__enter", "%p", spu_context_nospu_event }, | ||
189 | { "spu_deactivate__enter", "%p", spu_context_nospu_event }, | ||
190 | { "__spu_deactivate__unload", "%p %p", spu_context_event }, | ||
191 | { "spufs_ps_nopfn__enter", "%p", spu_context_nospu_event }, | ||
192 | { "spufs_ps_nopfn__sleep", "%p", spu_context_nospu_event }, | ||
193 | { "spufs_ps_nopfn__wake", "%p %p", spu_context_event }, | ||
194 | { "spufs_ps_nopfn__insert", "%p %p", spu_context_event }, | ||
195 | { "spu_acquire_saved__enter", "%p", spu_context_nospu_event }, | ||
196 | { "destroy_spu_context__enter", "%p", spu_context_nospu_event }, | ||
197 | }; | ||
198 | |||
199 | static int __init sputrace_init(void) | ||
200 | { | ||
201 | struct proc_dir_entry *entry; | ||
202 | int i, error = -ENOMEM; | ||
203 | |||
204 | sputrace_log = kcalloc(sizeof(struct sputrace), | ||
205 | bufsize, GFP_KERNEL); | ||
206 | if (!sputrace_log) | ||
207 | goto out; | ||
208 | |||
209 | entry = create_proc_entry("sputrace", S_IRUSR, NULL); | ||
210 | if (!entry) | ||
211 | goto out_free_log; | ||
212 | entry->proc_fops = &sputrace_fops; | ||
213 | |||
214 | for (i = 0; i < ARRAY_SIZE(spu_probes); i++) { | ||
215 | struct spu_probe *p = &spu_probes[i]; | ||
216 | |||
217 | error = marker_probe_register(p->name, p->format, | ||
218 | p->probe_func, p); | ||
219 | if (error) | ||
220 | printk(KERN_INFO "Unable to register probe %s\n", | ||
221 | p->name); | ||
222 | |||
223 | error = marker_arm(p->name); | ||
224 | if (error) | ||
225 | printk(KERN_INFO "Unable to arm probe %s\n", p->name); | ||
226 | } | ||
227 | |||
228 | return 0; | ||
229 | |||
230 | out_free_log: | ||
231 | kfree(sputrace_log); | ||
232 | out: | ||
233 | return -ENOMEM; | ||
234 | } | ||
235 | |||
236 | static void __exit sputrace_exit(void) | ||
237 | { | ||
238 | int i; | ||
239 | |||
240 | for (i = 0; i < ARRAY_SIZE(spu_probes); i++) | ||
241 | marker_probe_unregister(spu_probes[i].name); | ||
242 | |||
243 | remove_proc_entry("sputrace", NULL); | ||
244 | kfree(sputrace_log); | ||
245 | } | ||
246 | |||
247 | module_init(sputrace_init); | ||
248 | module_exit(sputrace_exit); | ||
249 | |||
250 | MODULE_LICENSE("GPL"); | ||
diff --git a/arch/powerpc/platforms/embedded6xx/storcenter.c b/arch/powerpc/platforms/embedded6xx/storcenter.c index e12e9d298716..8864e4884980 100644 --- a/arch/powerpc/platforms/embedded6xx/storcenter.c +++ b/arch/powerpc/platforms/embedded6xx/storcenter.c | |||
@@ -132,33 +132,18 @@ static void __init storcenter_init_IRQ(void) | |||
132 | 132 | ||
133 | paddr = (phys_addr_t)of_translate_address(dnp, prop); | 133 | paddr = (phys_addr_t)of_translate_address(dnp, prop); |
134 | mpic = mpic_alloc(dnp, paddr, MPIC_PRIMARY | MPIC_WANTS_RESET, | 134 | mpic = mpic_alloc(dnp, paddr, MPIC_PRIMARY | MPIC_WANTS_RESET, |
135 | 4, 32, " EPIC "); | 135 | 16, 32, " OpenPIC "); |
136 | 136 | ||
137 | of_node_put(dnp); | 137 | of_node_put(dnp); |
138 | 138 | ||
139 | BUG_ON(mpic == NULL); | 139 | BUG_ON(mpic == NULL); |
140 | 140 | ||
141 | /* PCI IRQs */ | ||
142 | /* | 141 | /* |
143 | * 2.6.12 patch: | 142 | * 16 Serial Interrupts followed by 16 Internal Interrupts. |
144 | * openpic_set_sources(0, 5, OpenPIC_Addr + 0x10200); | 143 | * I2C is the second internal, so it is at 17, 0x11020. |
145 | * openpic_set_sources(5, 2, OpenPIC_Addr + 0x11120); | ||
146 | * first_irq, num_irqs, __iomem first_ISR | ||
147 | * o_ss: i, src: 0, fdf50200 | ||
148 | * o_ss: i, src: 1, fdf50220 | ||
149 | * o_ss: i, src: 2, fdf50240 | ||
150 | * o_ss: i, src: 3, fdf50260 | ||
151 | * o_ss: i, src: 4, fdf50280 | ||
152 | * o_ss: i, src: 5, fdf51120 | ||
153 | * o_ss: i, src: 6, fdf51140 | ||
154 | */ | 144 | */ |
155 | mpic_assign_isu(mpic, 0, paddr + 0x10200); | 145 | mpic_assign_isu(mpic, 0, paddr + 0x10200); |
156 | mpic_assign_isu(mpic, 1, paddr + 0x10220); | 146 | mpic_assign_isu(mpic, 1, paddr + 0x11000); |
157 | mpic_assign_isu(mpic, 2, paddr + 0x10240); | ||
158 | mpic_assign_isu(mpic, 3, paddr + 0x10260); | ||
159 | mpic_assign_isu(mpic, 4, paddr + 0x10280); | ||
160 | mpic_assign_isu(mpic, 5, paddr + 0x11120); | ||
161 | mpic_assign_isu(mpic, 6, paddr + 0x11140); | ||
162 | 147 | ||
163 | mpic_init(mpic); | 148 | mpic_init(mpic); |
164 | } | 149 | } |
@@ -178,7 +163,7 @@ static int __init storcenter_probe(void) | |||
178 | { | 163 | { |
179 | unsigned long root = of_get_flat_dt_root(); | 164 | unsigned long root = of_get_flat_dt_root(); |
180 | 165 | ||
181 | return of_flat_dt_is_compatible(root, "storcenter"); | 166 | return of_flat_dt_is_compatible(root, "iomega,storcenter"); |
182 | } | 167 | } |
183 | 168 | ||
184 | define_machine(storcenter){ | 169 | define_machine(storcenter){ |
diff --git a/arch/powerpc/platforms/iseries/iommu.c b/arch/powerpc/platforms/iseries/iommu.c index 6a0c6f6675cd..11fa3c772ed5 100644 --- a/arch/powerpc/platforms/iseries/iommu.c +++ b/arch/powerpc/platforms/iseries/iommu.c | |||
@@ -199,7 +199,7 @@ static struct iommu_table vio_iommu_table; | |||
199 | 199 | ||
200 | void *iseries_hv_alloc(size_t size, dma_addr_t *dma_handle, gfp_t flag) | 200 | void *iseries_hv_alloc(size_t size, dma_addr_t *dma_handle, gfp_t flag) |
201 | { | 201 | { |
202 | return iommu_alloc_coherent(&vio_iommu_table, size, dma_handle, | 202 | return iommu_alloc_coherent(NULL, &vio_iommu_table, size, dma_handle, |
203 | DMA_32BIT_MASK, flag, -1); | 203 | DMA_32BIT_MASK, flag, -1); |
204 | } | 204 | } |
205 | EXPORT_SYMBOL_GPL(iseries_hv_alloc); | 205 | EXPORT_SYMBOL_GPL(iseries_hv_alloc); |
@@ -213,7 +213,7 @@ EXPORT_SYMBOL_GPL(iseries_hv_free); | |||
213 | dma_addr_t iseries_hv_map(void *vaddr, size_t size, | 213 | dma_addr_t iseries_hv_map(void *vaddr, size_t size, |
214 | enum dma_data_direction direction) | 214 | enum dma_data_direction direction) |
215 | { | 215 | { |
216 | return iommu_map_single(&vio_iommu_table, vaddr, size, | 216 | return iommu_map_single(NULL, &vio_iommu_table, vaddr, size, |
217 | DMA_32BIT_MASK, direction); | 217 | DMA_32BIT_MASK, direction); |
218 | } | 218 | } |
219 | 219 | ||
diff --git a/arch/powerpc/platforms/pasemi/iommu.c b/arch/powerpc/platforms/pasemi/iommu.c index 9916a0f3e431..5803f11c77fc 100644 --- a/arch/powerpc/platforms/pasemi/iommu.c +++ b/arch/powerpc/platforms/pasemi/iommu.c | |||
@@ -182,8 +182,10 @@ static void pci_dma_dev_setup_pasemi(struct pci_dev *dev) | |||
182 | * CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE at build time. | 182 | * CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE at build time. |
183 | */ | 183 | */ |
184 | if (dev->vendor == 0x1959 && dev->device == 0xa007 && | 184 | if (dev->vendor == 0x1959 && dev->device == 0xa007 && |
185 | !firmware_has_feature(FW_FEATURE_LPAR)) | 185 | !firmware_has_feature(FW_FEATURE_LPAR)) { |
186 | dev->dev.archdata.dma_ops = &dma_direct_ops; | 186 | dev->dev.archdata.dma_ops = &dma_direct_ops; |
187 | return; | ||
188 | } | ||
187 | #endif | 189 | #endif |
188 | 190 | ||
189 | dev->dev.archdata.dma_data = &iommu_table_iobmap; | 191 | dev->dev.archdata.dma_data = &iommu_table_iobmap; |
diff --git a/arch/powerpc/platforms/pseries/reconfig.c b/arch/powerpc/platforms/pseries/reconfig.c index c02f8742c54d..2800fced8c7c 100644 --- a/arch/powerpc/platforms/pseries/reconfig.c +++ b/arch/powerpc/platforms/pseries/reconfig.c | |||
@@ -167,6 +167,7 @@ static int pSeries_reconfig_remove_node(struct device_node *np) | |||
167 | 167 | ||
168 | if ((child = of_get_next_child(np, NULL))) { | 168 | if ((child = of_get_next_child(np, NULL))) { |
169 | of_node_put(child); | 169 | of_node_put(child); |
170 | of_node_put(parent); | ||
170 | return -EBUSY; | 171 | return -EBUSY; |
171 | } | 172 | } |
172 | 173 | ||
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index e48b20e934ca..2c5388ce902a 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
@@ -1342,7 +1342,7 @@ static int __init of_fsl_spi_probe(char *type, char *compatible, u32 sysclk, | |||
1342 | if (ret) | 1342 | if (ret) |
1343 | goto unreg; | 1343 | goto unreg; |
1344 | 1344 | ||
1345 | ret = platform_device_register(pdev); | 1345 | ret = platform_device_add(pdev); |
1346 | if (ret) | 1346 | if (ret) |
1347 | goto unreg; | 1347 | goto unreg; |
1348 | 1348 | ||
diff --git a/arch/powerpc/sysdev/mpc8xx_pic.c b/arch/powerpc/sysdev/mpc8xx_pic.c index 0e74a4bd9827..5d2d5522ef41 100644 --- a/arch/powerpc/sysdev/mpc8xx_pic.c +++ b/arch/powerpc/sysdev/mpc8xx_pic.c | |||
@@ -174,15 +174,19 @@ int mpc8xx_pic_init(void) | |||
174 | goto out; | 174 | goto out; |
175 | 175 | ||
176 | siu_reg = ioremap(res.start, res.end - res.start + 1); | 176 | siu_reg = ioremap(res.start, res.end - res.start + 1); |
177 | if (siu_reg == NULL) | 177 | if (siu_reg == NULL) { |
178 | return -EINVAL; | 178 | ret = -EINVAL; |
179 | goto out; | ||
180 | } | ||
179 | 181 | ||
180 | mpc8xx_pic_host = irq_alloc_host(of_node_get(np), IRQ_HOST_MAP_LINEAR, | 182 | mpc8xx_pic_host = irq_alloc_host(np, IRQ_HOST_MAP_LINEAR, |
181 | 64, &mpc8xx_pic_host_ops, 64); | 183 | 64, &mpc8xx_pic_host_ops, 64); |
182 | if (mpc8xx_pic_host == NULL) { | 184 | if (mpc8xx_pic_host == NULL) { |
183 | printk(KERN_ERR "MPC8xx PIC: failed to allocate irq host!\n"); | 185 | printk(KERN_ERR "MPC8xx PIC: failed to allocate irq host!\n"); |
184 | ret = -ENOMEM; | 186 | ret = -ENOMEM; |
187 | goto out; | ||
185 | } | 188 | } |
189 | return 0; | ||
186 | 190 | ||
187 | out: | 191 | out: |
188 | of_node_put(np); | 192 | of_node_put(np); |
diff --git a/arch/powerpc/sysdev/qe_lib/qe.c b/arch/powerpc/sysdev/qe_lib/qe.c index 5ef844da9355..6efbd5e5bb1b 100644 --- a/arch/powerpc/sysdev/qe_lib/qe.c +++ b/arch/powerpc/sysdev/qe_lib/qe.c | |||
@@ -66,7 +66,7 @@ phys_addr_t get_qe_base(void) | |||
66 | { | 66 | { |
67 | struct device_node *qe; | 67 | struct device_node *qe; |
68 | unsigned int size; | 68 | unsigned int size; |
69 | const void *prop; | 69 | const u32 *prop; |
70 | 70 | ||
71 | if (qebase != -1) | 71 | if (qebase != -1) |
72 | return qebase; | 72 | return qebase; |
@@ -79,7 +79,8 @@ phys_addr_t get_qe_base(void) | |||
79 | } | 79 | } |
80 | 80 | ||
81 | prop = of_get_property(qe, "reg", &size); | 81 | prop = of_get_property(qe, "reg", &size); |
82 | qebase = of_translate_address(qe, prop); | 82 | if (prop && size >= sizeof(*prop)) |
83 | qebase = of_translate_address(qe, prop); | ||
83 | of_node_put(qe); | 84 | of_node_put(qe); |
84 | 85 | ||
85 | return qebase; | 86 | return qebase; |
@@ -172,10 +173,9 @@ unsigned int get_brg_clk(void) | |||
172 | } | 173 | } |
173 | 174 | ||
174 | prop = of_get_property(qe, "brg-frequency", &size); | 175 | prop = of_get_property(qe, "brg-frequency", &size); |
175 | if (!prop || size != sizeof(*prop)) | 176 | if (prop && size == sizeof(*prop)) |
176 | return brg_clk; | 177 | brg_clk = *prop; |
177 | 178 | ||
178 | brg_clk = *prop; | ||
179 | of_node_put(qe); | 179 | of_node_put(qe); |
180 | 180 | ||
181 | return brg_clk; | 181 | return brg_clk; |
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig index db5934cdafb3..531156f8919c 100644 --- a/arch/ppc/Kconfig +++ b/arch/ppc/Kconfig | |||
@@ -42,6 +42,8 @@ config GENERIC_CALIBRATE_DELAY | |||
42 | config PPC | 42 | config PPC |
43 | bool | 43 | bool |
44 | default y | 44 | default y |
45 | select HAVE_OPROFILE | ||
46 | select HAVE_KPROBES | ||
45 | 47 | ||
46 | config PPC32 | 48 | config PPC32 |
47 | bool | 49 | bool |
@@ -1256,8 +1258,6 @@ endmenu | |||
1256 | 1258 | ||
1257 | source "lib/Kconfig" | 1259 | source "lib/Kconfig" |
1258 | 1260 | ||
1259 | source "kernel/Kconfig.instrumentation" | ||
1260 | |||
1261 | source "arch/ppc/Kconfig.debug" | 1261 | source "arch/ppc/Kconfig.debug" |
1262 | 1262 | ||
1263 | source "security/Kconfig" | 1263 | source "security/Kconfig" |
diff --git a/arch/ppc/mm/pgtable.c b/arch/ppc/mm/pgtable.c index fadacfd18806..409fcaa4994a 100644 --- a/arch/ppc/mm/pgtable.c +++ b/arch/ppc/mm/pgtable.c | |||
@@ -74,7 +74,7 @@ pgd_t *pgd_alloc(struct mm_struct *mm) | |||
74 | return ret; | 74 | return ret; |
75 | } | 75 | } |
76 | 76 | ||
77 | void pgd_free(pgd_t *pgd) | 77 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
78 | { | 78 | { |
79 | free_pages((unsigned long)pgd, PGDIR_ORDER); | 79 | free_pages((unsigned long)pgd, PGDIR_ORDER); |
80 | } | 80 | } |
@@ -111,7 +111,7 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address) | |||
111 | return ptepage; | 111 | return ptepage; |
112 | } | 112 | } |
113 | 113 | ||
114 | void pte_free_kernel(pte_t *pte) | 114 | void pte_free_kernel(struct mm_struct *mm, pte_t *pte) |
115 | { | 115 | { |
116 | #ifdef CONFIG_SMP | 116 | #ifdef CONFIG_SMP |
117 | hash_page_sync(); | 117 | hash_page_sync(); |
@@ -119,7 +119,7 @@ void pte_free_kernel(pte_t *pte) | |||
119 | free_page((unsigned long)pte); | 119 | free_page((unsigned long)pte); |
120 | } | 120 | } |
121 | 121 | ||
122 | void pte_free(struct page *ptepage) | 122 | void pte_free(struct mm_struct *mm, struct page *ptepage) |
123 | { | 123 | { |
124 | #ifdef CONFIG_SMP | 124 | #ifdef CONFIG_SMP |
125 | hash_page_sync(); | 125 | hash_page_sync(); |
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 6ef54d27fc00..92a4f7b4323a 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig | |||
@@ -16,6 +16,9 @@ config LOCKDEP_SUPPORT | |||
16 | config STACKTRACE_SUPPORT | 16 | config STACKTRACE_SUPPORT |
17 | def_bool y | 17 | def_bool y |
18 | 18 | ||
19 | config HAVE_LATENCYTOP_SUPPORT | ||
20 | def_bool y | ||
21 | |||
19 | config RWSEM_GENERIC_SPINLOCK | 22 | config RWSEM_GENERIC_SPINLOCK |
20 | bool | 23 | bool |
21 | 24 | ||
@@ -47,10 +50,17 @@ config NO_IOMEM | |||
47 | config NO_DMA | 50 | config NO_DMA |
48 | def_bool y | 51 | def_bool y |
49 | 52 | ||
53 | config GENERIC_LOCKBREAK | ||
54 | bool | ||
55 | default y | ||
56 | depends on SMP && PREEMPT | ||
57 | |||
50 | mainmenu "Linux Kernel Configuration" | 58 | mainmenu "Linux Kernel Configuration" |
51 | 59 | ||
52 | config S390 | 60 | config S390 |
53 | def_bool y | 61 | def_bool y |
62 | select HAVE_OPROFILE | ||
63 | select HAVE_KPROBES | ||
54 | 64 | ||
55 | source "init/Kconfig" | 65 | source "init/Kconfig" |
56 | 66 | ||
@@ -81,8 +91,8 @@ config SMP | |||
81 | singleprocessor machines. On a singleprocessor machine, the kernel | 91 | singleprocessor machines. On a singleprocessor machine, the kernel |
82 | will run faster if you say N here. | 92 | will run faster if you say N here. |
83 | 93 | ||
84 | See also the <file:Documentation/smp.txt> and the SMP-HOWTO | 94 | See also the SMP-HOWTO available at |
85 | available at <http://www.tldp.org/docs.html#howto>. | 95 | <http://www.tldp.org/docs.html#howto>. |
86 | 96 | ||
87 | Even if you don't know what to do here, say Y. | 97 | Even if you don't know what to do here, say Y. |
88 | 98 | ||
@@ -526,8 +536,6 @@ source "drivers/Kconfig" | |||
526 | 536 | ||
527 | source "fs/Kconfig" | 537 | source "fs/Kconfig" |
528 | 538 | ||
529 | source "kernel/Kconfig.instrumentation" | ||
530 | |||
531 | source "arch/s390/Kconfig.debug" | 539 | source "arch/s390/Kconfig.debug" |
532 | 540 | ||
533 | source "security/Kconfig" | 541 | source "security/Kconfig" |
diff --git a/arch/s390/Kconfig.debug b/arch/s390/Kconfig.debug index 2283933a9a93..4599fa06bd82 100644 --- a/arch/s390/Kconfig.debug +++ b/arch/s390/Kconfig.debug | |||
@@ -6,4 +6,12 @@ config TRACE_IRQFLAGS_SUPPORT | |||
6 | 6 | ||
7 | source "lib/Kconfig.debug" | 7 | source "lib/Kconfig.debug" |
8 | 8 | ||
9 | config DEBUG_PAGEALLOC | ||
10 | bool "Debug page memory allocations" | ||
11 | depends on DEBUG_KERNEL | ||
12 | help | ||
13 | Unmap pages from the kernel linear mapping after free_pages(). | ||
14 | This results in a slowdown, but helps to find certain types of | ||
15 | memory corruptions. | ||
16 | |||
9 | endmenu | 17 | endmenu |
diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index 6ee1bedbd1bf..062c3d4c0394 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S | |||
@@ -1698,14 +1698,6 @@ compat_sys_signalfd_wrapper: | |||
1698 | llgfr %r4,%r4 # compat_size_t | 1698 | llgfr %r4,%r4 # compat_size_t |
1699 | jg compat_sys_signalfd | 1699 | jg compat_sys_signalfd |
1700 | 1700 | ||
1701 | .globl compat_sys_timerfd_wrapper | ||
1702 | compat_sys_timerfd_wrapper: | ||
1703 | lgfr %r2,%r2 # int | ||
1704 | lgfr %r3,%r3 # int | ||
1705 | lgfr %r4,%r4 # int | ||
1706 | llgtr %r5,%r5 # struct compat_itimerspec * | ||
1707 | jg compat_sys_timerfd | ||
1708 | |||
1709 | .globl sys_eventfd_wrapper | 1701 | .globl sys_eventfd_wrapper |
1710 | sys_eventfd_wrapper: | 1702 | sys_eventfd_wrapper: |
1711 | llgfr %r2,%r2 # unsigned int | 1703 | llgfr %r2,%r2 # unsigned int |
diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S index 1a6dac8df6fb..6766e37fe8ea 100644 --- a/arch/s390/kernel/entry.S +++ b/arch/s390/kernel/entry.S | |||
@@ -11,6 +11,7 @@ | |||
11 | 11 | ||
12 | #include <linux/sys.h> | 12 | #include <linux/sys.h> |
13 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
14 | #include <linux/init.h> | ||
14 | #include <asm/cache.h> | 15 | #include <asm/cache.h> |
15 | #include <asm/lowcore.h> | 16 | #include <asm/lowcore.h> |
16 | #include <asm/errno.h> | 17 | #include <asm/errno.h> |
@@ -830,9 +831,7 @@ mcck_return: | |||
830 | * Restart interruption handler, kick starter for additional CPUs | 831 | * Restart interruption handler, kick starter for additional CPUs |
831 | */ | 832 | */ |
832 | #ifdef CONFIG_SMP | 833 | #ifdef CONFIG_SMP |
833 | #ifndef CONFIG_HOTPLUG_CPU | 834 | __CPUINIT |
834 | .section .init.text,"ax" | ||
835 | #endif | ||
836 | .globl restart_int_handler | 835 | .globl restart_int_handler |
837 | restart_int_handler: | 836 | restart_int_handler: |
838 | l %r15,__LC_SAVE_AREA+60 # load ksp | 837 | l %r15,__LC_SAVE_AREA+60 # load ksp |
@@ -845,9 +844,7 @@ restart_int_handler: | |||
845 | br %r14 # branch to start_secondary | 844 | br %r14 # branch to start_secondary |
846 | restart_addr: | 845 | restart_addr: |
847 | .long start_secondary | 846 | .long start_secondary |
848 | #ifndef CONFIG_HOTPLUG_CPU | ||
849 | .previous | 847 | .previous |
850 | #endif | ||
851 | #else | 848 | #else |
852 | /* | 849 | /* |
853 | * If we do not run with SMP enabled, let the new CPU crash ... | 850 | * If we do not run with SMP enabled, let the new CPU crash ... |
diff --git a/arch/s390/kernel/entry64.S b/arch/s390/kernel/entry64.S index a3e47b893f07..efde6e178f6c 100644 --- a/arch/s390/kernel/entry64.S +++ b/arch/s390/kernel/entry64.S | |||
@@ -11,6 +11,7 @@ | |||
11 | 11 | ||
12 | #include <linux/sys.h> | 12 | #include <linux/sys.h> |
13 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
14 | #include <linux/init.h> | ||
14 | #include <asm/cache.h> | 15 | #include <asm/cache.h> |
15 | #include <asm/lowcore.h> | 16 | #include <asm/lowcore.h> |
16 | #include <asm/errno.h> | 17 | #include <asm/errno.h> |
@@ -801,9 +802,7 @@ mcck_return: | |||
801 | * Restart interruption handler, kick starter for additional CPUs | 802 | * Restart interruption handler, kick starter for additional CPUs |
802 | */ | 803 | */ |
803 | #ifdef CONFIG_SMP | 804 | #ifdef CONFIG_SMP |
804 | #ifndef CONFIG_HOTPLUG_CPU | 805 | __CPUINIT |
805 | .section .init.text,"ax" | ||
806 | #endif | ||
807 | .globl restart_int_handler | 806 | .globl restart_int_handler |
808 | restart_int_handler: | 807 | restart_int_handler: |
809 | lg %r15,__LC_SAVE_AREA+120 # load ksp | 808 | lg %r15,__LC_SAVE_AREA+120 # load ksp |
@@ -814,9 +813,7 @@ restart_int_handler: | |||
814 | lmg %r6,%r15,__SF_GPRS(%r15) # load registers from clone | 813 | lmg %r6,%r15,__SF_GPRS(%r15) # load registers from clone |
815 | stosm __SF_EMPTY(%r15),0x04 # now we can turn dat on | 814 | stosm __SF_EMPTY(%r15),0x04 # now we can turn dat on |
816 | jg start_secondary | 815 | jg start_secondary |
817 | #ifndef CONFIG_HOTPLUG_CPU | ||
818 | .previous | 816 | .previous |
819 | #endif | ||
820 | #else | 817 | #else |
821 | /* | 818 | /* |
822 | * If we do not run with SMP enabled, let the new CPU crash ... | 819 | * If we do not run with SMP enabled, let the new CPU crash ... |
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index db28cca81fef..60acdc266db1 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c | |||
@@ -439,7 +439,7 @@ static void ipl_run(struct shutdown_trigger *trigger) | |||
439 | reipl_ccw_dev(&ipl_info.data.ccw.dev_id); | 439 | reipl_ccw_dev(&ipl_info.data.ccw.dev_id); |
440 | } | 440 | } |
441 | 441 | ||
442 | static int ipl_init(void) | 442 | static int __init ipl_init(void) |
443 | { | 443 | { |
444 | int rc; | 444 | int rc; |
445 | 445 | ||
@@ -471,8 +471,11 @@ out: | |||
471 | return 0; | 471 | return 0; |
472 | } | 472 | } |
473 | 473 | ||
474 | static struct shutdown_action ipl_action = {SHUTDOWN_ACTION_IPL_STR, ipl_run, | 474 | static struct shutdown_action __refdata ipl_action = { |
475 | ipl_init}; | 475 | .name = SHUTDOWN_ACTION_IPL_STR, |
476 | .fn = ipl_run, | ||
477 | .init = ipl_init, | ||
478 | }; | ||
476 | 479 | ||
477 | /* | 480 | /* |
478 | * reipl shutdown action: Reboot Linux on shutdown. | 481 | * reipl shutdown action: Reboot Linux on shutdown. |
@@ -792,7 +795,7 @@ static int __init reipl_fcp_init(void) | |||
792 | return 0; | 795 | return 0; |
793 | } | 796 | } |
794 | 797 | ||
795 | static int reipl_init(void) | 798 | static int __init reipl_init(void) |
796 | { | 799 | { |
797 | int rc; | 800 | int rc; |
798 | 801 | ||
@@ -819,8 +822,11 @@ static int reipl_init(void) | |||
819 | return 0; | 822 | return 0; |
820 | } | 823 | } |
821 | 824 | ||
822 | static struct shutdown_action reipl_action = {SHUTDOWN_ACTION_REIPL_STR, | 825 | static struct shutdown_action __refdata reipl_action = { |
823 | reipl_run, reipl_init}; | 826 | .name = SHUTDOWN_ACTION_REIPL_STR, |
827 | .fn = reipl_run, | ||
828 | .init = reipl_init, | ||
829 | }; | ||
824 | 830 | ||
825 | /* | 831 | /* |
826 | * dump shutdown action: Dump Linux on shutdown. | 832 | * dump shutdown action: Dump Linux on shutdown. |
@@ -998,7 +1004,7 @@ static int __init dump_fcp_init(void) | |||
998 | return 0; | 1004 | return 0; |
999 | } | 1005 | } |
1000 | 1006 | ||
1001 | static int dump_init(void) | 1007 | static int __init dump_init(void) |
1002 | { | 1008 | { |
1003 | int rc; | 1009 | int rc; |
1004 | 1010 | ||
@@ -1020,8 +1026,11 @@ static int dump_init(void) | |||
1020 | return 0; | 1026 | return 0; |
1021 | } | 1027 | } |
1022 | 1028 | ||
1023 | static struct shutdown_action dump_action = {SHUTDOWN_ACTION_DUMP_STR, | 1029 | static struct shutdown_action __refdata dump_action = { |
1024 | dump_run, dump_init}; | 1030 | .name = SHUTDOWN_ACTION_DUMP_STR, |
1031 | .fn = dump_run, | ||
1032 | .init = dump_init, | ||
1033 | }; | ||
1025 | 1034 | ||
1026 | /* | 1035 | /* |
1027 | * vmcmd shutdown action: Trigger vm command on shutdown. | 1036 | * vmcmd shutdown action: Trigger vm command on shutdown. |
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index 766c783bd7a7..29ae165d1749 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c | |||
@@ -77,7 +77,7 @@ unsigned long machine_flags = 0; | |||
77 | unsigned long elf_hwcap = 0; | 77 | unsigned long elf_hwcap = 0; |
78 | char elf_platform[ELF_PLATFORM_SIZE]; | 78 | char elf_platform[ELF_PLATFORM_SIZE]; |
79 | 79 | ||
80 | struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; | 80 | struct mem_chunk __meminitdata memory_chunk[MEMORY_CHUNKS]; |
81 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ | 81 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ |
82 | static unsigned long __initdata memory_end; | 82 | static unsigned long __initdata memory_end; |
83 | 83 | ||
@@ -145,7 +145,7 @@ __setup("condev=", condev_setup); | |||
145 | 145 | ||
146 | static int __init conmode_setup(char *str) | 146 | static int __init conmode_setup(char *str) |
147 | { | 147 | { |
148 | #if defined(CONFIG_SCLP_CONSOLE) | 148 | #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE) |
149 | if (strncmp(str, "hwc", 4) == 0 || strncmp(str, "sclp", 5) == 0) | 149 | if (strncmp(str, "hwc", 4) == 0 || strncmp(str, "sclp", 5) == 0) |
150 | SET_CONSOLE_SCLP; | 150 | SET_CONSOLE_SCLP; |
151 | #endif | 151 | #endif |
@@ -183,7 +183,7 @@ static void __init conmode_default(void) | |||
183 | */ | 183 | */ |
184 | cpcmd("TERM CONMODE 3215", NULL, 0, NULL); | 184 | cpcmd("TERM CONMODE 3215", NULL, 0, NULL); |
185 | if (ptr == NULL) { | 185 | if (ptr == NULL) { |
186 | #if defined(CONFIG_SCLP_CONSOLE) | 186 | #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE) |
187 | SET_CONSOLE_SCLP; | 187 | SET_CONSOLE_SCLP; |
188 | #endif | 188 | #endif |
189 | return; | 189 | return; |
@@ -193,7 +193,7 @@ static void __init conmode_default(void) | |||
193 | SET_CONSOLE_3270; | 193 | SET_CONSOLE_3270; |
194 | #elif defined(CONFIG_TN3215_CONSOLE) | 194 | #elif defined(CONFIG_TN3215_CONSOLE) |
195 | SET_CONSOLE_3215; | 195 | SET_CONSOLE_3215; |
196 | #elif defined(CONFIG_SCLP_CONSOLE) | 196 | #elif defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE) |
197 | SET_CONSOLE_SCLP; | 197 | SET_CONSOLE_SCLP; |
198 | #endif | 198 | #endif |
199 | } else if (strncmp(ptr + 8, "3215", 4) == 0) { | 199 | } else if (strncmp(ptr + 8, "3215", 4) == 0) { |
@@ -201,7 +201,7 @@ static void __init conmode_default(void) | |||
201 | SET_CONSOLE_3215; | 201 | SET_CONSOLE_3215; |
202 | #elif defined(CONFIG_TN3270_CONSOLE) | 202 | #elif defined(CONFIG_TN3270_CONSOLE) |
203 | SET_CONSOLE_3270; | 203 | SET_CONSOLE_3270; |
204 | #elif defined(CONFIG_SCLP_CONSOLE) | 204 | #elif defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE) |
205 | SET_CONSOLE_SCLP; | 205 | SET_CONSOLE_SCLP; |
206 | #endif | 206 | #endif |
207 | } | 207 | } |
@@ -212,7 +212,7 @@ static void __init conmode_default(void) | |||
212 | SET_CONSOLE_3270; | 212 | SET_CONSOLE_3270; |
213 | #endif | 213 | #endif |
214 | } else { | 214 | } else { |
215 | #if defined(CONFIG_SCLP_CONSOLE) | 215 | #if defined(CONFIG_SCLP_CONSOLE) || defined(CONFIG_SCLP_VT220_CONSOLE) |
216 | SET_CONSOLE_SCLP; | 216 | SET_CONSOLE_SCLP; |
217 | #endif | 217 | #endif |
218 | } | 218 | } |
@@ -528,7 +528,7 @@ static void __init setup_memory_end(void) | |||
528 | memory_size = 0; | 528 | memory_size = 0; |
529 | memory_end &= PAGE_MASK; | 529 | memory_end &= PAGE_MASK; |
530 | 530 | ||
531 | max_mem = memory_end ? min(VMALLOC_START, memory_end) : VMALLOC_START; | 531 | max_mem = memory_end ? min(VMEM_MAX_PHYS, memory_end) : VMEM_MAX_PHYS; |
532 | memory_end = min(max_mem, memory_end); | 532 | memory_end = min(max_mem, memory_end); |
533 | 533 | ||
534 | /* | 534 | /* |
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index aa37fa154512..85060659fb12 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
@@ -225,12 +225,11 @@ EXPORT_SYMBOL(smp_call_function_single); | |||
225 | * You must not call this function with disabled interrupts or from a | 225 | * You must not call this function with disabled interrupts or from a |
226 | * hardware interrupt handler or from a bottom half handler. | 226 | * hardware interrupt handler or from a bottom half handler. |
227 | */ | 227 | */ |
228 | int | 228 | int smp_call_function_mask(cpumask_t mask, void (*func)(void *), void *info, |
229 | smp_call_function_mask(cpumask_t mask, | 229 | int wait) |
230 | void (*func)(void *), void *info, | ||
231 | int wait) | ||
232 | { | 230 | { |
233 | preempt_disable(); | 231 | preempt_disable(); |
232 | cpu_clear(smp_processor_id(), mask); | ||
234 | __smp_call_function_map(func, info, 0, wait, mask); | 233 | __smp_call_function_map(func, info, 0, wait, mask); |
235 | preempt_enable(); | 234 | preempt_enable(); |
236 | return 0; | 235 | return 0; |
@@ -1008,7 +1007,7 @@ static struct notifier_block __cpuinitdata smp_cpu_nb = { | |||
1008 | .notifier_call = smp_cpu_notify, | 1007 | .notifier_call = smp_cpu_notify, |
1009 | }; | 1008 | }; |
1010 | 1009 | ||
1011 | static int smp_add_present_cpu(int cpu) | 1010 | static int __devinit smp_add_present_cpu(int cpu) |
1012 | { | 1011 | { |
1013 | struct cpu *c = &per_cpu(cpu_devices, cpu); | 1012 | struct cpu *c = &per_cpu(cpu_devices, cpu); |
1014 | struct sys_device *s = &c->sysdev; | 1013 | struct sys_device *s = &c->sysdev; |
@@ -1036,8 +1035,8 @@ out: | |||
1036 | } | 1035 | } |
1037 | 1036 | ||
1038 | #ifdef CONFIG_HOTPLUG_CPU | 1037 | #ifdef CONFIG_HOTPLUG_CPU |
1039 | static ssize_t rescan_store(struct sys_device *dev, const char *buf, | 1038 | static ssize_t __ref rescan_store(struct sys_device *dev, |
1040 | size_t count) | 1039 | const char *buf, size_t count) |
1041 | { | 1040 | { |
1042 | cpumask_t newcpus; | 1041 | cpumask_t newcpus; |
1043 | int cpu; | 1042 | int cpu; |
diff --git a/arch/s390/kernel/stacktrace.c b/arch/s390/kernel/stacktrace.c index da6924729964..85e46a5d0e08 100644 --- a/arch/s390/kernel/stacktrace.c +++ b/arch/s390/kernel/stacktrace.c | |||
@@ -14,7 +14,8 @@ | |||
14 | static unsigned long save_context_stack(struct stack_trace *trace, | 14 | static unsigned long save_context_stack(struct stack_trace *trace, |
15 | unsigned long sp, | 15 | unsigned long sp, |
16 | unsigned long low, | 16 | unsigned long low, |
17 | unsigned long high) | 17 | unsigned long high, |
18 | int savesched) | ||
18 | { | 19 | { |
19 | struct stack_frame *sf; | 20 | struct stack_frame *sf; |
20 | struct pt_regs *regs; | 21 | struct pt_regs *regs; |
@@ -47,10 +48,12 @@ static unsigned long save_context_stack(struct stack_trace *trace, | |||
47 | return sp; | 48 | return sp; |
48 | regs = (struct pt_regs *)sp; | 49 | regs = (struct pt_regs *)sp; |
49 | addr = regs->psw.addr & PSW_ADDR_INSN; | 50 | addr = regs->psw.addr & PSW_ADDR_INSN; |
50 | if (!trace->skip) | 51 | if (savesched || !in_sched_functions(addr)) { |
51 | trace->entries[trace->nr_entries++] = addr; | 52 | if (!trace->skip) |
52 | else | 53 | trace->entries[trace->nr_entries++] = addr; |
53 | trace->skip--; | 54 | else |
55 | trace->skip--; | ||
56 | } | ||
54 | if (trace->nr_entries >= trace->max_entries) | 57 | if (trace->nr_entries >= trace->max_entries) |
55 | return sp; | 58 | return sp; |
56 | low = sp; | 59 | low = sp; |
@@ -66,15 +69,27 @@ void save_stack_trace(struct stack_trace *trace) | |||
66 | orig_sp = sp & PSW_ADDR_INSN; | 69 | orig_sp = sp & PSW_ADDR_INSN; |
67 | new_sp = save_context_stack(trace, orig_sp, | 70 | new_sp = save_context_stack(trace, orig_sp, |
68 | S390_lowcore.panic_stack - PAGE_SIZE, | 71 | S390_lowcore.panic_stack - PAGE_SIZE, |
69 | S390_lowcore.panic_stack); | 72 | S390_lowcore.panic_stack, 1); |
70 | if (new_sp != orig_sp) | 73 | if (new_sp != orig_sp) |
71 | return; | 74 | return; |
72 | new_sp = save_context_stack(trace, new_sp, | 75 | new_sp = save_context_stack(trace, new_sp, |
73 | S390_lowcore.async_stack - ASYNC_SIZE, | 76 | S390_lowcore.async_stack - ASYNC_SIZE, |
74 | S390_lowcore.async_stack); | 77 | S390_lowcore.async_stack, 1); |
75 | if (new_sp != orig_sp) | 78 | if (new_sp != orig_sp) |
76 | return; | 79 | return; |
77 | save_context_stack(trace, new_sp, | 80 | save_context_stack(trace, new_sp, |
78 | S390_lowcore.thread_info, | 81 | S390_lowcore.thread_info, |
79 | S390_lowcore.thread_info + THREAD_SIZE); | 82 | S390_lowcore.thread_info + THREAD_SIZE, 1); |
83 | } | ||
84 | |||
85 | void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) | ||
86 | { | ||
87 | unsigned long sp, low, high; | ||
88 | |||
89 | sp = tsk->thread.ksp & PSW_ADDR_INSN; | ||
90 | low = (unsigned long) task_stack_page(tsk); | ||
91 | high = (unsigned long) task_pt_regs(tsk); | ||
92 | save_context_stack(trace, sp, low, high, 0); | ||
93 | if (trace->nr_entries < trace->max_entries) | ||
94 | trace->entries[trace->nr_entries++] = ULONG_MAX; | ||
80 | } | 95 | } |
diff --git a/arch/s390/kernel/syscalls.S b/arch/s390/kernel/syscalls.S index 9e26ed9fe4e7..25eac7802fc4 100644 --- a/arch/s390/kernel/syscalls.S +++ b/arch/s390/kernel/syscalls.S | |||
@@ -325,5 +325,5 @@ SYSCALL(sys_utimes,sys_utimes,compat_sys_utimes_wrapper) | |||
325 | SYSCALL(s390_fallocate,sys_fallocate,sys_fallocate_wrapper) | 325 | SYSCALL(s390_fallocate,sys_fallocate,sys_fallocate_wrapper) |
326 | SYSCALL(sys_utimensat,sys_utimensat,compat_sys_utimensat_wrapper) /* 315 */ | 326 | SYSCALL(sys_utimensat,sys_utimensat,compat_sys_utimensat_wrapper) /* 315 */ |
327 | SYSCALL(sys_signalfd,sys_signalfd,compat_sys_signalfd_wrapper) | 327 | SYSCALL(sys_signalfd,sys_signalfd,compat_sys_signalfd_wrapper) |
328 | SYSCALL(sys_timerfd,sys_timerfd,compat_sys_timerfd_wrapper) | 328 | NI_SYSCALL /* 317 old sys_timer_fd */ |
329 | SYSCALL(sys_eventfd,sys_eventfd,sys_eventfd_wrapper) | 329 | SYSCALL(sys_eventfd,sys_eventfd,sys_eventfd_wrapper) |
diff --git a/arch/s390/kernel/traps.c b/arch/s390/kernel/traps.c index 52b8342c6bf2..1a2fdb6991df 100644 --- a/arch/s390/kernel/traps.c +++ b/arch/s390/kernel/traps.c | |||
@@ -271,7 +271,10 @@ void die(const char * str, struct pt_regs * regs, long err) | |||
271 | printk("PREEMPT "); | 271 | printk("PREEMPT "); |
272 | #endif | 272 | #endif |
273 | #ifdef CONFIG_SMP | 273 | #ifdef CONFIG_SMP |
274 | printk("SMP"); | 274 | printk("SMP "); |
275 | #endif | ||
276 | #ifdef CONFIG_DEBUG_PAGEALLOC | ||
277 | printk("DEBUG_PAGEALLOC"); | ||
275 | #endif | 278 | #endif |
276 | printk("\n"); | 279 | printk("\n"); |
277 | notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV); | 280 | notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV); |
diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S index 7d43c3cd3ef3..b4607155e8d0 100644 --- a/arch/s390/kernel/vmlinux.lds.S +++ b/arch/s390/kernel/vmlinux.lds.S | |||
@@ -35,7 +35,7 @@ SECTIONS | |||
35 | KPROBES_TEXT | 35 | KPROBES_TEXT |
36 | *(.fixup) | 36 | *(.fixup) |
37 | *(.gnu.warning) | 37 | *(.gnu.warning) |
38 | } = 0x0700 | 38 | } :text = 0x0700 |
39 | 39 | ||
40 | _etext = .; /* End of text section */ | 40 | _etext = .; /* End of text section */ |
41 | 41 | ||
diff --git a/arch/s390/mm/init.c b/arch/s390/mm/init.c index b234bb4a6da7..983ec6ec0e7c 100644 --- a/arch/s390/mm/init.c +++ b/arch/s390/mm/init.c | |||
@@ -167,6 +167,33 @@ void __init mem_init(void) | |||
167 | PFN_ALIGN((unsigned long)&_eshared) - 1); | 167 | PFN_ALIGN((unsigned long)&_eshared) - 1); |
168 | } | 168 | } |
169 | 169 | ||
170 | #ifdef CONFIG_DEBUG_PAGEALLOC | ||
171 | void kernel_map_pages(struct page *page, int numpages, int enable) | ||
172 | { | ||
173 | pgd_t *pgd; | ||
174 | pud_t *pud; | ||
175 | pmd_t *pmd; | ||
176 | pte_t *pte; | ||
177 | unsigned long address; | ||
178 | int i; | ||
179 | |||
180 | for (i = 0; i < numpages; i++) { | ||
181 | address = page_to_phys(page + i); | ||
182 | pgd = pgd_offset_k(address); | ||
183 | pud = pud_offset(pgd, address); | ||
184 | pmd = pmd_offset(pud, address); | ||
185 | pte = pte_offset_kernel(pmd, address); | ||
186 | if (!enable) { | ||
187 | ptep_invalidate(address, pte); | ||
188 | continue; | ||
189 | } | ||
190 | *pte = mk_pte_phys(address, __pgprot(_PAGE_TYPE_RW)); | ||
191 | /* Flush cpu write queue. */ | ||
192 | mb(); | ||
193 | } | ||
194 | } | ||
195 | #endif | ||
196 | |||
170 | void free_initmem(void) | 197 | void free_initmem(void) |
171 | { | 198 | { |
172 | unsigned long addr; | 199 | unsigned long addr; |
diff --git a/arch/s390/mm/vmem.c b/arch/s390/mm/vmem.c index 79d13a166a3d..7c1287ccf788 100644 --- a/arch/s390/mm/vmem.c +++ b/arch/s390/mm/vmem.c | |||
@@ -62,7 +62,7 @@ void __meminit memmap_init(unsigned long size, int nid, unsigned long zone, | |||
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | static void __init_refok *vmem_alloc_pages(unsigned int order) | 65 | static void __ref *vmem_alloc_pages(unsigned int order) |
66 | { | 66 | { |
67 | if (slab_is_available()) | 67 | if (slab_is_available()) |
68 | return (void *)__get_free_pages(GFP_KERNEL, order); | 68 | return (void *)__get_free_pages(GFP_KERNEL, order); |
@@ -250,7 +250,7 @@ static int insert_memory_segment(struct memory_segment *seg) | |||
250 | { | 250 | { |
251 | struct memory_segment *tmp; | 251 | struct memory_segment *tmp; |
252 | 252 | ||
253 | if (seg->start + seg->size >= VMALLOC_START || | 253 | if (seg->start + seg->size >= VMEM_MAX_PHYS || |
254 | seg->start + seg->size < seg->start) | 254 | seg->start + seg->size < seg->start) |
255 | return -ERANGE; | 255 | return -ERANGE; |
256 | 256 | ||
@@ -360,7 +360,6 @@ void __init vmem_map_init(void) | |||
360 | { | 360 | { |
361 | int i; | 361 | int i; |
362 | 362 | ||
363 | BUILD_BUG_ON((unsigned long)VMEM_MAP + VMEM_MAP_SIZE > VMEM_MAP_MAX); | ||
364 | NODE_DATA(0)->node_mem_map = VMEM_MAP; | 363 | NODE_DATA(0)->node_mem_map = VMEM_MAP; |
365 | for (i = 0; i < MEMORY_CHUNKS && memory_chunk[i].size > 0; i++) | 364 | for (i = 0; i < MEMORY_CHUNKS && memory_chunk[i].size > 0; i++) |
366 | vmem_add_mem(memory_chunk[i].addr, memory_chunk[i].size); | 365 | vmem_add_mem(memory_chunk[i].addr, memory_chunk[i].size); |
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 1cd9c8fd927d..1c3a90835c7e 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -8,6 +8,7 @@ mainmenu "Linux/SuperH Kernel Configuration" | |||
8 | config SUPERH | 8 | config SUPERH |
9 | def_bool y | 9 | def_bool y |
10 | select EMBEDDED | 10 | select EMBEDDED |
11 | select HAVE_OPROFILE | ||
11 | help | 12 | help |
12 | The SuperH is a RISC processor targeted for use in embedded systems | 13 | The SuperH is a RISC processor targeted for use in embedded systems |
13 | and consumer electronics; it was also used in the Sega Dreamcast | 14 | and consumer electronics; it was also used in the Sega Dreamcast |
@@ -672,9 +673,8 @@ config SMP | |||
672 | People using multiprocessor machines who say Y here should also say | 673 | People using multiprocessor machines who say Y here should also say |
673 | Y to "Enhanced Real Time Clock Support", below. | 674 | Y to "Enhanced Real Time Clock Support", below. |
674 | 675 | ||
675 | See also the <file:Documentation/smp.txt>, | 676 | See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO |
676 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available | 677 | available at <http://www.tldp.org/docs.html#howto>. |
677 | at <http://www.tldp.org/docs.html#howto>. | ||
678 | 678 | ||
679 | If you don't know what to do here, say N. | 679 | If you don't know what to do here, say N. |
680 | 680 | ||
@@ -882,6 +882,10 @@ endmenu | |||
882 | menu "Power management options (EXPERIMENTAL)" | 882 | menu "Power management options (EXPERIMENTAL)" |
883 | depends on EXPERIMENTAL && SYS_SUPPORTS_PM | 883 | depends on EXPERIMENTAL && SYS_SUPPORTS_PM |
884 | 884 | ||
885 | config ARCH_SUSPEND_POSSIBLE | ||
886 | def_bool y | ||
887 | depends on !SMP | ||
888 | |||
885 | source kernel/power/Kconfig | 889 | source kernel/power/Kconfig |
886 | 890 | ||
887 | endmenu | 891 | endmenu |
@@ -892,8 +896,6 @@ source "drivers/Kconfig" | |||
892 | 896 | ||
893 | source "fs/Kconfig" | 897 | source "fs/Kconfig" |
894 | 898 | ||
895 | source "kernel/Kconfig.instrumentation" | ||
896 | |||
897 | source "arch/sh/Kconfig.debug" | 899 | source "arch/sh/Kconfig.debug" |
898 | 900 | ||
899 | source "security/Kconfig" | 901 | source "security/Kconfig" |
diff --git a/arch/sh/drivers/pci/Kconfig b/arch/sh/drivers/pci/Kconfig index fbc6f2c8649f..7e816ededed7 100644 --- a/arch/sh/drivers/pci/Kconfig +++ b/arch/sh/drivers/pci/Kconfig | |||
@@ -6,11 +6,6 @@ config PCI | |||
6 | bus system, i.e. the way the CPU talks to the other stuff inside | 6 | bus system, i.e. the way the CPU talks to the other stuff inside |
7 | your box. If you have PCI, say Y, otherwise N. | 7 | your box. If you have PCI, say Y, otherwise N. |
8 | 8 | ||
9 | The PCI-HOWTO, available from | ||
10 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
11 | information about which PCI hardware does work under Linux and which | ||
12 | doesn't. | ||
13 | |||
14 | config SH_PCIDMA_NONCOHERENT | 9 | config SH_PCIDMA_NONCOHERENT |
15 | bool "Cache and PCI noncoherent" | 10 | bool "Cache and PCI noncoherent" |
16 | depends on PCI | 11 | depends on PCI |
diff --git a/arch/sh/kernel/syscalls_32.S b/arch/sh/kernel/syscalls_32.S index 10bec45415ba..719e127a7c05 100644 --- a/arch/sh/kernel/syscalls_32.S +++ b/arch/sh/kernel/syscalls_32.S | |||
@@ -338,6 +338,6 @@ ENTRY(sys_call_table) | |||
338 | .long sys_epoll_pwait | 338 | .long sys_epoll_pwait |
339 | .long sys_utimensat /* 320 */ | 339 | .long sys_utimensat /* 320 */ |
340 | .long sys_signalfd | 340 | .long sys_signalfd |
341 | .long sys_timerfd | 341 | .long sys_ni_syscall |
342 | .long sys_eventfd | 342 | .long sys_eventfd |
343 | .long sys_fallocate | 343 | .long sys_fallocate |
diff --git a/arch/sh/kernel/syscalls_64.S b/arch/sh/kernel/syscalls_64.S index 98a93efe3691..12c7340356ae 100644 --- a/arch/sh/kernel/syscalls_64.S +++ b/arch/sh/kernel/syscalls_64.S | |||
@@ -376,6 +376,6 @@ sys_call_table: | |||
376 | .long sys_epoll_pwait | 376 | .long sys_epoll_pwait |
377 | .long sys_utimensat | 377 | .long sys_utimensat |
378 | .long sys_signalfd | 378 | .long sys_signalfd |
379 | .long sys_timerfd /* 350 */ | 379 | .long sys_ni_syscall /* 350 */ |
380 | .long sys_eventfd | 380 | .long sys_eventfd |
381 | .long sys_fallocate | 381 | .long sys_fallocate |
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig index 527adc808ad6..99f8971716d2 100644 --- a/arch/sparc/Kconfig +++ b/arch/sparc/Kconfig | |||
@@ -48,9 +48,8 @@ config SMP | |||
48 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power | 48 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power |
49 | Management" code will be disabled if you say Y here. | 49 | Management" code will be disabled if you say Y here. |
50 | 50 | ||
51 | See also the <file:Documentation/smp.txt>, | 51 | See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO |
52 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at | 52 | available at <http://www.tldp.org/docs.html#howto>. |
53 | <http://www.tldp.org/docs.html#howto>. | ||
54 | 53 | ||
55 | If you don't know what to do here, say N. | 54 | If you don't know what to do here, say N. |
56 | 55 | ||
@@ -63,6 +62,7 @@ config NR_CPUS | |||
63 | config SPARC | 62 | config SPARC |
64 | bool | 63 | bool |
65 | default y | 64 | default y |
65 | select HAVE_OPROFILE | ||
66 | 66 | ||
67 | # Identify this as a Sparc32 build | 67 | # Identify this as a Sparc32 build |
68 | config SPARC32 | 68 | config SPARC32 |
@@ -320,8 +320,6 @@ endmenu | |||
320 | 320 | ||
321 | source "fs/Kconfig" | 321 | source "fs/Kconfig" |
322 | 322 | ||
323 | source "kernel/Kconfig.instrumentation" | ||
324 | |||
325 | source "arch/sparc/Kconfig.debug" | 323 | source "arch/sparc/Kconfig.debug" |
326 | 324 | ||
327 | source "security/Kconfig" | 325 | source "security/Kconfig" |
diff --git a/arch/sparc/kernel/ioport.c b/arch/sparc/kernel/ioport.c index 97aa50d1e4ae..ad0ede24ca1d 100644 --- a/arch/sparc/kernel/ioport.c +++ b/arch/sparc/kernel/ioport.c | |||
@@ -305,7 +305,7 @@ void *sbus_alloc_consistent(struct sbus_dev *sdev, long len, u32 *dma_addrp) | |||
305 | struct resource *res; | 305 | struct resource *res; |
306 | int order; | 306 | int order; |
307 | 307 | ||
308 | /* XXX why are some lenghts signed, others unsigned? */ | 308 | /* XXX why are some lengths signed, others unsigned? */ |
309 | if (len <= 0) { | 309 | if (len <= 0) { |
310 | return NULL; | 310 | return NULL; |
311 | } | 311 | } |
@@ -393,7 +393,7 @@ void sbus_free_consistent(struct sbus_dev *sdev, long n, void *p, u32 ba) | |||
393 | */ | 393 | */ |
394 | dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *va, size_t len, int direction) | 394 | dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *va, size_t len, int direction) |
395 | { | 395 | { |
396 | /* XXX why are some lenghts signed, others unsigned? */ | 396 | /* XXX why are some lengths signed, others unsigned? */ |
397 | if (len <= 0) { | 397 | if (len <= 0) { |
398 | return 0; | 398 | return 0; |
399 | } | 399 | } |
diff --git a/arch/sparc/kernel/systbls.S b/arch/sparc/kernel/systbls.S index 55722840859c..ee010f4532a0 100644 --- a/arch/sparc/kernel/systbls.S +++ b/arch/sparc/kernel/systbls.S | |||
@@ -79,7 +79,7 @@ sys_call_table: | |||
79 | /*295*/ .long sys_fchmodat, sys_faccessat, sys_pselect6, sys_ppoll, sys_unshare | 79 | /*295*/ .long sys_fchmodat, sys_faccessat, sys_pselect6, sys_ppoll, sys_unshare |
80 | /*300*/ .long sys_set_robust_list, sys_get_robust_list, sys_migrate_pages, sys_mbind, sys_get_mempolicy | 80 | /*300*/ .long sys_set_robust_list, sys_get_robust_list, sys_migrate_pages, sys_mbind, sys_get_mempolicy |
81 | /*305*/ .long sys_set_mempolicy, sys_kexec_load, sys_move_pages, sys_getcpu, sys_epoll_pwait | 81 | /*305*/ .long sys_set_mempolicy, sys_kexec_load, sys_move_pages, sys_getcpu, sys_epoll_pwait |
82 | /*310*/ .long sys_utimensat, sys_signalfd, sys_timerfd, sys_eventfd, sys_fallocate | 82 | /*310*/ .long sys_utimensat, sys_signalfd, sys_ni_syscall, sys_eventfd, sys_fallocate |
83 | 83 | ||
84 | #ifdef CONFIG_SUNOS_EMUL | 84 | #ifdef CONFIG_SUNOS_EMUL |
85 | /* Now the SunOS syscall table. */ | 85 | /* Now the SunOS syscall table. */ |
diff --git a/arch/sparc/lib/rwsem.S b/arch/sparc/lib/rwsem.S index 20657744c864..f406b1f22791 100644 --- a/arch/sparc/lib/rwsem.S +++ b/arch/sparc/lib/rwsem.S | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <asm/ptrace.h> | 7 | #include <asm/ptrace.h> |
8 | #include <asm/psr.h> | 8 | #include <asm/psr.h> |
9 | 9 | ||
10 | .section .sched.text | 10 | .section .sched.text, "ax" |
11 | .align 4 | 11 | .align 4 |
12 | 12 | ||
13 | .globl ___down_read | 13 | .globl ___down_read |
diff --git a/arch/sparc64/Kconfig b/arch/sparc64/Kconfig index 26f5791baa33..a8c6366f05a1 100644 --- a/arch/sparc64/Kconfig +++ b/arch/sparc64/Kconfig | |||
@@ -8,6 +8,8 @@ mainmenu "Linux/UltraSPARC Kernel Configuration" | |||
8 | config SPARC | 8 | config SPARC |
9 | bool | 9 | bool |
10 | default y | 10 | default y |
11 | select HAVE_OPROFILE | ||
12 | select HAVE_KPROBES | ||
11 | 13 | ||
12 | config SPARC64 | 14 | config SPARC64 |
13 | bool | 15 | bool |
@@ -66,7 +68,7 @@ config AUDIT_ARCH | |||
66 | bool | 68 | bool |
67 | default y | 69 | default y |
68 | 70 | ||
69 | config ARCH_SETS_UP_PER_CPU_AREA | 71 | config HAVE_SETUP_PER_CPU_AREA |
70 | def_bool y | 72 | def_bool y |
71 | 73 | ||
72 | config ARCH_NO_VIRT_TO_BUS | 74 | config ARCH_NO_VIRT_TO_BUS |
@@ -166,9 +168,8 @@ config SMP | |||
166 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power | 168 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power |
167 | Management" code will be disabled if you say Y here. | 169 | Management" code will be disabled if you say Y here. |
168 | 170 | ||
169 | See also the <file:Documentation/smp.txt>, | 171 | See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO |
170 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at | 172 | available at <http://www.tldp.org/docs.html#howto>. |
171 | <http://www.tldp.org/docs.html#howto>. | ||
172 | 173 | ||
173 | If you don't know what to do here, say N. | 174 | If you don't know what to do here, say N. |
174 | 175 | ||
@@ -351,11 +352,6 @@ config PCI | |||
351 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 352 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
352 | VESA. If you have PCI, say Y, otherwise N. | 353 | VESA. If you have PCI, say Y, otherwise N. |
353 | 354 | ||
354 | The PCI-HOWTO, available from | ||
355 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
356 | information about which PCI hardware does work under Linux and which | ||
357 | doesn't. | ||
358 | |||
359 | config PCI_DOMAINS | 355 | config PCI_DOMAINS |
360 | def_bool PCI | 356 | def_bool PCI |
361 | 357 | ||
@@ -470,8 +466,6 @@ source "drivers/sbus/char/Kconfig" | |||
470 | 466 | ||
471 | source "fs/Kconfig" | 467 | source "fs/Kconfig" |
472 | 468 | ||
473 | source "kernel/Kconfig.instrumentation" | ||
474 | |||
475 | source "arch/sparc64/Kconfig.debug" | 469 | source "arch/sparc64/Kconfig.debug" |
476 | 470 | ||
477 | source "security/Kconfig" | 471 | source "security/Kconfig" |
diff --git a/arch/sparc64/kernel/iommu.c b/arch/sparc64/kernel/iommu.c index 070a4846c0cb..4b9115a4d92e 100644 --- a/arch/sparc64/kernel/iommu.c +++ b/arch/sparc64/kernel/iommu.c | |||
@@ -580,7 +580,7 @@ static int dma_4u_map_sg(struct device *dev, struct scatterlist *sglist, | |||
580 | 580 | ||
581 | /* Step 1: Prepare scatter list. */ | 581 | /* Step 1: Prepare scatter list. */ |
582 | 582 | ||
583 | npages = prepare_sg(sglist, nelems); | 583 | npages = prepare_sg(dev, sglist, nelems); |
584 | 584 | ||
585 | /* Step 2: Allocate a cluster and context, if necessary. */ | 585 | /* Step 2: Allocate a cluster and context, if necessary. */ |
586 | 586 | ||
diff --git a/arch/sparc64/kernel/iommu_common.c b/arch/sparc64/kernel/iommu_common.c index efd5dff85f60..72a4acfe8c7b 100644 --- a/arch/sparc64/kernel/iommu_common.c +++ b/arch/sparc64/kernel/iommu_common.c | |||
@@ -4,6 +4,7 @@ | |||
4 | * Copyright (C) 1999 David S. Miller (davem@redhat.com) | 4 | * Copyright (C) 1999 David S. Miller (davem@redhat.com) |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <linux/dma-mapping.h> | ||
7 | #include "iommu_common.h" | 8 | #include "iommu_common.h" |
8 | 9 | ||
9 | /* You are _strongly_ advised to enable the following debugging code | 10 | /* You are _strongly_ advised to enable the following debugging code |
@@ -201,21 +202,24 @@ void verify_sglist(struct scatterlist *sglist, int nents, iopte_t *iopte, int np | |||
201 | } | 202 | } |
202 | #endif | 203 | #endif |
203 | 204 | ||
204 | unsigned long prepare_sg(struct scatterlist *sg, int nents) | 205 | unsigned long prepare_sg(struct device *dev, struct scatterlist *sg, int nents) |
205 | { | 206 | { |
206 | struct scatterlist *dma_sg = sg; | 207 | struct scatterlist *dma_sg = sg; |
207 | unsigned long prev; | 208 | unsigned long prev; |
208 | u32 dent_addr, dent_len; | 209 | u32 dent_addr, dent_len; |
210 | unsigned int max_seg_size; | ||
209 | 211 | ||
210 | prev = (unsigned long) sg_virt(sg); | 212 | prev = (unsigned long) sg_virt(sg); |
211 | prev += (unsigned long) (dent_len = sg->length); | 213 | prev += (unsigned long) (dent_len = sg->length); |
212 | dent_addr = (u32) ((unsigned long)(sg_virt(sg)) & (IO_PAGE_SIZE - 1UL)); | 214 | dent_addr = (u32) ((unsigned long)(sg_virt(sg)) & (IO_PAGE_SIZE - 1UL)); |
215 | max_seg_size = dma_get_max_seg_size(dev); | ||
213 | while (--nents) { | 216 | while (--nents) { |
214 | unsigned long addr; | 217 | unsigned long addr; |
215 | 218 | ||
216 | sg = sg_next(sg); | 219 | sg = sg_next(sg); |
217 | addr = (unsigned long) sg_virt(sg); | 220 | addr = (unsigned long) sg_virt(sg); |
218 | if (! VCONTIG(prev, addr)) { | 221 | if (! VCONTIG(prev, addr) || |
222 | dent_len + sg->length > max_seg_size) { | ||
219 | dma_sg->dma_address = dent_addr; | 223 | dma_sg->dma_address = dent_addr; |
220 | dma_sg->dma_length = dent_len; | 224 | dma_sg->dma_length = dent_len; |
221 | dma_sg = sg_next(dma_sg); | 225 | dma_sg = sg_next(dma_sg); |
diff --git a/arch/sparc64/kernel/iommu_common.h b/arch/sparc64/kernel/iommu_common.h index 75b5a5814522..a90d046e8024 100644 --- a/arch/sparc64/kernel/iommu_common.h +++ b/arch/sparc64/kernel/iommu_common.h | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/sched.h> | 9 | #include <linux/sched.h> |
10 | #include <linux/mm.h> | 10 | #include <linux/mm.h> |
11 | #include <linux/scatterlist.h> | 11 | #include <linux/scatterlist.h> |
12 | #include <linux/device.h> | ||
12 | 13 | ||
13 | #include <asm/iommu.h> | 14 | #include <asm/iommu.h> |
14 | #include <asm/scatterlist.h> | 15 | #include <asm/scatterlist.h> |
@@ -46,4 +47,4 @@ extern void verify_sglist(struct scatterlist *sg, int nents, iopte_t *iopte, int | |||
46 | #define VCONTIG(__X, __Y) (((__X) == (__Y)) || \ | 47 | #define VCONTIG(__X, __Y) (((__X) == (__Y)) || \ |
47 | (((__X) | (__Y)) << (64UL - PAGE_SHIFT)) == 0UL) | 48 | (((__X) | (__Y)) << (64UL - PAGE_SHIFT)) == 0UL) |
48 | 49 | ||
49 | extern unsigned long prepare_sg(struct scatterlist *sg, int nents); | 50 | extern unsigned long prepare_sg(struct device *dev, struct scatterlist *sg, int nents); |
diff --git a/arch/sparc64/kernel/pci_sun4v.c b/arch/sparc64/kernel/pci_sun4v.c index 1aa8e044b105..5ea2eab1ccda 100644 --- a/arch/sparc64/kernel/pci_sun4v.c +++ b/arch/sparc64/kernel/pci_sun4v.c | |||
@@ -490,7 +490,7 @@ static int dma_4v_map_sg(struct device *dev, struct scatterlist *sglist, | |||
490 | goto bad; | 490 | goto bad; |
491 | 491 | ||
492 | /* Step 1: Prepare scatter list. */ | 492 | /* Step 1: Prepare scatter list. */ |
493 | npages = prepare_sg(sglist, nelems); | 493 | npages = prepare_sg(dev, sglist, nelems); |
494 | 494 | ||
495 | /* Step 2: Allocate a cluster and context, if necessary. */ | 495 | /* Step 2: Allocate a cluster and context, if necessary. */ |
496 | spin_lock_irqsave(&iommu->lock, flags); | 496 | spin_lock_irqsave(&iommu->lock, flags); |
@@ -625,8 +625,8 @@ static void __init pci_sun4v_scan_bus(struct pci_pbm_info *pbm) | |||
625 | /* XXX register error interrupt handlers XXX */ | 625 | /* XXX register error interrupt handlers XXX */ |
626 | } | 626 | } |
627 | 627 | ||
628 | static unsigned long probe_existing_entries(struct pci_pbm_info *pbm, | 628 | static unsigned long __init probe_existing_entries(struct pci_pbm_info *pbm, |
629 | struct iommu *iommu) | 629 | struct iommu *iommu) |
630 | { | 630 | { |
631 | struct iommu_arena *arena = &iommu->arena; | 631 | struct iommu_arena *arena = &iommu->arena; |
632 | unsigned long i, cnt = 0; | 632 | unsigned long i, cnt = 0; |
@@ -653,7 +653,7 @@ static unsigned long probe_existing_entries(struct pci_pbm_info *pbm, | |||
653 | return cnt; | 653 | return cnt; |
654 | } | 654 | } |
655 | 655 | ||
656 | static void pci_sun4v_iommu_init(struct pci_pbm_info *pbm) | 656 | static void __init pci_sun4v_iommu_init(struct pci_pbm_info *pbm) |
657 | { | 657 | { |
658 | struct iommu *iommu = pbm->iommu; | 658 | struct iommu *iommu = pbm->iommu; |
659 | struct property *prop; | 659 | struct property *prop; |
diff --git a/arch/sparc64/kernel/systbls.S b/arch/sparc64/kernel/systbls.S index 06d10907d8ce..b8058906e727 100644 --- a/arch/sparc64/kernel/systbls.S +++ b/arch/sparc64/kernel/systbls.S | |||
@@ -80,7 +80,7 @@ sys_call_table32: | |||
80 | .word sys_fchmodat, sys_faccessat, compat_sys_pselect6, compat_sys_ppoll, sys_unshare | 80 | .word sys_fchmodat, sys_faccessat, compat_sys_pselect6, compat_sys_ppoll, sys_unshare |
81 | /*300*/ .word compat_sys_set_robust_list, compat_sys_get_robust_list, compat_sys_migrate_pages, compat_sys_mbind, compat_sys_get_mempolicy | 81 | /*300*/ .word compat_sys_set_robust_list, compat_sys_get_robust_list, compat_sys_migrate_pages, compat_sys_mbind, compat_sys_get_mempolicy |
82 | .word compat_sys_set_mempolicy, compat_sys_kexec_load, compat_sys_move_pages, sys_getcpu, compat_sys_epoll_pwait | 82 | .word compat_sys_set_mempolicy, compat_sys_kexec_load, compat_sys_move_pages, sys_getcpu, compat_sys_epoll_pwait |
83 | /*310*/ .word compat_sys_utimensat, compat_sys_signalfd, compat_sys_timerfd, sys_eventfd, compat_sys_fallocate | 83 | /*310*/ .word compat_sys_utimensat, compat_sys_signalfd, sys_ni_syscall, sys_eventfd, compat_sys_fallocate |
84 | 84 | ||
85 | #endif /* CONFIG_COMPAT */ | 85 | #endif /* CONFIG_COMPAT */ |
86 | 86 | ||
@@ -152,7 +152,7 @@ sys_call_table: | |||
152 | .word sys_fchmodat, sys_faccessat, sys_pselect6, sys_ppoll, sys_unshare | 152 | .word sys_fchmodat, sys_faccessat, sys_pselect6, sys_ppoll, sys_unshare |
153 | /*300*/ .word sys_set_robust_list, sys_get_robust_list, sys_migrate_pages, sys_mbind, sys_get_mempolicy | 153 | /*300*/ .word sys_set_robust_list, sys_get_robust_list, sys_migrate_pages, sys_mbind, sys_get_mempolicy |
154 | .word sys_set_mempolicy, sys_kexec_load, sys_move_pages, sys_getcpu, sys_epoll_pwait | 154 | .word sys_set_mempolicy, sys_kexec_load, sys_move_pages, sys_getcpu, sys_epoll_pwait |
155 | /*310*/ .word sys_utimensat, sys_signalfd, sys_timerfd, sys_eventfd, sys_fallocate | 155 | /*310*/ .word sys_utimensat, sys_signalfd, sys_ni_syscall, sys_eventfd, sys_fallocate |
156 | 156 | ||
157 | #if defined(CONFIG_SUNOS_EMUL) || defined(CONFIG_SOLARIS_EMUL) || \ | 157 | #if defined(CONFIG_SUNOS_EMUL) || defined(CONFIG_SOLARIS_EMUL) || \ |
158 | defined(CONFIG_SOLARIS_EMUL_MODULE) | 158 | defined(CONFIG_SOLARIS_EMUL_MODULE) |
diff --git a/arch/sparc64/lib/GENbzero.S b/arch/sparc64/lib/GENbzero.S index f9c71d64eba1..6a4f956a2f7a 100644 --- a/arch/sparc64/lib/GENbzero.S +++ b/arch/sparc64/lib/GENbzero.S | |||
@@ -10,7 +10,7 @@ | |||
10 | .align 4; \ | 10 | .align 4; \ |
11 | 99: retl; \ | 11 | 99: retl; \ |
12 | mov %o1, %o0; \ | 12 | mov %o1, %o0; \ |
13 | .section __ex_table; \ | 13 | .section __ex_table,"a";\ |
14 | .align 4; \ | 14 | .align 4; \ |
15 | .word 98b, 99b; \ | 15 | .word 98b, 99b; \ |
16 | .text; \ | 16 | .text; \ |
diff --git a/arch/sparc64/lib/NGbzero.S b/arch/sparc64/lib/NGbzero.S index f10e4529ee37..814d5f7a45e1 100644 --- a/arch/sparc64/lib/NGbzero.S +++ b/arch/sparc64/lib/NGbzero.S | |||
@@ -10,7 +10,7 @@ | |||
10 | .align 4; \ | 10 | .align 4; \ |
11 | 99: retl; \ | 11 | 99: retl; \ |
12 | mov %o1, %o0; \ | 12 | mov %o1, %o0; \ |
13 | .section __ex_table; \ | 13 | .section __ex_table,"a";\ |
14 | .align 4; \ | 14 | .align 4; \ |
15 | .word 98b, 99b; \ | 15 | .word 98b, 99b; \ |
16 | .text; \ | 16 | .text; \ |
diff --git a/arch/sparc64/lib/rwsem.S b/arch/sparc64/lib/rwsem.S index 75f0e6b951d6..1a4cc5654de4 100644 --- a/arch/sparc64/lib/rwsem.S +++ b/arch/sparc64/lib/rwsem.S | |||
@@ -6,7 +6,7 @@ | |||
6 | 6 | ||
7 | #include <asm/rwsem-const.h> | 7 | #include <asm/rwsem-const.h> |
8 | 8 | ||
9 | .section .sched.text | 9 | .section .sched.text, "ax" |
10 | 10 | ||
11 | .globl __down_read | 11 | .globl __down_read |
12 | __down_read: | 12 | __down_read: |
diff --git a/arch/sparc64/mm/init.c b/arch/sparc64/mm/init.c index fbeb55d71e76..523e993ee90c 100644 --- a/arch/sparc64/mm/init.c +++ b/arch/sparc64/mm/init.c | |||
@@ -1328,6 +1328,11 @@ pgd_t swapper_pg_dir[2048]; | |||
1328 | static void sun4u_pgprot_init(void); | 1328 | static void sun4u_pgprot_init(void); |
1329 | static void sun4v_pgprot_init(void); | 1329 | static void sun4v_pgprot_init(void); |
1330 | 1330 | ||
1331 | /* Dummy function */ | ||
1332 | void __init setup_per_cpu_areas(void) | ||
1333 | { | ||
1334 | } | ||
1335 | |||
1331 | void __init paging_init(void) | 1336 | void __init paging_init(void) |
1332 | { | 1337 | { |
1333 | unsigned long end_pfn, pages_avail, shift, phys_base; | 1338 | unsigned long end_pfn, pages_avail, shift, phys_base; |
diff --git a/arch/um/Kconfig b/arch/um/Kconfig index dd1689b814cb..99e51d059a02 100644 --- a/arch/um/Kconfig +++ b/arch/um/Kconfig | |||
@@ -68,6 +68,10 @@ config IRQ_RELEASE_METHOD | |||
68 | bool | 68 | bool |
69 | default y | 69 | default y |
70 | 70 | ||
71 | config HZ | ||
72 | int | ||
73 | default 100 | ||
74 | |||
71 | menu "UML-specific options" | 75 | menu "UML-specific options" |
72 | 76 | ||
73 | config STATIC_LINK | 77 | config STATIC_LINK |
@@ -95,23 +99,6 @@ config LD_SCRIPT_DYN | |||
95 | default y | 99 | default y |
96 | depends on !LD_SCRIPT_STATIC | 100 | depends on !LD_SCRIPT_STATIC |
97 | 101 | ||
98 | config NET | ||
99 | bool "Networking support" | ||
100 | help | ||
101 | Unless you really know what you are doing, you should say Y here. | ||
102 | The reason is that some programs need kernel networking support even | ||
103 | when running on a stand-alone machine that isn't connected to any | ||
104 | other computer. If you are upgrading from an older kernel, you | ||
105 | should consider updating your networking tools too because changes | ||
106 | in the kernel and the tools often go hand in hand. The tools are | ||
107 | contained in the package net-tools, the location and version number | ||
108 | of which are given in <file:Documentation/Changes>. | ||
109 | |||
110 | For a general introduction to Linux networking, it is highly | ||
111 | recommended to read the NET-HOWTO, available from | ||
112 | <http://www.tldp.org/docs.html#howto>. | ||
113 | |||
114 | |||
115 | source "fs/Kconfig.binfmt" | 102 | source "fs/Kconfig.binfmt" |
116 | 103 | ||
117 | config HOSTFS | 104 | config HOSTFS |
@@ -145,7 +132,7 @@ config HPPFS | |||
145 | by removing or changing anything in /proc which gives away the | 132 | by removing or changing anything in /proc which gives away the |
146 | identity of a UML. | 133 | identity of a UML. |
147 | 134 | ||
148 | See <http://user-mode-linux.sf.net/hppfs.html> for more information. | 135 | See <http://user-mode-linux.sf.net/old/hppfs.html> for more information. |
149 | 136 | ||
150 | You only need this if you are setting up a UML honeypot. Otherwise, | 137 | You only need this if you are setting up a UML honeypot. Otherwise, |
151 | it is safe to say 'N' here. | 138 | it is safe to say 'N' here. |
@@ -189,8 +176,7 @@ config MAGIC_SYSRQ | |||
189 | config SMP | 176 | config SMP |
190 | bool "Symmetric multi-processing support (EXPERIMENTAL)" | 177 | bool "Symmetric multi-processing support (EXPERIMENTAL)" |
191 | default n | 178 | default n |
192 | #SMP_BROKEN is for x86_64. | 179 | depends on BROKEN |
193 | depends on EXPERIMENTAL && (!SMP_BROKEN || (BROKEN && SMP_BROKEN)) | ||
194 | help | 180 | help |
195 | This option enables UML SMP support. | 181 | This option enables UML SMP support. |
196 | It is NOT related to having a real SMP box. Not directly, at least. | 182 | It is NOT related to having a real SMP box. Not directly, at least. |
@@ -289,6 +275,4 @@ config INPUT | |||
289 | bool | 275 | bool |
290 | default n | 276 | default n |
291 | 277 | ||
292 | source "kernel/Kconfig.instrumentation" | ||
293 | |||
294 | source "arch/um/Kconfig.debug" | 278 | source "arch/um/Kconfig.debug" |
diff --git a/arch/um/Kconfig.char b/arch/um/Kconfig.char index 9a78d354f0b4..3a4b396d7979 100644 --- a/arch/um/Kconfig.char +++ b/arch/um/Kconfig.char | |||
@@ -18,7 +18,7 @@ config SSL | |||
18 | lines on the UML that are usually made to show up on the host as | 18 | lines on the UML that are usually made to show up on the host as |
19 | ttys or ptys. | 19 | ttys or ptys. |
20 | 20 | ||
21 | See <http://user-mode-linux.sourceforge.net/input.html> for more | 21 | See <http://user-mode-linux.sourceforge.net/old/input.html> for more |
22 | information and command line examples of how to use this facility. | 22 | information and command line examples of how to use this facility. |
23 | 23 | ||
24 | Unless you have a specific reason for disabling this, say Y. | 24 | Unless you have a specific reason for disabling this, say Y. |
diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug index 1f6462ffd3e8..8fce5e536b0f 100644 --- a/arch/um/Kconfig.debug +++ b/arch/um/Kconfig.debug | |||
@@ -4,12 +4,12 @@ source "lib/Kconfig.debug" | |||
4 | 4 | ||
5 | config GPROF | 5 | config GPROF |
6 | bool "Enable gprof support" | 6 | bool "Enable gprof support" |
7 | depends on DEBUG_INFO | 7 | depends on DEBUG_INFO && FRAME_POINTER |
8 | help | 8 | help |
9 | This allows profiling of a User-Mode Linux kernel with the gprof | 9 | This allows profiling of a User-Mode Linux kernel with the gprof |
10 | utility. | 10 | utility. |
11 | 11 | ||
12 | See <http://user-mode-linux.sourceforge.net/gprof.html> for more | 12 | See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more |
13 | details. | 13 | details. |
14 | 14 | ||
15 | If you're involved in UML kernel development and want to use gprof, | 15 | If you're involved in UML kernel development and want to use gprof, |
@@ -22,7 +22,7 @@ config GCOV | |||
22 | This option allows developers to retrieve coverage data from a UML | 22 | This option allows developers to retrieve coverage data from a UML |
23 | session. | 23 | session. |
24 | 24 | ||
25 | See <http://user-mode-linux.sourceforge.net/gprof.html> for more | 25 | See <http://user-mode-linux.sourceforge.net/old/gprof.html> for more |
26 | details. | 26 | details. |
27 | 27 | ||
28 | If you're involved in UML kernel development and want to use gcov, | 28 | If you're involved in UML kernel development and want to use gcov, |
diff --git a/arch/um/Kconfig.net b/arch/um/Kconfig.net index 66e50026ade9..9e9a4aaa703d 100644 --- a/arch/um/Kconfig.net +++ b/arch/um/Kconfig.net | |||
@@ -14,7 +14,7 @@ config UML_NET | |||
14 | 14 | ||
15 | For more information, including explanations of the networking and | 15 | For more information, including explanations of the networking and |
16 | sample configurations, see | 16 | sample configurations, see |
17 | <http://user-mode-linux.sourceforge.net/networking.html>. | 17 | <http://user-mode-linux.sourceforge.net/old/networking.html>. |
18 | 18 | ||
19 | If you'd like to be able to enable networking in the User-Mode | 19 | If you'd like to be able to enable networking in the User-Mode |
20 | linux environment, say Y; otherwise say N. Note that you must | 20 | linux environment, say Y; otherwise say N. Note that you must |
@@ -38,7 +38,7 @@ config UML_NET_ETHERTAP | |||
38 | CONFIG_NETLINK_DEV configured as Y or M. | 38 | CONFIG_NETLINK_DEV configured as Y or M. |
39 | 39 | ||
40 | For more information, see | 40 | For more information, see |
41 | <http://user-mode-linux.sourceforge.net/networking.html> That site | 41 | <http://user-mode-linux.sourceforge.net/old/networking.html> That site |
42 | has examples of the UML command line to use to enable Ethertap | 42 | has examples of the UML command line to use to enable Ethertap |
43 | networking. | 43 | networking. |
44 | 44 | ||
@@ -72,7 +72,7 @@ config UML_NET_SLIP | |||
72 | To use this, your host must support slip devices. | 72 | To use this, your host must support slip devices. |
73 | 73 | ||
74 | For more information, see | 74 | For more information, see |
75 | <http://user-mode-linux.sourceforge.net/networking.html>. That site | 75 | <http://user-mode-linux.sourceforge.net/old/networking.html>. |
76 | has examples of the UML command line to use to enable slip | 76 | has examples of the UML command line to use to enable slip |
77 | networking, and details of a few quirks with it. | 77 | networking, and details of a few quirks with it. |
78 | 78 | ||
@@ -96,7 +96,7 @@ config UML_NET_DAEMON | |||
96 | networking daemon on the host. | 96 | networking daemon on the host. |
97 | 97 | ||
98 | For more information, see | 98 | For more information, see |
99 | <http://user-mode-linux.sourceforge.net/networking.html> That site | 99 | <http://user-mode-linux.sourceforge.net/old/networking.html> That site |
100 | has examples of the UML command line to use to enable Daemon | 100 | has examples of the UML command line to use to enable Daemon |
101 | networking. | 101 | networking. |
102 | 102 | ||
@@ -144,7 +144,7 @@ config UML_NET_MCAST | |||
144 | To use this, your host kernel(s) must support IP Multicasting. | 144 | To use this, your host kernel(s) must support IP Multicasting. |
145 | 145 | ||
146 | For more information, see | 146 | For more information, see |
147 | <http://user-mode-linux.sourceforge.net/networking.html> That site | 147 | <http://user-mode-linux.sourceforge.net/old/networking.html> That site |
148 | has examples of the UML command line to use to enable Multicast | 148 | has examples of the UML command line to use to enable Multicast |
149 | networking, and notes about the security of this approach. | 149 | networking, and notes about the security of this approach. |
150 | 150 | ||
@@ -165,7 +165,7 @@ config UML_NET_PCAP | |||
165 | installed in order to build the pcap transport into UML. | 165 | installed in order to build the pcap transport into UML. |
166 | 166 | ||
167 | For more information, see | 167 | For more information, see |
168 | <http://user-mode-linux.sourceforge.net/networking.html> That site | 168 | <http://user-mode-linux.sourceforge.net/old/networking.html> That site |
169 | has examples of the UML command line to use to enable this option. | 169 | has examples of the UML command line to use to enable this option. |
170 | 170 | ||
171 | If you intend to use UML as a network monitor for the host, say | 171 | If you intend to use UML as a network monitor for the host, say |
diff --git a/arch/um/Makefile b/arch/um/Makefile index ba6813a4aa37..cb4af9bf2074 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
@@ -49,7 +49,7 @@ SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH) | |||
49 | # | 49 | # |
50 | # These apply to USER_CFLAGS to. | 50 | # These apply to USER_CFLAGS to. |
51 | 51 | ||
52 | KBUILD_CFLAGS += $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \ | 52 | KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \ |
53 | $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \ | 53 | $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \ |
54 | -Din6addr_loopback=kernel_in6addr_loopback \ | 54 | -Din6addr_loopback=kernel_in6addr_loopback \ |
55 | -Din6addr_any=kernel_in6addr_any | 55 | -Din6addr_any=kernel_in6addr_any |
@@ -58,7 +58,7 @@ KBUILD_AFLAGS += $(ARCH_INCLUDE) | |||
58 | 58 | ||
59 | USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\ | 59 | USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\ |
60 | $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \ | 60 | $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \ |
61 | -D_FILE_OFFSET_BITS=64 | 61 | $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 |
62 | 62 | ||
63 | include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH) | 63 | include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH) |
64 | 64 | ||
@@ -130,7 +130,9 @@ CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \ | |||
130 | # The wrappers will select whether using "malloc" or the kernel allocator. | 130 | # The wrappers will select whether using "malloc" or the kernel allocator. |
131 | LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc | 131 | LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc |
132 | 132 | ||
133 | CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) | 133 | LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt)) |
134 | |||
135 | CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE) | ||
134 | define cmd_vmlinux__ | 136 | define cmd_vmlinux__ |
135 | $(CC) $(CFLAGS_vmlinux) -o $@ \ | 137 | $(CC) $(CFLAGS_vmlinux) -o $@ \ |
136 | -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \ | 138 | -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \ |
@@ -158,7 +160,7 @@ ifneq ($(KBUILD_SRC),) | |||
158 | $(Q)mkdir -p $(objtree)/include/asm-um | 160 | $(Q)mkdir -p $(objtree)/include/asm-um |
159 | $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ | 161 | $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@ |
160 | else | 162 | else |
161 | $(Q)cd $(TOPDIR)/$(dir $@) ; \ | 163 | $(Q)cd $(srctree)/$(dir $@) ; \ |
162 | ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) | 164 | ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@) |
163 | endif | 165 | endif |
164 | 166 | ||
@@ -168,7 +170,7 @@ ifneq ($(KBUILD_SRC),) | |||
168 | $(Q)mkdir -p $(objtree)/include/asm-um | 170 | $(Q)mkdir -p $(objtree)/include/asm-um |
169 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch | 171 | $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch |
170 | else | 172 | else |
171 | $(Q)cd $(TOPDIR)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch | 173 | $(Q)cd $(srctree)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch |
172 | endif | 174 | endif |
173 | 175 | ||
174 | $(objtree)/$(ARCH_DIR)/include: | 176 | $(objtree)/$(ARCH_DIR)/include: |
diff --git a/arch/um/Makefile-tt b/arch/um/Makefile-tt deleted file mode 100644 index 03f7b10cfd0b..000000000000 --- a/arch/um/Makefile-tt +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | # | ||
2 | # Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | ||
3 | # Licensed under the GPL | ||
4 | # | ||
5 | |||
diff --git a/arch/um/defconfig b/arch/um/defconfig index f609edede065..86db2862f222 100644 --- a/arch/um/defconfig +++ b/arch/um/defconfig | |||
@@ -77,7 +77,7 @@ CONFIG_LD_SCRIPT_DYN=y | |||
77 | CONFIG_NET=y | 77 | CONFIG_NET=y |
78 | CONFIG_BINFMT_ELF=y | 78 | CONFIG_BINFMT_ELF=y |
79 | CONFIG_BINFMT_MISC=m | 79 | CONFIG_BINFMT_MISC=m |
80 | # CONFIG_HOSTFS is not set | 80 | CONFIG_HOSTFS=y |
81 | # CONFIG_HPPFS is not set | 81 | # CONFIG_HPPFS is not set |
82 | CONFIG_MCONSOLE=y | 82 | CONFIG_MCONSOLE=y |
83 | CONFIG_MAGIC_SYSRQ=y | 83 | CONFIG_MAGIC_SYSRQ=y |
@@ -188,7 +188,7 @@ CONFIG_CON_CHAN="xterm" | |||
188 | CONFIG_SSL_CHAN="pts" | 188 | CONFIG_SSL_CHAN="pts" |
189 | CONFIG_UNIX98_PTYS=y | 189 | CONFIG_UNIX98_PTYS=y |
190 | CONFIG_LEGACY_PTYS=y | 190 | CONFIG_LEGACY_PTYS=y |
191 | CONFIG_LEGACY_PTY_COUNT=256 | 191 | CONFIG_LEGACY_PTY_COUNT=32 |
192 | # CONFIG_WATCHDOG is not set | 192 | # CONFIG_WATCHDOG is not set |
193 | CONFIG_UML_SOUND=m | 193 | CONFIG_UML_SOUND=m |
194 | CONFIG_SOUND=m | 194 | CONFIG_SOUND=m |
@@ -508,7 +508,7 @@ CONFIG_DEBUG_KERNEL=y | |||
508 | CONFIG_LOG_BUF_SHIFT=14 | 508 | CONFIG_LOG_BUF_SHIFT=14 |
509 | CONFIG_DETECT_SOFTLOCKUP=y | 509 | CONFIG_DETECT_SOFTLOCKUP=y |
510 | # CONFIG_SCHEDSTATS is not set | 510 | # CONFIG_SCHEDSTATS is not set |
511 | CONFIG_DEBUG_SLAB=y | 511 | # CONFIG_DEBUG_SLAB is not set |
512 | # CONFIG_DEBUG_SLAB_LEAK is not set | 512 | # CONFIG_DEBUG_SLAB_LEAK is not set |
513 | # CONFIG_DEBUG_MUTEXES is not set | 513 | # CONFIG_DEBUG_MUTEXES is not set |
514 | # CONFIG_DEBUG_SPINLOCK is not set | 514 | # CONFIG_DEBUG_SPINLOCK is not set |
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index 83bf15a3dda8..2c898c4d6b6a 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c | |||
@@ -8,6 +8,7 @@ | |||
8 | #include "chan_kern.h" | 8 | #include "chan_kern.h" |
9 | #include "irq_kern.h" | 9 | #include "irq_kern.h" |
10 | #include "irq_user.h" | 10 | #include "irq_user.h" |
11 | #include "kern_util.h" | ||
11 | #include "os.h" | 12 | #include "os.h" |
12 | 13 | ||
13 | #define LINE_BUFSIZE 4096 | 14 | #define LINE_BUFSIZE 4096 |
@@ -48,7 +49,7 @@ static int write_room(struct line *line) | |||
48 | n = line->head - line->tail; | 49 | n = line->head - line->tail; |
49 | 50 | ||
50 | if (n <= 0) | 51 | if (n <= 0) |
51 | n = LINE_BUFSIZE + n; /* The other case */ | 52 | n += LINE_BUFSIZE; /* The other case */ |
52 | return n - 1; | 53 | return n - 1; |
53 | } | 54 | } |
54 | 55 | ||
@@ -58,17 +59,10 @@ int line_write_room(struct tty_struct *tty) | |||
58 | unsigned long flags; | 59 | unsigned long flags; |
59 | int room; | 60 | int room; |
60 | 61 | ||
61 | if (tty->stopped) | ||
62 | return 0; | ||
63 | |||
64 | spin_lock_irqsave(&line->lock, flags); | 62 | spin_lock_irqsave(&line->lock, flags); |
65 | room = write_room(line); | 63 | room = write_room(line); |
66 | spin_unlock_irqrestore(&line->lock, flags); | 64 | spin_unlock_irqrestore(&line->lock, flags); |
67 | 65 | ||
68 | /*XXX: Warning to remove */ | ||
69 | if (0 == room) | ||
70 | printk(KERN_DEBUG "%s: %s: no room left in buffer\n", | ||
71 | __FUNCTION__,tty->name); | ||
72 | return room; | 66 | return room; |
73 | } | 67 | } |
74 | 68 | ||
@@ -79,8 +73,7 @@ int line_chars_in_buffer(struct tty_struct *tty) | |||
79 | int ret; | 73 | int ret; |
80 | 74 | ||
81 | spin_lock_irqsave(&line->lock, flags); | 75 | spin_lock_irqsave(&line->lock, flags); |
82 | 76 | /* write_room subtracts 1 for the needed NULL, so we readd it.*/ | |
83 | /*write_room subtracts 1 for the needed NULL, so we readd it.*/ | ||
84 | ret = LINE_BUFSIZE - (write_room(line) + 1); | 77 | ret = LINE_BUFSIZE - (write_room(line) + 1); |
85 | spin_unlock_irqrestore(&line->lock, flags); | 78 | spin_unlock_irqrestore(&line->lock, flags); |
86 | 79 | ||
@@ -184,10 +177,6 @@ void line_flush_buffer(struct tty_struct *tty) | |||
184 | unsigned long flags; | 177 | unsigned long flags; |
185 | int err; | 178 | int err; |
186 | 179 | ||
187 | /*XXX: copied from line_write, verify if it is correct!*/ | ||
188 | if (tty->stopped) | ||
189 | return; | ||
190 | |||
191 | spin_lock_irqsave(&line->lock, flags); | 180 | spin_lock_irqsave(&line->lock, flags); |
192 | err = flush_buffer(line); | 181 | err = flush_buffer(line); |
193 | spin_unlock_irqrestore(&line->lock, flags); | 182 | spin_unlock_irqrestore(&line->lock, flags); |
@@ -213,9 +202,6 @@ int line_write(struct tty_struct *tty, const unsigned char *buf, int len) | |||
213 | unsigned long flags; | 202 | unsigned long flags; |
214 | int n, ret = 0; | 203 | int n, ret = 0; |
215 | 204 | ||
216 | if (tty->stopped) | ||
217 | return 0; | ||
218 | |||
219 | spin_lock_irqsave(&line->lock, flags); | 205 | spin_lock_irqsave(&line->lock, flags); |
220 | if (line->head != line->tail) | 206 | if (line->head != line->tail) |
221 | ret = buffer_data(line, buf, len); | 207 | ret = buffer_data(line, buf, len); |
@@ -788,9 +774,11 @@ static irqreturn_t winch_interrupt(int irq, void *data) | |||
788 | tty = winch->tty; | 774 | tty = winch->tty; |
789 | if (tty != NULL) { | 775 | if (tty != NULL) { |
790 | line = tty->driver_data; | 776 | line = tty->driver_data; |
791 | chan_window_size(&line->chan_list, &tty->winsize.ws_row, | 777 | if (line != NULL) { |
792 | &tty->winsize.ws_col); | 778 | chan_window_size(&line->chan_list, &tty->winsize.ws_row, |
793 | kill_pgrp(tty->pgrp, SIGWINCH, 1); | 779 | &tty->winsize.ws_col); |
780 | kill_pgrp(tty->pgrp, SIGWINCH, 1); | ||
781 | } | ||
794 | } | 782 | } |
795 | out: | 783 | out: |
796 | if (winch->fd != -1) | 784 | if (winch->fd != -1) |
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index 0f3c7d14a6e3..ebb265c07e4d 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c | |||
@@ -1,23 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) | 2 | * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) |
3 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 3 | * Copyright (C) 2001 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
4 | * Licensed under the GPL | 4 | * Licensed under the GPL |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "linux/console.h" | 7 | #include <linux/console.h> |
8 | #include "linux/ctype.h" | 8 | #include <linux/ctype.h> |
9 | #include "linux/interrupt.h" | 9 | #include <linux/interrupt.h> |
10 | #include "linux/list.h" | 10 | #include <linux/list.h> |
11 | #include "linux/mm.h" | 11 | #include <linux/mm.h> |
12 | #include "linux/module.h" | 12 | #include <linux/module.h> |
13 | #include "linux/notifier.h" | 13 | #include <linux/notifier.h> |
14 | #include "linux/reboot.h" | 14 | #include <linux/reboot.h> |
15 | #include "linux/proc_fs.h" | 15 | #include <linux/proc_fs.h> |
16 | #include "linux/slab.h" | 16 | #include <linux/slab.h> |
17 | #include "linux/syscalls.h" | 17 | #include <linux/syscalls.h> |
18 | #include "linux/utsname.h" | 18 | #include <linux/utsname.h> |
19 | #include "linux/workqueue.h" | 19 | #include <linux/workqueue.h> |
20 | #include "asm/uaccess.h" | 20 | #include <linux/mutex.h> |
21 | #include <asm/uaccess.h> | ||
22 | |||
21 | #include "init.h" | 23 | #include "init.h" |
22 | #include "irq_kern.h" | 24 | #include "irq_kern.h" |
23 | #include "irq_user.h" | 25 | #include "irq_user.h" |
@@ -305,7 +307,9 @@ void mconsole_stop(struct mc_request *req) | |||
305 | deactivate_fd(req->originating_fd, MCONSOLE_IRQ); | 307 | deactivate_fd(req->originating_fd, MCONSOLE_IRQ); |
306 | os_set_fd_block(req->originating_fd, 1); | 308 | os_set_fd_block(req->originating_fd, 1); |
307 | mconsole_reply(req, "stopped", 0, 0); | 309 | mconsole_reply(req, "stopped", 0, 0); |
308 | while (mconsole_get_request(req->originating_fd, req)) { | 310 | for (;;) { |
311 | if (!mconsole_get_request(req->originating_fd, req)) | ||
312 | continue; | ||
309 | if (req->cmd->handler == mconsole_go) | 313 | if (req->cmd->handler == mconsole_go) |
310 | break; | 314 | break; |
311 | if (req->cmd->handler == mconsole_stop) { | 315 | if (req->cmd->handler == mconsole_stop) { |
@@ -358,7 +362,7 @@ struct unplugged_pages { | |||
358 | void *pages[UNPLUGGED_PER_PAGE]; | 362 | void *pages[UNPLUGGED_PER_PAGE]; |
359 | }; | 363 | }; |
360 | 364 | ||
361 | static DECLARE_MUTEX(plug_mem_mutex); | 365 | static DEFINE_MUTEX(plug_mem_mutex); |
362 | static unsigned long long unplugged_pages_count = 0; | 366 | static unsigned long long unplugged_pages_count = 0; |
363 | static LIST_HEAD(unplugged_pages); | 367 | static LIST_HEAD(unplugged_pages); |
364 | static int unplug_index = UNPLUGGED_PER_PAGE; | 368 | static int unplug_index = UNPLUGGED_PER_PAGE; |
@@ -394,7 +398,7 @@ static int mem_config(char *str, char **error_out) | |||
394 | 398 | ||
395 | diff /= PAGE_SIZE; | 399 | diff /= PAGE_SIZE; |
396 | 400 | ||
397 | down(&plug_mem_mutex); | 401 | mutex_lock(&plug_mem_mutex); |
398 | for (i = 0; i < diff; i++) { | 402 | for (i = 0; i < diff; i++) { |
399 | struct unplugged_pages *unplugged; | 403 | struct unplugged_pages *unplugged; |
400 | void *addr; | 404 | void *addr; |
@@ -451,7 +455,7 @@ static int mem_config(char *str, char **error_out) | |||
451 | 455 | ||
452 | err = 0; | 456 | err = 0; |
453 | out_unlock: | 457 | out_unlock: |
454 | up(&plug_mem_mutex); | 458 | mutex_unlock(&plug_mem_mutex); |
455 | out: | 459 | out: |
456 | return err; | 460 | return err; |
457 | } | 461 | } |
@@ -741,7 +745,6 @@ void mconsole_stack(struct mc_request *req) | |||
741 | { | 745 | { |
742 | char *ptr = req->request.data; | 746 | char *ptr = req->request.data; |
743 | int pid_requested= -1; | 747 | int pid_requested= -1; |
744 | struct task_struct *from = NULL; | ||
745 | struct task_struct *to = NULL; | 748 | struct task_struct *to = NULL; |
746 | 749 | ||
747 | /* | 750 | /* |
@@ -763,9 +766,7 @@ void mconsole_stack(struct mc_request *req) | |||
763 | return; | 766 | return; |
764 | } | 767 | } |
765 | 768 | ||
766 | from = current; | 769 | to = find_task_by_pid_ns(pid_requested, &init_pid_ns); |
767 | |||
768 | to = find_task_by_pid(pid_requested); | ||
769 | if ((to == NULL) || (pid_requested == 0)) { | 770 | if ((to == NULL) || (pid_requested == 0)) { |
770 | mconsole_reply(req, "Couldn't find that pid", 1, 0); | 771 | mconsole_reply(req, "Couldn't find that pid", 1, 0); |
771 | return; | 772 | return; |
@@ -795,6 +796,8 @@ static int __init mconsole_init(void) | |||
795 | printk(KERN_ERR "Failed to initialize management console\n"); | 796 | printk(KERN_ERR "Failed to initialize management console\n"); |
796 | return 1; | 797 | return 1; |
797 | } | 798 | } |
799 | if (os_set_fd_block(sock, 0)) | ||
800 | goto out; | ||
798 | 801 | ||
799 | register_reboot_notifier(&reboot_notifier); | 802 | register_reboot_notifier(&reboot_notifier); |
800 | 803 | ||
@@ -803,7 +806,7 @@ static int __init mconsole_init(void) | |||
803 | "mconsole", (void *)sock); | 806 | "mconsole", (void *)sock); |
804 | if (err) { | 807 | if (err) { |
805 | printk(KERN_ERR "Failed to get IRQ for management console\n"); | 808 | printk(KERN_ERR "Failed to get IRQ for management console\n"); |
806 | return 1; | 809 | goto out; |
807 | } | 810 | } |
808 | 811 | ||
809 | if (notify_socket != NULL) { | 812 | if (notify_socket != NULL) { |
@@ -819,6 +822,10 @@ static int __init mconsole_init(void) | |||
819 | printk(KERN_INFO "mconsole (version %d) initialized on %s\n", | 822 | printk(KERN_INFO "mconsole (version %d) initialized on %s\n", |
820 | MCONSOLE_VERSION, mconsole_socket_name); | 823 | MCONSOLE_VERSION, mconsole_socket_name); |
821 | return 0; | 824 | return 0; |
825 | |||
826 | out: | ||
827 | os_close_file(sock); | ||
828 | return 1; | ||
822 | } | 829 | } |
823 | 830 | ||
824 | __initcall(mconsole_init); | 831 | __initcall(mconsole_init); |
diff --git a/arch/um/drivers/mconsole_user.c b/arch/um/drivers/mconsole_user.c index 430c024a19b0..13af2f03ed84 100644 --- a/arch/um/drivers/mconsole_user.c +++ b/arch/um/drivers/mconsole_user.c | |||
@@ -83,9 +83,8 @@ int mconsole_get_request(int fd, struct mc_request *req) | |||
83 | int len; | 83 | int len; |
84 | 84 | ||
85 | req->originlen = sizeof(req->origin); | 85 | req->originlen = sizeof(req->origin); |
86 | req->len = recvfrom(fd, &req->request, sizeof(req->request), | 86 | req->len = recvfrom(fd, &req->request, sizeof(req->request), 0, |
87 | MSG_DONTWAIT, (struct sockaddr *) req->origin, | 87 | (struct sockaddr *) req->origin, &req->originlen); |
88 | &req->originlen); | ||
89 | if (req->len < 0) | 88 | if (req->len < 0) |
90 | return 0; | 89 | return 0; |
91 | 90 | ||
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c index 3c6c44ca1ffa..1e8f41a99511 100644 --- a/arch/um/drivers/net_kern.c +++ b/arch/um/drivers/net_kern.c | |||
@@ -318,7 +318,7 @@ static void setup_etheraddr(char *str, unsigned char *addr, char *name) | |||
318 | if (str == NULL) | 318 | if (str == NULL) |
319 | goto random; | 319 | goto random; |
320 | 320 | ||
321 | for (i = 0;i < 6; i++) { | 321 | for (i = 0; i < 6; i++) { |
322 | addr[i] = simple_strtoul(str, &end, 16); | 322 | addr[i] = simple_strtoul(str, &end, 16); |
323 | if ((end == str) || | 323 | if ((end == str) || |
324 | ((*end != ':') && (*end != ',') && (*end != '\0'))) { | 324 | ((*end != ':') && (*end != ',') && (*end != '\0'))) { |
@@ -343,14 +343,13 @@ static void setup_etheraddr(char *str, unsigned char *addr, char *name) | |||
343 | } | 343 | } |
344 | if (!is_local_ether_addr(addr)) { | 344 | if (!is_local_ether_addr(addr)) { |
345 | printk(KERN_WARNING | 345 | printk(KERN_WARNING |
346 | "Warning: attempt to assign a globally valid ethernet " | 346 | "Warning: Assigning a globally valid ethernet " |
347 | "address to a device\n"); | 347 | "address to a device\n"); |
348 | printk(KERN_WARNING "You should better enable the 2nd " | 348 | printk(KERN_WARNING "You should set the 2nd rightmost bit in " |
349 | "rightmost bit in the first byte of the MAC,\n"); | 349 | "the first byte of the MAC,\n"); |
350 | printk(KERN_WARNING "i.e. %02x:%02x:%02x:%02x:%02x:%02x\n", | 350 | printk(KERN_WARNING "i.e. %02x:%02x:%02x:%02x:%02x:%02x\n", |
351 | addr[0] | 0x02, addr[1], addr[2], addr[3], addr[4], | 351 | addr[0] | 0x02, addr[1], addr[2], addr[3], addr[4], |
352 | addr[5]); | 352 | addr[5]); |
353 | goto random; | ||
354 | } | 353 | } |
355 | return; | 354 | return; |
356 | 355 | ||
@@ -368,7 +367,6 @@ static struct platform_driver uml_net_driver = { | |||
368 | .name = DRIVER_NAME, | 367 | .name = DRIVER_NAME, |
369 | }, | 368 | }, |
370 | }; | 369 | }; |
371 | static int driver_registered; | ||
372 | 370 | ||
373 | static void net_device_release(struct device *dev) | 371 | static void net_device_release(struct device *dev) |
374 | { | 372 | { |
@@ -383,6 +381,12 @@ static void net_device_release(struct device *dev) | |||
383 | free_netdev(netdev); | 381 | free_netdev(netdev); |
384 | } | 382 | } |
385 | 383 | ||
384 | /* | ||
385 | * Ensures that platform_driver_register is called only once by | ||
386 | * eth_configure. Will be set in an initcall. | ||
387 | */ | ||
388 | static int driver_registered; | ||
389 | |||
386 | static void eth_configure(int n, void *init, char *mac, | 390 | static void eth_configure(int n, void *init, char *mac, |
387 | struct transport *transport) | 391 | struct transport *transport) |
388 | { | 392 | { |
diff --git a/arch/um/drivers/net_user.c b/arch/um/drivers/net_user.c index 29185cad9fff..abf2653f5517 100644 --- a/arch/um/drivers/net_user.c +++ b/arch/um/drivers/net_user.c | |||
@@ -201,7 +201,7 @@ static int change_tramp(char **argv, char *output, int output_len) | |||
201 | close(fds[1]); | 201 | close(fds[1]); |
202 | 202 | ||
203 | if (pid > 0) | 203 | if (pid > 0) |
204 | helper_wait(pid, 0, "change_tramp"); | 204 | helper_wait(pid); |
205 | return pid; | 205 | return pid; |
206 | } | 206 | } |
207 | 207 | ||
diff --git a/arch/um/drivers/port_kern.c b/arch/um/drivers/port_kern.c index 330543b3129b..19930081d3d8 100644 --- a/arch/um/drivers/port_kern.c +++ b/arch/um/drivers/port_kern.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include "linux/completion.h" | 6 | #include "linux/completion.h" |
7 | #include "linux/interrupt.h" | 7 | #include "linux/interrupt.h" |
8 | #include "linux/list.h" | 8 | #include "linux/list.h" |
9 | #include "linux/mutex.h" | ||
9 | #include "asm/atomic.h" | 10 | #include "asm/atomic.h" |
10 | #include "init.h" | 11 | #include "init.h" |
11 | #include "irq_kern.h" | 12 | #include "irq_kern.h" |
@@ -120,7 +121,7 @@ static int port_accept(struct port_list *port) | |||
120 | return 0; | 121 | return 0; |
121 | } | 122 | } |
122 | 123 | ||
123 | static DECLARE_MUTEX(ports_sem); | 124 | static DEFINE_MUTEX(ports_mutex); |
124 | static LIST_HEAD(ports); | 125 | static LIST_HEAD(ports); |
125 | 126 | ||
126 | static void port_work_proc(struct work_struct *unused) | 127 | static void port_work_proc(struct work_struct *unused) |
@@ -161,7 +162,7 @@ void *port_data(int port_num) | |||
161 | struct port_dev *dev = NULL; | 162 | struct port_dev *dev = NULL; |
162 | int fd; | 163 | int fd; |
163 | 164 | ||
164 | down(&ports_sem); | 165 | mutex_lock(&ports_mutex); |
165 | list_for_each(ele, &ports) { | 166 | list_for_each(ele, &ports) { |
166 | port = list_entry(ele, struct port_list, list); | 167 | port = list_entry(ele, struct port_list, list); |
167 | if (port->port == port_num) | 168 | if (port->port == port_num) |
@@ -216,7 +217,7 @@ void *port_data(int port_num) | |||
216 | out_free: | 217 | out_free: |
217 | kfree(port); | 218 | kfree(port); |
218 | out: | 219 | out: |
219 | up(&ports_sem); | 220 | mutex_unlock(&ports_mutex); |
220 | return dev; | 221 | return dev; |
221 | } | 222 | } |
222 | 223 | ||
diff --git a/arch/um/drivers/random.c b/arch/um/drivers/random.c index e942e836f995..71f0959c1535 100644 --- a/arch/um/drivers/random.c +++ b/arch/um/drivers/random.c | |||
@@ -5,6 +5,7 @@ | |||
5 | * This software may be used and distributed according to the terms | 5 | * This software may be used and distributed according to the terms |
6 | * of the GNU General Public License, incorporated herein by reference. | 6 | * of the GNU General Public License, incorporated herein by reference. |
7 | */ | 7 | */ |
8 | #include <linux/sched.h> | ||
8 | #include <linux/module.h> | 9 | #include <linux/module.h> |
9 | #include <linux/fs.h> | 10 | #include <linux/fs.h> |
10 | #include <linux/miscdevice.h> | 11 | #include <linux/miscdevice.h> |
diff --git a/arch/um/drivers/slip_user.c b/arch/um/drivers/slip_user.c index b8711e50da80..8b80505a3fb0 100644 --- a/arch/um/drivers/slip_user.c +++ b/arch/um/drivers/slip_user.c | |||
@@ -109,7 +109,7 @@ static int slip_tramp(char **argv, int fd) | |||
109 | read_output(fds[0], output, output_len); | 109 | read_output(fds[0], output, output_len); |
110 | printk("%s", output); | 110 | printk("%s", output); |
111 | 111 | ||
112 | err = helper_wait(pid, 0, argv[0]); | 112 | err = helper_wait(pid); |
113 | close(fds[0]); | 113 | close(fds[0]); |
114 | 114 | ||
115 | out_free: | 115 | out_free: |
diff --git a/arch/um/drivers/slirp_user.c b/arch/um/drivers/slirp_user.c index 89c1be225fda..a0ada8fec72a 100644 --- a/arch/um/drivers/slirp_user.c +++ b/arch/um/drivers/slirp_user.c | |||
@@ -98,7 +98,7 @@ static void slirp_close(int fd, void *data) | |||
98 | "(%d)\n", pri->pid, errno); | 98 | "(%d)\n", pri->pid, errno); |
99 | } | 99 | } |
100 | #endif | 100 | #endif |
101 | err = helper_wait(pri->pid, 1, "slirp_close"); | 101 | err = helper_wait(pri->pid); |
102 | if (err < 0) | 102 | if (err < 0) |
103 | return; | 103 | return; |
104 | 104 | ||
diff --git a/arch/um/drivers/ssl.c b/arch/um/drivers/ssl.c index 875d60d0c6a2..f1786e64607f 100644 --- a/arch/um/drivers/ssl.c +++ b/arch/um/drivers/ssl.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #include "line.h" | 15 | #include "line.h" |
16 | #include "ssl.h" | 16 | #include "ssl.h" |
17 | #include "chan_kern.h" | 17 | #include "chan_kern.h" |
18 | #include "kern_util.h" | ||
19 | #include "kern.h" | 18 | #include "kern.h" |
20 | #include "init.h" | 19 | #include "init.h" |
21 | #include "irq_user.h" | 20 | #include "irq_user.h" |
diff --git a/arch/um/drivers/stdio_console.c b/arch/um/drivers/stdio_console.c index 656036e90b19..cec0c33cdd39 100644 --- a/arch/um/drivers/stdio_console.c +++ b/arch/um/drivers/stdio_console.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include "stdio_console.h" | 22 | #include "stdio_console.h" |
23 | #include "line.h" | 23 | #include "line.h" |
24 | #include "chan_kern.h" | 24 | #include "chan_kern.h" |
25 | #include "kern_util.h" | ||
26 | #include "irq_user.h" | 25 | #include "irq_user.h" |
27 | #include "mconsole_kern.h" | 26 | #include "mconsole_kern.h" |
28 | #include "init.h" | 27 | #include "init.h" |
diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c index 99f9f9605e9c..be3a2797dac4 100644 --- a/arch/um/drivers/ubd_kern.c +++ b/arch/um/drivers/ubd_kern.c | |||
@@ -49,6 +49,7 @@ | |||
49 | #include "irq_user.h" | 49 | #include "irq_user.h" |
50 | #include "irq_kern.h" | 50 | #include "irq_kern.h" |
51 | #include "ubd_user.h" | 51 | #include "ubd_user.h" |
52 | #include "kern_util.h" | ||
52 | #include "os.h" | 53 | #include "os.h" |
53 | #include "mem.h" | 54 | #include "mem.h" |
54 | #include "mem_kern.h" | 55 | #include "mem_kern.h" |
@@ -229,7 +230,7 @@ static int proc_ide_read_media(char *page, char **start, off_t off, int count, | |||
229 | return len; | 230 | return len; |
230 | } | 231 | } |
231 | 232 | ||
232 | static void make_ide_entries(char *dev_name) | 233 | static void make_ide_entries(const char *dev_name) |
233 | { | 234 | { |
234 | struct proc_dir_entry *dir, *ent; | 235 | struct proc_dir_entry *dir, *ent; |
235 | char name[64]; | 236 | char name[64]; |
@@ -244,7 +245,7 @@ static void make_ide_entries(char *dev_name) | |||
244 | ent->data = NULL; | 245 | ent->data = NULL; |
245 | ent->read_proc = proc_ide_read_media; | 246 | ent->read_proc = proc_ide_read_media; |
246 | ent->write_proc = NULL; | 247 | ent->write_proc = NULL; |
247 | sprintf(name,"ide0/%s", dev_name); | 248 | snprintf(name, sizeof(name), "ide0/%s", dev_name); |
248 | proc_symlink(dev_name, proc_ide_root, name); | 249 | proc_symlink(dev_name, proc_ide_root, name); |
249 | } | 250 | } |
250 | 251 | ||
@@ -437,7 +438,10 @@ __uml_help(ubd_setup, | |||
437 | " machine by running 'dd' on the device. <n> must be in the range\n" | 438 | " machine by running 'dd' on the device. <n> must be in the range\n" |
438 | " 0 to 7. Appending an 'r' to the number will cause that device\n" | 439 | " 0 to 7. Appending an 'r' to the number will cause that device\n" |
439 | " to be mounted read-only. For example ubd1r=./ext_fs. Appending\n" | 440 | " to be mounted read-only. For example ubd1r=./ext_fs. Appending\n" |
440 | " an 's' will cause data to be written to disk on the host immediately.\n\n" | 441 | " an 's' will cause data to be written to disk on the host immediately.\n" |
442 | " 'c' will cause the device to be treated as being shared between multiple\n" | ||
443 | " UMLs and file locking will be turned off - this is appropriate for a\n" | ||
444 | " cluster filesystem and inappropriate at almost all other times.\n\n" | ||
441 | ); | 445 | ); |
442 | 446 | ||
443 | static int udb_setup(char *str) | 447 | static int udb_setup(char *str) |
@@ -456,20 +460,6 @@ __uml_help(udb_setup, | |||
456 | " in the boot output.\n\n" | 460 | " in the boot output.\n\n" |
457 | ); | 461 | ); |
458 | 462 | ||
459 | static int fakehd_set = 0; | ||
460 | static int fakehd(char *str) | ||
461 | { | ||
462 | printk(KERN_INFO "fakehd : Changing ubd name to \"hd\".\n"); | ||
463 | fakehd_set = 1; | ||
464 | return 1; | ||
465 | } | ||
466 | |||
467 | __setup("fakehd", fakehd); | ||
468 | __uml_help(fakehd, | ||
469 | "fakehd\n" | ||
470 | " Change the ubd device name to \"hd\".\n\n" | ||
471 | ); | ||
472 | |||
473 | static void do_ubd_request(struct request_queue * q); | 463 | static void do_ubd_request(struct request_queue * q); |
474 | 464 | ||
475 | /* Only changed by ubd_init, which is an initcall. */ | 465 | /* Only changed by ubd_init, which is an initcall. */ |
@@ -718,8 +708,10 @@ static int ubd_add(int n, char **error_out) | |||
718 | ubd_disk_register(fake_major, ubd_dev->size, n, | 708 | ubd_disk_register(fake_major, ubd_dev->size, n, |
719 | &fake_gendisk[n]); | 709 | &fake_gendisk[n]); |
720 | 710 | ||
721 | /* perhaps this should also be under the "if (fake_major)" above */ | 711 | /* |
722 | /* using the fake_disk->disk_name and also the fakehd_set name */ | 712 | * Perhaps this should also be under the "if (fake_major)" above |
713 | * using the fake_disk->disk_name | ||
714 | */ | ||
723 | if (fake_ide) | 715 | if (fake_ide) |
724 | make_ide_entries(ubd_gendisk[n]->disk_name); | 716 | make_ide_entries(ubd_gendisk[n]->disk_name); |
725 | 717 | ||
diff --git a/arch/um/drivers/ubd_user.c b/arch/um/drivers/ubd_user.c index 48fc7452bc1d..b591bb9c41dd 100644 --- a/arch/um/drivers/ubd_user.c +++ b/arch/um/drivers/ubd_user.c | |||
@@ -16,7 +16,6 @@ | |||
16 | #include <sys/mman.h> | 16 | #include <sys/mman.h> |
17 | #include <sys/param.h> | 17 | #include <sys/param.h> |
18 | #include "asm/types.h" | 18 | #include "asm/types.h" |
19 | #include "kern_util.h" | ||
20 | #include "user.h" | 19 | #include "user.h" |
21 | #include "ubd_user.h" | 20 | #include "ubd_user.h" |
22 | #include "os.h" | 21 | #include "os.h" |
diff --git a/arch/um/drivers/vde_user.c b/arch/um/drivers/vde_user.c index d9941fe5f931..56533db25343 100644 --- a/arch/um/drivers/vde_user.c +++ b/arch/um/drivers/vde_user.c | |||
@@ -80,7 +80,7 @@ void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init) | |||
80 | 80 | ||
81 | vpri->args = kmalloc(sizeof(struct vde_open_args), UM_GFP_KERNEL); | 81 | vpri->args = kmalloc(sizeof(struct vde_open_args), UM_GFP_KERNEL); |
82 | if (vpri->args == NULL) { | 82 | if (vpri->args == NULL) { |
83 | printk(UM_KERN_ERR "vde_init_libstuff - vde_open_args" | 83 | printk(UM_KERN_ERR "vde_init_libstuff - vde_open_args " |
84 | "allocation failed"); | 84 | "allocation failed"); |
85 | return; | 85 | return; |
86 | } | 86 | } |
diff --git a/arch/um/include/arch.h b/arch/um/include/arch.h index 49c601ff2bac..2de92a08a76b 100644 --- a/arch/um/include/arch.h +++ b/arch/um/include/arch.h | |||
@@ -10,6 +10,6 @@ | |||
10 | 10 | ||
11 | extern void arch_check_bugs(void); | 11 | extern void arch_check_bugs(void); |
12 | extern int arch_fixup(unsigned long address, struct uml_pt_regs *regs); | 12 | extern int arch_fixup(unsigned long address, struct uml_pt_regs *regs); |
13 | extern int arch_handle_signal(int sig, struct uml_pt_regs *regs); | 13 | extern void arch_examine_signal(int sig, struct uml_pt_regs *regs); |
14 | 14 | ||
15 | #endif | 15 | #endif |
diff --git a/arch/um/include/as-layout.h b/arch/um/include/as-layout.h index a5cdf953e04a..606bb5c7fdf6 100644 --- a/arch/um/include/as-layout.h +++ b/arch/um/include/as-layout.h | |||
@@ -10,23 +10,31 @@ | |||
10 | #include "kern_constants.h" | 10 | #include "kern_constants.h" |
11 | 11 | ||
12 | /* | 12 | /* |
13 | * Assembly doesn't want any casting, but C does, so define these | 13 | * Stolen from linux/const.h, which can't be directly included since |
14 | * without casts here, and define new symbols with casts inside the C | 14 | * this is used in userspace code, which has no access to the kernel |
15 | * section. | 15 | * headers. Changed to be suitable for adding casts to the start, |
16 | * rather than "UL" to the end. | ||
16 | */ | 17 | */ |
17 | #define ASM_STUB_CODE (UML_CONFIG_TOP_ADDR - 2 * UM_KERN_PAGE_SIZE) | ||
18 | #define ASM_STUB_DATA (UML_CONFIG_TOP_ADDR - UM_KERN_PAGE_SIZE) | ||
19 | #define ASM_STUB_START ASM_STUB_CODE | ||
20 | 18 | ||
21 | /* | 19 | /* Some constant macros are used in both assembler and |
22 | * This file is included by the assembly stubs, which just want the | 20 | * C code. Therefore we cannot annotate them always with |
23 | * definitions above. | 21 | * 'UL' and other type specifiers unilaterally. We |
22 | * use the following macros to deal with this. | ||
24 | */ | 23 | */ |
25 | #ifndef __ASSEMBLY__ | ||
26 | 24 | ||
27 | #define STUB_CODE ((unsigned long) ASM_STUB_CODE) | 25 | #ifdef __ASSEMBLY__ |
28 | #define STUB_DATA ((unsigned long) ASM_STUB_DATA) | 26 | #define _AC(X, Y) (Y) |
29 | #define STUB_START ((unsigned long) ASM_STUB_START) | 27 | #else |
28 | #define __AC(X, Y) (X (Y)) | ||
29 | #define _AC(X, Y) __AC(X, Y) | ||
30 | #endif | ||
31 | |||
32 | #define STUB_START _AC(, 0x100000) | ||
33 | #define STUB_CODE _AC((unsigned long), STUB_START) | ||
34 | #define STUB_DATA _AC((unsigned long), STUB_CODE + UM_KERN_PAGE_SIZE) | ||
35 | #define STUB_END _AC((unsigned long), STUB_DATA + UM_KERN_PAGE_SIZE) | ||
36 | |||
37 | #ifndef __ASSEMBLY__ | ||
30 | 38 | ||
31 | #include "sysdep/ptrace.h" | 39 | #include "sysdep/ptrace.h" |
32 | 40 | ||
diff --git a/arch/um/include/chan_user.h b/arch/um/include/chan_user.h index 5a2263e05bb2..9b9ced85b703 100644 --- a/arch/um/include/chan_user.h +++ b/arch/um/include/chan_user.h | |||
@@ -48,7 +48,7 @@ extern void register_winch_irq(int fd, int tty_fd, int pid, | |||
48 | #define __channel_help(fn, prefix) \ | 48 | #define __channel_help(fn, prefix) \ |
49 | __uml_help(fn, prefix "[0-9]*=<channel description>\n" \ | 49 | __uml_help(fn, prefix "[0-9]*=<channel description>\n" \ |
50 | " Attach a console or serial line to a host channel. See\n" \ | 50 | " Attach a console or serial line to a host channel. See\n" \ |
51 | " http://user-mode-linux.sourceforge.net/input.html for a complete\n" \ | 51 | " http://user-mode-linux.sourceforge.net/old/input.html for a complete\n" \ |
52 | " description of this switch.\n\n" \ | 52 | " description of this switch.\n\n" \ |
53 | ); | 53 | ); |
54 | 54 | ||
diff --git a/arch/um/include/common-offsets.h b/arch/um/include/common-offsets.h index 0edab695ed4e..b54bd35585c2 100644 --- a/arch/um/include/common-offsets.h +++ b/arch/um/include/common-offsets.h | |||
@@ -18,6 +18,7 @@ DEFINE_STR(UM_KERN_WARNING, KERN_WARNING); | |||
18 | DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE); | 18 | DEFINE_STR(UM_KERN_NOTICE, KERN_NOTICE); |
19 | DEFINE_STR(UM_KERN_INFO, KERN_INFO); | 19 | DEFINE_STR(UM_KERN_INFO, KERN_INFO); |
20 | DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG); | 20 | DEFINE_STR(UM_KERN_DEBUG, KERN_DEBUG); |
21 | DEFINE_STR(UM_KERN_CONT, KERN_CONT); | ||
21 | 22 | ||
22 | DEFINE(UM_ELF_CLASS, ELF_CLASS); | 23 | DEFINE(UM_ELF_CLASS, ELF_CLASS); |
23 | DEFINE(UM_ELFCLASS32, ELFCLASS32); | 24 | DEFINE(UM_ELFCLASS32, ELFCLASS32); |
diff --git a/arch/um/include/init.h b/arch/um/include/init.h index cebc6cae9190..b00a95741d41 100644 --- a/arch/um/include/init.h +++ b/arch/um/include/init.h | |||
@@ -40,6 +40,20 @@ | |||
40 | typedef int (*initcall_t)(void); | 40 | typedef int (*initcall_t)(void); |
41 | typedef void (*exitcall_t)(void); | 41 | typedef void (*exitcall_t)(void); |
42 | 42 | ||
43 | #ifndef __KERNEL__ | ||
44 | #ifndef __section | ||
45 | # define __section(S) __attribute__ ((__section__(#S))) | ||
46 | #endif | ||
47 | |||
48 | #if __GNUC_MINOR__ >= 3 | ||
49 | # define __used __attribute__((__used__)) | ||
50 | #else | ||
51 | # define __used __attribute__((__unused__)) | ||
52 | #endif | ||
53 | |||
54 | #else | ||
55 | #include <linux/compiler.h> | ||
56 | #endif | ||
43 | /* These are for everybody (although not all archs will actually | 57 | /* These are for everybody (although not all archs will actually |
44 | discard it in modules) */ | 58 | discard it in modules) */ |
45 | #define __init __section(.init.text) | 59 | #define __init __section(.init.text) |
@@ -127,14 +141,3 @@ extern struct uml_param __uml_setup_start, __uml_setup_end; | |||
127 | #endif | 141 | #endif |
128 | 142 | ||
129 | #endif /* _LINUX_UML_INIT_H */ | 143 | #endif /* _LINUX_UML_INIT_H */ |
130 | |||
131 | /* | ||
132 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
133 | * Emacs will notice this stuff at the end of the file and automatically | ||
134 | * adjust the settings for this buffer only. This must remain at the end | ||
135 | * of the file. | ||
136 | * --------------------------------------------------------------------------- | ||
137 | * Local variables: | ||
138 | * c-file-style: "linux" | ||
139 | * End: | ||
140 | */ | ||
diff --git a/arch/um/include/irq_user.h b/arch/um/include/irq_user.h index 884a9c17eea0..e60b31873de1 100644 --- a/arch/um/include/irq_user.h +++ b/arch/um/include/irq_user.h | |||
@@ -14,7 +14,6 @@ struct irq_fd { | |||
14 | int fd; | 14 | int fd; |
15 | int type; | 15 | int type; |
16 | int irq; | 16 | int irq; |
17 | int pid; | ||
18 | int events; | 17 | int events; |
19 | int current_events; | 18 | int current_events; |
20 | }; | 19 | }; |
diff --git a/arch/um/include/kern_util.h b/arch/um/include/kern_util.h index 74ce8e5370a6..3c341222d252 100644 --- a/arch/um/include/kern_util.h +++ b/arch/um/include/kern_util.h | |||
@@ -9,107 +9,61 @@ | |||
9 | #include "sysdep/ptrace.h" | 9 | #include "sysdep/ptrace.h" |
10 | #include "sysdep/faultinfo.h" | 10 | #include "sysdep/faultinfo.h" |
11 | 11 | ||
12 | typedef void (*kern_hndl)(int, struct uml_pt_regs *); | 12 | extern int uml_exitcode; |
13 | |||
14 | struct kern_handlers { | ||
15 | kern_hndl relay_signal; | ||
16 | kern_hndl winch; | ||
17 | kern_hndl bus_handler; | ||
18 | kern_hndl page_fault; | ||
19 | kern_hndl sigio_handler; | ||
20 | kern_hndl timer_handler; | ||
21 | }; | ||
22 | |||
23 | extern const struct kern_handlers handlinfo_kern; | ||
24 | 13 | ||
25 | extern int ncpus; | 14 | extern int ncpus; |
26 | extern char *gdb_init; | ||
27 | extern int kmalloc_ok; | 15 | extern int kmalloc_ok; |
28 | extern int jail; | ||
29 | extern int nsyscalls; | ||
30 | 16 | ||
31 | #define UML_ROUND_DOWN(addr) ((void *)(((unsigned long) addr) & PAGE_MASK)) | ||
32 | #define UML_ROUND_UP(addr) \ | 17 | #define UML_ROUND_UP(addr) \ |
33 | UML_ROUND_DOWN(((unsigned long) addr) + PAGE_SIZE - 1) | 18 | ((((unsigned long) addr) + PAGE_SIZE - 1) & PAGE_MASK) |
34 | 19 | ||
35 | extern int kernel_fork(unsigned long flags, int (*fn)(void *), void * arg); | ||
36 | extern int kernel_thread_proc(void *data); | ||
37 | extern void syscall_segv(int sig); | ||
38 | extern int current_pid(void); | ||
39 | extern unsigned long alloc_stack(int order, int atomic); | 20 | extern unsigned long alloc_stack(int order, int atomic); |
21 | extern void free_stack(unsigned long stack, int order); | ||
22 | |||
40 | extern int do_signal(void); | 23 | extern int do_signal(void); |
41 | extern int is_stack_fault(unsigned long sp); | 24 | extern void copy_sc(struct uml_pt_regs *regs, void *from); |
25 | extern void interrupt_end(void); | ||
26 | extern void relay_signal(int sig, struct uml_pt_regs *regs); | ||
27 | |||
42 | extern unsigned long segv(struct faultinfo fi, unsigned long ip, | 28 | extern unsigned long segv(struct faultinfo fi, unsigned long ip, |
43 | int is_user, struct uml_pt_regs *regs); | 29 | int is_user, struct uml_pt_regs *regs); |
44 | extern int handle_page_fault(unsigned long address, unsigned long ip, | 30 | extern int handle_page_fault(unsigned long address, unsigned long ip, |
45 | int is_write, int is_user, int *code_out); | 31 | int is_write, int is_user, int *code_out); |
46 | extern void syscall_ready(void); | 32 | |
47 | extern void set_tracing(void *t, int tracing); | ||
48 | extern int is_tracing(void *task); | ||
49 | extern int segv_syscall(void); | ||
50 | extern void kern_finish_exec(void *task, int new_pid, unsigned long stack); | ||
51 | extern unsigned long page_mask(void); | ||
52 | extern int need_finish_fork(void); | ||
53 | extern void free_stack(unsigned long stack, int order); | ||
54 | extern void add_input_request(int op, void (*proc)(int), void *arg); | ||
55 | extern char *current_cmd(void); | ||
56 | extern void timer_handler(int sig, struct uml_pt_regs *regs); | ||
57 | extern int set_signals(int enable); | ||
58 | extern int pid_to_processor_id(int pid); | ||
59 | extern void deliver_signals(void *t); | ||
60 | extern int next_trap_index(int max); | ||
61 | extern void default_idle(void); | ||
62 | extern void finish_fork(void); | ||
63 | extern void paging_init(void); | ||
64 | extern void init_flush_vm(void); | ||
65 | extern void *syscall_sp(void *t); | ||
66 | extern void syscall_trace(struct uml_pt_regs *regs, int entryexit); | ||
67 | extern unsigned int do_IRQ(int irq, struct uml_pt_regs *regs); | 33 | extern unsigned int do_IRQ(int irq, struct uml_pt_regs *regs); |
68 | extern void interrupt_end(void); | ||
69 | extern void initial_thread_cb(void (*proc)(void *), void *arg); | ||
70 | extern int debugger_signal(int status, int pid); | ||
71 | extern void debugger_parent_signal(int status, int pid); | ||
72 | extern void child_signal(int pid, int status); | ||
73 | extern int init_ptrace_proxy(int idle_pid, int startup, int stop); | ||
74 | extern int init_parent_proxy(int pid); | ||
75 | extern int singlestepping(void *t); | ||
76 | extern void check_stack_overflow(void *ptr); | ||
77 | extern void relay_signal(int sig, struct uml_pt_regs *regs); | ||
78 | extern int user_context(unsigned long sp); | ||
79 | extern void timer_irq(struct uml_pt_regs *regs); | ||
80 | extern void do_uml_exitcalls(void); | ||
81 | extern int attach_debugger(int idle_pid, int pid, int stop); | ||
82 | extern int config_gdb(char *str); | ||
83 | extern int remove_gdb(void); | ||
84 | extern char *uml_strdup(char *string); | ||
85 | extern void unprotect_kernel_mem(void); | ||
86 | extern void protect_kernel_mem(void); | ||
87 | extern void uml_cleanup(void); | ||
88 | extern void lock_signalled_task(void *t); | ||
89 | extern void IPI_handler(int cpu); | ||
90 | extern int jail_setup(char *line, int *add); | ||
91 | extern void *get_init_task(void); | ||
92 | extern int clear_user_proc(void *buf, int size); | ||
93 | extern int copy_to_user_proc(void *to, void *from, int size); | ||
94 | extern int copy_from_user_proc(void *to, void *from, int size); | ||
95 | extern int strlen_user_proc(char *str); | ||
96 | extern long execute_syscall(void *r); | ||
97 | extern int smp_sigio_handler(void); | 34 | extern int smp_sigio_handler(void); |
98 | extern void *get_current(void); | 35 | extern void initial_thread_cb(void (*proc)(void *), void *arg); |
99 | extern struct task_struct *get_task(int pid, int require); | ||
100 | extern void machine_halt(void); | ||
101 | extern int is_syscall(unsigned long addr); | 36 | extern int is_syscall(unsigned long addr); |
37 | extern void timer_handler(int sig, struct uml_pt_regs *regs); | ||
102 | 38 | ||
103 | extern void free_irq(unsigned int, void *); | 39 | extern void timer_handler(int sig, struct uml_pt_regs *regs); |
104 | extern int cpu(void); | ||
105 | 40 | ||
106 | extern void time_init_kern(void); | 41 | extern int start_uml(void); |
42 | extern void paging_init(void); | ||
107 | 43 | ||
108 | /* Are we disallowed to sleep? Used to choose between GFP_KERNEL and GFP_ATOMIC. */ | 44 | extern void uml_cleanup(void); |
45 | extern void do_uml_exitcalls(void); | ||
46 | |||
47 | /* | ||
48 | * Are we disallowed to sleep? Used to choose between GFP_KERNEL and | ||
49 | * GFP_ATOMIC. | ||
50 | */ | ||
109 | extern int __cant_sleep(void); | 51 | extern int __cant_sleep(void); |
110 | extern void sigio_handler(int sig, struct uml_pt_regs *regs); | 52 | extern void *get_current(void); |
111 | extern void copy_sc(struct uml_pt_regs *regs, void *from); | 53 | extern int copy_from_user_proc(void *to, void *from, int size); |
54 | extern int cpu(void); | ||
55 | extern char *uml_strdup(const char *string); | ||
56 | |||
112 | extern unsigned long to_irq_stack(unsigned long *mask_out); | 57 | extern unsigned long to_irq_stack(unsigned long *mask_out); |
113 | unsigned long from_irq_stack(int nested); | 58 | extern unsigned long from_irq_stack(int nested); |
114 | extern int start_uml(void); | 59 | |
60 | extern void syscall_trace(struct uml_pt_regs *regs, int entryexit); | ||
61 | extern int singlestepping(void *t); | ||
62 | |||
63 | extern void segv_handler(int sig, struct uml_pt_regs *regs); | ||
64 | extern void bus_handler(int sig, struct uml_pt_regs *regs); | ||
65 | extern void winch(int sig, struct uml_pt_regs *regs); | ||
66 | extern void fatal_sigsegv(void) __attribute__ ((noreturn)); | ||
67 | |||
68 | |||
115 | #endif | 69 | #endif |
diff --git a/arch/um/include/mem_user.h b/arch/um/include/mem_user.h index a54514d2cc3a..46384acd547b 100644 --- a/arch/um/include/mem_user.h +++ b/arch/um/include/mem_user.h | |||
@@ -46,9 +46,6 @@ extern int iomem_size; | |||
46 | 46 | ||
47 | #define ROUND_4M(n) ((((unsigned long) (n)) + (1 << 22)) & ~((1 << 22) - 1)) | 47 | #define ROUND_4M(n) ((((unsigned long) (n)) + (1 << 22)) & ~((1 << 22) - 1)) |
48 | 48 | ||
49 | extern unsigned long host_task_size; | ||
50 | extern unsigned long task_size; | ||
51 | |||
52 | extern int init_mem_user(void); | 49 | extern int init_mem_user(void); |
53 | extern void setup_memory(void *entry); | 50 | extern void setup_memory(void *entry); |
54 | extern unsigned long find_iomem(char *driver, unsigned long *len_out); | 51 | extern unsigned long find_iomem(char *driver, unsigned long *len_out); |
@@ -59,9 +56,7 @@ extern void setup_physmem(unsigned long start, unsigned long usable, | |||
59 | unsigned long len, unsigned long long highmem); | 56 | unsigned long len, unsigned long long highmem); |
60 | extern void add_iomem(char *name, int fd, unsigned long size); | 57 | extern void add_iomem(char *name, int fd, unsigned long size); |
61 | extern unsigned long phys_offset(unsigned long phys); | 58 | extern unsigned long phys_offset(unsigned long phys); |
62 | extern void unmap_physmem(void); | ||
63 | extern void map_memory(unsigned long virt, unsigned long phys, | 59 | extern void map_memory(unsigned long virt, unsigned long phys, |
64 | unsigned long len, int r, int w, int x); | 60 | unsigned long len, int r, int w, int x); |
65 | extern unsigned long get_kmem_end(void); | ||
66 | 61 | ||
67 | #endif | 62 | #endif |
diff --git a/arch/um/include/misc_constants.h b/arch/um/include/misc_constants.h deleted file mode 100644 index 989bc08de36e..000000000000 --- a/arch/um/include/misc_constants.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef __MISC_CONSTANT_H_ | ||
2 | #define __MISC_CONSTANT_H_ | ||
3 | |||
4 | #include <user_constants.h> | ||
5 | |||
6 | #endif | ||
diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 6f0d1c741bca..0b6b62733303 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h | |||
@@ -8,7 +8,6 @@ | |||
8 | 8 | ||
9 | #include <stdarg.h> | 9 | #include <stdarg.h> |
10 | #include "irq_user.h" | 10 | #include "irq_user.h" |
11 | #include "kern_util.h" | ||
12 | #include "longjmp.h" | 11 | #include "longjmp.h" |
13 | #include "mm_id.h" | 12 | #include "mm_id.h" |
14 | #include "sysdep/tls.h" | 13 | #include "sysdep/tls.h" |
@@ -128,33 +127,31 @@ static inline struct openflags of_cloexec(struct openflags flags) | |||
128 | extern int os_stat_file(const char *file_name, struct uml_stat *buf); | 127 | extern int os_stat_file(const char *file_name, struct uml_stat *buf); |
129 | extern int os_stat_fd(const int fd, struct uml_stat *buf); | 128 | extern int os_stat_fd(const int fd, struct uml_stat *buf); |
130 | extern int os_access(const char *file, int mode); | 129 | extern int os_access(const char *file, int mode); |
131 | extern int os_get_exec_close(int fd, int *close_on_exec); | ||
132 | extern int os_set_exec_close(int fd); | 130 | extern int os_set_exec_close(int fd); |
133 | extern int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg); | 131 | extern int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg); |
134 | extern int os_get_ifname(int fd, char *namebuf); | 132 | extern int os_get_ifname(int fd, char *namebuf); |
135 | extern int os_set_slip(int fd); | 133 | extern int os_set_slip(int fd); |
136 | extern int os_set_owner(int fd, int pid); | ||
137 | extern int os_mode_fd(int fd, int mode); | 134 | extern int os_mode_fd(int fd, int mode); |
138 | 135 | ||
139 | extern int os_seek_file(int fd, unsigned long long offset); | 136 | extern int os_seek_file(int fd, unsigned long long offset); |
140 | extern int os_open_file(char *file, struct openflags flags, int mode); | 137 | extern int os_open_file(const char *file, struct openflags flags, int mode); |
141 | extern int os_read_file(int fd, void *buf, int len); | 138 | extern int os_read_file(int fd, void *buf, int len); |
142 | extern int os_write_file(int fd, const void *buf, int count); | 139 | extern int os_write_file(int fd, const void *buf, int count); |
143 | extern int os_file_size(char *file, unsigned long long *size_out); | 140 | extern int os_file_size(const char *file, unsigned long long *size_out); |
144 | extern int os_file_modtime(char *file, unsigned long *modtime); | 141 | extern int os_file_modtime(const char *file, unsigned long *modtime); |
145 | extern int os_pipe(int *fd, int stream, int close_on_exec); | 142 | extern int os_pipe(int *fd, int stream, int close_on_exec); |
146 | extern int os_set_fd_async(int fd, int owner); | 143 | extern int os_set_fd_async(int fd); |
147 | extern int os_clear_fd_async(int fd); | 144 | extern int os_clear_fd_async(int fd); |
148 | extern int os_set_fd_block(int fd, int blocking); | 145 | extern int os_set_fd_block(int fd, int blocking); |
149 | extern int os_accept_connection(int fd); | 146 | extern int os_accept_connection(int fd); |
150 | extern int os_create_unix_socket(char *file, int len, int close_on_exec); | 147 | extern int os_create_unix_socket(const char *file, int len, int close_on_exec); |
151 | extern int os_shutdown_socket(int fd, int r, int w); | 148 | extern int os_shutdown_socket(int fd, int r, int w); |
152 | extern void os_close_file(int fd); | 149 | extern void os_close_file(int fd); |
153 | extern int os_rcv_fd(int fd, int *helper_pid_out); | 150 | extern int os_rcv_fd(int fd, int *helper_pid_out); |
154 | extern int create_unix_socket(char *file, int len, int close_on_exec); | 151 | extern int create_unix_socket(char *file, int len, int close_on_exec); |
155 | extern int os_connect_socket(char *name); | 152 | extern int os_connect_socket(const char *name); |
156 | extern int os_file_type(char *file); | 153 | extern int os_file_type(char *file); |
157 | extern int os_file_mode(char *file, struct openflags *mode_out); | 154 | extern int os_file_mode(const char *file, struct openflags *mode_out); |
158 | extern int os_lock_file(int fd, int excl); | 155 | extern int os_lock_file(int fd, int excl); |
159 | extern void os_flush_stdout(void); | 156 | extern void os_flush_stdout(void); |
160 | extern int os_stat_filesystem(char *path, long *bsize_out, | 157 | extern int os_stat_filesystem(char *path, long *bsize_out, |
@@ -168,14 +165,10 @@ extern int os_fchange_dir(int fd); | |||
168 | 165 | ||
169 | /* start_up.c */ | 166 | /* start_up.c */ |
170 | extern void os_early_checks(void); | 167 | extern void os_early_checks(void); |
171 | extern int can_do_skas(void); | 168 | extern void can_do_skas(void); |
172 | extern void os_check_bugs(void); | 169 | extern void os_check_bugs(void); |
173 | extern void check_host_supports_tls(int *supports_tls, int *tls_min); | 170 | extern void check_host_supports_tls(int *supports_tls, int *tls_min); |
174 | 171 | ||
175 | /* Make sure they are clear when running in TT mode. Required by | ||
176 | * SEGV_MAYBE_FIXABLE */ | ||
177 | #define clear_can_do_skas() do { ptrace_faultinfo = proc_mm = 0; } while (0) | ||
178 | |||
179 | /* mem.c */ | 172 | /* mem.c */ |
180 | extern int create_mem_file(unsigned long long len); | 173 | extern int create_mem_file(unsigned long long len); |
181 | 174 | ||
@@ -214,7 +207,7 @@ extern int execvp_noalloc(char *buf, const char *file, char *const argv[]); | |||
214 | extern int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv); | 207 | extern int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv); |
215 | extern int run_helper_thread(int (*proc)(void *), void *arg, | 208 | extern int run_helper_thread(int (*proc)(void *), void *arg, |
216 | unsigned int flags, unsigned long *stack_out); | 209 | unsigned int flags, unsigned long *stack_out); |
217 | extern int helper_wait(int pid, int nohang, char *pname); | 210 | extern int helper_wait(int pid); |
218 | 211 | ||
219 | 212 | ||
220 | /* tls.c */ | 213 | /* tls.c */ |
@@ -237,16 +230,12 @@ extern void unblock_signals(void); | |||
237 | extern int get_signals(void); | 230 | extern int get_signals(void); |
238 | extern int set_signals(int enable); | 231 | extern int set_signals(int enable); |
239 | 232 | ||
240 | /* trap.c */ | ||
241 | extern void os_fill_handlinfo(struct kern_handlers h); | ||
242 | |||
243 | /* util.c */ | 233 | /* util.c */ |
244 | extern void stack_protections(unsigned long address); | 234 | extern void stack_protections(unsigned long address); |
245 | extern int raw(int fd); | 235 | extern int raw(int fd); |
246 | extern void setup_machinename(char *machine_out); | 236 | extern void setup_machinename(char *machine_out); |
247 | extern void setup_hostinfo(char *buf, int len); | 237 | extern void setup_hostinfo(char *buf, int len); |
248 | extern int setjmp_wrapper(void (*proc)(void *, void *), ...); | 238 | extern void os_dump_core(void) __attribute__ ((noreturn)); |
249 | extern void os_dump_core(void); | ||
250 | 239 | ||
251 | /* time.c */ | 240 | /* time.c */ |
252 | extern void idle_sleep(unsigned long long nsecs); | 241 | extern void idle_sleep(unsigned long long nsecs); |
@@ -275,11 +264,9 @@ extern int protect(struct mm_id * mm_idp, unsigned long addr, | |||
275 | extern int is_skas_winch(int pid, int fd, void *data); | 264 | extern int is_skas_winch(int pid, int fd, void *data); |
276 | extern int start_userspace(unsigned long stub_stack); | 265 | extern int start_userspace(unsigned long stub_stack); |
277 | extern int copy_context_skas0(unsigned long stack, int pid); | 266 | extern int copy_context_skas0(unsigned long stack, int pid); |
278 | extern void save_registers(int pid, struct uml_pt_regs *regs); | ||
279 | extern void restore_registers(int pid, struct uml_pt_regs *regs); | ||
280 | extern void userspace(struct uml_pt_regs *regs); | 267 | extern void userspace(struct uml_pt_regs *regs); |
281 | extern void map_stub_pages(int fd, unsigned long code, | 268 | extern int map_stub_pages(int fd, unsigned long code, unsigned long data, |
282 | unsigned long data, unsigned long stack); | 269 | unsigned long stack); |
283 | extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)); | 270 | extern void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)); |
284 | extern void switch_threads(jmp_buf *me, jmp_buf *you); | 271 | extern void switch_threads(jmp_buf *me, jmp_buf *you); |
285 | extern int start_idle_thread(void *stack, jmp_buf *switch_buf); | 272 | extern int start_idle_thread(void *stack, jmp_buf *switch_buf); |
@@ -298,16 +285,12 @@ extern void os_free_irq_later(struct irq_fd *active_fds, | |||
298 | extern int os_get_pollfd(int i); | 285 | extern int os_get_pollfd(int i); |
299 | extern void os_set_pollfd(int i, int fd); | 286 | extern void os_set_pollfd(int i, int fd); |
300 | extern void os_set_ioignore(void); | 287 | extern void os_set_ioignore(void); |
301 | extern void init_irq_signals(int on_sigstack); | ||
302 | 288 | ||
303 | /* sigio.c */ | 289 | /* sigio.c */ |
304 | extern int add_sigio_fd(int fd); | 290 | extern int add_sigio_fd(int fd); |
305 | extern int ignore_sigio_fd(int fd); | 291 | extern int ignore_sigio_fd(int fd); |
306 | extern void maybe_sigio_broken(int fd, int read); | 292 | extern void maybe_sigio_broken(int fd, int read); |
307 | 293 | ||
308 | /* skas/trap */ | ||
309 | extern void sig_handler_common_skas(int sig, void *sc_ptr); | ||
310 | |||
311 | /* sys-x86_64/prctl.c */ | 294 | /* sys-x86_64/prctl.c */ |
312 | extern int os_arch_prctl(int pid, int code, unsigned long *addr); | 295 | extern int os_arch_prctl(int pid, int code, unsigned long *addr); |
313 | 296 | ||
diff --git a/arch/um/include/ptrace_user.h b/arch/um/include/ptrace_user.h index f3450e6bc18d..4bce6e012889 100644 --- a/arch/um/include/ptrace_user.h +++ b/arch/um/include/ptrace_user.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -10,12 +10,6 @@ | |||
10 | 10 | ||
11 | extern int ptrace_getregs(long pid, unsigned long *regs_out); | 11 | extern int ptrace_getregs(long pid, unsigned long *regs_out); |
12 | extern int ptrace_setregs(long pid, unsigned long *regs_in); | 12 | extern int ptrace_setregs(long pid, unsigned long *regs_in); |
13 | extern int ptrace_getfpregs(long pid, unsigned long *regs_out); | ||
14 | extern int ptrace_setfpregs(long pid, unsigned long *regs); | ||
15 | extern void arch_enter_kernel(void *task, int pid); | ||
16 | extern void arch_leave_kernel(void *task, int pid); | ||
17 | extern void ptrace_pokeuser(unsigned long addr, unsigned long data); | ||
18 | |||
19 | 13 | ||
20 | /* syscall emulation path in ptrace */ | 14 | /* syscall emulation path in ptrace */ |
21 | 15 | ||
@@ -54,7 +48,8 @@ extern int sysemu_supported; | |||
54 | (((int[3][3] ) { \ | 48 | (((int[3][3] ) { \ |
55 | { PTRACE_SYSCALL, PTRACE_SYSCALL, PTRACE_SINGLESTEP }, \ | 49 | { PTRACE_SYSCALL, PTRACE_SYSCALL, PTRACE_SINGLESTEP }, \ |
56 | { PTRACE_SYSEMU, PTRACE_SYSEMU, PTRACE_SINGLESTEP }, \ | 50 | { PTRACE_SYSEMU, PTRACE_SYSEMU, PTRACE_SINGLESTEP }, \ |
57 | { PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP, PTRACE_SYSEMU_SINGLESTEP }}) \ | 51 | { PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP, \ |
52 | PTRACE_SYSEMU_SINGLESTEP } }) \ | ||
58 | [sysemu_mode][singlestep_mode]) | 53 | [sysemu_mode][singlestep_mode]) |
59 | 54 | ||
60 | #endif | 55 | #endif |
diff --git a/arch/um/include/registers.h b/arch/um/include/registers.h index 0e27406a43a4..9ea1ae3c8f46 100644 --- a/arch/um/include/registers.h +++ b/arch/um/include/registers.h | |||
@@ -9,14 +9,13 @@ | |||
9 | #include "sysdep/ptrace.h" | 9 | #include "sysdep/ptrace.h" |
10 | #include "sysdep/archsetjmp.h" | 10 | #include "sysdep/archsetjmp.h" |
11 | 11 | ||
12 | extern void init_thread_registers(struct uml_pt_regs *to); | ||
13 | extern int save_fp_registers(int pid, unsigned long *fp_regs); | 12 | extern int save_fp_registers(int pid, unsigned long *fp_regs); |
14 | extern int restore_fp_registers(int pid, unsigned long *fp_regs); | 13 | extern int restore_fp_registers(int pid, unsigned long *fp_regs); |
15 | extern int save_fpx_registers(int pid, unsigned long *fp_regs); | 14 | extern int save_fpx_registers(int pid, unsigned long *fp_regs); |
16 | extern int restore_fpx_registers(int pid, unsigned long *fp_regs); | 15 | extern int restore_fpx_registers(int pid, unsigned long *fp_regs); |
17 | extern void save_registers(int pid, struct uml_pt_regs *regs); | 16 | extern int save_registers(int pid, struct uml_pt_regs *regs); |
18 | extern void restore_registers(int pid, struct uml_pt_regs *regs); | 17 | extern int restore_registers(int pid, struct uml_pt_regs *regs); |
19 | extern void init_registers(int pid); | 18 | extern int init_registers(int pid); |
20 | extern void get_safe_registers(unsigned long *regs); | 19 | extern void get_safe_registers(unsigned long *regs); |
21 | extern unsigned long get_thread_reg(int reg, jmp_buf *buf); | 20 | extern unsigned long get_thread_reg(int reg, jmp_buf *buf); |
22 | 21 | ||
diff --git a/arch/um/include/signal_kern.h b/arch/um/include/signal_kern.h deleted file mode 100644 index aeb5d5ab1dfd..000000000000 --- a/arch/um/include/signal_kern.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #ifndef __SIGNAL_KERN_H__ | ||
7 | #define __SIGNAL_KERN_H__ | ||
8 | |||
9 | extern int have_signals(void *t); | ||
10 | |||
11 | #endif | ||
12 | |||
13 | /* | ||
14 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
15 | * Emacs will notice this stuff at the end of the file and automatically | ||
16 | * adjust the settings for this buffer only. This must remain at the end | ||
17 | * of the file. | ||
18 | * --------------------------------------------------------------------------- | ||
19 | * Local variables: | ||
20 | * c-file-style: "linux" | ||
21 | * End: | ||
22 | */ | ||
diff --git a/arch/um/include/skas/mode-skas.h b/arch/um/include/skas/mode-skas.h deleted file mode 100644 index e065feb000df..000000000000 --- a/arch/um/include/skas/mode-skas.h +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #ifndef __MODE_SKAS_H__ | ||
7 | #define __MODE_SKAS_H__ | ||
8 | |||
9 | extern void kill_off_processes_skas(void); | ||
10 | |||
11 | #endif | ||
diff --git a/arch/um/include/sysdep-i386/syscalls.h b/arch/um/include/sysdep-i386/syscalls.h index 57bd79efbee3..905698197e35 100644 --- a/arch/um/include/sysdep-i386/syscalls.h +++ b/arch/um/include/sysdep-i386/syscalls.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -18,7 +18,8 @@ extern syscall_handler_t old_mmap_i386; | |||
18 | extern syscall_handler_t *sys_call_table[]; | 18 | extern syscall_handler_t *sys_call_table[]; |
19 | 19 | ||
20 | #define EXECUTE_SYSCALL(syscall, regs) \ | 20 | #define EXECUTE_SYSCALL(syscall, regs) \ |
21 | ((long (*)(struct syscall_args)) (*sys_call_table[syscall]))(SYSCALL_ARGS(®s->regs)) | 21 | ((long (*)(struct syscall_args)) \ |
22 | (*sys_call_table[syscall]))(SYSCALL_ARGS(®s->regs)) | ||
22 | 23 | ||
23 | extern long sys_mmap2(unsigned long addr, unsigned long len, | 24 | extern long sys_mmap2(unsigned long addr, unsigned long len, |
24 | unsigned long prot, unsigned long flags, | 25 | unsigned long prot, unsigned long flags, |
diff --git a/arch/um/include/sysdep-x86_64/kernel-offsets.h b/arch/um/include/sysdep-x86_64/kernel-offsets.h index c978b589df41..a307237b7964 100644 --- a/arch/um/include/sysdep-x86_64/kernel-offsets.h +++ b/arch/um/include/sysdep-x86_64/kernel-offsets.h | |||
@@ -17,16 +17,7 @@ | |||
17 | #define OFFSET(sym, str, mem) \ | 17 | #define OFFSET(sym, str, mem) \ |
18 | DEFINE(sym, offsetof(struct str, mem)); | 18 | DEFINE(sym, offsetof(struct str, mem)); |
19 | 19 | ||
20 | #define __NO_STUBS 1 | ||
21 | #undef __SYSCALL | ||
22 | #undef _ASM_X86_64_UNISTD_H_ | ||
23 | #define __SYSCALL(nr, sym) [nr] = 1, | ||
24 | static char syscalls[] = { | ||
25 | #include <asm/arch/unistd.h> | ||
26 | }; | ||
27 | |||
28 | void foo(void) | 20 | void foo(void) |
29 | { | 21 | { |
30 | #include <common-offsets.h> | 22 | #include <common-offsets.h> |
31 | DEFINE(UM_NR_syscall_max, sizeof(syscalls) - 1); | ||
32 | } | 23 | } |
diff --git a/arch/um/include/sysdep-x86_64/syscalls.h b/arch/um/include/sysdep-x86_64/syscalls.h index cf72256609e4..7cfb0b085655 100644 --- a/arch/um/include/sysdep-x86_64/syscalls.h +++ b/arch/um/include/sysdep-x86_64/syscalls.h | |||
@@ -30,6 +30,4 @@ extern long old_mmap(unsigned long addr, unsigned long len, | |||
30 | extern syscall_handler_t sys_modify_ldt; | 30 | extern syscall_handler_t sys_modify_ldt; |
31 | extern syscall_handler_t sys_arch_prctl; | 31 | extern syscall_handler_t sys_arch_prctl; |
32 | 32 | ||
33 | #define NR_syscalls (UM_NR_syscall_max + 1) | ||
34 | |||
35 | #endif | 33 | #endif |
diff --git a/arch/um/include/um_mmu.h b/arch/um/include/um_mmu.h index 8855d8df512f..82865fcf6872 100644 --- a/arch/um/include/um_mmu.h +++ b/arch/um/include/um_mmu.h | |||
@@ -12,10 +12,6 @@ | |||
12 | 12 | ||
13 | typedef struct mm_context { | 13 | typedef struct mm_context { |
14 | struct mm_id id; | 14 | struct mm_id id; |
15 | unsigned long last_page_table; | ||
16 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
17 | unsigned long last_pmd; | ||
18 | #endif | ||
19 | struct uml_ldt ldt; | 15 | struct uml_ldt ldt; |
20 | } mm_context_t; | 16 | } mm_context_t; |
21 | 17 | ||
diff --git a/arch/um/include/um_uaccess.h b/arch/um/include/um_uaccess.h index fdfc06b85605..2b6fc8e0f071 100644 --- a/arch/um/include/um_uaccess.h +++ b/arch/um/include/um_uaccess.h | |||
@@ -6,7 +6,9 @@ | |||
6 | #ifndef __ARCH_UM_UACCESS_H | 6 | #ifndef __ARCH_UM_UACCESS_H |
7 | #define __ARCH_UM_UACCESS_H | 7 | #define __ARCH_UM_UACCESS_H |
8 | 8 | ||
9 | #include "asm/fixmap.h" | 9 | #include <asm/elf.h> |
10 | #include <asm/fixmap.h> | ||
11 | #include "sysdep/archsetjmp.h" | ||
10 | 12 | ||
11 | #define __under_task_size(addr, size) \ | 13 | #define __under_task_size(addr, size) \ |
12 | (((unsigned long) (addr) < TASK_SIZE) && \ | 14 | (((unsigned long) (addr) < TASK_SIZE) && \ |
diff --git a/arch/um/kernel/exec.c b/arch/um/kernel/exec.c index 8196450451cd..76a62c0cb2bc 100644 --- a/arch/um/kernel/exec.c +++ b/arch/um/kernel/exec.c | |||
@@ -19,12 +19,13 @@ | |||
19 | void flush_thread(void) | 19 | void flush_thread(void) |
20 | { | 20 | { |
21 | void *data = NULL; | 21 | void *data = NULL; |
22 | unsigned long end = proc_mm ? task_size : STUB_START; | ||
23 | int ret; | 22 | int ret; |
24 | 23 | ||
25 | arch_flush_thread(¤t->thread.arch); | 24 | arch_flush_thread(¤t->thread.arch); |
26 | 25 | ||
27 | ret = unmap(¤t->mm->context.id, 0, end, 1, &data); | 26 | ret = unmap(¤t->mm->context.id, 0, STUB_START, 0, &data); |
27 | ret = ret || unmap(¤t->mm->context.id, STUB_END, | ||
28 | TASK_SIZE - STUB_END, 1, &data); | ||
28 | if (ret) { | 29 | if (ret) { |
29 | printk(KERN_ERR "flush_thread - clearing address space failed, " | 30 | printk(KERN_ERR "flush_thread - clearing address space failed, " |
30 | "err = %d\n", ret); | 31 | "err = %d\n", ret); |
diff --git a/arch/um/kernel/exitcode.c b/arch/um/kernel/exitcode.c index c716b5a6db13..984f80e668ca 100644 --- a/arch/um/kernel/exitcode.c +++ b/arch/um/kernel/exitcode.c | |||
@@ -1,15 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/kernel.h" | 6 | #include <linux/ctype.h> |
7 | #include "linux/init.h" | 7 | #include <linux/init.h> |
8 | #include "linux/ctype.h" | 8 | #include <linux/kernel.h> |
9 | #include "linux/proc_fs.h" | 9 | #include <linux/proc_fs.h> |
10 | #include "asm/uaccess.h" | 10 | #include <linux/types.h> |
11 | #include <asm/uaccess.h> | ||
11 | 12 | ||
12 | /* If read and write race, the read will still atomically read a valid | 13 | /* |
14 | * If read and write race, the read will still atomically read a valid | ||
13 | * value. | 15 | * value. |
14 | */ | 16 | */ |
15 | int uml_exitcode = 0; | 17 | int uml_exitcode = 0; |
@@ -19,18 +21,19 @@ static int read_proc_exitcode(char *page, char **start, off_t off, | |||
19 | { | 21 | { |
20 | int len, val; | 22 | int len, val; |
21 | 23 | ||
22 | /* Save uml_exitcode in a local so that we don't need to guarantee | 24 | /* |
25 | * Save uml_exitcode in a local so that we don't need to guarantee | ||
23 | * that sprintf accesses it atomically. | 26 | * that sprintf accesses it atomically. |
24 | */ | 27 | */ |
25 | val = uml_exitcode; | 28 | val = uml_exitcode; |
26 | len = sprintf(page, "%d\n", val); | 29 | len = sprintf(page, "%d\n", val); |
27 | len -= off; | 30 | len -= off; |
28 | if(len <= off+count) | 31 | if (len <= off+count) |
29 | *eof = 1; | 32 | *eof = 1; |
30 | *start = page + off; | 33 | *start = page + off; |
31 | if(len > count) | 34 | if (len > count) |
32 | len = count; | 35 | len = count; |
33 | if(len < 0) | 36 | if (len < 0) |
34 | len = 0; | 37 | len = 0; |
35 | return len; | 38 | return len; |
36 | } | 39 | } |
@@ -41,11 +44,11 @@ static int write_proc_exitcode(struct file *file, const char __user *buffer, | |||
41 | char *end, buf[sizeof("nnnnn\0")]; | 44 | char *end, buf[sizeof("nnnnn\0")]; |
42 | int tmp; | 45 | int tmp; |
43 | 46 | ||
44 | if(copy_from_user(buf, buffer, count)) | 47 | if (copy_from_user(buf, buffer, count)) |
45 | return -EFAULT; | 48 | return -EFAULT; |
46 | 49 | ||
47 | tmp = simple_strtol(buf, &end, 0); | 50 | tmp = simple_strtol(buf, &end, 0); |
48 | if((*end != '\0') && !isspace(*end)) | 51 | if ((*end != '\0') && !isspace(*end)) |
49 | return -EINVAL; | 52 | return -EINVAL; |
50 | 53 | ||
51 | uml_exitcode = tmp; | 54 | uml_exitcode = tmp; |
@@ -57,7 +60,7 @@ static int make_proc_exitcode(void) | |||
57 | struct proc_dir_entry *ent; | 60 | struct proc_dir_entry *ent; |
58 | 61 | ||
59 | ent = create_proc_entry("exitcode", 0600, &proc_root); | 62 | ent = create_proc_entry("exitcode", 0600, &proc_root); |
60 | if(ent == NULL){ | 63 | if (ent == NULL) { |
61 | printk(KERN_WARNING "make_proc_exitcode : Failed to register " | 64 | printk(KERN_WARNING "make_proc_exitcode : Failed to register " |
62 | "/proc/exitcode\n"); | 65 | "/proc/exitcode\n"); |
63 | return 0; | 66 | return 0; |
diff --git a/arch/um/kernel/gmon_syms.c b/arch/um/kernel/gmon_syms.c index 734f873cab12..72eccd2a4113 100644 --- a/arch/um/kernel/gmon_syms.c +++ b/arch/um/kernel/gmon_syms.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -8,12 +8,13 @@ | |||
8 | extern void __bb_init_func(void *) __attribute__((weak)); | 8 | extern void __bb_init_func(void *) __attribute__((weak)); |
9 | EXPORT_SYMBOL(__bb_init_func); | 9 | EXPORT_SYMBOL(__bb_init_func); |
10 | 10 | ||
11 | /* This is defined (and referred to in profiling stub code) only by some GCC | 11 | /* |
12 | * This is defined (and referred to in profiling stub code) only by some GCC | ||
12 | * versions in libgcov. | 13 | * versions in libgcov. |
13 | * | 14 | * |
14 | * Since SuSE backported the fix, we cannot handle it depending on GCC version. | 15 | * Since SuSE backported the fix, we cannot handle it depending on GCC version. |
15 | * So, unconditionally export it. But also give it a weak declaration, which will | 16 | * So, unconditionally export it. But also give it a weak declaration, which |
16 | * be overridden by any other one. | 17 | * will be overridden by any other one. |
17 | */ | 18 | */ |
18 | 19 | ||
19 | extern void __gcov_init(void *) __attribute__((weak)); | 20 | extern void __gcov_init(void *) __attribute__((weak)); |
diff --git a/arch/um/kernel/gprof_syms.c b/arch/um/kernel/gprof_syms.c index 9244f018d44c..e2f043d0de6c 100644 --- a/arch/um/kernel/gprof_syms.c +++ b/arch/um/kernel/gprof_syms.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -7,14 +7,3 @@ | |||
7 | 7 | ||
8 | extern void mcount(void); | 8 | extern void mcount(void); |
9 | EXPORT_SYMBOL(mcount); | 9 | EXPORT_SYMBOL(mcount); |
10 | |||
11 | /* | ||
12 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
13 | * Emacs will notice this stuff at the end of the file and automatically | ||
14 | * adjust the settings for this buffer only. This must remain at the end | ||
15 | * of the file. | ||
16 | * --------------------------------------------------------------------------- | ||
17 | * Local variables: | ||
18 | * c-file-style: "linux" | ||
19 | * End: | ||
20 | */ | ||
diff --git a/arch/um/kernel/initrd.c b/arch/um/kernel/initrd.c index 16dc43e9d940..fa015565001b 100644 --- a/arch/um/kernel/initrd.c +++ b/arch/um/kernel/initrd.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -7,7 +7,6 @@ | |||
7 | #include "linux/bootmem.h" | 7 | #include "linux/bootmem.h" |
8 | #include "linux/initrd.h" | 8 | #include "linux/initrd.h" |
9 | #include "asm/types.h" | 9 | #include "asm/types.h" |
10 | #include "kern_util.h" | ||
11 | #include "initrd.h" | 10 | #include "initrd.h" |
12 | #include "init.h" | 11 | #include "init.h" |
13 | #include "os.h" | 12 | #include "os.h" |
@@ -21,18 +20,27 @@ static int __init read_initrd(void) | |||
21 | long long size; | 20 | long long size; |
22 | int err; | 21 | int err; |
23 | 22 | ||
24 | if(initrd == NULL) | 23 | if (initrd == NULL) |
25 | return 0; | 24 | return 0; |
26 | 25 | ||
27 | err = os_file_size(initrd, &size); | 26 | err = os_file_size(initrd, &size); |
28 | if(err) | 27 | if (err) |
29 | return 0; | 28 | return 0; |
30 | 29 | ||
30 | /* | ||
31 | * This is necessary because alloc_bootmem craps out if you | ||
32 | * ask for no memory. | ||
33 | */ | ||
34 | if (size == 0) { | ||
35 | printk(KERN_ERR "\"%\" is a zero-size initrd\n"); | ||
36 | return 0; | ||
37 | } | ||
38 | |||
31 | area = alloc_bootmem(size); | 39 | area = alloc_bootmem(size); |
32 | if(area == NULL) | 40 | if (area == NULL) |
33 | return 0; | 41 | return 0; |
34 | 42 | ||
35 | if(load_initrd(initrd, area, size) == -1) | 43 | if (load_initrd(initrd, area, size) == -1) |
36 | return 0; | 44 | return 0; |
37 | 45 | ||
38 | initrd_start = (unsigned long) area; | 46 | initrd_start = (unsigned long) area; |
@@ -59,13 +67,15 @@ int load_initrd(char *filename, void *buf, int size) | |||
59 | int fd, n; | 67 | int fd, n; |
60 | 68 | ||
61 | fd = os_open_file(filename, of_read(OPENFLAGS()), 0); | 69 | fd = os_open_file(filename, of_read(OPENFLAGS()), 0); |
62 | if(fd < 0){ | 70 | if (fd < 0) { |
63 | printk("Opening '%s' failed - err = %d\n", filename, -fd); | 71 | printk(KERN_ERR "Opening '%s' failed - err = %d\n", filename, |
72 | -fd); | ||
64 | return -1; | 73 | return -1; |
65 | } | 74 | } |
66 | n = os_read_file(fd, buf, size); | 75 | n = os_read_file(fd, buf, size); |
67 | if(n != size){ | 76 | if (n != size) { |
68 | printk("Read of %d bytes from '%s' failed, err = %d\n", size, | 77 | printk(KERN_ERR "Read of %d bytes from '%s' failed, " |
78 | "err = %d\n", size, | ||
69 | filename, -n); | 79 | filename, -n); |
70 | return -1; | 80 | return -1; |
71 | } | 81 | } |
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c index ba11ccd6a8a3..91587f8db340 100644 --- a/arch/um/kernel/irq.c +++ b/arch/um/kernel/irq.c | |||
@@ -107,10 +107,9 @@ int activate_fd(int irq, int fd, int type, void *dev_id) | |||
107 | struct pollfd *tmp_pfd; | 107 | struct pollfd *tmp_pfd; |
108 | struct irq_fd *new_fd, *irq_fd; | 108 | struct irq_fd *new_fd, *irq_fd; |
109 | unsigned long flags; | 109 | unsigned long flags; |
110 | int pid, events, err, n; | 110 | int events, err, n; |
111 | 111 | ||
112 | pid = os_getpid(); | 112 | err = os_set_fd_async(fd); |
113 | err = os_set_fd_async(fd, pid); | ||
114 | if (err < 0) | 113 | if (err < 0) |
115 | goto out; | 114 | goto out; |
116 | 115 | ||
@@ -127,7 +126,6 @@ int activate_fd(int irq, int fd, int type, void *dev_id) | |||
127 | .fd = fd, | 126 | .fd = fd, |
128 | .type = type, | 127 | .type = type, |
129 | .irq = irq, | 128 | .irq = irq, |
130 | .pid = pid, | ||
131 | .events = events, | 129 | .events = events, |
132 | .current_events = 0 } ); | 130 | .current_events = 0 } ); |
133 | 131 | ||
diff --git a/arch/um/kernel/ksyms.c b/arch/um/kernel/ksyms.c index 7c7142ba3bd7..5311ee93ede3 100644 --- a/arch/um/kernel/ksyms.c +++ b/arch/um/kernel/ksyms.c | |||
@@ -18,15 +18,11 @@ EXPORT_SYMBOL(set_signals); | |||
18 | EXPORT_SYMBOL(get_signals); | 18 | EXPORT_SYMBOL(get_signals); |
19 | EXPORT_SYMBOL(kernel_thread); | 19 | EXPORT_SYMBOL(kernel_thread); |
20 | EXPORT_SYMBOL(sys_waitpid); | 20 | EXPORT_SYMBOL(sys_waitpid); |
21 | EXPORT_SYMBOL(task_size); | ||
22 | EXPORT_SYMBOL(flush_tlb_range); | 21 | EXPORT_SYMBOL(flush_tlb_range); |
23 | EXPORT_SYMBOL(host_task_size); | ||
24 | EXPORT_SYMBOL(arch_validate); | 22 | EXPORT_SYMBOL(arch_validate); |
25 | EXPORT_SYMBOL(get_kmem_end); | ||
26 | 23 | ||
27 | EXPORT_SYMBOL(high_physmem); | 24 | EXPORT_SYMBOL(high_physmem); |
28 | EXPORT_SYMBOL(empty_zero_page); | 25 | EXPORT_SYMBOL(empty_zero_page); |
29 | EXPORT_SYMBOL(um_virt_to_phys); | ||
30 | EXPORT_SYMBOL(handle_page_fault); | 26 | EXPORT_SYMBOL(handle_page_fault); |
31 | EXPORT_SYMBOL(find_iomem); | 27 | EXPORT_SYMBOL(find_iomem); |
32 | 28 | ||
@@ -40,7 +36,6 @@ EXPORT_SYMBOL(uml_strdup); | |||
40 | EXPORT_SYMBOL(os_stat_fd); | 36 | EXPORT_SYMBOL(os_stat_fd); |
41 | EXPORT_SYMBOL(os_stat_file); | 37 | EXPORT_SYMBOL(os_stat_file); |
42 | EXPORT_SYMBOL(os_access); | 38 | EXPORT_SYMBOL(os_access); |
43 | EXPORT_SYMBOL(os_get_exec_close); | ||
44 | EXPORT_SYMBOL(os_set_exec_close); | 39 | EXPORT_SYMBOL(os_set_exec_close); |
45 | EXPORT_SYMBOL(os_getpid); | 40 | EXPORT_SYMBOL(os_getpid); |
46 | EXPORT_SYMBOL(os_open_file); | 41 | EXPORT_SYMBOL(os_open_file); |
diff --git a/arch/um/kernel/mem.c b/arch/um/kernel/mem.c index 59822dee438a..d872fdce1d7e 100644 --- a/arch/um/kernel/mem.c +++ b/arch/um/kernel/mem.c | |||
@@ -1,49 +1,41 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/stddef.h" | 6 | #include <linux/stddef.h> |
7 | #include "linux/kernel.h" | 7 | #include <linux/bootmem.h> |
8 | #include "linux/mm.h" | 8 | #include <linux/gfp.h> |
9 | #include "linux/bootmem.h" | 9 | #include <linux/highmem.h> |
10 | #include "linux/swap.h" | 10 | #include <linux/mm.h> |
11 | #include "linux/highmem.h" | 11 | #include <linux/swap.h> |
12 | #include "linux/gfp.h" | 12 | #include <asm/fixmap.h> |
13 | #include "asm/page.h" | 13 | #include <asm/page.h> |
14 | #include "asm/fixmap.h" | ||
15 | #include "asm/pgalloc.h" | ||
16 | #include "kern_util.h" | ||
17 | #include "as-layout.h" | 14 | #include "as-layout.h" |
15 | #include "init.h" | ||
18 | #include "kern.h" | 16 | #include "kern.h" |
17 | #include "kern_util.h" | ||
19 | #include "mem_user.h" | 18 | #include "mem_user.h" |
20 | #include "um_uaccess.h" | ||
21 | #include "os.h" | 19 | #include "os.h" |
22 | #include "linux/types.h" | ||
23 | #include "linux/string.h" | ||
24 | #include "init.h" | ||
25 | #include "kern_constants.h" | ||
26 | 20 | ||
27 | /* allocated in paging_init, zeroed in mem_init, and unchanged thereafter */ | 21 | /* allocated in paging_init, zeroed in mem_init, and unchanged thereafter */ |
28 | unsigned long *empty_zero_page = NULL; | 22 | unsigned long *empty_zero_page = NULL; |
29 | /* allocated in paging_init and unchanged thereafter */ | 23 | /* allocated in paging_init and unchanged thereafter */ |
30 | unsigned long *empty_bad_page = NULL; | 24 | unsigned long *empty_bad_page = NULL; |
25 | |||
26 | /* | ||
27 | * Initialized during boot, and readonly for initializing page tables | ||
28 | * afterwards | ||
29 | */ | ||
31 | pgd_t swapper_pg_dir[PTRS_PER_PGD]; | 30 | pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
31 | |||
32 | /* Initialized at boot time, and readonly after that */ | ||
32 | unsigned long long highmem; | 33 | unsigned long long highmem; |
33 | int kmalloc_ok = 0; | 34 | int kmalloc_ok = 0; |
34 | 35 | ||
36 | /* Used during early boot */ | ||
35 | static unsigned long brk_end; | 37 | static unsigned long brk_end; |
36 | 38 | ||
37 | void unmap_physmem(void) | ||
38 | { | ||
39 | os_unmap_memory((void *) brk_end, uml_reserved - brk_end); | ||
40 | } | ||
41 | |||
42 | static void map_cb(void *unused) | ||
43 | { | ||
44 | map_memory(brk_end, __pa(brk_end), uml_reserved - brk_end, 1, 1, 0); | ||
45 | } | ||
46 | |||
47 | #ifdef CONFIG_HIGHMEM | 39 | #ifdef CONFIG_HIGHMEM |
48 | static void setup_highmem(unsigned long highmem_start, | 40 | static void setup_highmem(unsigned long highmem_start, |
49 | unsigned long highmem_len) | 41 | unsigned long highmem_len) |
@@ -53,7 +45,7 @@ static void setup_highmem(unsigned long highmem_start, | |||
53 | int i; | 45 | int i; |
54 | 46 | ||
55 | highmem_pfn = __pa(highmem_start) >> PAGE_SHIFT; | 47 | highmem_pfn = __pa(highmem_start) >> PAGE_SHIFT; |
56 | for(i = 0; i < highmem_len >> PAGE_SHIFT; i++){ | 48 | for (i = 0; i < highmem_len >> PAGE_SHIFT; i++) { |
57 | page = &mem_map[highmem_pfn + i]; | 49 | page = &mem_map[highmem_pfn + i]; |
58 | ClearPageReserved(page); | 50 | ClearPageReserved(page); |
59 | init_page_count(page); | 51 | init_page_count(page); |
@@ -65,14 +57,13 @@ static void setup_highmem(unsigned long highmem_start, | |||
65 | void __init mem_init(void) | 57 | void __init mem_init(void) |
66 | { | 58 | { |
67 | /* clear the zero-page */ | 59 | /* clear the zero-page */ |
68 | memset((void *) empty_zero_page, 0, PAGE_SIZE); | 60 | memset(empty_zero_page, 0, PAGE_SIZE); |
69 | 61 | ||
70 | /* Map in the area just after the brk now that kmalloc is about | 62 | /* Map in the area just after the brk now that kmalloc is about |
71 | * to be turned on. | 63 | * to be turned on. |
72 | */ | 64 | */ |
73 | brk_end = (unsigned long) UML_ROUND_UP(sbrk(0)); | 65 | brk_end = (unsigned long) UML_ROUND_UP(sbrk(0)); |
74 | map_cb(NULL); | 66 | map_memory(brk_end, __pa(brk_end), uml_reserved - brk_end, 1, 1, 0); |
75 | initial_thread_cb(map_cb, NULL); | ||
76 | free_bootmem(__pa(brk_end), uml_reserved - brk_end); | 67 | free_bootmem(__pa(brk_end), uml_reserved - brk_end); |
77 | uml_reserved = brk_end; | 68 | uml_reserved = brk_end; |
78 | 69 | ||
@@ -85,7 +76,7 @@ void __init mem_init(void) | |||
85 | #endif | 76 | #endif |
86 | num_physpages = totalram_pages; | 77 | num_physpages = totalram_pages; |
87 | max_pfn = totalram_pages; | 78 | max_pfn = totalram_pages; |
88 | printk(KERN_INFO "Memory: %luk available\n", | 79 | printk(KERN_INFO "Memory: %luk available\n", |
89 | (unsigned long) nr_free_pages() << (PAGE_SHIFT-10)); | 80 | (unsigned long) nr_free_pages() << (PAGE_SHIFT-10)); |
90 | kmalloc_ok = 1; | 81 | kmalloc_ok = 1; |
91 | 82 | ||
@@ -119,7 +110,7 @@ static void __init one_md_table_init(pud_t *pud) | |||
119 | #endif | 110 | #endif |
120 | } | 111 | } |
121 | 112 | ||
122 | static void __init fixrange_init(unsigned long start, unsigned long end, | 113 | static void __init fixrange_init(unsigned long start, unsigned long end, |
123 | pgd_t *pgd_base) | 114 | pgd_t *pgd_base) |
124 | { | 115 | { |
125 | pgd_t *pgd; | 116 | pgd_t *pgd; |
@@ -138,7 +129,7 @@ static void __init fixrange_init(unsigned long start, unsigned long end, | |||
138 | if (pud_none(*pud)) | 129 | if (pud_none(*pud)) |
139 | one_md_table_init(pud); | 130 | one_md_table_init(pud); |
140 | pmd = pmd_offset(pud, vaddr); | 131 | pmd = pmd_offset(pud, vaddr); |
141 | for (; (j < PTRS_PER_PMD) && (vaddr != end); pmd++, j++) { | 132 | for (; (j < PTRS_PER_PMD) && (vaddr < end); pmd++, j++) { |
142 | one_page_table_init(pmd); | 133 | one_page_table_init(pmd); |
143 | vaddr += PMD_SIZE; | 134 | vaddr += PMD_SIZE; |
144 | } | 135 | } |
@@ -152,7 +143,7 @@ pgprot_t kmap_prot; | |||
152 | 143 | ||
153 | #define kmap_get_fixmap_pte(vaddr) \ | 144 | #define kmap_get_fixmap_pte(vaddr) \ |
154 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\ | 145 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\ |
155 | (vaddr)), (vaddr)) | 146 | (vaddr)), (vaddr)) |
156 | 147 | ||
157 | static void __init kmap_init(void) | 148 | static void __init kmap_init(void) |
158 | { | 149 | { |
@@ -197,21 +188,23 @@ static void __init fixaddr_user_init( void) | |||
197 | pud_t *pud; | 188 | pud_t *pud; |
198 | pmd_t *pmd; | 189 | pmd_t *pmd; |
199 | pte_t *pte; | 190 | pte_t *pte; |
200 | unsigned long paddr, vaddr = FIXADDR_USER_START; | 191 | phys_t p; |
192 | unsigned long v, vaddr = FIXADDR_USER_START; | ||
201 | 193 | ||
202 | if ( ! size ) | 194 | if (!size) |
203 | return; | 195 | return; |
204 | 196 | ||
205 | fixrange_init( FIXADDR_USER_START, FIXADDR_USER_END, swapper_pg_dir); | 197 | fixrange_init( FIXADDR_USER_START, FIXADDR_USER_END, swapper_pg_dir); |
206 | paddr = (unsigned long)alloc_bootmem_low_pages( size); | 198 | v = (unsigned long) alloc_bootmem_low_pages(size); |
207 | memcpy( (void *)paddr, (void *)FIXADDR_USER_START, size); | 199 | memcpy((void *) v , (void *) FIXADDR_USER_START, size); |
208 | paddr = __pa(paddr); | 200 | p = __pa(v); |
209 | for ( ; size > 0; size-=PAGE_SIZE, vaddr+=PAGE_SIZE, paddr+=PAGE_SIZE){ | 201 | for ( ; size > 0; size -= PAGE_SIZE, vaddr += PAGE_SIZE, |
202 | p += PAGE_SIZE) { | ||
210 | pgd = swapper_pg_dir + pgd_index(vaddr); | 203 | pgd = swapper_pg_dir + pgd_index(vaddr); |
211 | pud = pud_offset(pgd, vaddr); | 204 | pud = pud_offset(pgd, vaddr); |
212 | pmd = pmd_offset(pud, vaddr); | 205 | pmd = pmd_offset(pud, vaddr); |
213 | pte = pte_offset_kernel(pmd, vaddr); | 206 | pte = pte_offset_kernel(pmd, vaddr); |
214 | pte_set_val( (*pte), paddr, PAGE_READONLY); | 207 | pte_set_val(*pte, p, PAGE_READONLY); |
215 | } | 208 | } |
216 | #endif | 209 | #endif |
217 | } | 210 | } |
@@ -223,7 +216,7 @@ void __init paging_init(void) | |||
223 | 216 | ||
224 | empty_zero_page = (unsigned long *) alloc_bootmem_low_pages(PAGE_SIZE); | 217 | empty_zero_page = (unsigned long *) alloc_bootmem_low_pages(PAGE_SIZE); |
225 | empty_bad_page = (unsigned long *) alloc_bootmem_low_pages(PAGE_SIZE); | 218 | empty_bad_page = (unsigned long *) alloc_bootmem_low_pages(PAGE_SIZE); |
226 | for(i = 0; i < ARRAY_SIZE(zones_size); i++) | 219 | for (i = 0; i < ARRAY_SIZE(zones_size); i++) |
227 | zones_size[i] = 0; | 220 | zones_size[i] = 0; |
228 | 221 | ||
229 | zones_size[ZONE_NORMAL] = (end_iomem >> PAGE_SHIFT) - | 222 | zones_size[ZONE_NORMAL] = (end_iomem >> PAGE_SHIFT) - |
@@ -253,32 +246,33 @@ struct page *arch_validate(struct page *page, gfp_t mask, int order) | |||
253 | int i; | 246 | int i; |
254 | 247 | ||
255 | again: | 248 | again: |
256 | if(page == NULL) | 249 | if (page == NULL) |
257 | return page; | 250 | return page; |
258 | if(PageHighMem(page)) | 251 | if (PageHighMem(page)) |
259 | return page; | 252 | return page; |
260 | 253 | ||
261 | addr = (unsigned long) page_address(page); | 254 | addr = (unsigned long) page_address(page); |
262 | for(i = 0; i < (1 << order); i++){ | 255 | for (i = 0; i < (1 << order); i++) { |
263 | current->thread.fault_addr = (void *) addr; | 256 | current->thread.fault_addr = (void *) addr; |
264 | if(__do_copy_to_user((void __user *) addr, &zero, | 257 | if (__do_copy_to_user((void __user *) addr, &zero, |
265 | sizeof(zero), | 258 | sizeof(zero), |
266 | ¤t->thread.fault_addr, | 259 | ¤t->thread.fault_addr, |
267 | ¤t->thread.fault_catcher)){ | 260 | ¤t->thread.fault_catcher)) { |
268 | if(!(mask & __GFP_WAIT)) | 261 | if (!(mask & __GFP_WAIT)) |
269 | return NULL; | 262 | return NULL; |
270 | else break; | 263 | else break; |
271 | } | 264 | } |
272 | addr += PAGE_SIZE; | 265 | addr += PAGE_SIZE; |
273 | } | 266 | } |
274 | 267 | ||
275 | if(i == (1 << order)) | 268 | if (i == (1 << order)) |
276 | return page; | 269 | return page; |
277 | page = alloc_pages(mask, order); | 270 | page = alloc_pages(mask, order); |
278 | goto again; | 271 | goto again; |
279 | } | 272 | } |
280 | 273 | ||
281 | /* This can't do anything because nothing in the kernel image can be freed | 274 | /* |
275 | * This can't do anything because nothing in the kernel image can be freed | ||
282 | * since it's not in kernel physical memory. | 276 | * since it's not in kernel physical memory. |
283 | */ | 277 | */ |
284 | 278 | ||
@@ -290,8 +284,8 @@ void free_initmem(void) | |||
290 | void free_initrd_mem(unsigned long start, unsigned long end) | 284 | void free_initrd_mem(unsigned long start, unsigned long end) |
291 | { | 285 | { |
292 | if (start < end) | 286 | if (start < end) |
293 | printk ("Freeing initrd memory: %ldk freed\n", | 287 | printk(KERN_INFO "Freeing initrd memory: %ldk freed\n", |
294 | (end - start) >> 10); | 288 | (end - start) >> 10); |
295 | for (; start < end; start += PAGE_SIZE) { | 289 | for (; start < end; start += PAGE_SIZE) { |
296 | ClearPageReserved(virt_to_page(start)); | 290 | ClearPageReserved(virt_to_page(start)); |
297 | init_page_count(virt_to_page(start)); | 291 | init_page_count(virt_to_page(start)); |
@@ -308,32 +302,31 @@ void show_mem(void) | |||
308 | int highmem = 0; | 302 | int highmem = 0; |
309 | struct page *page; | 303 | struct page *page; |
310 | 304 | ||
311 | printk("Mem-info:\n"); | 305 | printk(KERN_INFO "Mem-info:\n"); |
312 | show_free_areas(); | 306 | show_free_areas(); |
313 | printk("Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); | 307 | printk(KERN_INFO "Free swap: %6ldkB\n", |
308 | nr_swap_pages<<(PAGE_SHIFT-10)); | ||
314 | pfn = max_mapnr; | 309 | pfn = max_mapnr; |
315 | while(pfn-- > 0) { | 310 | while (pfn-- > 0) { |
316 | page = pfn_to_page(pfn); | 311 | page = pfn_to_page(pfn); |
317 | total++; | 312 | total++; |
318 | if(PageHighMem(page)) | 313 | if (PageHighMem(page)) |
319 | highmem++; | 314 | highmem++; |
320 | if(PageReserved(page)) | 315 | if (PageReserved(page)) |
321 | reserved++; | 316 | reserved++; |
322 | else if(PageSwapCache(page)) | 317 | else if (PageSwapCache(page)) |
323 | cached++; | 318 | cached++; |
324 | else if(page_count(page)) | 319 | else if (page_count(page)) |
325 | shared += page_count(page) - 1; | 320 | shared += page_count(page) - 1; |
326 | } | 321 | } |
327 | printk("%d pages of RAM\n", total); | 322 | printk(KERN_INFO "%d pages of RAM\n", total); |
328 | printk("%d pages of HIGHMEM\n", highmem); | 323 | printk(KERN_INFO "%d pages of HIGHMEM\n", highmem); |
329 | printk("%d reserved pages\n", reserved); | 324 | printk(KERN_INFO "%d reserved pages\n", reserved); |
330 | printk("%d pages shared\n", shared); | 325 | printk(KERN_INFO "%d pages shared\n", shared); |
331 | printk("%d pages swap cached\n", cached); | 326 | printk(KERN_INFO "%d pages swap cached\n", cached); |
332 | } | 327 | } |
333 | 328 | ||
334 | /* | 329 | /* Allocate and free page tables. */ |
335 | * Allocate and free page tables. | ||
336 | */ | ||
337 | 330 | ||
338 | pgd_t *pgd_alloc(struct mm_struct *mm) | 331 | pgd_t *pgd_alloc(struct mm_struct *mm) |
339 | { | 332 | { |
@@ -341,14 +334,14 @@ pgd_t *pgd_alloc(struct mm_struct *mm) | |||
341 | 334 | ||
342 | if (pgd) { | 335 | if (pgd) { |
343 | memset(pgd, 0, USER_PTRS_PER_PGD * sizeof(pgd_t)); | 336 | memset(pgd, 0, USER_PTRS_PER_PGD * sizeof(pgd_t)); |
344 | memcpy(pgd + USER_PTRS_PER_PGD, | 337 | memcpy(pgd + USER_PTRS_PER_PGD, |
345 | swapper_pg_dir + USER_PTRS_PER_PGD, | 338 | swapper_pg_dir + USER_PTRS_PER_PGD, |
346 | (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t)); | 339 | (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t)); |
347 | } | 340 | } |
348 | return pgd; | 341 | return pgd; |
349 | } | 342 | } |
350 | 343 | ||
351 | void pgd_free(pgd_t *pgd) | 344 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
352 | { | 345 | { |
353 | free_page((unsigned long) pgd); | 346 | free_page((unsigned long) pgd); |
354 | } | 347 | } |
@@ -368,3 +361,15 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address) | |||
368 | pte = alloc_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO); | 361 | pte = alloc_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO); |
369 | return pte; | 362 | return pte; |
370 | } | 363 | } |
364 | |||
365 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
366 | pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) | ||
367 | { | ||
368 | pmd_t *pmd = (pmd_t *) __get_free_page(GFP_KERNEL); | ||
369 | |||
370 | if (pmd) | ||
371 | memset(pmd, 0, PAGE_SIZE); | ||
372 | |||
373 | return pmd; | ||
374 | } | ||
375 | #endif | ||
diff --git a/arch/um/kernel/physmem.c b/arch/um/kernel/physmem.c index e66432f42485..9757085a0220 100644 --- a/arch/um/kernel/physmem.c +++ b/arch/um/kernel/physmem.c | |||
@@ -55,16 +55,6 @@ int __init init_maps(unsigned long physmem, unsigned long iomem, | |||
55 | return 0; | 55 | return 0; |
56 | } | 56 | } |
57 | 57 | ||
58 | /* Changed during early boot */ | ||
59 | static unsigned long kmem_top = 0; | ||
60 | |||
61 | unsigned long get_kmem_end(void) | ||
62 | { | ||
63 | if (kmem_top == 0) | ||
64 | kmem_top = host_task_size - 1024 * 1024; | ||
65 | return kmem_top; | ||
66 | } | ||
67 | |||
68 | void map_memory(unsigned long virt, unsigned long phys, unsigned long len, | 58 | void map_memory(unsigned long virt, unsigned long phys, unsigned long len, |
69 | int r, int w, int x) | 59 | int r, int w, int x) |
70 | { | 60 | { |
@@ -174,10 +164,10 @@ __uml_setup("iomem=", parse_iomem, | |||
174 | * setup_iomem, both of which run during early boot. Afterwards, it's | 164 | * setup_iomem, both of which run during early boot. Afterwards, it's |
175 | * unchanged. | 165 | * unchanged. |
176 | */ | 166 | */ |
177 | struct iomem_region *iomem_regions = NULL; | 167 | struct iomem_region *iomem_regions; |
178 | 168 | ||
179 | /* Initialized in parse_iomem */ | 169 | /* Initialized in parse_iomem and unchanged thereafter */ |
180 | int iomem_size = 0; | 170 | int iomem_size; |
181 | 171 | ||
182 | unsigned long find_iomem(char *driver, unsigned long *len_out) | 172 | unsigned long find_iomem(char *driver, unsigned long *len_out) |
183 | { | 173 | { |
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c index 0eae00b3e588..c07961bedb75 100644 --- a/arch/um/kernel/process.c +++ b/arch/um/kernel/process.c | |||
@@ -4,19 +4,21 @@ | |||
4 | * Licensed under the GPL | 4 | * Licensed under the GPL |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "linux/stddef.h" | 7 | #include <linux/stddef.h> |
8 | #include "linux/err.h" | 8 | #include <linux/err.h> |
9 | #include "linux/hardirq.h" | 9 | #include <linux/hardirq.h> |
10 | #include "linux/mm.h" | 10 | #include <linux/gfp.h> |
11 | #include "linux/personality.h" | 11 | #include <linux/mm.h> |
12 | #include "linux/proc_fs.h" | 12 | #include <linux/personality.h> |
13 | #include "linux/ptrace.h" | 13 | #include <linux/proc_fs.h> |
14 | #include "linux/random.h" | 14 | #include <linux/ptrace.h> |
15 | #include "linux/sched.h" | 15 | #include <linux/random.h> |
16 | #include "linux/tick.h" | 16 | #include <linux/sched.h> |
17 | #include "linux/threads.h" | 17 | #include <linux/tick.h> |
18 | #include "asm/pgtable.h" | 18 | #include <linux/threads.h> |
19 | #include "asm/uaccess.h" | 19 | #include <asm/current.h> |
20 | #include <asm/pgtable.h> | ||
21 | #include <asm/uaccess.h> | ||
20 | #include "as-layout.h" | 22 | #include "as-layout.h" |
21 | #include "kern_util.h" | 23 | #include "kern_util.h" |
22 | #include "os.h" | 24 | #include "os.h" |
@@ -30,7 +32,7 @@ | |||
30 | */ | 32 | */ |
31 | struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } }; | 33 | struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } }; |
32 | 34 | ||
33 | static inline int external_pid(struct task_struct *task) | 35 | static inline int external_pid(void) |
34 | { | 36 | { |
35 | /* FIXME: Need to look up userspace_pid by cpu */ | 37 | /* FIXME: Need to look up userspace_pid by cpu */ |
36 | return userspace_pid[0]; | 38 | return userspace_pid[0]; |
@@ -40,7 +42,7 @@ int pid_to_processor_id(int pid) | |||
40 | { | 42 | { |
41 | int i; | 43 | int i; |
42 | 44 | ||
43 | for(i = 0; i < ncpus; i++) { | 45 | for (i = 0; i < ncpus; i++) { |
44 | if (cpu_tasks[i].pid == pid) | 46 | if (cpu_tasks[i].pid == pid) |
45 | return i; | 47 | return i; |
46 | } | 48 | } |
@@ -60,8 +62,6 @@ unsigned long alloc_stack(int order, int atomic) | |||
60 | if (atomic) | 62 | if (atomic) |
61 | flags = GFP_ATOMIC; | 63 | flags = GFP_ATOMIC; |
62 | page = __get_free_pages(flags, order); | 64 | page = __get_free_pages(flags, order); |
63 | if (page == 0) | ||
64 | return 0; | ||
65 | 65 | ||
66 | return page; | 66 | return page; |
67 | } | 67 | } |
@@ -80,15 +80,15 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) | |||
80 | static inline void set_current(struct task_struct *task) | 80 | static inline void set_current(struct task_struct *task) |
81 | { | 81 | { |
82 | cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) | 82 | cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) |
83 | { external_pid(task), task }); | 83 | { external_pid(), task }); |
84 | } | 84 | } |
85 | 85 | ||
86 | extern void arch_switch_to(struct task_struct *from, struct task_struct *to); | 86 | extern void arch_switch_to(struct task_struct *to); |
87 | 87 | ||
88 | void *_switch_to(void *prev, void *next, void *last) | 88 | void *_switch_to(void *prev, void *next, void *last) |
89 | { | 89 | { |
90 | struct task_struct *from = prev; | 90 | struct task_struct *from = prev; |
91 | struct task_struct *to= next; | 91 | struct task_struct *to = next; |
92 | 92 | ||
93 | to->thread.prev_sched = from; | 93 | to->thread.prev_sched = from; |
94 | set_current(to); | 94 | set_current(to); |
@@ -99,13 +99,13 @@ void *_switch_to(void *prev, void *next, void *last) | |||
99 | switch_threads(&from->thread.switch_buf, | 99 | switch_threads(&from->thread.switch_buf, |
100 | &to->thread.switch_buf); | 100 | &to->thread.switch_buf); |
101 | 101 | ||
102 | arch_switch_to(current->thread.prev_sched, current); | 102 | arch_switch_to(current); |
103 | 103 | ||
104 | if (current->thread.saved_task) | 104 | if (current->thread.saved_task) |
105 | show_regs(&(current->thread.regs)); | 105 | show_regs(&(current->thread.regs)); |
106 | next= current->thread.saved_task; | 106 | to = current->thread.saved_task; |
107 | prev= current; | 107 | from = current; |
108 | } while(current->thread.saved_task); | 108 | } while (current->thread.saved_task); |
109 | 109 | ||
110 | return current->thread.prev_sched; | 110 | return current->thread.prev_sched; |
111 | 111 | ||
@@ -163,8 +163,6 @@ void new_thread_handler(void) | |||
163 | void fork_handler(void) | 163 | void fork_handler(void) |
164 | { | 164 | { |
165 | force_flush_all(); | 165 | force_flush_all(); |
166 | if (current->thread.prev_sched == NULL) | ||
167 | panic("blech"); | ||
168 | 166 | ||
169 | schedule_tail(current->thread.prev_sched); | 167 | schedule_tail(current->thread.prev_sched); |
170 | 168 | ||
@@ -173,7 +171,7 @@ void fork_handler(void) | |||
173 | * arch_switch_to isn't needed. We could want to apply this to | 171 | * arch_switch_to isn't needed. We could want to apply this to |
174 | * improve performance. -bb | 172 | * improve performance. -bb |
175 | */ | 173 | */ |
176 | arch_switch_to(current->thread.prev_sched, current); | 174 | arch_switch_to(current); |
177 | 175 | ||
178 | current->thread.prev_sched = NULL; | 176 | current->thread.prev_sched = NULL; |
179 | 177 | ||
@@ -204,7 +202,7 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, | |||
204 | arch_copy_thread(¤t->thread.arch, &p->thread.arch); | 202 | arch_copy_thread(¤t->thread.arch, &p->thread.arch); |
205 | } | 203 | } |
206 | else { | 204 | else { |
207 | init_thread_registers(&p->thread.regs.regs); | 205 | get_safe_registers(p->thread.regs.regs.gp); |
208 | p->thread.request.u.thread = current->thread.request.u.thread; | 206 | p->thread.request.u.thread = current->thread.request.u.thread; |
209 | handler = new_thread_handler; | 207 | handler = new_thread_handler; |
210 | } | 208 | } |
@@ -237,7 +235,7 @@ void default_idle(void) | |||
237 | { | 235 | { |
238 | unsigned long long nsecs; | 236 | unsigned long long nsecs; |
239 | 237 | ||
240 | while(1) { | 238 | while (1) { |
241 | /* endless idle loop with no priority at all */ | 239 | /* endless idle loop with no priority at all */ |
242 | 240 | ||
243 | /* | 241 | /* |
@@ -256,53 +254,10 @@ void default_idle(void) | |||
256 | 254 | ||
257 | void cpu_idle(void) | 255 | void cpu_idle(void) |
258 | { | 256 | { |
259 | cpu_tasks[current_thread->cpu].pid = os_getpid(); | 257 | cpu_tasks[current_thread_info()->cpu].pid = os_getpid(); |
260 | default_idle(); | 258 | default_idle(); |
261 | } | 259 | } |
262 | 260 | ||
263 | void *um_virt_to_phys(struct task_struct *task, unsigned long addr, | ||
264 | pte_t *pte_out) | ||
265 | { | ||
266 | pgd_t *pgd; | ||
267 | pud_t *pud; | ||
268 | pmd_t *pmd; | ||
269 | pte_t *pte; | ||
270 | pte_t ptent; | ||
271 | |||
272 | if (task->mm == NULL) | ||
273 | return ERR_PTR(-EINVAL); | ||
274 | pgd = pgd_offset(task->mm, addr); | ||
275 | if (!pgd_present(*pgd)) | ||
276 | return ERR_PTR(-EINVAL); | ||
277 | |||
278 | pud = pud_offset(pgd, addr); | ||
279 | if (!pud_present(*pud)) | ||
280 | return ERR_PTR(-EINVAL); | ||
281 | |||
282 | pmd = pmd_offset(pud, addr); | ||
283 | if (!pmd_present(*pmd)) | ||
284 | return ERR_PTR(-EINVAL); | ||
285 | |||
286 | pte = pte_offset_kernel(pmd, addr); | ||
287 | ptent = *pte; | ||
288 | if (!pte_present(ptent)) | ||
289 | return ERR_PTR(-EINVAL); | ||
290 | |||
291 | if (pte_out != NULL) | ||
292 | *pte_out = ptent; | ||
293 | return (void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK); | ||
294 | } | ||
295 | |||
296 | char *current_cmd(void) | ||
297 | { | ||
298 | #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM) | ||
299 | return "(Unknown)"; | ||
300 | #else | ||
301 | void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL); | ||
302 | return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr); | ||
303 | #endif | ||
304 | } | ||
305 | |||
306 | void dump_thread(struct pt_regs *regs, struct user *u) | 261 | void dump_thread(struct pt_regs *regs, struct user *u) |
307 | { | 262 | { |
308 | } | 263 | } |
@@ -317,7 +272,7 @@ int user_context(unsigned long sp) | |||
317 | unsigned long stack; | 272 | unsigned long stack; |
318 | 273 | ||
319 | stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); | 274 | stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); |
320 | return stack != (unsigned long) current_thread; | 275 | return stack != (unsigned long) current_thread_info(); |
321 | } | 276 | } |
322 | 277 | ||
323 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; | 278 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; |
@@ -331,7 +286,7 @@ void do_uml_exitcalls(void) | |||
331 | (*call)(); | 286 | (*call)(); |
332 | } | 287 | } |
333 | 288 | ||
334 | char *uml_strdup(char *string) | 289 | char *uml_strdup(const char *string) |
335 | { | 290 | { |
336 | return kstrdup(string, GFP_KERNEL); | 291 | return kstrdup(string, GFP_KERNEL); |
337 | } | 292 | } |
@@ -359,7 +314,7 @@ int strlen_user_proc(char __user *str) | |||
359 | int smp_sigio_handler(void) | 314 | int smp_sigio_handler(void) |
360 | { | 315 | { |
361 | #ifdef CONFIG_SMP | 316 | #ifdef CONFIG_SMP |
362 | int cpu = current_thread->cpu; | 317 | int cpu = current_thread_info()->cpu; |
363 | IPI_handler(cpu); | 318 | IPI_handler(cpu); |
364 | if (cpu != 0) | 319 | if (cpu != 0) |
365 | return 1; | 320 | return 1; |
@@ -369,7 +324,7 @@ int smp_sigio_handler(void) | |||
369 | 324 | ||
370 | int cpu(void) | 325 | int cpu(void) |
371 | { | 326 | { |
372 | return current_thread->cpu; | 327 | return current_thread_info()->cpu; |
373 | } | 328 | } |
374 | 329 | ||
375 | static atomic_t using_sysemu = ATOMIC_INIT(0); | 330 | static atomic_t using_sysemu = ATOMIC_INIT(0); |
@@ -435,7 +390,7 @@ int singlestepping(void * t) | |||
435 | { | 390 | { |
436 | struct task_struct *task = t ? t : current; | 391 | struct task_struct *task = t ? t : current; |
437 | 392 | ||
438 | if ( ! (task->ptrace & PT_DTRACE) ) | 393 | if (!(task->ptrace & PT_DTRACE)) |
439 | return 0; | 394 | return 0; |
440 | 395 | ||
441 | if (task->thread.singlestep_syscall) | 396 | if (task->thread.singlestep_syscall) |
@@ -459,3 +414,46 @@ unsigned long arch_align_stack(unsigned long sp) | |||
459 | return sp & ~0xf; | 414 | return sp & ~0xf; |
460 | } | 415 | } |
461 | #endif | 416 | #endif |
417 | |||
418 | unsigned long get_wchan(struct task_struct *p) | ||
419 | { | ||
420 | unsigned long stack_page, sp, ip; | ||
421 | bool seen_sched = 0; | ||
422 | |||
423 | if ((p == NULL) || (p == current) || (p->state == TASK_RUNNING)) | ||
424 | return 0; | ||
425 | |||
426 | stack_page = (unsigned long) task_stack_page(p); | ||
427 | /* Bail if the process has no kernel stack for some reason */ | ||
428 | if (stack_page == 0) | ||
429 | return 0; | ||
430 | |||
431 | sp = p->thread.switch_buf->JB_SP; | ||
432 | /* | ||
433 | * Bail if the stack pointer is below the bottom of the kernel | ||
434 | * stack for some reason | ||
435 | */ | ||
436 | if (sp < stack_page) | ||
437 | return 0; | ||
438 | |||
439 | while (sp < stack_page + THREAD_SIZE) { | ||
440 | ip = *((unsigned long *) sp); | ||
441 | if (in_sched_functions(ip)) | ||
442 | /* Ignore everything until we're above the scheduler */ | ||
443 | seen_sched = 1; | ||
444 | else if (kernel_text_address(ip) && seen_sched) | ||
445 | return ip; | ||
446 | |||
447 | sp += sizeof(unsigned long); | ||
448 | } | ||
449 | |||
450 | return 0; | ||
451 | } | ||
452 | |||
453 | int elf_core_copy_fpregs(struct task_struct *t, elf_fpregset_t *fpu) | ||
454 | { | ||
455 | int cpu = current_thread_info()->cpu; | ||
456 | |||
457 | return save_fp_registers(userspace_pid[cpu], (unsigned long *) fpu); | ||
458 | } | ||
459 | |||
diff --git a/arch/um/kernel/reboot.c b/arch/um/kernel/reboot.c index 04cebcf0679f..00197d3d21ec 100644 --- a/arch/um/kernel/reboot.c +++ b/arch/um/kernel/reboot.c | |||
@@ -4,6 +4,7 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/sched.h" | 6 | #include "linux/sched.h" |
7 | #include "kern_util.h" | ||
7 | #include "os.h" | 8 | #include "os.h" |
8 | #include "skas.h" | 9 | #include "skas.h" |
9 | 10 | ||
@@ -11,7 +12,7 @@ void (*pm_power_off)(void); | |||
11 | 12 | ||
12 | static void kill_off_processes(void) | 13 | static void kill_off_processes(void) |
13 | { | 14 | { |
14 | if(proc_mm) | 15 | if (proc_mm) |
15 | /* | 16 | /* |
16 | * FIXME: need to loop over userspace_pids | 17 | * FIXME: need to loop over userspace_pids |
17 | */ | 18 | */ |
@@ -21,8 +22,8 @@ static void kill_off_processes(void) | |||
21 | int pid, me; | 22 | int pid, me; |
22 | 23 | ||
23 | me = os_getpid(); | 24 | me = os_getpid(); |
24 | for_each_process(p){ | 25 | for_each_process(p) { |
25 | if(p->mm == NULL) | 26 | if (p->mm == NULL) |
26 | continue; | 27 | continue; |
27 | 28 | ||
28 | pid = p->mm->context.id.u.pid; | 29 | pid = p->mm->context.id.u.pid; |
diff --git a/arch/um/kernel/sigio.c b/arch/um/kernel/sigio.c index 89f9866a1354..2b272b63b514 100644 --- a/arch/um/kernel/sigio.c +++ b/arch/um/kernel/sigio.c | |||
@@ -1,18 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 - 2003 Jeff Dike (jdike@addtoit.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/kernel.h" | 6 | #include <linux/interrupt.h> |
7 | #include "linux/list.h" | ||
8 | #include "linux/slab.h" | ||
9 | #include "linux/signal.h" | ||
10 | #include "linux/interrupt.h" | ||
11 | #include "init.h" | ||
12 | #include "sigio.h" | ||
13 | #include "irq_user.h" | ||
14 | #include "irq_kern.h" | 7 | #include "irq_kern.h" |
15 | #include "os.h" | 8 | #include "os.h" |
9 | #include "sigio.h" | ||
16 | 10 | ||
17 | /* Protected by sigio_lock() called from write_sigio_workaround */ | 11 | /* Protected by sigio_lock() called from write_sigio_workaround */ |
18 | static int sigio_irq_fd = -1; | 12 | static int sigio_irq_fd = -1; |
@@ -33,9 +27,9 @@ int write_sigio_irq(int fd) | |||
33 | err = um_request_irq(SIGIO_WRITE_IRQ, fd, IRQ_READ, sigio_interrupt, | 27 | err = um_request_irq(SIGIO_WRITE_IRQ, fd, IRQ_READ, sigio_interrupt, |
34 | IRQF_DISABLED|IRQF_SAMPLE_RANDOM, "write sigio", | 28 | IRQF_DISABLED|IRQF_SAMPLE_RANDOM, "write sigio", |
35 | NULL); | 29 | NULL); |
36 | if(err){ | 30 | if (err) { |
37 | printk("write_sigio_irq : um_request_irq failed, err = %d\n", | 31 | printk(KERN_ERR "write_sigio_irq : um_request_irq failed, " |
38 | err); | 32 | "err = %d\n", err); |
39 | return -1; | 33 | return -1; |
40 | } | 34 | } |
41 | sigio_irq_fd = fd; | 35 | sigio_irq_fd = fd; |
diff --git a/arch/um/kernel/signal.c b/arch/um/kernel/signal.c index 19cb97733937..b0fce720c4d0 100644 --- a/arch/um/kernel/signal.c +++ b/arch/um/kernel/signal.c | |||
@@ -3,12 +3,12 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/module.h" | 6 | #include <linux/module.h> |
7 | #include "linux/ptrace.h" | 7 | #include <linux/ptrace.h> |
8 | #include "linux/sched.h" | 8 | #include <linux/sched.h> |
9 | #include "asm/siginfo.h" | 9 | #include <asm/siginfo.h> |
10 | #include "asm/signal.h" | 10 | #include <asm/signal.h> |
11 | #include "asm/unistd.h" | 11 | #include <asm/unistd.h> |
12 | #include "frame_kern.h" | 12 | #include "frame_kern.h" |
13 | #include "kern_util.h" | 13 | #include "kern_util.h" |
14 | #include "sigcontext.h" | 14 | #include "sigcontext.h" |
@@ -36,7 +36,7 @@ static int handle_signal(struct pt_regs *regs, unsigned long signr, | |||
36 | /* Did we come from a system call? */ | 36 | /* Did we come from a system call? */ |
37 | if (PT_REGS_SYSCALL_NR(regs) >= 0) { | 37 | if (PT_REGS_SYSCALL_NR(regs) >= 0) { |
38 | /* If so, check system call restarting.. */ | 38 | /* If so, check system call restarting.. */ |
39 | switch(PT_REGS_SYSCALL_RET(regs)) { | 39 | switch (PT_REGS_SYSCALL_RET(regs)) { |
40 | case -ERESTART_RESTARTBLOCK: | 40 | case -ERESTART_RESTARTBLOCK: |
41 | case -ERESTARTNOHAND: | 41 | case -ERESTARTNOHAND: |
42 | PT_REGS_SYSCALL_RET(regs) = -EINTR; | 42 | PT_REGS_SYSCALL_RET(regs) = -EINTR; |
@@ -116,7 +116,7 @@ static int kern_do_signal(struct pt_regs *regs) | |||
116 | /* Did we come from a system call? */ | 116 | /* Did we come from a system call? */ |
117 | if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) { | 117 | if (!handled_sig && (PT_REGS_SYSCALL_NR(regs) >= 0)) { |
118 | /* Restart the system call - no handlers present */ | 118 | /* Restart the system call - no handlers present */ |
119 | switch(PT_REGS_SYSCALL_RET(regs)) { | 119 | switch (PT_REGS_SYSCALL_RET(regs)) { |
120 | case -ERESTARTNOHAND: | 120 | case -ERESTARTNOHAND: |
121 | case -ERESTARTSYS: | 121 | case -ERESTARTSYS: |
122 | case -ERESTARTNOINTR: | 122 | case -ERESTARTNOINTR: |
diff --git a/arch/um/kernel/skas/clone.c b/arch/um/kernel/skas/clone.c index 8d07a7acb909..2c8583c1a344 100644 --- a/arch/um/kernel/skas/clone.c +++ b/arch/um/kernel/skas/clone.c | |||
@@ -1,17 +1,20 @@ | |||
1 | #include <sched.h> | 1 | /* |
2 | * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
2 | #include <signal.h> | 6 | #include <signal.h> |
3 | #include <sys/mman.h> | 7 | #include <sched.h> |
4 | #include <sys/time.h> | ||
5 | #include <asm/unistd.h> | 8 | #include <asm/unistd.h> |
9 | #include <sys/time.h> | ||
6 | #include "as-layout.h" | 10 | #include "as-layout.h" |
11 | #include "kern_constants.h" | ||
7 | #include "ptrace_user.h" | 12 | #include "ptrace_user.h" |
8 | #include "skas.h" | ||
9 | #include "stub-data.h" | 13 | #include "stub-data.h" |
10 | #include "uml-config.h" | ||
11 | #include "sysdep/stub.h" | 14 | #include "sysdep/stub.h" |
12 | #include "kern_constants.h" | ||
13 | 15 | ||
14 | /* This is in a separate file because it needs to be compiled with any | 16 | /* |
17 | * This is in a separate file because it needs to be compiled with any | ||
15 | * extraneous gcc flags (-pg, -fprofile-arcs, -ftest-coverage) disabled | 18 | * extraneous gcc flags (-pg, -fprofile-arcs, -ftest-coverage) disabled |
16 | * | 19 | * |
17 | * Use UM_KERN_PAGE_SIZE instead of PAGE_SIZE because that calls getpagesize | 20 | * Use UM_KERN_PAGE_SIZE instead of PAGE_SIZE because that calls getpagesize |
@@ -26,25 +29,26 @@ stub_clone_handler(void) | |||
26 | 29 | ||
27 | err = stub_syscall2(__NR_clone, CLONE_PARENT | CLONE_FILES | SIGCHLD, | 30 | err = stub_syscall2(__NR_clone, CLONE_PARENT | CLONE_FILES | SIGCHLD, |
28 | STUB_DATA + UM_KERN_PAGE_SIZE / 2 - sizeof(void *)); | 31 | STUB_DATA + UM_KERN_PAGE_SIZE / 2 - sizeof(void *)); |
29 | if(err != 0) | 32 | if (err != 0) |
30 | goto out; | 33 | goto out; |
31 | 34 | ||
32 | err = stub_syscall4(__NR_ptrace, PTRACE_TRACEME, 0, 0, 0); | 35 | err = stub_syscall4(__NR_ptrace, PTRACE_TRACEME, 0, 0, 0); |
33 | if(err) | 36 | if (err) |
34 | goto out; | 37 | goto out; |
35 | 38 | ||
36 | err = stub_syscall3(__NR_setitimer, ITIMER_VIRTUAL, | 39 | err = stub_syscall3(__NR_setitimer, ITIMER_VIRTUAL, |
37 | (long) &data->timer, 0); | 40 | (long) &data->timer, 0); |
38 | if(err) | 41 | if (err) |
39 | goto out; | 42 | goto out; |
40 | 43 | ||
41 | remap_stack(data->fd, data->offset); | 44 | remap_stack(data->fd, data->offset); |
42 | goto done; | 45 | goto done; |
43 | 46 | ||
44 | out: | 47 | out: |
45 | /* save current result. | 48 | /* |
46 | * Parent: pid; | 49 | * save current result. |
47 | * child: retcode of mmap already saved and it jumps around this | 50 | * Parent: pid; |
51 | * child: retcode of mmap already saved and it jumps around this | ||
48 | * assignment | 52 | * assignment |
49 | */ | 53 | */ |
50 | data->err = err; | 54 | data->err = err; |
diff --git a/arch/um/kernel/skas/mmu.c b/arch/um/kernel/skas/mmu.c index f859ec306cd5..78b3e9f69d57 100644 --- a/arch/um/kernel/skas/mmu.c +++ b/arch/um/kernel/skas/mmu.c | |||
@@ -34,33 +34,14 @@ static int init_stub_pte(struct mm_struct *mm, unsigned long proc, | |||
34 | if (!pte) | 34 | if (!pte) |
35 | goto out_pte; | 35 | goto out_pte; |
36 | 36 | ||
37 | /* | ||
38 | * There's an interaction between the skas0 stub pages, stack | ||
39 | * randomization, and the BUG at the end of exit_mmap. exit_mmap | ||
40 | * checks that the number of page tables freed is the same as had | ||
41 | * been allocated. If the stack is on the last page table page, | ||
42 | * then the stack pte page will be freed, and if not, it won't. To | ||
43 | * avoid having to know where the stack is, or if the process mapped | ||
44 | * something at the top of its address space for some other reason, | ||
45 | * we set TASK_SIZE to end at the start of the last page table. | ||
46 | * This keeps exit_mmap off the last page, but introduces a leak | ||
47 | * of that page. So, we hang onto it here and free it in | ||
48 | * destroy_context_skas. | ||
49 | */ | ||
50 | |||
51 | mm->context.last_page_table = pmd_page_vaddr(*pmd); | ||
52 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
53 | mm->context.last_pmd = (unsigned long) __va(pud_val(*pud)); | ||
54 | #endif | ||
55 | |||
56 | *pte = mk_pte(virt_to_page(kernel), __pgprot(_PAGE_PRESENT)); | 37 | *pte = mk_pte(virt_to_page(kernel), __pgprot(_PAGE_PRESENT)); |
57 | *pte = pte_mkread(*pte); | 38 | *pte = pte_mkread(*pte); |
58 | return 0; | 39 | return 0; |
59 | 40 | ||
60 | out_pmd: | 41 | out_pmd: |
61 | pud_free(pud); | 42 | pud_free(mm, pud); |
62 | out_pte: | 43 | out_pte: |
63 | pmd_free(pmd); | 44 | pmd_free(mm, pmd); |
64 | out: | 45 | out: |
65 | return -ENOMEM; | 46 | return -ENOMEM; |
66 | } | 47 | } |
@@ -76,24 +57,6 @@ int init_new_context(struct task_struct *task, struct mm_struct *mm) | |||
76 | stack = get_zeroed_page(GFP_KERNEL); | 57 | stack = get_zeroed_page(GFP_KERNEL); |
77 | if (stack == 0) | 58 | if (stack == 0) |
78 | goto out; | 59 | goto out; |
79 | |||
80 | /* | ||
81 | * This zeros the entry that pgd_alloc didn't, needed since | ||
82 | * we are about to reinitialize it, and want mm.nr_ptes to | ||
83 | * be accurate. | ||
84 | */ | ||
85 | mm->pgd[USER_PTRS_PER_PGD] = __pgd(0); | ||
86 | |||
87 | ret = init_stub_pte(mm, STUB_CODE, | ||
88 | (unsigned long) &__syscall_stub_start); | ||
89 | if (ret) | ||
90 | goto out_free; | ||
91 | |||
92 | ret = init_stub_pte(mm, STUB_DATA, stack); | ||
93 | if (ret) | ||
94 | goto out_free; | ||
95 | |||
96 | mm->nr_ptes--; | ||
97 | } | 60 | } |
98 | 61 | ||
99 | to_mm->id.stack = stack; | 62 | to_mm->id.stack = stack; |
@@ -114,6 +77,11 @@ int init_new_context(struct task_struct *task, struct mm_struct *mm) | |||
114 | to_mm->id.u.pid = copy_context_skas0(stack, | 77 | to_mm->id.u.pid = copy_context_skas0(stack, |
115 | from_mm->id.u.pid); | 78 | from_mm->id.u.pid); |
116 | else to_mm->id.u.pid = start_userspace(stack); | 79 | else to_mm->id.u.pid = start_userspace(stack); |
80 | |||
81 | if (to_mm->id.u.pid < 0) { | ||
82 | ret = to_mm->id.u.pid; | ||
83 | goto out_free; | ||
84 | } | ||
117 | } | 85 | } |
118 | 86 | ||
119 | ret = init_new_ldt(to_mm, from_mm); | 87 | ret = init_new_ldt(to_mm, from_mm); |
@@ -132,24 +100,87 @@ int init_new_context(struct task_struct *task, struct mm_struct *mm) | |||
132 | return ret; | 100 | return ret; |
133 | } | 101 | } |
134 | 102 | ||
103 | void arch_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm) | ||
104 | { | ||
105 | struct page **pages; | ||
106 | int err, ret; | ||
107 | |||
108 | if (!skas_needs_stub) | ||
109 | return; | ||
110 | |||
111 | ret = init_stub_pte(mm, STUB_CODE, | ||
112 | (unsigned long) &__syscall_stub_start); | ||
113 | if (ret) | ||
114 | goto out; | ||
115 | |||
116 | ret = init_stub_pte(mm, STUB_DATA, mm->context.id.stack); | ||
117 | if (ret) | ||
118 | goto out; | ||
119 | |||
120 | pages = kmalloc(2 * sizeof(struct page *), GFP_KERNEL); | ||
121 | if (pages == NULL) { | ||
122 | printk(KERN_ERR "arch_dup_mmap failed to allocate 2 page " | ||
123 | "pointers\n"); | ||
124 | goto out; | ||
125 | } | ||
126 | |||
127 | pages[0] = virt_to_page(&__syscall_stub_start); | ||
128 | pages[1] = virt_to_page(mm->context.id.stack); | ||
129 | |||
130 | /* dup_mmap already holds mmap_sem */ | ||
131 | err = install_special_mapping(mm, STUB_START, STUB_END - STUB_START, | ||
132 | VM_READ | VM_MAYREAD | VM_EXEC | | ||
133 | VM_MAYEXEC | VM_DONTCOPY, pages); | ||
134 | if (err) { | ||
135 | printk(KERN_ERR "install_special_mapping returned %d\n", err); | ||
136 | goto out_free; | ||
137 | } | ||
138 | return; | ||
139 | |||
140 | out_free: | ||
141 | kfree(pages); | ||
142 | out: | ||
143 | force_sigsegv(SIGSEGV, current); | ||
144 | } | ||
145 | |||
146 | void arch_exit_mmap(struct mm_struct *mm) | ||
147 | { | ||
148 | pte_t *pte; | ||
149 | |||
150 | pte = virt_to_pte(mm, STUB_CODE); | ||
151 | if (pte != NULL) | ||
152 | pte_clear(mm, STUB_CODE, pte); | ||
153 | |||
154 | pte = virt_to_pte(mm, STUB_DATA); | ||
155 | if (pte == NULL) | ||
156 | return; | ||
157 | |||
158 | pte_clear(mm, STUB_DATA, pte); | ||
159 | } | ||
160 | |||
135 | void destroy_context(struct mm_struct *mm) | 161 | void destroy_context(struct mm_struct *mm) |
136 | { | 162 | { |
137 | struct mm_context *mmu = &mm->context; | 163 | struct mm_context *mmu = &mm->context; |
138 | 164 | ||
139 | if (proc_mm) | 165 | if (proc_mm) |
140 | os_close_file(mmu->id.u.mm_fd); | 166 | os_close_file(mmu->id.u.mm_fd); |
141 | else | 167 | else { |
168 | /* | ||
169 | * If init_new_context wasn't called, this will be | ||
170 | * zero, resulting in a kill(0), which will result in the | ||
171 | * whole UML suddenly dying. Also, cover negative and | ||
172 | * 1 cases, since they shouldn't happen either. | ||
173 | */ | ||
174 | if (mmu->id.u.pid < 2) { | ||
175 | printk(KERN_ERR "corrupt mm_context - pid = %d\n", | ||
176 | mmu->id.u.pid); | ||
177 | return; | ||
178 | } | ||
142 | os_kill_ptraced_process(mmu->id.u.pid, 1); | 179 | os_kill_ptraced_process(mmu->id.u.pid, 1); |
180 | } | ||
143 | 181 | ||
144 | if (!proc_mm || !ptrace_faultinfo) { | 182 | if (skas_needs_stub) |
145 | free_page(mmu->id.stack); | 183 | free_page(mmu->id.stack); |
146 | pte_lock_deinit(virt_to_page(mmu->last_page_table)); | ||
147 | pte_free_kernel((pte_t *) mmu->last_page_table); | ||
148 | dec_zone_page_state(virt_to_page(mmu->last_page_table), NR_PAGETABLE); | ||
149 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
150 | pmd_free((pmd_t *) mmu->last_pmd); | ||
151 | #endif | ||
152 | } | ||
153 | 184 | ||
154 | free_ldt(mmu); | 185 | free_ldt(mmu); |
155 | } | 186 | } |
diff --git a/arch/um/kernel/skas/process.c b/arch/um/kernel/skas/process.c index fce389c2342f..2e9852c0d487 100644 --- a/arch/um/kernel/skas/process.c +++ b/arch/um/kernel/skas/process.c | |||
@@ -6,19 +6,25 @@ | |||
6 | #include "linux/init.h" | 6 | #include "linux/init.h" |
7 | #include "linux/sched.h" | 7 | #include "linux/sched.h" |
8 | #include "as-layout.h" | 8 | #include "as-layout.h" |
9 | #include "kern.h" | ||
9 | #include "os.h" | 10 | #include "os.h" |
10 | #include "skas.h" | 11 | #include "skas.h" |
11 | 12 | ||
12 | int new_mm(unsigned long stack) | 13 | int new_mm(unsigned long stack) |
13 | { | 14 | { |
14 | int fd; | 15 | int fd, err; |
15 | 16 | ||
16 | fd = os_open_file("/proc/mm", of_cloexec(of_write(OPENFLAGS())), 0); | 17 | fd = os_open_file("/proc/mm", of_cloexec(of_write(OPENFLAGS())), 0); |
17 | if (fd < 0) | 18 | if (fd < 0) |
18 | return fd; | 19 | return fd; |
19 | 20 | ||
20 | if (skas_needs_stub) | 21 | if (skas_needs_stub) { |
21 | map_stub_pages(fd, STUB_CODE, STUB_DATA, stack); | 22 | err = map_stub_pages(fd, STUB_CODE, STUB_DATA, stack); |
23 | if (err) { | ||
24 | os_close_file(fd); | ||
25 | return err; | ||
26 | } | ||
27 | } | ||
22 | 28 | ||
23 | return fd; | 29 | return fd; |
24 | } | 30 | } |
@@ -49,8 +55,14 @@ int __init start_uml(void) | |||
49 | { | 55 | { |
50 | stack_protections((unsigned long) &cpu0_irqstack); | 56 | stack_protections((unsigned long) &cpu0_irqstack); |
51 | set_sigstack(cpu0_irqstack, THREAD_SIZE); | 57 | set_sigstack(cpu0_irqstack, THREAD_SIZE); |
52 | if (proc_mm) | 58 | if (proc_mm) { |
53 | userspace_pid[0] = start_userspace(0); | 59 | userspace_pid[0] = start_userspace(0); |
60 | if (userspace_pid[0] < 0) { | ||
61 | printf("start_uml - start_userspace returned %d\n", | ||
62 | userspace_pid[0]); | ||
63 | exit(1); | ||
64 | } | ||
65 | } | ||
54 | 66 | ||
55 | init_new_thread_signals(); | 67 | init_new_thread_signals(); |
56 | 68 | ||
diff --git a/arch/um/kernel/skas/syscall.c b/arch/um/kernel/skas/syscall.c index 50b476f2b38d..4e3b820bd2be 100644 --- a/arch/um/kernel/skas/syscall.c +++ b/arch/um/kernel/skas/syscall.c | |||
@@ -9,6 +9,9 @@ | |||
9 | #include "sysdep/ptrace.h" | 9 | #include "sysdep/ptrace.h" |
10 | #include "sysdep/syscalls.h" | 10 | #include "sysdep/syscalls.h" |
11 | 11 | ||
12 | extern int syscall_table_size; | ||
13 | #define NR_syscalls (syscall_table_size / sizeof(void *)) | ||
14 | |||
12 | void handle_syscall(struct uml_pt_regs *r) | 15 | void handle_syscall(struct uml_pt_regs *r) |
13 | { | 16 | { |
14 | struct pt_regs *regs = container_of(r, struct pt_regs, regs); | 17 | struct pt_regs *regs = container_of(r, struct pt_regs, regs); |
@@ -17,9 +20,6 @@ void handle_syscall(struct uml_pt_regs *r) | |||
17 | 20 | ||
18 | syscall_trace(r, 0); | 21 | syscall_trace(r, 0); |
19 | 22 | ||
20 | current->thread.nsyscalls++; | ||
21 | nsyscalls++; | ||
22 | |||
23 | /* | 23 | /* |
24 | * This should go in the declaration of syscall, but when I do that, | 24 | * This should go in the declaration of syscall, but when I do that, |
25 | * strace -f -c bash -c 'ls ; ls' breaks, sometimes not tracing | 25 | * strace -f -c bash -c 'ls ; ls' breaks, sometimes not tracing |
diff --git a/arch/um/kernel/skas/uaccess.c b/arch/um/kernel/skas/uaccess.c index 1d8b119f2d0e..e22c96993db3 100644 --- a/arch/um/kernel/skas/uaccess.c +++ b/arch/um/kernel/skas/uaccess.c | |||
@@ -3,128 +3,130 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/err.h" | 6 | #include <linux/err.h> |
7 | #include "linux/highmem.h" | 7 | #include <linux/highmem.h> |
8 | #include "linux/mm.h" | 8 | #include <linux/mm.h> |
9 | #include "asm/current.h" | 9 | #include <linux/sched.h> |
10 | #include "asm/page.h" | 10 | #include <asm/current.h> |
11 | #include "asm/pgtable.h" | 11 | #include <asm/page.h> |
12 | #include <asm/pgtable.h> | ||
12 | #include "kern_util.h" | 13 | #include "kern_util.h" |
13 | #include "os.h" | 14 | #include "os.h" |
14 | 15 | ||
15 | extern void *um_virt_to_phys(struct task_struct *task, unsigned long addr, | 16 | pte_t *virt_to_pte(struct mm_struct *mm, unsigned long addr) |
16 | pte_t *pte_out); | ||
17 | |||
18 | static unsigned long maybe_map(unsigned long virt, int is_write) | ||
19 | { | 17 | { |
20 | pte_t pte; | 18 | pgd_t *pgd; |
21 | int err; | 19 | pud_t *pud; |
20 | pmd_t *pmd; | ||
21 | |||
22 | if (mm == NULL) | ||
23 | return NULL; | ||
24 | |||
25 | pgd = pgd_offset(mm, addr); | ||
26 | if (!pgd_present(*pgd)) | ||
27 | return NULL; | ||
28 | |||
29 | pud = pud_offset(pgd, addr); | ||
30 | if (!pud_present(*pud)) | ||
31 | return NULL; | ||
22 | 32 | ||
23 | void *phys = um_virt_to_phys(current, virt, &pte); | 33 | pmd = pmd_offset(pud, addr); |
24 | int dummy_code; | 34 | if (!pmd_present(*pmd)) |
35 | return NULL; | ||
36 | |||
37 | return pte_offset_kernel(pmd, addr); | ||
38 | } | ||
39 | |||
40 | static pte_t *maybe_map(unsigned long virt, int is_write) | ||
41 | { | ||
42 | pte_t *pte = virt_to_pte(current->mm, virt); | ||
43 | int err, dummy_code; | ||
25 | 44 | ||
26 | if (IS_ERR(phys) || (is_write && !pte_write(pte))) { | 45 | if ((pte == NULL) || !pte_present(*pte) || |
46 | (is_write && !pte_write(*pte))) { | ||
27 | err = handle_page_fault(virt, 0, is_write, 1, &dummy_code); | 47 | err = handle_page_fault(virt, 0, is_write, 1, &dummy_code); |
28 | if (err) | 48 | if (err) |
29 | return -1UL; | 49 | return NULL; |
30 | phys = um_virt_to_phys(current, virt, NULL); | 50 | pte = virt_to_pte(current->mm, virt); |
31 | } | 51 | } |
32 | if (IS_ERR(phys)) | 52 | if (!pte_present(*pte)) |
33 | phys = (void *) -1; | 53 | pte = NULL; |
34 | 54 | ||
35 | return (unsigned long) phys; | 55 | return pte; |
36 | } | 56 | } |
37 | 57 | ||
38 | static int do_op_one_page(unsigned long addr, int len, int is_write, | 58 | static int do_op_one_page(unsigned long addr, int len, int is_write, |
39 | int (*op)(unsigned long addr, int len, void *arg), void *arg) | 59 | int (*op)(unsigned long addr, int len, void *arg), void *arg) |
40 | { | 60 | { |
61 | jmp_buf buf; | ||
41 | struct page *page; | 62 | struct page *page; |
42 | int n; | 63 | pte_t *pte; |
64 | int n, faulted; | ||
43 | 65 | ||
44 | addr = maybe_map(addr, is_write); | 66 | pte = maybe_map(addr, is_write); |
45 | if (addr == -1UL) | 67 | if (pte == NULL) |
46 | return -1; | 68 | return -1; |
47 | 69 | ||
48 | page = phys_to_page(addr); | 70 | page = pte_page(*pte); |
49 | addr = (unsigned long) kmap_atomic(page, KM_UML_USERCOPY) + | 71 | addr = (unsigned long) kmap_atomic(page, KM_UML_USERCOPY) + |
50 | (addr & ~PAGE_MASK); | 72 | (addr & ~PAGE_MASK); |
51 | 73 | ||
52 | n = (*op)(addr, len, arg); | 74 | current->thread.fault_catcher = &buf; |
75 | |||
76 | faulted = UML_SETJMP(&buf); | ||
77 | if (faulted == 0) | ||
78 | n = (*op)(addr, len, arg); | ||
79 | else | ||
80 | n = -1; | ||
81 | |||
82 | current->thread.fault_catcher = NULL; | ||
53 | 83 | ||
54 | kunmap_atomic(page, KM_UML_USERCOPY); | 84 | kunmap_atomic(page, KM_UML_USERCOPY); |
55 | 85 | ||
56 | return n; | 86 | return n; |
57 | } | 87 | } |
58 | 88 | ||
59 | static void do_buffer_op(void *jmpbuf, void *arg_ptr) | 89 | static int buffer_op(unsigned long addr, int len, int is_write, |
90 | int (*op)(unsigned long, int, void *), void *arg) | ||
60 | { | 91 | { |
61 | va_list args; | 92 | int size, remain, n; |
62 | unsigned long addr; | 93 | |
63 | int len, is_write, size, remain, n; | ||
64 | int (*op)(unsigned long, int, void *); | ||
65 | void *arg; | ||
66 | int *res; | ||
67 | |||
68 | va_copy(args, *(va_list *)arg_ptr); | ||
69 | addr = va_arg(args, unsigned long); | ||
70 | len = va_arg(args, int); | ||
71 | is_write = va_arg(args, int); | ||
72 | op = va_arg(args, void *); | ||
73 | arg = va_arg(args, void *); | ||
74 | res = va_arg(args, int *); | ||
75 | va_end(args); | ||
76 | size = min(PAGE_ALIGN(addr) - addr, (unsigned long) len); | 94 | size = min(PAGE_ALIGN(addr) - addr, (unsigned long) len); |
77 | remain = len; | 95 | remain = len; |
78 | 96 | ||
79 | current->thread.fault_catcher = jmpbuf; | ||
80 | n = do_op_one_page(addr, size, is_write, op, arg); | 97 | n = do_op_one_page(addr, size, is_write, op, arg); |
81 | if (n != 0) { | 98 | if (n != 0) { |
82 | *res = (n < 0 ? remain : 0); | 99 | remain = (n < 0 ? remain : 0); |
83 | goto out; | 100 | goto out; |
84 | } | 101 | } |
85 | 102 | ||
86 | addr += size; | 103 | addr += size; |
87 | remain -= size; | 104 | remain -= size; |
88 | if (remain == 0) { | 105 | if (remain == 0) |
89 | *res = 0; | ||
90 | goto out; | 106 | goto out; |
91 | } | ||
92 | 107 | ||
93 | while(addr < ((addr + remain) & PAGE_MASK)) { | 108 | while (addr < ((addr + remain) & PAGE_MASK)) { |
94 | n = do_op_one_page(addr, PAGE_SIZE, is_write, op, arg); | 109 | n = do_op_one_page(addr, PAGE_SIZE, is_write, op, arg); |
95 | if (n != 0) { | 110 | if (n != 0) { |
96 | *res = (n < 0 ? remain : 0); | 111 | remain = (n < 0 ? remain : 0); |
97 | goto out; | 112 | goto out; |
98 | } | 113 | } |
99 | 114 | ||
100 | addr += PAGE_SIZE; | 115 | addr += PAGE_SIZE; |
101 | remain -= PAGE_SIZE; | 116 | remain -= PAGE_SIZE; |
102 | } | 117 | } |
103 | if (remain == 0) { | 118 | if (remain == 0) |
104 | *res = 0; | ||
105 | goto out; | 119 | goto out; |
106 | } | ||
107 | 120 | ||
108 | n = do_op_one_page(addr, remain, is_write, op, arg); | 121 | n = do_op_one_page(addr, remain, is_write, op, arg); |
109 | if (n != 0) | 122 | if (n != 0) { |
110 | *res = (n < 0 ? remain : 0); | 123 | remain = (n < 0 ? remain : 0); |
111 | else *res = 0; | 124 | goto out; |
112 | out: | 125 | } |
113 | current->thread.fault_catcher = NULL; | ||
114 | } | ||
115 | |||
116 | static int buffer_op(unsigned long addr, int len, int is_write, | ||
117 | int (*op)(unsigned long addr, int len, void *arg), | ||
118 | void *arg) | ||
119 | { | ||
120 | int faulted, res; | ||
121 | |||
122 | faulted = setjmp_wrapper(do_buffer_op, addr, len, is_write, op, arg, | ||
123 | &res); | ||
124 | if (!faulted) | ||
125 | return res; | ||
126 | 126 | ||
127 | return addr + len - (unsigned long) current->thread.fault_addr; | 127 | return 0; |
128 | out: | ||
129 | return remain; | ||
128 | } | 130 | } |
129 | 131 | ||
130 | static int copy_chunk_from_user(unsigned long from, int len, void *arg) | 132 | static int copy_chunk_from_user(unsigned long from, int len, void *arg) |
diff --git a/arch/um/kernel/smp.c b/arch/um/kernel/smp.c index 36d89cf8d20b..e1062ec36d40 100644 --- a/arch/um/kernel/smp.c +++ b/arch/um/kernel/smp.c | |||
@@ -21,7 +21,6 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | |||
21 | #include "asm/smp.h" | 21 | #include "asm/smp.h" |
22 | #include "asm/processor.h" | 22 | #include "asm/processor.h" |
23 | #include "asm/spinlock.h" | 23 | #include "asm/spinlock.h" |
24 | #include "kern_util.h" | ||
25 | #include "kern.h" | 24 | #include "kern.h" |
26 | #include "irq_user.h" | 25 | #include "irq_user.h" |
27 | #include "os.h" | 26 | #include "os.h" |
@@ -61,7 +60,7 @@ void smp_send_stop(void) | |||
61 | continue; | 60 | continue; |
62 | os_write_file(cpu_data[i].ipi_pipe[1], "S", 1); | 61 | os_write_file(cpu_data[i].ipi_pipe[1], "S", 1); |
63 | } | 62 | } |
64 | printk(KERN_INFO "done\n"); | 63 | printk(KERN_CONT "done\n"); |
65 | } | 64 | } |
66 | 65 | ||
67 | static cpumask_t smp_commenced_mask = CPU_MASK_NONE; | 66 | static cpumask_t smp_commenced_mask = CPU_MASK_NONE; |
@@ -75,8 +74,7 @@ static int idle_proc(void *cpup) | |||
75 | if (err < 0) | 74 | if (err < 0) |
76 | panic("CPU#%d failed to create IPI pipe, err = %d", cpu, -err); | 75 | panic("CPU#%d failed to create IPI pipe, err = %d", cpu, -err); |
77 | 76 | ||
78 | os_set_fd_async(cpu_data[cpu].ipi_pipe[0], | 77 | os_set_fd_async(cpu_data[cpu].ipi_pipe[0]); |
79 | current->thread.mode.tt.extern_pid); | ||
80 | 78 | ||
81 | wmb(); | 79 | wmb(); |
82 | if (cpu_test_and_set(cpu, cpu_callin_map)) { | 80 | if (cpu_test_and_set(cpu, cpu_callin_map)) { |
@@ -129,8 +127,7 @@ void smp_prepare_cpus(unsigned int maxcpus) | |||
129 | if (err < 0) | 127 | if (err < 0) |
130 | panic("CPU#0 failed to create IPI pipe, errno = %d", -err); | 128 | panic("CPU#0 failed to create IPI pipe, errno = %d", -err); |
131 | 129 | ||
132 | os_set_fd_async(cpu_data[me].ipi_pipe[0], | 130 | os_set_fd_async(cpu_data[me].ipi_pipe[0]); |
133 | current->thread.mode.tt.extern_pid); | ||
134 | 131 | ||
135 | for (cpu = 1; cpu < ncpus; cpu++) { | 132 | for (cpu = 1; cpu < ncpus; cpu++) { |
136 | printk(KERN_INFO "Booting processor %d...\n", cpu); | 133 | printk(KERN_INFO "Booting processor %d...\n", cpu); |
@@ -143,9 +140,8 @@ void smp_prepare_cpus(unsigned int maxcpus) | |||
143 | while (waittime-- && !cpu_isset(cpu, cpu_callin_map)) | 140 | while (waittime-- && !cpu_isset(cpu, cpu_callin_map)) |
144 | cpu_relax(); | 141 | cpu_relax(); |
145 | 142 | ||
146 | if (cpu_isset(cpu, cpu_callin_map)) | 143 | printk(KERN_INFO "%s\n", |
147 | printk(KERN_INFO "done\n"); | 144 | cpu_isset(cpu, cpu_calling_map) ? "done" : "failed"); |
148 | else printk(KERN_INFO "failed\n"); | ||
149 | } | 145 | } |
150 | } | 146 | } |
151 | 147 | ||
diff --git a/arch/um/kernel/syscall.c b/arch/um/kernel/syscall.c index b9d92b2089ae..9cffc628a37e 100644 --- a/arch/um/kernel/syscall.c +++ b/arch/um/kernel/syscall.c | |||
@@ -13,9 +13,6 @@ | |||
13 | #include "asm/uaccess.h" | 13 | #include "asm/uaccess.h" |
14 | #include "asm/unistd.h" | 14 | #include "asm/unistd.h" |
15 | 15 | ||
16 | /* Unlocked, I don't care if this is a bit off */ | ||
17 | int nsyscalls = 0; | ||
18 | |||
19 | long sys_fork(void) | 16 | long sys_fork(void) |
20 | { | 17 | { |
21 | long ret; | 18 | long ret; |
diff --git a/arch/um/kernel/sysrq.c b/arch/um/kernel/sysrq.c index 93263571d813..56d43d0a3960 100644 --- a/arch/um/kernel/sysrq.c +++ b/arch/um/kernel/sysrq.c | |||
@@ -1,38 +1,37 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/sched.h" | 6 | #include <linux/kallsyms.h> |
7 | #include "linux/kernel.h" | 7 | #include <linux/kernel.h> |
8 | #include "linux/module.h" | 8 | #include <linux/module.h> |
9 | #include "linux/kallsyms.h" | 9 | #include <linux/sched.h> |
10 | #include "asm/page.h" | ||
11 | #include "asm/processor.h" | ||
12 | #include "sysrq.h" | 10 | #include "sysrq.h" |
13 | 11 | ||
14 | /* Catch non-i386 SUBARCH's. */ | 12 | /* Catch non-i386 SUBARCH's. */ |
15 | #if !defined(CONFIG_UML_X86) || defined(CONFIG_64BIT) | 13 | #if !defined(CONFIG_UML_X86) || defined(CONFIG_64BIT) |
16 | void show_trace(struct task_struct *task, unsigned long * stack) | 14 | void show_trace(struct task_struct *task, unsigned long * stack) |
17 | { | 15 | { |
18 | unsigned long addr; | 16 | unsigned long addr; |
19 | 17 | ||
20 | if (!stack) { | 18 | if (!stack) { |
21 | stack = (unsigned long*) &stack; | 19 | stack = (unsigned long*) &stack; |
22 | WARN_ON(1); | 20 | WARN_ON(1); |
23 | } | 21 | } |
24 | 22 | ||
25 | printk("Call Trace: \n"); | 23 | printk(KERN_INFO "Call Trace: \n"); |
26 | while (((long) stack & (THREAD_SIZE-1)) != 0) { | 24 | while (((long) stack & (THREAD_SIZE-1)) != 0) { |
27 | addr = *stack; | 25 | addr = *stack; |
28 | if (__kernel_text_address(addr)) { | 26 | if (__kernel_text_address(addr)) { |
29 | printk("%08lx: [<%08lx>]", (unsigned long) stack, addr); | 27 | printk(KERN_INFO "%08lx: [<%08lx>]", |
30 | print_symbol(" %s", addr); | 28 | (unsigned long) stack, addr); |
31 | printk("\n"); | 29 | print_symbol(KERN_CONT " %s", addr); |
32 | } | 30 | printk(KERN_CONT "\n"); |
33 | stack++; | 31 | } |
34 | } | 32 | stack++; |
35 | printk("\n"); | 33 | } |
34 | printk(KERN_INFO "\n"); | ||
36 | } | 35 | } |
37 | #endif | 36 | #endif |
38 | 37 | ||
@@ -67,14 +66,13 @@ void show_stack(struct task_struct *task, unsigned long *esp) | |||
67 | } | 66 | } |
68 | 67 | ||
69 | stack = esp; | 68 | stack = esp; |
70 | for(i = 0; i < kstack_depth_to_print; i++) { | 69 | for (i = 0; i < kstack_depth_to_print; i++) { |
71 | if (kstack_end(stack)) | 70 | if (kstack_end(stack)) |
72 | break; | 71 | break; |
73 | if (i && ((i % 8) == 0)) | 72 | if (i && ((i % 8) == 0)) |
74 | printk("\n "); | 73 | printk("\n" KERN_INFO " "); |
75 | printk("%08lx ", *stack++); | 74 | printk("%08lx ", *stack++); |
76 | } | 75 | } |
77 | 76 | ||
78 | printk("Call Trace: \n"); | ||
79 | show_trace(task, esp); | 77 | show_trace(task, esp); |
80 | } | 78 | } |
diff --git a/arch/um/kernel/time.c b/arch/um/kernel/time.c index 1ac746a9eae1..e066e84493b1 100644 --- a/arch/um/kernel/time.c +++ b/arch/um/kernel/time.c | |||
@@ -3,12 +3,12 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/clockchips.h" | 6 | #include <linux/clockchips.h> |
7 | #include "linux/interrupt.h" | 7 | #include <linux/interrupt.h> |
8 | #include "linux/jiffies.h" | 8 | #include <linux/jiffies.h> |
9 | #include "linux/threads.h" | 9 | #include <linux/threads.h> |
10 | #include "asm/irq.h" | 10 | #include <asm/irq.h> |
11 | #include "asm/param.h" | 11 | #include <asm/param.h> |
12 | #include "kern_util.h" | 12 | #include "kern_util.h" |
13 | #include "os.h" | 13 | #include "os.h" |
14 | 14 | ||
@@ -32,7 +32,7 @@ void timer_handler(int sig, struct uml_pt_regs *regs) | |||
32 | static void itimer_set_mode(enum clock_event_mode mode, | 32 | static void itimer_set_mode(enum clock_event_mode mode, |
33 | struct clock_event_device *evt) | 33 | struct clock_event_device *evt) |
34 | { | 34 | { |
35 | switch(mode) { | 35 | switch (mode) { |
36 | case CLOCK_EVT_MODE_PERIODIC: | 36 | case CLOCK_EVT_MODE_PERIODIC: |
37 | set_interval(); | 37 | set_interval(); |
38 | break; | 38 | break; |
diff --git a/arch/um/kernel/tlb.c b/arch/um/kernel/tlb.c index f4a0e407eee4..d175d0566af0 100644 --- a/arch/um/kernel/tlb.c +++ b/arch/um/kernel/tlb.c | |||
@@ -3,9 +3,10 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/mm.h" | 6 | #include <linux/mm.h> |
7 | #include "asm/pgtable.h" | 7 | #include <linux/sched.h> |
8 | #include "asm/tlbflush.h" | 8 | #include <asm/pgtable.h> |
9 | #include <asm/tlbflush.h> | ||
9 | #include "as-layout.h" | 10 | #include "as-layout.h" |
10 | #include "mem_user.h" | 11 | #include "mem_user.h" |
11 | #include "os.h" | 12 | #include "os.h" |
@@ -56,7 +57,7 @@ static int do_ops(struct host_vm_change *hvc, int end, | |||
56 | 57 | ||
57 | for (i = 0; i < end && !ret; i++) { | 58 | for (i = 0; i < end && !ret; i++) { |
58 | op = &hvc->ops[i]; | 59 | op = &hvc->ops[i]; |
59 | switch(op->type) { | 60 | switch (op->type) { |
60 | case MMAP: | 61 | case MMAP: |
61 | ret = map(hvc->id, op->u.mmap.addr, op->u.mmap.len, | 62 | ret = map(hvc->id, op->u.mmap.addr, op->u.mmap.len, |
62 | op->u.mmap.prot, op->u.mmap.fd, | 63 | op->u.mmap.prot, op->u.mmap.fd, |
@@ -183,27 +184,30 @@ static inline int update_pte_range(pmd_t *pmd, unsigned long addr, | |||
183 | 184 | ||
184 | pte = pte_offset_kernel(pmd, addr); | 185 | pte = pte_offset_kernel(pmd, addr); |
185 | do { | 186 | do { |
187 | if ((addr >= STUB_START) && (addr < STUB_END)) | ||
188 | continue; | ||
189 | |||
186 | r = pte_read(*pte); | 190 | r = pte_read(*pte); |
187 | w = pte_write(*pte); | 191 | w = pte_write(*pte); |
188 | x = pte_exec(*pte); | 192 | x = pte_exec(*pte); |
189 | if (!pte_young(*pte)) { | 193 | if (!pte_young(*pte)) { |
190 | r = 0; | 194 | r = 0; |
191 | w = 0; | 195 | w = 0; |
192 | } else if (!pte_dirty(*pte)) { | 196 | } else if (!pte_dirty(*pte)) |
193 | w = 0; | 197 | w = 0; |
194 | } | 198 | |
195 | prot = ((r ? UM_PROT_READ : 0) | (w ? UM_PROT_WRITE : 0) | | 199 | prot = ((r ? UM_PROT_READ : 0) | (w ? UM_PROT_WRITE : 0) | |
196 | (x ? UM_PROT_EXEC : 0)); | 200 | (x ? UM_PROT_EXEC : 0)); |
197 | if (hvc->force || pte_newpage(*pte)) { | 201 | if (hvc->force || pte_newpage(*pte)) { |
198 | if (pte_present(*pte)) | 202 | if (pte_present(*pte)) |
199 | ret = add_mmap(addr, pte_val(*pte) & PAGE_MASK, | 203 | ret = add_mmap(addr, pte_val(*pte) & PAGE_MASK, |
200 | PAGE_SIZE, prot, hvc); | 204 | PAGE_SIZE, prot, hvc); |
201 | else ret = add_munmap(addr, PAGE_SIZE, hvc); | 205 | else |
202 | } | 206 | ret = add_munmap(addr, PAGE_SIZE, hvc); |
203 | else if (pte_newprot(*pte)) | 207 | } else if (pte_newprot(*pte)) |
204 | ret = add_mprotect(addr, PAGE_SIZE, prot, hvc); | 208 | ret = add_mprotect(addr, PAGE_SIZE, prot, hvc); |
205 | *pte = pte_mkuptodate(*pte); | 209 | *pte = pte_mkuptodate(*pte); |
206 | } while (pte++, addr += PAGE_SIZE, ((addr != end) && !ret)); | 210 | } while (pte++, addr += PAGE_SIZE, ((addr < end) && !ret)); |
207 | return ret; | 211 | return ret; |
208 | } | 212 | } |
209 | 213 | ||
@@ -225,7 +229,7 @@ static inline int update_pmd_range(pud_t *pud, unsigned long addr, | |||
225 | } | 229 | } |
226 | } | 230 | } |
227 | else ret = update_pte_range(pmd, addr, next, hvc); | 231 | else ret = update_pte_range(pmd, addr, next, hvc); |
228 | } while (pmd++, addr = next, ((addr != end) && !ret)); | 232 | } while (pmd++, addr = next, ((addr < end) && !ret)); |
229 | return ret; | 233 | return ret; |
230 | } | 234 | } |
231 | 235 | ||
@@ -247,7 +251,7 @@ static inline int update_pud_range(pgd_t *pgd, unsigned long addr, | |||
247 | } | 251 | } |
248 | } | 252 | } |
249 | else ret = update_pmd_range(pud, addr, next, hvc); | 253 | else ret = update_pmd_range(pud, addr, next, hvc); |
250 | } while (pud++, addr = next, ((addr != end) && !ret)); | 254 | } while (pud++, addr = next, ((addr < end) && !ret)); |
251 | return ret; | 255 | return ret; |
252 | } | 256 | } |
253 | 257 | ||
@@ -270,7 +274,7 @@ void fix_range_common(struct mm_struct *mm, unsigned long start_addr, | |||
270 | } | 274 | } |
271 | } | 275 | } |
272 | else ret = update_pud_range(pgd, addr, next, &hvc); | 276 | else ret = update_pud_range(pgd, addr, next, &hvc); |
273 | } while (pgd++, addr = next, ((addr != end_addr) && !ret)); | 277 | } while (pgd++, addr = next, ((addr < end_addr) && !ret)); |
274 | 278 | ||
275 | if (!ret) | 279 | if (!ret) |
276 | ret = do_ops(&hvc, hvc.index, 1); | 280 | ret = do_ops(&hvc, hvc.index, 1); |
@@ -485,9 +489,6 @@ void __flush_tlb_one(unsigned long addr) | |||
485 | static void fix_range(struct mm_struct *mm, unsigned long start_addr, | 489 | static void fix_range(struct mm_struct *mm, unsigned long start_addr, |
486 | unsigned long end_addr, int force) | 490 | unsigned long end_addr, int force) |
487 | { | 491 | { |
488 | if (!proc_mm && (end_addr > STUB_START)) | ||
489 | end_addr = STUB_START; | ||
490 | |||
491 | fix_range_common(mm, start_addr, end_addr, force); | 492 | fix_range_common(mm, start_addr, end_addr, force); |
492 | } | 493 | } |
493 | 494 | ||
@@ -499,10 +500,9 @@ void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, | |||
499 | else fix_range(vma->vm_mm, start, end, 0); | 500 | else fix_range(vma->vm_mm, start, end, 0); |
500 | } | 501 | } |
501 | 502 | ||
502 | void flush_tlb_mm(struct mm_struct *mm) | 503 | void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start, |
504 | unsigned long end) | ||
503 | { | 505 | { |
504 | unsigned long end; | ||
505 | |||
506 | /* | 506 | /* |
507 | * Don't bother flushing if this address space is about to be | 507 | * Don't bother flushing if this address space is about to be |
508 | * destroyed. | 508 | * destroyed. |
@@ -510,8 +510,17 @@ void flush_tlb_mm(struct mm_struct *mm) | |||
510 | if (atomic_read(&mm->mm_users) == 0) | 510 | if (atomic_read(&mm->mm_users) == 0) |
511 | return; | 511 | return; |
512 | 512 | ||
513 | end = proc_mm ? task_size : STUB_START; | 513 | fix_range(mm, start, end, 0); |
514 | fix_range(mm, 0, end, 0); | 514 | } |
515 | |||
516 | void flush_tlb_mm(struct mm_struct *mm) | ||
517 | { | ||
518 | struct vm_area_struct *vma = mm->mmap; | ||
519 | |||
520 | while (vma != NULL) { | ||
521 | fix_range(mm, vma->vm_start, vma->vm_end, 0); | ||
522 | vma = vma->vm_next; | ||
523 | } | ||
515 | } | 524 | } |
516 | 525 | ||
517 | void force_flush_all(void) | 526 | void force_flush_all(void) |
diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c index cb3321f8e0a9..44e490419495 100644 --- a/arch/um/kernel/trap.c +++ b/arch/um/kernel/trap.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include "as-layout.h" | 13 | #include "as-layout.h" |
14 | #include "kern_util.h" | 14 | #include "kern_util.h" |
15 | #include "os.h" | 15 | #include "os.h" |
16 | #include "skas.h" | ||
16 | #include "sysdep/sigcontext.h" | 17 | #include "sysdep/sigcontext.h" |
17 | 18 | ||
18 | /* | 19 | /* |
@@ -128,7 +129,19 @@ static void bad_segv(struct faultinfo fi, unsigned long ip) | |||
128 | force_sig_info(SIGSEGV, &si, current); | 129 | force_sig_info(SIGSEGV, &si, current); |
129 | } | 130 | } |
130 | 131 | ||
131 | static void segv_handler(int sig, struct uml_pt_regs *regs) | 132 | void fatal_sigsegv(void) |
133 | { | ||
134 | force_sigsegv(SIGSEGV, current); | ||
135 | do_signal(); | ||
136 | /* | ||
137 | * This is to tell gcc that we're not returning - do_signal | ||
138 | * can, in general, return, but in this case, it's not, since | ||
139 | * we just got a fatal SIGSEGV queued. | ||
140 | */ | ||
141 | os_dump_core(); | ||
142 | } | ||
143 | |||
144 | void segv_handler(int sig, struct uml_pt_regs *regs) | ||
132 | { | 145 | { |
133 | struct faultinfo * fi = UPT_FAULTINFO(regs); | 146 | struct faultinfo * fi = UPT_FAULTINFO(regs); |
134 | 147 | ||
@@ -216,9 +229,6 @@ unsigned long segv(struct faultinfo fi, unsigned long ip, int is_user, | |||
216 | 229 | ||
217 | void relay_signal(int sig, struct uml_pt_regs *regs) | 230 | void relay_signal(int sig, struct uml_pt_regs *regs) |
218 | { | 231 | { |
219 | if (arch_handle_signal(sig, regs)) | ||
220 | return; | ||
221 | |||
222 | if (!UPT_IS_USER(regs)) { | 232 | if (!UPT_IS_USER(regs)) { |
223 | if (sig == SIGBUS) | 233 | if (sig == SIGBUS) |
224 | printk(KERN_ERR "Bus error - the host /dev/shm or /tmp " | 234 | printk(KERN_ERR "Bus error - the host /dev/shm or /tmp " |
@@ -226,31 +236,24 @@ void relay_signal(int sig, struct uml_pt_regs *regs) | |||
226 | panic("Kernel mode signal %d", sig); | 236 | panic("Kernel mode signal %d", sig); |
227 | } | 237 | } |
228 | 238 | ||
239 | arch_examine_signal(sig, regs); | ||
240 | |||
229 | current->thread.arch.faultinfo = *UPT_FAULTINFO(regs); | 241 | current->thread.arch.faultinfo = *UPT_FAULTINFO(regs); |
230 | force_sig(sig, current); | 242 | force_sig(sig, current); |
231 | } | 243 | } |
232 | 244 | ||
233 | static void bus_handler(int sig, struct uml_pt_regs *regs) | 245 | void bus_handler(int sig, struct uml_pt_regs *regs) |
234 | { | 246 | { |
235 | if (current->thread.fault_catcher != NULL) | 247 | if (current->thread.fault_catcher != NULL) |
236 | UML_LONGJMP(current->thread.fault_catcher, 1); | 248 | UML_LONGJMP(current->thread.fault_catcher, 1); |
237 | else relay_signal(sig, regs); | 249 | else relay_signal(sig, regs); |
238 | } | 250 | } |
239 | 251 | ||
240 | static void winch(int sig, struct uml_pt_regs *regs) | 252 | void winch(int sig, struct uml_pt_regs *regs) |
241 | { | 253 | { |
242 | do_IRQ(WINCH_IRQ, regs); | 254 | do_IRQ(WINCH_IRQ, regs); |
243 | } | 255 | } |
244 | 256 | ||
245 | const struct kern_handlers handlinfo_kern = { | ||
246 | .relay_signal = relay_signal, | ||
247 | .winch = winch, | ||
248 | .bus_handler = bus_handler, | ||
249 | .page_fault = segv_handler, | ||
250 | .sigio_handler = sigio_handler, | ||
251 | .timer_handler = timer_handler | ||
252 | }; | ||
253 | |||
254 | void trap_init(void) | 257 | void trap_init(void) |
255 | { | 258 | { |
256 | } | 259 | } |
diff --git a/arch/um/kernel/uaccess.c b/arch/um/kernel/uaccess.c index d7436aacd26f..f0f4b040d7c5 100644 --- a/arch/um/kernel/uaccess.c +++ b/arch/um/kernel/uaccess.c | |||
@@ -1,10 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001 Chris Emerson (cemerson@chiark.greenend.org.uk) | 2 | * Copyright (C) 2001 Chris Emerson (cemerson@chiark.greenend.org.uk) |
3 | * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) | 3 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
4 | * Licensed under the GPL | 4 | * Licensed under the GPL |
5 | */ | 5 | */ |
6 | 6 | ||
7 | /* These are here rather than tt/uaccess.c because skas mode needs them in | 7 | /* |
8 | * These are here rather than tt/uaccess.c because skas mode needs them in | ||
8 | * order to do SIGBUS recovery when a tmpfs mount runs out of room. | 9 | * order to do SIGBUS recovery when a tmpfs mount runs out of room. |
9 | */ | 10 | */ |
10 | 11 | ||
@@ -25,6 +26,8 @@ int __do_copy_to_user(void *to, const void *from, int n, | |||
25 | 26 | ||
26 | fault = __do_user_copy(to, from, n, fault_addr, fault_catcher, | 27 | fault = __do_user_copy(to, from, n, fault_addr, fault_catcher, |
27 | __do_copy, &faulted); | 28 | __do_copy, &faulted); |
28 | if(!faulted) return(0); | 29 | if (!faulted) |
29 | else return(n - (fault - (unsigned long) to)); | 30 | return 0; |
31 | else | ||
32 | return n - (fault - (unsigned long) to); | ||
30 | } | 33 | } |
diff --git a/arch/um/kernel/um_arch.c b/arch/um/kernel/um_arch.c index f1c71393f578..468aba990dbd 100644 --- a/arch/um/kernel/um_arch.c +++ b/arch/um/kernel/um_arch.c | |||
@@ -3,22 +3,23 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/delay.h" | 6 | #include <linux/delay.h> |
7 | #include "linux/mm.h" | 7 | #include <linux/init.h> |
8 | #include "linux/module.h" | 8 | #include <linux/mm.h> |
9 | #include "linux/seq_file.h" | 9 | #include <linux/module.h> |
10 | #include "linux/string.h" | 10 | #include <linux/seq_file.h> |
11 | #include "linux/utsname.h" | 11 | #include <linux/string.h> |
12 | #include "asm/pgtable.h" | 12 | #include <linux/utsname.h> |
13 | #include "asm/processor.h" | 13 | #include <asm/pgtable.h> |
14 | #include "asm/setup.h" | 14 | #include <asm/processor.h> |
15 | #include "arch.h" | 15 | #include <asm/setup.h> |
16 | #include "as-layout.h" | 16 | #include "as-layout.h" |
17 | #include "arch.h" | ||
17 | #include "init.h" | 18 | #include "init.h" |
18 | #include "kern.h" | 19 | #include "kern.h" |
20 | #include "kern_util.h" | ||
19 | #include "mem_user.h" | 21 | #include "mem_user.h" |
20 | #include "os.h" | 22 | #include "os.h" |
21 | #include "skas.h" | ||
22 | 23 | ||
23 | #define DEFAULT_COMMAND_LINE "root=98:0" | 24 | #define DEFAULT_COMMAND_LINE "root=98:0" |
24 | 25 | ||
@@ -100,8 +101,6 @@ const struct seq_operations cpuinfo_op = { | |||
100 | }; | 101 | }; |
101 | 102 | ||
102 | /* Set in linux_main */ | 103 | /* Set in linux_main */ |
103 | unsigned long host_task_size; | ||
104 | unsigned long task_size; | ||
105 | unsigned long uml_physmem; | 104 | unsigned long uml_physmem; |
106 | unsigned long uml_reserved; /* Also modified in mem_init */ | 105 | unsigned long uml_reserved; /* Also modified in mem_init */ |
107 | unsigned long start_vm; | 106 | unsigned long start_vm; |
@@ -197,20 +196,19 @@ __uml_setup("--help", Usage, | |||
197 | " Prints this message.\n\n" | 196 | " Prints this message.\n\n" |
198 | ); | 197 | ); |
199 | 198 | ||
200 | static int __init uml_checksetup(char *line, int *add) | 199 | static void __init uml_checksetup(char *line, int *add) |
201 | { | 200 | { |
202 | struct uml_param *p; | 201 | struct uml_param *p; |
203 | 202 | ||
204 | p = &__uml_setup_start; | 203 | p = &__uml_setup_start; |
205 | while(p < &__uml_setup_end) { | 204 | while (p < &__uml_setup_end) { |
206 | int n; | 205 | int n; |
207 | 206 | ||
208 | n = strlen(p->str); | 207 | n = strlen(p->str); |
209 | if (!strncmp(line, p->str, n) && p->setup_func(line + n, add)) | 208 | if (!strncmp(line, p->str, n) && p->setup_func(line + n, add)) |
210 | return 1; | 209 | return; |
211 | p++; | 210 | p++; |
212 | } | 211 | } |
213 | return 0; | ||
214 | } | 212 | } |
215 | 213 | ||
216 | static void __init uml_postsetup(void) | 214 | static void __init uml_postsetup(void) |
@@ -218,13 +216,30 @@ static void __init uml_postsetup(void) | |||
218 | initcall_t *p; | 216 | initcall_t *p; |
219 | 217 | ||
220 | p = &__uml_postsetup_start; | 218 | p = &__uml_postsetup_start; |
221 | while(p < &__uml_postsetup_end) { | 219 | while (p < &__uml_postsetup_end) { |
222 | (*p)(); | 220 | (*p)(); |
223 | p++; | 221 | p++; |
224 | } | 222 | } |
225 | return; | 223 | return; |
226 | } | 224 | } |
227 | 225 | ||
226 | static int panic_exit(struct notifier_block *self, unsigned long unused1, | ||
227 | void *unused2) | ||
228 | { | ||
229 | bust_spinlocks(1); | ||
230 | show_regs(&(current->thread.regs)); | ||
231 | bust_spinlocks(0); | ||
232 | uml_exitcode = 1; | ||
233 | os_dump_core(); | ||
234 | return 0; | ||
235 | } | ||
236 | |||
237 | static struct notifier_block panic_exit_notifier = { | ||
238 | .notifier_call = panic_exit, | ||
239 | .next = NULL, | ||
240 | .priority = 0 | ||
241 | }; | ||
242 | |||
228 | /* Set during early boot */ | 243 | /* Set during early boot */ |
229 | unsigned long brk_start; | 244 | unsigned long brk_start; |
230 | unsigned long end_iomem; | 245 | unsigned long end_iomem; |
@@ -234,20 +249,6 @@ EXPORT_SYMBOL(end_iomem); | |||
234 | 249 | ||
235 | extern char __binary_start; | 250 | extern char __binary_start; |
236 | 251 | ||
237 | static unsigned long set_task_sizes_skas(unsigned long *task_size_out) | ||
238 | { | ||
239 | /* Round up to the nearest 4M */ | ||
240 | unsigned long host_task_size = ROUND_4M((unsigned long) | ||
241 | &host_task_size); | ||
242 | |||
243 | if (!skas_needs_stub) | ||
244 | *task_size_out = host_task_size; | ||
245 | else | ||
246 | *task_size_out = STUB_START & PGDIR_MASK; | ||
247 | |||
248 | return host_task_size; | ||
249 | } | ||
250 | |||
251 | int __init linux_main(int argc, char **argv) | 252 | int __init linux_main(int argc, char **argv) |
252 | { | 253 | { |
253 | unsigned long avail, diff; | 254 | unsigned long avail, diff; |
@@ -278,13 +279,6 @@ int __init linux_main(int argc, char **argv) | |||
278 | 279 | ||
279 | printf("UML running in %s mode\n", mode); | 280 | printf("UML running in %s mode\n", mode); |
280 | 281 | ||
281 | host_task_size = set_task_sizes_skas(&task_size); | ||
282 | |||
283 | /* | ||
284 | * Setting up handlers to 'sig_info' struct | ||
285 | */ | ||
286 | os_fill_handlinfo(handlinfo_kern); | ||
287 | |||
288 | brk_start = (unsigned long) sbrk(0); | 282 | brk_start = (unsigned long) sbrk(0); |
289 | 283 | ||
290 | /* | 284 | /* |
@@ -309,7 +303,7 @@ int __init linux_main(int argc, char **argv) | |||
309 | 303 | ||
310 | highmem = 0; | 304 | highmem = 0; |
311 | iomem_size = (iomem_size + PAGE_SIZE - 1) & PAGE_MASK; | 305 | iomem_size = (iomem_size + PAGE_SIZE - 1) & PAGE_MASK; |
312 | max_physmem = get_kmem_end() - uml_physmem - iomem_size - MIN_VMALLOC; | 306 | max_physmem = CONFIG_TOP_ADDR - uml_physmem - iomem_size - MIN_VMALLOC; |
313 | 307 | ||
314 | /* | 308 | /* |
315 | * Zones have to begin on a 1 << MAX_ORDER page boundary, | 309 | * Zones have to begin on a 1 << MAX_ORDER page boundary, |
@@ -341,7 +335,7 @@ int __init linux_main(int argc, char **argv) | |||
341 | } | 335 | } |
342 | 336 | ||
343 | virtmem_size = physmem_size; | 337 | virtmem_size = physmem_size; |
344 | avail = get_kmem_end() - start_vm; | 338 | avail = CONFIG_TOP_ADDR - start_vm; |
345 | if (physmem_size > avail) | 339 | if (physmem_size > avail) |
346 | virtmem_size = avail; | 340 | virtmem_size = avail; |
347 | end_vm = start_vm + virtmem_size; | 341 | end_vm = start_vm + virtmem_size; |
@@ -350,6 +344,9 @@ int __init linux_main(int argc, char **argv) | |||
350 | printf("Kernel virtual memory size shrunk to %lu bytes\n", | 344 | printf("Kernel virtual memory size shrunk to %lu bytes\n", |
351 | virtmem_size); | 345 | virtmem_size); |
352 | 346 | ||
347 | atomic_notifier_chain_register(&panic_notifier_list, | ||
348 | &panic_exit_notifier); | ||
349 | |||
353 | uml_postsetup(); | 350 | uml_postsetup(); |
354 | 351 | ||
355 | stack_protections((unsigned long) &init_thread_info); | 352 | stack_protections((unsigned long) &init_thread_info); |
@@ -358,29 +355,8 @@ int __init linux_main(int argc, char **argv) | |||
358 | return start_uml(); | 355 | return start_uml(); |
359 | } | 356 | } |
360 | 357 | ||
361 | extern int uml_exitcode; | ||
362 | |||
363 | static int panic_exit(struct notifier_block *self, unsigned long unused1, | ||
364 | void *unused2) | ||
365 | { | ||
366 | bust_spinlocks(1); | ||
367 | show_regs(&(current->thread.regs)); | ||
368 | bust_spinlocks(0); | ||
369 | uml_exitcode = 1; | ||
370 | os_dump_core(); | ||
371 | return 0; | ||
372 | } | ||
373 | |||
374 | static struct notifier_block panic_exit_notifier = { | ||
375 | .notifier_call = panic_exit, | ||
376 | .next = NULL, | ||
377 | .priority = 0 | ||
378 | }; | ||
379 | |||
380 | void __init setup_arch(char **cmdline_p) | 358 | void __init setup_arch(char **cmdline_p) |
381 | { | 359 | { |
382 | atomic_notifier_chain_register(&panic_notifier_list, | ||
383 | &panic_exit_notifier); | ||
384 | paging_init(); | 360 | paging_init(); |
385 | strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); | 361 | strlcpy(boot_command_line, command_line, COMMAND_LINE_SIZE); |
386 | *cmdline_p = command_line; | 362 | *cmdline_p = command_line; |
diff --git a/arch/um/kernel/umid.c b/arch/um/kernel/umid.c index 039e16efcd55..81e07e2be3ae 100644 --- a/arch/um/kernel/umid.c +++ b/arch/um/kernel/umid.c | |||
@@ -1,13 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "asm/errno.h" | 6 | #include <asm/errno.h> |
7 | #include "init.h" | 7 | #include "init.h" |
8 | #include "os.h" | ||
9 | #include "kern.h" | 8 | #include "kern.h" |
10 | #include "linux/kernel.h" | 9 | #include "os.h" |
11 | 10 | ||
12 | /* Changed by set_umid_arg */ | 11 | /* Changed by set_umid_arg */ |
13 | static int umid_inited = 0; | 12 | static int umid_inited = 0; |
@@ -16,16 +15,16 @@ static int __init set_umid_arg(char *name, int *add) | |||
16 | { | 15 | { |
17 | int err; | 16 | int err; |
18 | 17 | ||
19 | if(umid_inited){ | 18 | if (umid_inited) { |
20 | printf("umid already set\n"); | 19 | printf("umid already set\n"); |
21 | return 0; | 20 | return 0; |
22 | } | 21 | } |
23 | 22 | ||
24 | *add = 0; | 23 | *add = 0; |
25 | err = set_umid(name); | 24 | err = set_umid(name); |
26 | if(err == -EEXIST) | 25 | if (err == -EEXIST) |
27 | printf("umid '%s' already in use\n", name); | 26 | printf("umid '%s' already in use\n", name); |
28 | else if(!err) | 27 | else if (!err) |
29 | umid_inited = 1; | 28 | umid_inited = 1; |
30 | 29 | ||
31 | return 0; | 30 | return 0; |
diff --git a/arch/um/os-Linux/Makefile b/arch/um/os-Linux/Makefile index 8e129af8170d..8a48d6a30064 100644 --- a/arch/um/os-Linux/Makefile +++ b/arch/um/os-Linux/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | # | 4 | # |
5 | 5 | ||
6 | obj-y = aio.o elf_aux.o execvp.o file.o helper.o irq.o main.o mem.o process.o \ | 6 | obj-y = aio.o elf_aux.o execvp.o file.o helper.o irq.o main.o mem.o process.o \ |
7 | registers.o sigio.o signal.o start_up.o time.o trap.o tty.o uaccess.o \ | 7 | registers.o sigio.o signal.o start_up.o time.o tty.o uaccess.o \ |
8 | umid.o tls.o user_syms.o util.o drivers/ sys-$(SUBARCH)/ skas/ | 8 | umid.o tls.o user_syms.o util.o drivers/ sys-$(SUBARCH)/ skas/ |
9 | 9 | ||
10 | obj-$(CONFIG_TTY_LOG) += tty_log.o | 10 | obj-$(CONFIG_TTY_LOG) += tty_log.o |
@@ -12,7 +12,7 @@ user-objs-$(CONFIG_TTY_LOG) += tty_log.o | |||
12 | 12 | ||
13 | USER_OBJS := $(user-objs-y) aio.o elf_aux.o execvp.o file.o helper.o irq.o \ | 13 | USER_OBJS := $(user-objs-y) aio.o elf_aux.o execvp.o file.o helper.o irq.o \ |
14 | main.o mem.o process.o registers.o sigio.o signal.o start_up.o time.o \ | 14 | main.o mem.o process.o registers.o sigio.o signal.o start_up.o time.o \ |
15 | trap.o tty.o tls.o uaccess.o umid.o util.o | 15 | tty.o tls.o uaccess.o umid.o util.o |
16 | 16 | ||
17 | CFLAGS_user_syms.o += -DSUBARCH_$(SUBARCH) | 17 | CFLAGS_user_syms.o += -DSUBARCH_$(SUBARCH) |
18 | 18 | ||
diff --git a/arch/um/os-Linux/aio.c b/arch/um/os-Linux/aio.c index 93dc0c80ebaf..b8d8c9ca8d4a 100644 --- a/arch/um/os-Linux/aio.c +++ b/arch/um/os-Linux/aio.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include "aio.h" | 12 | #include "aio.h" |
13 | #include "init.h" | 13 | #include "init.h" |
14 | #include "kern_constants.h" | 14 | #include "kern_constants.h" |
15 | #include "kern_util.h" | ||
15 | #include "os.h" | 16 | #include "os.h" |
16 | #include "user.h" | 17 | #include "user.h" |
17 | 18 | ||
diff --git a/arch/um/os-Linux/drivers/ethertap_user.c b/arch/um/os-Linux/drivers/ethertap_user.c index 07ca0cb472ac..6fb0b174f538 100644 --- a/arch/um/os-Linux/drivers/ethertap_user.c +++ b/arch/um/os-Linux/drivers/ethertap_user.c | |||
@@ -131,7 +131,7 @@ static int etap_tramp(char *dev, char *gate, int control_me, | |||
131 | } | 131 | } |
132 | if (c != 1) { | 132 | if (c != 1) { |
133 | printk(UM_KERN_ERR "etap_tramp : uml_net failed\n"); | 133 | printk(UM_KERN_ERR "etap_tramp : uml_net failed\n"); |
134 | err = helper_wait(pid, 0, "uml_net"); | 134 | err = helper_wait(pid); |
135 | } | 135 | } |
136 | return err; | 136 | return err; |
137 | } | 137 | } |
diff --git a/arch/um/os-Linux/drivers/tuntap_user.c b/arch/um/os-Linux/drivers/tuntap_user.c index 1037a3b6386e..2448be03fd7a 100644 --- a/arch/um/os-Linux/drivers/tuntap_user.c +++ b/arch/um/os-Linux/drivers/tuntap_user.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <sys/wait.h> | 14 | #include <sys/wait.h> |
15 | #include <sys/uio.h> | 15 | #include <sys/uio.h> |
16 | #include "kern_constants.h" | 16 | #include "kern_constants.h" |
17 | #include "kern_util.h" | ||
17 | #include "os.h" | 18 | #include "os.h" |
18 | #include "tuntap.h" | 19 | #include "tuntap.h" |
19 | #include "user.h" | 20 | #include "user.h" |
@@ -107,7 +108,7 @@ static int tuntap_open_tramp(char *gate, int *fd_out, int me, int remote, | |||
107 | "errno = %d\n", errno); | 108 | "errno = %d\n", errno); |
108 | return err; | 109 | return err; |
109 | } | 110 | } |
110 | helper_wait(pid, 0, "tuntap_open_tramp"); | 111 | helper_wait(pid); |
111 | 112 | ||
112 | cmsg = CMSG_FIRSTHDR(&msg); | 113 | cmsg = CMSG_FIRSTHDR(&msg); |
113 | if (cmsg == NULL) { | 114 | if (cmsg == NULL) { |
@@ -148,7 +149,7 @@ static int tuntap_open(void *data) | |||
148 | memset(&ifr, 0, sizeof(ifr)); | 149 | memset(&ifr, 0, sizeof(ifr)); |
149 | ifr.ifr_flags = IFF_TAP | IFF_NO_PI; | 150 | ifr.ifr_flags = IFF_TAP | IFF_NO_PI; |
150 | strlcpy(ifr.ifr_name, pri->dev_name, sizeof(ifr.ifr_name)); | 151 | strlcpy(ifr.ifr_name, pri->dev_name, sizeof(ifr.ifr_name)); |
151 | if (ioctl(pri->fd, TUNSETIFF, (void *) &ifr) < 0) { | 152 | if (ioctl(pri->fd, TUNSETIFF, &ifr) < 0) { |
152 | err = -errno; | 153 | err = -errno; |
153 | printk(UM_KERN_ERR "TUNSETIFF failed, errno = %d\n", | 154 | printk(UM_KERN_ERR "TUNSETIFF failed, errno = %d\n", |
154 | errno); | 155 | errno); |
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index f83462758627..b5afcfd0f861 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -8,18 +8,16 @@ | |||
8 | #include <errno.h> | 8 | #include <errno.h> |
9 | #include <fcntl.h> | 9 | #include <fcntl.h> |
10 | #include <signal.h> | 10 | #include <signal.h> |
11 | #include <sys/types.h> | ||
12 | #include <sys/stat.h> | ||
13 | #include <sys/socket.h> | ||
14 | #include <sys/un.h> | ||
15 | #include <sys/ioctl.h> | 11 | #include <sys/ioctl.h> |
16 | #include <sys/mount.h> | 12 | #include <sys/mount.h> |
17 | #include <sys/uio.h> | 13 | #include <sys/socket.h> |
14 | #include <sys/stat.h> | ||
15 | #include <sys/un.h> | ||
16 | #include "kern_constants.h" | ||
18 | #include "os.h" | 17 | #include "os.h" |
19 | #include "user.h" | 18 | #include "user.h" |
20 | #include "kern_util.h" | ||
21 | 19 | ||
22 | static void copy_stat(struct uml_stat *dst, struct stat64 *src) | 20 | static void copy_stat(struct uml_stat *dst, const struct stat64 *src) |
23 | { | 21 | { |
24 | *dst = ((struct uml_stat) { | 22 | *dst = ((struct uml_stat) { |
25 | .ust_dev = src->st_dev, /* device */ | 23 | .ust_dev = src->st_dev, /* device */ |
@@ -43,10 +41,10 @@ int os_stat_fd(const int fd, struct uml_stat *ubuf) | |||
43 | int err; | 41 | int err; |
44 | 42 | ||
45 | CATCH_EINTR(err = fstat64(fd, &sbuf)); | 43 | CATCH_EINTR(err = fstat64(fd, &sbuf)); |
46 | if(err < 0) | 44 | if (err < 0) |
47 | return -errno; | 45 | return -errno; |
48 | 46 | ||
49 | if(ubuf != NULL) | 47 | if (ubuf != NULL) |
50 | copy_stat(ubuf, &sbuf); | 48 | copy_stat(ubuf, &sbuf); |
51 | return err; | 49 | return err; |
52 | } | 50 | } |
@@ -56,27 +54,26 @@ int os_stat_file(const char *file_name, struct uml_stat *ubuf) | |||
56 | struct stat64 sbuf; | 54 | struct stat64 sbuf; |
57 | int err; | 55 | int err; |
58 | 56 | ||
59 | do { | 57 | CATCH_EINTR(err = stat64(file_name, &sbuf)); |
60 | err = stat64(file_name, &sbuf); | 58 | if (err < 0) |
61 | } while((err < 0) && (errno == EINTR)) ; | ||
62 | |||
63 | if(err < 0) | ||
64 | return -errno; | 59 | return -errno; |
65 | 60 | ||
66 | if(ubuf != NULL) | 61 | if (ubuf != NULL) |
67 | copy_stat(ubuf, &sbuf); | 62 | copy_stat(ubuf, &sbuf); |
68 | return err; | 63 | return err; |
69 | } | 64 | } |
70 | 65 | ||
71 | int os_access(const char* file, int mode) | 66 | int os_access(const char *file, int mode) |
72 | { | 67 | { |
73 | int amode, err; | 68 | int amode, err; |
74 | 69 | ||
75 | amode=(mode&OS_ACC_R_OK ? R_OK : 0) | (mode&OS_ACC_W_OK ? W_OK : 0) | | 70 | amode = (mode & OS_ACC_R_OK ? R_OK : 0) | |
76 | (mode&OS_ACC_X_OK ? X_OK : 0) | (mode&OS_ACC_F_OK ? F_OK : 0) ; | 71 | (mode & OS_ACC_W_OK ? W_OK : 0) | |
72 | (mode & OS_ACC_X_OK ? X_OK : 0) | | ||
73 | (mode & OS_ACC_F_OK ? F_OK : 0); | ||
77 | 74 | ||
78 | err = access(file, amode); | 75 | err = access(file, amode); |
79 | if(err < 0) | 76 | if (err < 0) |
80 | return -errno; | 77 | return -errno; |
81 | 78 | ||
82 | return 0; | 79 | return 0; |
@@ -88,7 +85,7 @@ int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg) | |||
88 | int err; | 85 | int err; |
89 | 86 | ||
90 | err = ioctl(fd, cmd, arg); | 87 | err = ioctl(fd, cmd, arg); |
91 | if(err < 0) | 88 | if (err < 0) |
92 | return -errno; | 89 | return -errno; |
93 | 90 | ||
94 | return err; | 91 | return err; |
@@ -97,7 +94,7 @@ int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg) | |||
97 | /* FIXME: ensure namebuf in os_get_if_name is big enough */ | 94 | /* FIXME: ensure namebuf in os_get_if_name is big enough */ |
98 | int os_get_ifname(int fd, char* namebuf) | 95 | int os_get_ifname(int fd, char* namebuf) |
99 | { | 96 | { |
100 | if(ioctl(fd, SIOCGIFNAME, namebuf) < 0) | 97 | if (ioctl(fd, SIOCGIFNAME, namebuf) < 0) |
101 | return -errno; | 98 | return -errno; |
102 | 99 | ||
103 | return 0; | 100 | return 0; |
@@ -108,37 +105,22 @@ int os_set_slip(int fd) | |||
108 | int disc, sencap; | 105 | int disc, sencap; |
109 | 106 | ||
110 | disc = N_SLIP; | 107 | disc = N_SLIP; |
111 | if(ioctl(fd, TIOCSETD, &disc) < 0) | 108 | if (ioctl(fd, TIOCSETD, &disc) < 0) |
112 | return -errno; | 109 | return -errno; |
113 | 110 | ||
114 | sencap = 0; | 111 | sencap = 0; |
115 | if(ioctl(fd, SIOCSIFENCAP, &sencap) < 0) | 112 | if (ioctl(fd, SIOCSIFENCAP, &sencap) < 0) |
116 | return -errno; | 113 | return -errno; |
117 | 114 | ||
118 | return 0; | 115 | return 0; |
119 | } | 116 | } |
120 | 117 | ||
121 | int os_set_owner(int fd, int pid) | ||
122 | { | ||
123 | if(fcntl(fd, F_SETOWN, pid) < 0){ | ||
124 | int save_errno = errno; | ||
125 | |||
126 | if(fcntl(fd, F_GETOWN, 0) != pid) | ||
127 | return -save_errno; | ||
128 | } | ||
129 | |||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | int os_mode_fd(int fd, int mode) | 118 | int os_mode_fd(int fd, int mode) |
134 | { | 119 | { |
135 | int err; | 120 | int err; |
136 | 121 | ||
137 | do { | 122 | CATCH_EINTR(err = fchmod(fd, mode)); |
138 | err = fchmod(fd, mode); | 123 | if (err < 0) |
139 | } while((err < 0) && (errno==EINTR)) ; | ||
140 | |||
141 | if(err < 0) | ||
142 | return -errno; | 124 | return -errno; |
143 | 125 | ||
144 | return 0; | 126 | return 0; |
@@ -150,64 +132,73 @@ int os_file_type(char *file) | |||
150 | int err; | 132 | int err; |
151 | 133 | ||
152 | err = os_stat_file(file, &buf); | 134 | err = os_stat_file(file, &buf); |
153 | if(err < 0) | 135 | if (err < 0) |
154 | return err; | 136 | return err; |
155 | 137 | ||
156 | if(S_ISDIR(buf.ust_mode)) | 138 | if (S_ISDIR(buf.ust_mode)) |
157 | return OS_TYPE_DIR; | 139 | return OS_TYPE_DIR; |
158 | else if(S_ISLNK(buf.ust_mode)) | 140 | else if (S_ISLNK(buf.ust_mode)) |
159 | return OS_TYPE_SYMLINK; | 141 | return OS_TYPE_SYMLINK; |
160 | else if(S_ISCHR(buf.ust_mode)) | 142 | else if (S_ISCHR(buf.ust_mode)) |
161 | return OS_TYPE_CHARDEV; | 143 | return OS_TYPE_CHARDEV; |
162 | else if(S_ISBLK(buf.ust_mode)) | 144 | else if (S_ISBLK(buf.ust_mode)) |
163 | return OS_TYPE_BLOCKDEV; | 145 | return OS_TYPE_BLOCKDEV; |
164 | else if(S_ISFIFO(buf.ust_mode)) | 146 | else if (S_ISFIFO(buf.ust_mode)) |
165 | return OS_TYPE_FIFO; | 147 | return OS_TYPE_FIFO; |
166 | else if(S_ISSOCK(buf.ust_mode)) | 148 | else if (S_ISSOCK(buf.ust_mode)) |
167 | return OS_TYPE_SOCK; | 149 | return OS_TYPE_SOCK; |
168 | else return OS_TYPE_FILE; | 150 | else return OS_TYPE_FILE; |
169 | } | 151 | } |
170 | 152 | ||
171 | int os_file_mode(char *file, struct openflags *mode_out) | 153 | int os_file_mode(const char *file, struct openflags *mode_out) |
172 | { | 154 | { |
173 | int err; | 155 | int err; |
174 | 156 | ||
175 | *mode_out = OPENFLAGS(); | 157 | *mode_out = OPENFLAGS(); |
176 | 158 | ||
177 | err = access(file, W_OK); | 159 | err = access(file, W_OK); |
178 | if(err && (errno != EACCES)) | 160 | if (err && (errno != EACCES)) |
179 | return -errno; | 161 | return -errno; |
180 | else if(!err) | 162 | else if (!err) |
181 | *mode_out = of_write(*mode_out); | 163 | *mode_out = of_write(*mode_out); |
182 | 164 | ||
183 | err = access(file, R_OK); | 165 | err = access(file, R_OK); |
184 | if(err && (errno != EACCES)) | 166 | if (err && (errno != EACCES)) |
185 | return -errno; | 167 | return -errno; |
186 | else if(!err) | 168 | else if (!err) |
187 | *mode_out = of_read(*mode_out); | 169 | *mode_out = of_read(*mode_out); |
188 | 170 | ||
189 | return err; | 171 | return err; |
190 | } | 172 | } |
191 | 173 | ||
192 | int os_open_file(char *file, struct openflags flags, int mode) | 174 | int os_open_file(const char *file, struct openflags flags, int mode) |
193 | { | 175 | { |
194 | int fd, err, f = 0; | 176 | int fd, err, f = 0; |
195 | 177 | ||
196 | if(flags.r && flags.w) f = O_RDWR; | 178 | if (flags.r && flags.w) |
197 | else if(flags.r) f = O_RDONLY; | 179 | f = O_RDWR; |
198 | else if(flags.w) f = O_WRONLY; | 180 | else if (flags.r) |
181 | f = O_RDONLY; | ||
182 | else if (flags.w) | ||
183 | f = O_WRONLY; | ||
199 | else f = 0; | 184 | else f = 0; |
200 | 185 | ||
201 | if(flags.s) f |= O_SYNC; | 186 | if (flags.s) |
202 | if(flags.c) f |= O_CREAT; | 187 | f |= O_SYNC; |
203 | if(flags.t) f |= O_TRUNC; | 188 | if (flags.c) |
204 | if(flags.e) f |= O_EXCL; | 189 | f |= O_CREAT; |
190 | if (flags.t) | ||
191 | f |= O_TRUNC; | ||
192 | if (flags.e) | ||
193 | f |= O_EXCL; | ||
194 | if (flags.a) | ||
195 | f |= O_APPEND; | ||
205 | 196 | ||
206 | fd = open64(file, f, mode); | 197 | fd = open64(file, f, mode); |
207 | if(fd < 0) | 198 | if (fd < 0) |
208 | return -errno; | 199 | return -errno; |
209 | 200 | ||
210 | if(flags.cl && fcntl(fd, F_SETFD, 1)){ | 201 | if (flags.cl && fcntl(fd, F_SETFD, 1)) { |
211 | err = -errno; | 202 | err = -errno; |
212 | close(fd); | 203 | close(fd); |
213 | return err; | 204 | return err; |
@@ -216,7 +207,7 @@ int os_open_file(char *file, struct openflags flags, int mode) | |||
216 | return fd; | 207 | return fd; |
217 | } | 208 | } |
218 | 209 | ||
219 | int os_connect_socket(char *name) | 210 | int os_connect_socket(const char *name) |
220 | { | 211 | { |
221 | struct sockaddr_un sock; | 212 | struct sockaddr_un sock; |
222 | int fd, err; | 213 | int fd, err; |
@@ -225,13 +216,13 @@ int os_connect_socket(char *name) | |||
225 | snprintf(sock.sun_path, sizeof(sock.sun_path), "%s", name); | 216 | snprintf(sock.sun_path, sizeof(sock.sun_path), "%s", name); |
226 | 217 | ||
227 | fd = socket(AF_UNIX, SOCK_STREAM, 0); | 218 | fd = socket(AF_UNIX, SOCK_STREAM, 0); |
228 | if(fd < 0) { | 219 | if (fd < 0) { |
229 | err = -errno; | 220 | err = -errno; |
230 | goto out; | 221 | goto out; |
231 | } | 222 | } |
232 | 223 | ||
233 | err = connect(fd, (struct sockaddr *) &sock, sizeof(sock)); | 224 | err = connect(fd, (struct sockaddr *) &sock, sizeof(sock)); |
234 | if(err) { | 225 | if (err) { |
235 | err = -errno; | 226 | err = -errno; |
236 | goto out_close; | 227 | goto out_close; |
237 | } | 228 | } |
@@ -254,7 +245,7 @@ int os_seek_file(int fd, unsigned long long offset) | |||
254 | unsigned long long actual; | 245 | unsigned long long actual; |
255 | 246 | ||
256 | actual = lseek64(fd, offset, SEEK_SET); | 247 | actual = lseek64(fd, offset, SEEK_SET); |
257 | if(actual != offset) | 248 | if (actual != offset) |
258 | return -errno; | 249 | return -errno; |
259 | return 0; | 250 | return 0; |
260 | } | 251 | } |
@@ -263,7 +254,7 @@ int os_read_file(int fd, void *buf, int len) | |||
263 | { | 254 | { |
264 | int n = read(fd, buf, len); | 255 | int n = read(fd, buf, len); |
265 | 256 | ||
266 | if(n < 0) | 257 | if (n < 0) |
267 | return -errno; | 258 | return -errno; |
268 | return n; | 259 | return n; |
269 | } | 260 | } |
@@ -272,37 +263,38 @@ int os_write_file(int fd, const void *buf, int len) | |||
272 | { | 263 | { |
273 | int n = write(fd, (void *) buf, len); | 264 | int n = write(fd, (void *) buf, len); |
274 | 265 | ||
275 | if(n < 0) | 266 | if (n < 0) |
276 | return -errno; | 267 | return -errno; |
277 | return n; | 268 | return n; |
278 | } | 269 | } |
279 | 270 | ||
280 | int os_file_size(char *file, unsigned long long *size_out) | 271 | int os_file_size(const char *file, unsigned long long *size_out) |
281 | { | 272 | { |
282 | struct uml_stat buf; | 273 | struct uml_stat buf; |
283 | int err; | 274 | int err; |
284 | 275 | ||
285 | err = os_stat_file(file, &buf); | 276 | err = os_stat_file(file, &buf); |
286 | if(err < 0){ | 277 | if (err < 0) { |
287 | printk("Couldn't stat \"%s\" : err = %d\n", file, -err); | 278 | printk(UM_KERN_ERR "Couldn't stat \"%s\" : err = %d\n", file, |
279 | -err); | ||
288 | return err; | 280 | return err; |
289 | } | 281 | } |
290 | 282 | ||
291 | if(S_ISBLK(buf.ust_mode)){ | 283 | if (S_ISBLK(buf.ust_mode)) { |
292 | int fd; | 284 | int fd; |
293 | long blocks; | 285 | long blocks; |
294 | 286 | ||
295 | fd = open(file, O_RDONLY, 0); | 287 | fd = open(file, O_RDONLY, 0); |
296 | if(fd < 0) { | 288 | if (fd < 0) { |
297 | err = -errno; | 289 | err = -errno; |
298 | printk("Couldn't open \"%s\", errno = %d\n", file, | 290 | printk(UM_KERN_ERR "Couldn't open \"%s\", " |
299 | errno); | 291 | "errno = %d\n", file, errno); |
300 | return err; | 292 | return err; |
301 | } | 293 | } |
302 | if(ioctl(fd, BLKGETSIZE, &blocks) < 0){ | 294 | if (ioctl(fd, BLKGETSIZE, &blocks) < 0) { |
303 | err = -errno; | 295 | err = -errno; |
304 | printk("Couldn't get the block size of \"%s\", " | 296 | printk(UM_KERN_ERR "Couldn't get the block size of " |
305 | "errno = %d\n", file, errno); | 297 | "\"%s\", errno = %d\n", file, errno); |
306 | close(fd); | 298 | close(fd); |
307 | return err; | 299 | return err; |
308 | } | 300 | } |
@@ -314,14 +306,15 @@ int os_file_size(char *file, unsigned long long *size_out) | |||
314 | return 0; | 306 | return 0; |
315 | } | 307 | } |
316 | 308 | ||
317 | int os_file_modtime(char *file, unsigned long *modtime) | 309 | int os_file_modtime(const char *file, unsigned long *modtime) |
318 | { | 310 | { |
319 | struct uml_stat buf; | 311 | struct uml_stat buf; |
320 | int err; | 312 | int err; |
321 | 313 | ||
322 | err = os_stat_file(file, &buf); | 314 | err = os_stat_file(file, &buf); |
323 | if(err < 0){ | 315 | if (err < 0) { |
324 | printk("Couldn't stat \"%s\" : err = %d\n", file, -err); | 316 | printk(UM_KERN_ERR "Couldn't stat \"%s\" : err = %d\n", file, |
317 | -err); | ||
325 | return err; | 318 | return err; |
326 | } | 319 | } |
327 | 320 | ||
@@ -329,26 +322,13 @@ int os_file_modtime(char *file, unsigned long *modtime) | |||
329 | return 0; | 322 | return 0; |
330 | } | 323 | } |
331 | 324 | ||
332 | int os_get_exec_close(int fd, int *close_on_exec) | ||
333 | { | ||
334 | int ret; | ||
335 | |||
336 | CATCH_EINTR(ret = fcntl(fd, F_GETFD)); | ||
337 | |||
338 | if(ret < 0) | ||
339 | return -errno; | ||
340 | |||
341 | *close_on_exec = (ret & FD_CLOEXEC) ? 1 : 0; | ||
342 | return ret; | ||
343 | } | ||
344 | |||
345 | int os_set_exec_close(int fd) | 325 | int os_set_exec_close(int fd) |
346 | { | 326 | { |
347 | int err; | 327 | int err; |
348 | 328 | ||
349 | CATCH_EINTR(err = fcntl(fd, F_SETFD, FD_CLOEXEC)); | 329 | CATCH_EINTR(err = fcntl(fd, F_SETFD, FD_CLOEXEC)); |
350 | 330 | ||
351 | if(err < 0) | 331 | if (err < 0) |
352 | return -errno; | 332 | return -errno; |
353 | return err; | 333 | return err; |
354 | } | 334 | } |
@@ -358,53 +338,51 @@ int os_pipe(int *fds, int stream, int close_on_exec) | |||
358 | int err, type = stream ? SOCK_STREAM : SOCK_DGRAM; | 338 | int err, type = stream ? SOCK_STREAM : SOCK_DGRAM; |
359 | 339 | ||
360 | err = socketpair(AF_UNIX, type, 0, fds); | 340 | err = socketpair(AF_UNIX, type, 0, fds); |
361 | if(err < 0) | 341 | if (err < 0) |
362 | return -errno; | 342 | return -errno; |
363 | 343 | ||
364 | if(!close_on_exec) | 344 | if (!close_on_exec) |
365 | return 0; | 345 | return 0; |
366 | 346 | ||
367 | err = os_set_exec_close(fds[0]); | 347 | err = os_set_exec_close(fds[0]); |
368 | if(err < 0) | 348 | if (err < 0) |
369 | goto error; | 349 | goto error; |
370 | 350 | ||
371 | err = os_set_exec_close(fds[1]); | 351 | err = os_set_exec_close(fds[1]); |
372 | if(err < 0) | 352 | if (err < 0) |
373 | goto error; | 353 | goto error; |
374 | 354 | ||
375 | return 0; | 355 | return 0; |
376 | 356 | ||
377 | error: | 357 | error: |
378 | printk("os_pipe : Setting FD_CLOEXEC failed, err = %d\n", -err); | 358 | printk(UM_KERN_ERR "os_pipe : Setting FD_CLOEXEC failed, err = %d\n", |
359 | -err); | ||
379 | close(fds[1]); | 360 | close(fds[1]); |
380 | close(fds[0]); | 361 | close(fds[0]); |
381 | return err; | 362 | return err; |
382 | } | 363 | } |
383 | 364 | ||
384 | int os_set_fd_async(int fd, int owner) | 365 | int os_set_fd_async(int fd) |
385 | { | 366 | { |
386 | int err; | 367 | int err, flags; |
368 | |||
369 | flags = fcntl(fd, F_GETFL); | ||
370 | if (flags < 0) | ||
371 | return -errno; | ||
387 | 372 | ||
388 | /* XXX This should do F_GETFL first */ | 373 | flags |= O_ASYNC | O_NONBLOCK; |
389 | if(fcntl(fd, F_SETFL, O_ASYNC | O_NONBLOCK) < 0){ | 374 | if (fcntl(fd, F_SETFL, flags) < 0) { |
390 | err = -errno; | 375 | err = -errno; |
391 | printk("os_set_fd_async : failed to set O_ASYNC and " | 376 | printk(UM_KERN_ERR "os_set_fd_async : failed to set O_ASYNC " |
392 | "O_NONBLOCK on fd # %d, errno = %d\n", fd, errno); | 377 | "and O_NONBLOCK on fd # %d, errno = %d\n", fd, errno); |
393 | return err; | 378 | return err; |
394 | } | 379 | } |
395 | #ifdef notdef | ||
396 | if(fcntl(fd, F_SETFD, 1) < 0){ | ||
397 | printk("os_set_fd_async : Setting FD_CLOEXEC failed, " | ||
398 | "errno = %d\n", errno); | ||
399 | } | ||
400 | #endif | ||
401 | 380 | ||
402 | if((fcntl(fd, F_SETSIG, SIGIO) < 0) || | 381 | if ((fcntl(fd, F_SETSIG, SIGIO) < 0) || |
403 | (fcntl(fd, F_SETOWN, owner) < 0)){ | 382 | (fcntl(fd, F_SETOWN, os_getpid()) < 0)) { |
404 | err = -errno; | 383 | err = -errno; |
405 | printk("os_set_fd_async : Failed to fcntl F_SETOWN " | 384 | printk(UM_KERN_ERR "os_set_fd_async : Failed to fcntl F_SETOWN " |
406 | "(or F_SETSIG) fd %d to pid %d, errno = %d\n", fd, | 385 | "(or F_SETSIG) fd %d, errno = %d\n", fd, errno); |
407 | owner, errno); | ||
408 | return err; | 386 | return err; |
409 | } | 387 | } |
410 | 388 | ||
@@ -413,10 +391,14 @@ int os_set_fd_async(int fd, int owner) | |||
413 | 391 | ||
414 | int os_clear_fd_async(int fd) | 392 | int os_clear_fd_async(int fd) |
415 | { | 393 | { |
416 | int flags = fcntl(fd, F_GETFL); | 394 | int flags; |
395 | |||
396 | flags = fcntl(fd, F_GETFL); | ||
397 | if (flags < 0) | ||
398 | return -errno; | ||
417 | 399 | ||
418 | flags &= ~(O_ASYNC | O_NONBLOCK); | 400 | flags &= ~(O_ASYNC | O_NONBLOCK); |
419 | if(fcntl(fd, F_SETFL, flags) < 0) | 401 | if (fcntl(fd, F_SETFL, flags) < 0) |
420 | return -errno; | 402 | return -errno; |
421 | return 0; | 403 | return 0; |
422 | } | 404 | } |
@@ -426,11 +408,15 @@ int os_set_fd_block(int fd, int blocking) | |||
426 | int flags; | 408 | int flags; |
427 | 409 | ||
428 | flags = fcntl(fd, F_GETFL); | 410 | flags = fcntl(fd, F_GETFL); |
411 | if (flags < 0) | ||
412 | return -errno; | ||
429 | 413 | ||
430 | if(blocking) flags &= ~O_NONBLOCK; | 414 | if (blocking) |
431 | else flags |= O_NONBLOCK; | 415 | flags &= ~O_NONBLOCK; |
416 | else | ||
417 | flags |= O_NONBLOCK; | ||
432 | 418 | ||
433 | if(fcntl(fd, F_SETFL, flags) < 0) | 419 | if (fcntl(fd, F_SETFL, flags) < 0) |
434 | return -errno; | 420 | return -errno; |
435 | 421 | ||
436 | return 0; | 422 | return 0; |
@@ -441,7 +427,7 @@ int os_accept_connection(int fd) | |||
441 | int new; | 427 | int new; |
442 | 428 | ||
443 | new = accept(fd, NULL, 0); | 429 | new = accept(fd, NULL, 0); |
444 | if(new < 0) | 430 | if (new < 0) |
445 | return -errno; | 431 | return -errno; |
446 | return new; | 432 | return new; |
447 | } | 433 | } |
@@ -462,15 +448,17 @@ int os_shutdown_socket(int fd, int r, int w) | |||
462 | { | 448 | { |
463 | int what, err; | 449 | int what, err; |
464 | 450 | ||
465 | if(r && w) what = SHUT_RDWR; | 451 | if (r && w) |
466 | else if(r) what = SHUT_RD; | 452 | what = SHUT_RDWR; |
467 | else if(w) what = SHUT_WR; | 453 | else if (r) |
468 | else { | 454 | what = SHUT_RD; |
469 | printk("os_shutdown_socket : neither r or w was set\n"); | 455 | else if (w) |
456 | what = SHUT_WR; | ||
457 | else | ||
470 | return -EINVAL; | 458 | return -EINVAL; |
471 | } | 459 | |
472 | err = shutdown(fd, what); | 460 | err = shutdown(fd, what); |
473 | if(err < 0) | 461 | if (err < 0) |
474 | return -errno; | 462 | return -errno; |
475 | return 0; | 463 | return 0; |
476 | } | 464 | } |
@@ -494,19 +482,20 @@ int os_rcv_fd(int fd, int *helper_pid_out) | |||
494 | msg.msg_flags = 0; | 482 | msg.msg_flags = 0; |
495 | 483 | ||
496 | n = recvmsg(fd, &msg, 0); | 484 | n = recvmsg(fd, &msg, 0); |
497 | if(n < 0) | 485 | if (n < 0) |
498 | return -errno; | 486 | return -errno; |
499 | else if(n != iov.iov_len) | 487 | else if (n != iov.iov_len) |
500 | *helper_pid_out = -1; | 488 | *helper_pid_out = -1; |
501 | 489 | ||
502 | cmsg = CMSG_FIRSTHDR(&msg); | 490 | cmsg = CMSG_FIRSTHDR(&msg); |
503 | if(cmsg == NULL){ | 491 | if (cmsg == NULL) { |
504 | printk("rcv_fd didn't receive anything, error = %d\n", errno); | 492 | printk(UM_KERN_ERR "rcv_fd didn't receive anything, " |
493 | "error = %d\n", errno); | ||
505 | return -1; | 494 | return -1; |
506 | } | 495 | } |
507 | if((cmsg->cmsg_level != SOL_SOCKET) || | 496 | if ((cmsg->cmsg_level != SOL_SOCKET) || |
508 | (cmsg->cmsg_type != SCM_RIGHTS)){ | 497 | (cmsg->cmsg_type != SCM_RIGHTS)) { |
509 | printk("rcv_fd didn't receive a descriptor\n"); | 498 | printk(UM_KERN_ERR "rcv_fd didn't receive a descriptor\n"); |
510 | return -1; | 499 | return -1; |
511 | } | 500 | } |
512 | 501 | ||
@@ -514,29 +503,28 @@ int os_rcv_fd(int fd, int *helper_pid_out) | |||
514 | return new; | 503 | return new; |
515 | } | 504 | } |
516 | 505 | ||
517 | int os_create_unix_socket(char *file, int len, int close_on_exec) | 506 | int os_create_unix_socket(const char *file, int len, int close_on_exec) |
518 | { | 507 | { |
519 | struct sockaddr_un addr; | 508 | struct sockaddr_un addr; |
520 | int sock, err; | 509 | int sock, err; |
521 | 510 | ||
522 | sock = socket(PF_UNIX, SOCK_DGRAM, 0); | 511 | sock = socket(PF_UNIX, SOCK_DGRAM, 0); |
523 | if(sock < 0) | 512 | if (sock < 0) |
524 | return -errno; | 513 | return -errno; |
525 | 514 | ||
526 | if(close_on_exec) { | 515 | if (close_on_exec) { |
527 | err = os_set_exec_close(sock); | 516 | err = os_set_exec_close(sock); |
528 | if(err < 0) | 517 | if (err < 0) |
529 | printk("create_unix_socket : close_on_exec failed, " | 518 | printk(UM_KERN_ERR "create_unix_socket : " |
530 | "err = %d", -err); | 519 | "close_on_exec failed, err = %d", -err); |
531 | } | 520 | } |
532 | 521 | ||
533 | addr.sun_family = AF_UNIX; | 522 | addr.sun_family = AF_UNIX; |
534 | 523 | ||
535 | /* XXX Be more careful about overflow */ | ||
536 | snprintf(addr.sun_path, len, "%s", file); | 524 | snprintf(addr.sun_path, len, "%s", file); |
537 | 525 | ||
538 | err = bind(sock, (struct sockaddr *) &addr, sizeof(addr)); | 526 | err = bind(sock, (struct sockaddr *) &addr, sizeof(addr)); |
539 | if(err < 0) | 527 | if (err < 0) |
540 | return -errno; | 528 | return -errno; |
541 | 529 | ||
542 | return sock; | 530 | return sock; |
@@ -557,17 +545,18 @@ int os_lock_file(int fd, int excl) | |||
557 | int err, save; | 545 | int err, save; |
558 | 546 | ||
559 | err = fcntl(fd, F_SETLK, &lock); | 547 | err = fcntl(fd, F_SETLK, &lock); |
560 | if(!err) | 548 | if (!err) |
561 | goto out; | 549 | goto out; |
562 | 550 | ||
563 | save = -errno; | 551 | save = -errno; |
564 | err = fcntl(fd, F_GETLK, &lock); | 552 | err = fcntl(fd, F_GETLK, &lock); |
565 | if(err){ | 553 | if (err) { |
566 | err = -errno; | 554 | err = -errno; |
567 | goto out; | 555 | goto out; |
568 | } | 556 | } |
569 | 557 | ||
570 | printk("F_SETLK failed, file already locked by pid %d\n", lock.l_pid); | 558 | printk(UM_KERN_ERR "F_SETLK failed, file already locked by pid %d\n", |
559 | lock.l_pid); | ||
571 | err = save; | 560 | err = save; |
572 | out: | 561 | out: |
573 | return err; | 562 | return err; |
diff --git a/arch/um/os-Linux/helper.c b/arch/um/os-Linux/helper.c index fba3f0fefeef..f4bd349d4412 100644 --- a/arch/um/os-Linux/helper.c +++ b/arch/um/os-Linux/helper.c | |||
@@ -1,22 +1,19 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <stdio.h> | ||
7 | #include <stdlib.h> | 6 | #include <stdlib.h> |
8 | #include <unistd.h> | 7 | #include <unistd.h> |
9 | #include <errno.h> | 8 | #include <errno.h> |
10 | #include <sched.h> | 9 | #include <sched.h> |
11 | #include <limits.h> | ||
12 | #include <sys/signal.h> | ||
13 | #include <sys/wait.h> | ||
14 | #include <sys/socket.h> | 10 | #include <sys/socket.h> |
15 | #include "user.h" | 11 | #include <sys/wait.h> |
12 | #include "kern_constants.h" | ||
16 | #include "kern_util.h" | 13 | #include "kern_util.h" |
17 | #include "os.h" | 14 | #include "os.h" |
18 | #include "um_malloc.h" | 15 | #include "um_malloc.h" |
19 | #include "kern_constants.h" | 16 | #include "user.h" |
20 | 17 | ||
21 | struct helper_data { | 18 | struct helper_data { |
22 | void (*pre_exec)(void*); | 19 | void (*pre_exec)(void*); |
@@ -30,21 +27,19 @@ static int helper_child(void *arg) | |||
30 | { | 27 | { |
31 | struct helper_data *data = arg; | 28 | struct helper_data *data = arg; |
32 | char **argv = data->argv; | 29 | char **argv = data->argv; |
33 | int errval; | 30 | int err; |
34 | 31 | ||
35 | if (data->pre_exec != NULL) | 32 | if (data->pre_exec != NULL) |
36 | (*data->pre_exec)(data->pre_data); | 33 | (*data->pre_exec)(data->pre_data); |
37 | errval = execvp_noalloc(data->buf, argv[0], argv); | 34 | err = execvp_noalloc(data->buf, argv[0], argv); |
38 | printk("helper_child - execvp of '%s' failed - errno = %d\n", argv[0], | 35 | |
39 | -errval); | 36 | /* If the exec succeeds, we don't get here */ |
40 | write(data->fd, &errval, sizeof(errval)); | 37 | write(data->fd, &err, sizeof(err)); |
41 | kill(os_getpid(), SIGKILL); | 38 | |
42 | return 0; | 39 | return 0; |
43 | } | 40 | } |
44 | 41 | ||
45 | /* Returns either the pid of the child process we run or -E* on failure. | 42 | /* Returns either the pid of the child process we run or -E* on failure. */ |
46 | * XXX The alloc_stack here breaks if this is called in the tracing thread, so | ||
47 | * we need to receive a preallocated stack (a local buffer is ok). */ | ||
48 | int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv) | 43 | int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv) |
49 | { | 44 | { |
50 | struct helper_data data; | 45 | struct helper_data data; |
@@ -58,14 +53,15 @@ int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv) | |||
58 | ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fds); | 53 | ret = socketpair(AF_UNIX, SOCK_STREAM, 0, fds); |
59 | if (ret < 0) { | 54 | if (ret < 0) { |
60 | ret = -errno; | 55 | ret = -errno; |
61 | printk("run_helper : pipe failed, errno = %d\n", errno); | 56 | printk(UM_KERN_ERR "run_helper : pipe failed, errno = %d\n", |
57 | errno); | ||
62 | goto out_free; | 58 | goto out_free; |
63 | } | 59 | } |
64 | 60 | ||
65 | ret = os_set_exec_close(fds[1]); | 61 | ret = os_set_exec_close(fds[1]); |
66 | if (ret < 0) { | 62 | if (ret < 0) { |
67 | printk("run_helper : setting FD_CLOEXEC failed, ret = %d\n", | 63 | printk(UM_KERN_ERR "run_helper : setting FD_CLOEXEC failed, " |
68 | -ret); | 64 | "ret = %d\n", -ret); |
69 | goto out_close; | 65 | goto out_close; |
70 | } | 66 | } |
71 | 67 | ||
@@ -79,7 +75,8 @@ int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv) | |||
79 | pid = clone(helper_child, (void *) sp, CLONE_VM, &data); | 75 | pid = clone(helper_child, (void *) sp, CLONE_VM, &data); |
80 | if (pid < 0) { | 76 | if (pid < 0) { |
81 | ret = -errno; | 77 | ret = -errno; |
82 | printk("run_helper : clone failed, errno = %d\n", errno); | 78 | printk(UM_KERN_ERR "run_helper : clone failed, errno = %d\n", |
79 | errno); | ||
83 | goto out_free2; | 80 | goto out_free2; |
84 | } | 81 | } |
85 | 82 | ||
@@ -96,10 +93,9 @@ int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv) | |||
96 | } else { | 93 | } else { |
97 | if (n < 0) { | 94 | if (n < 0) { |
98 | n = -errno; | 95 | n = -errno; |
99 | printk("run_helper : read on pipe failed, ret = %d\n", | 96 | printk(UM_KERN_ERR "run_helper : read on pipe failed, " |
100 | -n); | 97 | "ret = %d\n", -n); |
101 | ret = n; | 98 | ret = n; |
102 | kill(pid, SIGKILL); | ||
103 | } | 99 | } |
104 | CATCH_EINTR(waitpid(pid, NULL, __WCLONE)); | 100 | CATCH_EINTR(waitpid(pid, NULL, __WCLONE)); |
105 | } | 101 | } |
@@ -129,50 +125,40 @@ int run_helper_thread(int (*proc)(void *), void *arg, unsigned int flags, | |||
129 | pid = clone(proc, (void *) sp, flags, arg); | 125 | pid = clone(proc, (void *) sp, flags, arg); |
130 | if (pid < 0) { | 126 | if (pid < 0) { |
131 | err = -errno; | 127 | err = -errno; |
132 | printk("run_helper_thread : clone failed, errno = %d\n", | 128 | printk(UM_KERN_ERR "run_helper_thread : clone failed, " |
133 | errno); | 129 | "errno = %d\n", errno); |
134 | return err; | 130 | return err; |
135 | } | 131 | } |
136 | if (stack_out == NULL) { | 132 | if (stack_out == NULL) { |
137 | CATCH_EINTR(pid = waitpid(pid, &status, __WCLONE)); | 133 | CATCH_EINTR(pid = waitpid(pid, &status, __WCLONE)); |
138 | if (pid < 0) { | 134 | if (pid < 0) { |
139 | err = -errno; | 135 | err = -errno; |
140 | printk("run_helper_thread - wait failed, errno = %d\n", | 136 | printk(UM_KERN_ERR "run_helper_thread - wait failed, " |
141 | errno); | 137 | "errno = %d\n", errno); |
142 | pid = err; | 138 | pid = err; |
143 | } | 139 | } |
144 | if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) | 140 | if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) |
145 | printk("run_helper_thread - thread returned status " | 141 | printk(UM_KERN_ERR "run_helper_thread - thread " |
146 | "0x%x\n", status); | 142 | "returned status 0x%x\n", status); |
147 | free_stack(stack, 0); | 143 | free_stack(stack, 0); |
148 | } else | 144 | } else |
149 | *stack_out = stack; | 145 | *stack_out = stack; |
150 | return pid; | 146 | return pid; |
151 | } | 147 | } |
152 | 148 | ||
153 | int helper_wait(int pid, int nohang, char *pname) | 149 | int helper_wait(int pid) |
154 | { | 150 | { |
155 | int ret, status; | 151 | int ret, status; |
156 | int wflags = __WCLONE; | 152 | int wflags = __WCLONE; |
157 | 153 | ||
158 | if (nohang) | ||
159 | wflags |= WNOHANG; | ||
160 | |||
161 | if (!pname) | ||
162 | pname = "helper_wait"; | ||
163 | |||
164 | CATCH_EINTR(ret = waitpid(pid, &status, wflags)); | 154 | CATCH_EINTR(ret = waitpid(pid, &status, wflags)); |
165 | if (ret < 0) { | 155 | if (ret < 0) { |
166 | printk(UM_KERN_ERR "%s : waitpid process %d failed, " | 156 | printk(UM_KERN_ERR "helper_wait : waitpid process %d failed, " |
167 | "errno = %d\n", pname, pid, errno); | 157 | "errno = %d\n", pid, errno); |
168 | return -errno; | 158 | return -errno; |
169 | } else if (nohang && ret == 0) { | ||
170 | printk(UM_KERN_ERR "%s : process %d has not exited\n", | ||
171 | pname, pid); | ||
172 | return -ECHILD; | ||
173 | } else if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { | 159 | } else if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
174 | printk(UM_KERN_ERR "%s : process %d didn't exit with " | 160 | printk(UM_KERN_ERR "helper_wait : process %d exited with " |
175 | "status 0\n", pname, pid); | 161 | "status 0x%x\n", pid, status); |
176 | return -ECHILD; | 162 | return -ECHILD; |
177 | } else | 163 | } else |
178 | return 0; | 164 | return 0; |
diff --git a/arch/um/os-Linux/irq.c b/arch/um/os-Linux/irq.c index 6aa6f95d6524..0348b975e81c 100644 --- a/arch/um/os-Linux/irq.c +++ b/arch/um/os-Linux/irq.c | |||
@@ -1,23 +1,19 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
7 | #include <unistd.h> | ||
8 | #include <errno.h> | 7 | #include <errno.h> |
8 | #include <poll.h> | ||
9 | #include <signal.h> | 9 | #include <signal.h> |
10 | #include <string.h> | 10 | #include <string.h> |
11 | #include <sys/poll.h> | ||
12 | #include <sys/types.h> | ||
13 | #include <sys/time.h> | ||
14 | #include "kern_util.h" | ||
15 | #include "user.h" | ||
16 | #include "process.h" | ||
17 | #include "sigio.h" | ||
18 | #include "irq_user.h" | 11 | #include "irq_user.h" |
12 | #include "kern_constants.h" | ||
19 | #include "os.h" | 13 | #include "os.h" |
14 | #include "process.h" | ||
20 | #include "um_malloc.h" | 15 | #include "um_malloc.h" |
16 | #include "user.h" | ||
21 | 17 | ||
22 | /* | 18 | /* |
23 | * Locked by irq_lock in arch/um/kernel/irq.c. Changed by os_create_pollfd | 19 | * Locked by irq_lock in arch/um/kernel/irq.c. Changed by os_create_pollfd |
@@ -36,7 +32,7 @@ int os_waiting_for_events(struct irq_fd *active_fds) | |||
36 | if (n < 0) { | 32 | if (n < 0) { |
37 | err = -errno; | 33 | err = -errno; |
38 | if (errno != EINTR) | 34 | if (errno != EINTR) |
39 | printk("sigio_handler: os_waiting_for_events:" | 35 | printk(UM_KERN_ERR "os_waiting_for_events:" |
40 | " poll returned %d, errno = %d\n", n, errno); | 36 | " poll returned %d, errno = %d\n", n, errno); |
41 | return err; | 37 | return err; |
42 | } | 38 | } |
@@ -95,24 +91,26 @@ void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg, | |||
95 | struct irq_fd *old_fd = *prev; | 91 | struct irq_fd *old_fd = *prev; |
96 | if ((pollfds[i].fd != -1) && | 92 | if ((pollfds[i].fd != -1) && |
97 | (pollfds[i].fd != (*prev)->fd)) { | 93 | (pollfds[i].fd != (*prev)->fd)) { |
98 | printk("os_free_irq_by_cb - mismatch between " | 94 | printk(UM_KERN_ERR "os_free_irq_by_cb - " |
99 | "active_fds and pollfds, fd %d vs %d\n", | 95 | "mismatch between active_fds and " |
96 | "pollfds, fd %d vs %d\n", | ||
100 | (*prev)->fd, pollfds[i].fd); | 97 | (*prev)->fd, pollfds[i].fd); |
101 | goto out; | 98 | goto out; |
102 | } | 99 | } |
103 | 100 | ||
104 | pollfds_num--; | 101 | pollfds_num--; |
105 | 102 | ||
106 | /* This moves the *whole* array after pollfds[i] | 103 | /* |
104 | * This moves the *whole* array after pollfds[i] | ||
107 | * (though it doesn't spot as such)! | 105 | * (though it doesn't spot as such)! |
108 | */ | 106 | */ |
109 | memmove(&pollfds[i], &pollfds[i + 1], | 107 | memmove(&pollfds[i], &pollfds[i + 1], |
110 | (pollfds_num - i) * sizeof(pollfds[0])); | 108 | (pollfds_num - i) * sizeof(pollfds[0])); |
111 | if(*last_irq_ptr2 == &old_fd->next) | 109 | if (*last_irq_ptr2 == &old_fd->next) |
112 | *last_irq_ptr2 = prev; | 110 | *last_irq_ptr2 = prev; |
113 | 111 | ||
114 | *prev = (*prev)->next; | 112 | *prev = (*prev)->next; |
115 | if(old_fd->type == IRQ_WRITE) | 113 | if (old_fd->type == IRQ_WRITE) |
116 | ignore_sigio_fd(old_fd->fd); | 114 | ignore_sigio_fd(old_fd->fd); |
117 | kfree(old_fd); | 115 | kfree(old_fd); |
118 | continue; | 116 | continue; |
@@ -138,14 +136,3 @@ void os_set_ioignore(void) | |||
138 | { | 136 | { |
139 | signal(SIGIO, SIG_IGN); | 137 | signal(SIGIO, SIG_IGN); |
140 | } | 138 | } |
141 | |||
142 | void init_irq_signals(int on_sigstack) | ||
143 | { | ||
144 | int flags; | ||
145 | |||
146 | flags = on_sigstack ? SA_ONSTACK : 0; | ||
147 | |||
148 | set_handler(SIGIO, (__sighandler_t) sig_handler, flags | SA_RESTART, | ||
149 | SIGUSR1, SIGIO, SIGWINCH, SIGVTALRM, -1); | ||
150 | signal(SIGWINCH, SIG_IGN); | ||
151 | } | ||
diff --git a/arch/um/os-Linux/main.c b/arch/um/os-Linux/main.c index 82c3778627b8..abb9b0ffd960 100644 --- a/arch/um/os-Linux/main.c +++ b/arch/um/os-Linux/main.c | |||
@@ -73,7 +73,7 @@ static void install_fatal_handler(int sig) | |||
73 | action.sa_handler = last_ditch_exit; | 73 | action.sa_handler = last_ditch_exit; |
74 | if (sigaction(sig, &action, NULL) < 0) { | 74 | if (sigaction(sig, &action, NULL) < 0) { |
75 | printf("failed to install handler for signal %d - errno = %d\n", | 75 | printf("failed to install handler for signal %d - errno = %d\n", |
76 | errno); | 76 | sig, errno); |
77 | exit(1); | 77 | exit(1); |
78 | } | 78 | } |
79 | } | 79 | } |
@@ -92,7 +92,8 @@ static void setup_env_path(void) | |||
92 | * just use the default + /usr/lib/uml | 92 | * just use the default + /usr/lib/uml |
93 | */ | 93 | */ |
94 | if (!old_path || (path_len = strlen(old_path)) == 0) { | 94 | if (!old_path || (path_len = strlen(old_path)) == 0) { |
95 | putenv("PATH=:/bin:/usr/bin/" UML_LIB_PATH); | 95 | if (putenv("PATH=:/bin:/usr/bin/" UML_LIB_PATH)) |
96 | perror("couldn't putenv"); | ||
96 | return; | 97 | return; |
97 | } | 98 | } |
98 | 99 | ||
@@ -100,15 +101,16 @@ static void setup_env_path(void) | |||
100 | path_len += strlen("PATH=" UML_LIB_PATH) + 1; | 101 | path_len += strlen("PATH=" UML_LIB_PATH) + 1; |
101 | new_path = malloc(path_len); | 102 | new_path = malloc(path_len); |
102 | if (!new_path) { | 103 | if (!new_path) { |
103 | perror("coudn't malloc to set a new PATH"); | 104 | perror("couldn't malloc to set a new PATH"); |
104 | return; | 105 | return; |
105 | } | 106 | } |
106 | snprintf(new_path, path_len, "PATH=%s" UML_LIB_PATH, old_path); | 107 | snprintf(new_path, path_len, "PATH=%s" UML_LIB_PATH, old_path); |
107 | putenv(new_path); | 108 | if (putenv(new_path)) { |
109 | perror("couldn't putenv to set a new PATH"); | ||
110 | free(new_path); | ||
111 | } | ||
108 | } | 112 | } |
109 | 113 | ||
110 | extern int uml_exitcode; | ||
111 | |||
112 | extern void scan_elf_aux( char **envp); | 114 | extern void scan_elf_aux( char **envp); |
113 | 115 | ||
114 | int __init main(int argc, char **argv, char **envp) | 116 | int __init main(int argc, char **argv, char **envp) |
diff --git a/arch/um/os-Linux/mem.c b/arch/um/os-Linux/mem.c index 436f8d20b20f..eedc2d88ef8a 100644 --- a/arch/um/os-Linux/mem.c +++ b/arch/um/os-Linux/mem.c | |||
@@ -9,7 +9,6 @@ | |||
9 | #include <sys/types.h> | 9 | #include <sys/types.h> |
10 | #include <sys/mman.h> | 10 | #include <sys/mman.h> |
11 | #include <sys/statfs.h> | 11 | #include <sys/statfs.h> |
12 | #include "kern_util.h" | ||
13 | #include "user.h" | 12 | #include "user.h" |
14 | #include "mem_user.h" | 13 | #include "mem_user.h" |
15 | #include "init.h" | 14 | #include "init.h" |
@@ -30,7 +29,7 @@ static char *tempdir = NULL; | |||
30 | 29 | ||
31 | static void __init find_tempdir(void) | 30 | static void __init find_tempdir(void) |
32 | { | 31 | { |
33 | char *dirs[] = { "TMP", "TEMP", "TMPDIR", NULL }; | 32 | const char *dirs[] = { "TMP", "TEMP", "TMPDIR", NULL }; |
34 | int i; | 33 | int i; |
35 | char *dir = NULL; | 34 | char *dir = NULL; |
36 | 35 | ||
@@ -59,9 +58,10 @@ static void __init find_tempdir(void) | |||
59 | * read the file as needed. If there's an error, -errno is returned; | 58 | * read the file as needed. If there's an error, -errno is returned; |
60 | * if the end of the file is reached, 0 is returned. | 59 | * if the end of the file is reached, 0 is returned. |
61 | */ | 60 | */ |
62 | static int next(int fd, char *buf, int size, char c) | 61 | static int next(int fd, char *buf, size_t size, char c) |
63 | { | 62 | { |
64 | int n, len; | 63 | ssize_t n; |
64 | size_t len; | ||
65 | char *ptr; | 65 | char *ptr; |
66 | 66 | ||
67 | while((ptr = strchr(buf, c)) == NULL){ | 67 | while((ptr = strchr(buf, c)) == NULL){ |
@@ -172,13 +172,15 @@ int __init make_tempfile(const char *template, char **out_tempname, | |||
172 | 172 | ||
173 | which_tmpdir(); | 173 | which_tmpdir(); |
174 | tempname = malloc(MAXPATHLEN); | 174 | tempname = malloc(MAXPATHLEN); |
175 | if (!tempname) | ||
176 | goto out; | ||
175 | 177 | ||
176 | find_tempdir(); | 178 | find_tempdir(); |
177 | if (template[0] != '/') | 179 | if (template[0] != '/') |
178 | strcpy(tempname, tempdir); | 180 | strcpy(tempname, tempdir); |
179 | else | 181 | else |
180 | tempname[0] = '\0'; | 182 | tempname[0] = '\0'; |
181 | strcat(tempname, template); | 183 | strncat(tempname, template, MAXPATHLEN-1-strlen(tempname)); |
182 | fd = mkstemp(tempname); | 184 | fd = mkstemp(tempname); |
183 | if(fd < 0){ | 185 | if(fd < 0){ |
184 | fprintf(stderr, "open - cannot create %s: %s\n", tempname, | 186 | fprintf(stderr, "open - cannot create %s: %s\n", tempname, |
@@ -268,6 +270,7 @@ void __init check_tmpexec(void) | |||
268 | if(addr == MAP_FAILED){ | 270 | if(addr == MAP_FAILED){ |
269 | err = errno; | 271 | err = errno; |
270 | perror("failed"); | 272 | perror("failed"); |
273 | close(fd); | ||
271 | if(err == EPERM) | 274 | if(err == EPERM) |
272 | printf("%s must be not mounted noexec\n",tempdir); | 275 | printf("%s must be not mounted noexec\n",tempdir); |
273 | exit(1); | 276 | exit(1); |
diff --git a/arch/um/os-Linux/process.c b/arch/um/os-Linux/process.c index bda5c3150d6c..abf6beae3df1 100644 --- a/arch/um/os-Linux/process.c +++ b/arch/um/os-Linux/process.c | |||
@@ -249,7 +249,10 @@ void init_new_thread_signals(void) | |||
249 | SIGUSR1, SIGIO, SIGWINCH, SIGVTALRM, -1); | 249 | SIGUSR1, SIGIO, SIGWINCH, SIGVTALRM, -1); |
250 | signal(SIGHUP, SIG_IGN); | 250 | signal(SIGHUP, SIG_IGN); |
251 | 251 | ||
252 | init_irq_signals(1); | 252 | set_handler(SIGIO, (__sighandler_t) sig_handler, |
253 | SA_ONSTACK | SA_RESTART, SIGUSR1, SIGIO, SIGWINCH, SIGALRM, | ||
254 | SIGVTALRM, -1); | ||
255 | signal(SIGWINCH, SIG_IGN); | ||
253 | } | 256 | } |
254 | 257 | ||
255 | int run_kernel_thread(int (*fn)(void *), void *arg, jmp_buf **jmp_ptr) | 258 | int run_kernel_thread(int (*fn)(void *), void *arg, jmp_buf **jmp_ptr) |
diff --git a/arch/um/os-Linux/registers.c b/arch/um/os-Linux/registers.c index a32ba6ab1211..830fe6a1518a 100644 --- a/arch/um/os-Linux/registers.c +++ b/arch/um/os-Linux/registers.c | |||
@@ -8,47 +8,41 @@ | |||
8 | #include <string.h> | 8 | #include <string.h> |
9 | #include <sys/ptrace.h> | 9 | #include <sys/ptrace.h> |
10 | #include "sysdep/ptrace.h" | 10 | #include "sysdep/ptrace.h" |
11 | #include "user.h" | ||
12 | 11 | ||
13 | /* This is set once at boot time and not changed thereafter */ | 12 | int save_registers(int pid, struct uml_pt_regs *regs) |
14 | |||
15 | static unsigned long exec_regs[MAX_REG_NR]; | ||
16 | |||
17 | void init_thread_registers(struct uml_pt_regs *to) | ||
18 | { | ||
19 | memcpy(to->gp, exec_regs, sizeof(to->gp)); | ||
20 | } | ||
21 | |||
22 | void save_registers(int pid, struct uml_pt_regs *regs) | ||
23 | { | 13 | { |
24 | int err; | 14 | int err; |
25 | 15 | ||
26 | err = ptrace(PTRACE_GETREGS, pid, 0, regs->gp); | 16 | err = ptrace(PTRACE_GETREGS, pid, 0, regs->gp); |
27 | if (err < 0) | 17 | if (err < 0) |
28 | panic("save_registers - saving registers failed, errno = %d\n", | 18 | return -errno; |
29 | errno); | 19 | return 0; |
30 | } | 20 | } |
31 | 21 | ||
32 | void restore_registers(int pid, struct uml_pt_regs *regs) | 22 | int restore_registers(int pid, struct uml_pt_regs *regs) |
33 | { | 23 | { |
34 | int err; | 24 | int err; |
35 | 25 | ||
36 | err = ptrace(PTRACE_SETREGS, pid, 0, regs->gp); | 26 | err = ptrace(PTRACE_SETREGS, pid, 0, regs->gp); |
37 | if (err < 0) | 27 | if (err < 0) |
38 | panic("restore_registers - saving registers failed, " | 28 | return -errno; |
39 | "errno = %d\n", errno); | 29 | return 0; |
40 | } | 30 | } |
41 | 31 | ||
42 | void init_registers(int pid) | 32 | /* This is set once at boot time and not changed thereafter */ |
33 | |||
34 | static unsigned long exec_regs[MAX_REG_NR]; | ||
35 | |||
36 | int init_registers(int pid) | ||
43 | { | 37 | { |
44 | int err; | 38 | int err; |
45 | 39 | ||
46 | err = ptrace(PTRACE_GETREGS, pid, 0, exec_regs); | 40 | err = ptrace(PTRACE_GETREGS, pid, 0, exec_regs); |
47 | if (err) | 41 | if (err < 0) |
48 | panic("check_ptrace : PTRACE_GETREGS failed, errno = %d", | 42 | return -errno; |
49 | errno); | ||
50 | 43 | ||
51 | arch_init_registers(pid); | 44 | arch_init_registers(pid); |
45 | return 0; | ||
52 | } | 46 | } |
53 | 47 | ||
54 | void get_safe_registers(unsigned long *regs) | 48 | void get_safe_registers(unsigned long *regs) |
diff --git a/arch/um/os-Linux/sigio.c b/arch/um/os-Linux/sigio.c index dc03e9cccb63..abf47a7c4abd 100644 --- a/arch/um/os-Linux/sigio.c +++ b/arch/um/os-Linux/sigio.c | |||
@@ -1,34 +1,33 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <unistd.h> | 6 | #include <unistd.h> |
7 | #include <stdlib.h> | 7 | #include <errno.h> |
8 | #include <termios.h> | 8 | #include <fcntl.h> |
9 | #include <poll.h> | ||
9 | #include <pty.h> | 10 | #include <pty.h> |
11 | #include <sched.h> | ||
10 | #include <signal.h> | 12 | #include <signal.h> |
11 | #include <fcntl.h> | ||
12 | #include <errno.h> | ||
13 | #include <string.h> | 13 | #include <string.h> |
14 | #include <sched.h> | 14 | #include "kern_constants.h" |
15 | #include <sys/socket.h> | ||
16 | #include <sys/poll.h> | ||
17 | #include "init.h" | ||
18 | #include "user.h" | ||
19 | #include "kern_util.h" | 15 | #include "kern_util.h" |
20 | #include "sigio.h" | 16 | #include "init.h" |
21 | #include "os.h" | 17 | #include "os.h" |
18 | #include "sigio.h" | ||
22 | #include "um_malloc.h" | 19 | #include "um_malloc.h" |
23 | #include "init.h" | 20 | #include "user.h" |
24 | 21 | ||
25 | /* Protected by sigio_lock(), also used by sigio_cleanup, which is an | 22 | /* |
23 | * Protected by sigio_lock(), also used by sigio_cleanup, which is an | ||
26 | * exitcall. | 24 | * exitcall. |
27 | */ | 25 | */ |
28 | static int write_sigio_pid = -1; | 26 | static int write_sigio_pid = -1; |
29 | static unsigned long write_sigio_stack; | 27 | static unsigned long write_sigio_stack; |
30 | 28 | ||
31 | /* These arrays are initialized before the sigio thread is started, and | 29 | /* |
30 | * These arrays are initialized before the sigio thread is started, and | ||
32 | * the descriptors closed after it is killed. So, it can't see them change. | 31 | * the descriptors closed after it is killed. So, it can't see them change. |
33 | * On the UML side, they are changed under the sigio_lock. | 32 | * On the UML side, they are changed under the sigio_lock. |
34 | */ | 33 | */ |
@@ -43,7 +42,8 @@ struct pollfds { | |||
43 | int used; | 42 | int used; |
44 | }; | 43 | }; |
45 | 44 | ||
46 | /* Protected by sigio_lock(). Used by the sigio thread, but the UML thread | 45 | /* |
46 | * Protected by sigio_lock(). Used by the sigio thread, but the UML thread | ||
47 | * synchronizes with it. | 47 | * synchronizes with it. |
48 | */ | 48 | */ |
49 | static struct pollfds current_poll; | 49 | static struct pollfds current_poll; |
@@ -57,23 +57,26 @@ static int write_sigio_thread(void *unused) | |||
57 | int i, n, respond_fd; | 57 | int i, n, respond_fd; |
58 | char c; | 58 | char c; |
59 | 59 | ||
60 | signal(SIGWINCH, SIG_IGN); | 60 | signal(SIGWINCH, SIG_IGN); |
61 | fds = ¤t_poll; | 61 | fds = ¤t_poll; |
62 | while(1){ | 62 | while (1) { |
63 | n = poll(fds->poll, fds->used, -1); | 63 | n = poll(fds->poll, fds->used, -1); |
64 | if(n < 0){ | 64 | if (n < 0) { |
65 | if(errno == EINTR) continue; | 65 | if (errno == EINTR) |
66 | printk("write_sigio_thread : poll returned %d, " | 66 | continue; |
67 | "errno = %d\n", n, errno); | 67 | printk(UM_KERN_ERR "write_sigio_thread : poll returned " |
68 | "%d, errno = %d\n", n, errno); | ||
68 | } | 69 | } |
69 | for(i = 0; i < fds->used; i++){ | 70 | for (i = 0; i < fds->used; i++) { |
70 | p = &fds->poll[i]; | 71 | p = &fds->poll[i]; |
71 | if(p->revents == 0) continue; | 72 | if (p->revents == 0) |
72 | if(p->fd == sigio_private[1]){ | 73 | continue; |
74 | if (p->fd == sigio_private[1]) { | ||
73 | CATCH_EINTR(n = read(sigio_private[1], &c, | 75 | CATCH_EINTR(n = read(sigio_private[1], &c, |
74 | sizeof(c))); | 76 | sizeof(c))); |
75 | if(n != sizeof(c)) | 77 | if (n != sizeof(c)) |
76 | printk("write_sigio_thread : " | 78 | printk(UM_KERN_ERR |
79 | "write_sigio_thread : " | ||
77 | "read on socket failed, " | 80 | "read on socket failed, " |
78 | "err = %d\n", errno); | 81 | "err = %d\n", errno); |
79 | tmp = current_poll; | 82 | tmp = current_poll; |
@@ -89,9 +92,10 @@ static int write_sigio_thread(void *unused) | |||
89 | } | 92 | } |
90 | 93 | ||
91 | CATCH_EINTR(n = write(respond_fd, &c, sizeof(c))); | 94 | CATCH_EINTR(n = write(respond_fd, &c, sizeof(c))); |
92 | if(n != sizeof(c)) | 95 | if (n != sizeof(c)) |
93 | printk("write_sigio_thread : write on socket " | 96 | printk(UM_KERN_ERR "write_sigio_thread : " |
94 | "failed, err = %d\n", errno); | 97 | "write on socket failed, err = %d\n", |
98 | errno); | ||
95 | } | 99 | } |
96 | } | 100 | } |
97 | 101 | ||
@@ -102,12 +106,13 @@ static int need_poll(struct pollfds *polls, int n) | |||
102 | { | 106 | { |
103 | struct pollfd *new; | 107 | struct pollfd *new; |
104 | 108 | ||
105 | if(n <= polls->size) | 109 | if (n <= polls->size) |
106 | return 0; | 110 | return 0; |
107 | 111 | ||
108 | new = kmalloc(n * sizeof(struct pollfd), UM_GFP_ATOMIC); | 112 | new = kmalloc(n * sizeof(struct pollfd), UM_GFP_ATOMIC); |
109 | if(new == NULL){ | 113 | if (new == NULL) { |
110 | printk("need_poll : failed to allocate new pollfds\n"); | 114 | printk(UM_KERN_ERR "need_poll : failed to allocate new " |
115 | "pollfds\n"); | ||
111 | return -ENOMEM; | 116 | return -ENOMEM; |
112 | } | 117 | } |
113 | 118 | ||
@@ -119,7 +124,8 @@ static int need_poll(struct pollfds *polls, int n) | |||
119 | return 0; | 124 | return 0; |
120 | } | 125 | } |
121 | 126 | ||
122 | /* Must be called with sigio_lock held, because it's needed by the marked | 127 | /* |
128 | * Must be called with sigio_lock held, because it's needed by the marked | ||
123 | * critical section. | 129 | * critical section. |
124 | */ | 130 | */ |
125 | static void update_thread(void) | 131 | static void update_thread(void) |
@@ -129,15 +135,17 @@ static void update_thread(void) | |||
129 | char c; | 135 | char c; |
130 | 136 | ||
131 | flags = set_signals(0); | 137 | flags = set_signals(0); |
132 | n = write(sigio_private[0], &c, sizeof(c)); | 138 | CATCH_EINTR(n = write(sigio_private[0], &c, sizeof(c))); |
133 | if(n != sizeof(c)){ | 139 | if (n != sizeof(c)) { |
134 | printk("update_thread : write failed, err = %d\n", errno); | 140 | printk(UM_KERN_ERR "update_thread : write failed, err = %d\n", |
141 | errno); | ||
135 | goto fail; | 142 | goto fail; |
136 | } | 143 | } |
137 | 144 | ||
138 | CATCH_EINTR(n = read(sigio_private[0], &c, sizeof(c))); | 145 | CATCH_EINTR(n = read(sigio_private[0], &c, sizeof(c))); |
139 | if(n != sizeof(c)){ | 146 | if (n != sizeof(c)) { |
140 | printk("update_thread : read failed, err = %d\n", errno); | 147 | printk(UM_KERN_ERR "update_thread : read failed, err = %d\n", |
148 | errno); | ||
141 | goto fail; | 149 | goto fail; |
142 | } | 150 | } |
143 | 151 | ||
@@ -164,23 +172,23 @@ int add_sigio_fd(int fd) | |||
164 | int err = 0, i, n; | 172 | int err = 0, i, n; |
165 | 173 | ||
166 | sigio_lock(); | 174 | sigio_lock(); |
167 | for(i = 0; i < all_sigio_fds.used; i++){ | 175 | for (i = 0; i < all_sigio_fds.used; i++) { |
168 | if(all_sigio_fds.poll[i].fd == fd) | 176 | if (all_sigio_fds.poll[i].fd == fd) |
169 | break; | 177 | break; |
170 | } | 178 | } |
171 | if(i == all_sigio_fds.used) | 179 | if (i == all_sigio_fds.used) |
172 | goto out; | 180 | goto out; |
173 | 181 | ||
174 | p = &all_sigio_fds.poll[i]; | 182 | p = &all_sigio_fds.poll[i]; |
175 | 183 | ||
176 | for(i = 0; i < current_poll.used; i++){ | 184 | for (i = 0; i < current_poll.used; i++) { |
177 | if(current_poll.poll[i].fd == fd) | 185 | if (current_poll.poll[i].fd == fd) |
178 | goto out; | 186 | goto out; |
179 | } | 187 | } |
180 | 188 | ||
181 | n = current_poll.used; | 189 | n = current_poll.used; |
182 | err = need_poll(&next_poll, n + 1); | 190 | err = need_poll(&next_poll, n + 1); |
183 | if(err) | 191 | if (err) |
184 | goto out; | 192 | goto out; |
185 | 193 | ||
186 | memcpy(next_poll.poll, current_poll.poll, | 194 | memcpy(next_poll.poll, current_poll.poll, |
@@ -198,27 +206,29 @@ int ignore_sigio_fd(int fd) | |||
198 | struct pollfd *p; | 206 | struct pollfd *p; |
199 | int err = 0, i, n = 0; | 207 | int err = 0, i, n = 0; |
200 | 208 | ||
201 | /* This is called from exitcalls elsewhere in UML - if | 209 | /* |
210 | * This is called from exitcalls elsewhere in UML - if | ||
202 | * sigio_cleanup has already run, then update_thread will hang | 211 | * sigio_cleanup has already run, then update_thread will hang |
203 | * or fail because the thread is no longer running. | 212 | * or fail because the thread is no longer running. |
204 | */ | 213 | */ |
205 | if(write_sigio_pid == -1) | 214 | if (write_sigio_pid == -1) |
206 | return -EIO; | 215 | return -EIO; |
207 | 216 | ||
208 | sigio_lock(); | 217 | sigio_lock(); |
209 | for(i = 0; i < current_poll.used; i++){ | 218 | for (i = 0; i < current_poll.used; i++) { |
210 | if(current_poll.poll[i].fd == fd) break; | 219 | if (current_poll.poll[i].fd == fd) |
220 | break; | ||
211 | } | 221 | } |
212 | if(i == current_poll.used) | 222 | if (i == current_poll.used) |
213 | goto out; | 223 | goto out; |
214 | 224 | ||
215 | err = need_poll(&next_poll, current_poll.used - 1); | 225 | err = need_poll(&next_poll, current_poll.used - 1); |
216 | if(err) | 226 | if (err) |
217 | goto out; | 227 | goto out; |
218 | 228 | ||
219 | for(i = 0; i < current_poll.used; i++){ | 229 | for (i = 0; i < current_poll.used; i++) { |
220 | p = ¤t_poll.poll[i]; | 230 | p = ¤t_poll.poll[i]; |
221 | if(p->fd != fd) | 231 | if (p->fd != fd) |
222 | next_poll.poll[n++] = *p; | 232 | next_poll.poll[n++] = *p; |
223 | } | 233 | } |
224 | next_poll.used = current_poll.used - 1; | 234 | next_poll.used = current_poll.used - 1; |
@@ -235,7 +245,8 @@ static struct pollfd *setup_initial_poll(int fd) | |||
235 | 245 | ||
236 | p = kmalloc(sizeof(struct pollfd), UM_GFP_KERNEL); | 246 | p = kmalloc(sizeof(struct pollfd), UM_GFP_KERNEL); |
237 | if (p == NULL) { | 247 | if (p == NULL) { |
238 | printk("setup_initial_poll : failed to allocate poll\n"); | 248 | printk(UM_KERN_ERR "setup_initial_poll : failed to allocate " |
249 | "poll\n"); | ||
239 | return NULL; | 250 | return NULL; |
240 | } | 251 | } |
241 | *p = ((struct pollfd) { .fd = fd, | 252 | *p = ((struct pollfd) { .fd = fd, |
@@ -261,27 +272,29 @@ static void write_sigio_workaround(void) | |||
261 | return; | 272 | return; |
262 | 273 | ||
263 | err = os_pipe(l_write_sigio_fds, 1, 1); | 274 | err = os_pipe(l_write_sigio_fds, 1, 1); |
264 | if(err < 0){ | 275 | if (err < 0) { |
265 | printk("write_sigio_workaround - os_pipe 1 failed, " | 276 | printk(UM_KERN_ERR "write_sigio_workaround - os_pipe 1 failed, " |
266 | "err = %d\n", -err); | 277 | "err = %d\n", -err); |
267 | return; | 278 | return; |
268 | } | 279 | } |
269 | err = os_pipe(l_sigio_private, 1, 1); | 280 | err = os_pipe(l_sigio_private, 1, 1); |
270 | if(err < 0){ | 281 | if (err < 0) { |
271 | printk("write_sigio_workaround - os_pipe 2 failed, " | 282 | printk(UM_KERN_ERR "write_sigio_workaround - os_pipe 2 failed, " |
272 | "err = %d\n", -err); | 283 | "err = %d\n", -err); |
273 | goto out_close1; | 284 | goto out_close1; |
274 | } | 285 | } |
275 | 286 | ||
276 | p = setup_initial_poll(l_sigio_private[1]); | 287 | p = setup_initial_poll(l_sigio_private[1]); |
277 | if(!p) | 288 | if (!p) |
278 | goto out_close2; | 289 | goto out_close2; |
279 | 290 | ||
280 | sigio_lock(); | 291 | sigio_lock(); |
281 | 292 | ||
282 | /* Did we race? Don't try to optimize this, please, it's not so likely | 293 | /* |
283 | * to happen, and no more than once at the boot. */ | 294 | * Did we race? Don't try to optimize this, please, it's not so likely |
284 | if(write_sigio_pid != -1) | 295 | * to happen, and no more than once at the boot. |
296 | */ | ||
297 | if (write_sigio_pid != -1) | ||
285 | goto out_free; | 298 | goto out_free; |
286 | 299 | ||
287 | current_poll = ((struct pollfds) { .poll = p, | 300 | current_poll = ((struct pollfds) { .poll = p, |
@@ -333,19 +346,19 @@ void maybe_sigio_broken(int fd, int read) | |||
333 | { | 346 | { |
334 | int err; | 347 | int err; |
335 | 348 | ||
336 | if(!isatty(fd)) | 349 | if (!isatty(fd)) |
337 | return; | 350 | return; |
338 | 351 | ||
339 | if((read || pty_output_sigio) && (!read || pty_close_sigio)) | 352 | if ((read || pty_output_sigio) && (!read || pty_close_sigio)) |
340 | return; | 353 | return; |
341 | 354 | ||
342 | write_sigio_workaround(); | 355 | write_sigio_workaround(); |
343 | 356 | ||
344 | sigio_lock(); | 357 | sigio_lock(); |
345 | err = need_poll(&all_sigio_fds, all_sigio_fds.used + 1); | 358 | err = need_poll(&all_sigio_fds, all_sigio_fds.used + 1); |
346 | if(err){ | 359 | if (err) { |
347 | printk("maybe_sigio_broken - failed to add pollfd for " | 360 | printk(UM_KERN_ERR "maybe_sigio_broken - failed to add pollfd " |
348 | "descriptor %d\n", fd); | 361 | "for descriptor %d\n", fd); |
349 | goto out; | 362 | goto out; |
350 | } | 363 | } |
351 | 364 | ||
@@ -388,7 +401,7 @@ static void openpty_cb(void *arg) | |||
388 | struct openpty_arg *info = arg; | 401 | struct openpty_arg *info = arg; |
389 | 402 | ||
390 | info->err = 0; | 403 | info->err = 0; |
391 | if(openpty(&info->master, &info->slave, NULL, NULL, NULL)) | 404 | if (openpty(&info->master, &info->slave, NULL, NULL, NULL)) |
392 | info->err = -errno; | 405 | info->err = -errno; |
393 | } | 406 | } |
394 | 407 | ||
@@ -397,17 +410,17 @@ static int async_pty(int master, int slave) | |||
397 | int flags; | 410 | int flags; |
398 | 411 | ||
399 | flags = fcntl(master, F_GETFL); | 412 | flags = fcntl(master, F_GETFL); |
400 | if(flags < 0) | 413 | if (flags < 0) |
401 | return -errno; | 414 | return -errno; |
402 | 415 | ||
403 | if((fcntl(master, F_SETFL, flags | O_NONBLOCK | O_ASYNC) < 0) || | 416 | if ((fcntl(master, F_SETFL, flags | O_NONBLOCK | O_ASYNC) < 0) || |
404 | (fcntl(master, F_SETOWN, os_getpid()) < 0)) | 417 | (fcntl(master, F_SETOWN, os_getpid()) < 0)) |
405 | return -errno; | 418 | return -errno; |
406 | 419 | ||
407 | if((fcntl(slave, F_SETFL, flags | O_NONBLOCK) < 0)) | 420 | if ((fcntl(slave, F_SETFL, flags | O_NONBLOCK) < 0)) |
408 | return -errno; | 421 | return -errno; |
409 | 422 | ||
410 | return(0); | 423 | return 0; |
411 | } | 424 | } |
412 | 425 | ||
413 | static void __init check_one_sigio(void (*proc)(int, int)) | 426 | static void __init check_one_sigio(void (*proc)(int, int)) |
@@ -417,34 +430,49 @@ static void __init check_one_sigio(void (*proc)(int, int)) | |||
417 | int master, slave, err; | 430 | int master, slave, err; |
418 | 431 | ||
419 | initial_thread_cb(openpty_cb, &pty); | 432 | initial_thread_cb(openpty_cb, &pty); |
420 | if(pty.err){ | 433 | if (pty.err) { |
421 | printk("openpty failed, errno = %d\n", -pty.err); | 434 | printk(UM_KERN_ERR "check_one_sigio failed, errno = %d\n", |
435 | -pty.err); | ||
422 | return; | 436 | return; |
423 | } | 437 | } |
424 | 438 | ||
425 | master = pty.master; | 439 | master = pty.master; |
426 | slave = pty.slave; | 440 | slave = pty.slave; |
427 | 441 | ||
428 | if((master == -1) || (slave == -1)){ | 442 | if ((master == -1) || (slave == -1)) { |
429 | printk("openpty failed to allocate a pty\n"); | 443 | printk(UM_KERN_ERR "check_one_sigio failed to allocate a " |
444 | "pty\n"); | ||
430 | return; | 445 | return; |
431 | } | 446 | } |
432 | 447 | ||
433 | /* Not now, but complain so we now where we failed. */ | 448 | /* Not now, but complain so we now where we failed. */ |
434 | err = raw(master); | 449 | err = raw(master); |
435 | if (err < 0) | 450 | if (err < 0) { |
436 | panic("check_sigio : __raw failed, errno = %d\n", -err); | 451 | printk(UM_KERN_ERR "check_one_sigio : raw failed, errno = %d\n", |
452 | -err); | ||
453 | return; | ||
454 | } | ||
437 | 455 | ||
438 | err = async_pty(master, slave); | 456 | err = async_pty(master, slave); |
439 | if(err < 0) | 457 | if (err < 0) { |
440 | panic("tty_fds : sigio_async failed, err = %d\n", -err); | 458 | printk(UM_KERN_ERR "check_one_sigio : sigio_async failed, " |
459 | "err = %d\n", -err); | ||
460 | return; | ||
461 | } | ||
462 | |||
463 | if (sigaction(SIGIO, NULL, &old) < 0) { | ||
464 | printk(UM_KERN_ERR "check_one_sigio : sigaction 1 failed, " | ||
465 | "errno = %d\n", errno); | ||
466 | return; | ||
467 | } | ||
441 | 468 | ||
442 | if(sigaction(SIGIO, NULL, &old) < 0) | ||
443 | panic("check_sigio : sigaction 1 failed, errno = %d\n", errno); | ||
444 | new = old; | 469 | new = old; |
445 | new.sa_handler = handler; | 470 | new.sa_handler = handler; |
446 | if(sigaction(SIGIO, &new, NULL) < 0) | 471 | if (sigaction(SIGIO, &new, NULL) < 0) { |
447 | panic("check_sigio : sigaction 2 failed, errno = %d\n", errno); | 472 | printk(UM_KERN_ERR "check_one_sigio : sigaction 2 failed, " |
473 | "errno = %d\n", errno); | ||
474 | return; | ||
475 | } | ||
448 | 476 | ||
449 | got_sigio = 0; | 477 | got_sigio = 0; |
450 | (*proc)(master, slave); | 478 | (*proc)(master, slave); |
@@ -452,8 +480,9 @@ static void __init check_one_sigio(void (*proc)(int, int)) | |||
452 | close(master); | 480 | close(master); |
453 | close(slave); | 481 | close(slave); |
454 | 482 | ||
455 | if(sigaction(SIGIO, &old, NULL) < 0) | 483 | if (sigaction(SIGIO, &old, NULL) < 0) |
456 | panic("check_sigio : sigaction 3 failed, errno = %d\n", errno); | 484 | printk(UM_KERN_ERR "check_one_sigio : sigaction 3 failed, " |
485 | "errno = %d\n", errno); | ||
457 | } | 486 | } |
458 | 487 | ||
459 | static void tty_output(int master, int slave) | 488 | static void tty_output(int master, int slave) |
@@ -461,42 +490,45 @@ static void tty_output(int master, int slave) | |||
461 | int n; | 490 | int n; |
462 | char buf[512]; | 491 | char buf[512]; |
463 | 492 | ||
464 | printk("Checking that host ptys support output SIGIO..."); | 493 | printk(UM_KERN_INFO "Checking that host ptys support output SIGIO..."); |
465 | 494 | ||
466 | memset(buf, 0, sizeof(buf)); | 495 | memset(buf, 0, sizeof(buf)); |
467 | 496 | ||
468 | while(write(master, buf, sizeof(buf)) > 0) ; | 497 | while (write(master, buf, sizeof(buf)) > 0) ; |
469 | if(errno != EAGAIN) | 498 | if (errno != EAGAIN) |
470 | panic("tty_output : write failed, errno = %d\n", errno); | 499 | printk(UM_KERN_ERR "tty_output : write failed, errno = %d\n", |
471 | while(((n = read(slave, buf, sizeof(buf))) > 0) && !got_sigio) ; | 500 | errno); |
501 | while (((n = read(slave, buf, sizeof(buf))) > 0) && !got_sigio) | ||
502 | ; | ||
472 | 503 | ||
473 | if(got_sigio){ | 504 | if (got_sigio) { |
474 | printk("Yes\n"); | 505 | printk(UM_KERN_CONT "Yes\n"); |
475 | pty_output_sigio = 1; | 506 | pty_output_sigio = 1; |
476 | } | 507 | } else if (n == -EAGAIN) |
477 | else if(n == -EAGAIN) | 508 | printk(UM_KERN_CONT "No, enabling workaround\n"); |
478 | printk("No, enabling workaround\n"); | 509 | else |
479 | else panic("tty_output : read failed, err = %d\n", n); | 510 | printk(UM_KERN_CONT "tty_output : read failed, err = %d\n", n); |
480 | } | 511 | } |
481 | 512 | ||
482 | static void tty_close(int master, int slave) | 513 | static void tty_close(int master, int slave) |
483 | { | 514 | { |
484 | printk("Checking that host ptys support SIGIO on close..."); | 515 | printk(UM_KERN_INFO "Checking that host ptys support SIGIO on " |
516 | "close..."); | ||
485 | 517 | ||
486 | close(slave); | 518 | close(slave); |
487 | if(got_sigio){ | 519 | if (got_sigio) { |
488 | printk("Yes\n"); | 520 | printk(UM_KERN_CONT "Yes\n"); |
489 | pty_close_sigio = 1; | 521 | pty_close_sigio = 1; |
490 | } | 522 | } else |
491 | else printk("No, enabling workaround\n"); | 523 | printk(UM_KERN_CONT "No, enabling workaround\n"); |
492 | } | 524 | } |
493 | 525 | ||
494 | void __init check_sigio(void) | 526 | void __init check_sigio(void) |
495 | { | 527 | { |
496 | if((os_access("/dev/ptmx", OS_ACC_R_OK) < 0) && | 528 | if ((access("/dev/ptmx", R_OK) < 0) && |
497 | (os_access("/dev/ptyp0", OS_ACC_R_OK) < 0)){ | 529 | (access("/dev/ptyp0", R_OK) < 0)) { |
498 | printk("No pseudo-terminals available - skipping pty SIGIO " | 530 | printk(UM_KERN_WARNING "No pseudo-terminals available - " |
499 | "check\n"); | 531 | "skipping pty SIGIO check\n"); |
500 | return; | 532 | return; |
501 | } | 533 | } |
502 | check_one_sigio(tty_output); | 534 | check_one_sigio(tty_output); |
diff --git a/arch/um/os-Linux/signal.c b/arch/um/os-Linux/signal.c index e9800b0b5689..0fb0cc8d4757 100644 --- a/arch/um/os-Linux/signal.c +++ b/arch/um/os-Linux/signal.c | |||
@@ -9,11 +9,47 @@ | |||
9 | #include <errno.h> | 9 | #include <errno.h> |
10 | #include <signal.h> | 10 | #include <signal.h> |
11 | #include <strings.h> | 11 | #include <strings.h> |
12 | #include "as-layout.h" | ||
13 | #include "kern_util.h" | ||
12 | #include "os.h" | 14 | #include "os.h" |
13 | #include "sysdep/barrier.h" | 15 | #include "sysdep/barrier.h" |
14 | #include "sysdep/sigcontext.h" | 16 | #include "sysdep/sigcontext.h" |
15 | #include "user.h" | 17 | #include "user.h" |
16 | 18 | ||
19 | /* Copied from linux/compiler-gcc.h since we can't include it directly */ | ||
20 | #define barrier() __asm__ __volatile__("": : :"memory") | ||
21 | |||
22 | void (*sig_info[NSIG])(int, struct uml_pt_regs *) = { | ||
23 | [SIGTRAP] = relay_signal, | ||
24 | [SIGFPE] = relay_signal, | ||
25 | [SIGILL] = relay_signal, | ||
26 | [SIGWINCH] = winch, | ||
27 | [SIGBUS] = bus_handler, | ||
28 | [SIGSEGV] = segv_handler, | ||
29 | [SIGIO] = sigio_handler, | ||
30 | [SIGVTALRM] = timer_handler }; | ||
31 | |||
32 | static void sig_handler_common(int sig, struct sigcontext *sc) | ||
33 | { | ||
34 | struct uml_pt_regs r; | ||
35 | int save_errno = errno; | ||
36 | |||
37 | r.is_user = 0; | ||
38 | if (sig == SIGSEGV) { | ||
39 | /* For segfaults, we want the data from the sigcontext. */ | ||
40 | copy_sc(&r, sc); | ||
41 | GET_FAULTINFO_FROM_SC(r.faultinfo, sc); | ||
42 | } | ||
43 | |||
44 | /* enable signals if sig isn't IRQ signal */ | ||
45 | if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGVTALRM)) | ||
46 | unblock_signals(); | ||
47 | |||
48 | (*sig_info[sig])(sig, &r); | ||
49 | |||
50 | errno = save_errno; | ||
51 | } | ||
52 | |||
17 | /* | 53 | /* |
18 | * These are the asynchronous signals. SIGPROF is excluded because we want to | 54 | * These are the asynchronous signals. SIGPROF is excluded because we want to |
19 | * be able to profile all of UML, not just the non-critical sections. If | 55 | * be able to profile all of UML, not just the non-critical sections. If |
@@ -26,13 +62,8 @@ | |||
26 | #define SIGVTALRM_BIT 1 | 62 | #define SIGVTALRM_BIT 1 |
27 | #define SIGVTALRM_MASK (1 << SIGVTALRM_BIT) | 63 | #define SIGVTALRM_MASK (1 << SIGVTALRM_BIT) |
28 | 64 | ||
29 | /* | 65 | static int signals_enabled; |
30 | * These are used by both the signal handlers and | 66 | static unsigned int signals_pending; |
31 | * block/unblock_signals. I don't want modifications cached in a | ||
32 | * register - they must go straight to memory. | ||
33 | */ | ||
34 | static volatile int signals_enabled = 1; | ||
35 | static volatile int pending = 0; | ||
36 | 67 | ||
37 | void sig_handler(int sig, struct sigcontext *sc) | 68 | void sig_handler(int sig, struct sigcontext *sc) |
38 | { | 69 | { |
@@ -40,13 +71,13 @@ void sig_handler(int sig, struct sigcontext *sc) | |||
40 | 71 | ||
41 | enabled = signals_enabled; | 72 | enabled = signals_enabled; |
42 | if (!enabled && (sig == SIGIO)) { | 73 | if (!enabled && (sig == SIGIO)) { |
43 | pending |= SIGIO_MASK; | 74 | signals_pending |= SIGIO_MASK; |
44 | return; | 75 | return; |
45 | } | 76 | } |
46 | 77 | ||
47 | block_signals(); | 78 | block_signals(); |
48 | 79 | ||
49 | sig_handler_common_skas(sig, sc); | 80 | sig_handler_common(sig, sc); |
50 | 81 | ||
51 | set_signals(enabled); | 82 | set_signals(enabled); |
52 | } | 83 | } |
@@ -68,7 +99,7 @@ void alarm_handler(int sig, struct sigcontext *sc) | |||
68 | 99 | ||
69 | enabled = signals_enabled; | 100 | enabled = signals_enabled; |
70 | if (!signals_enabled) { | 101 | if (!signals_enabled) { |
71 | pending |= SIGVTALRM_MASK; | 102 | signals_pending |= SIGVTALRM_MASK; |
72 | return; | 103 | return; |
73 | } | 104 | } |
74 | 105 | ||
@@ -94,16 +125,6 @@ void set_sigstack(void *sig_stack, int size) | |||
94 | panic("enabling signal stack failed, errno = %d\n", errno); | 125 | panic("enabling signal stack failed, errno = %d\n", errno); |
95 | } | 126 | } |
96 | 127 | ||
97 | void remove_sigstack(void) | ||
98 | { | ||
99 | stack_t stack = ((stack_t) { .ss_flags = SS_DISABLE, | ||
100 | .ss_sp = NULL, | ||
101 | .ss_size = 0 }); | ||
102 | |||
103 | if (sigaltstack(&stack, NULL) != 0) | ||
104 | panic("disabling signal stack failed, errno = %d\n", errno); | ||
105 | } | ||
106 | |||
107 | void (*handlers[_NSIG])(int sig, struct sigcontext *sc); | 128 | void (*handlers[_NSIG])(int sig, struct sigcontext *sc); |
108 | 129 | ||
109 | void handle_signal(int sig, struct sigcontext *sc) | 130 | void handle_signal(int sig, struct sigcontext *sc) |
@@ -166,6 +187,9 @@ void set_handler(int sig, void (*handler)(int), int flags, ...) | |||
166 | sigaddset(&action.sa_mask, mask); | 187 | sigaddset(&action.sa_mask, mask); |
167 | va_end(ap); | 188 | va_end(ap); |
168 | 189 | ||
190 | if (sig == SIGSEGV) | ||
191 | flags |= SA_NODEFER; | ||
192 | |||
169 | action.sa_flags = flags; | 193 | action.sa_flags = flags; |
170 | action.sa_restorer = NULL; | 194 | action.sa_restorer = NULL; |
171 | if (sigaction(sig, &action, NULL) < 0) | 195 | if (sigaction(sig, &action, NULL) < 0) |
@@ -179,12 +203,14 @@ void set_handler(int sig, void (*handler)(int), int flags, ...) | |||
179 | 203 | ||
180 | int change_sig(int signal, int on) | 204 | int change_sig(int signal, int on) |
181 | { | 205 | { |
182 | sigset_t sigset, old; | 206 | sigset_t sigset; |
183 | 207 | ||
184 | sigemptyset(&sigset); | 208 | sigemptyset(&sigset); |
185 | sigaddset(&sigset, signal); | 209 | sigaddset(&sigset, signal); |
186 | sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, &old); | 210 | if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0) |
187 | return !sigismember(&old, signal); | 211 | return -errno; |
212 | |||
213 | return 0; | ||
188 | } | 214 | } |
189 | 215 | ||
190 | void block_signals(void) | 216 | void block_signals(void) |
@@ -196,7 +222,7 @@ void block_signals(void) | |||
196 | * This might matter if gcc figures out how to inline this and | 222 | * This might matter if gcc figures out how to inline this and |
197 | * decides to shuffle this code into the caller. | 223 | * decides to shuffle this code into the caller. |
198 | */ | 224 | */ |
199 | mb(); | 225 | barrier(); |
200 | } | 226 | } |
201 | 227 | ||
202 | void unblock_signals(void) | 228 | void unblock_signals(void) |
@@ -209,36 +235,26 @@ void unblock_signals(void) | |||
209 | /* | 235 | /* |
210 | * We loop because the IRQ handler returns with interrupts off. So, | 236 | * We loop because the IRQ handler returns with interrupts off. So, |
211 | * interrupts may have arrived and we need to re-enable them and | 237 | * interrupts may have arrived and we need to re-enable them and |
212 | * recheck pending. | 238 | * recheck signals_pending. |
213 | */ | 239 | */ |
214 | while(1) { | 240 | while(1) { |
215 | /* | 241 | /* |
216 | * Save and reset save_pending after enabling signals. This | 242 | * Save and reset save_pending after enabling signals. This |
217 | * way, pending won't be changed while we're reading it. | 243 | * way, signals_pending won't be changed while we're reading it. |
218 | */ | 244 | */ |
219 | signals_enabled = 1; | 245 | signals_enabled = 1; |
220 | 246 | ||
221 | /* | 247 | /* |
222 | * Setting signals_enabled and reading pending must | 248 | * Setting signals_enabled and reading signals_pending must |
223 | * happen in this order. | 249 | * happen in this order. |
224 | */ | 250 | */ |
225 | mb(); | 251 | barrier(); |
226 | 252 | ||
227 | save_pending = pending; | 253 | save_pending = signals_pending; |
228 | if (save_pending == 0) { | 254 | if (save_pending == 0) |
229 | /* | ||
230 | * This must return with signals enabled, so | ||
231 | * this barrier ensures that writes are | ||
232 | * flushed out before the return. This might | ||
233 | * matter if gcc figures out how to inline | ||
234 | * this (unlikely, given its size) and decides | ||
235 | * to shuffle this code into the caller. | ||
236 | */ | ||
237 | mb(); | ||
238 | return; | 255 | return; |
239 | } | ||
240 | 256 | ||
241 | pending = 0; | 257 | signals_pending = 0; |
242 | 258 | ||
243 | /* | 259 | /* |
244 | * We have pending interrupts, so disable signals, as the | 260 | * We have pending interrupts, so disable signals, as the |
@@ -254,7 +270,7 @@ void unblock_signals(void) | |||
254 | * back here. | 270 | * back here. |
255 | */ | 271 | */ |
256 | if (save_pending & SIGIO_MASK) | 272 | if (save_pending & SIGIO_MASK) |
257 | sig_handler_common_skas(SIGIO, NULL); | 273 | sig_handler_common(SIGIO, NULL); |
258 | 274 | ||
259 | if (save_pending & SIGVTALRM_MASK) | 275 | if (save_pending & SIGVTALRM_MASK) |
260 | real_alarm_handler(NULL); | 276 | real_alarm_handler(NULL); |
diff --git a/arch/um/os-Linux/skas/Makefile b/arch/um/os-Linux/skas/Makefile index 5fd8d4dad66a..d2ea3409e072 100644 --- a/arch/um/os-Linux/skas/Makefile +++ b/arch/um/os-Linux/skas/Makefile | |||
@@ -1,10 +1,10 @@ | |||
1 | # | 1 | # |
2 | # Copyright (C) 2002 - 2004 Jeff Dike (jdike@addtoit.com) | 2 | # Copyright (C) 2002 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com) |
3 | # Licensed under the GPL | 3 | # Licensed under the GPL |
4 | # | 4 | # |
5 | 5 | ||
6 | obj-y := mem.o process.o trap.o | 6 | obj-y := mem.o process.o |
7 | 7 | ||
8 | USER_OBJS := mem.o process.o trap.o | 8 | USER_OBJS := $(obj-y) |
9 | 9 | ||
10 | include arch/um/scripts/Makefile.rules | 10 | include arch/um/scripts/Makefile.rules |
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c index e8b7a97e83d3..d36c89c24a45 100644 --- a/arch/um/os-Linux/skas/process.c +++ b/arch/um/os-Linux/skas/process.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include "as-layout.h" | 15 | #include "as-layout.h" |
16 | #include "chan_user.h" | 16 | #include "chan_user.h" |
17 | #include "kern_constants.h" | 17 | #include "kern_constants.h" |
18 | #include "kern_util.h" | ||
18 | #include "mem.h" | 19 | #include "mem.h" |
19 | #include "os.h" | 20 | #include "os.h" |
20 | #include "process.h" | 21 | #include "process.h" |
@@ -37,27 +38,27 @@ int is_skas_winch(int pid, int fd, void *data) | |||
37 | 38 | ||
38 | static int ptrace_dump_regs(int pid) | 39 | static int ptrace_dump_regs(int pid) |
39 | { | 40 | { |
40 | unsigned long regs[MAX_REG_NR]; | 41 | unsigned long regs[MAX_REG_NR]; |
41 | int i; | 42 | int i; |
42 | 43 | ||
43 | if (ptrace(PTRACE_GETREGS, pid, 0, regs) < 0) | 44 | if (ptrace(PTRACE_GETREGS, pid, 0, regs) < 0) |
44 | return -errno; | 45 | return -errno; |
45 | 46 | ||
46 | printk(UM_KERN_ERR "Stub registers -\n"); | 47 | printk(UM_KERN_ERR "Stub registers -\n"); |
47 | for (i = 0; i < ARRAY_SIZE(regs); i++) | 48 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
48 | printk(UM_KERN_ERR "\t%d - %lx\n", i, regs[i]); | 49 | printk(UM_KERN_ERR "\t%d - %lx\n", i, regs[i]); |
49 | 50 | ||
50 | return 0; | 51 | return 0; |
51 | } | 52 | } |
52 | 53 | ||
53 | /* | 54 | /* |
54 | * Signals that are OK to receive in the stub - we'll just continue it. | 55 | * Signals that are OK to receive in the stub - we'll just continue it. |
55 | * SIGWINCH will happen when UML is inside a detached screen. | 56 | * SIGWINCH will happen when UML is inside a detached screen. |
56 | */ | 57 | */ |
57 | #define STUB_SIG_MASK ((1 << SIGVTALRM) | (1 << SIGWINCH)) | 58 | #define STUB_SIG_MASK (1 << SIGVTALRM) |
58 | 59 | ||
59 | /* Signals that the stub will finish with - anything else is an error */ | 60 | /* Signals that the stub will finish with - anything else is an error */ |
60 | #define STUB_DONE_MASK ((1 << SIGUSR1) | (1 << SIGTRAP)) | 61 | #define STUB_DONE_MASK (1 << SIGTRAP) |
61 | 62 | ||
62 | void wait_stub_done(int pid) | 63 | void wait_stub_done(int pid) |
63 | { | 64 | { |
@@ -72,9 +73,11 @@ void wait_stub_done(int pid) | |||
72 | break; | 73 | break; |
73 | 74 | ||
74 | err = ptrace(PTRACE_CONT, pid, 0, 0); | 75 | err = ptrace(PTRACE_CONT, pid, 0, 0); |
75 | if (err) | 76 | if (err) { |
76 | panic("wait_stub_done : continue failed, errno = %d\n", | 77 | printk(UM_KERN_ERR "wait_stub_done : continue failed, " |
77 | errno); | 78 | "errno = %d\n", errno); |
79 | fatal_sigsegv(); | ||
80 | } | ||
78 | } | 81 | } |
79 | 82 | ||
80 | if (((1 << WSTOPSIG(status)) & STUB_DONE_MASK) != 0) | 83 | if (((1 << WSTOPSIG(status)) & STUB_DONE_MASK) != 0) |
@@ -85,8 +88,10 @@ bad_wait: | |||
85 | if (err) | 88 | if (err) |
86 | printk(UM_KERN_ERR "Failed to get registers from stub, " | 89 | printk(UM_KERN_ERR "Failed to get registers from stub, " |
87 | "errno = %d\n", -err); | 90 | "errno = %d\n", -err); |
88 | panic("wait_stub_done : failed to wait for SIGUSR1/SIGTRAP, pid = %d, " | 91 | printk(UM_KERN_ERR "wait_stub_done : failed to wait for SIGTRAP, " |
89 | "n = %d, errno = %d, status = 0x%x\n", pid, n, errno, status); | 92 | "pid = %d, n = %d, errno = %d, status = 0x%x\n", pid, n, errno, |
93 | status); | ||
94 | fatal_sigsegv(); | ||
90 | } | 95 | } |
91 | 96 | ||
92 | extern unsigned long current_stub_stack(void); | 97 | extern unsigned long current_stub_stack(void); |
@@ -97,9 +102,11 @@ void get_skas_faultinfo(int pid, struct faultinfo * fi) | |||
97 | 102 | ||
98 | if (ptrace_faultinfo) { | 103 | if (ptrace_faultinfo) { |
99 | err = ptrace(PTRACE_FAULTINFO, pid, 0, fi); | 104 | err = ptrace(PTRACE_FAULTINFO, pid, 0, fi); |
100 | if (err) | 105 | if (err) { |
101 | panic("get_skas_faultinfo - PTRACE_FAULTINFO failed, " | 106 | printk(UM_KERN_ERR "get_skas_faultinfo - " |
102 | "errno = %d\n", errno); | 107 | "PTRACE_FAULTINFO failed, errno = %d\n", errno); |
108 | fatal_sigsegv(); | ||
109 | } | ||
103 | 110 | ||
104 | /* Special handling for i386, which has different structs */ | 111 | /* Special handling for i386, which has different structs */ |
105 | if (sizeof(struct ptrace_faultinfo) < sizeof(struct faultinfo)) | 112 | if (sizeof(struct ptrace_faultinfo) < sizeof(struct faultinfo)) |
@@ -109,9 +116,11 @@ void get_skas_faultinfo(int pid, struct faultinfo * fi) | |||
109 | } | 116 | } |
110 | else { | 117 | else { |
111 | err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV); | 118 | err = ptrace(PTRACE_CONT, pid, 0, SIGSEGV); |
112 | if (err) | 119 | if (err) { |
113 | panic("Failed to continue stub, pid = %d, errno = %d\n", | 120 | printk(UM_KERN_ERR "Failed to continue stub, pid = %d, " |
114 | pid, errno); | 121 | "errno = %d\n", pid, errno); |
122 | fatal_sigsegv(); | ||
123 | } | ||
115 | wait_stub_done(pid); | 124 | wait_stub_done(pid); |
116 | 125 | ||
117 | /* | 126 | /* |
@@ -137,6 +146,9 @@ static void handle_trap(int pid, struct uml_pt_regs *regs, | |||
137 | { | 146 | { |
138 | int err, status; | 147 | int err, status; |
139 | 148 | ||
149 | if ((UPT_IP(regs) >= STUB_START) && (UPT_IP(regs) < STUB_END)) | ||
150 | fatal_sigsegv(); | ||
151 | |||
140 | /* Mark this as a syscall */ | 152 | /* Mark this as a syscall */ |
141 | UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->gp); | 153 | UPT_SYSCALL_NR(regs) = PT_SYSCALL_NR(regs->gp); |
142 | 154 | ||
@@ -144,25 +156,31 @@ static void handle_trap(int pid, struct uml_pt_regs *regs, | |||
144 | { | 156 | { |
145 | err = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET, | 157 | err = ptrace(PTRACE_POKEUSR, pid, PT_SYSCALL_NR_OFFSET, |
146 | __NR_getpid); | 158 | __NR_getpid); |
147 | if (err < 0) | 159 | if (err < 0) { |
148 | panic("handle_trap - nullifying syscall failed, " | 160 | printk(UM_KERN_ERR "handle_trap - nullifying syscall " |
149 | "errno = %d\n", errno); | 161 | "failed, errno = %d\n", errno); |
162 | fatal_sigsegv(); | ||
163 | } | ||
150 | 164 | ||
151 | err = ptrace(PTRACE_SYSCALL, pid, 0, 0); | 165 | err = ptrace(PTRACE_SYSCALL, pid, 0, 0); |
152 | if (err < 0) | 166 | if (err < 0) { |
153 | panic("handle_trap - continuing to end of syscall " | 167 | printk(UM_KERN_ERR "handle_trap - continuing to end of " |
154 | "failed, errno = %d\n", errno); | 168 | "syscall failed, errno = %d\n", errno); |
169 | fatal_sigsegv(); | ||
170 | } | ||
155 | 171 | ||
156 | CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL)); | 172 | CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL)); |
157 | if ((err < 0) || !WIFSTOPPED(status) || | 173 | if ((err < 0) || !WIFSTOPPED(status) || |
158 | (WSTOPSIG(status) != SIGTRAP + 0x80)) { | 174 | (WSTOPSIG(status) != SIGTRAP + 0x80)) { |
159 | err = ptrace_dump_regs(pid); | 175 | err = ptrace_dump_regs(pid); |
160 | if (err) | 176 | if (err) |
161 | printk(UM_KERN_ERR "Failed to get registers " | 177 | printk(UM_KERN_ERR "Failed to get registers " |
162 | "from process, errno = %d\n", -err); | 178 | "from process, errno = %d\n", -err); |
163 | panic("handle_trap - failed to wait at end of syscall, " | 179 | printk(UM_KERN_ERR "handle_trap - failed to wait at " |
164 | "errno = %d, status = %d\n", errno, status); | 180 | "end of syscall, errno = %d, status = %d\n", |
165 | } | 181 | errno, status); |
182 | fatal_sigsegv(); | ||
183 | } | ||
166 | } | 184 | } |
167 | 185 | ||
168 | handle_syscall(regs); | 186 | handle_syscall(regs); |
@@ -178,10 +196,13 @@ static int userspace_tramp(void *stack) | |||
178 | ptrace(PTRACE_TRACEME, 0, 0, 0); | 196 | ptrace(PTRACE_TRACEME, 0, 0, 0); |
179 | 197 | ||
180 | signal(SIGTERM, SIG_DFL); | 198 | signal(SIGTERM, SIG_DFL); |
199 | signal(SIGWINCH, SIG_IGN); | ||
181 | err = set_interval(); | 200 | err = set_interval(); |
182 | if (err) | 201 | if (err) { |
183 | panic("userspace_tramp - setting timer failed, errno = %d\n", | 202 | printk(UM_KERN_ERR "userspace_tramp - setting timer failed, " |
184 | err); | 203 | "errno = %d\n", err); |
204 | exit(1); | ||
205 | } | ||
185 | 206 | ||
186 | if (!proc_mm) { | 207 | if (!proc_mm) { |
187 | /* | 208 | /* |
@@ -221,16 +242,14 @@ static int userspace_tramp(void *stack) | |||
221 | 242 | ||
222 | set_sigstack((void *) STUB_DATA, UM_KERN_PAGE_SIZE); | 243 | set_sigstack((void *) STUB_DATA, UM_KERN_PAGE_SIZE); |
223 | sigemptyset(&sa.sa_mask); | 244 | sigemptyset(&sa.sa_mask); |
224 | sigaddset(&sa.sa_mask, SIGIO); | 245 | sa.sa_flags = SA_ONSTACK | SA_NODEFER; |
225 | sigaddset(&sa.sa_mask, SIGWINCH); | ||
226 | sigaddset(&sa.sa_mask, SIGVTALRM); | ||
227 | sigaddset(&sa.sa_mask, SIGUSR1); | ||
228 | sa.sa_flags = SA_ONSTACK; | ||
229 | sa.sa_handler = (void *) v; | 246 | sa.sa_handler = (void *) v; |
230 | sa.sa_restorer = NULL; | 247 | sa.sa_restorer = NULL; |
231 | if (sigaction(SIGSEGV, &sa, NULL) < 0) | 248 | if (sigaction(SIGSEGV, &sa, NULL) < 0) { |
232 | panic("userspace_tramp - setting SIGSEGV handler " | 249 | printk(UM_KERN_ERR "userspace_tramp - setting SIGSEGV " |
233 | "failed - errno = %d\n", errno); | 250 | "handler failed - errno = %d\n", errno); |
251 | exit(1); | ||
252 | } | ||
234 | } | 253 | } |
235 | 254 | ||
236 | kill(os_getpid(), SIGSTOP); | 255 | kill(os_getpid(), SIGSTOP); |
@@ -246,13 +265,18 @@ int start_userspace(unsigned long stub_stack) | |||
246 | { | 265 | { |
247 | void *stack; | 266 | void *stack; |
248 | unsigned long sp; | 267 | unsigned long sp; |
249 | int pid, status, n, flags; | 268 | int pid, status, n, flags, err; |
250 | 269 | ||
251 | stack = mmap(NULL, UM_KERN_PAGE_SIZE, | 270 | stack = mmap(NULL, UM_KERN_PAGE_SIZE, |
252 | PROT_READ | PROT_WRITE | PROT_EXEC, | 271 | PROT_READ | PROT_WRITE | PROT_EXEC, |
253 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); | 272 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); |
254 | if (stack == MAP_FAILED) | 273 | if (stack == MAP_FAILED) { |
255 | panic("start_userspace : mmap failed, errno = %d", errno); | 274 | err = -errno; |
275 | printk(UM_KERN_ERR "start_userspace : mmap failed, " | ||
276 | "errno = %d\n", errno); | ||
277 | return err; | ||
278 | } | ||
279 | |||
256 | sp = (unsigned long) stack + UM_KERN_PAGE_SIZE - sizeof(void *); | 280 | sp = (unsigned long) stack + UM_KERN_PAGE_SIZE - sizeof(void *); |
257 | 281 | ||
258 | flags = CLONE_FILES; | 282 | flags = CLONE_FILES; |
@@ -262,29 +286,50 @@ int start_userspace(unsigned long stub_stack) | |||
262 | flags |= SIGCHLD; | 286 | flags |= SIGCHLD; |
263 | 287 | ||
264 | pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack); | 288 | pid = clone(userspace_tramp, (void *) sp, flags, (void *) stub_stack); |
265 | if (pid < 0) | 289 | if (pid < 0) { |
266 | panic("start_userspace : clone failed, errno = %d", errno); | 290 | err = -errno; |
291 | printk(UM_KERN_ERR "start_userspace : clone failed, " | ||
292 | "errno = %d\n", errno); | ||
293 | return err; | ||
294 | } | ||
267 | 295 | ||
268 | do { | 296 | do { |
269 | CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL)); | 297 | CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED | __WALL)); |
270 | if (n < 0) | 298 | if (n < 0) { |
271 | panic("start_userspace : wait failed, errno = %d", | 299 | err = -errno; |
272 | errno); | 300 | printk(UM_KERN_ERR "start_userspace : wait failed, " |
301 | "errno = %d\n", errno); | ||
302 | goto out_kill; | ||
303 | } | ||
273 | } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM)); | 304 | } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM)); |
274 | 305 | ||
275 | if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) | 306 | if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) { |
276 | panic("start_userspace : expected SIGSTOP, got status = %d", | 307 | err = -EINVAL; |
277 | status); | 308 | printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got " |
309 | "status = %d\n", status); | ||
310 | goto out_kill; | ||
311 | } | ||
278 | 312 | ||
279 | if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL, | 313 | if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL, |
280 | (void *) PTRACE_O_TRACESYSGOOD) < 0) | 314 | (void *) PTRACE_O_TRACESYSGOOD) < 0) { |
281 | panic("start_userspace : PTRACE_OLDSETOPTIONS failed, " | 315 | err = -errno; |
282 | "errno = %d\n", errno); | 316 | printk(UM_KERN_ERR "start_userspace : PTRACE_OLDSETOPTIONS " |
317 | "failed, errno = %d\n", errno); | ||
318 | goto out_kill; | ||
319 | } | ||
283 | 320 | ||
284 | if (munmap(stack, UM_KERN_PAGE_SIZE) < 0) | 321 | if (munmap(stack, UM_KERN_PAGE_SIZE) < 0) { |
285 | panic("start_userspace : munmap failed, errno = %d\n", errno); | 322 | err = -errno; |
323 | printk(UM_KERN_ERR "start_userspace : munmap failed, " | ||
324 | "errno = %d\n", errno); | ||
325 | goto out_kill; | ||
326 | } | ||
286 | 327 | ||
287 | return pid; | 328 | return pid; |
329 | |||
330 | out_kill: | ||
331 | os_kill_ptraced_process(pid, 1); | ||
332 | return err; | ||
288 | } | 333 | } |
289 | 334 | ||
290 | void userspace(struct uml_pt_regs *regs) | 335 | void userspace(struct uml_pt_regs *regs) |
@@ -302,7 +347,16 @@ void userspace(struct uml_pt_regs *regs) | |||
302 | nsecs += os_nsecs(); | 347 | nsecs += os_nsecs(); |
303 | 348 | ||
304 | while (1) { | 349 | while (1) { |
305 | restore_registers(pid, regs); | 350 | /* |
351 | * This can legitimately fail if the process loads a | ||
352 | * bogus value into a segment register. It will | ||
353 | * segfault and PTRACE_GETREGS will read that value | ||
354 | * out of the process. However, PTRACE_SETREGS will | ||
355 | * fail. In this case, there is nothing to do but | ||
356 | * just kill the process. | ||
357 | */ | ||
358 | if (ptrace(PTRACE_SETREGS, pid, 0, regs->gp)) | ||
359 | fatal_sigsegv(); | ||
306 | 360 | ||
307 | /* Now we set local_using_sysemu to be used for one loop */ | 361 | /* Now we set local_using_sysemu to be used for one loop */ |
308 | local_using_sysemu = get_using_sysemu(); | 362 | local_using_sysemu = get_using_sysemu(); |
@@ -310,19 +364,26 @@ void userspace(struct uml_pt_regs *regs) | |||
310 | op = SELECT_PTRACE_OPERATION(local_using_sysemu, | 364 | op = SELECT_PTRACE_OPERATION(local_using_sysemu, |
311 | singlestepping(NULL)); | 365 | singlestepping(NULL)); |
312 | 366 | ||
313 | err = ptrace(op, pid, 0, 0); | 367 | if (ptrace(op, pid, 0, 0)) { |
314 | if (err) | 368 | printk(UM_KERN_ERR "userspace - ptrace continue " |
315 | panic("userspace - could not resume userspace process, " | 369 | "failed, op = %d, errno = %d\n", op, errno); |
316 | "pid=%d, ptrace operation = %d, errno = %d\n", | 370 | fatal_sigsegv(); |
317 | pid, op, errno); | 371 | } |
318 | 372 | ||
319 | CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL)); | 373 | CATCH_EINTR(err = waitpid(pid, &status, WUNTRACED | __WALL)); |
320 | if (err < 0) | 374 | if (err < 0) { |
321 | panic("userspace - waitpid failed, errno = %d\n", | 375 | printk(UM_KERN_ERR "userspace - wait failed, " |
322 | errno); | 376 | "errno = %d\n", errno); |
377 | fatal_sigsegv(); | ||
378 | } | ||
323 | 379 | ||
324 | regs->is_user = 1; | 380 | regs->is_user = 1; |
325 | save_registers(pid, regs); | 381 | if (ptrace(PTRACE_GETREGS, pid, 0, regs->gp)) { |
382 | printk(UM_KERN_ERR "userspace - PTRACE_GETREGS failed, " | ||
383 | "errno = %d\n", errno); | ||
384 | fatal_sigsegv(); | ||
385 | } | ||
386 | |||
326 | UPT_SYSCALL_NR(regs) = -1; /* Assume: It's not a syscall */ | 387 | UPT_SYSCALL_NR(regs) = -1; /* Assume: It's not a syscall */ |
327 | 388 | ||
328 | if (WIFSTOPPED(status)) { | 389 | if (WIFSTOPPED(status)) { |
@@ -345,7 +406,7 @@ void userspace(struct uml_pt_regs *regs) | |||
345 | break; | 406 | break; |
346 | case SIGVTALRM: | 407 | case SIGVTALRM: |
347 | now = os_nsecs(); | 408 | now = os_nsecs(); |
348 | if(now < nsecs) | 409 | if (now < nsecs) |
349 | break; | 410 | break; |
350 | block_signals(); | 411 | block_signals(); |
351 | (*sig_info[sig])(sig, regs); | 412 | (*sig_info[sig])(sig, regs); |
@@ -368,6 +429,7 @@ void userspace(struct uml_pt_regs *regs) | |||
368 | default: | 429 | default: |
369 | printk(UM_KERN_ERR "userspace - child stopped " | 430 | printk(UM_KERN_ERR "userspace - child stopped " |
370 | "with signal %d\n", sig); | 431 | "with signal %d\n", sig); |
432 | fatal_sigsegv(); | ||
371 | } | 433 | } |
372 | pid = userspace_pid[0]; | 434 | pid = userspace_pid[0]; |
373 | interrupt_end(); | 435 | interrupt_end(); |
@@ -419,9 +481,12 @@ int copy_context_skas0(unsigned long new_stack, int pid) | |||
419 | .it_interval = tv }) }); | 481 | .it_interval = tv }) }); |
420 | 482 | ||
421 | err = ptrace_setregs(pid, thread_regs); | 483 | err = ptrace_setregs(pid, thread_regs); |
422 | if (err < 0) | 484 | if (err < 0) { |
423 | panic("copy_context_skas0 : PTRACE_SETREGS failed, " | 485 | err = -errno; |
424 | "pid = %d, errno = %d\n", pid, -err); | 486 | printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_SETREGS " |
487 | "failed, pid = %d, errno = %d\n", pid, -err); | ||
488 | return err; | ||
489 | } | ||
425 | 490 | ||
426 | /* set a well known return code for detection of child write failure */ | 491 | /* set a well known return code for detection of child write failure */ |
427 | child_data->err = 12345678; | 492 | child_data->err = 12345678; |
@@ -431,31 +496,47 @@ int copy_context_skas0(unsigned long new_stack, int pid) | |||
431 | * parent's stack, and check, if bad result. | 496 | * parent's stack, and check, if bad result. |
432 | */ | 497 | */ |
433 | err = ptrace(PTRACE_CONT, pid, 0, 0); | 498 | err = ptrace(PTRACE_CONT, pid, 0, 0); |
434 | if (err) | 499 | if (err) { |
435 | panic("Failed to continue new process, pid = %d, " | 500 | err = -errno; |
436 | "errno = %d\n", pid, errno); | 501 | printk(UM_KERN_ERR "Failed to continue new process, pid = %d, " |
502 | "errno = %d\n", pid, errno); | ||
503 | return err; | ||
504 | } | ||
505 | |||
437 | wait_stub_done(pid); | 506 | wait_stub_done(pid); |
438 | 507 | ||
439 | pid = data->err; | 508 | pid = data->err; |
440 | if (pid < 0) | 509 | if (pid < 0) { |
441 | panic("copy_context_skas0 - stub-parent reports error %d\n", | 510 | printk(UM_KERN_ERR "copy_context_skas0 - stub-parent reports " |
442 | -pid); | 511 | "error %d\n", -pid); |
512 | return pid; | ||
513 | } | ||
443 | 514 | ||
444 | /* | 515 | /* |
445 | * Wait, until child has finished too: read child's result from | 516 | * Wait, until child has finished too: read child's result from |
446 | * child's stack and check it. | 517 | * child's stack and check it. |
447 | */ | 518 | */ |
448 | wait_stub_done(pid); | 519 | wait_stub_done(pid); |
449 | if (child_data->err != STUB_DATA) | 520 | if (child_data->err != STUB_DATA) { |
450 | panic("copy_context_skas0 - stub-child reports error %ld\n", | 521 | printk(UM_KERN_ERR "copy_context_skas0 - stub-child reports " |
451 | child_data->err); | 522 | "error %ld\n", child_data->err); |
523 | err = child_data->err; | ||
524 | goto out_kill; | ||
525 | } | ||
452 | 526 | ||
453 | if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL, | 527 | if (ptrace(PTRACE_OLDSETOPTIONS, pid, NULL, |
454 | (void *)PTRACE_O_TRACESYSGOOD) < 0) | 528 | (void *)PTRACE_O_TRACESYSGOOD) < 0) { |
455 | panic("copy_context_skas0 : PTRACE_OLDSETOPTIONS failed, " | 529 | err = -errno; |
456 | "errno = %d\n", errno); | 530 | printk(UM_KERN_ERR "copy_context_skas0 : PTRACE_OLDSETOPTIONS " |
531 | "failed, errno = %d\n", errno); | ||
532 | goto out_kill; | ||
533 | } | ||
457 | 534 | ||
458 | return pid; | 535 | return pid; |
536 | |||
537 | out_kill: | ||
538 | os_kill_ptraced_process(pid, 1); | ||
539 | return err; | ||
459 | } | 540 | } |
460 | 541 | ||
461 | /* | 542 | /* |
@@ -463,8 +544,8 @@ int copy_context_skas0(unsigned long new_stack, int pid) | |||
463 | * available. Opening /proc/mm creates a new mm_context, which lacks | 544 | * available. Opening /proc/mm creates a new mm_context, which lacks |
464 | * the stub-pages. Thus, we map them using /proc/mm-fd | 545 | * the stub-pages. Thus, we map them using /proc/mm-fd |
465 | */ | 546 | */ |
466 | void map_stub_pages(int fd, unsigned long code, | 547 | int map_stub_pages(int fd, unsigned long code, unsigned long data, |
467 | unsigned long data, unsigned long stack) | 548 | unsigned long stack) |
468 | { | 549 | { |
469 | struct proc_mm_op mmop; | 550 | struct proc_mm_op mmop; |
470 | int n; | 551 | int n; |
@@ -488,8 +569,9 @@ void map_stub_pages(int fd, unsigned long code, | |||
488 | printk(UM_KERN_ERR "mmap args - addr = 0x%lx, fd = %d, " | 569 | printk(UM_KERN_ERR "mmap args - addr = 0x%lx, fd = %d, " |
489 | "offset = %llx\n", code, code_fd, | 570 | "offset = %llx\n", code, code_fd, |
490 | (unsigned long long) code_offset); | 571 | (unsigned long long) code_offset); |
491 | panic("map_stub_pages : /proc/mm map for code failed, " | 572 | printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for code " |
492 | "err = %d\n", n); | 573 | "failed, err = %d\n", n); |
574 | return -n; | ||
493 | } | 575 | } |
494 | 576 | ||
495 | if (stack) { | 577 | if (stack) { |
@@ -507,10 +589,15 @@ void map_stub_pages(int fd, unsigned long code, | |||
507 | .offset = map_offset | 589 | .offset = map_offset |
508 | } } }); | 590 | } } }); |
509 | CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop))); | 591 | CATCH_EINTR(n = write(fd, &mmop, sizeof(mmop))); |
510 | if (n != sizeof(mmop)) | 592 | if (n != sizeof(mmop)) { |
511 | panic("map_stub_pages : /proc/mm map for data failed, " | 593 | n = errno; |
512 | "err = %d\n", errno); | 594 | printk(UM_KERN_ERR "map_stub_pages : /proc/mm map for " |
595 | "data failed, err = %d\n", n); | ||
596 | return -n; | ||
597 | } | ||
513 | } | 598 | } |
599 | |||
600 | return 0; | ||
514 | } | 601 | } |
515 | 602 | ||
516 | void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) | 603 | void new_thread(void *stack, jmp_buf *buf, void (*handler)(void)) |
@@ -571,7 +658,9 @@ int start_idle_thread(void *stack, jmp_buf *switch_buf) | |||
571 | kmalloc_ok = 0; | 658 | kmalloc_ok = 0; |
572 | return 1; | 659 | return 1; |
573 | default: | 660 | default: |
574 | panic("Bad sigsetjmp return in start_idle_thread - %d\n", n); | 661 | printk(UM_KERN_ERR "Bad sigsetjmp return in " |
662 | "start_idle_thread - %d\n", n); | ||
663 | fatal_sigsegv(); | ||
575 | } | 664 | } |
576 | longjmp(*switch_buf, 1); | 665 | longjmp(*switch_buf, 1); |
577 | } | 666 | } |
@@ -614,9 +703,11 @@ void __switch_mm(struct mm_id *mm_idp) | |||
614 | if (proc_mm) { | 703 | if (proc_mm) { |
615 | err = ptrace(PTRACE_SWITCH_MM, userspace_pid[0], 0, | 704 | err = ptrace(PTRACE_SWITCH_MM, userspace_pid[0], 0, |
616 | mm_idp->u.mm_fd); | 705 | mm_idp->u.mm_fd); |
617 | if (err) | 706 | if (err) { |
618 | panic("__switch_mm - PTRACE_SWITCH_MM failed, " | 707 | printk(UM_KERN_ERR "__switch_mm - PTRACE_SWITCH_MM " |
619 | "errno = %d\n", errno); | 708 | "failed, errno = %d\n", errno); |
709 | fatal_sigsegv(); | ||
710 | } | ||
620 | } | 711 | } |
621 | else userspace_pid[0] = mm_idp->u.pid; | 712 | else userspace_pid[0] = mm_idp->u.pid; |
622 | } | 713 | } |
diff --git a/arch/um/os-Linux/skas/trap.c b/arch/um/os-Linux/skas/trap.c deleted file mode 100644 index 3b1b9244f468..000000000000 --- a/arch/um/os-Linux/skas/trap.c +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #if 0 | ||
7 | #include "kern_util.h" | ||
8 | #include "skas.h" | ||
9 | #include "ptrace_user.h" | ||
10 | #include "sysdep/ptrace_user.h" | ||
11 | #endif | ||
12 | |||
13 | #include <errno.h> | ||
14 | #include <signal.h> | ||
15 | #include "sysdep/ptrace.h" | ||
16 | #include "kern_constants.h" | ||
17 | #include "as-layout.h" | ||
18 | #include "os.h" | ||
19 | #include "sigcontext.h" | ||
20 | #include "task.h" | ||
21 | |||
22 | static struct uml_pt_regs ksig_regs[UM_NR_CPUS]; | ||
23 | |||
24 | void sig_handler_common_skas(int sig, void *sc_ptr) | ||
25 | { | ||
26 | struct sigcontext *sc = sc_ptr; | ||
27 | struct uml_pt_regs *r; | ||
28 | void (*handler)(int, struct uml_pt_regs *); | ||
29 | int save_user, save_errno = errno; | ||
30 | |||
31 | /* | ||
32 | * This is done because to allow SIGSEGV to be delivered inside a SEGV | ||
33 | * handler. This can happen in copy_user, and if SEGV is disabled, | ||
34 | * the process will die. | ||
35 | * XXX Figure out why this is better than SA_NODEFER | ||
36 | */ | ||
37 | if (sig == SIGSEGV) { | ||
38 | change_sig(SIGSEGV, 1); | ||
39 | /* | ||
40 | * For segfaults, we want the data from the | ||
41 | * sigcontext. In this case, we don't want to mangle | ||
42 | * the process registers, so use a static set of | ||
43 | * registers. For other signals, the process | ||
44 | * registers are OK. | ||
45 | */ | ||
46 | r = &ksig_regs[cpu()]; | ||
47 | copy_sc(r, sc_ptr); | ||
48 | } | ||
49 | else r = TASK_REGS(get_current()); | ||
50 | |||
51 | save_user = r->is_user; | ||
52 | r->is_user = 0; | ||
53 | if ((sig == SIGFPE) || (sig == SIGSEGV) || (sig == SIGBUS) || | ||
54 | (sig == SIGILL) || (sig == SIGTRAP)) | ||
55 | GET_FAULTINFO_FROM_SC(r->faultinfo, sc); | ||
56 | |||
57 | change_sig(SIGUSR1, 1); | ||
58 | |||
59 | handler = sig_info[sig]; | ||
60 | |||
61 | /* unblock SIGVTALRM, SIGIO if sig isn't IRQ signal */ | ||
62 | if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGVTALRM)) | ||
63 | unblock_signals(); | ||
64 | |||
65 | handler(sig, r); | ||
66 | |||
67 | errno = save_errno; | ||
68 | r->is_user = save_user; | ||
69 | } | ||
diff --git a/arch/um/os-Linux/start_up.c b/arch/um/os-Linux/start_up.c index 7b81f6c08a5e..b616e15638fb 100644 --- a/arch/um/os-Linux/start_up.c +++ b/arch/um/os-Linux/start_up.c | |||
@@ -60,10 +60,11 @@ static int ptrace_child(void) | |||
60 | * the UML code itself. | 60 | * the UML code itself. |
61 | */ | 61 | */ |
62 | ret = 2; | 62 | ret = 2; |
63 | _exit(ret); | 63 | |
64 | exit(ret); | ||
64 | } | 65 | } |
65 | 66 | ||
66 | static void fatal_perror(char *str) | 67 | static void fatal_perror(const char *str) |
67 | { | 68 | { |
68 | perror(str); | 69 | perror(str); |
69 | exit(1); | 70 | exit(1); |
@@ -341,6 +342,8 @@ static void __init check_coredump_limit(void) | |||
341 | 342 | ||
342 | void __init os_early_checks(void) | 343 | void __init os_early_checks(void) |
343 | { | 344 | { |
345 | int pid; | ||
346 | |||
344 | /* Print out the core dump limits early */ | 347 | /* Print out the core dump limits early */ |
345 | check_coredump_limit(); | 348 | check_coredump_limit(); |
346 | 349 | ||
@@ -350,6 +353,11 @@ void __init os_early_checks(void) | |||
350 | * kernel is running. | 353 | * kernel is running. |
351 | */ | 354 | */ |
352 | check_tmpexec(); | 355 | check_tmpexec(); |
356 | |||
357 | pid = start_ptraced_child(); | ||
358 | if (init_registers(pid)) | ||
359 | fatal("Failed to initialize default registers"); | ||
360 | stop_ptraced_child(pid, 1, 1); | ||
353 | } | 361 | } |
354 | 362 | ||
355 | static int __init noprocmm_cmd_param(char *str, int* add) | 363 | static int __init noprocmm_cmd_param(char *str, int* add) |
@@ -411,7 +419,6 @@ static inline void check_skas3_ptrace_faultinfo(void) | |||
411 | non_fatal("found\n"); | 419 | non_fatal("found\n"); |
412 | } | 420 | } |
413 | 421 | ||
414 | init_registers(pid); | ||
415 | stop_ptraced_child(pid, 1, 1); | 422 | stop_ptraced_child(pid, 1, 1); |
416 | } | 423 | } |
417 | 424 | ||
@@ -466,7 +473,7 @@ static inline void check_skas3_proc_mm(void) | |||
466 | else non_fatal("found\n"); | 473 | else non_fatal("found\n"); |
467 | } | 474 | } |
468 | 475 | ||
469 | int can_do_skas(void) | 476 | void can_do_skas(void) |
470 | { | 477 | { |
471 | non_fatal("Checking for the skas3 patch in the host:\n"); | 478 | non_fatal("Checking for the skas3 patch in the host:\n"); |
472 | 479 | ||
@@ -476,8 +483,6 @@ int can_do_skas(void) | |||
476 | 483 | ||
477 | if (!proc_mm || !ptrace_faultinfo || !ptrace_ldt) | 484 | if (!proc_mm || !ptrace_faultinfo || !ptrace_ldt) |
478 | skas_needs_stub = 1; | 485 | skas_needs_stub = 1; |
479 | |||
480 | return 1; | ||
481 | } | 486 | } |
482 | 487 | ||
483 | int __init parse_iomem(char *str, int *add) | 488 | int __init parse_iomem(char *str, int *add) |
diff --git a/arch/um/os-Linux/trap.c b/arch/um/os-Linux/trap.c deleted file mode 100644 index 2a1c9843e32e..000000000000 --- a/arch/um/os-Linux/trap.c +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #include <signal.h> | ||
7 | #include "os.h" | ||
8 | #include "sysdep/ptrace.h" | ||
9 | |||
10 | /* Initialized from linux_main() */ | ||
11 | void (*sig_info[NSIG])(int, struct uml_pt_regs *); | ||
12 | |||
13 | void os_fill_handlinfo(struct kern_handlers h) | ||
14 | { | ||
15 | sig_info[SIGTRAP] = h.relay_signal; | ||
16 | sig_info[SIGFPE] = h.relay_signal; | ||
17 | sig_info[SIGILL] = h.relay_signal; | ||
18 | sig_info[SIGWINCH] = h.winch; | ||
19 | sig_info[SIGBUS] = h.bus_handler; | ||
20 | sig_info[SIGSEGV] = h.page_fault; | ||
21 | sig_info[SIGIO] = h.sigio_handler; | ||
22 | sig_info[SIGVTALRM] = h.timer_handler; | ||
23 | } | ||
diff --git a/arch/um/os-Linux/tty.c b/arch/um/os-Linux/tty.c index 4cfdd18ea1ef..b09ff66a77ee 100644 --- a/arch/um/os-Linux/tty.c +++ b/arch/um/os-Linux/tty.c | |||
@@ -1,13 +1,16 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
7 | #include <unistd.h> | ||
7 | #include <errno.h> | 8 | #include <errno.h> |
9 | #include <fcntl.h> | ||
10 | #include "kern_constants.h" | ||
11 | #include "kern_util.h" | ||
8 | #include "os.h" | 12 | #include "os.h" |
9 | #include "user.h" | 13 | #include "user.h" |
10 | #include "kern_util.h" | ||
11 | 14 | ||
12 | struct grantpt_info { | 15 | struct grantpt_info { |
13 | int fd; | 16 | int fd; |
@@ -26,36 +29,34 @@ static void grantpt_cb(void *arg) | |||
26 | int get_pty(void) | 29 | int get_pty(void) |
27 | { | 30 | { |
28 | struct grantpt_info info; | 31 | struct grantpt_info info; |
29 | int fd; | 32 | int fd, err; |
30 | 33 | ||
31 | fd = os_open_file("/dev/ptmx", of_rdwr(OPENFLAGS()), 0); | 34 | fd = open("/dev/ptmx", O_RDWR); |
32 | if(fd < 0){ | 35 | if (fd < 0) { |
33 | printk("get_pty : Couldn't open /dev/ptmx - err = %d\n", -fd); | 36 | err = -errno; |
34 | return(fd); | 37 | printk(UM_KERN_ERR "get_pty : Couldn't open /dev/ptmx - " |
38 | "err = %d\n", errno); | ||
39 | return err; | ||
35 | } | 40 | } |
36 | 41 | ||
37 | info.fd = fd; | 42 | info.fd = fd; |
38 | initial_thread_cb(grantpt_cb, &info); | 43 | initial_thread_cb(grantpt_cb, &info); |
39 | 44 | ||
40 | if(info.res < 0){ | 45 | if (info.res < 0) { |
41 | printk("get_pty : Couldn't grant pty - errno = %d\n", | 46 | err = -info.err; |
42 | -info.err); | 47 | printk(UM_KERN_ERR "get_pty : Couldn't grant pty - " |
43 | return(-1); | 48 | "errno = %d\n", -info.err); |
49 | goto out; | ||
44 | } | 50 | } |
45 | if(unlockpt(fd) < 0){ | 51 | |
46 | printk("get_pty : Couldn't unlock pty - errno = %d\n", errno); | 52 | if (unlockpt(fd) < 0) { |
47 | return(-1); | 53 | err = -errno; |
54 | printk(UM_KERN_ERR "get_pty : Couldn't unlock pty - " | ||
55 | "errno = %d\n", errno); | ||
56 | goto out; | ||
48 | } | 57 | } |
49 | return(fd); | 58 | return fd; |
59 | out: | ||
60 | close(fd); | ||
61 | return err; | ||
50 | } | 62 | } |
51 | |||
52 | /* | ||
53 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
54 | * Emacs will notice this stuff at the end of the file and automatically | ||
55 | * adjust the settings for this buffer only. This must remain at the end | ||
56 | * of the file. | ||
57 | * --------------------------------------------------------------------------- | ||
58 | * Local variables: | ||
59 | * c-file-style: "linux" | ||
60 | * End: | ||
61 | */ | ||
diff --git a/arch/um/os-Linux/tty_log.c b/arch/um/os-Linux/tty_log.c index d11a55baa6bd..cc648e6fd3a2 100644 --- a/arch/um/os-Linux/tty_log.c +++ b/arch/um/os-Linux/tty_log.c | |||
@@ -12,7 +12,6 @@ | |||
12 | #include <sys/time.h> | 12 | #include <sys/time.h> |
13 | #include "init.h" | 13 | #include "init.h" |
14 | #include "user.h" | 14 | #include "user.h" |
15 | #include "kern_util.h" | ||
16 | #include "os.h" | 15 | #include "os.h" |
17 | 16 | ||
18 | #define TTY_LOG_DIR "./" | 17 | #define TTY_LOG_DIR "./" |
diff --git a/arch/um/os-Linux/util.c b/arch/um/os-Linux/util.c index 3e058ce9ffb6..a6f31d476993 100644 --- a/arch/um/os-Linux/util.c +++ b/arch/um/os-Linux/util.c | |||
@@ -88,21 +88,6 @@ void setup_hostinfo(char *buf, int len) | |||
88 | host.release, host.version, host.machine); | 88 | host.release, host.version, host.machine); |
89 | } | 89 | } |
90 | 90 | ||
91 | int setjmp_wrapper(void (*proc)(void *, void *), ...) | ||
92 | { | ||
93 | va_list args; | ||
94 | jmp_buf buf; | ||
95 | int n; | ||
96 | |||
97 | n = UML_SETJMP(&buf); | ||
98 | if(n == 0){ | ||
99 | va_start(args, proc); | ||
100 | (*proc)(&buf, &args); | ||
101 | } | ||
102 | va_end(args); | ||
103 | return n; | ||
104 | } | ||
105 | |||
106 | void os_dump_core(void) | 91 | void os_dump_core(void) |
107 | { | 92 | { |
108 | int pid; | 93 | int pid; |
diff --git a/arch/um/sys-i386/bug.c b/arch/um/sys-i386/bug.c index a4360b5207db..8d4f273f1219 100644 --- a/arch/um/sys-i386/bug.c +++ b/arch/um/sys-i386/bug.c | |||
@@ -4,6 +4,7 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/uaccess.h> | 6 | #include <linux/uaccess.h> |
7 | #include <asm/errno.h> | ||
7 | 8 | ||
8 | /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because | 9 | /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because |
9 | * that's not relevant in skas mode. | 10 | * that's not relevant in skas mode. |
diff --git a/arch/um/sys-i386/bugs.c b/arch/um/sys-i386/bugs.c index 806895d73bcc..a74442d13762 100644 --- a/arch/um/sys-i386/bugs.c +++ b/arch/um/sys-i386/bugs.c | |||
@@ -3,171 +3,47 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <errno.h> | ||
7 | #include <signal.h> | 6 | #include <signal.h> |
8 | #include <string.h> | ||
9 | #include "kern_constants.h" | 7 | #include "kern_constants.h" |
10 | #include "os.h" | 8 | #include "kern_util.h" |
9 | #include "longjmp.h" | ||
11 | #include "task.h" | 10 | #include "task.h" |
12 | #include "user.h" | 11 | #include "user.h" |
13 | 12 | #include "sysdep/ptrace.h" | |
14 | #define MAXTOKEN 64 | ||
15 | 13 | ||
16 | /* Set during early boot */ | 14 | /* Set during early boot */ |
17 | int host_has_cmov = 1; | 15 | int host_has_cmov = 1; |
18 | int host_has_xmm = 0; | 16 | static jmp_buf cmov_test_return; |
19 | 17 | ||
20 | static char token(int fd, char *buf, int len, char stop) | 18 | static void cmov_sigill_test_handler(int sig) |
21 | { | 19 | { |
22 | int n; | 20 | host_has_cmov = 0; |
23 | char *ptr, *end, c; | 21 | longjmp(cmov_test_return, 1); |
24 | |||
25 | ptr = buf; | ||
26 | end = &buf[len]; | ||
27 | do { | ||
28 | n = os_read_file(fd, ptr, sizeof(*ptr)); | ||
29 | c = *ptr++; | ||
30 | if (n != sizeof(*ptr)) { | ||
31 | if (n == 0) | ||
32 | return 0; | ||
33 | printk(UM_KERN_ERR "Reading /proc/cpuinfo failed, " | ||
34 | "err = %d\n", -n); | ||
35 | if (n < 0) | ||
36 | return n; | ||
37 | else return -EIO; | ||
38 | } | ||
39 | } while ((c != '\n') && (c != stop) && (ptr < end)); | ||
40 | |||
41 | if (ptr == end) { | ||
42 | printk(UM_KERN_ERR "Failed to find '%c' in /proc/cpuinfo\n", | ||
43 | stop); | ||
44 | return -1; | ||
45 | } | ||
46 | *(ptr - 1) = '\0'; | ||
47 | return c; | ||
48 | } | ||
49 | |||
50 | static int find_cpuinfo_line(int fd, char *key, char *scratch, int len) | ||
51 | { | ||
52 | int n; | ||
53 | char c; | ||
54 | |||
55 | scratch[len - 1] = '\0'; | ||
56 | while (1) { | ||
57 | c = token(fd, scratch, len - 1, ':'); | ||
58 | if (c <= 0) | ||
59 | return 0; | ||
60 | else if (c != ':') { | ||
61 | printk(UM_KERN_ERR "Failed to find ':' in " | ||
62 | "/proc/cpuinfo\n"); | ||
63 | return 0; | ||
64 | } | ||
65 | |||
66 | if (!strncmp(scratch, key, strlen(key))) | ||
67 | return 1; | ||
68 | |||
69 | do { | ||
70 | n = os_read_file(fd, &c, sizeof(c)); | ||
71 | if (n != sizeof(c)) { | ||
72 | printk(UM_KERN_ERR "Failed to find newline in " | ||
73 | "/proc/cpuinfo, err = %d\n", -n); | ||
74 | return 0; | ||
75 | } | ||
76 | } while (c != '\n'); | ||
77 | } | ||
78 | return 0; | ||
79 | } | 22 | } |
80 | 23 | ||
81 | static int check_cpu_flag(char *feature, int *have_it) | 24 | void arch_check_bugs(void) |
82 | { | ||
83 | char buf[MAXTOKEN], c; | ||
84 | int fd, len = ARRAY_SIZE(buf); | ||
85 | |||
86 | printk(UM_KERN_INFO "Checking for host processor %s support...", | ||
87 | feature); | ||
88 | fd = os_open_file("/proc/cpuinfo", of_read(OPENFLAGS()), 0); | ||
89 | if (fd < 0) { | ||
90 | printk(UM_KERN_ERR "Couldn't open /proc/cpuinfo, err = %d\n", | ||
91 | -fd); | ||
92 | return 0; | ||
93 | } | ||
94 | |||
95 | *have_it = 0; | ||
96 | if (!find_cpuinfo_line(fd, "flags", buf, ARRAY_SIZE(buf))) | ||
97 | goto out; | ||
98 | |||
99 | c = token(fd, buf, len - 1, ' '); | ||
100 | if (c < 0) | ||
101 | goto out; | ||
102 | else if (c != ' ') { | ||
103 | printk(UM_KERN_ERR "Failed to find ' ' in /proc/cpuinfo\n"); | ||
104 | goto out; | ||
105 | } | ||
106 | |||
107 | while (1) { | ||
108 | c = token(fd, buf, len - 1, ' '); | ||
109 | if (c < 0) | ||
110 | goto out; | ||
111 | else if (c == '\n') | ||
112 | break; | ||
113 | |||
114 | if (!strcmp(buf, feature)) { | ||
115 | *have_it = 1; | ||
116 | goto out; | ||
117 | } | ||
118 | } | ||
119 | out: | ||
120 | if (*have_it == 0) | ||
121 | printk("No\n"); | ||
122 | else if (*have_it == 1) | ||
123 | printk("Yes\n"); | ||
124 | os_close_file(fd); | ||
125 | return 1; | ||
126 | } | ||
127 | |||
128 | #if 0 /* | ||
129 | * This doesn't work in tt mode, plus it's causing compilation problems | ||
130 | * for some people. | ||
131 | */ | ||
132 | static void disable_lcall(void) | ||
133 | { | 25 | { |
134 | struct modify_ldt_ldt_s ldt; | 26 | struct sigaction old, new; |
135 | int err; | ||
136 | 27 | ||
137 | bzero(&ldt, sizeof(ldt)); | 28 | printk(UM_KERN_INFO "Checking for host processor cmov support..."); |
138 | ldt.entry_number = 7; | 29 | new.sa_handler = cmov_sigill_test_handler; |
139 | ldt.base_addr = 0; | ||
140 | ldt.limit = 0; | ||
141 | err = modify_ldt(1, &ldt, sizeof(ldt)); | ||
142 | if (err) | ||
143 | printk(UM_KERN_ERR "Failed to disable lcall7 - errno = %d\n", | ||
144 | errno); | ||
145 | } | ||
146 | #endif | ||
147 | 30 | ||
148 | void arch_init_thread(void) | 31 | /* Make sure that SIGILL is enabled after the handler longjmps back */ |
149 | { | 32 | new.sa_flags = SA_NODEFER; |
150 | #if 0 | 33 | sigemptyset(&new.sa_mask); |
151 | disable_lcall(); | 34 | sigaction(SIGILL, &new, &old); |
152 | #endif | ||
153 | } | ||
154 | 35 | ||
155 | void arch_check_bugs(void) | 36 | if (setjmp(cmov_test_return) == 0) { |
156 | { | 37 | unsigned long foo = 0; |
157 | int have_it; | 38 | __asm__ __volatile__("cmovz %0, %1" : "=r" (foo) : "0" (foo)); |
39 | printk(UM_KERN_CONT "Yes\n"); | ||
40 | } else | ||
41 | printk(UM_KERN_CONT "No\n"); | ||
158 | 42 | ||
159 | if (os_access("/proc/cpuinfo", OS_ACC_R_OK) < 0) { | 43 | sigaction(SIGILL, &old, &new); |
160 | printk(UM_KERN_ERR "/proc/cpuinfo not available - skipping CPU " | ||
161 | "capability checks\n"); | ||
162 | return; | ||
163 | } | ||
164 | if (check_cpu_flag("cmov", &have_it)) | ||
165 | host_has_cmov = have_it; | ||
166 | if (check_cpu_flag("xmm", &have_it)) | ||
167 | host_has_xmm = have_it; | ||
168 | } | 44 | } |
169 | 45 | ||
170 | int arch_handle_signal(int sig, struct uml_pt_regs *regs) | 46 | void arch_examine_signal(int sig, struct uml_pt_regs *regs) |
171 | { | 47 | { |
172 | unsigned char tmp[2]; | 48 | unsigned char tmp[2]; |
173 | 49 | ||
@@ -176,24 +52,25 @@ int arch_handle_signal(int sig, struct uml_pt_regs *regs) | |||
176 | * SIGILL in init. | 52 | * SIGILL in init. |
177 | */ | 53 | */ |
178 | if ((sig != SIGILL) || (TASK_PID(get_current()) != 1)) | 54 | if ((sig != SIGILL) || (TASK_PID(get_current()) != 1)) |
179 | return 0; | 55 | return; |
56 | |||
57 | if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2)) { | ||
58 | printk(UM_KERN_ERR "SIGILL in init, could not read " | ||
59 | "instructions!\n"); | ||
60 | return; | ||
61 | } | ||
180 | 62 | ||
181 | if (copy_from_user_proc(tmp, (void *) UPT_IP(regs), 2)) | ||
182 | panic("SIGILL in init, could not read instructions!\n"); | ||
183 | if ((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40)) | 63 | if ((tmp[0] != 0x0f) || ((tmp[1] & 0xf0) != 0x40)) |
184 | return 0; | 64 | return; |
185 | 65 | ||
186 | if (host_has_cmov == 0) | 66 | if (host_has_cmov == 0) |
187 | panic("SIGILL caused by cmov, which this processor doesn't " | 67 | printk(UM_KERN_ERR "SIGILL caused by cmov, which this " |
188 | "implement, boot a filesystem compiled for older " | 68 | "processor doesn't implement. Boot a filesystem " |
189 | "processors"); | 69 | "compiled for older processors"); |
190 | else if (host_has_cmov == 1) | 70 | else if (host_has_cmov == 1) |
191 | panic("SIGILL caused by cmov, which this processor claims to " | 71 | printk(UM_KERN_ERR "SIGILL caused by cmov, which this " |
192 | "implement"); | 72 | "processor claims to implement"); |
193 | else if (host_has_cmov == -1) | 73 | else |
194 | panic("SIGILL caused by cmov, couldn't tell if this processor " | 74 | printk(UM_KERN_ERR "Bad value for host_has_cmov (%d)", |
195 | "implements it, boot a filesystem compiled for older " | 75 | host_has_cmov); |
196 | "processors"); | ||
197 | else panic("Bad value for host_has_cmov (%d)", host_has_cmov); | ||
198 | return 0; | ||
199 | } | 76 | } |
diff --git a/arch/um/sys-i386/ldt.c b/arch/um/sys-i386/ldt.c index 67c0958eb984..a34263e6b08d 100644 --- a/arch/um/sys-i386/ldt.c +++ b/arch/um/sys-i386/ldt.c | |||
@@ -3,8 +3,9 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/mm.h" | 6 | #include <linux/mm.h> |
7 | #include "asm/unistd.h" | 7 | #include <linux/sched.h> |
8 | #include <asm/unistd.h> | ||
8 | #include "os.h" | 9 | #include "os.h" |
9 | #include "proc_mm.h" | 10 | #include "proc_mm.h" |
10 | #include "skas.h" | 11 | #include "skas.h" |
@@ -146,7 +147,7 @@ static int read_ldt(void __user * ptr, unsigned long bytecount) | |||
146 | if (ptrace_ldt) | 147 | if (ptrace_ldt) |
147 | return read_ldt_from_host(ptr, bytecount); | 148 | return read_ldt_from_host(ptr, bytecount); |
148 | 149 | ||
149 | down(&ldt->semaphore); | 150 | mutex_lock(&ldt->lock); |
150 | if (ldt->entry_count <= LDT_DIRECT_ENTRIES) { | 151 | if (ldt->entry_count <= LDT_DIRECT_ENTRIES) { |
151 | size = LDT_ENTRY_SIZE*LDT_DIRECT_ENTRIES; | 152 | size = LDT_ENTRY_SIZE*LDT_DIRECT_ENTRIES; |
152 | if (size > bytecount) | 153 | if (size > bytecount) |
@@ -170,7 +171,7 @@ static int read_ldt(void __user * ptr, unsigned long bytecount) | |||
170 | ptr += size; | 171 | ptr += size; |
171 | } | 172 | } |
172 | } | 173 | } |
173 | up(&ldt->semaphore); | 174 | mutex_unlock(&ldt->lock); |
174 | 175 | ||
175 | if (bytecount == 0 || err == -EFAULT) | 176 | if (bytecount == 0 || err == -EFAULT) |
176 | goto out; | 177 | goto out; |
@@ -228,7 +229,7 @@ static int write_ldt(void __user * ptr, unsigned long bytecount, int func) | |||
228 | } | 229 | } |
229 | 230 | ||
230 | if (!ptrace_ldt) | 231 | if (!ptrace_ldt) |
231 | down(&ldt->semaphore); | 232 | mutex_lock(&ldt->lock); |
232 | 233 | ||
233 | err = write_ldt_entry(mm_idp, func, &ldt_info, &addr, 1); | 234 | err = write_ldt_entry(mm_idp, func, &ldt_info, &addr, 1); |
234 | if (err) | 235 | if (err) |
@@ -288,7 +289,7 @@ static int write_ldt(void __user * ptr, unsigned long bytecount, int func) | |||
288 | err = 0; | 289 | err = 0; |
289 | 290 | ||
290 | out_unlock: | 291 | out_unlock: |
291 | up(&ldt->semaphore); | 292 | mutex_unlock(&ldt->lock); |
292 | out: | 293 | out: |
293 | return err; | 294 | return err; |
294 | } | 295 | } |
@@ -395,7 +396,7 @@ long init_new_ldt(struct mm_context *new_mm, struct mm_context *from_mm) | |||
395 | 396 | ||
396 | 397 | ||
397 | if (!ptrace_ldt) | 398 | if (!ptrace_ldt) |
398 | init_MUTEX(&new_mm->ldt.semaphore); | 399 | mutex_init(&new_mm->ldt.lock); |
399 | 400 | ||
400 | if (!from_mm) { | 401 | if (!from_mm) { |
401 | memset(&desc, 0, sizeof(desc)); | 402 | memset(&desc, 0, sizeof(desc)); |
@@ -455,7 +456,7 @@ long init_new_ldt(struct mm_context *new_mm, struct mm_context *from_mm) | |||
455 | * i.e., we have to use the stub for modify_ldt, which | 456 | * i.e., we have to use the stub for modify_ldt, which |
456 | * can't handle the big read buffer of up to 64kB. | 457 | * can't handle the big read buffer of up to 64kB. |
457 | */ | 458 | */ |
458 | down(&from_mm->ldt.semaphore); | 459 | mutex_lock(&from_mm->ldt.lock); |
459 | if (from_mm->ldt.entry_count <= LDT_DIRECT_ENTRIES) | 460 | if (from_mm->ldt.entry_count <= LDT_DIRECT_ENTRIES) |
460 | memcpy(new_mm->ldt.u.entries, from_mm->ldt.u.entries, | 461 | memcpy(new_mm->ldt.u.entries, from_mm->ldt.u.entries, |
461 | sizeof(new_mm->ldt.u.entries)); | 462 | sizeof(new_mm->ldt.u.entries)); |
@@ -474,7 +475,7 @@ long init_new_ldt(struct mm_context *new_mm, struct mm_context *from_mm) | |||
474 | } | 475 | } |
475 | } | 476 | } |
476 | new_mm->ldt.entry_count = from_mm->ldt.entry_count; | 477 | new_mm->ldt.entry_count = from_mm->ldt.entry_count; |
477 | up(&from_mm->ldt.semaphore); | 478 | mutex_unlock(&from_mm->ldt.lock); |
478 | } | 479 | } |
479 | 480 | ||
480 | out: | 481 | out: |
diff --git a/arch/um/sys-i386/ptrace.c b/arch/um/sys-i386/ptrace.c index bd3da8a61f64..6b4499906a6c 100644 --- a/arch/um/sys-i386/ptrace.c +++ b/arch/um/sys-i386/ptrace.c | |||
@@ -8,11 +8,11 @@ | |||
8 | #include "asm/uaccess.h" | 8 | #include "asm/uaccess.h" |
9 | #include "skas.h" | 9 | #include "skas.h" |
10 | 10 | ||
11 | extern int arch_switch_tls(struct task_struct *from, struct task_struct *to); | 11 | extern int arch_switch_tls(struct task_struct *to); |
12 | 12 | ||
13 | void arch_switch_to(struct task_struct *from, struct task_struct *to) | 13 | void arch_switch_to(struct task_struct *to) |
14 | { | 14 | { |
15 | int err = arch_switch_tls(from, to); | 15 | int err = arch_switch_tls(to); |
16 | if (!err) | 16 | if (!err) |
17 | return; | 17 | return; |
18 | 18 | ||
diff --git a/arch/um/sys-i386/ptrace_user.c b/arch/um/sys-i386/ptrace_user.c index 5cf97bc229b9..0b10c3e74028 100644 --- a/arch/um/sys-i386/ptrace_user.c +++ b/arch/um/sys-i386/ptrace_user.c | |||
@@ -19,17 +19,3 @@ int ptrace_setregs(long pid, unsigned long *regs) | |||
19 | return -errno; | 19 | return -errno; |
20 | return 0; | 20 | return 0; |
21 | } | 21 | } |
22 | |||
23 | int ptrace_getfpregs(long pid, unsigned long *regs) | ||
24 | { | ||
25 | if (ptrace(PTRACE_GETFPREGS, pid, 0, regs) < 0) | ||
26 | return -errno; | ||
27 | return 0; | ||
28 | } | ||
29 | |||
30 | int ptrace_setfpregs(long pid, unsigned long *regs) | ||
31 | { | ||
32 | if (ptrace(PTRACE_SETFPREGS, pid, 0, regs) < 0) | ||
33 | return -errno; | ||
34 | return 0; | ||
35 | } | ||
diff --git a/arch/um/sys-i386/signal.c b/arch/um/sys-i386/signal.c index 19053d46cb60..fd0c25ad6af3 100644 --- a/arch/um/sys-i386/signal.c +++ b/arch/um/sys-i386/signal.c | |||
@@ -168,12 +168,13 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
168 | struct sigcontext __user *from) | 168 | struct sigcontext __user *from) |
169 | { | 169 | { |
170 | struct sigcontext sc; | 170 | struct sigcontext sc; |
171 | int err; | 171 | int err, pid; |
172 | 172 | ||
173 | err = copy_from_user(&sc, from, sizeof(sc)); | 173 | err = copy_from_user(&sc, from, sizeof(sc)); |
174 | if (err) | 174 | if (err) |
175 | return err; | 175 | return err; |
176 | 176 | ||
177 | pid = userspace_pid[current_thread_info()->cpu]; | ||
177 | copy_sc(®s->regs, &sc); | 178 | copy_sc(®s->regs, &sc); |
178 | if (have_fpx_regs) { | 179 | if (have_fpx_regs) { |
179 | struct user_fxsr_struct fpx; | 180 | struct user_fxsr_struct fpx; |
@@ -187,8 +188,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
187 | if (err) | 188 | if (err) |
188 | return 1; | 189 | return 1; |
189 | 190 | ||
190 | err = restore_fpx_registers(userspace_pid[current_thread->cpu], | 191 | err = restore_fpx_registers(pid, (unsigned long *) &fpx); |
191 | (unsigned long *) &fpx); | ||
192 | if (err < 0) { | 192 | if (err < 0) { |
193 | printk(KERN_ERR "copy_sc_from_user - " | 193 | printk(KERN_ERR "copy_sc_from_user - " |
194 | "restore_fpx_registers failed, errno = %d\n", | 194 | "restore_fpx_registers failed, errno = %d\n", |
@@ -204,8 +204,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
204 | if (err) | 204 | if (err) |
205 | return 1; | 205 | return 1; |
206 | 206 | ||
207 | err = restore_fp_registers(userspace_pid[current_thread->cpu], | 207 | err = restore_fp_registers(pid, (unsigned long *) &fp); |
208 | (unsigned long *) &fp); | ||
209 | if (err < 0) { | 208 | if (err < 0) { |
210 | printk(KERN_ERR "copy_sc_from_user - " | 209 | printk(KERN_ERR "copy_sc_from_user - " |
211 | "restore_fp_registers failed, errno = %d\n", | 210 | "restore_fp_registers failed, errno = %d\n", |
@@ -223,7 +222,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
223 | { | 222 | { |
224 | struct sigcontext sc; | 223 | struct sigcontext sc; |
225 | struct faultinfo * fi = ¤t->thread.arch.faultinfo; | 224 | struct faultinfo * fi = ¤t->thread.arch.faultinfo; |
226 | int err; | 225 | int err, pid; |
227 | 226 | ||
228 | sc.gs = REGS_GS(regs->regs.gp); | 227 | sc.gs = REGS_GS(regs->regs.gp); |
229 | sc.fs = REGS_FS(regs->regs.gp); | 228 | sc.fs = REGS_FS(regs->regs.gp); |
@@ -249,11 +248,11 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
249 | to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1)); | 248 | to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1)); |
250 | sc.fpstate = to_fp; | 249 | sc.fpstate = to_fp; |
251 | 250 | ||
251 | pid = userspace_pid[current_thread_info()->cpu]; | ||
252 | if (have_fpx_regs) { | 252 | if (have_fpx_regs) { |
253 | struct user_fxsr_struct fpx; | 253 | struct user_fxsr_struct fpx; |
254 | 254 | ||
255 | err = save_fpx_registers(userspace_pid[current_thread->cpu], | 255 | err = save_fpx_registers(pid, (unsigned long *) &fpx); |
256 | (unsigned long *) &fpx); | ||
257 | if (err < 0){ | 256 | if (err < 0){ |
258 | printk(KERN_ERR "copy_sc_to_user - save_fpx_registers " | 257 | printk(KERN_ERR "copy_sc_to_user - save_fpx_registers " |
259 | "failed, errno = %d\n", err); | 258 | "failed, errno = %d\n", err); |
@@ -276,8 +275,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
276 | else { | 275 | else { |
277 | struct user_i387_struct fp; | 276 | struct user_i387_struct fp; |
278 | 277 | ||
279 | err = save_fp_registers(userspace_pid[current_thread->cpu], | 278 | err = save_fp_registers(pid, (unsigned long *) &fp); |
280 | (unsigned long *) &fp); | ||
281 | if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct))) | 279 | if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct))) |
282 | return 1; | 280 | return 1; |
283 | } | 281 | } |
diff --git a/arch/um/sys-i386/stub.S b/arch/um/sys-i386/stub.S index e730772c401b..7699e89f660f 100644 --- a/arch/um/sys-i386/stub.S +++ b/arch/um/sys-i386/stub.S | |||
@@ -7,7 +7,7 @@ | |||
7 | .globl batch_syscall_stub | 7 | .globl batch_syscall_stub |
8 | batch_syscall_stub: | 8 | batch_syscall_stub: |
9 | /* load pointer to first operation */ | 9 | /* load pointer to first operation */ |
10 | mov $(ASM_STUB_DATA+8), %esp | 10 | mov $(STUB_DATA+8), %esp |
11 | 11 | ||
12 | again: | 12 | again: |
13 | /* load length of additional data */ | 13 | /* load length of additional data */ |
@@ -15,12 +15,12 @@ again: | |||
15 | 15 | ||
16 | /* if(length == 0) : end of list */ | 16 | /* if(length == 0) : end of list */ |
17 | /* write possible 0 to header */ | 17 | /* write possible 0 to header */ |
18 | mov %eax, ASM_STUB_DATA+4 | 18 | mov %eax, STUB_DATA+4 |
19 | cmpl $0, %eax | 19 | cmpl $0, %eax |
20 | jz done | 20 | jz done |
21 | 21 | ||
22 | /* save current pointer */ | 22 | /* save current pointer */ |
23 | mov %esp, ASM_STUB_DATA+4 | 23 | mov %esp, STUB_DATA+4 |
24 | 24 | ||
25 | /* skip additional data */ | 25 | /* skip additional data */ |
26 | add %eax, %esp | 26 | add %eax, %esp |
@@ -46,7 +46,7 @@ again: | |||
46 | 46 | ||
47 | done: | 47 | done: |
48 | /* save return value */ | 48 | /* save return value */ |
49 | mov %eax, ASM_STUB_DATA | 49 | mov %eax, STUB_DATA |
50 | 50 | ||
51 | /* stop */ | 51 | /* stop */ |
52 | int3 | 52 | int3 |
diff --git a/arch/um/sys-i386/stub_segv.c b/arch/um/sys-i386/stub_segv.c index b3999cb76bfd..28ccf737a79f 100644 --- a/arch/um/sys-i386/stub_segv.c +++ b/arch/um/sys-i386/stub_segv.c | |||
@@ -1,32 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com) | 2 | * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <signal.h> | ||
7 | #include <sys/select.h> /* The only way I can see to get sigset_t */ | ||
8 | #include <asm/unistd.h> | ||
9 | #include "as-layout.h" | ||
10 | #include "uml-config.h" | ||
11 | #include "sysdep/stub.h" | 6 | #include "sysdep/stub.h" |
12 | #include "sysdep/sigcontext.h" | 7 | #include "sysdep/sigcontext.h" |
13 | #include "sysdep/faultinfo.h" | ||
14 | 8 | ||
15 | void __attribute__ ((__section__ (".__syscall_stub"))) | 9 | void __attribute__ ((__section__ (".__syscall_stub"))) |
16 | stub_segv_handler(int sig) | 10 | stub_segv_handler(int sig) |
17 | { | 11 | { |
18 | struct sigcontext *sc = (struct sigcontext *) (&sig + 1); | 12 | struct sigcontext *sc = (struct sigcontext *) (&sig + 1); |
19 | int pid; | ||
20 | 13 | ||
21 | GET_FAULTINFO_FROM_SC(*((struct faultinfo *) STUB_DATA), sc); | 14 | GET_FAULTINFO_FROM_SC(*((struct faultinfo *) STUB_DATA), sc); |
22 | 15 | ||
23 | pid = stub_syscall0(__NR_getpid); | 16 | trap_myself(); |
24 | stub_syscall2(__NR_kill, pid, SIGUSR1); | ||
25 | |||
26 | /* Load pointer to sigcontext into esp, since we need to leave | ||
27 | * the stack in its original form when we do the sigreturn here, by | ||
28 | * hand. | ||
29 | */ | ||
30 | __asm__ __volatile__("mov %0,%%esp ; movl %1, %%eax ; " | ||
31 | "int $0x80" : : "a" (sc), "g" (__NR_sigreturn)); | ||
32 | } | 17 | } |
diff --git a/arch/um/sys-i386/sys_call_table.S b/arch/um/sys-i386/sys_call_table.S index 12d4148dba39..00e5f5203eea 100644 --- a/arch/um/sys-i386/sys_call_table.S +++ b/arch/um/sys-i386/sys_call_table.S | |||
@@ -9,4 +9,9 @@ | |||
9 | 9 | ||
10 | #define old_mmap old_mmap_i386 | 10 | #define old_mmap old_mmap_i386 |
11 | 11 | ||
12 | .section .rodata,"a" | ||
13 | |||
12 | #include "../../x86/kernel/syscall_table_32.S" | 14 | #include "../../x86/kernel/syscall_table_32.S" |
15 | |||
16 | ENTRY(syscall_table_size) | ||
17 | .long .-sys_call_table | ||
diff --git a/arch/um/sys-i386/tls.c b/arch/um/sys-i386/tls.c index fcaff86b000c..c6c7131e563b 100644 --- a/arch/um/sys-i386/tls.c +++ b/arch/um/sys-i386/tls.c | |||
@@ -26,6 +26,11 @@ int do_set_thread_area(struct user_desc *info) | |||
26 | cpu = get_cpu(); | 26 | cpu = get_cpu(); |
27 | ret = os_set_thread_area(info, userspace_pid[cpu]); | 27 | ret = os_set_thread_area(info, userspace_pid[cpu]); |
28 | put_cpu(); | 28 | put_cpu(); |
29 | |||
30 | if (ret) | ||
31 | printk(KERN_ERR "PTRACE_SET_THREAD_AREA failed, err = %d, " | ||
32 | "index = %d\n", ret, info->entry_number); | ||
33 | |||
29 | return ret; | 34 | return ret; |
30 | } | 35 | } |
31 | 36 | ||
@@ -37,6 +42,11 @@ int do_get_thread_area(struct user_desc *info) | |||
37 | cpu = get_cpu(); | 42 | cpu = get_cpu(); |
38 | ret = os_get_thread_area(info, userspace_pid[cpu]); | 43 | ret = os_get_thread_area(info, userspace_pid[cpu]); |
39 | put_cpu(); | 44 | put_cpu(); |
45 | |||
46 | if (ret) | ||
47 | printk(KERN_ERR "PTRACE_GET_THREAD_AREA failed, err = %d, " | ||
48 | "index = %d\n", ret, info->entry_number); | ||
49 | |||
40 | return ret; | 50 | return ret; |
41 | } | 51 | } |
42 | 52 | ||
@@ -172,7 +182,7 @@ void clear_flushed_tls(struct task_struct *task) | |||
172 | * SKAS patch. | 182 | * SKAS patch. |
173 | */ | 183 | */ |
174 | 184 | ||
175 | int arch_switch_tls(struct task_struct *from, struct task_struct *to) | 185 | int arch_switch_tls(struct task_struct *to) |
176 | { | 186 | { |
177 | if (!host_supports_tls) | 187 | if (!host_supports_tls) |
178 | return 0; | 188 | return 0; |
@@ -225,7 +235,8 @@ out: | |||
225 | } | 235 | } |
226 | 236 | ||
227 | /* XXX: use do_get_thread_area to read the host value? I'm not at all sure! */ | 237 | /* XXX: use do_get_thread_area to read the host value? I'm not at all sure! */ |
228 | static int get_tls_entry(struct task_struct* task, struct user_desc *info, int idx) | 238 | static int get_tls_entry(struct task_struct *task, struct user_desc *info, |
239 | int idx) | ||
229 | { | 240 | { |
230 | struct thread_struct *t = &task->thread; | 241 | struct thread_struct *t = &task->thread; |
231 | 242 | ||
@@ -263,7 +274,7 @@ clear: | |||
263 | goto out; | 274 | goto out; |
264 | } | 275 | } |
265 | 276 | ||
266 | asmlinkage int sys_set_thread_area(struct user_desc __user *user_desc) | 277 | int sys_set_thread_area(struct user_desc __user *user_desc) |
267 | { | 278 | { |
268 | struct user_desc info; | 279 | struct user_desc info; |
269 | int idx, ret; | 280 | int idx, ret; |
@@ -298,7 +309,7 @@ asmlinkage int sys_set_thread_area(struct user_desc __user *user_desc) | |||
298 | * i386. However the only possible error are caused by bugs. | 309 | * i386. However the only possible error are caused by bugs. |
299 | */ | 310 | */ |
300 | int ptrace_set_thread_area(struct task_struct *child, int idx, | 311 | int ptrace_set_thread_area(struct task_struct *child, int idx, |
301 | struct user_desc __user *user_desc) | 312 | struct user_desc __user *user_desc) |
302 | { | 313 | { |
303 | struct user_desc info; | 314 | struct user_desc info; |
304 | 315 | ||
@@ -311,7 +322,7 @@ int ptrace_set_thread_area(struct task_struct *child, int idx, | |||
311 | return set_tls_entry(child, &info, idx, 0); | 322 | return set_tls_entry(child, &info, idx, 0); |
312 | } | 323 | } |
313 | 324 | ||
314 | asmlinkage int sys_get_thread_area(struct user_desc __user *user_desc) | 325 | int sys_get_thread_area(struct user_desc __user *user_desc) |
315 | { | 326 | { |
316 | struct user_desc info; | 327 | struct user_desc info; |
317 | int idx, ret; | 328 | int idx, ret; |
@@ -355,10 +366,9 @@ out: | |||
355 | return ret; | 366 | return ret; |
356 | } | 367 | } |
357 | 368 | ||
358 | |||
359 | /* | 369 | /* |
360 | * XXX: This part is probably common to i386 and x86-64. Don't create a common | 370 | * This code is really i386-only, but it detects and logs x86_64 GDT indexes |
361 | * file for now, do that when implementing x86-64 support. | 371 | * if a 32-bit UML is running on a 64-bit host. |
362 | */ | 372 | */ |
363 | static int __init __setup_host_supports_tls(void) | 373 | static int __init __setup_host_supports_tls(void) |
364 | { | 374 | { |
@@ -367,13 +377,16 @@ static int __init __setup_host_supports_tls(void) | |||
367 | printk(KERN_INFO "Host TLS support detected\n"); | 377 | printk(KERN_INFO "Host TLS support detected\n"); |
368 | printk(KERN_INFO "Detected host type: "); | 378 | printk(KERN_INFO "Detected host type: "); |
369 | switch (host_gdt_entry_tls_min) { | 379 | switch (host_gdt_entry_tls_min) { |
370 | case GDT_ENTRY_TLS_MIN_I386: | 380 | case GDT_ENTRY_TLS_MIN_I386: |
371 | printk("i386\n"); | 381 | printk(KERN_CONT "i386"); |
372 | break; | 382 | break; |
373 | case GDT_ENTRY_TLS_MIN_X86_64: | 383 | case GDT_ENTRY_TLS_MIN_X86_64: |
374 | printk("x86_64\n"); | 384 | printk(KERN_CONT "x86_64"); |
375 | break; | 385 | break; |
376 | } | 386 | } |
387 | printk(KERN_CONT " (GDT indexes %d to %d)\n", | ||
388 | host_gdt_entry_tls_min, | ||
389 | host_gdt_entry_tls_min + GDT_ENTRY_TLS_ENTRIES); | ||
377 | } else | 390 | } else |
378 | printk(KERN_ERR " Host TLS support NOT detected! " | 391 | printk(KERN_ERR " Host TLS support NOT detected! " |
379 | "TLS support inside UML will not work\n"); | 392 | "TLS support inside UML will not work\n"); |
diff --git a/arch/um/sys-ppc/Makefile b/arch/um/sys-ppc/Makefile index a9814a7ae60e..08901526e893 100644 --- a/arch/um/sys-ppc/Makefile +++ b/arch/um/sys-ppc/Makefile | |||
@@ -6,7 +6,7 @@ OBJ = built-in.o | |||
6 | OBJS = ptrace.o sigcontext.o semaphore.o checksum.o miscthings.o misc.o \ | 6 | OBJS = ptrace.o sigcontext.o semaphore.o checksum.o miscthings.o misc.o \ |
7 | ptrace_user.o sysrq.o | 7 | ptrace_user.o sysrq.o |
8 | 8 | ||
9 | EXTRA_AFLAGS := -DCONFIG_PPC32 -I. -I$(TOPDIR)/arch/ppc/kernel | 9 | EXTRA_AFLAGS := -DCONFIG_PPC32 -I. -I$(srctree)/arch/ppc/kernel |
10 | 10 | ||
11 | all: $(OBJ) | 11 | all: $(OBJ) |
12 | 12 | ||
@@ -22,25 +22,25 @@ sigcontext.o: sigcontext.c | |||
22 | 22 | ||
23 | semaphore.c: | 23 | semaphore.c: |
24 | rm -f $@ | 24 | rm -f $@ |
25 | ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ | 25 | ln -s $(srctree)/arch/ppc/kernel/$@ $@ |
26 | 26 | ||
27 | checksum.S: | 27 | checksum.S: |
28 | rm -f $@ | 28 | rm -f $@ |
29 | ln -s $(TOPDIR)/arch/ppc/lib/$@ $@ | 29 | ln -s $(srctree)/arch/ppc/lib/$@ $@ |
30 | 30 | ||
31 | mk_defs.c: | 31 | mk_defs.c: |
32 | rm -f $@ | 32 | rm -f $@ |
33 | ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ | 33 | ln -s $(srctree)/arch/ppc/kernel/$@ $@ |
34 | 34 | ||
35 | ppc_defs.head: | 35 | ppc_defs.head: |
36 | rm -f $@ | 36 | rm -f $@ |
37 | ln -s $(TOPDIR)/arch/ppc/kernel/$@ $@ | 37 | ln -s $(srctree)/arch/ppc/kernel/$@ $@ |
38 | 38 | ||
39 | ppc_defs.h: mk_defs.c ppc_defs.head \ | 39 | ppc_defs.h: mk_defs.c ppc_defs.head \ |
40 | $(TOPDIR)/include/asm-ppc/mmu.h \ | 40 | $(srctree)/include/asm-ppc/mmu.h \ |
41 | $(TOPDIR)/include/asm-ppc/processor.h \ | 41 | $(srctree)/include/asm-ppc/processor.h \ |
42 | $(TOPDIR)/include/asm-ppc/pgtable.h \ | 42 | $(srctree)/include/asm-ppc/pgtable.h \ |
43 | $(TOPDIR)/include/asm-ppc/ptrace.h | 43 | $(srctree)/include/asm-ppc/ptrace.h |
44 | # $(CC) $(CFLAGS) -S mk_defs.c | 44 | # $(CC) $(CFLAGS) -S mk_defs.c |
45 | cp ppc_defs.head ppc_defs.h | 45 | cp ppc_defs.head ppc_defs.h |
46 | # for bk, this way we can write to the file even if it's not checked out | 46 | # for bk, this way we can write to the file even if it's not checked out |
@@ -56,13 +56,13 @@ ppc_defs.h: mk_defs.c ppc_defs.head \ | |||
56 | 56 | ||
57 | checksum.o: checksum.S | 57 | checksum.o: checksum.S |
58 | rm -f asm | 58 | rm -f asm |
59 | ln -s $(TOPDIR)/include/asm-ppc asm | 59 | ln -s $(srctree)/include/asm-ppc asm |
60 | $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o | 60 | $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o |
61 | rm -f asm | 61 | rm -f asm |
62 | 62 | ||
63 | misc.o: misc.S ppc_defs.h | 63 | misc.o: misc.S ppc_defs.h |
64 | rm -f asm | 64 | rm -f asm |
65 | ln -s $(TOPDIR)/include/asm-ppc asm | 65 | ln -s $(srctree)/include/asm-ppc asm |
66 | $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o | 66 | $(CC) $(EXTRA_AFLAGS) $(KBUILD_AFLAGS) -D__ASSEMBLY__ -D__UM_PPC__ -c $< -o $*.o |
67 | rm -f asm | 67 | rm -f asm |
68 | 68 | ||
diff --git a/arch/um/sys-x86_64/bug.c b/arch/um/sys-x86_64/bug.c index a4360b5207db..e8034e363d83 100644 --- a/arch/um/sys-x86_64/bug.c +++ b/arch/um/sys-x86_64/bug.c | |||
@@ -5,7 +5,8 @@ | |||
5 | 5 | ||
6 | #include <linux/uaccess.h> | 6 | #include <linux/uaccess.h> |
7 | 7 | ||
8 | /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because | 8 | /* |
9 | * Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because | ||
9 | * that's not relevant in skas mode. | 10 | * that's not relevant in skas mode. |
10 | */ | 11 | */ |
11 | 12 | ||
diff --git a/arch/um/sys-x86_64/bugs.c b/arch/um/sys-x86_64/bugs.c index 506b6765bbcb..44e02ba2a265 100644 --- a/arch/um/sys-x86_64/bugs.c +++ b/arch/um/sys-x86_64/bugs.c | |||
@@ -6,15 +6,10 @@ | |||
6 | 6 | ||
7 | #include "sysdep/ptrace.h" | 7 | #include "sysdep/ptrace.h" |
8 | 8 | ||
9 | void arch_init_thread(void) | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void arch_check_bugs(void) | 9 | void arch_check_bugs(void) |
14 | { | 10 | { |
15 | } | 11 | } |
16 | 12 | ||
17 | int arch_handle_signal(int sig, struct uml_pt_regs *regs) | 13 | void arch_examine_signal(int sig, struct uml_pt_regs *regs) |
18 | { | 14 | { |
19 | return 0; | ||
20 | } | 15 | } |
diff --git a/arch/um/sys-x86_64/ptrace.c b/arch/um/sys-x86_64/ptrace.c index b7631b0e9ddc..f3458d7d1c5a 100644 --- a/arch/um/sys-x86_64/ptrace.c +++ b/arch/um/sys-x86_64/ptrace.c | |||
@@ -5,13 +5,12 @@ | |||
5 | * Licensed under the GPL | 5 | * Licensed under the GPL |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #define __FRAME_OFFSETS | 8 | #include <linux/mm.h> |
9 | #include <asm/ptrace.h> | ||
10 | #include <linux/sched.h> | 9 | #include <linux/sched.h> |
11 | #include <linux/errno.h> | 10 | #include <linux/errno.h> |
12 | #include <linux/mm.h> | 11 | #define __FRAME_OFFSETS |
12 | #include <asm/ptrace.h> | ||
13 | #include <asm/uaccess.h> | 13 | #include <asm/uaccess.h> |
14 | #include <asm/elf.h> | ||
15 | 14 | ||
16 | /* | 15 | /* |
17 | * determines which flags the user has access to. | 16 | * determines which flags the user has access to. |
@@ -24,12 +23,14 @@ int putreg(struct task_struct *child, int regno, unsigned long value) | |||
24 | unsigned long tmp; | 23 | unsigned long tmp; |
25 | 24 | ||
26 | #ifdef TIF_IA32 | 25 | #ifdef TIF_IA32 |
27 | /* Some code in the 64bit emulation may not be 64bit clean. | 26 | /* |
28 | Don't take any chances. */ | 27 | * Some code in the 64bit emulation may not be 64bit clean. |
28 | * Don't take any chances. | ||
29 | */ | ||
29 | if (test_tsk_thread_flag(child, TIF_IA32)) | 30 | if (test_tsk_thread_flag(child, TIF_IA32)) |
30 | value &= 0xffffffff; | 31 | value &= 0xffffffff; |
31 | #endif | 32 | #endif |
32 | switch (regno){ | 33 | switch (regno) { |
33 | case FS: | 34 | case FS: |
34 | case GS: | 35 | case GS: |
35 | case DS: | 36 | case DS: |
@@ -66,7 +67,7 @@ int poke_user(struct task_struct *child, long addr, long data) | |||
66 | if (addr < MAX_REG_OFFSET) | 67 | if (addr < MAX_REG_OFFSET) |
67 | return putreg(child, addr, data); | 68 | return putreg(child, addr, data); |
68 | else if ((addr >= offsetof(struct user, u_debugreg[0])) && | 69 | else if ((addr >= offsetof(struct user, u_debugreg[0])) && |
69 | (addr <= offsetof(struct user, u_debugreg[7]))){ | 70 | (addr <= offsetof(struct user, u_debugreg[7]))) { |
70 | addr -= offsetof(struct user, u_debugreg[0]); | 71 | addr -= offsetof(struct user, u_debugreg[0]); |
71 | addr = addr >> 2; | 72 | addr = addr >> 2; |
72 | if ((addr == 4) || (addr == 5)) | 73 | if ((addr == 4) || (addr == 5)) |
@@ -108,11 +109,10 @@ int peek_user(struct task_struct *child, long addr, long data) | |||
108 | return -EIO; | 109 | return -EIO; |
109 | 110 | ||
110 | tmp = 0; /* Default return condition */ | 111 | tmp = 0; /* Default return condition */ |
111 | if (addr < MAX_REG_OFFSET){ | 112 | if (addr < MAX_REG_OFFSET) |
112 | tmp = getreg(child, addr); | 113 | tmp = getreg(child, addr); |
113 | } | ||
114 | else if ((addr >= offsetof(struct user, u_debugreg[0])) && | 114 | else if ((addr >= offsetof(struct user, u_debugreg[0])) && |
115 | (addr <= offsetof(struct user, u_debugreg[7]))){ | 115 | (addr <= offsetof(struct user, u_debugreg[7]))) { |
116 | addr -= offsetof(struct user, u_debugreg[0]); | 116 | addr -= offsetof(struct user, u_debugreg[0]); |
117 | addr = addr >> 2; | 117 | addr = addr >> 2; |
118 | tmp = child->thread.arch.debugregs[addr]; | 118 | tmp = child->thread.arch.debugregs[addr]; |
@@ -127,8 +127,9 @@ int is_syscall(unsigned long addr) | |||
127 | int n; | 127 | int n; |
128 | 128 | ||
129 | n = copy_from_user(&instr, (void __user *) addr, sizeof(instr)); | 129 | n = copy_from_user(&instr, (void __user *) addr, sizeof(instr)); |
130 | if (n){ | 130 | if (n) { |
131 | /* access_process_vm() grants access to vsyscall and stub, | 131 | /* |
132 | * access_process_vm() grants access to vsyscall and stub, | ||
132 | * while copy_from_user doesn't. Maybe access_process_vm is | 133 | * while copy_from_user doesn't. Maybe access_process_vm is |
133 | * slow, but that doesn't matter, since it will be called only | 134 | * slow, but that doesn't matter, since it will be called only |
134 | * in case of singlestepping, if copy_from_user failed. | 135 | * in case of singlestepping, if copy_from_user failed. |
@@ -155,7 +156,7 @@ int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child) | |||
155 | return err; | 156 | return err; |
156 | 157 | ||
157 | n = copy_to_user(buf, fpregs, sizeof(fpregs)); | 158 | n = copy_to_user(buf, fpregs, sizeof(fpregs)); |
158 | if(n > 0) | 159 | if (n > 0) |
159 | return -EFAULT; | 160 | return -EFAULT; |
160 | 161 | ||
161 | return n; | 162 | return n; |
diff --git a/arch/um/sys-x86_64/ptrace_user.c b/arch/um/sys-x86_64/ptrace_user.c index b5f9c33e311e..c57a496d3f5b 100644 --- a/arch/um/sys-x86_64/ptrace_user.c +++ b/arch/um/sys-x86_64/ptrace_user.c | |||
@@ -4,55 +4,19 @@ | |||
4 | * Licensed under the GPL | 4 | * Licensed under the GPL |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <stddef.h> | ||
8 | #include <errno.h> | 7 | #include <errno.h> |
9 | #include "ptrace_user.h" | 8 | #include "ptrace_user.h" |
10 | #include "user.h" | ||
11 | #include "kern_constants.h" | ||
12 | 9 | ||
13 | int ptrace_getregs(long pid, unsigned long *regs_out) | 10 | int ptrace_getregs(long pid, unsigned long *regs_out) |
14 | { | 11 | { |
15 | if(ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0) | 12 | if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0) |
16 | return(-errno); | 13 | return -errno; |
17 | return(0); | ||
18 | } | ||
19 | |||
20 | int ptrace_setregs(long pid, unsigned long *regs) | ||
21 | { | ||
22 | if(ptrace(PTRACE_SETREGS, pid, 0, regs) < 0) | ||
23 | return(-errno); | ||
24 | return(0); | 14 | return(0); |
25 | } | 15 | } |
26 | 16 | ||
27 | int ptrace_setfpregs(long pid, unsigned long *regs) | 17 | int ptrace_setregs(long pid, unsigned long *regs_out) |
28 | { | 18 | { |
29 | if (ptrace(PTRACE_SETFPREGS, pid, 0, regs) < 0) | 19 | if (ptrace(PTRACE_SETREGS, pid, 0, regs_out) < 0) |
30 | return -errno; | 20 | return -errno; |
31 | return 0; | 21 | return(0); |
32 | } | ||
33 | |||
34 | void ptrace_pokeuser(unsigned long addr, unsigned long data) | ||
35 | { | ||
36 | panic("ptrace_pokeuser"); | ||
37 | } | ||
38 | |||
39 | #define DS 184 | ||
40 | #define ES 192 | ||
41 | #define __USER_DS 0x2b | ||
42 | |||
43 | void arch_enter_kernel(void *task, int pid) | ||
44 | { | ||
45 | } | ||
46 | |||
47 | void arch_leave_kernel(void *task, int pid) | ||
48 | { | ||
49 | #ifdef UM_USER_CS | ||
50 | if(ptrace(PTRACE_POKEUSR, pid, CS, UM_USER_CS) < 0) | ||
51 | printk("POKEUSR CS failed"); | ||
52 | #endif | ||
53 | |||
54 | if(ptrace(PTRACE_POKEUSR, pid, DS, __USER_DS) < 0) | ||
55 | printk("POKEUSR DS failed"); | ||
56 | if(ptrace(PTRACE_POKEUSR, pid, ES, __USER_DS) < 0) | ||
57 | printk("POKEUSR ES failed"); | ||
58 | } | 22 | } |
diff --git a/arch/um/sys-x86_64/signal.c b/arch/um/sys-x86_64/signal.c index 7457436b433a..1a899a7ed7a6 100644 --- a/arch/um/sys-x86_64/signal.c +++ b/arch/um/sys-x86_64/signal.c | |||
@@ -81,7 +81,7 @@ static int copy_sc_from_user(struct pt_regs *regs, | |||
81 | if (err) | 81 | if (err) |
82 | return 1; | 82 | return 1; |
83 | 83 | ||
84 | err = restore_fp_registers(userspace_pid[current_thread->cpu], | 84 | err = restore_fp_registers(userspace_pid[current_thread_info()->cpu], |
85 | (unsigned long *) &fp); | 85 | (unsigned long *) &fp); |
86 | if (err < 0) { | 86 | if (err < 0) { |
87 | printk(KERN_ERR "copy_sc_from_user - " | 87 | printk(KERN_ERR "copy_sc_from_user - " |
@@ -112,7 +112,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
112 | err |= PUTREG(regs, RSI, to, si); | 112 | err |= PUTREG(regs, RSI, to, si); |
113 | err |= PUTREG(regs, RBP, to, bp); | 113 | err |= PUTREG(regs, RBP, to, bp); |
114 | /* | 114 | /* |
115 | * Must use orignal RSP, which is passed in, rather than what's in | 115 | * Must use original RSP, which is passed in, rather than what's in |
116 | * the pt_regs, because that's already been updated to point at the | 116 | * the pt_regs, because that's already been updated to point at the |
117 | * signal frame. | 117 | * signal frame. |
118 | */ | 118 | */ |
@@ -143,7 +143,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, | |||
143 | if (err) | 143 | if (err) |
144 | return 1; | 144 | return 1; |
145 | 145 | ||
146 | err = save_fp_registers(userspace_pid[current_thread->cpu], | 146 | err = save_fp_registers(userspace_pid[current_thread_info()->cpu], |
147 | (unsigned long *) &fp); | 147 | (unsigned long *) &fp); |
148 | if (err < 0) { | 148 | if (err < 0) { |
149 | printk(KERN_ERR "copy_sc_from_user - restore_fp_registers " | 149 | printk(KERN_ERR "copy_sc_from_user - restore_fp_registers " |
diff --git a/arch/um/sys-x86_64/stub.S b/arch/um/sys-x86_64/stub.S index 4afe204a6af7..568768763155 100644 --- a/arch/um/sys-x86_64/stub.S +++ b/arch/um/sys-x86_64/stub.S | |||
@@ -8,18 +8,18 @@ syscall_stub: | |||
8 | /* We don't have 64-bit constants, so this constructs the address | 8 | /* We don't have 64-bit constants, so this constructs the address |
9 | * we need. | 9 | * we need. |
10 | */ | 10 | */ |
11 | movq $(ASM_STUB_DATA >> 32), %rbx | 11 | movq $(STUB_DATA >> 32), %rbx |
12 | salq $32, %rbx | 12 | salq $32, %rbx |
13 | movq $(ASM_STUB_DATA & 0xffffffff), %rcx | 13 | movq $(STUB_DATA & 0xffffffff), %rcx |
14 | or %rcx, %rbx | 14 | or %rcx, %rbx |
15 | movq %rax, (%rbx) | 15 | movq %rax, (%rbx) |
16 | int3 | 16 | int3 |
17 | 17 | ||
18 | .globl batch_syscall_stub | 18 | .globl batch_syscall_stub |
19 | batch_syscall_stub: | 19 | batch_syscall_stub: |
20 | mov $(ASM_STUB_DATA >> 32), %rbx | 20 | mov $(STUB_DATA >> 32), %rbx |
21 | sal $32, %rbx | 21 | sal $32, %rbx |
22 | mov $(ASM_STUB_DATA & 0xffffffff), %rax | 22 | mov $(STUB_DATA & 0xffffffff), %rax |
23 | or %rax, %rbx | 23 | or %rax, %rbx |
24 | /* load pointer to first operation */ | 24 | /* load pointer to first operation */ |
25 | mov %rbx, %rsp | 25 | mov %rbx, %rsp |
diff --git a/arch/um/sys-x86_64/stub_segv.c b/arch/um/sys-x86_64/stub_segv.c index 3afb590f0072..ced051afc705 100644 --- a/arch/um/sys-x86_64/stub_segv.c +++ b/arch/um/sys-x86_64/stub_segv.c | |||
@@ -1,51 +1,22 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com) | 2 | * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <stddef.h> | ||
7 | #include <signal.h> | 6 | #include <signal.h> |
8 | #include <asm/unistd.h> | ||
9 | #include "as-layout.h" | 7 | #include "as-layout.h" |
10 | #include "uml-config.h" | ||
11 | #include "sysdep/sigcontext.h" | ||
12 | #include "sysdep/faultinfo.h" | ||
13 | #include "sysdep/stub.h" | 8 | #include "sysdep/stub.h" |
14 | 9 | #include "sysdep/faultinfo.h" | |
15 | /* Copied from sys-x86_64/signal.c - Can't find an equivalent definition | 10 | #include "sysdep/sigcontext.h" |
16 | * in the libc headers anywhere. | ||
17 | */ | ||
18 | struct rt_sigframe | ||
19 | { | ||
20 | char *pretcode; | ||
21 | struct ucontext uc; | ||
22 | struct siginfo info; | ||
23 | }; | ||
24 | |||
25 | /* Copied here from <linux/kernel.h> - we're userspace. */ | ||
26 | #define container_of(ptr, type, member) ({ \ | ||
27 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ | ||
28 | (type *)( (char *)__mptr - offsetof(type,member) );}) | ||
29 | 11 | ||
30 | void __attribute__ ((__section__ (".__syscall_stub"))) | 12 | void __attribute__ ((__section__ (".__syscall_stub"))) |
31 | stub_segv_handler(int sig) | 13 | stub_segv_handler(int sig) |
32 | { | 14 | { |
33 | struct ucontext *uc; | 15 | struct ucontext *uc; |
34 | int pid; | ||
35 | 16 | ||
36 | __asm__ __volatile__("movq %%rdx, %0" : "=g" (uc) :); | 17 | __asm__ __volatile__("movq %%rdx, %0" : "=g" (uc) :); |
37 | GET_FAULTINFO_FROM_SC(*((struct faultinfo *) STUB_DATA), | 18 | GET_FAULTINFO_FROM_SC(*((struct faultinfo *) STUB_DATA), |
38 | &uc->uc_mcontext); | 19 | &uc->uc_mcontext); |
39 | 20 | trap_myself(); | |
40 | pid = stub_syscall0(__NR_getpid); | ||
41 | stub_syscall2(__NR_kill, pid, SIGUSR1); | ||
42 | |||
43 | /* sys_sigreturn expects that the stack pointer will be 8 bytes into | ||
44 | * the signal frame. So, we use the ucontext pointer, which we know | ||
45 | * already, to get the signal frame pointer, and add 8 to that. | ||
46 | */ | ||
47 | __asm__ __volatile__("movq %0, %%rsp; movq %1, %%rax ; syscall": : | ||
48 | "g" ((unsigned long) | ||
49 | container_of(uc, struct rt_sigframe, uc) + 8), | ||
50 | "g" (__NR_rt_sigreturn)); | ||
51 | } | 21 | } |
22 | |||
diff --git a/arch/um/sys-x86_64/syscall_table.c b/arch/um/sys-x86_64/syscall_table.c index 71b2ae4ad5de..c128eb897008 100644 --- a/arch/um/sys-x86_64/syscall_table.c +++ b/arch/um/sys-x86_64/syscall_table.c | |||
@@ -1,5 +1,7 @@ | |||
1 | /* System call table for UML/x86-64, copied from arch/x86_64/kernel/syscall.c | 1 | /* |
2 | * with some changes for UML. */ | 2 | * System call table for UML/x86-64, copied from arch/x86_64/kernel/syscall.c |
3 | * with some changes for UML. | ||
4 | */ | ||
3 | 5 | ||
4 | #include <linux/linkage.h> | 6 | #include <linux/linkage.h> |
5 | #include <linux/sys.h> | 7 | #include <linux/sys.h> |
@@ -8,22 +10,26 @@ | |||
8 | 10 | ||
9 | #define __NO_STUBS | 11 | #define __NO_STUBS |
10 | 12 | ||
11 | /* Below you can see, in terms of #define's, the differences between the x86-64 | 13 | /* |
12 | * and the UML syscall table. */ | 14 | * Below you can see, in terms of #define's, the differences between the x86-64 |
15 | * and the UML syscall table. | ||
16 | */ | ||
13 | 17 | ||
14 | /* Not going to be implemented by UML, since we have no hardware. */ | 18 | /* Not going to be implemented by UML, since we have no hardware. */ |
15 | #define stub_iopl sys_ni_syscall | 19 | #define stub_iopl sys_ni_syscall |
16 | #define sys_ioperm sys_ni_syscall | 20 | #define sys_ioperm sys_ni_syscall |
17 | 21 | ||
18 | /* The UML TLS problem. Note that x86_64 does not implement this, so the below | 22 | /* |
19 | * is needed only for the ia32 compatibility. */ | 23 | * The UML TLS problem. Note that x86_64 does not implement this, so the below |
20 | /*#define sys_set_thread_area sys_ni_syscall | 24 | * is needed only for the ia32 compatibility. |
21 | #define sys_get_thread_area sys_ni_syscall*/ | 25 | */ |
22 | 26 | ||
23 | /* On UML we call it this way ("old" means it's not mmap2) */ | 27 | /* On UML we call it this way ("old" means it's not mmap2) */ |
24 | #define sys_mmap old_mmap | 28 | #define sys_mmap old_mmap |
25 | /* On x86-64 sys_uname is actually sys_newuname plus a compatibility trick. | 29 | /* |
26 | * See arch/x86_64/kernel/sys_x86_64.c */ | 30 | * On x86-64 sys_uname is actually sys_newuname plus a compatibility trick. |
31 | * See arch/x86_64/kernel/sys_x86_64.c | ||
32 | */ | ||
27 | #define sys_uname sys_uname64 | 33 | #define sys_uname sys_uname64 |
28 | 34 | ||
29 | #define stub_clone sys_clone | 35 | #define stub_clone sys_clone |
@@ -46,8 +52,19 @@ typedef void (*sys_call_ptr_t)(void); | |||
46 | 52 | ||
47 | extern void sys_ni_syscall(void); | 53 | extern void sys_ni_syscall(void); |
48 | 54 | ||
49 | sys_call_ptr_t sys_call_table[UM_NR_syscall_max+1] __cacheline_aligned = { | 55 | /* |
50 | /* Smells like a like a compiler bug -- it doesn't work when the & below is removed. */ | 56 | * We used to have a trick here which made sure that holes in the |
51 | [0 ... UM_NR_syscall_max] = &sys_ni_syscall, | 57 | * x86_64 table were filled in with sys_ni_syscall, but a comment in |
58 | * unistd_64.h says that holes aren't allowed, so the trick was | ||
59 | * removed. | ||
60 | * The trick looked like this | ||
61 | * [0 ... UM_NR_syscall_max] = &sys_ni_syscall | ||
62 | * before including unistd_64.h - the later initializations overwrote | ||
63 | * the sys_ni_syscall filler. | ||
64 | */ | ||
65 | |||
66 | sys_call_ptr_t sys_call_table[] __cacheline_aligned = { | ||
52 | #include <asm-x86/unistd_64.h> | 67 | #include <asm-x86/unistd_64.h> |
53 | }; | 68 | }; |
69 | |||
70 | int syscall_table_size = sizeof(sys_call_table); | ||
diff --git a/arch/um/sys-x86_64/syscalls.c b/arch/um/sys-x86_64/syscalls.c index 86f6b18410ee..f1199fd34d38 100644 --- a/arch/um/sys-x86_64/syscalls.c +++ b/arch/um/sys-x86_64/syscalls.c | |||
@@ -48,7 +48,9 @@ long arch_prctl(struct task_struct *task, int code, unsigned long __user *addr) | |||
48 | switch (code) { | 48 | switch (code) { |
49 | case ARCH_SET_FS: | 49 | case ARCH_SET_FS: |
50 | case ARCH_SET_GS: | 50 | case ARCH_SET_GS: |
51 | restore_registers(pid, ¤t->thread.regs.regs); | 51 | ret = restore_registers(pid, ¤t->thread.regs.regs); |
52 | if (ret) | ||
53 | return ret; | ||
52 | break; | 54 | break; |
53 | case ARCH_GET_FS: | 55 | case ARCH_GET_FS: |
54 | case ARCH_GET_GS: | 56 | case ARCH_GET_GS: |
@@ -70,10 +72,10 @@ long arch_prctl(struct task_struct *task, int code, unsigned long __user *addr) | |||
70 | switch (code) { | 72 | switch (code) { |
71 | case ARCH_SET_FS: | 73 | case ARCH_SET_FS: |
72 | current->thread.arch.fs = (unsigned long) ptr; | 74 | current->thread.arch.fs = (unsigned long) ptr; |
73 | save_registers(pid, ¤t->thread.regs.regs); | 75 | ret = save_registers(pid, ¤t->thread.regs.regs); |
74 | break; | 76 | break; |
75 | case ARCH_SET_GS: | 77 | case ARCH_SET_GS: |
76 | save_registers(pid, ¤t->thread.regs.regs); | 78 | ret = save_registers(pid, ¤t->thread.regs.regs); |
77 | break; | 79 | break; |
78 | case ARCH_GET_FS: | 80 | case ARCH_GET_FS: |
79 | ret = put_user(tmp, addr); | 81 | ret = put_user(tmp, addr); |
@@ -105,7 +107,7 @@ long sys_clone(unsigned long clone_flags, unsigned long newsp, | |||
105 | return ret; | 107 | return ret; |
106 | } | 108 | } |
107 | 109 | ||
108 | void arch_switch_to(struct task_struct *from, struct task_struct *to) | 110 | void arch_switch_to(struct task_struct *to) |
109 | { | 111 | { |
110 | if ((to->thread.arch.fs == 0) || (to->mm == NULL)) | 112 | if ((to->thread.arch.fs == 0) || (to->mm == NULL)) |
111 | return; | 113 | return; |
diff --git a/arch/um/sys-x86_64/sysrq.c b/arch/um/sys-x86_64/sysrq.c index 765444031819..f4f82beb3508 100644 --- a/arch/um/sys-x86_64/sysrq.c +++ b/arch/um/sys-x86_64/sysrq.c | |||
@@ -4,32 +4,33 @@ | |||
4 | * Licensed under the GPL | 4 | * Licensed under the GPL |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "linux/kernel.h" | 7 | #include <linux/kernel.h> |
8 | #include "linux/utsname.h" | 8 | #include <linux/module.h> |
9 | #include "linux/module.h" | 9 | #include <linux/sched.h> |
10 | #include "asm/current.h" | 10 | #include <linux/utsname.h> |
11 | #include "asm/ptrace.h" | 11 | #include <asm/current.h> |
12 | #include <asm/ptrace.h> | ||
12 | #include "sysrq.h" | 13 | #include "sysrq.h" |
13 | 14 | ||
14 | void __show_regs(struct pt_regs * regs) | 15 | void __show_regs(struct pt_regs *regs) |
15 | { | 16 | { |
16 | printk("\n"); | 17 | printk("\n"); |
17 | print_modules(); | 18 | print_modules(); |
18 | printk("Pid: %d, comm: %.20s %s %s\n", task_pid_nr(current), | 19 | printk(KERN_INFO "Pid: %d, comm: %.20s %s %s\n", task_pid_nr(current), |
19 | current->comm, print_tainted(), init_utsname()->release); | 20 | current->comm, print_tainted(), init_utsname()->release); |
20 | printk("RIP: %04lx:[<%016lx>] ", PT_REGS_CS(regs) & 0xffff, | 21 | printk(KERN_INFO "RIP: %04lx:[<%016lx>]\n", PT_REGS_CS(regs) & 0xffff, |
21 | PT_REGS_RIP(regs)); | 22 | PT_REGS_RIP(regs)); |
22 | printk("\nRSP: %016lx EFLAGS: %08lx\n", PT_REGS_RSP(regs), | 23 | printk(KERN_INFO "RSP: %016lx EFLAGS: %08lx\n", PT_REGS_RSP(regs), |
23 | PT_REGS_EFLAGS(regs)); | 24 | PT_REGS_EFLAGS(regs)); |
24 | printk("RAX: %016lx RBX: %016lx RCX: %016lx\n", | 25 | printk(KERN_INFO "RAX: %016lx RBX: %016lx RCX: %016lx\n", |
25 | PT_REGS_RAX(regs), PT_REGS_RBX(regs), PT_REGS_RCX(regs)); | 26 | PT_REGS_RAX(regs), PT_REGS_RBX(regs), PT_REGS_RCX(regs)); |
26 | printk("RDX: %016lx RSI: %016lx RDI: %016lx\n", | 27 | printk(KERN_INFO "RDX: %016lx RSI: %016lx RDI: %016lx\n", |
27 | PT_REGS_RDX(regs), PT_REGS_RSI(regs), PT_REGS_RDI(regs)); | 28 | PT_REGS_RDX(regs), PT_REGS_RSI(regs), PT_REGS_RDI(regs)); |
28 | printk("RBP: %016lx R08: %016lx R09: %016lx\n", | 29 | printk(KERN_INFO "RBP: %016lx R08: %016lx R09: %016lx\n", |
29 | PT_REGS_RBP(regs), PT_REGS_R8(regs), PT_REGS_R9(regs)); | 30 | PT_REGS_RBP(regs), PT_REGS_R8(regs), PT_REGS_R9(regs)); |
30 | printk("R10: %016lx R11: %016lx R12: %016lx\n", | 31 | printk(KERN_INFO "R10: %016lx R11: %016lx R12: %016lx\n", |
31 | PT_REGS_R10(regs), PT_REGS_R11(regs), PT_REGS_R12(regs)); | 32 | PT_REGS_R10(regs), PT_REGS_R11(regs), PT_REGS_R12(regs)); |
32 | printk("R13: %016lx R14: %016lx R15: %016lx\n", | 33 | printk(KERN_INFO "R13: %016lx R14: %016lx R15: %016lx\n", |
33 | PT_REGS_R13(regs), PT_REGS_R14(regs), PT_REGS_R15(regs)); | 34 | PT_REGS_R13(regs), PT_REGS_R14(regs), PT_REGS_R15(regs)); |
34 | } | 35 | } |
35 | 36 | ||
diff --git a/arch/um/sys-x86_64/um_module.c b/arch/um/sys-x86_64/um_module.c index 8b8eff1bd977..3dead392a415 100644 --- a/arch/um/sys-x86_64/um_module.c +++ b/arch/um/sys-x86_64/um_module.c | |||
@@ -1,7 +1,7 @@ | |||
1 | #include <linux/vmalloc.h> | 1 | #include <linux/vmalloc.h> |
2 | #include <linux/moduleloader.h> | 2 | #include <linux/moduleloader.h> |
3 | 3 | ||
4 | /*Copied from i386 arch/i386/kernel/module.c */ | 4 | /* Copied from i386 arch/i386/kernel/module.c */ |
5 | void *module_alloc(unsigned long size) | 5 | void *module_alloc(unsigned long size) |
6 | { | 6 | { |
7 | if (size == 0) | 7 | if (size == 0) |
@@ -13,7 +13,9 @@ void *module_alloc(unsigned long size) | |||
13 | void module_free(struct module *mod, void *module_region) | 13 | void module_free(struct module *mod, void *module_region) |
14 | { | 14 | { |
15 | vfree(module_region); | 15 | vfree(module_region); |
16 | /* FIXME: If module_region == mod->init_region, trim exception | 16 | /* |
17 | table entries. */ | 17 | * FIXME: If module_region == mod->init_region, trim exception |
18 | * table entries. | ||
19 | */ | ||
18 | } | 20 | } |
19 | 21 | ||
diff --git a/arch/v850/Kconfig b/arch/v850/Kconfig index b6a50b8b38de..ace479ab273f 100644 --- a/arch/v850/Kconfig +++ b/arch/v850/Kconfig | |||
@@ -331,8 +331,6 @@ source "sound/Kconfig" | |||
331 | 331 | ||
332 | source "drivers/usb/Kconfig" | 332 | source "drivers/usb/Kconfig" |
333 | 333 | ||
334 | source "kernel/Kconfig.instrumentation" | ||
335 | |||
336 | source "arch/v850/Kconfig.debug" | 334 | source "arch/v850/Kconfig.debug" |
337 | 335 | ||
338 | source "security/Kconfig" | 336 | source "security/Kconfig" |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 65b449134cf7..434821187cfc 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -18,6 +18,8 @@ config X86_64 | |||
18 | ### Arch settings | 18 | ### Arch settings |
19 | config X86 | 19 | config X86 |
20 | def_bool y | 20 | def_bool y |
21 | select HAVE_OPROFILE | ||
22 | select HAVE_KPROBES | ||
21 | 23 | ||
22 | config GENERIC_LOCKBREAK | 24 | config GENERIC_LOCKBREAK |
23 | def_bool n | 25 | def_bool n |
@@ -44,6 +46,9 @@ config LOCKDEP_SUPPORT | |||
44 | config STACKTRACE_SUPPORT | 46 | config STACKTRACE_SUPPORT |
45 | def_bool y | 47 | def_bool y |
46 | 48 | ||
49 | config HAVE_LATENCYTOP_SUPPORT | ||
50 | def_bool y | ||
51 | |||
47 | config SEMAPHORE_SLEEPERS | 52 | config SEMAPHORE_SLEEPERS |
48 | def_bool y | 53 | def_bool y |
49 | 54 | ||
@@ -103,12 +108,16 @@ config GENERIC_TIME_VSYSCALL | |||
103 | config HAVE_SETUP_PER_CPU_AREA | 108 | config HAVE_SETUP_PER_CPU_AREA |
104 | def_bool X86_64 | 109 | def_bool X86_64 |
105 | 110 | ||
106 | config ARCH_SUPPORTS_OPROFILE | ||
107 | bool | ||
108 | default y | ||
109 | |||
110 | select HAVE_KVM | 111 | select HAVE_KVM |
111 | 112 | ||
113 | config ARCH_HIBERNATION_POSSIBLE | ||
114 | def_bool y | ||
115 | depends on !SMP || !X86_VOYAGER | ||
116 | |||
117 | config ARCH_SUSPEND_POSSIBLE | ||
118 | def_bool y | ||
119 | depends on !X86_VOYAGER | ||
120 | |||
112 | config ZONE_DMA32 | 121 | config ZONE_DMA32 |
113 | bool | 122 | bool |
114 | default X86_64 | 123 | default X86_64 |
@@ -193,8 +202,7 @@ config SMP | |||
193 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power | 202 | Y to "Enhanced Real Time Clock Support", below. The "Advanced Power |
194 | Management" code will be disabled if you say Y here. | 203 | Management" code will be disabled if you say Y here. |
195 | 204 | ||
196 | See also the <file:Documentation/smp.txt>, | 205 | See also <file:Documentation/i386/IO-APIC.txt>, |
197 | <file:Documentation/i386/IO-APIC.txt>, | ||
198 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at | 206 | <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at |
199 | <http://www.tldp.org/docs.html#howto>. | 207 | <http://www.tldp.org/docs.html#howto>. |
200 | 208 | ||
@@ -298,6 +306,7 @@ config X86_RDC321X | |||
298 | select M486 | 306 | select M486 |
299 | select X86_REBOOTFIXUPS | 307 | select X86_REBOOTFIXUPS |
300 | select GENERIC_GPIO | 308 | select GENERIC_GPIO |
309 | select LEDS_CLASS | ||
301 | select LEDS_GPIO | 310 | select LEDS_GPIO |
302 | help | 311 | help |
303 | This option is needed for RDC R-321x system-on-chip, also known | 312 | This option is needed for RDC R-321x system-on-chip, also known |
@@ -456,6 +465,9 @@ config CALGARY_IOMMU_ENABLED_BY_DEFAULT | |||
456 | Calgary anyway, pass 'iommu=calgary' on the kernel command line. | 465 | Calgary anyway, pass 'iommu=calgary' on the kernel command line. |
457 | If unsure, say Y. | 466 | If unsure, say Y. |
458 | 467 | ||
468 | config IOMMU_HELPER | ||
469 | def_bool (CALGARY_IOMMU || GART_IOMMU) | ||
470 | |||
459 | # need this always selected by IOMMU for the VIA workaround | 471 | # need this always selected by IOMMU for the VIA workaround |
460 | config SWIOTLB | 472 | config SWIOTLB |
461 | bool | 473 | bool |
@@ -1366,11 +1378,6 @@ config PCI | |||
1366 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 1378 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
1367 | VESA. If you have PCI, say Y, otherwise N. | 1379 | VESA. If you have PCI, say Y, otherwise N. |
1368 | 1380 | ||
1369 | The PCI-HOWTO, available from | ||
1370 | <http://www.tldp.org/docs.html#howto>, contains valuable | ||
1371 | information about which PCI hardware does work under Linux and which | ||
1372 | doesn't. | ||
1373 | |||
1374 | choice | 1381 | choice |
1375 | prompt "PCI access mode" | 1382 | prompt "PCI access mode" |
1376 | depends on X86_32 && PCI && !X86_VISWS | 1383 | depends on X86_32 && PCI && !X86_VISWS |
@@ -1591,8 +1598,6 @@ source "drivers/firmware/Kconfig" | |||
1591 | 1598 | ||
1592 | source "fs/Kconfig" | 1599 | source "fs/Kconfig" |
1593 | 1600 | ||
1594 | source "kernel/Kconfig.instrumentation" | ||
1595 | |||
1596 | source "arch/x86/Kconfig.debug" | 1601 | source "arch/x86/Kconfig.debug" |
1597 | 1602 | ||
1598 | source "security/Kconfig" | 1603 | source "security/Kconfig" |
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index da8f4129780b..364865b1b08d 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -92,7 +92,6 @@ KBUILD_AFLAGS += $(cfi) $(cfi-sigframe) | |||
92 | KBUILD_CFLAGS += $(cfi) $(cfi-sigframe) | 92 | KBUILD_CFLAGS += $(cfi) $(cfi-sigframe) |
93 | 93 | ||
94 | LDFLAGS := -m elf_$(UTS_MACHINE) | 94 | LDFLAGS := -m elf_$(UTS_MACHINE) |
95 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S | ||
96 | 95 | ||
97 | # Speed up the build | 96 | # Speed up the build |
98 | KBUILD_CFLAGS += -pipe | 97 | KBUILD_CFLAGS += -pipe |
@@ -143,7 +142,7 @@ mcore-$(CONFIG_X86_ES7000) := arch/x86/mach-default/ | |||
143 | 142 | ||
144 | # RDC R-321x subarch support | 143 | # RDC R-321x subarch support |
145 | mflags-$(CONFIG_X86_RDC321X) := -Iinclude/asm-x86/mach-rdc321x | 144 | mflags-$(CONFIG_X86_RDC321X) := -Iinclude/asm-x86/mach-rdc321x |
146 | mcore-$(CONFIG_X86_RDC321X) := arch/x86/mach-default | 145 | mcore-$(CONFIG_X86_RDC321X) := arch/x86/mach-default/ |
147 | core-$(CONFIG_X86_RDC321X) += arch/x86/mach-rdc321x/ | 146 | core-$(CONFIG_X86_RDC321X) += arch/x86/mach-rdc321x/ |
148 | 147 | ||
149 | # default subarch .h files | 148 | # default subarch .h files |
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index 349b81a39c40..f88458e83ef0 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile | |||
@@ -26,7 +26,7 @@ SVGA_MODE := -DSVGA_MODE=NORMAL_VGA | |||
26 | #RAMDISK := -DRAMDISK=512 | 26 | #RAMDISK := -DRAMDISK=512 |
27 | 27 | ||
28 | targets := vmlinux.bin setup.bin setup.elf zImage bzImage | 28 | targets := vmlinux.bin setup.bin setup.elf zImage bzImage |
29 | subdir- := compressed | 29 | subdir- := compressed |
30 | 30 | ||
31 | setup-y += a20.o cmdline.o copy.o cpu.o cpucheck.o edd.o | 31 | setup-y += a20.o cmdline.o copy.o cpu.o cpucheck.o edd.o |
32 | setup-y += header.o main.o mca.o memory.o pm.o pmjump.o | 32 | setup-y += header.o main.o mca.o memory.o pm.o pmjump.o |
@@ -43,9 +43,17 @@ setup-y += video-vesa.o | |||
43 | setup-y += video-bios.o | 43 | setup-y += video-bios.o |
44 | 44 | ||
45 | targets += $(setup-y) | 45 | targets += $(setup-y) |
46 | hostprogs-y := tools/build | 46 | hostprogs-y := mkcpustr tools/build |
47 | 47 | ||
48 | HOSTCFLAGS_build.o := $(LINUXINCLUDE) | 48 | HOST_EXTRACFLAGS += $(LINUXINCLUDE) |
49 | |||
50 | $(obj)/cpu.o: $(obj)/cpustr.h | ||
51 | |||
52 | quiet_cmd_cpustr = CPUSTR $@ | ||
53 | cmd_cpustr = $(obj)/mkcpustr > $@ | ||
54 | targets += cpustr.h | ||
55 | $(obj)/cpustr.h: $(obj)/mkcpustr FORCE | ||
56 | $(call if_changed,cpustr) | ||
49 | 57 | ||
50 | # --------------------------------------------------------------------------- | 58 | # --------------------------------------------------------------------------- |
51 | 59 | ||
@@ -80,6 +88,7 @@ $(obj)/zImage $(obj)/bzImage: $(obj)/setup.bin \ | |||
80 | $(call if_changed,image) | 88 | $(call if_changed,image) |
81 | @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' | 89 | @echo 'Kernel: $@ is ready' ' (#'`cat .version`')' |
82 | 90 | ||
91 | OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S | ||
83 | $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE | 92 | $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE |
84 | $(call if_changed,objcopy) | 93 | $(call if_changed,objcopy) |
85 | 94 | ||
@@ -90,7 +99,6 @@ $(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE | |||
90 | $(call if_changed,ld) | 99 | $(call if_changed,ld) |
91 | 100 | ||
92 | OBJCOPYFLAGS_setup.bin := -O binary | 101 | OBJCOPYFLAGS_setup.bin := -O binary |
93 | |||
94 | $(obj)/setup.bin: $(obj)/setup.elf FORCE | 102 | $(obj)/setup.bin: $(obj)/setup.elf FORCE |
95 | $(call if_changed,objcopy) | 103 | $(call if_changed,objcopy) |
96 | 104 | ||
@@ -98,7 +106,7 @@ $(obj)/compressed/vmlinux: FORCE | |||
98 | $(Q)$(MAKE) $(build)=$(obj)/compressed IMAGE_OFFSET=$(IMAGE_OFFSET) $@ | 106 | $(Q)$(MAKE) $(build)=$(obj)/compressed IMAGE_OFFSET=$(IMAGE_OFFSET) $@ |
99 | 107 | ||
100 | # Set this if you want to pass append arguments to the zdisk/fdimage/isoimage kernel | 108 | # Set this if you want to pass append arguments to the zdisk/fdimage/isoimage kernel |
101 | FDARGS = | 109 | FDARGS = |
102 | # Set this if you want an initrd included with the zdisk/fdimage/isoimage kernel | 110 | # Set this if you want an initrd included with the zdisk/fdimage/isoimage kernel |
103 | FDINITRD = | 111 | FDINITRD = |
104 | 112 | ||
diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile index fe24ceabd909..d2b9f3bb87c0 100644 --- a/arch/x86/boot/compressed/Makefile +++ b/arch/x86/boot/compressed/Makefile | |||
@@ -22,6 +22,7 @@ $(obj)/vmlinux: $(src)/vmlinux_$(BITS).lds $(obj)/head_$(BITS).o $(obj)/misc.o $ | |||
22 | $(call if_changed,ld) | 22 | $(call if_changed,ld) |
23 | @: | 23 | @: |
24 | 24 | ||
25 | OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S | ||
25 | $(obj)/vmlinux.bin: vmlinux FORCE | 26 | $(obj)/vmlinux.bin: vmlinux FORCE |
26 | $(call if_changed,objcopy) | 27 | $(call if_changed,objcopy) |
27 | 28 | ||
diff --git a/arch/x86/boot/compressed/head_64.S b/arch/x86/boot/compressed/head_64.S index 1ccb38a7f0d2..e8657b98c902 100644 --- a/arch/x86/boot/compressed/head_64.S +++ b/arch/x86/boot/compressed/head_64.S | |||
@@ -80,8 +80,8 @@ startup_32: | |||
80 | 80 | ||
81 | #ifdef CONFIG_RELOCATABLE | 81 | #ifdef CONFIG_RELOCATABLE |
82 | movl %ebp, %ebx | 82 | movl %ebp, %ebx |
83 | addl $(LARGE_PAGE_SIZE -1), %ebx | 83 | addl $(PMD_PAGE_SIZE -1), %ebx |
84 | andl $LARGE_PAGE_MASK, %ebx | 84 | andl $PMD_PAGE_MASK, %ebx |
85 | #else | 85 | #else |
86 | movl $CONFIG_PHYSICAL_START, %ebx | 86 | movl $CONFIG_PHYSICAL_START, %ebx |
87 | #endif | 87 | #endif |
@@ -220,8 +220,8 @@ ENTRY(startup_64) | |||
220 | /* Start with the delta to where the kernel will run at. */ | 220 | /* Start with the delta to where the kernel will run at. */ |
221 | #ifdef CONFIG_RELOCATABLE | 221 | #ifdef CONFIG_RELOCATABLE |
222 | leaq startup_32(%rip) /* - $startup_32 */, %rbp | 222 | leaq startup_32(%rip) /* - $startup_32 */, %rbp |
223 | addq $(LARGE_PAGE_SIZE - 1), %rbp | 223 | addq $(PMD_PAGE_SIZE - 1), %rbp |
224 | andq $LARGE_PAGE_MASK, %rbp | 224 | andq $PMD_PAGE_MASK, %rbp |
225 | movq %rbp, %rbx | 225 | movq %rbp, %rbx |
226 | #else | 226 | #else |
227 | movq $CONFIG_PHYSICAL_START, %rbp | 227 | movq $CONFIG_PHYSICAL_START, %rbp |
diff --git a/arch/x86/boot/compressed/vmlinux_64.lds b/arch/x86/boot/compressed/vmlinux_64.lds index f6e5b445f457..7e5c7209f6cc 100644 --- a/arch/x86/boot/compressed/vmlinux_64.lds +++ b/arch/x86/boot/compressed/vmlinux_64.lds | |||
@@ -3,7 +3,7 @@ OUTPUT_ARCH(i386:x86-64) | |||
3 | ENTRY(startup_64) | 3 | ENTRY(startup_64) |
4 | SECTIONS | 4 | SECTIONS |
5 | { | 5 | { |
6 | /* Be careful parts of head_64.S assume startup_64 is at | 6 | /* Be careful parts of head_64.S assume startup_32 is at |
7 | * address 0. | 7 | * address 0. |
8 | */ | 8 | */ |
9 | . = 0; | 9 | . = 0; |
diff --git a/arch/x86/boot/cpu.c b/arch/x86/boot/cpu.c index 2a5c32da5852..00e19edd852c 100644 --- a/arch/x86/boot/cpu.c +++ b/arch/x86/boot/cpu.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* -*- linux-c -*- ------------------------------------------------------- * | 1 | /* -*- linux-c -*- ------------------------------------------------------- * |
2 | * | 2 | * |
3 | * Copyright (C) 1991, 1992 Linus Torvalds | 3 | * Copyright (C) 1991, 1992 Linus Torvalds |
4 | * Copyright 2007 rPath, Inc. - All Rights Reserved | 4 | * Copyright 2007-2008 rPath, Inc. - All Rights Reserved |
5 | * | 5 | * |
6 | * This file is part of the Linux kernel, and is made available under | 6 | * This file is part of the Linux kernel, and is made available under |
7 | * the terms of the GNU General Public License version 2. | 7 | * the terms of the GNU General Public License version 2. |
@@ -9,7 +9,7 @@ | |||
9 | * ----------------------------------------------------------------------- */ | 9 | * ----------------------------------------------------------------------- */ |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * arch/i386/boot/cpu.c | 12 | * arch/x86/boot/cpu.c |
13 | * | 13 | * |
14 | * Check for obligatory CPU features and abort if the features are not | 14 | * Check for obligatory CPU features and abort if the features are not |
15 | * present. | 15 | * present. |
@@ -19,6 +19,8 @@ | |||
19 | #include "bitops.h" | 19 | #include "bitops.h" |
20 | #include <asm/cpufeature.h> | 20 | #include <asm/cpufeature.h> |
21 | 21 | ||
22 | #include "cpustr.h" | ||
23 | |||
22 | static char *cpu_name(int level) | 24 | static char *cpu_name(int level) |
23 | { | 25 | { |
24 | static char buf[6]; | 26 | static char buf[6]; |
@@ -35,6 +37,7 @@ int validate_cpu(void) | |||
35 | { | 37 | { |
36 | u32 *err_flags; | 38 | u32 *err_flags; |
37 | int cpu_level, req_level; | 39 | int cpu_level, req_level; |
40 | const unsigned char *msg_strs; | ||
38 | 41 | ||
39 | check_cpu(&cpu_level, &req_level, &err_flags); | 42 | check_cpu(&cpu_level, &req_level, &err_flags); |
40 | 43 | ||
@@ -51,13 +54,26 @@ int validate_cpu(void) | |||
51 | puts("This kernel requires the following features " | 54 | puts("This kernel requires the following features " |
52 | "not present on the CPU:\n"); | 55 | "not present on the CPU:\n"); |
53 | 56 | ||
57 | msg_strs = (const unsigned char *)x86_cap_strs; | ||
58 | |||
54 | for (i = 0; i < NCAPINTS; i++) { | 59 | for (i = 0; i < NCAPINTS; i++) { |
55 | u32 e = err_flags[i]; | 60 | u32 e = err_flags[i]; |
56 | 61 | ||
57 | for (j = 0; j < 32; j++) { | 62 | for (j = 0; j < 32; j++) { |
58 | if (e & 1) | 63 | int n = (i << 5)+j; |
59 | printf("%d:%d ", i, j); | 64 | if (*msg_strs < n) { |
60 | 65 | /* Skip to the next string */ | |
66 | do { | ||
67 | msg_strs++; | ||
68 | } while (*msg_strs); | ||
69 | msg_strs++; | ||
70 | } | ||
71 | if (e & 1) { | ||
72 | if (*msg_strs == n && msg_strs[1]) | ||
73 | printf("%s ", msg_strs+1); | ||
74 | else | ||
75 | printf("%d:%d ", i, j); | ||
76 | } | ||
61 | e >>= 1; | 77 | e >>= 1; |
62 | } | 78 | } |
63 | } | 79 | } |
diff --git a/arch/x86/boot/mkcpustr.c b/arch/x86/boot/mkcpustr.c new file mode 100644 index 000000000000..bbe76953bae9 --- /dev/null +++ b/arch/x86/boot/mkcpustr.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /* ----------------------------------------------------------------------- * | ||
2 | * | ||
3 | * Copyright 2008 rPath, Inc. - All Rights Reserved | ||
4 | * | ||
5 | * This file is part of the Linux kernel, and is made available under | ||
6 | * the terms of the GNU General Public License version 2 or (at your | ||
7 | * option) any later version; incorporated herein by reference. | ||
8 | * | ||
9 | * ----------------------------------------------------------------------- */ | ||
10 | |||
11 | /* | ||
12 | * This is a host program to preprocess the CPU strings into a | ||
13 | * compact format suitable for the setup code. | ||
14 | */ | ||
15 | |||
16 | #include <stdio.h> | ||
17 | |||
18 | #include "../kernel/cpu/feature_names.c" | ||
19 | |||
20 | #if NCAPFLAGS > 8 | ||
21 | # error "Need to adjust the boot code handling of CPUID strings" | ||
22 | #endif | ||
23 | |||
24 | int main(void) | ||
25 | { | ||
26 | int i; | ||
27 | const char *str; | ||
28 | |||
29 | printf("static const char x86_cap_strs[] = \n"); | ||
30 | |||
31 | for (i = 0; i < NCAPINTS*32; i++) { | ||
32 | str = x86_cap_flags[i]; | ||
33 | |||
34 | if (i == NCAPINTS*32-1) { | ||
35 | /* The last entry must be unconditional; this | ||
36 | also consumes the compiler-added null character */ | ||
37 | if (!str) | ||
38 | str = ""; | ||
39 | printf("\t\"\\x%02x\"\"%s\"\n", i, str); | ||
40 | } else if (str) { | ||
41 | printf("#if REQUIRED_MASK%d & (1 << %d)\n" | ||
42 | "\t\"\\x%02x\"\"%s\\0\"\n" | ||
43 | "#endif\n", | ||
44 | i >> 5, i & 31, i, str); | ||
45 | } | ||
46 | } | ||
47 | printf("\t;\n"); | ||
48 | return 0; | ||
49 | } | ||
diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S index 0db0a6291bbd..8022d3c695c0 100644 --- a/arch/x86/ia32/ia32entry.S +++ b/arch/x86/ia32/ia32entry.S | |||
@@ -722,7 +722,9 @@ ia32_sys_call_table: | |||
722 | .quad sys_epoll_pwait | 722 | .quad sys_epoll_pwait |
723 | .quad compat_sys_utimensat /* 320 */ | 723 | .quad compat_sys_utimensat /* 320 */ |
724 | .quad compat_sys_signalfd | 724 | .quad compat_sys_signalfd |
725 | .quad compat_sys_timerfd | 725 | .quad sys_timerfd_create |
726 | .quad sys_eventfd | 726 | .quad sys_eventfd |
727 | .quad sys32_fallocate | 727 | .quad sys32_fallocate |
728 | .quad compat_sys_timerfd_settime /* 325 */ | ||
729 | .quad compat_sys_timerfd_gettime | ||
728 | ia32_syscall_end: | 730 | ia32_syscall_end: |
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 6f813009d44b..21dc1a061bf1 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
@@ -37,7 +37,8 @@ obj-$(CONFIG_X86_MSR) += msr.o | |||
37 | obj-$(CONFIG_X86_CPUID) += cpuid.o | 37 | obj-$(CONFIG_X86_CPUID) += cpuid.o |
38 | obj-$(CONFIG_MICROCODE) += microcode.o | 38 | obj-$(CONFIG_MICROCODE) += microcode.o |
39 | obj-$(CONFIG_PCI) += early-quirks.o | 39 | obj-$(CONFIG_PCI) += early-quirks.o |
40 | obj-$(CONFIG_APM) += apm_32.o | 40 | apm-y := apm_32.o |
41 | obj-$(CONFIG_APM) += apm.o | ||
41 | obj-$(CONFIG_X86_SMP) += smp_$(BITS).o smpboot_$(BITS).o tsc_sync.o | 42 | obj-$(CONFIG_X86_SMP) += smp_$(BITS).o smpboot_$(BITS).o tsc_sync.o |
42 | obj-$(CONFIG_X86_32_SMP) += smpcommon_32.o | 43 | obj-$(CONFIG_X86_32_SMP) += smpcommon_32.o |
43 | obj-$(CONFIG_X86_64_SMP) += smp_64.o smpboot_64.o tsc_sync.o | 44 | obj-$(CONFIG_X86_64_SMP) += smp_64.o smpboot_64.o tsc_sync.o |
@@ -74,7 +75,8 @@ ifdef CONFIG_INPUT_PCSPKR | |||
74 | obj-y += pcspeaker.o | 75 | obj-y += pcspeaker.o |
75 | endif | 76 | endif |
76 | 77 | ||
77 | obj-$(CONFIG_SCx200) += scx200_32.o | 78 | obj-$(CONFIG_SCx200) += scx200.o |
79 | scx200-y += scx200_32.o | ||
78 | 80 | ||
79 | ### | 81 | ### |
80 | # 64 bit specific files | 82 | # 64 bit specific files |
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 0ca27c7b0e8d..d2a58431a074 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -496,7 +496,8 @@ EXPORT_SYMBOL(acpi_register_gsi); | |||
496 | * ACPI based hotplug support for CPU | 496 | * ACPI based hotplug support for CPU |
497 | */ | 497 | */ |
498 | #ifdef CONFIG_ACPI_HOTPLUG_CPU | 498 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
499 | int acpi_map_lsapic(acpi_handle handle, int *pcpu) | 499 | |
500 | static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu) | ||
500 | { | 501 | { |
501 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 502 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
502 | union acpi_object *obj; | 503 | union acpi_object *obj; |
@@ -551,6 +552,11 @@ int acpi_map_lsapic(acpi_handle handle, int *pcpu) | |||
551 | return 0; | 552 | return 0; |
552 | } | 553 | } |
553 | 554 | ||
555 | /* wrapper to silence section mismatch warning */ | ||
556 | int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu) | ||
557 | { | ||
558 | return _acpi_map_lsapic(handle, pcpu); | ||
559 | } | ||
554 | EXPORT_SYMBOL(acpi_map_lsapic); | 560 | EXPORT_SYMBOL(acpi_map_lsapic); |
555 | 561 | ||
556 | int acpi_unmap_lsapic(int cpu) | 562 | int acpi_unmap_lsapic(int cpu) |
diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile index cfdb2f3bd763..a0c4d7c5dbd7 100644 --- a/arch/x86/kernel/cpu/Makefile +++ b/arch/x86/kernel/cpu/Makefile | |||
@@ -3,6 +3,7 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := intel_cacheinfo.o addon_cpuid_features.o | 5 | obj-y := intel_cacheinfo.o addon_cpuid_features.o |
6 | obj-y += feature_names.o | ||
6 | 7 | ||
7 | obj-$(CONFIG_X86_32) += common.o proc.o bugs.o | 8 | obj-$(CONFIG_X86_32) += common.o proc.o bugs.o |
8 | obj-$(CONFIG_X86_32) += amd.o | 9 | obj-$(CONFIG_X86_32) += amd.o |
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 06fa159232fd..693e353999cd 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c | |||
@@ -304,7 +304,7 @@ static void __cpuinit init_amd(struct cpuinfo_x86 *c) | |||
304 | if (c->x86 < 6) | 304 | if (c->x86 < 6) |
305 | clear_bit(X86_FEATURE_MCE, c->x86_capability); | 305 | clear_bit(X86_FEATURE_MCE, c->x86_capability); |
306 | 306 | ||
307 | if (cpu_has_xmm) | 307 | if (cpu_has_xmm2) |
308 | set_bit(X86_FEATURE_MFENCE_RDTSC, c->x86_capability); | 308 | set_bit(X86_FEATURE_MFENCE_RDTSC, c->x86_capability); |
309 | } | 309 | } |
310 | 310 | ||
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index db28aa9e2f69..d9313d9adced 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -258,10 +258,10 @@ static int __cpuinit have_cpuid_p(void) | |||
258 | void __init cpu_detect(struct cpuinfo_x86 *c) | 258 | void __init cpu_detect(struct cpuinfo_x86 *c) |
259 | { | 259 | { |
260 | /* Get vendor name */ | 260 | /* Get vendor name */ |
261 | cpuid(0x00000000, &c->cpuid_level, | 261 | cpuid(0x00000000, (unsigned int *)&c->cpuid_level, |
262 | (int *)&c->x86_vendor_id[0], | 262 | (unsigned int *)&c->x86_vendor_id[0], |
263 | (int *)&c->x86_vendor_id[8], | 263 | (unsigned int *)&c->x86_vendor_id[8], |
264 | (int *)&c->x86_vendor_id[4]); | 264 | (unsigned int *)&c->x86_vendor_id[4]); |
265 | 265 | ||
266 | c->x86 = 4; | 266 | c->x86 = 4; |
267 | if (c->cpuid_level >= 0x00000001) { | 267 | if (c->cpuid_level >= 0x00000001) { |
@@ -274,14 +274,16 @@ void __init cpu_detect(struct cpuinfo_x86 *c) | |||
274 | if (c->x86 >= 0x6) | 274 | if (c->x86 >= 0x6) |
275 | c->x86_model += ((tfms >> 16) & 0xF) << 4; | 275 | c->x86_model += ((tfms >> 16) & 0xF) << 4; |
276 | c->x86_mask = tfms & 15; | 276 | c->x86_mask = tfms & 15; |
277 | if (cap0 & (1<<19)) | 277 | if (cap0 & (1<<19)) { |
278 | c->x86_cache_alignment = ((misc >> 8) & 0xff) * 8; | 278 | c->x86_cache_alignment = ((misc >> 8) & 0xff) * 8; |
279 | c->x86_clflush_size = ((misc >> 8) & 0xff) * 8; | ||
280 | } | ||
279 | } | 281 | } |
280 | } | 282 | } |
281 | static void __cpuinit early_get_cap(struct cpuinfo_x86 *c) | 283 | static void __cpuinit early_get_cap(struct cpuinfo_x86 *c) |
282 | { | 284 | { |
283 | u32 tfms, xlvl; | 285 | u32 tfms, xlvl; |
284 | int ebx; | 286 | unsigned int ebx; |
285 | 287 | ||
286 | memset(&c->x86_capability, 0, sizeof c->x86_capability); | 288 | memset(&c->x86_capability, 0, sizeof c->x86_capability); |
287 | if (have_cpuid_p()) { | 289 | if (have_cpuid_p()) { |
@@ -317,6 +319,7 @@ static void __init early_cpu_detect(void) | |||
317 | struct cpuinfo_x86 *c = &boot_cpu_data; | 319 | struct cpuinfo_x86 *c = &boot_cpu_data; |
318 | 320 | ||
319 | c->x86_cache_alignment = 32; | 321 | c->x86_cache_alignment = 32; |
322 | c->x86_clflush_size = 32; | ||
320 | 323 | ||
321 | if (!have_cpuid_p()) | 324 | if (!have_cpuid_p()) |
322 | return; | 325 | return; |
@@ -340,14 +343,14 @@ static void __init early_cpu_detect(void) | |||
340 | static void __cpuinit generic_identify(struct cpuinfo_x86 * c) | 343 | static void __cpuinit generic_identify(struct cpuinfo_x86 * c) |
341 | { | 344 | { |
342 | u32 tfms, xlvl; | 345 | u32 tfms, xlvl; |
343 | int ebx; | 346 | unsigned int ebx; |
344 | 347 | ||
345 | if (have_cpuid_p()) { | 348 | if (have_cpuid_p()) { |
346 | /* Get vendor name */ | 349 | /* Get vendor name */ |
347 | cpuid(0x00000000, &c->cpuid_level, | 350 | cpuid(0x00000000, (unsigned int *)&c->cpuid_level, |
348 | (int *)&c->x86_vendor_id[0], | 351 | (unsigned int *)&c->x86_vendor_id[0], |
349 | (int *)&c->x86_vendor_id[8], | 352 | (unsigned int *)&c->x86_vendor_id[8], |
350 | (int *)&c->x86_vendor_id[4]); | 353 | (unsigned int *)&c->x86_vendor_id[4]); |
351 | 354 | ||
352 | get_cpu_vendor(c, 0); | 355 | get_cpu_vendor(c, 0); |
353 | /* Initialize the standard set of capabilities */ | 356 | /* Initialize the standard set of capabilities */ |
@@ -620,16 +623,6 @@ cpumask_t cpu_initialized __cpuinitdata = CPU_MASK_NONE; | |||
620 | * They will insert themselves into the cpu_devs structure. | 623 | * They will insert themselves into the cpu_devs structure. |
621 | * Then, when cpu_init() is called, we can just iterate over that array. | 624 | * Then, when cpu_init() is called, we can just iterate over that array. |
622 | */ | 625 | */ |
623 | |||
624 | extern int intel_cpu_init(void); | ||
625 | extern int cyrix_init_cpu(void); | ||
626 | extern int nsc_init_cpu(void); | ||
627 | extern int amd_init_cpu(void); | ||
628 | extern int centaur_init_cpu(void); | ||
629 | extern int transmeta_init_cpu(void); | ||
630 | extern int nexgen_init_cpu(void); | ||
631 | extern int umc_init_cpu(void); | ||
632 | |||
633 | void __init early_cpu_init(void) | 626 | void __init early_cpu_init(void) |
634 | { | 627 | { |
635 | intel_cpu_init(); | 628 | intel_cpu_init(); |
diff --git a/arch/x86/kernel/cpu/cpu.h b/arch/x86/kernel/cpu/cpu.h index ad6527a5beb1..e0b38c33d842 100644 --- a/arch/x86/kernel/cpu/cpu.h +++ b/arch/x86/kernel/cpu/cpu.h | |||
@@ -27,3 +27,12 @@ extern void display_cacheinfo(struct cpuinfo_x86 *c); | |||
27 | extern void early_init_intel(struct cpuinfo_x86 *c); | 27 | extern void early_init_intel(struct cpuinfo_x86 *c); |
28 | extern void early_init_amd(struct cpuinfo_x86 *c); | 28 | extern void early_init_amd(struct cpuinfo_x86 *c); |
29 | 29 | ||
30 | /* Specific CPU type init functions */ | ||
31 | int intel_cpu_init(void); | ||
32 | int amd_init_cpu(void); | ||
33 | int cyrix_init_cpu(void); | ||
34 | int nsc_init_cpu(void); | ||
35 | int centaur_init_cpu(void); | ||
36 | int transmeta_init_cpu(void); | ||
37 | int nexgen_init_cpu(void); | ||
38 | int umc_init_cpu(void); | ||
diff --git a/arch/x86/kernel/cpu/feature_names.c b/arch/x86/kernel/cpu/feature_names.c new file mode 100644 index 000000000000..ee975ac6bbcb --- /dev/null +++ b/arch/x86/kernel/cpu/feature_names.c | |||
@@ -0,0 +1,83 @@ | |||
1 | /* | ||
2 | * Strings for the various x86 capability flags. | ||
3 | * | ||
4 | * This file must not contain any executable code. | ||
5 | */ | ||
6 | |||
7 | #include "asm/cpufeature.h" | ||
8 | |||
9 | /* | ||
10 | * These flag bits must match the definitions in <asm/cpufeature.h>. | ||
11 | * NULL means this bit is undefined or reserved; either way it doesn't | ||
12 | * have meaning as far as Linux is concerned. Note that it's important | ||
13 | * to realize there is a difference between this table and CPUID -- if | ||
14 | * applications want to get the raw CPUID data, they should access | ||
15 | * /dev/cpu/<cpu_nr>/cpuid instead. | ||
16 | */ | ||
17 | const char * const x86_cap_flags[NCAPINTS*32] = { | ||
18 | /* Intel-defined */ | ||
19 | "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", | ||
20 | "cx8", "apic", NULL, "sep", "mtrr", "pge", "mca", "cmov", | ||
21 | "pat", "pse36", "pn", "clflush", NULL, "dts", "acpi", "mmx", | ||
22 | "fxsr", "sse", "sse2", "ss", "ht", "tm", "ia64", "pbe", | ||
23 | |||
24 | /* AMD-defined */ | ||
25 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
26 | NULL, NULL, NULL, "syscall", NULL, NULL, NULL, NULL, | ||
27 | NULL, NULL, NULL, "mp", "nx", NULL, "mmxext", NULL, | ||
28 | NULL, "fxsr_opt", "pdpe1gb", "rdtscp", NULL, "lm", | ||
29 | "3dnowext", "3dnow", | ||
30 | |||
31 | /* Transmeta-defined */ | ||
32 | "recovery", "longrun", NULL, "lrti", NULL, NULL, NULL, NULL, | ||
33 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
34 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
35 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
36 | |||
37 | /* Other (Linux-defined) */ | ||
38 | "cxmmx", "k6_mtrr", "cyrix_arr", "centaur_mcr", | ||
39 | NULL, NULL, NULL, NULL, | ||
40 | "constant_tsc", "up", NULL, "arch_perfmon", | ||
41 | "pebs", "bts", NULL, NULL, | ||
42 | "rep_good", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
43 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
44 | |||
45 | /* Intel-defined (#2) */ | ||
46 | "pni", NULL, NULL, "monitor", "ds_cpl", "vmx", "smx", "est", | ||
47 | "tm2", "ssse3", "cid", NULL, NULL, "cx16", "xtpr", NULL, | ||
48 | NULL, NULL, "dca", "sse4_1", "sse4_2", NULL, NULL, "popcnt", | ||
49 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
50 | |||
51 | /* VIA/Cyrix/Centaur-defined */ | ||
52 | NULL, NULL, "rng", "rng_en", NULL, NULL, "ace", "ace_en", | ||
53 | "ace2", "ace2_en", "phe", "phe_en", "pmm", "pmm_en", NULL, NULL, | ||
54 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
55 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
56 | |||
57 | /* AMD-defined (#2) */ | ||
58 | "lahf_lm", "cmp_legacy", "svm", "extapic", | ||
59 | "cr8_legacy", "abm", "sse4a", "misalignsse", | ||
60 | "3dnowprefetch", "osvw", "ibs", "sse5", | ||
61 | "skinit", "wdt", NULL, NULL, | ||
62 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
63 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
64 | |||
65 | /* Auxiliary (Linux-defined) */ | ||
66 | "ida", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
67 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
68 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
69 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
70 | }; | ||
71 | |||
72 | const char *const x86_power_flags[32] = { | ||
73 | "ts", /* temperature sensor */ | ||
74 | "fid", /* frequency id control */ | ||
75 | "vid", /* voltage id control */ | ||
76 | "ttp", /* thermal trip */ | ||
77 | "tm", | ||
78 | "stc", | ||
79 | "100mhzsteps", | ||
80 | "hwpstate", | ||
81 | "", /* tsc invariant mapped to constant_tsc */ | ||
82 | /* nothing */ | ||
83 | }; | ||
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c index d1c372b018db..fae31ce747bd 100644 --- a/arch/x86/kernel/cpu/intel.c +++ b/arch/x86/kernel/cpu/intel.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <asm/uaccess.h> | 13 | #include <asm/uaccess.h> |
14 | #include <asm/ptrace.h> | 14 | #include <asm/ptrace.h> |
15 | #include <asm/ds.h> | 15 | #include <asm/ds.h> |
16 | #include <asm/bugs.h> | ||
16 | 17 | ||
17 | #include "cpu.h" | 18 | #include "cpu.h" |
18 | 19 | ||
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c index 8b4507b8469b..1b889860eb73 100644 --- a/arch/x86/kernel/cpu/intel_cacheinfo.c +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c | |||
@@ -352,8 +352,8 @@ unsigned int __cpuinit init_intel_cacheinfo(struct cpuinfo_x86 *c) | |||
352 | */ | 352 | */ |
353 | if ((num_cache_leaves == 0 || c->x86 == 15) && c->cpuid_level > 1) { | 353 | if ((num_cache_leaves == 0 || c->x86 == 15) && c->cpuid_level > 1) { |
354 | /* supports eax=2 call */ | 354 | /* supports eax=2 call */ |
355 | int i, j, n; | 355 | int j, n; |
356 | int regs[4]; | 356 | unsigned int regs[4]; |
357 | unsigned char *dp = (unsigned char *)regs; | 357 | unsigned char *dp = (unsigned char *)regs; |
358 | int only_trace = 0; | 358 | int only_trace = 0; |
359 | 359 | ||
@@ -368,7 +368,7 @@ unsigned int __cpuinit init_intel_cacheinfo(struct cpuinfo_x86 *c) | |||
368 | 368 | ||
369 | /* If bit 31 is set, this is an unknown format */ | 369 | /* If bit 31 is set, this is an unknown format */ |
370 | for ( j = 0 ; j < 3 ; j++ ) { | 370 | for ( j = 0 ; j < 3 ; j++ ) { |
371 | if ( regs[j] < 0 ) regs[j] = 0; | 371 | if (regs[j] & (1 << 31)) regs[j] = 0; |
372 | } | 372 | } |
373 | 373 | ||
374 | /* Byte 0 is level count, not a descriptor */ | 374 | /* Byte 0 is level count, not a descriptor */ |
diff --git a/arch/x86/kernel/cpu/mtrr/cyrix.c b/arch/x86/kernel/cpu/mtrr/cyrix.c index 8e139c70f888..ff14c320040c 100644 --- a/arch/x86/kernel/cpu/mtrr/cyrix.c +++ b/arch/x86/kernel/cpu/mtrr/cyrix.c | |||
@@ -7,8 +7,6 @@ | |||
7 | #include <asm/processor-flags.h> | 7 | #include <asm/processor-flags.h> |
8 | #include "mtrr.h" | 8 | #include "mtrr.h" |
9 | 9 | ||
10 | int arr3_protected; | ||
11 | |||
12 | static void | 10 | static void |
13 | cyrix_get_arr(unsigned int reg, unsigned long *base, | 11 | cyrix_get_arr(unsigned int reg, unsigned long *base, |
14 | unsigned long *size, mtrr_type * type) | 12 | unsigned long *size, mtrr_type * type) |
@@ -99,8 +97,6 @@ cyrix_get_free_region(unsigned long base, unsigned long size, int replace_reg) | |||
99 | case 4: | 97 | case 4: |
100 | return replace_reg; | 98 | return replace_reg; |
101 | case 3: | 99 | case 3: |
102 | if (arr3_protected) | ||
103 | break; | ||
104 | case 2: | 100 | case 2: |
105 | case 1: | 101 | case 1: |
106 | case 0: | 102 | case 0: |
@@ -115,8 +111,6 @@ cyrix_get_free_region(unsigned long base, unsigned long size, int replace_reg) | |||
115 | } else { | 111 | } else { |
116 | for (i = 0; i < 7; i++) { | 112 | for (i = 0; i < 7; i++) { |
117 | cyrix_get_arr(i, &lbase, &lsize, <ype); | 113 | cyrix_get_arr(i, &lbase, &lsize, <ype); |
118 | if ((i == 3) && arr3_protected) | ||
119 | continue; | ||
120 | if (lsize == 0) | 114 | if (lsize == 0) |
121 | return i; | 115 | return i; |
122 | } | 116 | } |
@@ -260,107 +254,6 @@ static void cyrix_set_all(void) | |||
260 | post_set(); | 254 | post_set(); |
261 | } | 255 | } |
262 | 256 | ||
263 | #if 0 | ||
264 | /* | ||
265 | * On Cyrix 6x86(MX) and M II the ARR3 is special: it has connection | ||
266 | * with the SMM (System Management Mode) mode. So we need the following: | ||
267 | * Check whether SMI_LOCK (CCR3 bit 0) is set | ||
268 | * if it is set, write a warning message: ARR3 cannot be changed! | ||
269 | * (it cannot be changed until the next processor reset) | ||
270 | * if it is reset, then we can change it, set all the needed bits: | ||
271 | * - disable access to SMM memory through ARR3 range (CCR1 bit 7 reset) | ||
272 | * - disable access to SMM memory (CCR1 bit 2 reset) | ||
273 | * - disable SMM mode (CCR1 bit 1 reset) | ||
274 | * - disable write protection of ARR3 (CCR6 bit 1 reset) | ||
275 | * - (maybe) disable ARR3 | ||
276 | * Just to be sure, we enable ARR usage by the processor (CCR5 bit 5 set) | ||
277 | */ | ||
278 | static void __init | ||
279 | cyrix_arr_init(void) | ||
280 | { | ||
281 | struct set_mtrr_context ctxt; | ||
282 | unsigned char ccr[7]; | ||
283 | int ccrc[7] = { 0, 0, 0, 0, 0, 0, 0 }; | ||
284 | #ifdef CONFIG_SMP | ||
285 | int i; | ||
286 | #endif | ||
287 | |||
288 | /* flush cache and enable MAPEN */ | ||
289 | set_mtrr_prepare_save(&ctxt); | ||
290 | set_mtrr_cache_disable(&ctxt); | ||
291 | |||
292 | /* Save all CCRs locally */ | ||
293 | ccr[0] = getCx86(CX86_CCR0); | ||
294 | ccr[1] = getCx86(CX86_CCR1); | ||
295 | ccr[2] = getCx86(CX86_CCR2); | ||
296 | ccr[3] = ctxt.ccr3; | ||
297 | ccr[4] = getCx86(CX86_CCR4); | ||
298 | ccr[5] = getCx86(CX86_CCR5); | ||
299 | ccr[6] = getCx86(CX86_CCR6); | ||
300 | |||
301 | if (ccr[3] & 1) { | ||
302 | ccrc[3] = 1; | ||
303 | arr3_protected = 1; | ||
304 | } else { | ||
305 | /* Disable SMM mode (bit 1), access to SMM memory (bit 2) and | ||
306 | * access to SMM memory through ARR3 (bit 7). | ||
307 | */ | ||
308 | if (ccr[1] & 0x80) { | ||
309 | ccr[1] &= 0x7f; | ||
310 | ccrc[1] |= 0x80; | ||
311 | } | ||
312 | if (ccr[1] & 0x04) { | ||
313 | ccr[1] &= 0xfb; | ||
314 | ccrc[1] |= 0x04; | ||
315 | } | ||
316 | if (ccr[1] & 0x02) { | ||
317 | ccr[1] &= 0xfd; | ||
318 | ccrc[1] |= 0x02; | ||
319 | } | ||
320 | arr3_protected = 0; | ||
321 | if (ccr[6] & 0x02) { | ||
322 | ccr[6] &= 0xfd; | ||
323 | ccrc[6] = 1; /* Disable write protection of ARR3 */ | ||
324 | setCx86(CX86_CCR6, ccr[6]); | ||
325 | } | ||
326 | /* Disable ARR3. This is safe now that we disabled SMM. */ | ||
327 | /* cyrix_set_arr_up (3, 0, 0, 0, FALSE); */ | ||
328 | } | ||
329 | /* If we changed CCR1 in memory, change it in the processor, too. */ | ||
330 | if (ccrc[1]) | ||
331 | setCx86(CX86_CCR1, ccr[1]); | ||
332 | |||
333 | /* Enable ARR usage by the processor */ | ||
334 | if (!(ccr[5] & 0x20)) { | ||
335 | ccr[5] |= 0x20; | ||
336 | ccrc[5] = 1; | ||
337 | setCx86(CX86_CCR5, ccr[5]); | ||
338 | } | ||
339 | #ifdef CONFIG_SMP | ||
340 | for (i = 0; i < 7; i++) | ||
341 | ccr_state[i] = ccr[i]; | ||
342 | for (i = 0; i < 8; i++) | ||
343 | cyrix_get_arr(i, | ||
344 | &arr_state[i].base, &arr_state[i].size, | ||
345 | &arr_state[i].type); | ||
346 | #endif | ||
347 | |||
348 | set_mtrr_done(&ctxt); /* flush cache and disable MAPEN */ | ||
349 | |||
350 | if (ccrc[5]) | ||
351 | printk(KERN_INFO "mtrr: ARR usage was not enabled, enabled manually\n"); | ||
352 | if (ccrc[3]) | ||
353 | printk(KERN_INFO "mtrr: ARR3 cannot be changed\n"); | ||
354 | /* | ||
355 | if ( ccrc[1] & 0x80) printk ("mtrr: SMM memory access through ARR3 disabled\n"); | ||
356 | if ( ccrc[1] & 0x04) printk ("mtrr: SMM memory access disabled\n"); | ||
357 | if ( ccrc[1] & 0x02) printk ("mtrr: SMM mode disabled\n"); | ||
358 | */ | ||
359 | if (ccrc[6]) | ||
360 | printk(KERN_INFO "mtrr: ARR3 was write protected, unprotected\n"); | ||
361 | } | ||
362 | #endif | ||
363 | |||
364 | static struct mtrr_ops cyrix_mtrr_ops = { | 257 | static struct mtrr_ops cyrix_mtrr_ops = { |
365 | .vendor = X86_VENDOR_CYRIX, | 258 | .vendor = X86_VENDOR_CYRIX, |
366 | // .init = cyrix_arr_init, | 259 | // .init = cyrix_arr_init, |
diff --git a/arch/x86/kernel/cpu/mtrr/main.c b/arch/x86/kernel/cpu/mtrr/main.c index 715919582657..1e27b69a7a0e 100644 --- a/arch/x86/kernel/cpu/mtrr/main.c +++ b/arch/x86/kernel/cpu/mtrr/main.c | |||
@@ -59,12 +59,6 @@ struct mtrr_ops * mtrr_if = NULL; | |||
59 | static void set_mtrr(unsigned int reg, unsigned long base, | 59 | static void set_mtrr(unsigned int reg, unsigned long base, |
60 | unsigned long size, mtrr_type type); | 60 | unsigned long size, mtrr_type type); |
61 | 61 | ||
62 | #ifndef CONFIG_X86_64 | ||
63 | extern int arr3_protected; | ||
64 | #else | ||
65 | #define arr3_protected 0 | ||
66 | #endif | ||
67 | |||
68 | void set_mtrr_ops(struct mtrr_ops * ops) | 62 | void set_mtrr_ops(struct mtrr_ops * ops) |
69 | { | 63 | { |
70 | if (ops->vendor && ops->vendor < X86_VENDOR_NUM) | 64 | if (ops->vendor && ops->vendor < X86_VENDOR_NUM) |
@@ -513,12 +507,6 @@ int mtrr_del_page(int reg, unsigned long base, unsigned long size) | |||
513 | printk(KERN_WARNING "mtrr: register: %d too big\n", reg); | 507 | printk(KERN_WARNING "mtrr: register: %d too big\n", reg); |
514 | goto out; | 508 | goto out; |
515 | } | 509 | } |
516 | if (is_cpu(CYRIX) && !use_intel()) { | ||
517 | if ((reg == 3) && arr3_protected) { | ||
518 | printk(KERN_WARNING "mtrr: ARR3 cannot be changed\n"); | ||
519 | goto out; | ||
520 | } | ||
521 | } | ||
522 | mtrr_if->get(reg, &lbase, &lsize, <ype); | 510 | mtrr_if->get(reg, &lbase, &lsize, <ype); |
523 | if (lsize < 1) { | 511 | if (lsize < 1) { |
524 | printk(KERN_WARNING "mtrr: MTRR %d not used\n", reg); | 512 | printk(KERN_WARNING "mtrr: MTRR %d not used\n", reg); |
@@ -566,10 +554,6 @@ EXPORT_SYMBOL(mtrr_del); | |||
566 | * These should be called implicitly, but we can't yet until all the initcall | 554 | * These should be called implicitly, but we can't yet until all the initcall |
567 | * stuff is done... | 555 | * stuff is done... |
568 | */ | 556 | */ |
569 | extern void amd_init_mtrr(void); | ||
570 | extern void cyrix_init_mtrr(void); | ||
571 | extern void centaur_init_mtrr(void); | ||
572 | |||
573 | static void __init init_ifs(void) | 557 | static void __init init_ifs(void) |
574 | { | 558 | { |
575 | #ifndef CONFIG_X86_64 | 559 | #ifndef CONFIG_X86_64 |
diff --git a/arch/x86/kernel/cpu/mtrr/mtrr.h b/arch/x86/kernel/cpu/mtrr/mtrr.h index fb74a2c20814..2cc77eb6fea3 100644 --- a/arch/x86/kernel/cpu/mtrr/mtrr.h +++ b/arch/x86/kernel/cpu/mtrr/mtrr.h | |||
@@ -97,3 +97,7 @@ void mtrr_state_warn(void); | |||
97 | const char *mtrr_attrib_to_str(int x); | 97 | const char *mtrr_attrib_to_str(int x); |
98 | void mtrr_wrmsr(unsigned, unsigned, unsigned); | 98 | void mtrr_wrmsr(unsigned, unsigned, unsigned); |
99 | 99 | ||
100 | /* CPU specific mtrr init functions */ | ||
101 | int amd_init_mtrr(void); | ||
102 | int cyrix_init_mtrr(void); | ||
103 | int centaur_init_mtrr(void); | ||
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index 028213260148..af11d31dce0a 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c | |||
@@ -10,80 +10,6 @@ | |||
10 | */ | 10 | */ |
11 | static int show_cpuinfo(struct seq_file *m, void *v) | 11 | static int show_cpuinfo(struct seq_file *m, void *v) |
12 | { | 12 | { |
13 | /* | ||
14 | * These flag bits must match the definitions in <asm/cpufeature.h>. | ||
15 | * NULL means this bit is undefined or reserved; either way it doesn't | ||
16 | * have meaning as far as Linux is concerned. Note that it's important | ||
17 | * to realize there is a difference between this table and CPUID -- if | ||
18 | * applications want to get the raw CPUID data, they should access | ||
19 | * /dev/cpu/<cpu_nr>/cpuid instead. | ||
20 | */ | ||
21 | static const char * const x86_cap_flags[] = { | ||
22 | /* Intel-defined */ | ||
23 | "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", | ||
24 | "cx8", "apic", NULL, "sep", "mtrr", "pge", "mca", "cmov", | ||
25 | "pat", "pse36", "pn", "clflush", NULL, "dts", "acpi", "mmx", | ||
26 | "fxsr", "sse", "sse2", "ss", "ht", "tm", "ia64", "pbe", | ||
27 | |||
28 | /* AMD-defined */ | ||
29 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
30 | NULL, NULL, NULL, "syscall", NULL, NULL, NULL, NULL, | ||
31 | NULL, NULL, NULL, "mp", "nx", NULL, "mmxext", NULL, | ||
32 | NULL, "fxsr_opt", "pdpe1gb", "rdtscp", NULL, "lm", | ||
33 | "3dnowext", "3dnow", | ||
34 | |||
35 | /* Transmeta-defined */ | ||
36 | "recovery", "longrun", NULL, "lrti", NULL, NULL, NULL, NULL, | ||
37 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
38 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
39 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
40 | |||
41 | /* Other (Linux-defined) */ | ||
42 | "cxmmx", "k6_mtrr", "cyrix_arr", "centaur_mcr", | ||
43 | NULL, NULL, NULL, NULL, | ||
44 | "constant_tsc", "up", NULL, "arch_perfmon", | ||
45 | "pebs", "bts", NULL, "sync_rdtsc", | ||
46 | "rep_good", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
47 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
48 | |||
49 | /* Intel-defined (#2) */ | ||
50 | "pni", NULL, NULL, "monitor", "ds_cpl", "vmx", "smx", "est", | ||
51 | "tm2", "ssse3", "cid", NULL, NULL, "cx16", "xtpr", NULL, | ||
52 | NULL, NULL, "dca", "sse4_1", "sse4_2", NULL, NULL, "popcnt", | ||
53 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
54 | |||
55 | /* VIA/Cyrix/Centaur-defined */ | ||
56 | NULL, NULL, "rng", "rng_en", NULL, NULL, "ace", "ace_en", | ||
57 | "ace2", "ace2_en", "phe", "phe_en", "pmm", "pmm_en", NULL, NULL, | ||
58 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
59 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
60 | |||
61 | /* AMD-defined (#2) */ | ||
62 | "lahf_lm", "cmp_legacy", "svm", "extapic", | ||
63 | "cr8_legacy", "abm", "sse4a", "misalignsse", | ||
64 | "3dnowprefetch", "osvw", "ibs", "sse5", | ||
65 | "skinit", "wdt", NULL, NULL, | ||
66 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
67 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
68 | |||
69 | /* Auxiliary (Linux-defined) */ | ||
70 | "ida", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
71 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
72 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
73 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
74 | }; | ||
75 | static const char * const x86_power_flags[] = { | ||
76 | "ts", /* temperature sensor */ | ||
77 | "fid", /* frequency id control */ | ||
78 | "vid", /* voltage id control */ | ||
79 | "ttp", /* thermal trip */ | ||
80 | "tm", | ||
81 | "stc", | ||
82 | "100mhzsteps", | ||
83 | "hwpstate", | ||
84 | "", /* constant_tsc - moved to flags */ | ||
85 | /* nothing */ | ||
86 | }; | ||
87 | struct cpuinfo_x86 *c = v; | 13 | struct cpuinfo_x86 *c = v; |
88 | int i, n = 0; | 14 | int i, n = 0; |
89 | int fpu_exception; | 15 | int fpu_exception; |
diff --git a/arch/x86/kernel/cpuid.c b/arch/x86/kernel/cpuid.c index dec66e452810..288e7a6598ac 100644 --- a/arch/x86/kernel/cpuid.c +++ b/arch/x86/kernel/cpuid.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* ----------------------------------------------------------------------- * | 1 | /* ----------------------------------------------------------------------- * |
2 | * | 2 | * |
3 | * Copyright 2000 H. Peter Anvin - All Rights Reserved | 3 | * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -17,6 +17,10 @@ | |||
17 | * and then read in chunks of 16 bytes. A larger size means multiple | 17 | * and then read in chunks of 16 bytes. A larger size means multiple |
18 | * reads of consecutive levels. | 18 | * reads of consecutive levels. |
19 | * | 19 | * |
20 | * The lower 32 bits of the file position is used as the incoming %eax, | ||
21 | * and the upper 32 bits of the file position as the incoming %ecx, | ||
22 | * the latter intended for "counting" eax levels like eax=4. | ||
23 | * | ||
20 | * This driver uses /dev/cpu/%d/cpuid where %d is the minor number, and on | 24 | * This driver uses /dev/cpu/%d/cpuid where %d is the minor number, and on |
21 | * an SMP box will direct the access to CPU %d. | 25 | * an SMP box will direct the access to CPU %d. |
22 | */ | 26 | */ |
@@ -43,35 +47,24 @@ | |||
43 | 47 | ||
44 | static struct class *cpuid_class; | 48 | static struct class *cpuid_class; |
45 | 49 | ||
46 | struct cpuid_command { | 50 | struct cpuid_regs { |
47 | u32 reg; | 51 | u32 eax, ebx, ecx, edx; |
48 | u32 *data; | ||
49 | }; | 52 | }; |
50 | 53 | ||
51 | static void cpuid_smp_cpuid(void *cmd_block) | 54 | static void cpuid_smp_cpuid(void *cmd_block) |
52 | { | 55 | { |
53 | struct cpuid_command *cmd = cmd_block; | 56 | struct cpuid_regs *cmd = (struct cpuid_regs *)cmd_block; |
54 | |||
55 | cpuid(cmd->reg, &cmd->data[0], &cmd->data[1], &cmd->data[2], | ||
56 | &cmd->data[3]); | ||
57 | } | ||
58 | |||
59 | static inline void do_cpuid(int cpu, u32 reg, u32 * data) | ||
60 | { | ||
61 | struct cpuid_command cmd; | ||
62 | |||
63 | cmd.reg = reg; | ||
64 | cmd.data = data; | ||
65 | 57 | ||
66 | smp_call_function_single(cpu, cpuid_smp_cpuid, &cmd, 1, 1); | 58 | cpuid_count(cmd->eax, cmd->ecx, |
59 | &cmd->eax, &cmd->ebx, &cmd->ecx, &cmd->edx); | ||
67 | } | 60 | } |
68 | 61 | ||
69 | static loff_t cpuid_seek(struct file *file, loff_t offset, int orig) | 62 | static loff_t cpuid_seek(struct file *file, loff_t offset, int orig) |
70 | { | 63 | { |
71 | loff_t ret; | 64 | loff_t ret; |
65 | struct inode *inode = file->f_mapping->host; | ||
72 | 66 | ||
73 | lock_kernel(); | 67 | mutex_lock(&inode->i_mutex); |
74 | |||
75 | switch (orig) { | 68 | switch (orig) { |
76 | case 0: | 69 | case 0: |
77 | file->f_pos = offset; | 70 | file->f_pos = offset; |
@@ -84,8 +77,7 @@ static loff_t cpuid_seek(struct file *file, loff_t offset, int orig) | |||
84 | default: | 77 | default: |
85 | ret = -EINVAL; | 78 | ret = -EINVAL; |
86 | } | 79 | } |
87 | 80 | mutex_unlock(&inode->i_mutex); | |
88 | unlock_kernel(); | ||
89 | return ret; | 81 | return ret; |
90 | } | 82 | } |
91 | 83 | ||
@@ -93,19 +85,21 @@ static ssize_t cpuid_read(struct file *file, char __user *buf, | |||
93 | size_t count, loff_t * ppos) | 85 | size_t count, loff_t * ppos) |
94 | { | 86 | { |
95 | char __user *tmp = buf; | 87 | char __user *tmp = buf; |
96 | u32 data[4]; | 88 | struct cpuid_regs cmd; |
97 | u32 reg = *ppos; | ||
98 | int cpu = iminor(file->f_path.dentry->d_inode); | 89 | int cpu = iminor(file->f_path.dentry->d_inode); |
90 | u64 pos = *ppos; | ||
99 | 91 | ||
100 | if (count % 16) | 92 | if (count % 16) |
101 | return -EINVAL; /* Invalid chunk size */ | 93 | return -EINVAL; /* Invalid chunk size */ |
102 | 94 | ||
103 | for (; count; count -= 16) { | 95 | for (; count; count -= 16) { |
104 | do_cpuid(cpu, reg, data); | 96 | cmd.eax = pos; |
105 | if (copy_to_user(tmp, &data, 16)) | 97 | cmd.ecx = pos >> 32; |
98 | smp_call_function_single(cpu, cpuid_smp_cpuid, &cmd, 1, 1); | ||
99 | if (copy_to_user(tmp, &cmd, 16)) | ||
106 | return -EFAULT; | 100 | return -EFAULT; |
107 | tmp += 16; | 101 | tmp += 16; |
108 | *ppos = reg++; | 102 | *ppos = ++pos; |
109 | } | 103 | } |
110 | 104 | ||
111 | return tmp - buf; | 105 | return tmp - buf; |
@@ -170,7 +164,7 @@ static int __cpuinit cpuid_class_cpu_callback(struct notifier_block *nfb, | |||
170 | return err ? NOTIFY_BAD : NOTIFY_OK; | 164 | return err ? NOTIFY_BAD : NOTIFY_OK; |
171 | } | 165 | } |
172 | 166 | ||
173 | static struct notifier_block __cpuinitdata cpuid_class_cpu_notifier = | 167 | static struct notifier_block __refdata cpuid_class_cpu_notifier = |
174 | { | 168 | { |
175 | .notifier_call = cpuid_class_cpu_callback, | 169 | .notifier_call = cpuid_class_cpu_callback, |
176 | }; | 170 | }; |
@@ -193,7 +187,7 @@ static int __init cpuid_init(void) | |||
193 | } | 187 | } |
194 | for_each_online_cpu(i) { | 188 | for_each_online_cpu(i) { |
195 | err = cpuid_device_create(i); | 189 | err = cpuid_device_create(i); |
196 | if (err != 0) | 190 | if (err != 0) |
197 | goto out_class; | 191 | goto out_class; |
198 | } | 192 | } |
199 | register_hotcpu_notifier(&cpuid_class_cpu_notifier); | 193 | register_hotcpu_notifier(&cpuid_class_cpu_notifier); |
@@ -208,7 +202,7 @@ out_class: | |||
208 | } | 202 | } |
209 | class_destroy(cpuid_class); | 203 | class_destroy(cpuid_class); |
210 | out_chrdev: | 204 | out_chrdev: |
211 | unregister_chrdev(CPUID_MAJOR, "cpu/cpuid"); | 205 | unregister_chrdev(CPUID_MAJOR, "cpu/cpuid"); |
212 | out: | 206 | out: |
213 | return err; | 207 | return err; |
214 | } | 208 | } |
diff --git a/arch/x86/kernel/ds.c b/arch/x86/kernel/ds.c index 1c5ca4d18787..dcd918c1580d 100644 --- a/arch/x86/kernel/ds.c +++ b/arch/x86/kernel/ds.c | |||
@@ -223,7 +223,7 @@ int ds_free(void **dsp) | |||
223 | if (*dsp) | 223 | if (*dsp) |
224 | kfree((void *)get_bts_buffer_base(*dsp)); | 224 | kfree((void *)get_bts_buffer_base(*dsp)); |
225 | kfree(*dsp); | 225 | kfree(*dsp); |
226 | *dsp = 0; | 226 | *dsp = NULL; |
227 | 227 | ||
228 | return 0; | 228 | return 0; |
229 | } | 229 | } |
diff --git a/arch/x86/kernel/e820_64.c b/arch/x86/kernel/e820_64.c index c617174e8963..9f65b4cc323c 100644 --- a/arch/x86/kernel/e820_64.c +++ b/arch/x86/kernel/e820_64.c | |||
@@ -54,30 +54,33 @@ static unsigned long __initdata end_user_pfn = MAXMEM>>PAGE_SHIFT; | |||
54 | 54 | ||
55 | struct early_res { | 55 | struct early_res { |
56 | unsigned long start, end; | 56 | unsigned long start, end; |
57 | char name[16]; | ||
57 | }; | 58 | }; |
58 | static struct early_res early_res[MAX_EARLY_RES] __initdata = { | 59 | static struct early_res early_res[MAX_EARLY_RES] __initdata = { |
59 | { 0, PAGE_SIZE }, /* BIOS data page */ | 60 | { 0, PAGE_SIZE, "BIOS data page" }, /* BIOS data page */ |
60 | #ifdef CONFIG_SMP | 61 | #ifdef CONFIG_SMP |
61 | { SMP_TRAMPOLINE_BASE, SMP_TRAMPOLINE_BASE + 2*PAGE_SIZE }, | 62 | { SMP_TRAMPOLINE_BASE, SMP_TRAMPOLINE_BASE + 2*PAGE_SIZE, "SMP_TRAMPOLINE" }, |
62 | #endif | 63 | #endif |
63 | {} | 64 | {} |
64 | }; | 65 | }; |
65 | 66 | ||
66 | void __init reserve_early(unsigned long start, unsigned long end) | 67 | void __init reserve_early(unsigned long start, unsigned long end, char *name) |
67 | { | 68 | { |
68 | int i; | 69 | int i; |
69 | struct early_res *r; | 70 | struct early_res *r; |
70 | for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) { | 71 | for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) { |
71 | r = &early_res[i]; | 72 | r = &early_res[i]; |
72 | if (end > r->start && start < r->end) | 73 | if (end > r->start && start < r->end) |
73 | panic("Overlapping early reservations %lx-%lx to %lx-%lx\n", | 74 | panic("Overlapping early reservations %lx-%lx %s to %lx-%lx %s\n", |
74 | start, end, r->start, r->end); | 75 | start, end - 1, name?name:"", r->start, r->end - 1, r->name); |
75 | } | 76 | } |
76 | if (i >= MAX_EARLY_RES) | 77 | if (i >= MAX_EARLY_RES) |
77 | panic("Too many early reservations"); | 78 | panic("Too many early reservations"); |
78 | r = &early_res[i]; | 79 | r = &early_res[i]; |
79 | r->start = start; | 80 | r->start = start; |
80 | r->end = end; | 81 | r->end = end; |
82 | if (name) | ||
83 | strncpy(r->name, name, sizeof(r->name) - 1); | ||
81 | } | 84 | } |
82 | 85 | ||
83 | void __init early_res_to_bootmem(void) | 86 | void __init early_res_to_bootmem(void) |
@@ -85,6 +88,8 @@ void __init early_res_to_bootmem(void) | |||
85 | int i; | 88 | int i; |
86 | for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) { | 89 | for (i = 0; i < MAX_EARLY_RES && early_res[i].end; i++) { |
87 | struct early_res *r = &early_res[i]; | 90 | struct early_res *r = &early_res[i]; |
91 | printk(KERN_INFO "early res: %d [%lx-%lx] %s\n", i, | ||
92 | r->start, r->end - 1, r->name); | ||
88 | reserve_bootmem_generic(r->start, r->end - r->start); | 93 | reserve_bootmem_generic(r->start, r->end - r->start); |
89 | } | 94 | } |
90 | } | 95 | } |
@@ -166,12 +171,13 @@ int __init e820_all_mapped(unsigned long start, unsigned long end, | |||
166 | } | 171 | } |
167 | 172 | ||
168 | /* | 173 | /* |
169 | * Find a free area in a specific range. | 174 | * Find a free area with specified alignment in a specific range. |
170 | */ | 175 | */ |
171 | unsigned long __init find_e820_area(unsigned long start, unsigned long end, | 176 | unsigned long __init find_e820_area(unsigned long start, unsigned long end, |
172 | unsigned size) | 177 | unsigned size, unsigned long align) |
173 | { | 178 | { |
174 | int i; | 179 | int i; |
180 | unsigned long mask = ~(align - 1); | ||
175 | 181 | ||
176 | for (i = 0; i < e820.nr_map; i++) { | 182 | for (i = 0; i < e820.nr_map; i++) { |
177 | struct e820entry *ei = &e820.map[i]; | 183 | struct e820entry *ei = &e820.map[i]; |
@@ -185,7 +191,8 @@ unsigned long __init find_e820_area(unsigned long start, unsigned long end, | |||
185 | continue; | 191 | continue; |
186 | while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size) | 192 | while (bad_addr(&addr, size) && addr+size <= ei->addr+ei->size) |
187 | ; | 193 | ; |
188 | last = PAGE_ALIGN(addr) + size; | 194 | addr = (addr + align - 1) & mask; |
195 | last = addr + size; | ||
189 | if (last > ei->addr + ei->size) | 196 | if (last > ei->addr + ei->size) |
190 | continue; | 197 | continue; |
191 | if (last > end) | 198 | if (last > end) |
diff --git a/arch/x86/kernel/early_printk.c b/arch/x86/kernel/early_printk.c index b7d6c23f2871..cff84cd9987f 100644 --- a/arch/x86/kernel/early_printk.c +++ b/arch/x86/kernel/early_printk.c | |||
@@ -193,7 +193,7 @@ static struct console simnow_console = { | |||
193 | }; | 193 | }; |
194 | 194 | ||
195 | /* Direct interface for emergencies */ | 195 | /* Direct interface for emergencies */ |
196 | struct console *early_console = &early_vga_console; | 196 | static struct console *early_console = &early_vga_console; |
197 | static int early_console_initialized = 0; | 197 | static int early_console_initialized = 0; |
198 | 198 | ||
199 | void early_printk(const char *fmt, ...) | 199 | void early_printk(const char *fmt, ...) |
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index 1411324a625c..32dd62b36ff7 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
@@ -379,11 +379,9 @@ void __init efi_init(void) | |||
379 | #endif | 379 | #endif |
380 | } | 380 | } |
381 | 381 | ||
382 | #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE) | ||
383 | static void __init runtime_code_page_mkexec(void) | 382 | static void __init runtime_code_page_mkexec(void) |
384 | { | 383 | { |
385 | efi_memory_desc_t *md; | 384 | efi_memory_desc_t *md; |
386 | unsigned long end; | ||
387 | void *p; | 385 | void *p; |
388 | 386 | ||
389 | if (!(__supported_pte_mask & _PAGE_NX)) | 387 | if (!(__supported_pte_mask & _PAGE_NX)) |
@@ -392,18 +390,13 @@ static void __init runtime_code_page_mkexec(void) | |||
392 | /* Make EFI runtime service code area executable */ | 390 | /* Make EFI runtime service code area executable */ |
393 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { | 391 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
394 | md = p; | 392 | md = p; |
395 | end = md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT); | 393 | |
396 | if (md->type == EFI_RUNTIME_SERVICES_CODE && | 394 | if (md->type != EFI_RUNTIME_SERVICES_CODE) |
397 | (end >> PAGE_SHIFT) <= max_pfn_mapped) { | 395 | continue; |
398 | set_memory_x(md->virt_addr, md->num_pages); | 396 | |
399 | set_memory_uc(md->virt_addr, md->num_pages); | 397 | set_memory_x(md->virt_addr, md->num_pages << EFI_PAGE_SHIFT); |
400 | } | ||
401 | } | 398 | } |
402 | __flush_tlb_all(); | ||
403 | } | 399 | } |
404 | #else | ||
405 | static inline void __init runtime_code_page_mkexec(void) { } | ||
406 | #endif | ||
407 | 400 | ||
408 | /* | 401 | /* |
409 | * This function will switch the EFI runtime services to virtual mode. | 402 | * This function will switch the EFI runtime services to virtual mode. |
@@ -417,30 +410,40 @@ void __init efi_enter_virtual_mode(void) | |||
417 | { | 410 | { |
418 | efi_memory_desc_t *md; | 411 | efi_memory_desc_t *md; |
419 | efi_status_t status; | 412 | efi_status_t status; |
420 | unsigned long end; | 413 | unsigned long size; |
421 | void *p; | 414 | u64 end, systab; |
415 | void *p, *va; | ||
422 | 416 | ||
423 | efi.systab = NULL; | 417 | efi.systab = NULL; |
424 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { | 418 | for (p = memmap.map; p < memmap.map_end; p += memmap.desc_size) { |
425 | md = p; | 419 | md = p; |
426 | if (!(md->attribute & EFI_MEMORY_RUNTIME)) | 420 | if (!(md->attribute & EFI_MEMORY_RUNTIME)) |
427 | continue; | 421 | continue; |
428 | end = md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT); | 422 | |
429 | if ((md->attribute & EFI_MEMORY_WB) && | 423 | size = md->num_pages << EFI_PAGE_SHIFT; |
430 | ((end >> PAGE_SHIFT) <= max_pfn_mapped)) | 424 | end = md->phys_addr + size; |
431 | md->virt_addr = (unsigned long)__va(md->phys_addr); | 425 | |
426 | if ((end >> PAGE_SHIFT) <= max_pfn_mapped) | ||
427 | va = __va(md->phys_addr); | ||
432 | else | 428 | else |
433 | md->virt_addr = (unsigned long) | 429 | va = efi_ioremap(md->phys_addr, size); |
434 | efi_ioremap(md->phys_addr, | 430 | |
435 | md->num_pages << EFI_PAGE_SHIFT); | 431 | if (md->attribute & EFI_MEMORY_WB) |
436 | if (!md->virt_addr) | 432 | set_memory_uc(md->virt_addr, size); |
433 | |||
434 | md->virt_addr = (u64) (unsigned long) va; | ||
435 | |||
436 | if (!va) { | ||
437 | printk(KERN_ERR PFX "ioremap of 0x%llX failed!\n", | 437 | printk(KERN_ERR PFX "ioremap of 0x%llX failed!\n", |
438 | (unsigned long long)md->phys_addr); | 438 | (unsigned long long)md->phys_addr); |
439 | if ((md->phys_addr <= (unsigned long)efi_phys.systab) && | 439 | continue; |
440 | ((unsigned long)efi_phys.systab < end)) | 440 | } |
441 | efi.systab = (efi_system_table_t *)(unsigned long) | 441 | |
442 | (md->virt_addr - md->phys_addr + | 442 | systab = (u64) (unsigned long) efi_phys.systab; |
443 | (unsigned long)efi_phys.systab); | 443 | if (md->phys_addr <= systab && systab < end) { |
444 | systab += md->virt_addr - md->phys_addr; | ||
445 | efi.systab = (efi_system_table_t *) (unsigned long) systab; | ||
446 | } | ||
444 | } | 447 | } |
445 | 448 | ||
446 | BUG_ON(!efi.systab); | 449 | BUG_ON(!efi.systab); |
diff --git a/arch/x86/kernel/efi_64.c b/arch/x86/kernel/efi_64.c index 4b73992c1e11..09d5c2330934 100644 --- a/arch/x86/kernel/efi_64.c +++ b/arch/x86/kernel/efi_64.c | |||
@@ -44,7 +44,7 @@ static void __init early_mapping_set_exec(unsigned long start, | |||
44 | int executable) | 44 | int executable) |
45 | { | 45 | { |
46 | pte_t *kpte; | 46 | pte_t *kpte; |
47 | int level; | 47 | unsigned int level; |
48 | 48 | ||
49 | while (start < end) { | 49 | while (start < end) { |
50 | kpte = lookup_address((unsigned long)__va(start), &level); | 50 | kpte = lookup_address((unsigned long)__va(start), &level); |
@@ -54,10 +54,10 @@ static void __init early_mapping_set_exec(unsigned long start, | |||
54 | else | 54 | else |
55 | set_pte(kpte, __pte((pte_val(*kpte) | _PAGE_NX) & \ | 55 | set_pte(kpte, __pte((pte_val(*kpte) | _PAGE_NX) & \ |
56 | __supported_pte_mask)); | 56 | __supported_pte_mask)); |
57 | if (level == 4) | 57 | if (level == PG_LEVEL_4K) |
58 | start = (start + PMD_SIZE) & PMD_MASK; | ||
59 | else | ||
60 | start = (start + PAGE_SIZE) & PAGE_MASK; | 58 | start = (start + PAGE_SIZE) & PAGE_MASK; |
59 | else | ||
60 | start = (start + PMD_SIZE) & PMD_MASK; | ||
61 | } | 61 | } |
62 | } | 62 | } |
63 | 63 | ||
@@ -109,23 +109,23 @@ void __init efi_reserve_bootmem(void) | |||
109 | memmap.nr_map * memmap.desc_size); | 109 | memmap.nr_map * memmap.desc_size); |
110 | } | 110 | } |
111 | 111 | ||
112 | void __iomem * __init efi_ioremap(unsigned long offset, | 112 | void __iomem * __init efi_ioremap(unsigned long phys_addr, unsigned long size) |
113 | unsigned long size) | ||
114 | { | 113 | { |
115 | static unsigned pages_mapped; | 114 | static unsigned pages_mapped; |
116 | unsigned long last_addr; | ||
117 | unsigned i, pages; | 115 | unsigned i, pages; |
118 | 116 | ||
119 | last_addr = offset + size - 1; | 117 | /* phys_addr and size must be page aligned */ |
120 | offset &= PAGE_MASK; | 118 | if ((phys_addr & ~PAGE_MASK) || (size & ~PAGE_MASK)) |
121 | pages = (PAGE_ALIGN(last_addr) - offset) >> PAGE_SHIFT; | 119 | return NULL; |
120 | |||
121 | pages = size >> PAGE_SHIFT; | ||
122 | if (pages_mapped + pages > MAX_EFI_IO_PAGES) | 122 | if (pages_mapped + pages > MAX_EFI_IO_PAGES) |
123 | return NULL; | 123 | return NULL; |
124 | 124 | ||
125 | for (i = 0; i < pages; i++) { | 125 | for (i = 0; i < pages; i++) { |
126 | __set_fixmap(FIX_EFI_IO_MAP_FIRST_PAGE - pages_mapped, | 126 | __set_fixmap(FIX_EFI_IO_MAP_FIRST_PAGE - pages_mapped, |
127 | offset, PAGE_KERNEL_EXEC_NOCACHE); | 127 | phys_addr, PAGE_KERNEL); |
128 | offset += PAGE_SIZE; | 128 | phys_addr += PAGE_SIZE; |
129 | pages_mapped++; | 129 | pages_mapped++; |
130 | } | 130 | } |
131 | 131 | ||
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index a317336cdeaa..24dbf56928d7 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c | |||
@@ -75,7 +75,7 @@ static __init void reserve_ebda(void) | |||
75 | if (ebda_size > 64*1024) | 75 | if (ebda_size > 64*1024) |
76 | ebda_size = 64*1024; | 76 | ebda_size = 64*1024; |
77 | 77 | ||
78 | reserve_early(ebda_addr, ebda_addr + ebda_size); | 78 | reserve_early(ebda_addr, ebda_addr + ebda_size, "EBDA"); |
79 | } | 79 | } |
80 | 80 | ||
81 | void __init x86_64_start_kernel(char * real_mode_data) | 81 | void __init x86_64_start_kernel(char * real_mode_data) |
@@ -105,14 +105,14 @@ void __init x86_64_start_kernel(char * real_mode_data) | |||
105 | pda_init(0); | 105 | pda_init(0); |
106 | copy_bootdata(__va(real_mode_data)); | 106 | copy_bootdata(__va(real_mode_data)); |
107 | 107 | ||
108 | reserve_early(__pa_symbol(&_text), __pa_symbol(&_end)); | 108 | reserve_early(__pa_symbol(&_text), __pa_symbol(&_end), "TEXT DATA BSS"); |
109 | 109 | ||
110 | /* Reserve INITRD */ | 110 | /* Reserve INITRD */ |
111 | if (boot_params.hdr.type_of_loader && boot_params.hdr.ramdisk_image) { | 111 | if (boot_params.hdr.type_of_loader && boot_params.hdr.ramdisk_image) { |
112 | unsigned long ramdisk_image = boot_params.hdr.ramdisk_image; | 112 | unsigned long ramdisk_image = boot_params.hdr.ramdisk_image; |
113 | unsigned long ramdisk_size = boot_params.hdr.ramdisk_size; | 113 | unsigned long ramdisk_size = boot_params.hdr.ramdisk_size; |
114 | unsigned long ramdisk_end = ramdisk_image + ramdisk_size; | 114 | unsigned long ramdisk_end = ramdisk_image + ramdisk_size; |
115 | reserve_early(ramdisk_image, ramdisk_end); | 115 | reserve_early(ramdisk_image, ramdisk_end, "RAMDISK"); |
116 | } | 116 | } |
117 | 117 | ||
118 | reserve_ebda(); | 118 | reserve_ebda(); |
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S index 1d5a7a361200..4f283ad215ec 100644 --- a/arch/x86/kernel/head_64.S +++ b/arch/x86/kernel/head_64.S | |||
@@ -63,7 +63,7 @@ startup_64: | |||
63 | 63 | ||
64 | /* Is the address not 2M aligned? */ | 64 | /* Is the address not 2M aligned? */ |
65 | movq %rbp, %rax | 65 | movq %rbp, %rax |
66 | andl $~LARGE_PAGE_MASK, %eax | 66 | andl $~PMD_PAGE_MASK, %eax |
67 | testl %eax, %eax | 67 | testl %eax, %eax |
68 | jnz bad_address | 68 | jnz bad_address |
69 | 69 | ||
@@ -88,7 +88,7 @@ startup_64: | |||
88 | 88 | ||
89 | /* Add an Identity mapping if I am above 1G */ | 89 | /* Add an Identity mapping if I am above 1G */ |
90 | leaq _text(%rip), %rdi | 90 | leaq _text(%rip), %rdi |
91 | andq $LARGE_PAGE_MASK, %rdi | 91 | andq $PMD_PAGE_MASK, %rdi |
92 | 92 | ||
93 | movq %rdi, %rax | 93 | movq %rdi, %rax |
94 | shrq $PUD_SHIFT, %rax | 94 | shrq $PUD_SHIFT, %rax |
diff --git a/arch/x86/kernel/ldt.c b/arch/x86/kernel/ldt.c index 8a7660c8394a..0224c3637c73 100644 --- a/arch/x86/kernel/ldt.c +++ b/arch/x86/kernel/ldt.c | |||
@@ -35,7 +35,8 @@ static int alloc_ldt(mm_context_t *pc, int mincount, int reload) | |||
35 | if (mincount <= pc->size) | 35 | if (mincount <= pc->size) |
36 | return 0; | 36 | return 0; |
37 | oldsize = pc->size; | 37 | oldsize = pc->size; |
38 | mincount = (mincount + 511) & (~511); | 38 | mincount = (mincount + (PAGE_SIZE / LDT_ENTRY_SIZE - 1)) & |
39 | (~(PAGE_SIZE / LDT_ENTRY_SIZE - 1)); | ||
39 | if (mincount * LDT_ENTRY_SIZE > PAGE_SIZE) | 40 | if (mincount * LDT_ENTRY_SIZE > PAGE_SIZE) |
40 | newldt = vmalloc(mincount * LDT_ENTRY_SIZE); | 41 | newldt = vmalloc(mincount * LDT_ENTRY_SIZE); |
41 | else | 42 | else |
diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c index 6ff447f9fda7..f2702d01b8a8 100644 --- a/arch/x86/kernel/microcode.c +++ b/arch/x86/kernel/microcode.c | |||
@@ -797,7 +797,7 @@ mc_cpu_callback(struct notifier_block *nb, unsigned long action, void *hcpu) | |||
797 | return NOTIFY_OK; | 797 | return NOTIFY_OK; |
798 | } | 798 | } |
799 | 799 | ||
800 | static struct notifier_block __cpuinitdata mc_cpu_notifier = { | 800 | static struct notifier_block __refdata mc_cpu_notifier = { |
801 | .notifier_call = mc_cpu_callback, | 801 | .notifier_call = mc_cpu_callback, |
802 | }; | 802 | }; |
803 | 803 | ||
diff --git a/arch/x86/kernel/msr.c b/arch/x86/kernel/msr.c index 21f6e3c0be18..af51ea8400b2 100644 --- a/arch/x86/kernel/msr.c +++ b/arch/x86/kernel/msr.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* ----------------------------------------------------------------------- * | 1 | /* ----------------------------------------------------------------------- * |
2 | * | 2 | * |
3 | * Copyright 2000 H. Peter Anvin - All Rights Reserved | 3 | * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -45,9 +45,10 @@ static struct class *msr_class; | |||
45 | 45 | ||
46 | static loff_t msr_seek(struct file *file, loff_t offset, int orig) | 46 | static loff_t msr_seek(struct file *file, loff_t offset, int orig) |
47 | { | 47 | { |
48 | loff_t ret = -EINVAL; | 48 | loff_t ret; |
49 | struct inode *inode = file->f_mapping->host; | ||
49 | 50 | ||
50 | lock_kernel(); | 51 | mutex_lock(&inode->i_mutex); |
51 | switch (orig) { | 52 | switch (orig) { |
52 | case 0: | 53 | case 0: |
53 | file->f_pos = offset; | 54 | file->f_pos = offset; |
@@ -56,8 +57,11 @@ static loff_t msr_seek(struct file *file, loff_t offset, int orig) | |||
56 | case 1: | 57 | case 1: |
57 | file->f_pos += offset; | 58 | file->f_pos += offset; |
58 | ret = file->f_pos; | 59 | ret = file->f_pos; |
60 | break; | ||
61 | default: | ||
62 | ret = -EINVAL; | ||
59 | } | 63 | } |
60 | unlock_kernel(); | 64 | mutex_unlock(&inode->i_mutex); |
61 | return ret; | 65 | return ret; |
62 | } | 66 | } |
63 | 67 | ||
@@ -168,7 +172,7 @@ static int __cpuinit msr_class_cpu_callback(struct notifier_block *nfb, | |||
168 | return err ? NOTIFY_BAD : NOTIFY_OK; | 172 | return err ? NOTIFY_BAD : NOTIFY_OK; |
169 | } | 173 | } |
170 | 174 | ||
171 | static struct notifier_block __cpuinitdata msr_class_cpu_notifier = { | 175 | static struct notifier_block __refdata msr_class_cpu_notifier = { |
172 | .notifier_call = msr_class_cpu_callback, | 176 | .notifier_call = msr_class_cpu_callback, |
173 | }; | 177 | }; |
174 | 178 | ||
diff --git a/arch/x86/kernel/pci-calgary_64.c b/arch/x86/kernel/pci-calgary_64.c index 21f34db2c03c..1b5464c2434f 100644 --- a/arch/x86/kernel/pci-calgary_64.c +++ b/arch/x86/kernel/pci-calgary_64.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/pci.h> | 35 | #include <linux/pci.h> |
36 | #include <linux/delay.h> | 36 | #include <linux/delay.h> |
37 | #include <linux/scatterlist.h> | 37 | #include <linux/scatterlist.h> |
38 | #include <linux/iommu-helper.h> | ||
38 | #include <asm/gart.h> | 39 | #include <asm/gart.h> |
39 | #include <asm/calgary.h> | 40 | #include <asm/calgary.h> |
40 | #include <asm/tce.h> | 41 | #include <asm/tce.h> |
@@ -260,22 +261,28 @@ static void iommu_range_reserve(struct iommu_table *tbl, | |||
260 | spin_unlock_irqrestore(&tbl->it_lock, flags); | 261 | spin_unlock_irqrestore(&tbl->it_lock, flags); |
261 | } | 262 | } |
262 | 263 | ||
263 | static unsigned long iommu_range_alloc(struct iommu_table *tbl, | 264 | static unsigned long iommu_range_alloc(struct device *dev, |
264 | unsigned int npages) | 265 | struct iommu_table *tbl, |
266 | unsigned int npages) | ||
265 | { | 267 | { |
266 | unsigned long flags; | 268 | unsigned long flags; |
267 | unsigned long offset; | 269 | unsigned long offset; |
270 | unsigned long boundary_size; | ||
271 | |||
272 | boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, | ||
273 | PAGE_SIZE) >> PAGE_SHIFT; | ||
268 | 274 | ||
269 | BUG_ON(npages == 0); | 275 | BUG_ON(npages == 0); |
270 | 276 | ||
271 | spin_lock_irqsave(&tbl->it_lock, flags); | 277 | spin_lock_irqsave(&tbl->it_lock, flags); |
272 | 278 | ||
273 | offset = find_next_zero_string(tbl->it_map, tbl->it_hint, | 279 | offset = iommu_area_alloc(tbl->it_map, tbl->it_size, tbl->it_hint, |
274 | tbl->it_size, npages); | 280 | npages, 0, boundary_size, 0); |
275 | if (offset == ~0UL) { | 281 | if (offset == ~0UL) { |
276 | tbl->chip_ops->tce_cache_blast(tbl); | 282 | tbl->chip_ops->tce_cache_blast(tbl); |
277 | offset = find_next_zero_string(tbl->it_map, 0, | 283 | |
278 | tbl->it_size, npages); | 284 | offset = iommu_area_alloc(tbl->it_map, tbl->it_size, 0, |
285 | npages, 0, boundary_size, 0); | ||
279 | if (offset == ~0UL) { | 286 | if (offset == ~0UL) { |
280 | printk(KERN_WARNING "Calgary: IOMMU full.\n"); | 287 | printk(KERN_WARNING "Calgary: IOMMU full.\n"); |
281 | spin_unlock_irqrestore(&tbl->it_lock, flags); | 288 | spin_unlock_irqrestore(&tbl->it_lock, flags); |
@@ -286,7 +293,6 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl, | |||
286 | } | 293 | } |
287 | } | 294 | } |
288 | 295 | ||
289 | set_bit_string(tbl->it_map, offset, npages); | ||
290 | tbl->it_hint = offset + npages; | 296 | tbl->it_hint = offset + npages; |
291 | BUG_ON(tbl->it_hint > tbl->it_size); | 297 | BUG_ON(tbl->it_hint > tbl->it_size); |
292 | 298 | ||
@@ -295,13 +301,13 @@ static unsigned long iommu_range_alloc(struct iommu_table *tbl, | |||
295 | return offset; | 301 | return offset; |
296 | } | 302 | } |
297 | 303 | ||
298 | static dma_addr_t iommu_alloc(struct iommu_table *tbl, void *vaddr, | 304 | static dma_addr_t iommu_alloc(struct device *dev, struct iommu_table *tbl, |
299 | unsigned int npages, int direction) | 305 | void *vaddr, unsigned int npages, int direction) |
300 | { | 306 | { |
301 | unsigned long entry; | 307 | unsigned long entry; |
302 | dma_addr_t ret = bad_dma_address; | 308 | dma_addr_t ret = bad_dma_address; |
303 | 309 | ||
304 | entry = iommu_range_alloc(tbl, npages); | 310 | entry = iommu_range_alloc(dev, tbl, npages); |
305 | 311 | ||
306 | if (unlikely(entry == bad_dma_address)) | 312 | if (unlikely(entry == bad_dma_address)) |
307 | goto error; | 313 | goto error; |
@@ -354,7 +360,7 @@ static void iommu_free(struct iommu_table *tbl, dma_addr_t dma_addr, | |||
354 | badbit, tbl, dma_addr, entry, npages); | 360 | badbit, tbl, dma_addr, entry, npages); |
355 | } | 361 | } |
356 | 362 | ||
357 | __clear_bit_string(tbl->it_map, entry, npages); | 363 | iommu_area_free(tbl->it_map, entry, npages); |
358 | 364 | ||
359 | spin_unlock_irqrestore(&tbl->it_lock, flags); | 365 | spin_unlock_irqrestore(&tbl->it_lock, flags); |
360 | } | 366 | } |
@@ -438,7 +444,7 @@ static int calgary_map_sg(struct device *dev, struct scatterlist *sg, | |||
438 | vaddr = (unsigned long) sg_virt(s); | 444 | vaddr = (unsigned long) sg_virt(s); |
439 | npages = num_dma_pages(vaddr, s->length); | 445 | npages = num_dma_pages(vaddr, s->length); |
440 | 446 | ||
441 | entry = iommu_range_alloc(tbl, npages); | 447 | entry = iommu_range_alloc(dev, tbl, npages); |
442 | if (entry == bad_dma_address) { | 448 | if (entry == bad_dma_address) { |
443 | /* makes sure unmap knows to stop */ | 449 | /* makes sure unmap knows to stop */ |
444 | s->dma_length = 0; | 450 | s->dma_length = 0; |
@@ -476,7 +482,7 @@ static dma_addr_t calgary_map_single(struct device *dev, void *vaddr, | |||
476 | npages = num_dma_pages(uaddr, size); | 482 | npages = num_dma_pages(uaddr, size); |
477 | 483 | ||
478 | if (translation_enabled(tbl)) | 484 | if (translation_enabled(tbl)) |
479 | dma_handle = iommu_alloc(tbl, vaddr, npages, direction); | 485 | dma_handle = iommu_alloc(dev, tbl, vaddr, npages, direction); |
480 | else | 486 | else |
481 | dma_handle = virt_to_bus(vaddr); | 487 | dma_handle = virt_to_bus(vaddr); |
482 | 488 | ||
@@ -516,7 +522,7 @@ static void* calgary_alloc_coherent(struct device *dev, size_t size, | |||
516 | 522 | ||
517 | if (translation_enabled(tbl)) { | 523 | if (translation_enabled(tbl)) { |
518 | /* set up tces to cover the allocated range */ | 524 | /* set up tces to cover the allocated range */ |
519 | mapping = iommu_alloc(tbl, ret, npages, DMA_BIDIRECTIONAL); | 525 | mapping = iommu_alloc(dev, tbl, ret, npages, DMA_BIDIRECTIONAL); |
520 | if (mapping == bad_dma_address) | 526 | if (mapping == bad_dma_address) |
521 | goto free; | 527 | goto free; |
522 | 528 | ||
@@ -1006,7 +1012,7 @@ static void __init calgary_set_split_completion_timeout(void __iomem *bbar, | |||
1006 | readq(target); /* flush */ | 1012 | readq(target); /* flush */ |
1007 | } | 1013 | } |
1008 | 1014 | ||
1009 | static void calioc2_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) | 1015 | static void __init calioc2_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) |
1010 | { | 1016 | { |
1011 | unsigned char busnum = dev->bus->number; | 1017 | unsigned char busnum = dev->bus->number; |
1012 | void __iomem *bbar = tbl->bbar; | 1018 | void __iomem *bbar = tbl->bbar; |
@@ -1022,7 +1028,7 @@ static void calioc2_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) | |||
1022 | writel(cpu_to_be32(val), target); | 1028 | writel(cpu_to_be32(val), target); |
1023 | } | 1029 | } |
1024 | 1030 | ||
1025 | static void calgary_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) | 1031 | static void __init calgary_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) |
1026 | { | 1032 | { |
1027 | unsigned char busnum = dev->bus->number; | 1033 | unsigned char busnum = dev->bus->number; |
1028 | 1034 | ||
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index 4d5cc7181982..65f6acb025c8 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/bitops.h> | 25 | #include <linux/bitops.h> |
26 | #include <linux/kdebug.h> | 26 | #include <linux/kdebug.h> |
27 | #include <linux/scatterlist.h> | 27 | #include <linux/scatterlist.h> |
28 | #include <linux/iommu-helper.h> | ||
28 | #include <asm/atomic.h> | 29 | #include <asm/atomic.h> |
29 | #include <asm/io.h> | 30 | #include <asm/io.h> |
30 | #include <asm/mtrr.h> | 31 | #include <asm/mtrr.h> |
@@ -82,17 +83,24 @@ AGPEXTERN __u32 *agp_gatt_table; | |||
82 | static unsigned long next_bit; /* protected by iommu_bitmap_lock */ | 83 | static unsigned long next_bit; /* protected by iommu_bitmap_lock */ |
83 | static int need_flush; /* global flush state. set for each gart wrap */ | 84 | static int need_flush; /* global flush state. set for each gart wrap */ |
84 | 85 | ||
85 | static unsigned long alloc_iommu(int size) | 86 | static unsigned long alloc_iommu(struct device *dev, int size) |
86 | { | 87 | { |
87 | unsigned long offset, flags; | 88 | unsigned long offset, flags; |
89 | unsigned long boundary_size; | ||
90 | unsigned long base_index; | ||
91 | |||
92 | base_index = ALIGN(iommu_bus_base & dma_get_seg_boundary(dev), | ||
93 | PAGE_SIZE) >> PAGE_SHIFT; | ||
94 | boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, | ||
95 | PAGE_SIZE) >> PAGE_SHIFT; | ||
88 | 96 | ||
89 | spin_lock_irqsave(&iommu_bitmap_lock, flags); | 97 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
90 | offset = find_next_zero_string(iommu_gart_bitmap, next_bit, | 98 | offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, next_bit, |
91 | iommu_pages, size); | 99 | size, base_index, boundary_size, 0); |
92 | if (offset == -1) { | 100 | if (offset == -1) { |
93 | need_flush = 1; | 101 | need_flush = 1; |
94 | offset = find_next_zero_string(iommu_gart_bitmap, 0, | 102 | offset = iommu_area_alloc(iommu_gart_bitmap, iommu_pages, 0, |
95 | iommu_pages, size); | 103 | size, base_index, boundary_size, 0); |
96 | } | 104 | } |
97 | if (offset != -1) { | 105 | if (offset != -1) { |
98 | set_bit_string(iommu_gart_bitmap, offset, size); | 106 | set_bit_string(iommu_gart_bitmap, offset, size); |
@@ -114,7 +122,7 @@ static void free_iommu(unsigned long offset, int size) | |||
114 | unsigned long flags; | 122 | unsigned long flags; |
115 | 123 | ||
116 | spin_lock_irqsave(&iommu_bitmap_lock, flags); | 124 | spin_lock_irqsave(&iommu_bitmap_lock, flags); |
117 | __clear_bit_string(iommu_gart_bitmap, offset, size); | 125 | iommu_area_free(iommu_gart_bitmap, offset, size); |
118 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); | 126 | spin_unlock_irqrestore(&iommu_bitmap_lock, flags); |
119 | } | 127 | } |
120 | 128 | ||
@@ -235,7 +243,7 @@ static dma_addr_t dma_map_area(struct device *dev, dma_addr_t phys_mem, | |||
235 | size_t size, int dir) | 243 | size_t size, int dir) |
236 | { | 244 | { |
237 | unsigned long npages = to_pages(phys_mem, size); | 245 | unsigned long npages = to_pages(phys_mem, size); |
238 | unsigned long iommu_page = alloc_iommu(npages); | 246 | unsigned long iommu_page = alloc_iommu(dev, npages); |
239 | int i; | 247 | int i; |
240 | 248 | ||
241 | if (iommu_page == -1) { | 249 | if (iommu_page == -1) { |
@@ -355,10 +363,11 @@ static int dma_map_sg_nonforce(struct device *dev, struct scatterlist *sg, | |||
355 | } | 363 | } |
356 | 364 | ||
357 | /* Map multiple scatterlist entries continuous into the first. */ | 365 | /* Map multiple scatterlist entries continuous into the first. */ |
358 | static int __dma_map_cont(struct scatterlist *start, int nelems, | 366 | static int __dma_map_cont(struct device *dev, struct scatterlist *start, |
359 | struct scatterlist *sout, unsigned long pages) | 367 | int nelems, struct scatterlist *sout, |
368 | unsigned long pages) | ||
360 | { | 369 | { |
361 | unsigned long iommu_start = alloc_iommu(pages); | 370 | unsigned long iommu_start = alloc_iommu(dev, pages); |
362 | unsigned long iommu_page = iommu_start; | 371 | unsigned long iommu_page = iommu_start; |
363 | struct scatterlist *s; | 372 | struct scatterlist *s; |
364 | int i; | 373 | int i; |
@@ -394,8 +403,8 @@ static int __dma_map_cont(struct scatterlist *start, int nelems, | |||
394 | } | 403 | } |
395 | 404 | ||
396 | static inline int | 405 | static inline int |
397 | dma_map_cont(struct scatterlist *start, int nelems, struct scatterlist *sout, | 406 | dma_map_cont(struct device *dev, struct scatterlist *start, int nelems, |
398 | unsigned long pages, int need) | 407 | struct scatterlist *sout, unsigned long pages, int need) |
399 | { | 408 | { |
400 | if (!need) { | 409 | if (!need) { |
401 | BUG_ON(nelems != 1); | 410 | BUG_ON(nelems != 1); |
@@ -403,7 +412,7 @@ dma_map_cont(struct scatterlist *start, int nelems, struct scatterlist *sout, | |||
403 | sout->dma_length = start->length; | 412 | sout->dma_length = start->length; |
404 | return 0; | 413 | return 0; |
405 | } | 414 | } |
406 | return __dma_map_cont(start, nelems, sout, pages); | 415 | return __dma_map_cont(dev, start, nelems, sout, pages); |
407 | } | 416 | } |
408 | 417 | ||
409 | /* | 418 | /* |
@@ -416,6 +425,8 @@ gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) | |||
416 | struct scatterlist *s, *ps, *start_sg, *sgmap; | 425 | struct scatterlist *s, *ps, *start_sg, *sgmap; |
417 | int need = 0, nextneed, i, out, start; | 426 | int need = 0, nextneed, i, out, start; |
418 | unsigned long pages = 0; | 427 | unsigned long pages = 0; |
428 | unsigned int seg_size; | ||
429 | unsigned int max_seg_size; | ||
419 | 430 | ||
420 | if (nents == 0) | 431 | if (nents == 0) |
421 | return 0; | 432 | return 0; |
@@ -426,6 +437,8 @@ gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) | |||
426 | out = 0; | 437 | out = 0; |
427 | start = 0; | 438 | start = 0; |
428 | start_sg = sgmap = sg; | 439 | start_sg = sgmap = sg; |
440 | seg_size = 0; | ||
441 | max_seg_size = dma_get_max_seg_size(dev); | ||
429 | ps = NULL; /* shut up gcc */ | 442 | ps = NULL; /* shut up gcc */ |
430 | for_each_sg(sg, s, nents, i) { | 443 | for_each_sg(sg, s, nents, i) { |
431 | dma_addr_t addr = sg_phys(s); | 444 | dma_addr_t addr = sg_phys(s); |
@@ -443,11 +456,13 @@ gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) | |||
443 | * offset. | 456 | * offset. |
444 | */ | 457 | */ |
445 | if (!iommu_merge || !nextneed || !need || s->offset || | 458 | if (!iommu_merge || !nextneed || !need || s->offset || |
459 | (s->length + seg_size > max_seg_size) || | ||
446 | (ps->offset + ps->length) % PAGE_SIZE) { | 460 | (ps->offset + ps->length) % PAGE_SIZE) { |
447 | if (dma_map_cont(start_sg, i - start, sgmap, | 461 | if (dma_map_cont(dev, start_sg, i - start, |
448 | pages, need) < 0) | 462 | sgmap, pages, need) < 0) |
449 | goto error; | 463 | goto error; |
450 | out++; | 464 | out++; |
465 | seg_size = 0; | ||
451 | sgmap = sg_next(sgmap); | 466 | sgmap = sg_next(sgmap); |
452 | pages = 0; | 467 | pages = 0; |
453 | start = i; | 468 | start = i; |
@@ -455,11 +470,12 @@ gart_map_sg(struct device *dev, struct scatterlist *sg, int nents, int dir) | |||
455 | } | 470 | } |
456 | } | 471 | } |
457 | 472 | ||
473 | seg_size += s->length; | ||
458 | need = nextneed; | 474 | need = nextneed; |
459 | pages += to_pages(s->offset, s->length); | 475 | pages += to_pages(s->offset, s->length); |
460 | ps = s; | 476 | ps = s; |
461 | } | 477 | } |
462 | if (dma_map_cont(start_sg, i - start, sgmap, pages, need) < 0) | 478 | if (dma_map_cont(dev, start_sg, i - start, sgmap, pages, need) < 0) |
463 | goto error; | 479 | goto error; |
464 | out++; | 480 | out++; |
465 | flush_gart(); | 481 | flush_gart(); |
@@ -501,7 +517,7 @@ static __init unsigned long check_iommu_size(unsigned long aper, u64 aper_size) | |||
501 | } | 517 | } |
502 | 518 | ||
503 | a = aper + iommu_size; | 519 | a = aper + iommu_size; |
504 | iommu_size -= round_up(a, LARGE_PAGE_SIZE) - a; | 520 | iommu_size -= round_up(a, PMD_PAGE_SIZE) - a; |
505 | 521 | ||
506 | if (iommu_size < 64*1024*1024) { | 522 | if (iommu_size < 64*1024*1024) { |
507 | printk(KERN_WARNING | 523 | printk(KERN_WARNING |
@@ -731,7 +747,8 @@ void __init gart_iommu_init(void) | |||
731 | * the backing memory. The GART address is only used by PCI | 747 | * the backing memory. The GART address is only used by PCI |
732 | * devices. | 748 | * devices. |
733 | */ | 749 | */ |
734 | clear_kernel_mapping((unsigned long)__va(iommu_bus_base), iommu_size); | 750 | set_memory_np((unsigned long)__va(iommu_bus_base), |
751 | iommu_size >> PAGE_SHIFT); | ||
735 | 752 | ||
736 | /* | 753 | /* |
737 | * Try to workaround a bug (thanks to BenH) | 754 | * Try to workaround a bug (thanks to BenH) |
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c index 968371ab223a..dabdbeff1f77 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c | |||
@@ -251,7 +251,7 @@ void cpu_idle_wait(void) | |||
251 | * because it has nothing to do. | 251 | * because it has nothing to do. |
252 | * Give all the remaining CPUS a kick. | 252 | * Give all the remaining CPUS a kick. |
253 | */ | 253 | */ |
254 | smp_call_function_mask(map, do_nothing, 0, 0); | 254 | smp_call_function_mask(map, do_nothing, NULL, 0); |
255 | } while (!cpus_empty(map)); | 255 | } while (!cpus_empty(map)); |
256 | 256 | ||
257 | set_cpus_allowed(current, tmp); | 257 | set_cpus_allowed(current, tmp); |
diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c index 150ba29a0d33..3cd7a2dcd4fe 100644 --- a/arch/x86/kernel/quirks.c +++ b/arch/x86/kernel/quirks.c | |||
@@ -30,8 +30,8 @@ static void __devinit quirk_intel_irqbalance(struct pci_dev *dev) | |||
30 | raw_pci_ops->read(0, 0, 0x40, 0x4c, 2, &word); | 30 | raw_pci_ops->read(0, 0, 0x40, 0x4c, 2, &word); |
31 | 31 | ||
32 | if (!(word & (1 << 13))) { | 32 | if (!(word & (1 << 13))) { |
33 | printk(KERN_INFO "Intel E7520/7320/7525 detected. " | 33 | dev_info(&dev->dev, "Intel E7520/7320/7525 detected; " |
34 | "Disabling irq balancing and affinity\n"); | 34 | "disabling irq balancing and affinity\n"); |
35 | #ifdef CONFIG_IRQBALANCE | 35 | #ifdef CONFIG_IRQBALANCE |
36 | irqbalance_disable(""); | 36 | irqbalance_disable(""); |
37 | #endif | 37 | #endif |
@@ -104,14 +104,16 @@ static void ich_force_enable_hpet(struct pci_dev *dev) | |||
104 | pci_read_config_dword(dev, 0xF0, &rcba); | 104 | pci_read_config_dword(dev, 0xF0, &rcba); |
105 | rcba &= 0xFFFFC000; | 105 | rcba &= 0xFFFFC000; |
106 | if (rcba == 0) { | 106 | if (rcba == 0) { |
107 | printk(KERN_DEBUG "RCBA disabled. Cannot force enable HPET\n"); | 107 | dev_printk(KERN_DEBUG, &dev->dev, "RCBA disabled; " |
108 | "cannot force enable HPET\n"); | ||
108 | return; | 109 | return; |
109 | } | 110 | } |
110 | 111 | ||
111 | /* use bits 31:14, 16 kB aligned */ | 112 | /* use bits 31:14, 16 kB aligned */ |
112 | rcba_base = ioremap_nocache(rcba, 0x4000); | 113 | rcba_base = ioremap_nocache(rcba, 0x4000); |
113 | if (rcba_base == NULL) { | 114 | if (rcba_base == NULL) { |
114 | printk(KERN_DEBUG "ioremap failed. Cannot force enable HPET\n"); | 115 | dev_printk(KERN_DEBUG, &dev->dev, "ioremap failed; " |
116 | "cannot force enable HPET\n"); | ||
115 | return; | 117 | return; |
116 | } | 118 | } |
117 | 119 | ||
@@ -122,8 +124,8 @@ static void ich_force_enable_hpet(struct pci_dev *dev) | |||
122 | /* HPET is enabled in HPTC. Just not reported by BIOS */ | 124 | /* HPET is enabled in HPTC. Just not reported by BIOS */ |
123 | val = val & 0x3; | 125 | val = val & 0x3; |
124 | force_hpet_address = 0xFED00000 | (val << 12); | 126 | force_hpet_address = 0xFED00000 | (val << 12); |
125 | printk(KERN_DEBUG "Force enabled HPET at base address 0x%lx\n", | 127 | dev_printk(KERN_DEBUG, &dev->dev, "Force enabled HPET at " |
126 | force_hpet_address); | 128 | "0x%lx\n", force_hpet_address); |
127 | iounmap(rcba_base); | 129 | iounmap(rcba_base); |
128 | return; | 130 | return; |
129 | } | 131 | } |
@@ -142,11 +144,12 @@ static void ich_force_enable_hpet(struct pci_dev *dev) | |||
142 | if (err) { | 144 | if (err) { |
143 | force_hpet_address = 0; | 145 | force_hpet_address = 0; |
144 | iounmap(rcba_base); | 146 | iounmap(rcba_base); |
145 | printk(KERN_DEBUG "Failed to force enable HPET\n"); | 147 | dev_printk(KERN_DEBUG, &dev->dev, |
148 | "Failed to force enable HPET\n"); | ||
146 | } else { | 149 | } else { |
147 | force_hpet_resume_type = ICH_FORCE_HPET_RESUME; | 150 | force_hpet_resume_type = ICH_FORCE_HPET_RESUME; |
148 | printk(KERN_DEBUG "Force enabled HPET at base address 0x%lx\n", | 151 | dev_printk(KERN_DEBUG, &dev->dev, "Force enabled HPET at " |
149 | force_hpet_address); | 152 | "0x%lx\n", force_hpet_address); |
150 | } | 153 | } |
151 | } | 154 | } |
152 | 155 | ||
@@ -208,8 +211,8 @@ static void old_ich_force_enable_hpet(struct pci_dev *dev) | |||
208 | if (val & 0x4) { | 211 | if (val & 0x4) { |
209 | val &= 0x3; | 212 | val &= 0x3; |
210 | force_hpet_address = 0xFED00000 | (val << 12); | 213 | force_hpet_address = 0xFED00000 | (val << 12); |
211 | printk(KERN_DEBUG "HPET at base address 0x%lx\n", | 214 | dev_printk(KERN_DEBUG, &dev->dev, "HPET at 0x%lx\n", |
212 | force_hpet_address); | 215 | force_hpet_address); |
213 | return; | 216 | return; |
214 | } | 217 | } |
215 | 218 | ||
@@ -229,14 +232,14 @@ static void old_ich_force_enable_hpet(struct pci_dev *dev) | |||
229 | /* HPET is enabled in HPTC. Just not reported by BIOS */ | 232 | /* HPET is enabled in HPTC. Just not reported by BIOS */ |
230 | val &= 0x3; | 233 | val &= 0x3; |
231 | force_hpet_address = 0xFED00000 | (val << 12); | 234 | force_hpet_address = 0xFED00000 | (val << 12); |
232 | printk(KERN_DEBUG "Force enabled HPET at base address 0x%lx\n", | 235 | dev_printk(KERN_DEBUG, &dev->dev, "Force enabled HPET at " |
233 | force_hpet_address); | 236 | "0x%lx\n", force_hpet_address); |
234 | cached_dev = dev; | 237 | cached_dev = dev; |
235 | force_hpet_resume_type = OLD_ICH_FORCE_HPET_RESUME; | 238 | force_hpet_resume_type = OLD_ICH_FORCE_HPET_RESUME; |
236 | return; | 239 | return; |
237 | } | 240 | } |
238 | 241 | ||
239 | printk(KERN_DEBUG "Failed to force enable HPET\n"); | 242 | dev_printk(KERN_DEBUG, &dev->dev, "Failed to force enable HPET\n"); |
240 | } | 243 | } |
241 | 244 | ||
242 | /* | 245 | /* |
@@ -294,8 +297,8 @@ static void vt8237_force_enable_hpet(struct pci_dev *dev) | |||
294 | */ | 297 | */ |
295 | if (val & 0x80) { | 298 | if (val & 0x80) { |
296 | force_hpet_address = (val & ~0x3ff); | 299 | force_hpet_address = (val & ~0x3ff); |
297 | printk(KERN_DEBUG "HPET at base address 0x%lx\n", | 300 | dev_printk(KERN_DEBUG, &dev->dev, "HPET at 0x%lx\n", |
298 | force_hpet_address); | 301 | force_hpet_address); |
299 | return; | 302 | return; |
300 | } | 303 | } |
301 | 304 | ||
@@ -309,14 +312,14 @@ static void vt8237_force_enable_hpet(struct pci_dev *dev) | |||
309 | pci_read_config_dword(dev, 0x68, &val); | 312 | pci_read_config_dword(dev, 0x68, &val); |
310 | if (val & 0x80) { | 313 | if (val & 0x80) { |
311 | force_hpet_address = (val & ~0x3ff); | 314 | force_hpet_address = (val & ~0x3ff); |
312 | printk(KERN_DEBUG "Force enabled HPET at base address 0x%lx\n", | 315 | dev_printk(KERN_DEBUG, &dev->dev, "Force enabled HPET at " |
313 | force_hpet_address); | 316 | "0x%lx\n", force_hpet_address); |
314 | cached_dev = dev; | 317 | cached_dev = dev; |
315 | force_hpet_resume_type = VT8237_FORCE_HPET_RESUME; | 318 | force_hpet_resume_type = VT8237_FORCE_HPET_RESUME; |
316 | return; | 319 | return; |
317 | } | 320 | } |
318 | 321 | ||
319 | printk(KERN_DEBUG "Failed to force enable HPET\n"); | 322 | dev_printk(KERN_DEBUG, &dev->dev, "Failed to force enable HPET\n"); |
320 | } | 323 | } |
321 | 324 | ||
322 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235, | 325 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8235, |
@@ -344,7 +347,7 @@ static void nvidia_force_enable_hpet(struct pci_dev *dev) | |||
344 | pci_read_config_dword(dev, 0x44, &val); | 347 | pci_read_config_dword(dev, 0x44, &val); |
345 | force_hpet_address = val & 0xfffffffe; | 348 | force_hpet_address = val & 0xfffffffe; |
346 | force_hpet_resume_type = NVIDIA_FORCE_HPET_RESUME; | 349 | force_hpet_resume_type = NVIDIA_FORCE_HPET_RESUME; |
347 | printk(KERN_DEBUG "Force enabled HPET at base address 0x%lx\n", | 350 | dev_printk(KERN_DEBUG, &dev->dev, "Force enabled HPET at 0x%lx\n", |
348 | force_hpet_address); | 351 | force_hpet_address); |
349 | cached_dev = dev; | 352 | cached_dev = dev; |
350 | return; | 353 | return; |
diff --git a/arch/x86/kernel/scx200_32.c b/arch/x86/kernel/scx200_32.c index 87bc159d29df..7e004acbe526 100644 --- a/arch/x86/kernel/scx200_32.c +++ b/arch/x86/kernel/scx200_32.c | |||
@@ -65,7 +65,7 @@ static int __devinit scx200_probe(struct pci_dev *pdev, const struct pci_device_ | |||
65 | base = pci_resource_start(pdev, 0); | 65 | base = pci_resource_start(pdev, 0); |
66 | printk(KERN_INFO NAME ": GPIO base 0x%x\n", base); | 66 | printk(KERN_INFO NAME ": GPIO base 0x%x\n", base); |
67 | 67 | ||
68 | if (request_region(base, SCx200_GPIO_SIZE, "NatSemi SCx200 GPIO") == 0) { | 68 | if (!request_region(base, SCx200_GPIO_SIZE, "NatSemi SCx200 GPIO")) { |
69 | printk(KERN_ERR NAME ": can't allocate I/O for GPIOs\n"); | 69 | printk(KERN_ERR NAME ": can't allocate I/O for GPIOs\n"); |
70 | return -EBUSY; | 70 | return -EBUSY; |
71 | } | 71 | } |
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index 77fb87bf6e5a..c8939dfddfba 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c | |||
@@ -182,7 +182,8 @@ contig_initmem_init(unsigned long start_pfn, unsigned long end_pfn) | |||
182 | unsigned long bootmap_size, bootmap; | 182 | unsigned long bootmap_size, bootmap; |
183 | 183 | ||
184 | bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT; | 184 | bootmap_size = bootmem_bootmap_pages(end_pfn)<<PAGE_SHIFT; |
185 | bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size); | 185 | bootmap = find_e820_area(0, end_pfn<<PAGE_SHIFT, bootmap_size, |
186 | PAGE_SIZE); | ||
186 | if (bootmap == -1L) | 187 | if (bootmap == -1L) |
187 | panic("Cannot find bootmem map of size %ld\n", bootmap_size); | 188 | panic("Cannot find bootmem map of size %ld\n", bootmap_size); |
188 | bootmap_size = init_bootmem(bootmap >> PAGE_SHIFT, end_pfn); | 189 | bootmap_size = init_bootmem(bootmap >> PAGE_SHIFT, end_pfn); |
@@ -1067,82 +1068,6 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
1067 | struct cpuinfo_x86 *c = v; | 1068 | struct cpuinfo_x86 *c = v; |
1068 | int cpu = 0, i; | 1069 | int cpu = 0, i; |
1069 | 1070 | ||
1070 | /* | ||
1071 | * These flag bits must match the definitions in <asm/cpufeature.h>. | ||
1072 | * NULL means this bit is undefined or reserved; either way it doesn't | ||
1073 | * have meaning as far as Linux is concerned. Note that it's important | ||
1074 | * to realize there is a difference between this table and CPUID -- if | ||
1075 | * applications want to get the raw CPUID data, they should access | ||
1076 | * /dev/cpu/<cpu_nr>/cpuid instead. | ||
1077 | */ | ||
1078 | static const char *const x86_cap_flags[] = { | ||
1079 | /* Intel-defined */ | ||
1080 | "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce", | ||
1081 | "cx8", "apic", NULL, "sep", "mtrr", "pge", "mca", "cmov", | ||
1082 | "pat", "pse36", "pn", "clflush", NULL, "dts", "acpi", "mmx", | ||
1083 | "fxsr", "sse", "sse2", "ss", "ht", "tm", "ia64", "pbe", | ||
1084 | |||
1085 | /* AMD-defined */ | ||
1086 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1087 | NULL, NULL, NULL, "syscall", NULL, NULL, NULL, NULL, | ||
1088 | NULL, NULL, NULL, NULL, "nx", NULL, "mmxext", NULL, | ||
1089 | NULL, "fxsr_opt", "pdpe1gb", "rdtscp", NULL, "lm", | ||
1090 | "3dnowext", "3dnow", | ||
1091 | |||
1092 | /* Transmeta-defined */ | ||
1093 | "recovery", "longrun", NULL, "lrti", NULL, NULL, NULL, NULL, | ||
1094 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1095 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1096 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1097 | |||
1098 | /* Other (Linux-defined) */ | ||
1099 | "cxmmx", "k6_mtrr", "cyrix_arr", "centaur_mcr", | ||
1100 | NULL, NULL, NULL, NULL, | ||
1101 | "constant_tsc", "up", NULL, "arch_perfmon", | ||
1102 | "pebs", "bts", NULL, "sync_rdtsc", | ||
1103 | "rep_good", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1104 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1105 | |||
1106 | /* Intel-defined (#2) */ | ||
1107 | "pni", NULL, NULL, "monitor", "ds_cpl", "vmx", "smx", "est", | ||
1108 | "tm2", "ssse3", "cid", NULL, NULL, "cx16", "xtpr", NULL, | ||
1109 | NULL, NULL, "dca", "sse4_1", "sse4_2", NULL, NULL, "popcnt", | ||
1110 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1111 | |||
1112 | /* VIA/Cyrix/Centaur-defined */ | ||
1113 | NULL, NULL, "rng", "rng_en", NULL, NULL, "ace", "ace_en", | ||
1114 | "ace2", "ace2_en", "phe", "phe_en", "pmm", "pmm_en", NULL, NULL, | ||
1115 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1116 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1117 | |||
1118 | /* AMD-defined (#2) */ | ||
1119 | "lahf_lm", "cmp_legacy", "svm", "extapic", | ||
1120 | "cr8_legacy", "abm", "sse4a", "misalignsse", | ||
1121 | "3dnowprefetch", "osvw", "ibs", "sse5", | ||
1122 | "skinit", "wdt", NULL, NULL, | ||
1123 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1124 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1125 | |||
1126 | /* Auxiliary (Linux-defined) */ | ||
1127 | "ida", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1128 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1129 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1130 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | ||
1131 | }; | ||
1132 | static const char *const x86_power_flags[] = { | ||
1133 | "ts", /* temperature sensor */ | ||
1134 | "fid", /* frequency id control */ | ||
1135 | "vid", /* voltage id control */ | ||
1136 | "ttp", /* thermal trip */ | ||
1137 | "tm", | ||
1138 | "stc", | ||
1139 | "100mhzsteps", | ||
1140 | "hwpstate", | ||
1141 | "", /* tsc invariant mapped to constant_tsc */ | ||
1142 | /* nothing */ | ||
1143 | }; | ||
1144 | |||
1145 | |||
1146 | #ifdef CONFIG_SMP | 1071 | #ifdef CONFIG_SMP |
1147 | cpu = c->cpu_index; | 1072 | cpu = c->cpu_index; |
1148 | #endif | 1073 | #endif |
diff --git a/arch/x86/kernel/smpboot_64.c b/arch/x86/kernel/smpboot_64.c index cc64b8085c2a..d53bd6fcb428 100644 --- a/arch/x86/kernel/smpboot_64.c +++ b/arch/x86/kernel/smpboot_64.c | |||
@@ -1019,7 +1019,7 @@ static void remove_siblinginfo(int cpu) | |||
1019 | cpu_clear(cpu, cpu_sibling_setup_map); | 1019 | cpu_clear(cpu, cpu_sibling_setup_map); |
1020 | } | 1020 | } |
1021 | 1021 | ||
1022 | void remove_cpu_from_maps(void) | 1022 | static void __ref remove_cpu_from_maps(void) |
1023 | { | 1023 | { |
1024 | int cpu = smp_processor_id(); | 1024 | int cpu = smp_processor_id(); |
1025 | 1025 | ||
diff --git a/arch/x86/kernel/suspend_64.c b/arch/x86/kernel/suspend_64.c index 09199511c256..7ac7130022f1 100644 --- a/arch/x86/kernel/suspend_64.c +++ b/arch/x86/kernel/suspend_64.c | |||
@@ -140,7 +140,12 @@ static void fix_processor_context(void) | |||
140 | int cpu = smp_processor_id(); | 140 | int cpu = smp_processor_id(); |
141 | struct tss_struct *t = &per_cpu(init_tss, cpu); | 141 | struct tss_struct *t = &per_cpu(init_tss, cpu); |
142 | 142 | ||
143 | set_tss_desc(cpu,t); /* This just modifies memory; should not be necessary. But... This is necessary, because 386 hardware has concept of busy TSS or some similar stupidity. */ | 143 | /* |
144 | * This just modifies memory; should not be necessary. But... This | ||
145 | * is necessary, because 386 hardware has concept of busy TSS or some | ||
146 | * similar stupidity. | ||
147 | */ | ||
148 | set_tss_desc(cpu, t); | ||
144 | 149 | ||
145 | get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9; | 150 | get_cpu_gdt_table(cpu)[GDT_ENTRY_TSS].type = 9; |
146 | 151 | ||
@@ -160,7 +165,6 @@ static void fix_processor_context(void) | |||
160 | loaddebug(¤t->thread, 6); | 165 | loaddebug(¤t->thread, 6); |
161 | loaddebug(¤t->thread, 7); | 166 | loaddebug(¤t->thread, 7); |
162 | } | 167 | } |
163 | |||
164 | } | 168 | } |
165 | 169 | ||
166 | #ifdef CONFIG_HIBERNATION | 170 | #ifdef CONFIG_HIBERNATION |
diff --git a/arch/x86/kernel/syscall_table_32.S b/arch/x86/kernel/syscall_table_32.S index 8344c70adf61..adff5562f5fd 100644 --- a/arch/x86/kernel/syscall_table_32.S +++ b/arch/x86/kernel/syscall_table_32.S | |||
@@ -321,6 +321,8 @@ ENTRY(sys_call_table) | |||
321 | .long sys_epoll_pwait | 321 | .long sys_epoll_pwait |
322 | .long sys_utimensat /* 320 */ | 322 | .long sys_utimensat /* 320 */ |
323 | .long sys_signalfd | 323 | .long sys_signalfd |
324 | .long sys_timerfd | 324 | .long sys_timerfd_create |
325 | .long sys_eventfd | 325 | .long sys_eventfd |
326 | .long sys_fallocate | 326 | .long sys_fallocate |
327 | .long sys_timerfd_settime /* 325 */ | ||
328 | .long sys_timerfd_gettime | ||
diff --git a/arch/x86/kernel/test_nx.c b/arch/x86/kernel/test_nx.c index 6d7ef11e7975..36c100c323aa 100644 --- a/arch/x86/kernel/test_nx.c +++ b/arch/x86/kernel/test_nx.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/module.h> | 12 | #include <linux/module.h> |
13 | #include <linux/sort.h> | 13 | #include <linux/sort.h> |
14 | #include <asm/uaccess.h> | 14 | #include <asm/uaccess.h> |
15 | #include <asm/asm.h> | ||
15 | 16 | ||
16 | extern int rodata_test_data; | 17 | extern int rodata_test_data; |
17 | 18 | ||
@@ -89,11 +90,7 @@ static noinline int test_address(void *address) | |||
89 | "2: mov %[zero], %[rslt]\n" | 90 | "2: mov %[zero], %[rslt]\n" |
90 | " ret\n" | 91 | " ret\n" |
91 | ".previous\n" | 92 | ".previous\n" |
92 | ".section __ex_table,\"a\"\n" | 93 | _ASM_EXTABLE(0b,2b) |
93 | " .align 8\n" | ||
94 | " .quad 0b\n" | ||
95 | " .quad 2b\n" | ||
96 | ".previous\n" | ||
97 | : [rslt] "=r" (result) | 94 | : [rslt] "=r" (result) |
98 | : [fake_code] "r" (address), [zero] "r" (0UL), "0" (result) | 95 | : [fake_code] "r" (address), [zero] "r" (0UL), "0" (result) |
99 | ); | 96 | ); |
diff --git a/arch/x86/kernel/topology.c b/arch/x86/kernel/topology.c index 78cbb655aa79..e6757aaa202b 100644 --- a/arch/x86/kernel/topology.c +++ b/arch/x86/kernel/topology.c | |||
@@ -57,11 +57,10 @@ void arch_unregister_cpu(int num) | |||
57 | } | 57 | } |
58 | EXPORT_SYMBOL(arch_unregister_cpu); | 58 | EXPORT_SYMBOL(arch_unregister_cpu); |
59 | #else | 59 | #else |
60 | int arch_register_cpu(int num) | 60 | static int __init arch_register_cpu(int num) |
61 | { | 61 | { |
62 | return register_cpu(&per_cpu(cpu_devices, num).cpu, num); | 62 | return register_cpu(&per_cpu(cpu_devices, num).cpu, num); |
63 | } | 63 | } |
64 | EXPORT_SYMBOL(arch_register_cpu); | ||
65 | #endif /*CONFIG_HOTPLUG_CPU*/ | 64 | #endif /*CONFIG_HOTPLUG_CPU*/ |
66 | 65 | ||
67 | static int __init topology_init(void) | 66 | static int __init topology_init(void) |
diff --git a/arch/x86/kernel/trampoline_32.S b/arch/x86/kernel/trampoline_32.S index 9bcc1c6aca3d..64580679861e 100644 --- a/arch/x86/kernel/trampoline_32.S +++ b/arch/x86/kernel/trampoline_32.S | |||
@@ -11,12 +11,7 @@ | |||
11 | * trampoline page to make our stack and everything else | 11 | * trampoline page to make our stack and everything else |
12 | * is a mystery. | 12 | * is a mystery. |
13 | * | 13 | * |
14 | * In fact we don't actually need a stack so we don't | 14 | * We jump into arch/x86/kernel/head_32.S. |
15 | * set one up. | ||
16 | * | ||
17 | * We jump into the boot/compressed/head.S code. So you'd | ||
18 | * better be running a compressed kernel image or you | ||
19 | * won't get very far. | ||
20 | * | 15 | * |
21 | * On entry to trampoline_data, the processor is in real mode | 16 | * On entry to trampoline_data, the processor is in real mode |
22 | * with 16-bit addressing and 16-bit data. CS has some value | 17 | * with 16-bit addressing and 16-bit data. CS has some value |
diff --git a/arch/x86/kernel/trampoline_64.S b/arch/x86/kernel/trampoline_64.S index e30b67c6a9f5..4aedd0bcee4c 100644 --- a/arch/x86/kernel/trampoline_64.S +++ b/arch/x86/kernel/trampoline_64.S | |||
@@ -10,9 +10,6 @@ | |||
10 | * trampoline page to make our stack and everything else | 10 | * trampoline page to make our stack and everything else |
11 | * is a mystery. | 11 | * is a mystery. |
12 | * | 12 | * |
13 | * In fact we don't actually need a stack so we don't | ||
14 | * set one up. | ||
15 | * | ||
16 | * On entry to trampoline_data, the processor is in real mode | 13 | * On entry to trampoline_data, the processor is in real mode |
17 | * with 16-bit addressing and 16-bit data. CS has some value | 14 | * with 16-bit addressing and 16-bit data. CS has some value |
18 | * and IP is zero. Thus, data addresses need to be absolute | 15 | * and IP is zero. Thus, data addresses need to be absolute |
diff --git a/arch/x86/kernel/vmi_32.c b/arch/x86/kernel/vmi_32.c index 4525bc2c2e19..12affe1f9bce 100644 --- a/arch/x86/kernel/vmi_32.c +++ b/arch/x86/kernel/vmi_32.c | |||
@@ -220,21 +220,21 @@ static void vmi_set_tr(void) | |||
220 | static void vmi_write_idt_entry(gate_desc *dt, int entry, const gate_desc *g) | 220 | static void vmi_write_idt_entry(gate_desc *dt, int entry, const gate_desc *g) |
221 | { | 221 | { |
222 | u32 *idt_entry = (u32 *)g; | 222 | u32 *idt_entry = (u32 *)g; |
223 | vmi_ops.write_idt_entry(dt, entry, idt_entry[0], idt_entry[2]); | 223 | vmi_ops.write_idt_entry(dt, entry, idt_entry[0], idt_entry[1]); |
224 | } | 224 | } |
225 | 225 | ||
226 | static void vmi_write_gdt_entry(struct desc_struct *dt, int entry, | 226 | static void vmi_write_gdt_entry(struct desc_struct *dt, int entry, |
227 | const void *desc, int type) | 227 | const void *desc, int type) |
228 | { | 228 | { |
229 | u32 *gdt_entry = (u32 *)desc; | 229 | u32 *gdt_entry = (u32 *)desc; |
230 | vmi_ops.write_gdt_entry(dt, entry, gdt_entry[0], gdt_entry[2]); | 230 | vmi_ops.write_gdt_entry(dt, entry, gdt_entry[0], gdt_entry[1]); |
231 | } | 231 | } |
232 | 232 | ||
233 | static void vmi_write_ldt_entry(struct desc_struct *dt, int entry, | 233 | static void vmi_write_ldt_entry(struct desc_struct *dt, int entry, |
234 | const void *desc) | 234 | const void *desc) |
235 | { | 235 | { |
236 | u32 *ldt_entry = (u32 *)desc; | 236 | u32 *ldt_entry = (u32 *)desc; |
237 | vmi_ops.write_idt_entry(dt, entry, ldt_entry[0], ldt_entry[2]); | 237 | vmi_ops.write_idt_entry(dt, entry, ldt_entry[0], ldt_entry[1]); |
238 | } | 238 | } |
239 | 239 | ||
240 | static void vmi_load_sp0(struct tss_struct *tss, | 240 | static void vmi_load_sp0(struct tss_struct *tss, |
diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig index c83e1c9b5129..41962e793c0f 100644 --- a/arch/x86/kvm/Kconfig +++ b/arch/x86/kvm/Kconfig | |||
@@ -53,5 +53,6 @@ config KVM_AMD | |||
53 | # OK, it's a little counter-intuitive to do this, but it puts it neatly under | 53 | # OK, it's a little counter-intuitive to do this, but it puts it neatly under |
54 | # the virtualization menu. | 54 | # the virtualization menu. |
55 | source drivers/lguest/Kconfig | 55 | source drivers/lguest/Kconfig |
56 | source drivers/virtio/Kconfig | ||
56 | 57 | ||
57 | endif # VIRTUALIZATION | 58 | endif # VIRTUALIZATION |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 8f94a0b89dff..cf5308148689 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -1739,7 +1739,7 @@ static int emulator_cmpxchg_emulated(unsigned long addr, | |||
1739 | if (bytes == 8) { | 1739 | if (bytes == 8) { |
1740 | gpa_t gpa; | 1740 | gpa_t gpa; |
1741 | struct page *page; | 1741 | struct page *page; |
1742 | char *addr; | 1742 | char *kaddr; |
1743 | u64 val; | 1743 | u64 val; |
1744 | 1744 | ||
1745 | down_read(¤t->mm->mmap_sem); | 1745 | down_read(¤t->mm->mmap_sem); |
@@ -1754,9 +1754,9 @@ static int emulator_cmpxchg_emulated(unsigned long addr, | |||
1754 | 1754 | ||
1755 | val = *(u64 *)new; | 1755 | val = *(u64 *)new; |
1756 | page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT); | 1756 | page = gfn_to_page(vcpu->kvm, gpa >> PAGE_SHIFT); |
1757 | addr = kmap_atomic(page, KM_USER0); | 1757 | kaddr = kmap_atomic(page, KM_USER0); |
1758 | set_64bit((u64 *)(addr + offset_in_page(gpa)), val); | 1758 | set_64bit((u64 *)(kaddr + offset_in_page(gpa)), val); |
1759 | kunmap_atomic(addr, KM_USER0); | 1759 | kunmap_atomic(kaddr, KM_USER0); |
1760 | kvm_release_page_dirty(page); | 1760 | kvm_release_page_dirty(page); |
1761 | emul_write: | 1761 | emul_write: |
1762 | up_read(¤t->mm->mmap_sem); | 1762 | up_read(¤t->mm->mmap_sem); |
diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index 4876182daf8a..25df1c1989fe 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile | |||
@@ -21,7 +21,7 @@ else | |||
21 | 21 | ||
22 | lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o | 22 | lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o |
23 | lib-y += thunk_64.o clear_page_64.o copy_page_64.o | 23 | lib-y += thunk_64.o clear_page_64.o copy_page_64.o |
24 | lib-y += bitstr_64.o bitops_64.o | 24 | lib-y += bitops_64.o |
25 | lib-y += memmove_64.o memset_64.o | 25 | lib-y += memmove_64.o memset_64.o |
26 | lib-y += copy_user_64.o rwlock_64.o copy_user_nocache_64.o | 26 | lib-y += copy_user_64.o rwlock_64.o copy_user_nocache_64.o |
27 | endif | 27 | endif |
diff --git a/arch/x86/lib/bitops_32.c b/arch/x86/lib/bitops_32.c index afd0045595d4..b65440459859 100644 --- a/arch/x86/lib/bitops_32.c +++ b/arch/x86/lib/bitops_32.c | |||
@@ -2,7 +2,7 @@ | |||
2 | #include <linux/module.h> | 2 | #include <linux/module.h> |
3 | 3 | ||
4 | /** | 4 | /** |
5 | * find_next_bit - find the first set bit in a memory region | 5 | * find_next_bit - find the next set bit in a memory region |
6 | * @addr: The address to base the search on | 6 | * @addr: The address to base the search on |
7 | * @offset: The bitnumber to start searching at | 7 | * @offset: The bitnumber to start searching at |
8 | * @size: The maximum size to search | 8 | * @size: The maximum size to search |
diff --git a/arch/x86/lib/bitops_64.c b/arch/x86/lib/bitops_64.c index 95b6d9639fba..0e8f491e6ccc 100644 --- a/arch/x86/lib/bitops_64.c +++ b/arch/x86/lib/bitops_64.c | |||
@@ -58,7 +58,7 @@ long find_first_zero_bit(const unsigned long * addr, unsigned long size) | |||
58 | } | 58 | } |
59 | 59 | ||
60 | /** | 60 | /** |
61 | * find_next_zero_bit - find the first zero bit in a memory region | 61 | * find_next_zero_bit - find the next zero bit in a memory region |
62 | * @addr: The address to base the search on | 62 | * @addr: The address to base the search on |
63 | * @offset: The bitnumber to start searching at | 63 | * @offset: The bitnumber to start searching at |
64 | * @size: The maximum size to search | 64 | * @size: The maximum size to search |
diff --git a/arch/x86/lib/bitstr_64.c b/arch/x86/lib/bitstr_64.c deleted file mode 100644 index 7445caf1b5de..000000000000 --- a/arch/x86/lib/bitstr_64.c +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | #include <linux/module.h> | ||
2 | #include <linux/bitops.h> | ||
3 | |||
4 | /* Find string of zero bits in a bitmap */ | ||
5 | unsigned long | ||
6 | find_next_zero_string(unsigned long *bitmap, long start, long nbits, int len) | ||
7 | { | ||
8 | unsigned long n, end, i; | ||
9 | |||
10 | again: | ||
11 | n = find_next_zero_bit(bitmap, nbits, start); | ||
12 | if (n == -1) | ||
13 | return -1; | ||
14 | |||
15 | /* could test bitsliced, but it's hardly worth it */ | ||
16 | end = n+len; | ||
17 | if (end > nbits) | ||
18 | return -1; | ||
19 | for (i = n+1; i < end; i++) { | ||
20 | if (test_bit(i, bitmap)) { | ||
21 | start = i+1; | ||
22 | goto again; | ||
23 | } | ||
24 | } | ||
25 | return n; | ||
26 | } | ||
27 | |||
28 | EXPORT_SYMBOL(find_next_zero_string); | ||
diff --git a/arch/x86/lib/mmx_32.c b/arch/x86/lib/mmx_32.c index 28084d2e8dd4..cc9b4a4450f3 100644 --- a/arch/x86/lib/mmx_32.c +++ b/arch/x86/lib/mmx_32.c | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/hardirq.h> | 4 | #include <linux/hardirq.h> |
5 | #include <linux/module.h> | 5 | #include <linux/module.h> |
6 | 6 | ||
7 | #include <asm/asm.h> | ||
7 | #include <asm/i387.h> | 8 | #include <asm/i387.h> |
8 | 9 | ||
9 | 10 | ||
@@ -50,10 +51,7 @@ void *_mmx_memcpy(void *to, const void *from, size_t len) | |||
50 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ | 51 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ |
51 | " jmp 2b\n" | 52 | " jmp 2b\n" |
52 | ".previous\n" | 53 | ".previous\n" |
53 | ".section __ex_table,\"a\"\n" | 54 | _ASM_EXTABLE(1b,3b) |
54 | " .align 4\n" | ||
55 | " .long 1b, 3b\n" | ||
56 | ".previous" | ||
57 | : : "r" (from) ); | 55 | : : "r" (from) ); |
58 | 56 | ||
59 | 57 | ||
@@ -81,10 +79,7 @@ void *_mmx_memcpy(void *to, const void *from, size_t len) | |||
81 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ | 79 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ |
82 | " jmp 2b\n" | 80 | " jmp 2b\n" |
83 | ".previous\n" | 81 | ".previous\n" |
84 | ".section __ex_table,\"a\"\n" | 82 | _ASM_EXTABLE(1b,3b) |
85 | " .align 4\n" | ||
86 | " .long 1b, 3b\n" | ||
87 | ".previous" | ||
88 | : : "r" (from), "r" (to) : "memory"); | 83 | : : "r" (from), "r" (to) : "memory"); |
89 | from+=64; | 84 | from+=64; |
90 | to+=64; | 85 | to+=64; |
@@ -181,10 +176,7 @@ static void fast_copy_page(void *to, void *from) | |||
181 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ | 176 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ |
182 | " jmp 2b\n" | 177 | " jmp 2b\n" |
183 | ".previous\n" | 178 | ".previous\n" |
184 | ".section __ex_table,\"a\"\n" | 179 | _ASM_EXTABLE(1b,3b) |
185 | " .align 4\n" | ||
186 | " .long 1b, 3b\n" | ||
187 | ".previous" | ||
188 | : : "r" (from) ); | 180 | : : "r" (from) ); |
189 | 181 | ||
190 | for(i=0; i<(4096-320)/64; i++) | 182 | for(i=0; i<(4096-320)/64; i++) |
@@ -211,10 +203,7 @@ static void fast_copy_page(void *to, void *from) | |||
211 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ | 203 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ |
212 | " jmp 2b\n" | 204 | " jmp 2b\n" |
213 | ".previous\n" | 205 | ".previous\n" |
214 | ".section __ex_table,\"a\"\n" | 206 | _ASM_EXTABLE(1b,3b) |
215 | " .align 4\n" | ||
216 | " .long 1b, 3b\n" | ||
217 | ".previous" | ||
218 | : : "r" (from), "r" (to) : "memory"); | 207 | : : "r" (from), "r" (to) : "memory"); |
219 | from+=64; | 208 | from+=64; |
220 | to+=64; | 209 | to+=64; |
@@ -311,10 +300,7 @@ static void fast_copy_page(void *to, void *from) | |||
311 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ | 300 | "3: movw $0x1AEB, 1b\n" /* jmp on 26 bytes */ |
312 | " jmp 2b\n" | 301 | " jmp 2b\n" |
313 | ".previous\n" | 302 | ".previous\n" |
314 | ".section __ex_table,\"a\"\n" | 303 | _ASM_EXTABLE(1b,3b) |
315 | " .align 4\n" | ||
316 | " .long 1b, 3b\n" | ||
317 | ".previous" | ||
318 | : : "r" (from) ); | 304 | : : "r" (from) ); |
319 | 305 | ||
320 | for(i=0; i<4096/64; i++) | 306 | for(i=0; i<4096/64; i++) |
@@ -341,10 +327,7 @@ static void fast_copy_page(void *to, void *from) | |||
341 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ | 327 | "3: movw $0x05EB, 1b\n" /* jmp on 5 bytes */ |
342 | " jmp 2b\n" | 328 | " jmp 2b\n" |
343 | ".previous\n" | 329 | ".previous\n" |
344 | ".section __ex_table,\"a\"\n" | 330 | _ASM_EXTABLE(1b,3b) |
345 | " .align 4\n" | ||
346 | " .long 1b, 3b\n" | ||
347 | ".previous" | ||
348 | : : "r" (from), "r" (to) : "memory"); | 331 | : : "r" (from), "r" (to) : "memory"); |
349 | from+=64; | 332 | from+=64; |
350 | to+=64; | 333 | to+=64; |
diff --git a/arch/x86/lib/usercopy_32.c b/arch/x86/lib/usercopy_32.c index 8bab2b2efaff..e849b9998b0e 100644 --- a/arch/x86/lib/usercopy_32.c +++ b/arch/x86/lib/usercopy_32.c | |||
@@ -48,10 +48,7 @@ do { \ | |||
48 | "3: movl %5,%0\n" \ | 48 | "3: movl %5,%0\n" \ |
49 | " jmp 2b\n" \ | 49 | " jmp 2b\n" \ |
50 | ".previous\n" \ | 50 | ".previous\n" \ |
51 | ".section __ex_table,\"a\"\n" \ | 51 | _ASM_EXTABLE(0b,3b) \ |
52 | " .align 4\n" \ | ||
53 | " .long 0b,3b\n" \ | ||
54 | ".previous" \ | ||
55 | : "=d"(res), "=c"(count), "=&a" (__d0), "=&S" (__d1), \ | 52 | : "=d"(res), "=c"(count), "=&a" (__d0), "=&S" (__d1), \ |
56 | "=&D" (__d2) \ | 53 | "=&D" (__d2) \ |
57 | : "i"(-EFAULT), "0"(count), "1"(count), "3"(src), "4"(dst) \ | 54 | : "i"(-EFAULT), "0"(count), "1"(count), "3"(src), "4"(dst) \ |
@@ -132,11 +129,8 @@ do { \ | |||
132 | "3: lea 0(%2,%0,4),%0\n" \ | 129 | "3: lea 0(%2,%0,4),%0\n" \ |
133 | " jmp 2b\n" \ | 130 | " jmp 2b\n" \ |
134 | ".previous\n" \ | 131 | ".previous\n" \ |
135 | ".section __ex_table,\"a\"\n" \ | 132 | _ASM_EXTABLE(0b,3b) \ |
136 | " .align 4\n" \ | 133 | _ASM_EXTABLE(1b,2b) \ |
137 | " .long 0b,3b\n" \ | ||
138 | " .long 1b,2b\n" \ | ||
139 | ".previous" \ | ||
140 | : "=&c"(size), "=&D" (__d0) \ | 134 | : "=&c"(size), "=&D" (__d0) \ |
141 | : "r"(size & 3), "0"(size / 4), "1"(addr), "a"(0)); \ | 135 | : "r"(size & 3), "0"(size / 4), "1"(addr), "a"(0)); \ |
142 | } while (0) | 136 | } while (0) |
@@ -817,6 +811,7 @@ unsigned long __copy_from_user_ll_nocache(void *to, const void __user *from, | |||
817 | #endif | 811 | #endif |
818 | return n; | 812 | return n; |
819 | } | 813 | } |
814 | EXPORT_SYMBOL(__copy_from_user_ll_nocache); | ||
820 | 815 | ||
821 | unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *from, | 816 | unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *from, |
822 | unsigned long n) | 817 | unsigned long n) |
@@ -831,6 +826,7 @@ unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *fr | |||
831 | #endif | 826 | #endif |
832 | return n; | 827 | return n; |
833 | } | 828 | } |
829 | EXPORT_SYMBOL(__copy_from_user_ll_nocache_nozero); | ||
834 | 830 | ||
835 | /** | 831 | /** |
836 | * copy_to_user: - Copy a block of data into user space. | 832 | * copy_to_user: - Copy a block of data into user space. |
diff --git a/arch/x86/lib/usercopy_64.c b/arch/x86/lib/usercopy_64.c index 893d43f838cc..0c89d1bb0287 100644 --- a/arch/x86/lib/usercopy_64.c +++ b/arch/x86/lib/usercopy_64.c | |||
@@ -31,10 +31,7 @@ do { \ | |||
31 | "3: movq %5,%0\n" \ | 31 | "3: movq %5,%0\n" \ |
32 | " jmp 2b\n" \ | 32 | " jmp 2b\n" \ |
33 | ".previous\n" \ | 33 | ".previous\n" \ |
34 | ".section __ex_table,\"a\"\n" \ | 34 | _ASM_EXTABLE(0b,3b) \ |
35 | " .align 8\n" \ | ||
36 | " .quad 0b,3b\n" \ | ||
37 | ".previous" \ | ||
38 | : "=r"(res), "=c"(count), "=&a" (__d0), "=&S" (__d1), \ | 35 | : "=r"(res), "=c"(count), "=&a" (__d0), "=&S" (__d1), \ |
39 | "=&D" (__d2) \ | 36 | "=&D" (__d2) \ |
40 | : "i"(-EFAULT), "0"(count), "1"(count), "3"(src), "4"(dst) \ | 37 | : "i"(-EFAULT), "0"(count), "1"(count), "3"(src), "4"(dst) \ |
@@ -87,11 +84,8 @@ unsigned long __clear_user(void __user *addr, unsigned long size) | |||
87 | "3: lea 0(%[size1],%[size8],8),%[size8]\n" | 84 | "3: lea 0(%[size1],%[size8],8),%[size8]\n" |
88 | " jmp 2b\n" | 85 | " jmp 2b\n" |
89 | ".previous\n" | 86 | ".previous\n" |
90 | ".section __ex_table,\"a\"\n" | 87 | _ASM_EXTABLE(0b,3b) |
91 | " .align 8\n" | 88 | _ASM_EXTABLE(1b,2b) |
92 | " .quad 0b,3b\n" | ||
93 | " .quad 1b,2b\n" | ||
94 | ".previous" | ||
95 | : [size8] "=c"(size), [dst] "=&D" (__d0) | 89 | : [size8] "=c"(size), [dst] "=&D" (__d0) |
96 | : [size1] "r"(size & 7), "[size8]" (size / 8), "[dst]"(addr), | 90 | : [size1] "r"(size & 7), "[size8]" (size / 8), "[dst]"(addr), |
97 | [zero] "r" (0UL), [eight] "r" (8UL)); | 91 | [zero] "r" (0UL), [eight] "r" (8UL)); |
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index e28cc5277b16..ad8b9733d6b3 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c | |||
@@ -240,7 +240,8 @@ void dump_pagetable(unsigned long address) | |||
240 | pud = pud_offset(pgd, address); | 240 | pud = pud_offset(pgd, address); |
241 | if (bad_address(pud)) goto bad; | 241 | if (bad_address(pud)) goto bad; |
242 | printk("PUD %lx ", pud_val(*pud)); | 242 | printk("PUD %lx ", pud_val(*pud)); |
243 | if (!pud_present(*pud)) goto ret; | 243 | if (!pud_present(*pud) || pud_large(*pud)) |
244 | goto ret; | ||
244 | 245 | ||
245 | pmd = pmd_offset(pud, address); | 246 | pmd = pmd_offset(pud, address); |
246 | if (bad_address(pmd)) goto bad; | 247 | if (bad_address(pmd)) goto bad; |
@@ -382,7 +383,7 @@ static void show_fault_oops(struct pt_regs *regs, unsigned long error_code, | |||
382 | 383 | ||
383 | #ifdef CONFIG_X86_PAE | 384 | #ifdef CONFIG_X86_PAE |
384 | if (error_code & PF_INSTR) { | 385 | if (error_code & PF_INSTR) { |
385 | int level; | 386 | unsigned int level; |
386 | pte_t *pte = lookup_address(address, &level); | 387 | pte_t *pte = lookup_address(address, &level); |
387 | 388 | ||
388 | if (pte && pte_present(*pte) && !pte_exec(*pte)) | 389 | if (pte && pte_present(*pte) && !pte_exec(*pte)) |
@@ -508,6 +509,10 @@ static int vmalloc_fault(unsigned long address) | |||
508 | pmd_t *pmd, *pmd_ref; | 509 | pmd_t *pmd, *pmd_ref; |
509 | pte_t *pte, *pte_ref; | 510 | pte_t *pte, *pte_ref; |
510 | 511 | ||
512 | /* Make sure we are in vmalloc area */ | ||
513 | if (!(address >= VMALLOC_START && address < VMALLOC_END)) | ||
514 | return -1; | ||
515 | |||
511 | /* Copy kernel mappings over when needed. This can also | 516 | /* Copy kernel mappings over when needed. This can also |
512 | happen within a race in page table update. In the later | 517 | happen within a race in page table update. In the later |
513 | case just flush. */ | 518 | case just flush. */ |
@@ -603,6 +608,9 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
603 | */ | 608 | */ |
604 | #ifdef CONFIG_X86_32 | 609 | #ifdef CONFIG_X86_32 |
605 | if (unlikely(address >= TASK_SIZE)) { | 610 | if (unlikely(address >= TASK_SIZE)) { |
611 | #else | ||
612 | if (unlikely(address >= TASK_SIZE64)) { | ||
613 | #endif | ||
606 | if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) && | 614 | if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) && |
607 | vmalloc_fault(address) >= 0) | 615 | vmalloc_fault(address) >= 0) |
608 | return; | 616 | return; |
@@ -618,6 +626,8 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
618 | goto bad_area_nosemaphore; | 626 | goto bad_area_nosemaphore; |
619 | } | 627 | } |
620 | 628 | ||
629 | |||
630 | #ifdef CONFIG_X86_32 | ||
621 | /* It's safe to allow irq's after cr2 has been saved and the vmalloc | 631 | /* It's safe to allow irq's after cr2 has been saved and the vmalloc |
622 | fault has been handled. */ | 632 | fault has been handled. */ |
623 | if (regs->flags & (X86_EFLAGS_IF|VM_MASK)) | 633 | if (regs->flags & (X86_EFLAGS_IF|VM_MASK)) |
@@ -630,28 +640,6 @@ void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) | |||
630 | if (in_atomic() || !mm) | 640 | if (in_atomic() || !mm) |
631 | goto bad_area_nosemaphore; | 641 | goto bad_area_nosemaphore; |
632 | #else /* CONFIG_X86_64 */ | 642 | #else /* CONFIG_X86_64 */ |
633 | if (unlikely(address >= TASK_SIZE64)) { | ||
634 | /* | ||
635 | * Don't check for the module range here: its PML4 | ||
636 | * is always initialized because it's shared with the main | ||
637 | * kernel text. Only vmalloc may need PML4 syncups. | ||
638 | */ | ||
639 | if (!(error_code & (PF_RSVD|PF_USER|PF_PROT)) && | ||
640 | ((address >= VMALLOC_START && address < VMALLOC_END))) { | ||
641 | if (vmalloc_fault(address) >= 0) | ||
642 | return; | ||
643 | } | ||
644 | |||
645 | /* Can handle a stale RO->RW TLB */ | ||
646 | if (spurious_fault(address, error_code)) | ||
647 | return; | ||
648 | |||
649 | /* | ||
650 | * Don't take the mm semaphore here. If we fixup a prefetch | ||
651 | * fault we could otherwise deadlock. | ||
652 | */ | ||
653 | goto bad_area_nosemaphore; | ||
654 | } | ||
655 | if (likely(regs->flags & X86_EFLAGS_IF)) | 643 | if (likely(regs->flags & X86_EFLAGS_IF)) |
656 | local_irq_enable(); | 644 | local_irq_enable(); |
657 | 645 | ||
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index da524fb22422..d1bc04006d16 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/initrd.h> | 31 | #include <linux/initrd.h> |
32 | #include <linux/cpumask.h> | 32 | #include <linux/cpumask.h> |
33 | 33 | ||
34 | #include <asm/asm.h> | ||
34 | #include <asm/processor.h> | 35 | #include <asm/processor.h> |
35 | #include <asm/system.h> | 36 | #include <asm/system.h> |
36 | #include <asm/uaccess.h> | 37 | #include <asm/uaccess.h> |
@@ -423,23 +424,23 @@ static void __init pagetable_init(void) | |||
423 | paravirt_pagetable_setup_done(pgd_base); | 424 | paravirt_pagetable_setup_done(pgd_base); |
424 | } | 425 | } |
425 | 426 | ||
426 | #if defined(CONFIG_HIBERNATION) || defined(CONFIG_ACPI) | 427 | #ifdef CONFIG_ACPI_SLEEP |
427 | /* | 428 | /* |
428 | * Swap suspend & friends need this for resume because things like the intel-agp | 429 | * ACPI suspend needs this for resume, because things like the intel-agp |
429 | * driver might have split up a kernel 4MB mapping. | 430 | * driver might have split up a kernel 4MB mapping. |
430 | */ | 431 | */ |
431 | char __nosavedata swsusp_pg_dir[PAGE_SIZE] | 432 | char swsusp_pg_dir[PAGE_SIZE] |
432 | __attribute__ ((aligned(PAGE_SIZE))); | 433 | __attribute__ ((aligned(PAGE_SIZE))); |
433 | 434 | ||
434 | static inline void save_pg_dir(void) | 435 | static inline void save_pg_dir(void) |
435 | { | 436 | { |
436 | memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE); | 437 | memcpy(swsusp_pg_dir, swapper_pg_dir, PAGE_SIZE); |
437 | } | 438 | } |
438 | #else | 439 | #else /* !CONFIG_ACPI_SLEEP */ |
439 | static inline void save_pg_dir(void) | 440 | static inline void save_pg_dir(void) |
440 | { | 441 | { |
441 | } | 442 | } |
442 | #endif | 443 | #endif /* !CONFIG_ACPI_SLEEP */ |
443 | 444 | ||
444 | void zap_low_mappings(void) | 445 | void zap_low_mappings(void) |
445 | { | 446 | { |
@@ -718,10 +719,7 @@ static noinline int do_test_wp_bit(void) | |||
718 | "1: movb %1, %0 \n" | 719 | "1: movb %1, %0 \n" |
719 | " xorl %2, %2 \n" | 720 | " xorl %2, %2 \n" |
720 | "2: \n" | 721 | "2: \n" |
721 | ".section __ex_table, \"a\"\n" | 722 | _ASM_EXTABLE(1b,2b) |
722 | " .align 4 \n" | ||
723 | " .long 1b, 2b \n" | ||
724 | ".previous \n" | ||
725 | :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)), | 723 | :"=m" (*(char *)fix_to_virt(FIX_WP_TEST)), |
726 | "=q" (tmp_reg), | 724 | "=q" (tmp_reg), |
727 | "=r" (flag) | 725 | "=r" (flag) |
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index cc50a13ce8d9..3a98d6f724ab 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -273,7 +273,6 @@ phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end) | |||
273 | int i = pmd_index(address); | 273 | int i = pmd_index(address); |
274 | 274 | ||
275 | for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) { | 275 | for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) { |
276 | unsigned long entry; | ||
277 | pmd_t *pmd = pmd_page + pmd_index(address); | 276 | pmd_t *pmd = pmd_page + pmd_index(address); |
278 | 277 | ||
279 | if (address >= end) { | 278 | if (address >= end) { |
@@ -287,9 +286,8 @@ phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end) | |||
287 | if (pmd_val(*pmd)) | 286 | if (pmd_val(*pmd)) |
288 | continue; | 287 | continue; |
289 | 288 | ||
290 | entry = __PAGE_KERNEL_LARGE|_PAGE_GLOBAL|address; | 289 | set_pte((pte_t *)pmd, |
291 | entry &= __supported_pte_mask; | 290 | pfn_pte(address >> PAGE_SHIFT, PAGE_KERNEL_LARGE)); |
292 | set_pmd(pmd, __pmd(entry)); | ||
293 | } | 291 | } |
294 | } | 292 | } |
295 | 293 | ||
@@ -354,17 +352,10 @@ static void __init find_early_table_space(unsigned long end) | |||
354 | * need roughly 0.5KB per GB. | 352 | * need roughly 0.5KB per GB. |
355 | */ | 353 | */ |
356 | start = 0x8000; | 354 | start = 0x8000; |
357 | table_start = find_e820_area(start, end, tables); | 355 | table_start = find_e820_area(start, end, tables, PAGE_SIZE); |
358 | if (table_start == -1UL) | 356 | if (table_start == -1UL) |
359 | panic("Cannot find space for the kernel page tables"); | 357 | panic("Cannot find space for the kernel page tables"); |
360 | 358 | ||
361 | /* | ||
362 | * When you have a lot of RAM like 256GB, early_table will not fit | ||
363 | * into 0x8000 range, find_e820_area() will find area after kernel | ||
364 | * bss but the table_start is not page aligned, so need to round it | ||
365 | * up to avoid overlap with bss: | ||
366 | */ | ||
367 | table_start = round_up(table_start, PAGE_SIZE); | ||
368 | table_start >>= PAGE_SHIFT; | 359 | table_start >>= PAGE_SHIFT; |
369 | table_end = table_start; | 360 | table_end = table_start; |
370 | 361 | ||
@@ -420,7 +411,9 @@ void __init_refok init_memory_mapping(unsigned long start, unsigned long end) | |||
420 | mmu_cr4_features = read_cr4(); | 411 | mmu_cr4_features = read_cr4(); |
421 | __flush_tlb_all(); | 412 | __flush_tlb_all(); |
422 | 413 | ||
423 | reserve_early(table_start << PAGE_SHIFT, table_end << PAGE_SHIFT); | 414 | if (!after_bootmem) |
415 | reserve_early(table_start << PAGE_SHIFT, | ||
416 | table_end << PAGE_SHIFT, "PGTABLE"); | ||
424 | } | 417 | } |
425 | 418 | ||
426 | #ifndef CONFIG_NUMA | 419 | #ifndef CONFIG_NUMA |
@@ -440,49 +433,6 @@ void __init paging_init(void) | |||
440 | #endif | 433 | #endif |
441 | 434 | ||
442 | /* | 435 | /* |
443 | * Unmap a kernel mapping if it exists. This is useful to avoid | ||
444 | * prefetches from the CPU leading to inconsistent cache lines. | ||
445 | * address and size must be aligned to 2MB boundaries. | ||
446 | * Does nothing when the mapping doesn't exist. | ||
447 | */ | ||
448 | void __init clear_kernel_mapping(unsigned long address, unsigned long size) | ||
449 | { | ||
450 | unsigned long end = address + size; | ||
451 | |||
452 | BUG_ON(address & ~LARGE_PAGE_MASK); | ||
453 | BUG_ON(size & ~LARGE_PAGE_MASK); | ||
454 | |||
455 | for (; address < end; address += LARGE_PAGE_SIZE) { | ||
456 | pgd_t *pgd = pgd_offset_k(address); | ||
457 | pud_t *pud; | ||
458 | pmd_t *pmd; | ||
459 | |||
460 | if (pgd_none(*pgd)) | ||
461 | continue; | ||
462 | |||
463 | pud = pud_offset(pgd, address); | ||
464 | if (pud_none(*pud)) | ||
465 | continue; | ||
466 | |||
467 | pmd = pmd_offset(pud, address); | ||
468 | if (!pmd || pmd_none(*pmd)) | ||
469 | continue; | ||
470 | |||
471 | if (!(pmd_val(*pmd) & _PAGE_PSE)) { | ||
472 | /* | ||
473 | * Could handle this, but it should not happen | ||
474 | * currently: | ||
475 | */ | ||
476 | printk(KERN_ERR "clear_kernel_mapping: " | ||
477 | "mapping has been split. will leak memory\n"); | ||
478 | pmd_ERROR(*pmd); | ||
479 | } | ||
480 | set_pmd(pmd, __pmd(0)); | ||
481 | } | ||
482 | __flush_tlb_all(); | ||
483 | } | ||
484 | |||
485 | /* | ||
486 | * Memory hotplug specific functions | 436 | * Memory hotplug specific functions |
487 | */ | 437 | */ |
488 | void online_page(struct page *page) | 438 | void online_page(struct page *page) |
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index ed795721ca8e..ee6648fe6b15 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
@@ -70,23 +70,11 @@ int page_is_ram(unsigned long pagenr) | |||
70 | * Fix up the linear direct mapping of the kernel to avoid cache attribute | 70 | * Fix up the linear direct mapping of the kernel to avoid cache attribute |
71 | * conflicts. | 71 | * conflicts. |
72 | */ | 72 | */ |
73 | static int ioremap_change_attr(unsigned long paddr, unsigned long size, | 73 | static int ioremap_change_attr(unsigned long vaddr, unsigned long size, |
74 | enum ioremap_mode mode) | 74 | enum ioremap_mode mode) |
75 | { | 75 | { |
76 | unsigned long vaddr = (unsigned long)__va(paddr); | ||
77 | unsigned long nrpages = size >> PAGE_SHIFT; | 76 | unsigned long nrpages = size >> PAGE_SHIFT; |
78 | int err, level; | 77 | int err; |
79 | |||
80 | /* No change for pages after the last mapping */ | ||
81 | if ((paddr + size - 1) >= (max_pfn_mapped << PAGE_SHIFT)) | ||
82 | return 0; | ||
83 | |||
84 | /* | ||
85 | * If there is no identity map for this address, | ||
86 | * change_page_attr_addr is unnecessary | ||
87 | */ | ||
88 | if (!lookup_address(vaddr, &level)) | ||
89 | return 0; | ||
90 | 78 | ||
91 | switch (mode) { | 79 | switch (mode) { |
92 | case IOR_MODE_UNCACHED: | 80 | case IOR_MODE_UNCACHED: |
@@ -113,9 +101,8 @@ static int ioremap_change_attr(unsigned long paddr, unsigned long size, | |||
113 | static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | 101 | static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, |
114 | enum ioremap_mode mode) | 102 | enum ioremap_mode mode) |
115 | { | 103 | { |
116 | void __iomem *addr; | 104 | unsigned long pfn, offset, last_addr, vaddr; |
117 | struct vm_struct *area; | 105 | struct vm_struct *area; |
118 | unsigned long offset, last_addr; | ||
119 | pgprot_t prot; | 106 | pgprot_t prot; |
120 | 107 | ||
121 | /* Don't allow wraparound or zero size */ | 108 | /* Don't allow wraparound or zero size */ |
@@ -132,9 +119,10 @@ static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | |||
132 | /* | 119 | /* |
133 | * Don't allow anybody to remap normal RAM that we're using.. | 120 | * Don't allow anybody to remap normal RAM that we're using.. |
134 | */ | 121 | */ |
135 | for (offset = phys_addr >> PAGE_SHIFT; offset < max_pfn_mapped && | 122 | for (pfn = phys_addr >> PAGE_SHIFT; pfn < max_pfn_mapped && |
136 | (offset << PAGE_SHIFT) < last_addr; offset++) { | 123 | (pfn << PAGE_SHIFT) < last_addr; pfn++) { |
137 | if (page_is_ram(offset)) | 124 | if (page_is_ram(pfn) && pfn_valid(pfn) && |
125 | !PageReserved(pfn_to_page(pfn))) | ||
138 | return NULL; | 126 | return NULL; |
139 | } | 127 | } |
140 | 128 | ||
@@ -162,19 +150,18 @@ static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | |||
162 | if (!area) | 150 | if (!area) |
163 | return NULL; | 151 | return NULL; |
164 | area->phys_addr = phys_addr; | 152 | area->phys_addr = phys_addr; |
165 | addr = (void __iomem *) area->addr; | 153 | vaddr = (unsigned long) area->addr; |
166 | if (ioremap_page_range((unsigned long)addr, (unsigned long)addr + size, | 154 | if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot)) { |
167 | phys_addr, prot)) { | 155 | remove_vm_area((void *)(vaddr & PAGE_MASK)); |
168 | remove_vm_area((void *)(PAGE_MASK & (unsigned long) addr)); | ||
169 | return NULL; | 156 | return NULL; |
170 | } | 157 | } |
171 | 158 | ||
172 | if (ioremap_change_attr(phys_addr, size, mode) < 0) { | 159 | if (ioremap_change_attr(vaddr, size, mode) < 0) { |
173 | vunmap(addr); | 160 | vunmap(area->addr); |
174 | return NULL; | 161 | return NULL; |
175 | } | 162 | } |
176 | 163 | ||
177 | return (void __iomem *) (offset + (char __iomem *)addr); | 164 | return (void __iomem *) (vaddr + offset); |
178 | } | 165 | } |
179 | 166 | ||
180 | /** | 167 | /** |
@@ -253,9 +240,6 @@ void iounmap(volatile void __iomem *addr) | |||
253 | return; | 240 | return; |
254 | } | 241 | } |
255 | 242 | ||
256 | /* Reset the direct mapping. Can block */ | ||
257 | ioremap_change_attr(p->phys_addr, p->size, IOR_MODE_CACHED); | ||
258 | |||
259 | /* Finally remove it */ | 243 | /* Finally remove it */ |
260 | o = remove_vm_area((void *)addr); | 244 | o = remove_vm_area((void *)addr); |
261 | BUG_ON(p != o || o == NULL); | 245 | BUG_ON(p != o || o == NULL); |
@@ -340,7 +324,7 @@ void __init early_ioremap_reset(void) | |||
340 | for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) { | 324 | for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) { |
341 | addr = fix_to_virt(idx); | 325 | addr = fix_to_virt(idx); |
342 | pte = early_ioremap_pte(addr); | 326 | pte = early_ioremap_pte(addr); |
343 | if (!*pte & _PAGE_PRESENT) { | 327 | if (*pte & _PAGE_PRESENT) { |
344 | phys = *pte & PAGE_MASK; | 328 | phys = *pte & PAGE_MASK; |
345 | set_fixmap(idx, phys); | 329 | set_fixmap(idx, phys); |
346 | } | 330 | } |
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index dc3b1f7e1451..5a02bf4c91ec 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
@@ -84,26 +84,24 @@ static int __init populate_memnodemap(const struct bootnode *nodes, | |||
84 | 84 | ||
85 | static int __init allocate_cachealigned_memnodemap(void) | 85 | static int __init allocate_cachealigned_memnodemap(void) |
86 | { | 86 | { |
87 | unsigned long pad, pad_addr; | 87 | unsigned long addr; |
88 | 88 | ||
89 | memnodemap = memnode.embedded_map; | 89 | memnodemap = memnode.embedded_map; |
90 | if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map)) | 90 | if (memnodemapsize <= ARRAY_SIZE(memnode.embedded_map)) |
91 | return 0; | 91 | return 0; |
92 | 92 | ||
93 | pad = L1_CACHE_BYTES - 1; | 93 | addr = 0x8000; |
94 | pad_addr = 0x8000; | 94 | nodemap_size = round_up(sizeof(s16) * memnodemapsize, L1_CACHE_BYTES); |
95 | nodemap_size = pad + sizeof(s16) * memnodemapsize; | 95 | nodemap_addr = find_e820_area(addr, end_pfn<<PAGE_SHIFT, |
96 | nodemap_addr = find_e820_area(pad_addr, end_pfn<<PAGE_SHIFT, | 96 | nodemap_size, L1_CACHE_BYTES); |
97 | nodemap_size); | ||
98 | if (nodemap_addr == -1UL) { | 97 | if (nodemap_addr == -1UL) { |
99 | printk(KERN_ERR | 98 | printk(KERN_ERR |
100 | "NUMA: Unable to allocate Memory to Node hash map\n"); | 99 | "NUMA: Unable to allocate Memory to Node hash map\n"); |
101 | nodemap_addr = nodemap_size = 0; | 100 | nodemap_addr = nodemap_size = 0; |
102 | return -1; | 101 | return -1; |
103 | } | 102 | } |
104 | pad_addr = (nodemap_addr + pad) & ~pad; | 103 | memnodemap = phys_to_virt(nodemap_addr); |
105 | memnodemap = phys_to_virt(pad_addr); | 104 | reserve_early(nodemap_addr, nodemap_addr + nodemap_size, "MEMNODEMAP"); |
106 | reserve_early(nodemap_addr, nodemap_addr + nodemap_size); | ||
107 | 105 | ||
108 | printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n", | 106 | printk(KERN_DEBUG "NUMA: Allocated memnodemap from %lx - %lx\n", |
109 | nodemap_addr, nodemap_addr + nodemap_size); | 107 | nodemap_addr, nodemap_addr + nodemap_size); |
@@ -164,15 +162,16 @@ int early_pfn_to_nid(unsigned long pfn) | |||
164 | } | 162 | } |
165 | 163 | ||
166 | static void * __init early_node_mem(int nodeid, unsigned long start, | 164 | static void * __init early_node_mem(int nodeid, unsigned long start, |
167 | unsigned long end, unsigned long size) | 165 | unsigned long end, unsigned long size, |
166 | unsigned long align) | ||
168 | { | 167 | { |
169 | unsigned long mem = find_e820_area(start, end, size); | 168 | unsigned long mem = find_e820_area(start, end, size, align); |
170 | void *ptr; | 169 | void *ptr; |
171 | 170 | ||
172 | if (mem != -1L) | 171 | if (mem != -1L) |
173 | return __va(mem); | 172 | return __va(mem); |
174 | ptr = __alloc_bootmem_nopanic(size, | 173 | |
175 | SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)); | 174 | ptr = __alloc_bootmem_nopanic(size, align, __pa(MAX_DMA_ADDRESS)); |
176 | if (ptr == NULL) { | 175 | if (ptr == NULL) { |
177 | printk(KERN_ERR "Cannot find %lu bytes in node %d\n", | 176 | printk(KERN_ERR "Cannot find %lu bytes in node %d\n", |
178 | size, nodeid); | 177 | size, nodeid); |
@@ -198,10 +197,13 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, | |||
198 | start_pfn = start >> PAGE_SHIFT; | 197 | start_pfn = start >> PAGE_SHIFT; |
199 | end_pfn = end >> PAGE_SHIFT; | 198 | end_pfn = end >> PAGE_SHIFT; |
200 | 199 | ||
201 | node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size); | 200 | node_data[nodeid] = early_node_mem(nodeid, start, end, pgdat_size, |
201 | SMP_CACHE_BYTES); | ||
202 | if (node_data[nodeid] == NULL) | 202 | if (node_data[nodeid] == NULL) |
203 | return; | 203 | return; |
204 | nodedata_phys = __pa(node_data[nodeid]); | 204 | nodedata_phys = __pa(node_data[nodeid]); |
205 | printk(KERN_INFO " NODE_DATA [%016lx - %016lx]\n", nodedata_phys, | ||
206 | nodedata_phys + pgdat_size - 1); | ||
205 | 207 | ||
206 | memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t)); | 208 | memset(NODE_DATA(nodeid), 0, sizeof(pg_data_t)); |
207 | NODE_DATA(nodeid)->bdata = &plat_node_bdata[nodeid]; | 209 | NODE_DATA(nodeid)->bdata = &plat_node_bdata[nodeid]; |
@@ -211,8 +213,12 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, | |||
211 | /* Find a place for the bootmem map */ | 213 | /* Find a place for the bootmem map */ |
212 | bootmap_pages = bootmem_bootmap_pages(end_pfn - start_pfn); | 214 | bootmap_pages = bootmem_bootmap_pages(end_pfn - start_pfn); |
213 | bootmap_start = round_up(nodedata_phys + pgdat_size, PAGE_SIZE); | 215 | bootmap_start = round_up(nodedata_phys + pgdat_size, PAGE_SIZE); |
216 | /* | ||
217 | * SMP_CAHCE_BYTES could be enough, but init_bootmem_node like | ||
218 | * to use that to align to PAGE_SIZE | ||
219 | */ | ||
214 | bootmap = early_node_mem(nodeid, bootmap_start, end, | 220 | bootmap = early_node_mem(nodeid, bootmap_start, end, |
215 | bootmap_pages<<PAGE_SHIFT); | 221 | bootmap_pages<<PAGE_SHIFT, PAGE_SIZE); |
216 | if (bootmap == NULL) { | 222 | if (bootmap == NULL) { |
217 | if (nodedata_phys < start || nodedata_phys >= end) | 223 | if (nodedata_phys < start || nodedata_phys >= end) |
218 | free_bootmem((unsigned long)node_data[nodeid], | 224 | free_bootmem((unsigned long)node_data[nodeid], |
@@ -221,12 +227,15 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, | |||
221 | return; | 227 | return; |
222 | } | 228 | } |
223 | bootmap_start = __pa(bootmap); | 229 | bootmap_start = __pa(bootmap); |
224 | Dprintk("bootmap start %lu pages %lu\n", bootmap_start, bootmap_pages); | ||
225 | 230 | ||
226 | bootmap_size = init_bootmem_node(NODE_DATA(nodeid), | 231 | bootmap_size = init_bootmem_node(NODE_DATA(nodeid), |
227 | bootmap_start >> PAGE_SHIFT, | 232 | bootmap_start >> PAGE_SHIFT, |
228 | start_pfn, end_pfn); | 233 | start_pfn, end_pfn); |
229 | 234 | ||
235 | printk(KERN_INFO " bootmap [%016lx - %016lx] pages %lx\n", | ||
236 | bootmap_start, bootmap_start + bootmap_size - 1, | ||
237 | bootmap_pages); | ||
238 | |||
230 | free_bootmem_with_active_regions(nodeid, end); | 239 | free_bootmem_with_active_regions(nodeid, end); |
231 | 240 | ||
232 | reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys, pgdat_size); | 241 | reserve_bootmem_node(NODE_DATA(nodeid), nodedata_phys, pgdat_size); |
diff --git a/arch/x86/mm/pageattr-test.c b/arch/x86/mm/pageattr-test.c index 06353d43f72e..398f3a578dde 100644 --- a/arch/x86/mm/pageattr-test.c +++ b/arch/x86/mm/pageattr-test.c | |||
@@ -42,7 +42,7 @@ static __init int print_split(struct split_state *s) | |||
42 | s->max_exec = 0; | 42 | s->max_exec = 0; |
43 | for (i = 0; i < max_pfn_mapped; ) { | 43 | for (i = 0; i < max_pfn_mapped; ) { |
44 | unsigned long addr = (unsigned long)__va(i << PAGE_SHIFT); | 44 | unsigned long addr = (unsigned long)__va(i << PAGE_SHIFT); |
45 | int level; | 45 | unsigned int level; |
46 | pte_t *pte; | 46 | pte_t *pte; |
47 | 47 | ||
48 | pte = lookup_address(addr, &level); | 48 | pte = lookup_address(addr, &level); |
@@ -106,7 +106,7 @@ static __init int exercise_pageattr(void) | |||
106 | unsigned long *bm; | 106 | unsigned long *bm; |
107 | pte_t *pte, pte0; | 107 | pte_t *pte, pte0; |
108 | int failed = 0; | 108 | int failed = 0; |
109 | int level; | 109 | unsigned int level; |
110 | int i, k; | 110 | int i, k; |
111 | int err; | 111 | int err; |
112 | 112 | ||
@@ -137,7 +137,8 @@ static __init int exercise_pageattr(void) | |||
137 | 137 | ||
138 | for (k = 0; k < len[i]; k++) { | 138 | for (k = 0; k < len[i]; k++) { |
139 | pte = lookup_address(addr[i] + k*PAGE_SIZE, &level); | 139 | pte = lookup_address(addr[i] + k*PAGE_SIZE, &level); |
140 | if (!pte || pgprot_val(pte_pgprot(*pte)) == 0) { | 140 | if (!pte || pgprot_val(pte_pgprot(*pte)) == 0 || |
141 | !(pte_val(*pte) & _PAGE_PRESENT)) { | ||
141 | addr[i] = 0; | 142 | addr[i] = 0; |
142 | break; | 143 | break; |
143 | } | 144 | } |
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 1cc6607eacb0..16ce841f08d6 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -16,6 +16,17 @@ | |||
16 | #include <asm/uaccess.h> | 16 | #include <asm/uaccess.h> |
17 | #include <asm/pgalloc.h> | 17 | #include <asm/pgalloc.h> |
18 | 18 | ||
19 | /* | ||
20 | * The current flushing context - we pass it instead of 5 arguments: | ||
21 | */ | ||
22 | struct cpa_data { | ||
23 | unsigned long vaddr; | ||
24 | pgprot_t mask_set; | ||
25 | pgprot_t mask_clr; | ||
26 | int numpages; | ||
27 | int flushtlb; | ||
28 | }; | ||
29 | |||
19 | static inline int | 30 | static inline int |
20 | within(unsigned long addr, unsigned long start, unsigned long end) | 31 | within(unsigned long addr, unsigned long start, unsigned long end) |
21 | { | 32 | { |
@@ -52,21 +63,23 @@ void clflush_cache_range(void *vaddr, unsigned int size) | |||
52 | 63 | ||
53 | static void __cpa_flush_all(void *arg) | 64 | static void __cpa_flush_all(void *arg) |
54 | { | 65 | { |
66 | unsigned long cache = (unsigned long)arg; | ||
67 | |||
55 | /* | 68 | /* |
56 | * Flush all to work around Errata in early athlons regarding | 69 | * Flush all to work around Errata in early athlons regarding |
57 | * large page flushing. | 70 | * large page flushing. |
58 | */ | 71 | */ |
59 | __flush_tlb_all(); | 72 | __flush_tlb_all(); |
60 | 73 | ||
61 | if (boot_cpu_data.x86_model >= 4) | 74 | if (cache && boot_cpu_data.x86_model >= 4) |
62 | wbinvd(); | 75 | wbinvd(); |
63 | } | 76 | } |
64 | 77 | ||
65 | static void cpa_flush_all(void) | 78 | static void cpa_flush_all(unsigned long cache) |
66 | { | 79 | { |
67 | BUG_ON(irqs_disabled()); | 80 | BUG_ON(irqs_disabled()); |
68 | 81 | ||
69 | on_each_cpu(__cpa_flush_all, NULL, 1, 1); | 82 | on_each_cpu(__cpa_flush_all, (void *) cache, 1, 1); |
70 | } | 83 | } |
71 | 84 | ||
72 | static void __cpa_flush_range(void *arg) | 85 | static void __cpa_flush_range(void *arg) |
@@ -79,7 +92,7 @@ static void __cpa_flush_range(void *arg) | |||
79 | __flush_tlb_all(); | 92 | __flush_tlb_all(); |
80 | } | 93 | } |
81 | 94 | ||
82 | static void cpa_flush_range(unsigned long start, int numpages) | 95 | static void cpa_flush_range(unsigned long start, int numpages, int cache) |
83 | { | 96 | { |
84 | unsigned int i, level; | 97 | unsigned int i, level; |
85 | unsigned long addr; | 98 | unsigned long addr; |
@@ -89,6 +102,9 @@ static void cpa_flush_range(unsigned long start, int numpages) | |||
89 | 102 | ||
90 | on_each_cpu(__cpa_flush_range, NULL, 1, 1); | 103 | on_each_cpu(__cpa_flush_range, NULL, 1, 1); |
91 | 104 | ||
105 | if (!cache) | ||
106 | return; | ||
107 | |||
92 | /* | 108 | /* |
93 | * We only need to flush on one CPU, | 109 | * We only need to flush on one CPU, |
94 | * clflush is a MESI-coherent instruction that | 110 | * clflush is a MESI-coherent instruction that |
@@ -101,11 +117,27 @@ static void cpa_flush_range(unsigned long start, int numpages) | |||
101 | /* | 117 | /* |
102 | * Only flush present addresses: | 118 | * Only flush present addresses: |
103 | */ | 119 | */ |
104 | if (pte && pte_present(*pte)) | 120 | if (pte && (pte_val(*pte) & _PAGE_PRESENT)) |
105 | clflush_cache_range((void *) addr, PAGE_SIZE); | 121 | clflush_cache_range((void *) addr, PAGE_SIZE); |
106 | } | 122 | } |
107 | } | 123 | } |
108 | 124 | ||
125 | #define HIGH_MAP_START __START_KERNEL_map | ||
126 | #define HIGH_MAP_END (__START_KERNEL_map + KERNEL_TEXT_SIZE) | ||
127 | |||
128 | |||
129 | /* | ||
130 | * Converts a virtual address to a X86-64 highmap address | ||
131 | */ | ||
132 | static unsigned long virt_to_highmap(void *address) | ||
133 | { | ||
134 | #ifdef CONFIG_X86_64 | ||
135 | return __pa((unsigned long)address) + HIGH_MAP_START - phys_base; | ||
136 | #else | ||
137 | return (unsigned long)address; | ||
138 | #endif | ||
139 | } | ||
140 | |||
109 | /* | 141 | /* |
110 | * Certain areas of memory on x86 require very specific protection flags, | 142 | * Certain areas of memory on x86 require very specific protection flags, |
111 | * for example the BIOS area or kernel text. Callers don't always get this | 143 | * for example the BIOS area or kernel text. Callers don't always get this |
@@ -129,12 +161,24 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long address) | |||
129 | */ | 161 | */ |
130 | if (within(address, (unsigned long)_text, (unsigned long)_etext)) | 162 | if (within(address, (unsigned long)_text, (unsigned long)_etext)) |
131 | pgprot_val(forbidden) |= _PAGE_NX; | 163 | pgprot_val(forbidden) |= _PAGE_NX; |
164 | /* | ||
165 | * Do the same for the x86-64 high kernel mapping | ||
166 | */ | ||
167 | if (within(address, virt_to_highmap(_text), virt_to_highmap(_etext))) | ||
168 | pgprot_val(forbidden) |= _PAGE_NX; | ||
169 | |||
132 | 170 | ||
133 | #ifdef CONFIG_DEBUG_RODATA | 171 | #ifdef CONFIG_DEBUG_RODATA |
134 | /* The .rodata section needs to be read-only */ | 172 | /* The .rodata section needs to be read-only */ |
135 | if (within(address, (unsigned long)__start_rodata, | 173 | if (within(address, (unsigned long)__start_rodata, |
136 | (unsigned long)__end_rodata)) | 174 | (unsigned long)__end_rodata)) |
137 | pgprot_val(forbidden) |= _PAGE_RW; | 175 | pgprot_val(forbidden) |= _PAGE_RW; |
176 | /* | ||
177 | * Do the same for the x86-64 high kernel mapping | ||
178 | */ | ||
179 | if (within(address, virt_to_highmap(__start_rodata), | ||
180 | virt_to_highmap(__end_rodata))) | ||
181 | pgprot_val(forbidden) |= _PAGE_RW; | ||
138 | #endif | 182 | #endif |
139 | 183 | ||
140 | prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden)); | 184 | prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden)); |
@@ -142,6 +186,14 @@ static inline pgprot_t static_protections(pgprot_t prot, unsigned long address) | |||
142 | return prot; | 186 | return prot; |
143 | } | 187 | } |
144 | 188 | ||
189 | /* | ||
190 | * Lookup the page table entry for a virtual address. Return a pointer | ||
191 | * to the entry and the level of the mapping. | ||
192 | * | ||
193 | * Note: We return pud and pmd either when the entry is marked large | ||
194 | * or when the present bit is not set. Otherwise we would return a | ||
195 | * pointer to a nonexisting mapping. | ||
196 | */ | ||
145 | pte_t *lookup_address(unsigned long address, int *level) | 197 | pte_t *lookup_address(unsigned long address, int *level) |
146 | { | 198 | { |
147 | pgd_t *pgd = pgd_offset_k(address); | 199 | pgd_t *pgd = pgd_offset_k(address); |
@@ -152,21 +204,31 @@ pte_t *lookup_address(unsigned long address, int *level) | |||
152 | 204 | ||
153 | if (pgd_none(*pgd)) | 205 | if (pgd_none(*pgd)) |
154 | return NULL; | 206 | return NULL; |
207 | |||
155 | pud = pud_offset(pgd, address); | 208 | pud = pud_offset(pgd, address); |
156 | if (pud_none(*pud)) | 209 | if (pud_none(*pud)) |
157 | return NULL; | 210 | return NULL; |
211 | |||
212 | *level = PG_LEVEL_1G; | ||
213 | if (pud_large(*pud) || !pud_present(*pud)) | ||
214 | return (pte_t *)pud; | ||
215 | |||
158 | pmd = pmd_offset(pud, address); | 216 | pmd = pmd_offset(pud, address); |
159 | if (pmd_none(*pmd)) | 217 | if (pmd_none(*pmd)) |
160 | return NULL; | 218 | return NULL; |
161 | 219 | ||
162 | *level = PG_LEVEL_2M; | 220 | *level = PG_LEVEL_2M; |
163 | if (pmd_large(*pmd)) | 221 | if (pmd_large(*pmd) || !pmd_present(*pmd)) |
164 | return (pte_t *)pmd; | 222 | return (pte_t *)pmd; |
165 | 223 | ||
166 | *level = PG_LEVEL_4K; | 224 | *level = PG_LEVEL_4K; |
225 | |||
167 | return pte_offset_kernel(pmd, address); | 226 | return pte_offset_kernel(pmd, address); |
168 | } | 227 | } |
169 | 228 | ||
229 | /* | ||
230 | * Set the new pmd in all the pgds we know about: | ||
231 | */ | ||
170 | static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte) | 232 | static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte) |
171 | { | 233 | { |
172 | /* change init_mm */ | 234 | /* change init_mm */ |
@@ -189,18 +251,114 @@ static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte) | |||
189 | #endif | 251 | #endif |
190 | } | 252 | } |
191 | 253 | ||
254 | static int | ||
255 | try_preserve_large_page(pte_t *kpte, unsigned long address, | ||
256 | struct cpa_data *cpa) | ||
257 | { | ||
258 | unsigned long nextpage_addr, numpages, pmask, psize, flags; | ||
259 | pte_t new_pte, old_pte, *tmp; | ||
260 | pgprot_t old_prot, new_prot; | ||
261 | int level, do_split = 1; | ||
262 | |||
263 | /* | ||
264 | * An Athlon 64 X2 showed hard hangs if we tried to preserve | ||
265 | * largepages and changed the PSE entry from RW to RO. | ||
266 | * | ||
267 | * As AMD CPUs have a long series of erratas in this area, | ||
268 | * (and none of the known ones seem to explain this hang), | ||
269 | * disable this code until the hang can be debugged: | ||
270 | */ | ||
271 | if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) | ||
272 | return 1; | ||
273 | |||
274 | spin_lock_irqsave(&pgd_lock, flags); | ||
275 | /* | ||
276 | * Check for races, another CPU might have split this page | ||
277 | * up already: | ||
278 | */ | ||
279 | tmp = lookup_address(address, &level); | ||
280 | if (tmp != kpte) | ||
281 | goto out_unlock; | ||
282 | |||
283 | switch (level) { | ||
284 | case PG_LEVEL_2M: | ||
285 | psize = PMD_PAGE_SIZE; | ||
286 | pmask = PMD_PAGE_MASK; | ||
287 | break; | ||
288 | #ifdef CONFIG_X86_64 | ||
289 | case PG_LEVEL_1G: | ||
290 | psize = PMD_PAGE_SIZE; | ||
291 | pmask = PMD_PAGE_MASK; | ||
292 | break; | ||
293 | #endif | ||
294 | default: | ||
295 | do_split = -EINVAL; | ||
296 | goto out_unlock; | ||
297 | } | ||
298 | |||
299 | /* | ||
300 | * Calculate the number of pages, which fit into this large | ||
301 | * page starting at address: | ||
302 | */ | ||
303 | nextpage_addr = (address + psize) & pmask; | ||
304 | numpages = (nextpage_addr - address) >> PAGE_SHIFT; | ||
305 | if (numpages < cpa->numpages) | ||
306 | cpa->numpages = numpages; | ||
307 | |||
308 | /* | ||
309 | * We are safe now. Check whether the new pgprot is the same: | ||
310 | */ | ||
311 | old_pte = *kpte; | ||
312 | old_prot = new_prot = pte_pgprot(old_pte); | ||
313 | |||
314 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); | ||
315 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); | ||
316 | new_prot = static_protections(new_prot, address); | ||
317 | |||
318 | /* | ||
319 | * If there are no changes, return. maxpages has been updated | ||
320 | * above: | ||
321 | */ | ||
322 | if (pgprot_val(new_prot) == pgprot_val(old_prot)) { | ||
323 | do_split = 0; | ||
324 | goto out_unlock; | ||
325 | } | ||
326 | |||
327 | /* | ||
328 | * We need to change the attributes. Check, whether we can | ||
329 | * change the large page in one go. We request a split, when | ||
330 | * the address is not aligned and the number of pages is | ||
331 | * smaller than the number of pages in the large page. Note | ||
332 | * that we limited the number of possible pages already to | ||
333 | * the number of pages in the large page. | ||
334 | */ | ||
335 | if (address == (nextpage_addr - psize) && cpa->numpages == numpages) { | ||
336 | /* | ||
337 | * The address is aligned and the number of pages | ||
338 | * covers the full page. | ||
339 | */ | ||
340 | new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot)); | ||
341 | __set_pmd_pte(kpte, address, new_pte); | ||
342 | cpa->flushtlb = 1; | ||
343 | do_split = 0; | ||
344 | } | ||
345 | |||
346 | out_unlock: | ||
347 | spin_unlock_irqrestore(&pgd_lock, flags); | ||
348 | |||
349 | return do_split; | ||
350 | } | ||
351 | |||
192 | static int split_large_page(pte_t *kpte, unsigned long address) | 352 | static int split_large_page(pte_t *kpte, unsigned long address) |
193 | { | 353 | { |
194 | pgprot_t ref_prot = pte_pgprot(pte_clrhuge(*kpte)); | 354 | unsigned long flags, pfn, pfninc = 1; |
195 | gfp_t gfp_flags = GFP_KERNEL; | 355 | gfp_t gfp_flags = GFP_KERNEL; |
196 | unsigned long flags; | 356 | unsigned int i, level; |
197 | unsigned long addr; | ||
198 | pte_t *pbase, *tmp; | 357 | pte_t *pbase, *tmp; |
358 | pgprot_t ref_prot; | ||
199 | struct page *base; | 359 | struct page *base; |
200 | unsigned int i, level; | ||
201 | 360 | ||
202 | #ifdef CONFIG_DEBUG_PAGEALLOC | 361 | #ifdef CONFIG_DEBUG_PAGEALLOC |
203 | gfp_flags = __GFP_HIGH | __GFP_NOFAIL | __GFP_NOWARN; | ||
204 | gfp_flags = GFP_ATOMIC | __GFP_NOWARN; | 362 | gfp_flags = GFP_ATOMIC | __GFP_NOWARN; |
205 | #endif | 363 | #endif |
206 | base = alloc_pages(gfp_flags, 0); | 364 | base = alloc_pages(gfp_flags, 0); |
@@ -213,30 +371,41 @@ static int split_large_page(pte_t *kpte, unsigned long address) | |||
213 | * up for us already: | 371 | * up for us already: |
214 | */ | 372 | */ |
215 | tmp = lookup_address(address, &level); | 373 | tmp = lookup_address(address, &level); |
216 | if (tmp != kpte) { | 374 | if (tmp != kpte) |
217 | WARN_ON_ONCE(1); | ||
218 | goto out_unlock; | 375 | goto out_unlock; |
219 | } | ||
220 | 376 | ||
221 | address = __pa(address); | ||
222 | addr = address & LARGE_PAGE_MASK; | ||
223 | pbase = (pte_t *)page_address(base); | 377 | pbase = (pte_t *)page_address(base); |
224 | #ifdef CONFIG_X86_32 | 378 | #ifdef CONFIG_X86_32 |
225 | paravirt_alloc_pt(&init_mm, page_to_pfn(base)); | 379 | paravirt_alloc_pt(&init_mm, page_to_pfn(base)); |
226 | #endif | 380 | #endif |
381 | ref_prot = pte_pgprot(pte_clrhuge(*kpte)); | ||
227 | 382 | ||
228 | pgprot_val(ref_prot) &= ~_PAGE_NX; | 383 | #ifdef CONFIG_X86_64 |
229 | for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE) | 384 | if (level == PG_LEVEL_1G) { |
230 | set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot)); | 385 | pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT; |
386 | pgprot_val(ref_prot) |= _PAGE_PSE; | ||
387 | } | ||
388 | #endif | ||
231 | 389 | ||
232 | /* | 390 | /* |
233 | * Install the new, split up pagetable. Important detail here: | 391 | * Get the target pfn from the original entry: |
392 | */ | ||
393 | pfn = pte_pfn(*kpte); | ||
394 | for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc) | ||
395 | set_pte(&pbase[i], pfn_pte(pfn, ref_prot)); | ||
396 | |||
397 | /* | ||
398 | * Install the new, split up pagetable. Important details here: | ||
234 | * | 399 | * |
235 | * On Intel the NX bit of all levels must be cleared to make a | 400 | * On Intel the NX bit of all levels must be cleared to make a |
236 | * page executable. See section 4.13.2 of Intel 64 and IA-32 | 401 | * page executable. See section 4.13.2 of Intel 64 and IA-32 |
237 | * Architectures Software Developer's Manual). | 402 | * Architectures Software Developer's Manual). |
403 | * | ||
404 | * Mark the entry present. The current mapping might be | ||
405 | * set to not present, which we preserved above. | ||
238 | */ | 406 | */ |
239 | ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte))); | 407 | ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte))); |
408 | pgprot_val(ref_prot) |= _PAGE_PRESENT; | ||
240 | __set_pmd_pte(kpte, address, mk_pte(base, ref_prot)); | 409 | __set_pmd_pte(kpte, address, mk_pte(base, ref_prot)); |
241 | base = NULL; | 410 | base = NULL; |
242 | 411 | ||
@@ -249,18 +418,12 @@ out_unlock: | |||
249 | return 0; | 418 | return 0; |
250 | } | 419 | } |
251 | 420 | ||
252 | static int | 421 | static int __change_page_attr(unsigned long address, struct cpa_data *cpa) |
253 | __change_page_attr(unsigned long address, unsigned long pfn, | ||
254 | pgprot_t mask_set, pgprot_t mask_clr) | ||
255 | { | 422 | { |
423 | int level, do_split, err; | ||
256 | struct page *kpte_page; | 424 | struct page *kpte_page; |
257 | int level, err = 0; | ||
258 | pte_t *kpte; | 425 | pte_t *kpte; |
259 | 426 | ||
260 | #ifdef CONFIG_X86_32 | ||
261 | BUG_ON(pfn > max_low_pfn); | ||
262 | #endif | ||
263 | |||
264 | repeat: | 427 | repeat: |
265 | kpte = lookup_address(address, &level); | 428 | kpte = lookup_address(address, &level); |
266 | if (!kpte) | 429 | if (!kpte) |
@@ -271,23 +434,62 @@ repeat: | |||
271 | BUG_ON(PageCompound(kpte_page)); | 434 | BUG_ON(PageCompound(kpte_page)); |
272 | 435 | ||
273 | if (level == PG_LEVEL_4K) { | 436 | if (level == PG_LEVEL_4K) { |
274 | pgprot_t new_prot = pte_pgprot(*kpte); | ||
275 | pte_t new_pte, old_pte = *kpte; | 437 | pte_t new_pte, old_pte = *kpte; |
438 | pgprot_t new_prot = pte_pgprot(old_pte); | ||
439 | |||
440 | if(!pte_val(old_pte)) { | ||
441 | printk(KERN_WARNING "CPA: called for zero pte. " | ||
442 | "vaddr = %lx cpa->vaddr = %lx\n", address, | ||
443 | cpa->vaddr); | ||
444 | WARN_ON(1); | ||
445 | return -EINVAL; | ||
446 | } | ||
276 | 447 | ||
277 | pgprot_val(new_prot) &= ~pgprot_val(mask_clr); | 448 | pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr); |
278 | pgprot_val(new_prot) |= pgprot_val(mask_set); | 449 | pgprot_val(new_prot) |= pgprot_val(cpa->mask_set); |
279 | 450 | ||
280 | new_prot = static_protections(new_prot, address); | 451 | new_prot = static_protections(new_prot, address); |
281 | 452 | ||
282 | new_pte = pfn_pte(pfn, canon_pgprot(new_prot)); | 453 | /* |
283 | BUG_ON(pte_pfn(new_pte) != pte_pfn(old_pte)); | 454 | * We need to keep the pfn from the existing PTE, |
455 | * after all we're only going to change it's attributes | ||
456 | * not the memory it points to | ||
457 | */ | ||
458 | new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot)); | ||
459 | |||
460 | /* | ||
461 | * Do we really change anything ? | ||
462 | */ | ||
463 | if (pte_val(old_pte) != pte_val(new_pte)) { | ||
464 | set_pte_atomic(kpte, new_pte); | ||
465 | cpa->flushtlb = 1; | ||
466 | } | ||
467 | cpa->numpages = 1; | ||
468 | return 0; | ||
469 | } | ||
470 | |||
471 | /* | ||
472 | * Check, whether we can keep the large page intact | ||
473 | * and just change the pte: | ||
474 | */ | ||
475 | do_split = try_preserve_large_page(kpte, address, cpa); | ||
476 | /* | ||
477 | * When the range fits into the existing large page, | ||
478 | * return. cp->numpages and cpa->tlbflush have been updated in | ||
479 | * try_large_page: | ||
480 | */ | ||
481 | if (do_split <= 0) | ||
482 | return do_split; | ||
284 | 483 | ||
285 | set_pte_atomic(kpte, new_pte); | 484 | /* |
286 | } else { | 485 | * We have to split the large page: |
287 | err = split_large_page(kpte, address); | 486 | */ |
288 | if (!err) | 487 | err = split_large_page(kpte, address); |
289 | goto repeat; | 488 | if (!err) { |
489 | cpa->flushtlb = 1; | ||
490 | goto repeat; | ||
290 | } | 491 | } |
492 | |||
291 | return err; | 493 | return err; |
292 | } | 494 | } |
293 | 495 | ||
@@ -304,19 +506,14 @@ repeat: | |||
304 | * | 506 | * |
305 | * Modules and drivers should use the set_memory_* APIs instead. | 507 | * Modules and drivers should use the set_memory_* APIs instead. |
306 | */ | 508 | */ |
307 | 509 | static int change_page_attr_addr(struct cpa_data *cpa) | |
308 | #define HIGH_MAP_START __START_KERNEL_map | ||
309 | #define HIGH_MAP_END (__START_KERNEL_map + KERNEL_TEXT_SIZE) | ||
310 | |||
311 | static int | ||
312 | change_page_attr_addr(unsigned long address, pgprot_t mask_set, | ||
313 | pgprot_t mask_clr) | ||
314 | { | 510 | { |
315 | unsigned long phys_addr = __pa(address); | ||
316 | unsigned long pfn = phys_addr >> PAGE_SHIFT; | ||
317 | int err; | 511 | int err; |
512 | unsigned long address = cpa->vaddr; | ||
318 | 513 | ||
319 | #ifdef CONFIG_X86_64 | 514 | #ifdef CONFIG_X86_64 |
515 | unsigned long phys_addr = __pa(address); | ||
516 | |||
320 | /* | 517 | /* |
321 | * If we are inside the high mapped kernel range, then we | 518 | * If we are inside the high mapped kernel range, then we |
322 | * fixup the low mapping first. __va() returns the virtual | 519 | * fixup the low mapping first. __va() returns the virtual |
@@ -326,7 +523,7 @@ change_page_attr_addr(unsigned long address, pgprot_t mask_set, | |||
326 | address = (unsigned long) __va(phys_addr); | 523 | address = (unsigned long) __va(phys_addr); |
327 | #endif | 524 | #endif |
328 | 525 | ||
329 | err = __change_page_attr(address, pfn, mask_set, mask_clr); | 526 | err = __change_page_attr(address, cpa); |
330 | if (err) | 527 | if (err) |
331 | return err; | 528 | return err; |
332 | 529 | ||
@@ -339,42 +536,89 @@ change_page_attr_addr(unsigned long address, pgprot_t mask_set, | |||
339 | /* | 536 | /* |
340 | * Calc the high mapping address. See __phys_addr() | 537 | * Calc the high mapping address. See __phys_addr() |
341 | * for the non obvious details. | 538 | * for the non obvious details. |
539 | * | ||
540 | * Note that NX and other required permissions are | ||
541 | * checked in static_protections(). | ||
342 | */ | 542 | */ |
343 | address = phys_addr + HIGH_MAP_START - phys_base; | 543 | address = phys_addr + HIGH_MAP_START - phys_base; |
344 | /* Make sure the kernel mappings stay executable */ | ||
345 | pgprot_val(mask_clr) |= _PAGE_NX; | ||
346 | 544 | ||
347 | /* | 545 | /* |
348 | * Our high aliases are imprecise, because we check | 546 | * Our high aliases are imprecise, because we check |
349 | * everything between 0 and KERNEL_TEXT_SIZE, so do | 547 | * everything between 0 and KERNEL_TEXT_SIZE, so do |
350 | * not propagate lookup failures back to users: | 548 | * not propagate lookup failures back to users: |
351 | */ | 549 | */ |
352 | __change_page_attr(address, pfn, mask_set, mask_clr); | 550 | __change_page_attr(address, cpa); |
353 | } | 551 | } |
354 | #endif | 552 | #endif |
355 | return err; | 553 | return err; |
356 | } | 554 | } |
357 | 555 | ||
358 | static int __change_page_attr_set_clr(unsigned long addr, int numpages, | 556 | static int __change_page_attr_set_clr(struct cpa_data *cpa) |
359 | pgprot_t mask_set, pgprot_t mask_clr) | ||
360 | { | 557 | { |
361 | unsigned int i; | 558 | int ret, numpages = cpa->numpages; |
362 | int ret; | ||
363 | 559 | ||
364 | for (i = 0; i < numpages ; i++, addr += PAGE_SIZE) { | 560 | while (numpages) { |
365 | ret = change_page_attr_addr(addr, mask_set, mask_clr); | 561 | /* |
562 | * Store the remaining nr of pages for the large page | ||
563 | * preservation check. | ||
564 | */ | ||
565 | cpa->numpages = numpages; | ||
566 | ret = change_page_attr_addr(cpa); | ||
366 | if (ret) | 567 | if (ret) |
367 | return ret; | 568 | return ret; |
368 | } | ||
369 | 569 | ||
570 | /* | ||
571 | * Adjust the number of pages with the result of the | ||
572 | * CPA operation. Either a large page has been | ||
573 | * preserved or a single page update happened. | ||
574 | */ | ||
575 | BUG_ON(cpa->numpages > numpages); | ||
576 | numpages -= cpa->numpages; | ||
577 | cpa->vaddr += cpa->numpages * PAGE_SIZE; | ||
578 | } | ||
370 | return 0; | 579 | return 0; |
371 | } | 580 | } |
372 | 581 | ||
582 | static inline int cache_attr(pgprot_t attr) | ||
583 | { | ||
584 | return pgprot_val(attr) & | ||
585 | (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD); | ||
586 | } | ||
587 | |||
373 | static int change_page_attr_set_clr(unsigned long addr, int numpages, | 588 | static int change_page_attr_set_clr(unsigned long addr, int numpages, |
374 | pgprot_t mask_set, pgprot_t mask_clr) | 589 | pgprot_t mask_set, pgprot_t mask_clr) |
375 | { | 590 | { |
376 | int ret = __change_page_attr_set_clr(addr, numpages, mask_set, | 591 | struct cpa_data cpa; |
377 | mask_clr); | 592 | int ret, cache; |
593 | |||
594 | /* | ||
595 | * Check, if we are requested to change a not supported | ||
596 | * feature: | ||
597 | */ | ||
598 | mask_set = canon_pgprot(mask_set); | ||
599 | mask_clr = canon_pgprot(mask_clr); | ||
600 | if (!pgprot_val(mask_set) && !pgprot_val(mask_clr)) | ||
601 | return 0; | ||
602 | |||
603 | cpa.vaddr = addr; | ||
604 | cpa.numpages = numpages; | ||
605 | cpa.mask_set = mask_set; | ||
606 | cpa.mask_clr = mask_clr; | ||
607 | cpa.flushtlb = 0; | ||
608 | |||
609 | ret = __change_page_attr_set_clr(&cpa); | ||
610 | |||
611 | /* | ||
612 | * Check whether we really changed something: | ||
613 | */ | ||
614 | if (!cpa.flushtlb) | ||
615 | return ret; | ||
616 | |||
617 | /* | ||
618 | * No need to flush, when we did not set any of the caching | ||
619 | * attributes: | ||
620 | */ | ||
621 | cache = cache_attr(mask_set); | ||
378 | 622 | ||
379 | /* | 623 | /* |
380 | * On success we use clflush, when the CPU supports it to | 624 | * On success we use clflush, when the CPU supports it to |
@@ -383,9 +627,9 @@ static int change_page_attr_set_clr(unsigned long addr, int numpages, | |||
383 | * wbindv): | 627 | * wbindv): |
384 | */ | 628 | */ |
385 | if (!ret && cpu_has_clflush) | 629 | if (!ret && cpu_has_clflush) |
386 | cpa_flush_range(addr, numpages); | 630 | cpa_flush_range(addr, numpages, cache); |
387 | else | 631 | else |
388 | cpa_flush_all(); | 632 | cpa_flush_all(cache); |
389 | 633 | ||
390 | return ret; | 634 | return ret; |
391 | } | 635 | } |
@@ -399,8 +643,7 @@ static inline int change_page_attr_set(unsigned long addr, int numpages, | |||
399 | static inline int change_page_attr_clear(unsigned long addr, int numpages, | 643 | static inline int change_page_attr_clear(unsigned long addr, int numpages, |
400 | pgprot_t mask) | 644 | pgprot_t mask) |
401 | { | 645 | { |
402 | return __change_page_attr_set_clr(addr, numpages, __pgprot(0), mask); | 646 | return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask); |
403 | |||
404 | } | 647 | } |
405 | 648 | ||
406 | int set_memory_uc(unsigned long addr, int numpages) | 649 | int set_memory_uc(unsigned long addr, int numpages) |
@@ -490,37 +733,26 @@ int set_pages_rw(struct page *page, int numpages) | |||
490 | return set_memory_rw(addr, numpages); | 733 | return set_memory_rw(addr, numpages); |
491 | } | 734 | } |
492 | 735 | ||
493 | |||
494 | #if defined(CONFIG_DEBUG_PAGEALLOC) || defined(CONFIG_CPA_DEBUG) | ||
495 | static inline int __change_page_attr_set(unsigned long addr, int numpages, | ||
496 | pgprot_t mask) | ||
497 | { | ||
498 | return __change_page_attr_set_clr(addr, numpages, mask, __pgprot(0)); | ||
499 | } | ||
500 | |||
501 | static inline int __change_page_attr_clear(unsigned long addr, int numpages, | ||
502 | pgprot_t mask) | ||
503 | { | ||
504 | return __change_page_attr_set_clr(addr, numpages, __pgprot(0), mask); | ||
505 | } | ||
506 | #endif | ||
507 | |||
508 | #ifdef CONFIG_DEBUG_PAGEALLOC | 736 | #ifdef CONFIG_DEBUG_PAGEALLOC |
509 | 737 | ||
510 | static int __set_pages_p(struct page *page, int numpages) | 738 | static int __set_pages_p(struct page *page, int numpages) |
511 | { | 739 | { |
512 | unsigned long addr = (unsigned long)page_address(page); | 740 | struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page), |
741 | .numpages = numpages, | ||
742 | .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW), | ||
743 | .mask_clr = __pgprot(0)}; | ||
513 | 744 | ||
514 | return __change_page_attr_set(addr, numpages, | 745 | return __change_page_attr_set_clr(&cpa); |
515 | __pgprot(_PAGE_PRESENT | _PAGE_RW)); | ||
516 | } | 746 | } |
517 | 747 | ||
518 | static int __set_pages_np(struct page *page, int numpages) | 748 | static int __set_pages_np(struct page *page, int numpages) |
519 | { | 749 | { |
520 | unsigned long addr = (unsigned long)page_address(page); | 750 | struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page), |
751 | .numpages = numpages, | ||
752 | .mask_set = __pgprot(0), | ||
753 | .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)}; | ||
521 | 754 | ||
522 | return __change_page_attr_clear(addr, numpages, | 755 | return __change_page_attr_set_clr(&cpa); |
523 | __pgprot(_PAGE_PRESENT)); | ||
524 | } | 756 | } |
525 | 757 | ||
526 | void kernel_map_pages(struct page *page, int numpages, int enable) | 758 | void kernel_map_pages(struct page *page, int numpages, int enable) |
diff --git a/arch/x86/mm/pgtable_32.c b/arch/x86/mm/pgtable_32.c index 2ae5999a795a..6c1914622a88 100644 --- a/arch/x86/mm/pgtable_32.c +++ b/arch/x86/mm/pgtable_32.c | |||
@@ -219,50 +219,39 @@ static inline void pgd_list_del(pgd_t *pgd) | |||
219 | list_del(&page->lru); | 219 | list_del(&page->lru); |
220 | } | 220 | } |
221 | 221 | ||
222 | #define UNSHARED_PTRS_PER_PGD \ | ||
223 | (SHARED_KERNEL_PMD ? USER_PTRS_PER_PGD : PTRS_PER_PGD) | ||
222 | 224 | ||
223 | 225 | static void pgd_ctor(void *p) | |
224 | #if (PTRS_PER_PMD == 1) | ||
225 | /* Non-PAE pgd constructor */ | ||
226 | static void pgd_ctor(void *pgd) | ||
227 | { | 226 | { |
227 | pgd_t *pgd = p; | ||
228 | unsigned long flags; | 228 | unsigned long flags; |
229 | 229 | ||
230 | /* !PAE, no pagetable sharing */ | 230 | /* Clear usermode parts of PGD */ |
231 | memset(pgd, 0, USER_PTRS_PER_PGD*sizeof(pgd_t)); | 231 | memset(pgd, 0, USER_PTRS_PER_PGD*sizeof(pgd_t)); |
232 | 232 | ||
233 | spin_lock_irqsave(&pgd_lock, flags); | 233 | spin_lock_irqsave(&pgd_lock, flags); |
234 | 234 | ||
235 | /* must happen under lock */ | 235 | /* If the pgd points to a shared pagetable level (either the |
236 | clone_pgd_range((pgd_t *)pgd + USER_PTRS_PER_PGD, | 236 | ptes in non-PAE, or shared PMD in PAE), then just copy the |
237 | swapper_pg_dir + USER_PTRS_PER_PGD, | 237 | references from swapper_pg_dir. */ |
238 | KERNEL_PGD_PTRS); | 238 | if (PAGETABLE_LEVELS == 2 || |
239 | paravirt_alloc_pd_clone(__pa(pgd) >> PAGE_SHIFT, | 239 | (PAGETABLE_LEVELS == 3 && SHARED_KERNEL_PMD)) { |
240 | __pa(swapper_pg_dir) >> PAGE_SHIFT, | 240 | clone_pgd_range(pgd + USER_PTRS_PER_PGD, |
241 | USER_PTRS_PER_PGD, | ||
242 | KERNEL_PGD_PTRS); | ||
243 | pgd_list_add(pgd); | ||
244 | spin_unlock_irqrestore(&pgd_lock, flags); | ||
245 | } | ||
246 | #else /* PTRS_PER_PMD > 1 */ | ||
247 | /* PAE pgd constructor */ | ||
248 | static void pgd_ctor(void *pgd) | ||
249 | { | ||
250 | /* PAE, kernel PMD may be shared */ | ||
251 | |||
252 | if (SHARED_KERNEL_PMD) { | ||
253 | clone_pgd_range((pgd_t *)pgd + USER_PTRS_PER_PGD, | ||
254 | swapper_pg_dir + USER_PTRS_PER_PGD, | 241 | swapper_pg_dir + USER_PTRS_PER_PGD, |
255 | KERNEL_PGD_PTRS); | 242 | KERNEL_PGD_PTRS); |
256 | } else { | 243 | paravirt_alloc_pd_clone(__pa(pgd) >> PAGE_SHIFT, |
257 | unsigned long flags; | 244 | __pa(swapper_pg_dir) >> PAGE_SHIFT, |
245 | USER_PTRS_PER_PGD, | ||
246 | KERNEL_PGD_PTRS); | ||
247 | } | ||
258 | 248 | ||
259 | memset(pgd, 0, USER_PTRS_PER_PGD*sizeof(pgd_t)); | 249 | /* list required to sync kernel mapping updates */ |
260 | spin_lock_irqsave(&pgd_lock, flags); | 250 | if (!SHARED_KERNEL_PMD) |
261 | pgd_list_add(pgd); | 251 | pgd_list_add(pgd); |
262 | spin_unlock_irqrestore(&pgd_lock, flags); | 252 | |
263 | } | 253 | spin_unlock_irqrestore(&pgd_lock, flags); |
264 | } | 254 | } |
265 | #endif /* PTRS_PER_PMD */ | ||
266 | 255 | ||
267 | static void pgd_dtor(void *pgd) | 256 | static void pgd_dtor(void *pgd) |
268 | { | 257 | { |
@@ -276,9 +265,6 @@ static void pgd_dtor(void *pgd) | |||
276 | spin_unlock_irqrestore(&pgd_lock, flags); | 265 | spin_unlock_irqrestore(&pgd_lock, flags); |
277 | } | 266 | } |
278 | 267 | ||
279 | #define UNSHARED_PTRS_PER_PGD \ | ||
280 | (SHARED_KERNEL_PMD ? USER_PTRS_PER_PGD : PTRS_PER_PGD) | ||
281 | |||
282 | #ifdef CONFIG_X86_PAE | 268 | #ifdef CONFIG_X86_PAE |
283 | /* | 269 | /* |
284 | * Mop up any pmd pages which may still be attached to the pgd. | 270 | * Mop up any pmd pages which may still be attached to the pgd. |
@@ -286,7 +272,7 @@ static void pgd_dtor(void *pgd) | |||
286 | * preallocate which never got a corresponding vma will need to be | 272 | * preallocate which never got a corresponding vma will need to be |
287 | * freed manually. | 273 | * freed manually. |
288 | */ | 274 | */ |
289 | static void pgd_mop_up_pmds(pgd_t *pgdp) | 275 | static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp) |
290 | { | 276 | { |
291 | int i; | 277 | int i; |
292 | 278 | ||
@@ -299,7 +285,7 @@ static void pgd_mop_up_pmds(pgd_t *pgdp) | |||
299 | pgdp[i] = native_make_pgd(0); | 285 | pgdp[i] = native_make_pgd(0); |
300 | 286 | ||
301 | paravirt_release_pd(pgd_val(pgd) >> PAGE_SHIFT); | 287 | paravirt_release_pd(pgd_val(pgd) >> PAGE_SHIFT); |
302 | pmd_free(pmd); | 288 | pmd_free(mm, pmd); |
303 | } | 289 | } |
304 | } | 290 | } |
305 | } | 291 | } |
@@ -327,7 +313,7 @@ static int pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd) | |||
327 | pmd_t *pmd = pmd_alloc_one(mm, addr); | 313 | pmd_t *pmd = pmd_alloc_one(mm, addr); |
328 | 314 | ||
329 | if (!pmd) { | 315 | if (!pmd) { |
330 | pgd_mop_up_pmds(pgd); | 316 | pgd_mop_up_pmds(mm, pgd); |
331 | return 0; | 317 | return 0; |
332 | } | 318 | } |
333 | 319 | ||
@@ -347,7 +333,7 @@ static int pgd_prepopulate_pmd(struct mm_struct *mm, pgd_t *pgd) | |||
347 | return 1; | 333 | return 1; |
348 | } | 334 | } |
349 | 335 | ||
350 | static void pgd_mop_up_pmds(pgd_t *pgd) | 336 | static void pgd_mop_up_pmds(struct mm_struct *mm, pgd_t *pgdp) |
351 | { | 337 | { |
352 | } | 338 | } |
353 | #endif /* CONFIG_X86_PAE */ | 339 | #endif /* CONFIG_X86_PAE */ |
@@ -366,9 +352,9 @@ pgd_t *pgd_alloc(struct mm_struct *mm) | |||
366 | return pgd; | 352 | return pgd; |
367 | } | 353 | } |
368 | 354 | ||
369 | void pgd_free(pgd_t *pgd) | 355 | void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
370 | { | 356 | { |
371 | pgd_mop_up_pmds(pgd); | 357 | pgd_mop_up_pmds(mm, pgd); |
372 | quicklist_free(0, pgd_dtor, pgd); | 358 | quicklist_free(0, pgd_dtor, pgd); |
373 | } | 359 | } |
374 | 360 | ||
@@ -376,3 +362,19 @@ void check_pgt_cache(void) | |||
376 | { | 362 | { |
377 | quicklist_trim(0, pgd_dtor, 25, 16); | 363 | quicklist_trim(0, pgd_dtor, 25, 16); |
378 | } | 364 | } |
365 | |||
366 | void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte) | ||
367 | { | ||
368 | paravirt_release_pt(page_to_pfn(pte)); | ||
369 | tlb_remove_page(tlb, pte); | ||
370 | } | ||
371 | |||
372 | #ifdef CONFIG_X86_PAE | ||
373 | |||
374 | void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd) | ||
375 | { | ||
376 | paravirt_release_pd(__pa(pmd) >> PAGE_SHIFT); | ||
377 | tlb_remove_page(tlb, virt_to_page(pmd)); | ||
378 | } | ||
379 | |||
380 | #endif | ||
diff --git a/arch/x86/pci/fixup.c b/arch/x86/pci/fixup.c index cb63007e20b2..74d30ff33c49 100644 --- a/arch/x86/pci/fixup.c +++ b/arch/x86/pci/fixup.c | |||
@@ -17,7 +17,7 @@ static void __devinit pci_fixup_i450nx(struct pci_dev *d) | |||
17 | int pxb, reg; | 17 | int pxb, reg; |
18 | u8 busno, suba, subb; | 18 | u8 busno, suba, subb; |
19 | 19 | ||
20 | printk(KERN_WARNING "PCI: Searching for i450NX host bridges on %s\n", pci_name(d)); | 20 | dev_warn(&d->dev, "Searching for i450NX host bridges\n"); |
21 | reg = 0xd0; | 21 | reg = 0xd0; |
22 | for(pxb = 0; pxb < 2; pxb++) { | 22 | for(pxb = 0; pxb < 2; pxb++) { |
23 | pci_read_config_byte(d, reg++, &busno); | 23 | pci_read_config_byte(d, reg++, &busno); |
@@ -41,7 +41,7 @@ static void __devinit pci_fixup_i450gx(struct pci_dev *d) | |||
41 | */ | 41 | */ |
42 | u8 busno; | 42 | u8 busno; |
43 | pci_read_config_byte(d, 0x4a, &busno); | 43 | pci_read_config_byte(d, 0x4a, &busno); |
44 | printk(KERN_INFO "PCI: i440KX/GX host bridge %s: secondary bus %02x\n", pci_name(d), busno); | 44 | dev_info(&d->dev, "i440KX/GX host bridge; secondary bus %02x\n", busno); |
45 | pci_scan_bus_with_sysdata(busno); | 45 | pci_scan_bus_with_sysdata(busno); |
46 | pcibios_last_bus = -1; | 46 | pcibios_last_bus = -1; |
47 | } | 47 | } |
@@ -55,7 +55,7 @@ static void __devinit pci_fixup_umc_ide(struct pci_dev *d) | |||
55 | */ | 55 | */ |
56 | int i; | 56 | int i; |
57 | 57 | ||
58 | printk(KERN_WARNING "PCI: Fixing base address flags for device %s\n", pci_name(d)); | 58 | dev_warn(&d->dev, "Fixing base address flags\n"); |
59 | for(i = 0; i < 4; i++) | 59 | for(i = 0; i < 4; i++) |
60 | d->resource[i].flags |= PCI_BASE_ADDRESS_SPACE_IO; | 60 | d->resource[i].flags |= PCI_BASE_ADDRESS_SPACE_IO; |
61 | } | 61 | } |
@@ -68,7 +68,7 @@ static void __devinit pci_fixup_ncr53c810(struct pci_dev *d) | |||
68 | * Fix class to be PCI_CLASS_STORAGE_SCSI | 68 | * Fix class to be PCI_CLASS_STORAGE_SCSI |
69 | */ | 69 | */ |
70 | if (!d->class) { | 70 | if (!d->class) { |
71 | printk(KERN_WARNING "PCI: fixing NCR 53C810 class code for %s\n", pci_name(d)); | 71 | dev_warn(&d->dev, "Fixing NCR 53C810 class code\n"); |
72 | d->class = PCI_CLASS_STORAGE_SCSI << 8; | 72 | d->class = PCI_CLASS_STORAGE_SCSI << 8; |
73 | } | 73 | } |
74 | } | 74 | } |
@@ -80,7 +80,7 @@ static void __devinit pci_fixup_latency(struct pci_dev *d) | |||
80 | * SiS 5597 and 5598 chipsets require latency timer set to | 80 | * SiS 5597 and 5598 chipsets require latency timer set to |
81 | * at most 32 to avoid lockups. | 81 | * at most 32 to avoid lockups. |
82 | */ | 82 | */ |
83 | DBG("PCI: Setting max latency to 32\n"); | 83 | dev_dbg(&d->dev, "Setting max latency to 32\n"); |
84 | pcibios_max_latency = 32; | 84 | pcibios_max_latency = 32; |
85 | } | 85 | } |
86 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5597, pci_fixup_latency); | 86 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5597, pci_fixup_latency); |
@@ -138,7 +138,7 @@ static void pci_fixup_via_northbridge_bug(struct pci_dev *d) | |||
138 | 138 | ||
139 | pci_read_config_byte(d, where, &v); | 139 | pci_read_config_byte(d, where, &v); |
140 | if (v & ~mask) { | 140 | if (v & ~mask) { |
141 | printk(KERN_WARNING "Disabling VIA memory write queue (PCI ID %04x, rev %02x): [%02x] %02x & %02x -> %02x\n", \ | 141 | dev_warn(&d->dev, "Disabling VIA memory write queue (PCI ID %04x, rev %02x): [%02x] %02x & %02x -> %02x\n", \ |
142 | d->device, d->revision, where, v, mask, v & mask); | 142 | d->device, d->revision, where, v, mask, v & mask); |
143 | v &= mask; | 143 | v &= mask; |
144 | pci_write_config_byte(d, where, v); | 144 | pci_write_config_byte(d, where, v); |
@@ -200,7 +200,7 @@ static void pci_fixup_nforce2(struct pci_dev *dev) | |||
200 | * Apply fixup if needed, but don't touch disconnect state | 200 | * Apply fixup if needed, but don't touch disconnect state |
201 | */ | 201 | */ |
202 | if ((val & 0x00FF0000) != 0x00010000) { | 202 | if ((val & 0x00FF0000) != 0x00010000) { |
203 | printk(KERN_WARNING "PCI: nForce2 C1 Halt Disconnect fixup\n"); | 203 | dev_warn(&dev->dev, "nForce2 C1 Halt Disconnect fixup\n"); |
204 | pci_write_config_dword(dev, 0x6c, (val & 0xFF00FFFF) | 0x00010000); | 204 | pci_write_config_dword(dev, 0x6c, (val & 0xFF00FFFF) | 0x00010000); |
205 | } | 205 | } |
206 | } | 206 | } |
@@ -348,7 +348,7 @@ static void __devinit pci_fixup_video(struct pci_dev *pdev) | |||
348 | pci_read_config_word(pdev, PCI_COMMAND, &config); | 348 | pci_read_config_word(pdev, PCI_COMMAND, &config); |
349 | if (config & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) { | 349 | if (config & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) { |
350 | pdev->resource[PCI_ROM_RESOURCE].flags |= IORESOURCE_ROM_SHADOW; | 350 | pdev->resource[PCI_ROM_RESOURCE].flags |= IORESOURCE_ROM_SHADOW; |
351 | printk(KERN_DEBUG "Boot video device is %s\n", pci_name(pdev)); | 351 | dev_printk(KERN_DEBUG, &pdev->dev, "Boot video device\n"); |
352 | } | 352 | } |
353 | } | 353 | } |
354 | DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_video); | 354 | DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, pci_fixup_video); |
@@ -388,11 +388,11 @@ static void __devinit pci_fixup_msi_k8t_onboard_sound(struct pci_dev *dev) | |||
388 | /* verify the change for status output */ | 388 | /* verify the change for status output */ |
389 | pci_read_config_byte(dev, 0x50, &val); | 389 | pci_read_config_byte(dev, 0x50, &val); |
390 | if (val & 0x40) | 390 | if (val & 0x40) |
391 | printk(KERN_INFO "PCI: Detected MSI K8T Neo2-FIR, " | 391 | dev_info(&dev->dev, "Detected MSI K8T Neo2-FIR; " |
392 | "can't enable onboard soundcard!\n"); | 392 | "can't enable onboard soundcard!\n"); |
393 | else | 393 | else |
394 | printk(KERN_INFO "PCI: Detected MSI K8T Neo2-FIR, " | 394 | dev_info(&dev->dev, "Detected MSI K8T Neo2-FIR; " |
395 | "enabled onboard soundcard.\n"); | 395 | "enabled onboard soundcard\n"); |
396 | } | 396 | } |
397 | } | 397 | } |
398 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237, | 398 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237, |
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index 42ba0e2da1a0..103b9dff1213 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c | |||
@@ -72,7 +72,7 @@ pcibios_align_resource(void *data, struct resource *res, | |||
72 | } | 72 | } |
73 | } | 73 | } |
74 | } | 74 | } |
75 | 75 | EXPORT_SYMBOL(pcibios_align_resource); | |
76 | 76 | ||
77 | /* | 77 | /* |
78 | * Handle resources of PCI devices. If the world were perfect, we could | 78 | * Handle resources of PCI devices. If the world were perfect, we could |
diff --git a/arch/x86/pci/numa.c b/arch/x86/pci/numa.c index f5f165f69e0c..55270c26237c 100644 --- a/arch/x86/pci/numa.c +++ b/arch/x86/pci/numa.c | |||
@@ -5,36 +5,62 @@ | |||
5 | #include <linux/pci.h> | 5 | #include <linux/pci.h> |
6 | #include <linux/init.h> | 6 | #include <linux/init.h> |
7 | #include <linux/nodemask.h> | 7 | #include <linux/nodemask.h> |
8 | #include <mach_apic.h> | ||
8 | #include "pci.h" | 9 | #include "pci.h" |
9 | 10 | ||
11 | #define XQUAD_PORTIO_BASE 0xfe400000 | ||
12 | #define XQUAD_PORTIO_QUAD 0x40000 /* 256k per quad. */ | ||
13 | |||
10 | #define BUS2QUAD(global) (mp_bus_id_to_node[global]) | 14 | #define BUS2QUAD(global) (mp_bus_id_to_node[global]) |
11 | #define BUS2LOCAL(global) (mp_bus_id_to_local[global]) | 15 | #define BUS2LOCAL(global) (mp_bus_id_to_local[global]) |
12 | #define QUADLOCAL2BUS(quad,local) (quad_local_to_mp_bus_id[quad][local]) | 16 | #define QUADLOCAL2BUS(quad,local) (quad_local_to_mp_bus_id[quad][local]) |
13 | 17 | ||
18 | extern void *xquad_portio; /* Where the IO area was mapped */ | ||
19 | #define XQUAD_PORT_ADDR(port, quad) (xquad_portio + (XQUAD_PORTIO_QUAD*quad) + port) | ||
20 | |||
14 | #define PCI_CONF1_MQ_ADDRESS(bus, devfn, reg) \ | 21 | #define PCI_CONF1_MQ_ADDRESS(bus, devfn, reg) \ |
15 | (0x80000000 | (BUS2LOCAL(bus) << 16) | (devfn << 8) | (reg & ~3)) | 22 | (0x80000000 | (BUS2LOCAL(bus) << 16) | (devfn << 8) | (reg & ~3)) |
16 | 23 | ||
24 | static void write_cf8(unsigned bus, unsigned devfn, unsigned reg) | ||
25 | { | ||
26 | unsigned val = PCI_CONF1_MQ_ADDRESS(bus, devfn, reg); | ||
27 | if (xquad_portio) | ||
28 | writel(val, XQUAD_PORT_ADDR(0xcf8, BUS2QUAD(bus))); | ||
29 | else | ||
30 | outl(val, 0xCF8); | ||
31 | } | ||
32 | |||
17 | static int pci_conf1_mq_read(unsigned int seg, unsigned int bus, | 33 | static int pci_conf1_mq_read(unsigned int seg, unsigned int bus, |
18 | unsigned int devfn, int reg, int len, u32 *value) | 34 | unsigned int devfn, int reg, int len, u32 *value) |
19 | { | 35 | { |
20 | unsigned long flags; | 36 | unsigned long flags; |
37 | void *adr __iomem = XQUAD_PORT_ADDR(0xcfc, BUS2QUAD(bus)); | ||
21 | 38 | ||
22 | if (!value || (bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255)) | 39 | if (!value || (bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255)) |
23 | return -EINVAL; | 40 | return -EINVAL; |
24 | 41 | ||
25 | spin_lock_irqsave(&pci_config_lock, flags); | 42 | spin_lock_irqsave(&pci_config_lock, flags); |
26 | 43 | ||
27 | outl_quad(PCI_CONF1_MQ_ADDRESS(bus, devfn, reg), 0xCF8, BUS2QUAD(bus)); | 44 | write_cf8(bus, devfn, reg); |
28 | 45 | ||
29 | switch (len) { | 46 | switch (len) { |
30 | case 1: | 47 | case 1: |
31 | *value = inb_quad(0xCFC + (reg & 3), BUS2QUAD(bus)); | 48 | if (xquad_portio) |
49 | *value = readb(adr + (reg & 3)); | ||
50 | else | ||
51 | *value = inb(0xCFC + (reg & 3)); | ||
32 | break; | 52 | break; |
33 | case 2: | 53 | case 2: |
34 | *value = inw_quad(0xCFC + (reg & 2), BUS2QUAD(bus)); | 54 | if (xquad_portio) |
55 | *value = readw(adr + (reg & 2)); | ||
56 | else | ||
57 | *value = inw(0xCFC + (reg & 2)); | ||
35 | break; | 58 | break; |
36 | case 4: | 59 | case 4: |
37 | *value = inl_quad(0xCFC, BUS2QUAD(bus)); | 60 | if (xquad_portio) |
61 | *value = readl(adr); | ||
62 | else | ||
63 | *value = inl(0xCFC); | ||
38 | break; | 64 | break; |
39 | } | 65 | } |
40 | 66 | ||
@@ -47,23 +73,33 @@ static int pci_conf1_mq_write(unsigned int seg, unsigned int bus, | |||
47 | unsigned int devfn, int reg, int len, u32 value) | 73 | unsigned int devfn, int reg, int len, u32 value) |
48 | { | 74 | { |
49 | unsigned long flags; | 75 | unsigned long flags; |
76 | void *adr __iomem = XQUAD_PORT_ADDR(0xcfc, BUS2QUAD(bus)); | ||
50 | 77 | ||
51 | if ((bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255)) | 78 | if ((bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255)) |
52 | return -EINVAL; | 79 | return -EINVAL; |
53 | 80 | ||
54 | spin_lock_irqsave(&pci_config_lock, flags); | 81 | spin_lock_irqsave(&pci_config_lock, flags); |
55 | 82 | ||
56 | outl_quad(PCI_CONF1_MQ_ADDRESS(bus, devfn, reg), 0xCF8, BUS2QUAD(bus)); | 83 | write_cf8(bus, devfn, reg); |
57 | 84 | ||
58 | switch (len) { | 85 | switch (len) { |
59 | case 1: | 86 | case 1: |
60 | outb_quad((u8)value, 0xCFC + (reg & 3), BUS2QUAD(bus)); | 87 | if (xquad_portio) |
88 | writeb(value, adr + (reg & 3)); | ||
89 | else | ||
90 | outb((u8)value, 0xCFC + (reg & 3)); | ||
61 | break; | 91 | break; |
62 | case 2: | 92 | case 2: |
63 | outw_quad((u16)value, 0xCFC + (reg & 2), BUS2QUAD(bus)); | 93 | if (xquad_portio) |
94 | writew(value, adr + (reg & 2)); | ||
95 | else | ||
96 | outw((u16)value, 0xCFC + (reg & 2)); | ||
64 | break; | 97 | break; |
65 | case 4: | 98 | case 4: |
66 | outl_quad((u32)value, 0xCFC, BUS2QUAD(bus)); | 99 | if (xquad_portio) |
100 | writel(value, adr + reg); | ||
101 | else | ||
102 | outl((u32)value, 0xCFC); | ||
67 | break; | 103 | break; |
68 | } | 104 | } |
69 | 105 | ||
diff --git a/arch/xtensa/Kconfig b/arch/xtensa/Kconfig index d3cb3d6af4c8..5d5546ce88fe 100644 --- a/arch/xtensa/Kconfig +++ b/arch/xtensa/Kconfig | |||
@@ -174,11 +174,6 @@ config PCI | |||
174 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or | 174 | your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or |
175 | VESA. If you have PCI, say Y, otherwise N. | 175 | VESA. If you have PCI, say Y, otherwise N. |
176 | 176 | ||
177 | The PCI-HOWTO, available from | ||
178 | <http://www.linuxdoc.org/docs.html#howto>, contains valuable | ||
179 | information about which PCI hardware does work under Linux and which | ||
180 | doesn't | ||
181 | |||
182 | source "drivers/pci/Kconfig" | 177 | source "drivers/pci/Kconfig" |
183 | 178 | ||
184 | config HOTPLUG | 179 | config HOTPLUG |
@@ -251,8 +246,6 @@ config EMBEDDED_RAMDISK_IMAGE | |||
251 | provide one yourself. | 246 | provide one yourself. |
252 | endmenu | 247 | endmenu |
253 | 248 | ||
254 | source "kernel/Kconfig.instrumentation" | ||
255 | |||
256 | source "arch/xtensa/Kconfig.debug" | 249 | source "arch/xtensa/Kconfig.debug" |
257 | 250 | ||
258 | source "security/Kconfig" | 251 | source "security/Kconfig" |